summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/sch/Kconfig
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coreboot.org>2010-12-27 08:21:23 +0000
committerStefan Reinauer <stepan@openbios.org>2010-12-27 08:21:23 +0000
commitacda2fc9acaa02b97efec9b82835306ef85ac90c (patch)
tree6181c18e98b4256fb890a723d80aaa959399ea07 /src/southbridge/intel/sch/Kconfig
parenta35eb2c5e2826cc52fc91c0d52f75ed047dd3122 (diff)
downloadcoreboot-acda2fc9acaa02b97efec9b82835306ef85ac90c.tar.xz
Intel SCH: make state machine binary selection available in Kconfig for now.
Signed-off-by: Stefan Reinauer <stepan@coreboot.org> Acked-by: Stefan Reinauer <stepan@coreboot.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6214 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/intel/sch/Kconfig')
-rw-r--r--src/southbridge/intel/sch/Kconfig24
1 files changed, 22 insertions, 2 deletions
diff --git a/src/southbridge/intel/sch/Kconfig b/src/southbridge/intel/sch/Kconfig
index 525db06dc5..4b35306a34 100644
--- a/src/southbridge/intel/sch/Kconfig
+++ b/src/southbridge/intel/sch/Kconfig
@@ -22,11 +22,31 @@ config SOUTHBRIDGE_INTEL_SCH
select TINY_BOOTBLOCK
select HAVE_USBDEBUG
+if SOUTHBRIDGE_INTEL_SCH
+
config EHCI_BAR
hex
- default 0xfef00000 if SOUTHBRIDGE_INTEL_SCH
+ default 0xfef00000
config EHCI_DEBUG_OFFSET
hex
- default 0xa0 if SOUTHBRIDGE_INTEL_SCH
+ default 0xa0
+
+config HAVE_CMC
+ bool "Add a CMC state machine binary"
+ help
+ Select this option to add a CMC state machine binary to
+ the resulting coreboot image.
+
+ Note: Without this binary coreboot will not work
+
+config CMC_FILE
+ string "Intel CMC path and filename"
+ depends on HAVE_CMC
+ default "cmc.bin"
+ help
+ The path and filename of the file to use as CMC state machine
+ binary.
+
+endif