* [PATCH] 2/6 i386 serialize-msr
@ 2005-07-30 4:04 zach
2005-07-30 10:32 ` Pavel Machek
0 siblings, 1 reply; 5+ messages in thread
From: zach @ 2005-07-30 4:04 UTC (permalink / raw)
To: akpm, chrisl, davej, hpa, linux-kernel, pratap, Riley, zach
i386 arch cleanup. Introduce the serialize macro to serialize processor state.
Why the microcode update needs it I am not quite sure, since wrmsr() is already
a serializing instruction, but it is a microcode update, so I will keep the
semantic the same, since this could be a timing workaround. As far as I can
tell, this has always been there since the original microcode update source.
Signed-off-by: Zachary Amsden <zach@vmware.com>
Index: linux-2.6.13/arch/i386/kernel/microcode.c
===================================================================
--- linux-2.6.13.orig/arch/i386/kernel/microcode.c 2005-07-29 11:14:33.000000000 -0700
+++ linux-2.6.13/arch/i386/kernel/microcode.c 2005-07-29 11:16:18.000000000 -0700
@@ -164,7 +164,8 @@
}
wrmsr(MSR_IA32_UCODE_REV, 0, 0);
- __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+ /* XXX needed? wrmsr should serialize unless a chip bug */
+ serialize();
/* get the current revision from MSR 0x8B */
rdmsr(MSR_IA32_UCODE_REV, val[0], uci->rev);
pr_debug("microcode: collect_cpu_info : sig=0x%x, pf=0x%x, rev=0x%x\n",
@@ -377,7 +378,9 @@
(unsigned long) uci->mc->bits >> 16 >> 16);
wrmsr(MSR_IA32_UCODE_REV, 0, 0);
- __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+ /* XXX needed? wrmsr should serialize unless a chip bug */
+ serialize();
+
/* get the current revision from MSR 0x8B */
rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]);
Index: linux-2.6.13/include/asm-i386/processor.h
===================================================================
--- linux-2.6.13.orig/include/asm-i386/processor.h 2005-07-29 11:16:10.000000000 -0700
+++ linux-2.6.13/include/asm-i386/processor.h 2005-07-29 11:16:28.000000000 -0700
@@ -277,6 +277,11 @@
outb((data), 0x23); \
} while (0)
+static inline void serialize(void)
+{
+ __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+}
+
static inline void __monitor(const void *eax, unsigned long ecx,
unsigned long edx)
{
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] 2/6 i386 serialize-msr
2005-07-30 4:04 [PATCH] 2/6 i386 serialize-msr zach
@ 2005-07-30 10:32 ` Pavel Machek
2005-07-30 17:43 ` Zachary Amsden
0 siblings, 1 reply; 5+ messages in thread
From: Pavel Machek @ 2005-07-30 10:32 UTC (permalink / raw)
To: zach; +Cc: akpm, chrisl, davej, hpa, linux-kernel, pratap, Riley
Hi!
> i386 arch cleanup. Introduce the serialize macro to serialize processor state.
> Why the microcode update needs it I am not quite sure, since wrmsr() is already
> a serializing instruction, but it is a microcode update, so I will keep the
> semantic the same, since this could be a timing workaround. As far as I can
> tell, this has always been there since the original microcode update
> source.
Can we get better name, like "serialize_cpu()"?
Pavel
> Signed-off-by: Zachary Amsden <zach@vmware.com>
>
> Index: linux-2.6.13/arch/i386/kernel/microcode.c
> ===================================================================
> --- linux-2.6.13.orig/arch/i386/kernel/microcode.c 2005-07-29 11:14:33.000000000 -0700
> +++ linux-2.6.13/arch/i386/kernel/microcode.c 2005-07-29 11:16:18.000000000 -0700
> @@ -164,7 +164,8 @@
> }
>
> wrmsr(MSR_IA32_UCODE_REV, 0, 0);
> - __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
> + /* XXX needed? wrmsr should serialize unless a chip bug */
> + serialize();
> /* get the current revision from MSR 0x8B */
> rdmsr(MSR_IA32_UCODE_REV, val[0], uci->rev);
> pr_debug("microcode: collect_cpu_info : sig=0x%x, pf=0x%x, rev=0x%x\n",
--
teflon -- maybe it is a trademark, but it should not be.
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] 2/6 i386 serialize-msr
2005-07-30 10:32 ` Pavel Machek
@ 2005-07-30 17:43 ` Zachary Amsden
2005-07-30 17:59 ` Zwane Mwaikambo
0 siblings, 1 reply; 5+ messages in thread
From: Zachary Amsden @ 2005-07-30 17:43 UTC (permalink / raw)
To: Pavel Machek; +Cc: akpm, chrisl, davej, hpa, linux-kernel, pratap, Riley
[-- Attachment #1: Type: text/plain, Size: 792 bytes --]
Pavel Machek wrote:
>Hi!
>
>
>
>>i386 arch cleanup. Introduce the serialize macro to serialize processor state.
>>Why the microcode update needs it I am not quite sure, since wrmsr() is already
>>a serializing instruction, but it is a microcode update, so I will keep the
>>semantic the same, since this could be a timing workaround. As far as I can
>>tell, this has always been there since the original microcode update
>>source.
>>
>>
>
>Can we get better name, like "serialize_cpu()"?
> Pavel
>
>
No objections to changing the name by me. In fact, looks like serialize
was a rather poor choice in the context of the microcode update source,
since there are already references to lock based serialization right
around the same code. Updated comments as well.
Zach
[-- Attachment #2: serialize-msr --]
[-- Type: text/plain, Size: 1941 bytes --]
i386 arch cleanup. Introduce the serialize macro to serialize processor state.
Why the microcode update needs it I am not quite sure, since wrmsr() is already
a serializing instruction, but it is a microcode update, so I will keep the
semantic the same, since this could be a timing workaround. As far as I can
tell, this has always been there since the original microcode update source.
Signed-off-by: Zachary Amsden <zach@vmware.com>
Index: linux-2.6.13/arch/i386/kernel/microcode.c
===================================================================
--- linux-2.6.13.orig/arch/i386/kernel/microcode.c 2005-07-29 15:26:04.000000000 -0700
+++ linux-2.6.13/arch/i386/kernel/microcode.c 2005-07-30 10:35:27.000000000 -0700
@@ -164,7 +164,8 @@
}
wrmsr(MSR_IA32_UCODE_REV, 0, 0);
- __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+ /* see 1.07. Apprent chip bug */
+ serialize_cpu();
/* get the current revision from MSR 0x8B */
rdmsr(MSR_IA32_UCODE_REV, val[0], uci->rev);
pr_debug("microcode: collect_cpu_info : sig=0x%x, pf=0x%x, rev=0x%x\n",
@@ -377,7 +378,9 @@
(unsigned long) uci->mc->bits >> 16 >> 16);
wrmsr(MSR_IA32_UCODE_REV, 0, 0);
- __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+ /* see 1.07. Apprent chip bug */
+ serialize_cpu();
+
/* get the current revision from MSR 0x8B */
rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]);
Index: linux-2.6.13/include/asm-i386/processor.h
===================================================================
--- linux-2.6.13.orig/include/asm-i386/processor.h 2005-07-29 15:26:53.000000000 -0700
+++ linux-2.6.13/include/asm-i386/processor.h 2005-07-30 10:32:44.000000000 -0700
@@ -277,6 +277,11 @@
outb((data), 0x23); \
} while (0)
+static inline void serialize_cpu(void)
+{
+ __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+}
+
static inline void __monitor(const void *eax, unsigned long ecx,
unsigned long edx)
{
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] 2/6 i386 serialize-msr
2005-07-30 17:43 ` Zachary Amsden
@ 2005-07-30 17:59 ` Zwane Mwaikambo
2005-07-30 17:55 ` Zachary Amsden
0 siblings, 1 reply; 5+ messages in thread
From: Zwane Mwaikambo @ 2005-07-30 17:59 UTC (permalink / raw)
To: Zachary Amsden
Cc: Pavel Machek, akpm, chrisl, davej, hpa, linux-kernel, pratap,
Riley
wrmsr(MSR_IA32_UCODE_REV, 0, 0);
- __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+ /* see 1.07. Apprent chip bug */
+ serialize_cpu();
1.07 in which document? Also, please just spell 'apparent' correctly,
saving 1 byte really just looks lazy.
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] 2/6 i386 serialize-msr
2005-07-30 17:59 ` Zwane Mwaikambo
@ 2005-07-30 17:55 ` Zachary Amsden
0 siblings, 0 replies; 5+ messages in thread
From: Zachary Amsden @ 2005-07-30 17:55 UTC (permalink / raw)
To: Zwane Mwaikambo
Cc: Pavel Machek, akpm, chrisl, davej, hpa, linux-kernel, pratap,
Riley
[-- Attachment #1: Type: text/plain, Size: 348 bytes --]
'Apparently' I need to make some coffee :)
Zwane Mwaikambo wrote:
> wrmsr(MSR_IA32_UCODE_REV, 0, 0);
>- __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
>+ /* see 1.07. Apprent chip bug */
>+ serialize_cpu();
>
>1.07 in which document? Also, please just spell 'apparent' correctly,
>saving 1 byte really just looks lazy.
>
>
>
[-- Attachment #2: serialize-msr --]
[-- Type: text/plain, Size: 1993 bytes --]
i386 arch cleanup. Introduce the serialize macro to serialize processor state.
Why the microcode update needs it I am not quite sure, since wrmsr() is already
a serializing instruction, but it is a microcode update, so I will keep the
semantic the same, since this could be a timing workaround. As far as I can
tell, this has always been there since the original microcode update source.
Signed-off-by: Zachary Amsden <zach@vmware.com>
Index: linux-2.6.13/arch/i386/kernel/microcode.c
===================================================================
--- linux-2.6.13.orig/arch/i386/kernel/microcode.c 2005-07-29 15:26:04.000000000 -0700
+++ linux-2.6.13/arch/i386/kernel/microcode.c 2005-07-30 10:55:02.000000000 -0700
@@ -164,7 +164,8 @@
}
wrmsr(MSR_IA32_UCODE_REV, 0, 0);
- __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+ /* see notes above for revision 1.07. Apparent chip bug */
+ serialize_cpu();
/* get the current revision from MSR 0x8B */
rdmsr(MSR_IA32_UCODE_REV, val[0], uci->rev);
pr_debug("microcode: collect_cpu_info : sig=0x%x, pf=0x%x, rev=0x%x\n",
@@ -377,7 +378,9 @@
(unsigned long) uci->mc->bits >> 16 >> 16);
wrmsr(MSR_IA32_UCODE_REV, 0, 0);
- __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+ /* see notes above for revision 1.07. Apparent chip bug */
+ serialize_cpu();
+
/* get the current revision from MSR 0x8B */
rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]);
Index: linux-2.6.13/include/asm-i386/processor.h
===================================================================
--- linux-2.6.13.orig/include/asm-i386/processor.h 2005-07-29 15:26:53.000000000 -0700
+++ linux-2.6.13/include/asm-i386/processor.h 2005-07-30 10:32:44.000000000 -0700
@@ -277,6 +277,11 @@
outb((data), 0x23); \
} while (0)
+static inline void serialize_cpu(void)
+{
+ __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
+}
+
static inline void __monitor(const void *eax, unsigned long ecx,
unsigned long edx)
{
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-07-30 18:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-30 4:04 [PATCH] 2/6 i386 serialize-msr zach
2005-07-30 10:32 ` Pavel Machek
2005-07-30 17:43 ` Zachary Amsden
2005-07-30 17:59 ` Zwane Mwaikambo
2005-07-30 17:55 ` Zachary Amsden
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox