blob: 9d06120ecb8cb4ef90548d1e658994ca36cbb9e3 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* 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 Heymanse27c0132019-11-12 23:34:13 +01005#include "i945.h"
Kyösti Mälkki032c23d2013-07-01 11:21:53 +03006
Arthur Heymanse27c0132019-11-12 23:34:13 +01007void bootblock_early_northbridge_init(void)
Kyösti Mälkki032c23d2013-07-01 11:21:53 +03008{
9 uint32_t reg;
10
11 /*
Elyes HAOUAS3dff32c2020-03-30 17:16:51 +020012 * The "io" variant of the config access is explicitly used to setup the PCIEXBAR
13 * because CONFIG_MMCONF_SUPPORT is set to true. That way all subsequent non-explicit
14 * config accesses use MCFG. This code also assumes that bootblock_northbridge_init() is
15 * the first thing called in the non-asm boot block code. The final assumption is that
16 * no assembly code is using the CONFIG_MMCONF_SUPPORT option to do PCI config accesses.
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030017 *
Elyes HAOUAS3dff32c2020-03-30 17:16:51 +020018 * The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030019 */
20 reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */
Angel Pons3580d812020-06-11 14:13:33 +020021 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR, reg);
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030022}