summaryrefslogtreecommitdiff
path: root/src/northbridge/intel/i5000/Kconfig
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2013-07-01 11:21:53 +0300
committerRonald G. Minnich <rminnich@gmail.com>2013-07-04 03:10:22 +0200
commit9e974232e4896ee971745c5127cbc37f1682171b (patch)
treeadacdfe76da0f950c518db7f81af96ba98a8c02a /src/northbridge/intel/i5000/Kconfig
parent575e6817e690d1540bfa14a0b1fc7b8a40ef095a (diff)
downloadcoreboot-9e974232e4896ee971745c5127cbc37f1682171b.tar.xz
intel/i5000: Use MMCONF_SUPPORT_DEFAULT
Change all PCI configuration accesses to MMIO on two boards with i5000 chipset. To enable MMIO style access, add explicit PCI IO config write in the bootblock. Change-Id: I26f1c2da5ae98aeeda78bdcae0fb1e8c711a3586 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/3601 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/northbridge/intel/i5000/Kconfig')
-rw-r--r--src/northbridge/intel/i5000/Kconfig10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/northbridge/intel/i5000/Kconfig b/src/northbridge/intel/i5000/Kconfig
index b9c3547770..f7344ca97d 100644
--- a/src/northbridge/intel/i5000/Kconfig
+++ b/src/northbridge/intel/i5000/Kconfig
@@ -20,9 +20,17 @@
config NORTHBRIDGE_INTEL_I5000
bool
select MMCONF_SUPPORT
+ select MMCONF_SUPPORT_DEFAULT
select HAVE_DEBUG_RAM_SETUP
+if NORTHBRIDGE_INTEL_I5000
+
config NORTHBRIDGE_INTEL_I5000_RAM_CHECK
bool
prompt "Run ramcheck after RAM initialization"
- depends on NORTHBRIDGE_INTEL_I5000
+
+config BOOTBLOCK_NORTHBRIDGE_INIT
+ string
+ default "northbridge/intel/i5000/bootblock.c"
+
+endif