blob: bea85f4f8ec24ec3c7fc94f153da75ddcc775ec7 [file] [log] [blame]
Angel Pons6e5aabd2020-03-23 23:44:42 +01001/* SPDX-License-Identifier: GPL-2.0-only */
Martin Roth5474eb12018-05-26 19:22:33 -06002
Kyösti Mälkkide640782019-12-03 07:30:26 +02003#include <arch/bootblock.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Arthur Heymans360d9472019-11-12 18:11:03 +01005#include "sandybridge.h"
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +03006
Arthur Heymans360d9472019-11-12 18:11:03 +01007void bootblock_early_northbridge_init(void)
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +03008{
9 uint32_t reg;
10
11 /*
Angel Pons7c49cb82020-03-16 23:17:32 +010012 * The "io" variant of the config access is explicitly used to setup the
Elyes HAOUAS98d6f332021-01-16 14:59:42 +010013 * PCIEXBAR because CONFIG(MMCONF_SUPPORT) is set to true. That way, all
Angel Pons7c49cb82020-03-16 23:17:32 +010014 * subsequent non-explicit config accesses use MCFG. This code also assumes
15 * that bootblock_northbridge_init() is the first thing called in the non-asm
16 * boot block code. The final assumption is that no assembly code is using the
Martin Rothf48acbd2020-07-24 12:24:27 -060017 * CONFIG(MMCONF_SUPPORT) option to do PCI config accesses.
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030018 *
Angel Pons7c49cb82020-03-16 23:17:32 +010019 * The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030020 */
21 reg = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +010022 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR + 4, reg);
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030023 reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */
Angel Pons7c49cb82020-03-16 23:17:32 +010024 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR, reg);
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030025}