diff options
author | Jordan Crouse <jordan.crouse@amd.com> | 2006-01-06 00:12:14 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 08:33:38 -0800 |
commit | f90b8116032f4216d260e31f966a3585319387ac (patch) | |
tree | c7234671ff0ee152e40dc0175fe46a0d7147641d /arch/i386/kernel/cpu/amd.c | |
parent | 6b7f430ee0a269464aa29159eb464e647ca313d3 (diff) | |
download | kernel-crypto-f90b8116032f4216d260e31f966a3585319387ac.tar.gz kernel-crypto-f90b8116032f4216d260e31f966a3585319387ac.tar.xz kernel-crypto-f90b8116032f4216d260e31f966a3585319387ac.zip |
[PATCH] Base support for AMD Geode GX/LX processors
Provide basic support for the AMD Geode GX and LX processors.
Signed-off-by: Jordan Crouse <jordan.crouse@amd.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386/kernel/cpu/amd.c')
-rw-r--r-- | arch/i386/kernel/cpu/amd.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/i386/kernel/cpu/amd.c b/arch/i386/kernel/cpu/amd.c index e344ef88cfc..e7697e077f6 100644 --- a/arch/i386/kernel/cpu/amd.c +++ b/arch/i386/kernel/cpu/amd.c @@ -161,8 +161,13 @@ static void __init init_amd(struct cpuinfo_x86 *c) set_bit(X86_FEATURE_K6_MTRR, c->x86_capability); break; } - break; + if (c->x86_model == 10) { + /* AMD Geode LX is model 10 */ + /* placeholder for any needed mods */ + break; + } + break; case 6: /* An Athlon/Duron */ /* Bit 15 of Athlon specific MSR 15, needs to be 0 |