blob: 39564cf970b14b1cd7e86dfc3c08fab19cf9f70e [file] [log] [blame]
Angel Pons6e5aabd2020-03-23 23:44:42 +01001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Martin Roth5474eb12018-05-26 19:22:33 -06003
Kyösti Mälkkide640782019-12-03 07:30:26 +02004#include <arch/bootblock.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Arthur Heymans360d9472019-11-12 18:11:03 +01006#include "sandybridge.h"
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +03007
Arthur Heymans360d9472019-11-12 18:11:03 +01008void bootblock_early_northbridge_init(void)
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +03009{
10 uint32_t reg;
11
12 /*
Angel Pons7c49cb82020-03-16 23:17:32 +010013 * The "io" variant of the config access is explicitly used to setup the
14 * PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to to true. That way, all
15 * subsequent non-explicit config accesses use MCFG. This code also assumes
16 * that bootblock_northbridge_init() is the first thing called in the non-asm
17 * boot block code. The final assumption is that no assembly code is using the
Elyes HAOUAS0c9630e2020-01-07 20:06:08 +010018 * CONFIG_MMCONF_SUPPORT option to do PCI config accesses.
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030019 *
Angel Pons7c49cb82020-03-16 23:17:32 +010020 * The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030021 */
22 reg = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +010023 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR + 4, reg);
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030024 reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */
Angel Pons7c49cb82020-03-16 23:17:32 +010025 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR, reg);
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030026}