summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2009-10-01 23:22:50 +0000
committerRonald G. Minnich <rminnich@gmail.com>2009-10-01 23:22:50 +0000
commit149d6754aa2022eb65aa4d9ed28dea153455d36b (patch)
treec124f995c9620d07fbf093ee3b84a946eeb5e515 /src/cpu
parent4c5786b1f905aa90d788a12a3b8656d0f551a618 (diff)
downloadcoreboot-149d6754aa2022eb65aa4d9ed28dea153455d36b.tar.xz
Support variables for MMX and SSE. These would be used in
e.g. Makefile.romcc.inc to enable certain features. Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4706 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig
index 8f60644395..54b0175882 100644
--- a/src/cpu/Kconfig
+++ b/src/cpu/Kconfig
@@ -25,3 +25,17 @@ config SMP
bool
default y if MAX_CPUS != 1
default n
+
+config MMX
+ bool
+ default n
+ help
+ Set this in socket or model if the CPU has MMX.
+ If the CPUs for the socket always have MMX, set it there.
+
+config SSE
+ bool
+ default n
+ help
+ Set this in socket or model if the CPU has SSE.
+ If the CPUs for the socket always have MX, set it there.