blob: fafa03b45d2afe9519148c75f41ac91a7405fc07 [file] [log] [blame]
Angel Pons585495e2020-04-03 01:21:38 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Martin Rothb28f4662018-05-26 17:58:47 -06002
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02003#include <device/pci_ops.h>
Patrick Rudolph1af89232018-11-11 12:50:51 +01004#include <bootblock_common.h>
Angel Pons22a6d112020-06-21 18:50:22 +02005#include <southbridge/intel/common/early_spi.h>
Patrick Rudolph1af89232018-11-11 12:50:51 +01006#include <southbridge/intel/i82801ix/i82801ix.h>
Patrick Rudolphfbdeb4a2019-02-14 19:47:03 +01007#include <console/console.h>
Kyösti Mälkkib9646a22013-07-03 08:06:32 +03008
9/* Just define these here, there is no gm35.h file to include. */
10#define D0F0_PCIEXBAR_LO 0x60
11#define D0F0_PCIEXBAR_HI 0x64
12
13static void bootblock_northbridge_init(void)
14{
15 uint32_t reg;
16
17 /*
18 * The "io" variant of the config access is explicitly used to
Kyösti Mälkki6f66f412016-12-01 22:08:18 +020019 * setup the PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to
Kyösti Mälkkib9646a22013-07-03 08:06:32 +030020 * to true. That way all subsequent non-explicit config accesses use
21 * MCFG. This code also assumes that bootblock_northbridge_init() is
22 * the first thing called in the non-asm boot block code. The final
23 * assumption is that no assembly code is using the
Kyösti Mälkki6f66f412016-12-01 22:08:18 +020024 * CONFIG_MMCONF_SUPPORT option to do PCI config acceses.
Kyösti Mälkkib9646a22013-07-03 08:06:32 +030025 *
26 * The PCIEXBAR is assumed to live in the memory mapped IO space under
27 * 4GiB.
28 */
29 reg = 0;
30 pci_io_write_config32(PCI_DEV(0,0,0), D0F0_PCIEXBAR_HI, reg);
31 reg = CONFIG_MMCONF_BASE_ADDRESS | 1; /* 256MiB - 0-255 buses. */
32 pci_io_write_config32(PCI_DEV(0,0,0), D0F0_PCIEXBAR_LO, reg);
Patrick Rudolphfbdeb4a2019-02-14 19:47:03 +010033
34 /* MCFG is now active. If it's not qemu was started for machine PC */
35 if (CONFIG(BOOTBLOCK_CONSOLE) &&
36 (pci_read_config32(PCI_DEV(0, 0, 0), D0F0_PCIEXBAR_LO) !=
37 (CONFIG_MMCONF_BASE_ADDRESS | 1)))
38 die("You must run qemu for machine Q35 (-M q35)");
Kyösti Mälkkib9646a22013-07-03 08:06:32 +030039}
40
Patrick Rudolph1af89232018-11-11 12:50:51 +010041static void bootblock_southbridge_init(void)
42{
Angel Pons22a6d112020-06-21 18:50:22 +020043 enable_spi_prefetching_and_caching();
Patrick Rudolph1af89232018-11-11 12:50:51 +010044
45 /* Enable RCBA */
Peter Lemenkov7b428112018-10-23 11:12:46 +020046 pci_write_config32(PCI_DEV(0, 0x1f, 0), RCBA,
Patrick Rudolph1af89232018-11-11 12:50:51 +010047 (uintptr_t)DEFAULT_RCBA | 1);
48}
49
50void bootblock_soc_init(void)
Kyösti Mälkkib9646a22013-07-03 08:06:32 +030051{
52 bootblock_northbridge_init();
53 bootblock_southbridge_init();
54}