diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-02-12 09:32:17 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-02-12 09:32:17 +0000 |
commit | 9a35853c9b251399c5b52dd5a40d0637bab14edb (patch) | |
tree | 5cece5681a8da288b5268848ad8a4b56c05f183d | |
parent | ba295dce8476399ec436688f618076b9abafe6e2 (diff) | |
download | coreboot-9a35853c9b251399c5b52dd5a40d0637bab14edb.tar.xz |
Add two YABEL options to Kconfig
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5120 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/devices/Kconfig | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/devices/Kconfig b/src/devices/Kconfig index f247d89926..a4d8757f3d 100644 --- a/src/devices/Kconfig +++ b/src/devices/Kconfig @@ -89,6 +89,25 @@ config PCI_OPTION_ROM_RUN_YABEL endchoice +config YABEL_PCI_ACCESS_OTHER_DEVICES + prompt "Allow option roms to acces other devices" + bool + depends on PCI_OPTION_ROM_RUN_YABEL + help + Per default, YABEL only allows option roms to access the PCI device + that they are associated with. However, this causes trouble for some + onboard graphics chips whose option rom needs to reconfigure the + north bridge. + +config YABEL_VIRTMEM_LOCATION + prompt "Location of YABEL's virtual memory" + hex + depends on EXPERT + default 0x1000000 + help + YABEL requires 1MB memory for its CPU emulation. This memory is + normally located at 16MB. + # TODO: Describe better, and/or make a "choice" selection for this. config YABEL_DEBUG_FLAGS prompt "Hex value for YABEL debug flags" |