x86, xsave: Introduce xstate enable functions

The patch renames xsave_cntxt_init() and __xsave_init() into
xstate_enable_boot_cpu() and xstate_enable() as this names are more
meaningful.

It also removes the duplicate xcr setup for the boot cpu.

Signed-off-by: Robert Richter <robert.richter@amd.com>
LKML-Reference: <1279731838-1522-3-git-send-email-robert.richter@amd.com>
Acked-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
Robert Richter 2010-07-21 19:03:53 +02:00 committed by H. Peter Anvin
parent 0e49bf66d2
commit 97e80a70db

View File

@ -360,15 +360,10 @@ unsigned int sig_xstate_size = sizeof(struct _fpstate);
/* /*
* Enable the extended processor state save/restore feature * Enable the extended processor state save/restore feature
*/ */
static void __cpuinit __xsave_init(void) static inline void xstate_enable(u64 mask)
{ {
set_in_cr4(X86_CR4_OSXSAVE); set_in_cr4(X86_CR4_OSXSAVE);
xsetbv(XCR_XFEATURE_ENABLED_MASK, mask);
/*
* Enable all the features that the HW is capable of
* and the Linux kernel is aware of.
*/
xsetbv(XCR_XFEATURE_ENABLED_MASK, pcntxt_mask);
} }
/* /*
@ -426,7 +421,7 @@ static void __init setup_xstate_init(void)
/* /*
* Enable and initialize the xsave feature. * Enable and initialize the xsave feature.
*/ */
static void __cpuinit xsave_cntxt_init(void) static void __cpuinit xstate_enable_boot_cpu(void)
{ {
unsigned int eax, ebx, ecx, edx; unsigned int eax, ebx, ecx, edx;
@ -443,7 +438,8 @@ static void __cpuinit xsave_cntxt_init(void)
* Support only the state known to OS. * Support only the state known to OS.
*/ */
pcntxt_mask = pcntxt_mask & XCNTXT_MASK; pcntxt_mask = pcntxt_mask & XCNTXT_MASK;
__xsave_init();
xstate_enable(pcntxt_mask);
/* /*
* Recompute the context size for enabled features * Recompute the context size for enabled features
@ -470,6 +466,7 @@ void __cpuinit xsave_init(void)
* Boot processor to setup the FP and extended state context info. * Boot processor to setup the FP and extended state context info.
*/ */
if (!smp_processor_id()) if (!smp_processor_id())
xsave_cntxt_init(); xstate_enable_boot_cpu();
__xsave_init(); else
xstate_enable(pcntxt_mask);
} }