Module Name: src
Committed By: jakllsch
Date: Sat Sep 18 15:49:26 UTC 2010
Modified Files:
src/sys/arch/x86/include: specialreg.h
Log Message:
AMD publication 25759 rev 3.69 says that DisIOReqLock in NB_CFG is "bit 3".
They probably mean "bit 3" and not "the third bit" (or bit 2).
This change should prevent superfluous warnings of errata 89.
To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/x86/include/specialreg.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/x86/include/specialreg.h
diff -u src/sys/arch/x86/include/specialreg.h:1.47 src/sys/arch/x86/include/specialreg.h:1.48
--- src/sys/arch/x86/include/specialreg.h:1.47 Wed Aug 25 05:07:43 2010
+++ src/sys/arch/x86/include/specialreg.h Sat Sep 18 15:49:25 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: specialreg.h,v 1.47 2010/08/25 05:07:43 jruoho Exp $ */
+/* $NetBSD: specialreg.h,v 1.48 2010/09/18 15:49:25 jakllsch Exp $ */
/*-
* Copyright (c) 1991 The Regents of the University of California.
@@ -450,7 +450,7 @@
#define HWCR_FFDIS 0x00000040
#define MSR_NB_CFG 0xc001001f
-#define NB_CFG_DISIOREQLOCK 0x0000000000000004ULL
+#define NB_CFG_DISIOREQLOCK 0x0000000000000008ULL
#define NB_CFG_DISDATMSK 0x0000001000000000ULL
#define NB_CFG_INITAPICCPUIDLO (1ULL << 54)