[PATCH] Enabling SSE on K7's with broken BIOS's..

From: John Clemens (john@deater.net)
Date: Fri Sep 21 2001 - 00:43:18 EST


This is pass #2 at the patch I posted yesterday. I've managed to narrow
it down to the one bit in the HWCR that seems to control SSE. BIT15 in
the register must be 0 to enable SSE. Since I'm now only changing this
one bit, and only if SSE isn't enabled already, and only if it's a model 6
or 7 CPU, I think it's safe. This patch is necessary for me to use SSE on
my HP Duron notebook.

It works for me, under light testing. I'd like others in my situation to
test (most probably those with HP Athlon4/Duron laptops and those plugging
new AthlonMP's and XP's into old motherboards).

I'll wait for people to test/complain before i officially submit to Alan
and Linus.

john.c

-- 
John Clemens          http://www.deater.net/john
john@deater.net     ICQ: 7175925, IM: PianoManO8
      "I Hate Quotes" -- Samuel L. Clemens

diff -u --recursive linux-orig/arch/i386/kernel/setup.c linux/arch/i386/kernel/setup.c --- linux-orig/arch/i386/kernel/setup.c Wed Sep 19 22:49:11 2001 +++ linux/arch/i386/kernel/setup.c Fri Sep 21 01:23:22 2001 @@ -1272,6 +1272,21 @@

case 6: /* An Athlon/Duron. We can trust the BIOS probably */ mcheck_init(c); + + /* Bit 15 of Athlon specific MSR 15, needs to be 0 + * to enable SSE on Palomino/Morgan CPU's. + * If the BIOS didn't enable it already, enable it + * here. + */ + if (c->x86_model == 6 || c->x86_model == 7) { + if (!test_bit(X86_FEATURE_XMM, &c->x86_capability)) { + printk(KERN_INFO "Enabling K7/SSE support, since BIOS did not\n"); + rdmsr(MSR_K7_HWCR, l, h); + l &= ~0x00008000; + wrmsr(MSR_K7_HWCR, l, h); + set_bit(X86_FEATURE_XMM, &c->x86_capability); + } + } break; }

diff -u --recursive linux-orig/include/asm-i386/msr.h linux/include/asm-i386/msr.h --- linux-orig/include/asm-i386/msr.h Wed Sep 19 22:49:27 2001 +++ linux/include/asm-i386/msr.h Wed Sep 19 22:57:32 2001 @@ -81,6 +81,7 @@

#define MSR_K7_EVNTSEL0 0xC0010000 #define MSR_K7_PERFCTR0 0xC0010004 +#define MSR_K7_HWCR 0xC0010015

/* Centaur-Hauls/IDT defined MSRs. */ #define MSR_IDT_FCR1 0x107

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sun Sep 23 2001 - 21:00:42 EST