summaryrefslogtreecommitdiffstats
path: root/src/cpu/Kconfig
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2012-06-19 04:20:20 +0000
committerRonald G. Minnich <rminnich@gmail.com>2012-07-24 23:15:35 +0200
commit999e94cb7a428751cf11be6859dbf29f954bbdc3 (patch)
tree7ae532eb3d43966f57be31f299886751ddf5d646 /src/cpu/Kconfig
parent48c6bae1f2cc1dc1996c36986b7a87273f48b64e (diff)
downloadcoreboot-999e94cb7a428751cf11be6859dbf29f954bbdc3.tar.gz
coreboot-999e94cb7a428751cf11be6859dbf29f954bbdc3.tar.bz2
coreboot-999e94cb7a428751cf11be6859dbf29f954bbdc3.zip
Config changes to support microcode in CBFS
Nothing is yet enabled, this is just a config skeleton change. The MICROCODE_INCLUDE_PATH definition is going to be used by the Makefile building the microcode blob for CBFS inclusion. Change-Id: I7868db3cfd4b181500e361706e5f4dc08ca1c87d Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: http://review.coreboot.org/1292 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu/Kconfig')
-rw-r--r--src/cpu/Kconfig9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig
index d34b1abe301b..f37bbf675521 100644
--- a/src/cpu/Kconfig
+++ b/src/cpu/Kconfig
@@ -62,4 +62,13 @@ config SSE2
streaming SIMD instructions. Some parts of coreboot can be built
with more efficient code if SSE2 instructions are available.
+if CPU_INTEL_MODEL_206AX || CPU_INTEL_MODEL_306AX
+
+config MICROCODE_IN_CBFS
+ bool "Look for microcode in CBFS"
+ help
+ Load microcode updates from CBFS instead of compiling them in.
+
+endif
+
endif # ARCH_X86