blob: e3f3d8e6ac0040ba44b649dd594cd6b918d66bc7 [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07003
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>
Julius Werner4ee4bd52014-10-20 13:46:39 -07006#include <soc/pci_devs.h>
7#include <soc/systemagent.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07008
Arthur Heymans5bb15f12018-12-22 16:02:25 +01009void bootblock_early_northbridge_init(void)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070010{
11 uint32_t reg;
12
13 /*
14 * The "io" variant of the config access is explicitly used to
Kyösti Mälkki6f66f412016-12-01 22:08:18 +020015 * setup the PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to
Duncan Lauriec88c54c2014-04-30 16:36:13 -070016 * to true. That way all subsequent non-explicit config accesses use
17 * MCFG. This code also assumes that bootblock_northbridge_init() is
18 * the first thing called in the non-asm boot block code. The final
19 * assumption is that no assembly code is using the
Kyösti Mälkki6f66f412016-12-01 22:08:18 +020020 * CONFIG_MMCONF_SUPPORT option to do PCI config accesses.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070021 *
22 * The PCIEXBAR is assumed to live in the memory mapped IO space under
23 * 4GiB.
24 */
25 reg = 0;
26 pci_io_write_config32(SA_DEV_ROOT, PCIEXBAR + 4, reg);
27 reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */
28 pci_io_write_config32(SA_DEV_ROOT, PCIEXBAR, reg);
29}