aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/ironlake/bootblock.c
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-01-20 14:03:44 +0100
committerAngel Pons <th3fanbus@gmail.com>2021-01-30 23:12:23 +0000
commitb274ec73ab608384c925876d5a3bcf0396dcc3d5 (patch)
tree1eede7603565a8dc1dda075c4aa8b072f5c111c8 /src/northbridge/intel/ironlake/bootblock.c
parent10f9b83f534bdc89e00f0a02befd952ae8d7f829 (diff)
nb/intel/ironlake: Use MMCONF_BUS_NUMBER everywhere
Bootblock enabling needs some special handling. Also, the definition of the `get_pcie_bar` function is incorrect for Ironlake, so remove it. With this patch, using 64 and 128 for MMCONF_BUS_NUMBER should work. However, it has not been tested. Using 256 busses should still work. Change-Id: Ic466ddc7b80f60af5cbff53583281440f02974c7 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49761 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/intel/ironlake/bootblock.c')
-rw-r--r--src/northbridge/intel/ironlake/bootblock.c25
1 files changed, 23 insertions, 2 deletions
diff --git a/src/northbridge/intel/ironlake/bootblock.c b/src/northbridge/intel/ironlake/bootblock.c
index 89eb81339e..4b174cb0f6 100644
--- a/src/northbridge/intel/ironlake/bootblock.c
+++ b/src/northbridge/intel/ironlake/bootblock.c
@@ -1,11 +1,32 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <arch/bootblock.h>
+#include <assert.h>
#include <device/pci_ops.h>
+#include <types.h>
#include "ironlake.h"
+static uint32_t encode_pciexbar_length(void)
+{
+ /* NOTE: Ironlake uses a different encoding for the PCIEXBAR length field */
+ switch (CONFIG_MMCONF_BUS_NUMBER) {
+ case 256: return 0 << 1;
+ case 128: return 6 << 1;
+ case 64: return 7 << 1;
+ default: return dead_code_t(uint32_t);
+ }
+}
+
void bootblock_early_northbridge_init(void)
{
- pci_io_write_config32(QPI_SAD, SAD_PCIEXBAR, CONFIG_MMCONF_BASE_ADDRESS | 1);
- pci_io_write_config32(QPI_SAD, SAD_PCIEXBAR + 4, 0);
+ /*
+ * The QuickPath bus number is the topmost bus number, as per the value
+ * of the SAD_PCIEXBAR register. The register defaults to 256 busses on
+ * reset. Thus, hardcode the bus number when first setting up PCIEXBAR.
+ */
+ const pci_devfn_t qpi_sad = PCI_DEV(255, 0, 1);
+
+ const uint32_t reg32 = CONFIG_MMCONF_BASE_ADDRESS | encode_pciexbar_length() | 1;
+ pci_io_write_config32(qpi_sad, SAD_PCIEXBAR + 4, 0);
+ pci_io_write_config32(qpi_sad, SAD_PCIEXBAR, reg32);
}