x86, pat/mtrr: Rendezvous all the cpus for MTRR/PAT init
authorSuresh Siddha <suresh.b.siddha@intel.com>
Thu, 20 Aug 2009 01:05:36 +0000 (18:05 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 21 Aug 2009 23:25:55 +0000 (16:25 -0700)
commitd0af9eed5aa91b6b7b5049cae69e5ea956fd85c3
treeb9214db00ba734e5b943165082c30336f7a8425a
parent269c861baa2fe7c114c3bc7831292758d29eb336
x86, pat/mtrr: Rendezvous all the cpus for MTRR/PAT init

SDM Vol 3a section titled "MTRR considerations in MP systems" specifies
the need for synchronizing the logical cpu's while initializing/updating
MTRR.

Currently Linux kernel does the synchronization of all cpu's only when
a single MTRR register is programmed/updated. During an AP online
(during boot/cpu-online/resume)  where we initialize all the MTRR/PAT registers,
we don't follow this synchronization algorithm.

This can lead to scenarios where during a dynamic cpu online, that logical cpu
is initializing MTRR/PAT with cache disabled (cr0.cd=1) etc while other logical
HT sibling continue to run (also with cache disabled because of cr0.cd=1
on its sibling).

Starting from Westmere, VMX transitions with cr0.cd=1 don't work properly
(because of some VMX performance optimizations) and the above scenario
(with one logical cpu doing VMX activity and another logical cpu coming online)
can result in system crash.

Fix the MTRR initialization by doing rendezvous of all the cpus. During
boot and resume, we delay the MTRR/PAT init for APs till all the
logical cpu's come online and the rendezvous process at the end of AP's bringup,
will initialize the MTRR/PAT for all AP's.

For dynamic single cpu online, we synchronize all the logical cpus and
do the MTRR/PAT init on the AP that is coming online.

Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
arch/x86/include/asm/mtrr.h
arch/x86/kernel/cpu/mtrr/main.c
arch/x86/kernel/smpboot.c
arch/x86/power/cpu.c
kernel/cpu.c