diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-07-03 08:06:32 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-07-26 07:15:19 +0200 |
commit | b9646a2bdc1c29961a326fc7f657433067d53ff0 (patch) | |
tree | d2376fa3ed948422cadc940235d28118ac62188d /src/mainboard/emulation/qemu-q35/Kconfig | |
parent | aad0747216cab56a8cee5c1401c094543ed8be2d (diff) |
emulation/qemu-q35: Use MMCONF_SUPPORT_DEFAULT
Change all PCI configuration accesses to MMIO in qemu-q35
emulation
To enable MMIO style access, add (move) explicit PCI IO config write
in the bootblock. As there is no northbridge/x/x/bootblock.c
file, a mainboard/x/x/bootblock.c file is added for this purpose.
Change-Id: I979efb3d9b2f359a9ccbd1b4f6c05f83bab43007
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/3599
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/mainboard/emulation/qemu-q35/Kconfig')
-rw-r--r-- | src/mainboard/emulation/qemu-q35/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/emulation/qemu-q35/Kconfig b/src/mainboard/emulation/qemu-q35/Kconfig index 7f33699001..9d78bb8bf4 100644 --- a/src/mainboard/emulation/qemu-q35/Kconfig +++ b/src/mainboard/emulation/qemu-q35/Kconfig @@ -7,6 +7,7 @@ config BOARD_SPECIFIC_OPTIONS # dummy select SOUTHBRIDGE_INTEL_I82801IX select IOAPIC_INTERRUPTS_ON_APIC_SERIAL_BUS select MMCONF_SUPPORT + select MMCONF_SUPPORT_DEFAULT select CACHE_AS_RAM # select HAVE_OPTION_TABLE # select HAVE_PIRQ_TABLE @@ -24,10 +25,18 @@ config MAINBOARD_PART_NUMBER string default "QEMU x86 q35/ich9" +config BOOTBLOCK_MAINBOARD_INIT + string + default "mainboard/emulation/qemu-q35/bootblock.c" + #config IRQ_SLOT_COUNT # int # default 6 +config MMCONF_BASE_ADDRESS + hex + default 0xb0000000 + config DCACHE_RAM_BASE hex default 0xd0000 |