blob: 5edfaeecaf10d26cb85ad15e8cdaadf85c3e5f8b [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07002
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>
Julius Werner4ee4bd52014-10-20 13:46:39 -07005#include <soc/pci_devs.h>
6#include <soc/systemagent.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07007
Arthur Heymans5bb15f12018-12-22 16:02:25 +01008void bootblock_early_northbridge_init(void)
Duncan Lauriec88c54c2014-04-30 16:36:13 -07009{
10 uint32_t reg;
11
12 /*
13 * The "io" variant of the config access is explicitly used to
Martin Rothf48acbd2020-07-24 12:24:27 -060014 * setup the PCIEXBAR because CONFIG(MMCONF_SUPPORT) is set to
Duncan Lauriec88c54c2014-04-30 16:36:13 -070015 * to true. That way all subsequent non-explicit config accesses use
16 * MCFG. This code also assumes that bootblock_northbridge_init() is
17 * the first thing called in the non-asm boot block code. The final
18 * assumption is that no assembly code is using the
Martin Rothf48acbd2020-07-24 12:24:27 -060019 * CONFIG(MMCONF_SUPPORT) option to do PCI config accesses.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070020 *
21 * The PCIEXBAR is assumed to live in the memory mapped IO space under
22 * 4GiB.
23 */
24 reg = 0;
25 pci_io_write_config32(SA_DEV_ROOT, PCIEXBAR + 4, reg);
26 reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */
27 pci_io_write_config32(SA_DEV_ROOT, PCIEXBAR, reg);
28}