Blame view

lib/raid6/x86.h 1.64 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
  /* ----------------------------------------------------------------------- *
   *
   *   Copyright 2002-2004 H. Peter Anvin - All Rights Reserved
   *
   *   This program is free software; you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
   *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
93ed05e2a   Atsushi SAKAI   md: fix typo in F...
8
   *   Boston MA 02111-1307, USA; either version 2 of the License, or
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
11
12
13
   *   (at your option) any later version; incorporated herein by reference.
   *
   * ----------------------------------------------------------------------- */
  
  /*
a8e026c78   NeilBrown   Further tidyup of...
14
   * raid6/x86.h
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
19
20
   *
   * Definitions common to x86 and x86-64 RAID-6 code only
   */
  
  #ifndef LINUX_RAID_RAID6X86_H
  #define LINUX_RAID_RAID6X86_H
ca5cd877a   Al Viro   x86 merge fallout...
21
  #if (defined(__i386__) || defined(__x86_64__)) && !defined(__arch_um__)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
  #ifdef __KERNEL__ /* Real code */
a723406c4   H. Peter Anvin   [PATCH] md: RAID6...
24
  #include <asm/i387.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
  
  #else /* Dummy code for user space testing */
a723406c4   H. Peter Anvin   [PATCH] md: RAID6...
27
  static inline void kernel_fpu_begin(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
  }
a723406c4   H. Peter Anvin   [PATCH] md: RAID6...
30
  static inline void kernel_fpu_end(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
  }
a723406c4   H. Peter Anvin   [PATCH] md: RAID6...
33
34
35
36
37
38
  #define X86_FEATURE_MMX		(0*32+23) /* Multimedia Extensions */
  #define X86_FEATURE_FXSR	(0*32+24) /* FXSAVE and FXRSTOR instructions
  					   * (fast save and restore) */
  #define X86_FEATURE_XMM		(0*32+25) /* Streaming SIMD Extensions */
  #define X86_FEATURE_XMM2	(0*32+26) /* Streaming SIMD Extensions-2 */
  #define X86_FEATURE_MMXEXT	(1*32+22) /* AMD MMX extensions */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39

a723406c4   H. Peter Anvin   [PATCH] md: RAID6...
40
41
  /* Should work well enough on modern CPUs for testing */
  static inline int boot_cpu_has(int flag)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
  {
a723406c4   H. Peter Anvin   [PATCH] md: RAID6...
43
44
  	u32 eax = (flag >> 5) ? 0x80000001 : 1;
  	u32 edx;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45

a723406c4   H. Peter Anvin   [PATCH] md: RAID6...
46
47
48
  	asm volatile("cpuid"
  		     : "+a" (eax), "=d" (edx)
  		     : : "ecx", "ebx");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49

a723406c4   H. Peter Anvin   [PATCH] md: RAID6...
50
  	return (edx >> (flag & 31)) & 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
53
54
55
  #endif /* ndef __KERNEL__ */
  
  #endif
  #endif