blob: a580eb5c7e5284c0a687ea21f86fc2efa8c85434 [file] [log] [blame]
Suresh Siddhadc1e35c2008-07-29 10:29:19 -07001/*
2 * xsave/xrstor support.
3 *
4 * Author: Suresh Siddha <suresh.b.siddha@intel.com>
5 */
Suresh Siddhadc1e35c2008-07-29 10:29:19 -07006#include <linux/compat.h>
Fenghua Yu7e7ce872014-05-29 11:12:43 -07007#include <linux/cpu.h>
Ingo Molnar59a36d12015-04-30 08:53:18 +02008
Ingo Molnardf6b35f2015-04-24 02:46:00 +02009#include <asm/fpu/api.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020010#include <asm/fpu/internal.h>
Ingo Molnarfcbc99c2015-04-30 08:45:02 +020011#include <asm/fpu/signal.h>
Ingo Molnar59a36d12015-04-30 08:53:18 +020012#include <asm/fpu/regset.h>
Ingo Molnarb992c662015-04-30 12:45:38 +020013
Andy Lutomirski375074c2014-10-24 15:58:07 -070014#include <asm/tlbflush.h>
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070015
Ingo Molnar5b073432015-04-28 08:51:17 +020016static const char *xfeature_names[] =
17{
18 "x87 floating point registers" ,
19 "SSE registers" ,
20 "AVX registers" ,
21 "MPX bounds registers" ,
22 "MPX CSR" ,
23 "AVX-512 opmask" ,
24 "AVX-512 Hi256" ,
25 "AVX-512 ZMM_Hi256" ,
26 "unknown xstate feature" ,
27};
28
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070029/*
Ingo Molnar614df7f2015-04-24 09:20:33 +020030 * Mask of xstate features supported by the CPU and the kernel:
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070031 */
Ingo Molnar5b073432015-04-28 08:51:17 +020032u64 xfeatures_mask __read_mostly;
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070033
Ingo Molnar966ece62015-04-25 05:04:41 +020034static unsigned int xstate_offsets[XFEATURES_NR_MAX], xstate_sizes[XFEATURES_NR_MAX];
Ingo Molnar614df7f2015-04-24 09:20:33 +020035static unsigned int xstate_comp_offsets[sizeof(xfeatures_mask)*8];
Ingo Molnar84246fe42015-04-24 09:23:59 +020036
37/* The number of supported xfeatures in xfeatures_mask: */
38static unsigned int xfeatures_nr;
Suresh Siddhaa1488f82010-07-19 16:05:48 -070039
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070040/*
Ingo Molnar5b073432015-04-28 08:51:17 +020041 * Return whether the system supports a given xfeature.
42 *
43 * Also return the name of the (most advanced) feature that the caller requested:
44 */
45int cpu_has_xfeatures(u64 xfeatures_needed, const char **feature_name)
46{
47 u64 xfeatures_missing = xfeatures_needed & ~xfeatures_mask;
48
49 if (unlikely(feature_name)) {
50 long xfeature_idx, max_idx;
51 u64 xfeatures_print;
52 /*
53 * So we use FLS here to be able to print the most advanced
54 * feature that was requested but is missing. So if a driver
55 * asks about "XSTATE_SSE | XSTATE_YMM" we'll print the
56 * missing AVX feature - this is the most informative message
57 * to users:
58 */
59 if (xfeatures_missing)
60 xfeatures_print = xfeatures_missing;
61 else
62 xfeatures_print = xfeatures_needed;
63
64 xfeature_idx = fls64(xfeatures_print)-1;
65 max_idx = ARRAY_SIZE(xfeature_names)-1;
66 xfeature_idx = min(xfeature_idx, max_idx);
67
68 *feature_name = xfeature_names[xfeature_idx];
69 }
70
71 if (xfeatures_missing)
72 return 0;
73
74 return 1;
75}
76EXPORT_SYMBOL_GPL(cpu_has_xfeatures);
77
78/*
Ingo Molnaraeb997b92015-05-01 09:59:04 +020079 * When executing XSAVEOPT (or other optimized XSAVE instructions), if
80 * a processor implementation detects that an FPU state component is still
81 * (or is again) in its initialized state, it may clear the corresponding
82 * bit in the header.xfeatures field, and can skip the writeout of registers
83 * to the corresponding memory layout.
Ingo Molnar73a3aeb2015-04-24 11:32:59 +020084 *
85 * This means that when the bit is zero, the state component might still contain
86 * some previous - non-initialized register state.
87 *
88 * Before writing xstate information to user-space we sanitize those components,
89 * to always ensure that the memory layout of a feature will be in the init state
90 * if the corresponding header bit is zero. This is to ensure that user-space doesn't
91 * see some stale state in the memory layout during signal handling, debugging etc.
Suresh Siddha29104e12010-07-19 16:05:49 -070092 */
Ingo Molnar36e49e7f2015-04-28 11:25:02 +020093void fpstate_sanitize_xstate(struct fpu *fpu)
Suresh Siddha29104e12010-07-19 16:05:49 -070094{
Ingo Molnarc47ada32015-04-30 17:15:32 +020095 struct fxregs_state *fx = &fpu->state.fxsave;
Ingo Molnar73a3aeb2015-04-24 11:32:59 +020096 int feature_bit;
Ingo Molnar400e4b22015-04-24 10:19:47 +020097 u64 xfeatures;
Suresh Siddha29104e12010-07-19 16:05:49 -070098
Ingo Molnar1ac91a72015-04-28 11:17:55 +020099 if (!use_xsaveopt())
Suresh Siddha29104e12010-07-19 16:05:49 -0700100 return;
101
Ingo Molnar36e49e7f2015-04-28 11:25:02 +0200102 xfeatures = fpu->state.xsave.header.xfeatures;
Suresh Siddha29104e12010-07-19 16:05:49 -0700103
104 /*
105 * None of the feature bits are in init state. So nothing else
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300106 * to do for us, as the memory layout is up to date.
Suresh Siddha29104e12010-07-19 16:05:49 -0700107 */
Ingo Molnar400e4b22015-04-24 10:19:47 +0200108 if ((xfeatures & xfeatures_mask) == xfeatures_mask)
Suresh Siddha29104e12010-07-19 16:05:49 -0700109 return;
110
111 /*
112 * FP is in init state
113 */
Ingo Molnar400e4b22015-04-24 10:19:47 +0200114 if (!(xfeatures & XSTATE_FP)) {
Suresh Siddha29104e12010-07-19 16:05:49 -0700115 fx->cwd = 0x37f;
116 fx->swd = 0;
117 fx->twd = 0;
118 fx->fop = 0;
119 fx->rip = 0;
120 fx->rdp = 0;
121 memset(&fx->st_space[0], 0, 128);
122 }
123
124 /*
125 * SSE is in init state
126 */
Ingo Molnar400e4b22015-04-24 10:19:47 +0200127 if (!(xfeatures & XSTATE_SSE))
Suresh Siddha29104e12010-07-19 16:05:49 -0700128 memset(&fx->xmm_space[0], 0, 256);
129
Ingo Molnar73a3aeb2015-04-24 11:32:59 +0200130 /*
131 * First two features are FPU and SSE, which above we handled
132 * in a special way already:
133 */
134 feature_bit = 0x2;
Ingo Molnar400e4b22015-04-24 10:19:47 +0200135 xfeatures = (xfeatures_mask & ~xfeatures) >> 2;
Suresh Siddha29104e12010-07-19 16:05:49 -0700136
137 /*
Ingo Molnar73a3aeb2015-04-24 11:32:59 +0200138 * Update all the remaining memory layouts according to their
139 * standard xstate layout, if their header bit is in the init
140 * state:
Suresh Siddha29104e12010-07-19 16:05:49 -0700141 */
Ingo Molnar400e4b22015-04-24 10:19:47 +0200142 while (xfeatures) {
143 if (xfeatures & 0x1) {
Suresh Siddha29104e12010-07-19 16:05:49 -0700144 int offset = xstate_offsets[feature_bit];
145 int size = xstate_sizes[feature_bit];
146
Ingo Molnar73a3aeb2015-04-24 11:32:59 +0200147 memcpy((void *)fx + offset,
Ingo Molnar6f575022015-04-30 11:07:06 +0200148 (void *)&init_fpstate.xsave + offset,
Suresh Siddha29104e12010-07-19 16:05:49 -0700149 size);
150 }
151
Ingo Molnar400e4b22015-04-24 10:19:47 +0200152 xfeatures >>= 1;
Suresh Siddha29104e12010-07-19 16:05:49 -0700153 feature_bit++;
154 }
155}
156
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700157/*
Ingo Molnar55cc4672015-04-25 06:26:36 +0200158 * Enable the extended processor state save/restore feature.
159 * Called once per CPU onlining.
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700160 */
Ingo Molnar55cc4672015-04-25 06:26:36 +0200161void fpu__init_cpu_xstate(void)
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700162{
Ingo Molnare84611f2015-04-25 06:41:07 +0200163 if (!cpu_has_xsave || !xfeatures_mask)
Ingo Molnar55cc4672015-04-25 06:26:36 +0200164 return;
165
Andy Lutomirski375074c2014-10-24 15:58:07 -0700166 cr4_set_bits(X86_CR4_OSXSAVE);
Ingo Molnar614df7f2015-04-24 09:20:33 +0200167 xsetbv(XCR_XFEATURE_ENABLED_MASK, xfeatures_mask);
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700168}
169
170/*
Ingo Molnar39f1acd2015-05-04 07:37:47 +0200171 * Record the offsets and sizes of various xstates contained
172 * in the XSAVE state memory layout.
173 *
174 * ( Note that certain features might be non-present, for them
175 * we'll have 0 offset and 0 size. )
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700176 */
Robert Richter4995b9d2010-07-21 19:03:56 +0200177static void __init setup_xstate_features(void)
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700178{
Ingo Molnar39f1acd2015-05-04 07:37:47 +0200179 u32 eax, ebx, ecx, edx, leaf;
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700180
Ingo Molnar84246fe42015-04-24 09:23:59 +0200181 xfeatures_nr = fls64(xfeatures_mask);
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700182
Ingo Molnar39f1acd2015-05-04 07:37:47 +0200183 for (leaf = 2; leaf < xfeatures_nr; leaf++) {
Robert Richteree813d52010-07-21 19:03:54 +0200184 cpuid_count(XSTATE_CPUID, leaf, &eax, &ebx, &ecx, &edx);
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700185
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700186 xstate_offsets[leaf] = ebx;
187 xstate_sizes[leaf] = eax;
188
Ingo Molnar39f1acd2015-05-04 07:37:47 +0200189 printk(KERN_INFO "x86/fpu: xstate_offset[%d]: %04x, xstate_sizes[%d]: %04x\n", leaf, ebx, leaf, eax);
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700190 leaf++;
Ingo Molnar39f1acd2015-05-04 07:37:47 +0200191 }
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700192}
193
Ingo Molnar32231872015-05-04 09:52:42 +0200194static void __init print_xstate_feature(u64 xstate_mask)
Ingo Molnar69496e12015-04-24 08:48:01 +0200195{
Ingo Molnar33588b52015-04-28 09:17:26 +0200196 const char *feature_name;
Ingo Molnar69496e12015-04-24 08:48:01 +0200197
Ingo Molnar33588b52015-04-28 09:17:26 +0200198 if (cpu_has_xfeatures(xstate_mask, &feature_name))
199 pr_info("x86/fpu: Supporting XSAVE feature 0x%02Lx: '%s'\n", xstate_mask, feature_name);
Ingo Molnar69496e12015-04-24 08:48:01 +0200200}
201
202/*
203 * Print out all the supported xstate features:
204 */
Ingo Molnar32231872015-05-04 09:52:42 +0200205static void __init print_xstate_features(void)
Ingo Molnar69496e12015-04-24 08:48:01 +0200206{
Ingo Molnar33588b52015-04-28 09:17:26 +0200207 print_xstate_feature(XSTATE_FP);
208 print_xstate_feature(XSTATE_SSE);
209 print_xstate_feature(XSTATE_YMM);
210 print_xstate_feature(XSTATE_BNDREGS);
211 print_xstate_feature(XSTATE_BNDCSR);
212 print_xstate_feature(XSTATE_OPMASK);
213 print_xstate_feature(XSTATE_ZMM_Hi256);
214 print_xstate_feature(XSTATE_Hi16_ZMM);
Ingo Molnar69496e12015-04-24 08:48:01 +0200215}
216
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700217/*
Fenghua Yu7496d642014-05-29 11:12:44 -0700218 * This function sets up offsets and sizes of all extended states in
219 * xsave area. This supports both standard format and compacted format
220 * of the xsave aread.
Fenghua Yu7496d642014-05-29 11:12:44 -0700221 */
Ingo Molnar32231872015-05-04 09:52:42 +0200222static void __init setup_xstate_comp(void)
Fenghua Yu7496d642014-05-29 11:12:44 -0700223{
Ingo Molnar614df7f2015-04-24 09:20:33 +0200224 unsigned int xstate_comp_sizes[sizeof(xfeatures_mask)*8];
Fenghua Yu7496d642014-05-29 11:12:44 -0700225 int i;
226
Fenghua Yu8ff925e2014-05-30 14:59:24 -0700227 /*
228 * The FP xstates and SSE xstates are legacy states. They are always
229 * in the fixed offsets in the xsave area in either compacted form
230 * or standard form.
231 */
232 xstate_comp_offsets[0] = 0;
Ingo Molnarc47ada32015-04-30 17:15:32 +0200233 xstate_comp_offsets[1] = offsetof(struct fxregs_state, xmm_space);
Fenghua Yu7496d642014-05-29 11:12:44 -0700234
235 if (!cpu_has_xsaves) {
Ingo Molnar84246fe42015-04-24 09:23:59 +0200236 for (i = 2; i < xfeatures_nr; i++) {
Ingo Molnar614df7f2015-04-24 09:20:33 +0200237 if (test_bit(i, (unsigned long *)&xfeatures_mask)) {
Fenghua Yu7496d642014-05-29 11:12:44 -0700238 xstate_comp_offsets[i] = xstate_offsets[i];
239 xstate_comp_sizes[i] = xstate_sizes[i];
240 }
241 }
242 return;
243 }
244
245 xstate_comp_offsets[2] = FXSAVE_SIZE + XSAVE_HDR_SIZE;
246
Ingo Molnar84246fe42015-04-24 09:23:59 +0200247 for (i = 2; i < xfeatures_nr; i++) {
Ingo Molnar614df7f2015-04-24 09:20:33 +0200248 if (test_bit(i, (unsigned long *)&xfeatures_mask))
Fenghua Yu7496d642014-05-29 11:12:44 -0700249 xstate_comp_sizes[i] = xstate_sizes[i];
250 else
251 xstate_comp_sizes[i] = 0;
252
253 if (i > 2)
254 xstate_comp_offsets[i] = xstate_comp_offsets[i-1]
255 + xstate_comp_sizes[i-1];
256
257 }
258}
259
260/*
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700261 * setup the xstate image representing the init state
262 */
Ingo Molnar32231872015-05-04 09:52:42 +0200263static void __init setup_init_fpu_buf(void)
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700264{
Ingo Molnare97131a2015-05-05 11:34:49 +0200265 static int on_boot_cpu = 1;
266
267 WARN_ON_FPU(!on_boot_cpu);
268 on_boot_cpu = 0;
269
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700270 if (!cpu_has_xsave)
271 return;
272
273 setup_xstate_features();
Ingo Molnar69496e12015-04-24 08:48:01 +0200274 print_xstate_features();
Suresh Siddhaa1488f82010-07-19 16:05:48 -0700275
Fenghua Yu47c2f292014-05-29 11:12:42 -0700276 if (cpu_has_xsaves) {
Ingo Molnar6f575022015-04-30 11:07:06 +0200277 init_fpstate.xsave.header.xcomp_bv = (u64)1 << 63 | xfeatures_mask;
278 init_fpstate.xsave.header.xfeatures = xfeatures_mask;
Fenghua Yu47c2f292014-05-29 11:12:42 -0700279 }
280
Suresh Siddha29104e12010-07-19 16:05:49 -0700281 /*
282 * Init all the features state with header_bv being 0x0
283 */
Ingo Molnard65fcd62015-05-27 14:04:44 +0200284 copy_kernel_to_xregs_booting(&init_fpstate.xsave);
Ingo Molnar3e261c12015-04-22 15:08:34 +0200285
Suresh Siddha29104e12010-07-19 16:05:49 -0700286 /*
287 * Dump the init state again. This is to identify the init state
288 * of any feature which is not represented by all zero's.
289 */
Ingo Molnarc6813142015-04-30 11:34:09 +0200290 copy_xregs_to_kernel_booting(&init_fpstate.xsave);
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700291}
292
Fenghua Yu7e7ce872014-05-29 11:12:43 -0700293/*
Ingo Molnar614df7f2015-04-24 09:20:33 +0200294 * Calculate total size of enabled xstates in XCR0/xfeatures_mask.
Fenghua Yu7e7ce872014-05-29 11:12:43 -0700295 */
296static void __init init_xstate_size(void)
297{
298 unsigned int eax, ebx, ecx, edx;
299 int i;
300
301 if (!cpu_has_xsaves) {
302 cpuid_count(XSTATE_CPUID, 0, &eax, &ebx, &ecx, &edx);
303 xstate_size = ebx;
304 return;
305 }
306
307 xstate_size = FXSAVE_SIZE + XSAVE_HDR_SIZE;
308 for (i = 2; i < 64; i++) {
Ingo Molnar614df7f2015-04-24 09:20:33 +0200309 if (test_bit(i, (unsigned long *)&xfeatures_mask)) {
Fenghua Yu7e7ce872014-05-29 11:12:43 -0700310 cpuid_count(XSTATE_CPUID, i, &eax, &ebx, &ecx, &edx);
311 xstate_size += eax;
312 }
313 }
314}
315
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700316/*
317 * Enable and initialize the xsave feature.
Ingo Molnar55cc4672015-04-25 06:26:36 +0200318 * Called once per system bootup.
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700319 */
Ingo Molnar32231872015-05-04 09:52:42 +0200320void __init fpu__init_system_xstate(void)
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700321{
322 unsigned int eax, ebx, ecx, edx;
Ingo Molnare97131a2015-05-05 11:34:49 +0200323 static int on_boot_cpu = 1;
324
325 WARN_ON_FPU(!on_boot_cpu);
326 on_boot_cpu = 0;
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700327
Ingo Molnare9dbfd62015-04-25 06:47:24 +0200328 if (!cpu_has_xsave) {
329 pr_info("x86/fpu: Legacy x87 FPU detected.\n");
330 return;
331 }
332
Robert Richteree813d52010-07-21 19:03:54 +0200333 if (boot_cpu_data.cpuid_level < XSTATE_CPUID) {
Ingo Molnare97131a2015-05-05 11:34:49 +0200334 WARN_ON_FPU(1);
Robert Richteree813d52010-07-21 19:03:54 +0200335 return;
336 }
337
338 cpuid_count(XSTATE_CPUID, 0, &eax, &ebx, &ecx, &edx);
Ingo Molnar614df7f2015-04-24 09:20:33 +0200339 xfeatures_mask = eax + ((u64)edx << 32);
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700340
Ingo Molnar614df7f2015-04-24 09:20:33 +0200341 if ((xfeatures_mask & XSTATE_FPSSE) != XSTATE_FPSSE) {
342 pr_err("x86/fpu: FP/SSE not present amongst the CPU's xstate features: 0x%llx.\n", xfeatures_mask);
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700343 BUG();
344 }
345
Ingo Molnar6e553592015-05-24 09:58:12 +0200346 /* Support only the state known to the OS: */
Ingo Molnar614df7f2015-04-24 09:20:33 +0200347 xfeatures_mask = xfeatures_mask & XCNTXT_MASK;
Robert Richter97e80a72010-07-21 19:03:53 +0200348
Ingo Molnar55cc4672015-04-25 06:26:36 +0200349 /* Enable xstate instructions to be able to continue with initialization: */
350 fpu__init_cpu_xstate();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700351
Ingo Molnar6e553592015-05-24 09:58:12 +0200352 /* Recompute the context size for enabled features: */
Fenghua Yu7e7ce872014-05-29 11:12:43 -0700353 init_xstate_size();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700354
Ingo Molnar614df7f2015-04-24 09:20:33 +0200355 update_regset_xstate_info(xstate_size, xfeatures_mask);
Ingo Molnarb992c662015-04-30 12:45:38 +0200356 fpu__init_prepare_fx_sw_frame();
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700357 setup_init_fpu_buf();
Ingo Molnar5fd402d2015-05-04 09:43:55 +0200358 setup_xstate_comp();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700359
Ingo Molnar32d4d9c2015-04-24 03:25:18 +0200360 pr_info("x86/fpu: Enabled xstate features 0x%llx, context size is 0x%x bytes, using '%s' format.\n",
Ingo Molnar614df7f2015-04-24 09:20:33 +0200361 xfeatures_mask,
Ingo Molnar32d4d9c2015-04-24 03:25:18 +0200362 xstate_size,
363 cpu_has_xsaves ? "compacted" : "standard");
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700364}
Robert Richter82d41502010-07-20 20:50:51 +0200365
H. Peter Anvin1cff92d2010-07-21 14:23:10 -0700366/*
Ingo Molnar9254aaa2015-04-24 10:02:32 +0200367 * Restore minimal FPU state after suspend:
368 */
369void fpu__resume_cpu(void)
370{
371 /*
372 * Restore XCR0 on xsave capable CPUs:
373 */
374 if (cpu_has_xsave)
375 xsetbv(XCR_XFEATURE_ENABLED_MASK, xfeatures_mask);
376}
377
378/*
Fenghua Yu7496d642014-05-29 11:12:44 -0700379 * Given the xsave area and a state inside, this function returns the
380 * address of the state.
381 *
382 * This is the API that is called to get xstate address in either
383 * standard format or compacted format of xsave area.
384 *
385 * Inputs:
386 * xsave: base address of the xsave area;
387 * xstate: state which is defined in xsave.h (e.g. XSTATE_FP, XSTATE_SSE,
388 * etc.)
389 * Output:
390 * address of the state in the xsave area.
391 */
Ingo Molnarc47ada32015-04-30 17:15:32 +0200392void *get_xsave_addr(struct xregs_state *xsave, int xstate)
Fenghua Yu7496d642014-05-29 11:12:44 -0700393{
394 int feature = fls64(xstate) - 1;
Ingo Molnar614df7f2015-04-24 09:20:33 +0200395 if (!test_bit(feature, (unsigned long *)&xfeatures_mask))
Fenghua Yu7496d642014-05-29 11:12:44 -0700396 return NULL;
397
398 return (void *)xsave + xstate_comp_offsets[feature];
399}
Paolo Bonziniba7b3922014-11-24 10:57:42 +0100400EXPORT_SYMBOL_GPL(get_xsave_addr);