blob: 05b0c7558cbee26389846c10ed9a10c213b6a553 [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
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030014#include <arch/io.h>
15
16/* Just re-define this instead of including sandybridge.h. It blows up romcc. */
17#define PCIEXBAR 0x60
18
19static void bootblock_northbridge_init(void)
20{
21 uint32_t reg;
22
23 /*
24 * The "io" variant of the config access is explicitly used to
Kyösti Mälkki6f66f412016-12-01 22:08:18 +020025 * setup the PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030026 * to true. That way all subsequent non-explicit config accesses use
27 * MCFG. This code also assumes that bootblock_northbridge_init() is
28 * the first thing called in the non-asm boot block code. The final
29 * assumption is that no assembly code is using the
Kyösti Mälkki6f66f412016-12-01 22:08:18 +020030 * CONFIG_MMCONF_SUPPORT option to do PCI config acceses.
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030031 *
32 * The PCIEXBAR is assumed to live in the memory mapped IO space under
33 * 4GiB.
34 */
35 reg = 0;
36 pci_io_write_config32(PCI_DEV(0,0,0), PCIEXBAR + 4, reg);
37 reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */
38 pci_io_write_config32(PCI_DEV(0,0,0), PCIEXBAR, reg);
39}