diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-29 06:40:16 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-29 06:40:16 +0000 |
commit | f866b36dcf0536690bf890c259f5dac221988bc2 (patch) | |
tree | cc5b4ccac0846a24f167eb4179c275750dd42fd8 /sys | |
parent | 6f4a9a5150ef332b08a9b090c44c186664e3d02b (diff) |
put the temperature msr in line with the others
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/include/specialreg.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/arch/amd64/include/specialreg.h b/sys/arch/amd64/include/specialreg.h index cdc85739ed6..fbc856244a4 100644 --- a/sys/arch/amd64/include/specialreg.h +++ b/sys/arch/amd64/include/specialreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: specialreg.h,v 1.9 2007/05/29 06:31:44 tedu Exp $ */ +/* $OpenBSD: specialreg.h,v 1.10 2007/05/29 06:40:15 tedu Exp $ */ /* $NetBSD: specialreg.h,v 1.1 2003/04/26 18:39:48 fvdl Exp $ */ /* $NetBSD: x86/specialreg.h,v 1.2 2003/04/25 21:54:30 fvdl Exp $ */ @@ -174,6 +174,9 @@ #define MSR_PERFCTR0 0x0c1 #define MSR_PERFCTR1 0x0c2 #define MSR_FSB_FREQ 0x0cd /* Core Duo/Solo only */ +/* not documented anywhere, see intelcore_update_sensor() */ +#define MSR_TEMPERATURE_TARGET 0x0ee +#define MSR_TEMPERATURE_TARGET_LOW_BIT 0x40000000 #define MSR_MTRRcap 0x0fe #define MSR_BBL_CR_ADDR 0x116 /* PII+ only */ #define MSR_BBL_CR_DECC 0x118 /* PII+ only */ @@ -629,7 +632,3 @@ #define K7_BP1_MATCH 0xdd #define K7_BP2_MATCH 0xde #define K7_BP3_MATCH 0xdf - -/* not documented anywhere, see intelcore_update_sensor() */ -#define MSR_TEMPERATURE_TARGET 0xee -#define MSR_TEMPERATURE_TARGET_LOW_BIT 0x40000000 |