blob: 92f9aeee49366b5caef33064083a6a567185b07c [file] [log] [blame]
Angel Pons6e5aabd2020-03-23 23:44:42 +01001/* 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>
Elyes HAOUAS9cbf26d2021-01-31 08:31:20 +01004#include <arch/pci_io_cfg.h>
Angel Pons10f9b832021-01-20 14:58:32 +01005#include <assert.h>
Angel Pons10f9b832021-01-20 14:58:32 +01006#include <types.h>
Elyes HAOUAS9cbf26d2021-01-31 08:31:20 +01007
Arthur Heymans360d9472019-11-12 18:11:03 +01008#include "sandybridge.h"
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +03009
Angel Pons10f9b832021-01-20 14:58:32 +010010static uint32_t encode_pciexbar_length(void)
11{
12 switch (CONFIG_MMCONF_BUS_NUMBER) {
13 case 256: return 0 << 1;
14 case 128: return 1 << 1;
15 case 64: return 2 << 1;
16 default: return dead_code_t(uint32_t);
17 }
18}
19
Arthur Heymans360d9472019-11-12 18:11:03 +010020void bootblock_early_northbridge_init(void)
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030021{
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030022 /*
Angel Pons7c49cb82020-03-16 23:17:32 +010023 * The "io" variant of the config access is explicitly used to setup the
Elyes HAOUAS98d6f332021-01-16 14:59:42 +010024 * PCIEXBAR because CONFIG(MMCONF_SUPPORT) is set to true. That way, all
Angel Pons7c49cb82020-03-16 23:17:32 +010025 * subsequent non-explicit config accesses use MCFG. This code also assumes
26 * that bootblock_northbridge_init() is the first thing called in the non-asm
27 * boot block code. The final assumption is that no assembly code is using the
Martin Rothf48acbd2020-07-24 12:24:27 -060028 * CONFIG(MMCONF_SUPPORT) option to do PCI config accesses.
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030029 *
Angel Pons7c49cb82020-03-16 23:17:32 +010030 * The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030031 */
Elyes HAOUAS9cbf26d2021-01-31 08:31:20 +010032 const uint32_t reg32 = CONFIG_MMCONF_BASE_ADDRESS | encode_pciexbar_length() | 1;
Angel Pons10f9b832021-01-20 14:58:32 +010033 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR + 4, 0);
Elyes HAOUAS9cbf26d2021-01-31 08:31:20 +010034 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR, reg32);
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030035}