blob: 03a715fa63f7ee86bc3b3a246464a5efa61a9786 [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>
Angel Pons32770f82021-01-20 15:03:30 +01004#include <assert.h>
Angel Pons37cae542021-02-02 16:28:07 +01005#include <device/pci_ops.h>
Angel Pons32770f82021-01-20 15:03:30 +01006#include <types.h>
Elyes HAOUASb96c3582021-01-31 08:27:35 +01007
Arthur Heymans8e646e72018-06-05 11:19:22 +02008#include "haswell.h"
Aaron Durbin6d04f0f2012-10-31 22:57:16 -05009
Angel Pons32770f82021-01-20 15:03:30 +010010static uint32_t encode_pciexbar_length(void)
11{
Shelley Chen4e9bb332021-10-20 15:43:45 -070012 switch (CONFIG_ECAM_MMCONF_BUS_NUMBER) {
Angel Pons32770f82021-01-20 15:03:30 +010013 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 Heymans8e646e72018-06-05 11:19:22 +020020void bootblock_early_northbridge_init(void)
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050021{
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050022 /*
Angel Pons32770f82021-01-20 15:03:30 +010023 * The "io" variant of the config access is explicitly used to setup the
Shelley Chen4e9bb332021-10-20 15:43:45 -070024 * PCIEXBAR because CONFIG(ECAM_MMCONF_SUPPORT) is set to true. That way, all
Angel Pons32770f82021-01-20 15:03:30 +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
Shelley Chen4e9bb332021-10-20 15:43:45 -070028 * CONFIG(ECAM_MMCONF_SUPPORT) option to do PCI config accesses.
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050029 *
Angel Pons1db5bc72020-01-15 00:49:03 +010030 * The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050031 */
Shelley Chen4e9bb332021-10-20 15:43:45 -070032 const uint32_t reg32 = CONFIG_ECAM_MMCONF_BASE_ADDRESS | encode_pciexbar_length() | 1;
Angel Pons32770f82021-01-20 15:03:30 +010033 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR + 4, 0);
Elyes HAOUASb96c3582021-01-31 08:27:35 +010034 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR, reg32);
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050035}