diff options
author | Stefan Reinauer <stepan@coreboot.org> | 2010-12-27 08:21:23 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-12-27 08:21:23 +0000 |
commit | acda2fc9acaa02b97efec9b82835306ef85ac90c (patch) | |
tree | 6181c18e98b4256fb890a723d80aaa959399ea07 | |
parent | a35eb2c5e2826cc52fc91c0d52f75ed047dd3122 (diff) |
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
-rw-r--r-- | src/southbridge/intel/sch/Kconfig | 24 | ||||
-rw-r--r-- | src/southbridge/intel/sch/Makefile.inc | 8 |
2 files changed, 26 insertions, 6 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 diff --git a/src/southbridge/intel/sch/Makefile.inc b/src/southbridge/intel/sch/Makefile.inc index 57bcf939a5..05f45ebe34 100644 --- a/src/southbridge/intel/sch/Makefile.inc +++ b/src/southbridge/intel/sch/Makefile.inc @@ -36,7 +36,7 @@ smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c romstage-$(CONFIG_USBDEBUG) += usb_debug.c # We don't ship that, but booting without it is bound to fail -#cbfs-files-y += cmc.bin -#cmc.bin-name := cmc.bin -#cmc.bin-type := 0xaa -#cmc.bin-position := 0xfffd0000 +cbfs-files-$(CONFIG_HAVE_CMC) += cmc.bin +cmc.bin-name := $(CONFIG_CMC_FILE) +cmc.bin-type := 0xaa +cmc.bin-position := 0xfffd0000 |