blob: 2e41981e753c107334eb53ca80ac4fd08599284e [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>
Kyösti Mälkki35a72492013-07-01 11:21:53 +03005
Jacob Garber4a216472019-12-27 14:18:32 -07006#include "gm45.h"
Kyösti Mälkki35a72492013-07-01 11:21:53 +03007
Arthur Heymansbe9533a2019-10-12 14:35:25 +02008void bootblock_early_northbridge_init(void)
Kyösti Mälkki35a72492013-07-01 11:21:53 +03009{
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
Elyes HAOUAS45373322021-01-16 15:01:43 +010015 * true. That way all subsequent non-explicit config accesses use
Kyösti Mälkki35a72492013-07-01 11:21:53 +030016 * 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.
Kyösti Mälkki35a72492013-07-01 11:21:53 +030020 *
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(PCI_DEV(0,0,0), D0F0_PCIEXBAR_HI, reg);
26 reg = CONFIG_MMCONF_BASE_ADDRESS | (2 << 1) | 1; /* 64MiB - 0-63 buses. */
27 pci_io_write_config32(PCI_DEV(0,0,0), D0F0_PCIEXBAR_LO, reg);
28}