Subrata Banik (subrata.banik@intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/18505
-gerrit
commit 567398f047bd9dfaf571ad085d57f28f7cb03fc8 Author: Subrata Banik subrata.banik@intel.com Date: Mon Feb 27 11:02:19 2017 +0530
soc/intel/skylake: Clean up bootblock/systemagent.c
Set up PCIEXBAR length as 256MB.
Change-Id: I800fc73d49c83e35ac9ceefec5419af21ddbae2a Signed-off-by: Subrata Banik subrata.banik@intel.com --- src/soc/intel/skylake/bootblock/systemagent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/soc/intel/skylake/bootblock/systemagent.c b/src/soc/intel/skylake/bootblock/systemagent.c index e76d4d2..911d544 100644 --- a/src/soc/intel/skylake/bootblock/systemagent.c +++ b/src/soc/intel/skylake/bootblock/systemagent.c @@ -38,6 +38,6 @@ void bootblock_systemagent_early_init(void) */ reg = 0; pci_io_write_config32(SA_DEV_ROOT, PCIEXBAR + 4, reg); - reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */ + reg = CONFIG_MMCONF_BASE_ADDRESS | 1; /* 256MB (buses 0-255) */ pci_io_write_config32(SA_DEV_ROOT, PCIEXBAR, reg); }