blob: d3aeb030f1186092ea9e4cd58fc5f5203d98f635 [file] [log] [blame]
Martin Roth5474eb12018-05-26 19:22:33 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
Arthur Heymansbe9533a2019-10-12 14:35:25 +020014#include <cpu/intel/car/bootblock.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020015#include <device/pci_ops.h>
Kyösti Mälkki35a72492013-07-01 11:21:53 +030016
17/* Just re-define these instead of including gm45.h. It blows up romcc. */
18#define D0F0_PCIEXBAR_LO 0x60
19#define D0F0_PCIEXBAR_HI 0x64
20
Arthur Heymansbe9533a2019-10-12 14:35:25 +020021void bootblock_early_northbridge_init(void)
Kyösti Mälkki35a72492013-07-01 11:21:53 +030022{
23 uint32_t reg;
24
25 /*
26 * The "io" variant of the config access is explicitly used to
Kyösti Mälkki6f66f412016-12-01 22:08:18 +020027 * setup the PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to
Kyösti Mälkki35a72492013-07-01 11:21:53 +030028 * to true. That way all subsequent non-explicit config accesses use
29 * MCFG. This code also assumes that bootblock_northbridge_init() is
30 * the first thing called in the non-asm boot block code. The final
31 * assumption is that no assembly code is using the
Kyösti Mälkki6f66f412016-12-01 22:08:18 +020032 * CONFIG_MMCONF_SUPPORT option to do PCI config accesses.
Kyösti Mälkki35a72492013-07-01 11:21:53 +030033 *
34 * The PCIEXBAR is assumed to live in the memory mapped IO space under
35 * 4GiB.
36 */
37 reg = 0;
38 pci_io_write_config32(PCI_DEV(0,0,0), D0F0_PCIEXBAR_HI, reg);
39 reg = CONFIG_MMCONF_BASE_ADDRESS | (2 << 1) | 1; /* 64MiB - 0-63 buses. */
40 pci_io_write_config32(PCI_DEV(0,0,0), D0F0_PCIEXBAR_LO, reg);
41}