processor.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936
  1. #ifndef ASM_X86__PROCESSOR_H
  2. #define ASM_X86__PROCESSOR_H
  3. #include <asm/processor-flags.h>
  4. /* Forward declaration, a strange C thing */
  5. struct task_struct;
  6. struct mm_struct;
  7. #include <asm/vm86.h>
  8. #include <asm/math_emu.h>
  9. #include <asm/segment.h>
  10. #include <asm/types.h>
  11. #include <asm/sigcontext.h>
  12. #include <asm/current.h>
  13. #include <asm/cpufeature.h>
  14. #include <asm/system.h>
  15. #include <asm/page.h>
  16. #include <asm/percpu.h>
  17. #include <asm/msr.h>
  18. #include <asm/desc_defs.h>
  19. #include <asm/nops.h>
  20. #include <linux/personality.h>
  21. #include <linux/cpumask.h>
  22. #include <linux/cache.h>
  23. #include <linux/threads.h>
  24. #include <linux/init.h>
  25. /*
  26. * Default implementation of macro that returns current
  27. * instruction pointer ("program counter").
  28. */
  29. static inline void *current_text_addr(void)
  30. {
  31. void *pc;
  32. asm volatile("mov $1f, %0; 1:":"=r" (pc));
  33. return pc;
  34. }
  35. #ifdef CONFIG_X86_VSMP
  36. # define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT)
  37. # define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT)
  38. #else
  39. # define ARCH_MIN_TASKALIGN 16
  40. # define ARCH_MIN_MMSTRUCT_ALIGN 0
  41. #endif
  42. /*
  43. * CPU type and hardware bug flags. Kept separately for each CPU.
  44. * Members of this structure are referenced in head.S, so think twice
  45. * before touching them. [mj]
  46. */
  47. struct cpuinfo_x86 {
  48. __u8 x86; /* CPU family */
  49. __u8 x86_vendor; /* CPU vendor */
  50. __u8 x86_model;
  51. __u8 x86_mask;
  52. #ifdef CONFIG_X86_32
  53. char wp_works_ok; /* It doesn't on 386's */
  54. /* Problems on some 486Dx4's and old 386's: */
  55. char hlt_works_ok;
  56. char hard_math;
  57. char rfu;
  58. char fdiv_bug;
  59. char f00f_bug;
  60. char coma_bug;
  61. char pad0;
  62. #else
  63. /* Number of 4K pages in DTLB/ITLB combined(in pages): */
  64. int x86_tlbsize;
  65. __u8 x86_virt_bits;
  66. __u8 x86_phys_bits;
  67. /* CPUID returned core id bits: */
  68. __u8 x86_coreid_bits;
  69. /* Max extended CPUID function supported: */
  70. __u32 extended_cpuid_level;
  71. #endif
  72. /* Maximum supported CPUID level, -1=no CPUID: */
  73. int cpuid_level;
  74. __u32 x86_capability[NCAPINTS];
  75. char x86_vendor_id[16];
  76. char x86_model_id[64];
  77. /* in KB - valid for CPUS which support this call: */
  78. int x86_cache_size;
  79. int x86_cache_alignment; /* In bytes */
  80. int x86_power;
  81. unsigned long loops_per_jiffy;
  82. #ifdef CONFIG_SMP
  83. /* cpus sharing the last level cache: */
  84. cpumask_t llc_shared_map;
  85. #endif
  86. /* cpuid returned max cores value: */
  87. u16 x86_max_cores;
  88. u16 apicid;
  89. u16 initial_apicid;
  90. u16 x86_clflush_size;
  91. #ifdef CONFIG_SMP
  92. /* number of cores as seen by the OS: */
  93. u16 booted_cores;
  94. /* Physical processor id: */
  95. u16 phys_proc_id;
  96. /* Core id: */
  97. u16 cpu_core_id;
  98. /* Index into per_cpu list: */
  99. u16 cpu_index;
  100. #endif
  101. } __attribute__((__aligned__(SMP_CACHE_BYTES)));
  102. #define X86_VENDOR_INTEL 0
  103. #define X86_VENDOR_CYRIX 1
  104. #define X86_VENDOR_AMD 2
  105. #define X86_VENDOR_UMC 3
  106. #define X86_VENDOR_CENTAUR 5
  107. #define X86_VENDOR_TRANSMETA 7
  108. #define X86_VENDOR_NSC 8
  109. #define X86_VENDOR_NUM 9
  110. #define X86_VENDOR_UNKNOWN 0xff
  111. /*
  112. * capabilities of CPUs
  113. */
  114. extern struct cpuinfo_x86 boot_cpu_data;
  115. extern struct cpuinfo_x86 new_cpu_data;
  116. extern struct tss_struct doublefault_tss;
  117. extern __u32 cleared_cpu_caps[NCAPINTS];
  118. #ifdef CONFIG_SMP
  119. DECLARE_PER_CPU(struct cpuinfo_x86, cpu_info);
  120. #define cpu_data(cpu) per_cpu(cpu_info, cpu)
  121. #define current_cpu_data __get_cpu_var(cpu_info)
  122. #else
  123. #define cpu_data(cpu) boot_cpu_data
  124. #define current_cpu_data boot_cpu_data
  125. #endif
  126. static inline int hlt_works(int cpu)
  127. {
  128. #ifdef CONFIG_X86_32
  129. return cpu_data(cpu).hlt_works_ok;
  130. #else
  131. return 1;
  132. #endif
  133. }
  134. #define cache_line_size() (boot_cpu_data.x86_cache_alignment)
  135. extern void cpu_detect(struct cpuinfo_x86 *c);
  136. extern void early_cpu_init(void);
  137. extern void identify_boot_cpu(void);
  138. extern void identify_secondary_cpu(struct cpuinfo_x86 *);
  139. extern void print_cpu_info(struct cpuinfo_x86 *);
  140. extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
  141. extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
  142. extern unsigned short num_cache_leaves;
  143. #if defined(CONFIG_X86_HT) || defined(CONFIG_X86_64)
  144. extern void detect_ht(struct cpuinfo_x86 *c);
  145. #else
  146. static inline void detect_ht(struct cpuinfo_x86 *c) {}
  147. #endif
  148. static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
  149. unsigned int *ecx, unsigned int *edx)
  150. {
  151. /* ecx is often an input as well as an output. */
  152. asm("cpuid"
  153. : "=a" (*eax),
  154. "=b" (*ebx),
  155. "=c" (*ecx),
  156. "=d" (*edx)
  157. : "0" (*eax), "2" (*ecx));
  158. }
  159. static inline void load_cr3(pgd_t *pgdir)
  160. {
  161. write_cr3(__pa(pgdir));
  162. }
  163. #ifdef CONFIG_X86_32
  164. /* This is the TSS defined by the hardware. */
  165. struct x86_hw_tss {
  166. unsigned short back_link, __blh;
  167. unsigned long sp0;
  168. unsigned short ss0, __ss0h;
  169. unsigned long sp1;
  170. /* ss1 caches MSR_IA32_SYSENTER_CS: */
  171. unsigned short ss1, __ss1h;
  172. unsigned long sp2;
  173. unsigned short ss2, __ss2h;
  174. unsigned long __cr3;
  175. unsigned long ip;
  176. unsigned long flags;
  177. unsigned long ax;
  178. unsigned long cx;
  179. unsigned long dx;
  180. unsigned long bx;
  181. unsigned long sp;
  182. unsigned long bp;
  183. unsigned long si;
  184. unsigned long di;
  185. unsigned short es, __esh;
  186. unsigned short cs, __csh;
  187. unsigned short ss, __ssh;
  188. unsigned short ds, __dsh;
  189. unsigned short fs, __fsh;
  190. unsigned short gs, __gsh;
  191. unsigned short ldt, __ldth;
  192. unsigned short trace;
  193. unsigned short io_bitmap_base;
  194. } __attribute__((packed));
  195. #else
  196. struct x86_hw_tss {
  197. u32 reserved1;
  198. u64 sp0;
  199. u64 sp1;
  200. u64 sp2;
  201. u64 reserved2;
  202. u64 ist[7];
  203. u32 reserved3;
  204. u32 reserved4;
  205. u16 reserved5;
  206. u16 io_bitmap_base;
  207. } __attribute__((packed)) ____cacheline_aligned;
  208. #endif
  209. /*
  210. * IO-bitmap sizes:
  211. */
  212. #define IO_BITMAP_BITS 65536
  213. #define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
  214. #define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
  215. #define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
  216. #define INVALID_IO_BITMAP_OFFSET 0x8000
  217. #define INVALID_IO_BITMAP_OFFSET_LAZY 0x9000
  218. struct tss_struct {
  219. /*
  220. * The hardware state:
  221. */
  222. struct x86_hw_tss x86_tss;
  223. /*
  224. * The extra 1 is there because the CPU will access an
  225. * additional byte beyond the end of the IO permission
  226. * bitmap. The extra byte must be all 1 bits, and must
  227. * be within the limit.
  228. */
  229. unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
  230. /*
  231. * Cache the current maximum and the last task that used the bitmap:
  232. */
  233. unsigned long io_bitmap_max;
  234. struct thread_struct *io_bitmap_owner;
  235. /*
  236. * .. and then another 0x100 bytes for the emergency kernel stack:
  237. */
  238. unsigned long stack[64];
  239. } ____cacheline_aligned;
  240. DECLARE_PER_CPU(struct tss_struct, init_tss);
  241. /*
  242. * Save the original ist values for checking stack pointers during debugging
  243. */
  244. struct orig_ist {
  245. unsigned long ist[7];
  246. };
  247. #define MXCSR_DEFAULT 0x1f80
  248. struct i387_fsave_struct {
  249. u32 cwd; /* FPU Control Word */
  250. u32 swd; /* FPU Status Word */
  251. u32 twd; /* FPU Tag Word */
  252. u32 fip; /* FPU IP Offset */
  253. u32 fcs; /* FPU IP Selector */
  254. u32 foo; /* FPU Operand Pointer Offset */
  255. u32 fos; /* FPU Operand Pointer Selector */
  256. /* 8*10 bytes for each FP-reg = 80 bytes: */
  257. u32 st_space[20];
  258. /* Software status information [not touched by FSAVE ]: */
  259. u32 status;
  260. };
  261. struct i387_fxsave_struct {
  262. u16 cwd; /* Control Word */
  263. u16 swd; /* Status Word */
  264. u16 twd; /* Tag Word */
  265. u16 fop; /* Last Instruction Opcode */
  266. union {
  267. struct {
  268. u64 rip; /* Instruction Pointer */
  269. u64 rdp; /* Data Pointer */
  270. };
  271. struct {
  272. u32 fip; /* FPU IP Offset */
  273. u32 fcs; /* FPU IP Selector */
  274. u32 foo; /* FPU Operand Offset */
  275. u32 fos; /* FPU Operand Selector */
  276. };
  277. };
  278. u32 mxcsr; /* MXCSR Register State */
  279. u32 mxcsr_mask; /* MXCSR Mask */
  280. /* 8*16 bytes for each FP-reg = 128 bytes: */
  281. u32 st_space[32];
  282. /* 16*16 bytes for each XMM-reg = 256 bytes: */
  283. u32 xmm_space[64];
  284. u32 padding[24];
  285. } __attribute__((aligned(16)));
  286. struct i387_soft_struct {
  287. u32 cwd;
  288. u32 swd;
  289. u32 twd;
  290. u32 fip;
  291. u32 fcs;
  292. u32 foo;
  293. u32 fos;
  294. /* 8*10 bytes for each FP-reg = 80 bytes: */
  295. u32 st_space[20];
  296. u8 ftop;
  297. u8 changed;
  298. u8 lookahead;
  299. u8 no_update;
  300. u8 rm;
  301. u8 alimit;
  302. struct info *info;
  303. u32 entry_eip;
  304. };
  305. struct xsave_hdr_struct {
  306. u64 xstate_bv;
  307. u64 reserved1[2];
  308. u64 reserved2[5];
  309. } __attribute__((packed));
  310. struct xsave_struct {
  311. struct i387_fxsave_struct i387;
  312. struct xsave_hdr_struct xsave_hdr;
  313. /* new processor state extensions will go here */
  314. } __attribute__ ((packed, aligned (64)));
  315. union thread_xstate {
  316. struct i387_fsave_struct fsave;
  317. struct i387_fxsave_struct fxsave;
  318. struct i387_soft_struct soft;
  319. struct xsave_struct xsave;
  320. };
  321. #ifdef CONFIG_X86_64
  322. DECLARE_PER_CPU(struct orig_ist, orig_ist);
  323. #endif
  324. extern void print_cpu_info(struct cpuinfo_x86 *);
  325. extern unsigned int xstate_size;
  326. extern void free_thread_xstate(struct task_struct *);
  327. extern struct kmem_cache *task_xstate_cachep;
  328. extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
  329. extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
  330. extern unsigned short num_cache_leaves;
  331. struct thread_struct {
  332. /* Cached TLS descriptors: */
  333. struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
  334. unsigned long sp0;
  335. unsigned long sp;
  336. #ifdef CONFIG_X86_32
  337. unsigned long sysenter_cs;
  338. #else
  339. unsigned long usersp; /* Copy from PDA */
  340. unsigned short es;
  341. unsigned short ds;
  342. unsigned short fsindex;
  343. unsigned short gsindex;
  344. #endif
  345. unsigned long ip;
  346. unsigned long fs;
  347. unsigned long gs;
  348. /* Hardware debugging registers: */
  349. unsigned long debugreg0;
  350. unsigned long debugreg1;
  351. unsigned long debugreg2;
  352. unsigned long debugreg3;
  353. unsigned long debugreg6;
  354. unsigned long debugreg7;
  355. /* Fault info: */
  356. unsigned long cr2;
  357. unsigned long trap_no;
  358. unsigned long error_code;
  359. /* floating point and extended processor state */
  360. union thread_xstate *xstate;
  361. #ifdef CONFIG_X86_32
  362. /* Virtual 86 mode info */
  363. struct vm86_struct __user *vm86_info;
  364. unsigned long screen_bitmap;
  365. unsigned long v86flags;
  366. unsigned long v86mask;
  367. unsigned long saved_sp0;
  368. unsigned int saved_fs;
  369. unsigned int saved_gs;
  370. #endif
  371. /* IO permissions: */
  372. unsigned long *io_bitmap_ptr;
  373. unsigned long iopl;
  374. /* Max allowed port in the bitmap, in bytes: */
  375. unsigned io_bitmap_max;
  376. /* MSR_IA32_DEBUGCTLMSR value to switch in if TIF_DEBUGCTLMSR is set. */
  377. unsigned long debugctlmsr;
  378. /* Debug Store - if not 0 points to a DS Save Area configuration;
  379. * goes into MSR_IA32_DS_AREA */
  380. unsigned long ds_area_msr;
  381. };
  382. static inline unsigned long native_get_debugreg(int regno)
  383. {
  384. unsigned long val = 0; /* Damn you, gcc! */
  385. switch (regno) {
  386. case 0:
  387. asm("mov %%db0, %0" :"=r" (val));
  388. break;
  389. case 1:
  390. asm("mov %%db1, %0" :"=r" (val));
  391. break;
  392. case 2:
  393. asm("mov %%db2, %0" :"=r" (val));
  394. break;
  395. case 3:
  396. asm("mov %%db3, %0" :"=r" (val));
  397. break;
  398. case 6:
  399. asm("mov %%db6, %0" :"=r" (val));
  400. break;
  401. case 7:
  402. asm("mov %%db7, %0" :"=r" (val));
  403. break;
  404. default:
  405. BUG();
  406. }
  407. return val;
  408. }
  409. static inline void native_set_debugreg(int regno, unsigned long value)
  410. {
  411. switch (regno) {
  412. case 0:
  413. asm("mov %0, %%db0" ::"r" (value));
  414. break;
  415. case 1:
  416. asm("mov %0, %%db1" ::"r" (value));
  417. break;
  418. case 2:
  419. asm("mov %0, %%db2" ::"r" (value));
  420. break;
  421. case 3:
  422. asm("mov %0, %%db3" ::"r" (value));
  423. break;
  424. case 6:
  425. asm("mov %0, %%db6" ::"r" (value));
  426. break;
  427. case 7:
  428. asm("mov %0, %%db7" ::"r" (value));
  429. break;
  430. default:
  431. BUG();
  432. }
  433. }
  434. /*
  435. * Set IOPL bits in EFLAGS from given mask
  436. */
  437. static inline void native_set_iopl_mask(unsigned mask)
  438. {
  439. #ifdef CONFIG_X86_32
  440. unsigned int reg;
  441. asm volatile ("pushfl;"
  442. "popl %0;"
  443. "andl %1, %0;"
  444. "orl %2, %0;"
  445. "pushl %0;"
  446. "popfl"
  447. : "=&r" (reg)
  448. : "i" (~X86_EFLAGS_IOPL), "r" (mask));
  449. #endif
  450. }
  451. static inline void
  452. native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
  453. {
  454. tss->x86_tss.sp0 = thread->sp0;
  455. #ifdef CONFIG_X86_32
  456. /* Only happens when SEP is enabled, no need to test "SEP"arately: */
  457. if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
  458. tss->x86_tss.ss1 = thread->sysenter_cs;
  459. wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
  460. }
  461. #endif
  462. }
  463. static inline void native_swapgs(void)
  464. {
  465. #ifdef CONFIG_X86_64
  466. asm volatile("swapgs" ::: "memory");
  467. #endif
  468. }
  469. #ifdef CONFIG_PARAVIRT
  470. #include <asm/paravirt.h>
  471. #else
  472. #define __cpuid native_cpuid
  473. #define paravirt_enabled() 0
  474. /*
  475. * These special macros can be used to get or set a debugging register
  476. */
  477. #define get_debugreg(var, register) \
  478. (var) = native_get_debugreg(register)
  479. #define set_debugreg(value, register) \
  480. native_set_debugreg(register, value)
  481. static inline void load_sp0(struct tss_struct *tss,
  482. struct thread_struct *thread)
  483. {
  484. native_load_sp0(tss, thread);
  485. }
  486. #define set_iopl_mask native_set_iopl_mask
  487. #endif /* CONFIG_PARAVIRT */
  488. /*
  489. * Save the cr4 feature set we're using (ie
  490. * Pentium 4MB enable and PPro Global page
  491. * enable), so that any CPU's that boot up
  492. * after us can get the correct flags.
  493. */
  494. extern unsigned long mmu_cr4_features;
  495. static inline void set_in_cr4(unsigned long mask)
  496. {
  497. unsigned cr4;
  498. mmu_cr4_features |= mask;
  499. cr4 = read_cr4();
  500. cr4 |= mask;
  501. write_cr4(cr4);
  502. }
  503. static inline void clear_in_cr4(unsigned long mask)
  504. {
  505. unsigned cr4;
  506. mmu_cr4_features &= ~mask;
  507. cr4 = read_cr4();
  508. cr4 &= ~mask;
  509. write_cr4(cr4);
  510. }
  511. struct microcode_header {
  512. unsigned int hdrver;
  513. unsigned int rev;
  514. unsigned int date;
  515. unsigned int sig;
  516. unsigned int cksum;
  517. unsigned int ldrver;
  518. unsigned int pf;
  519. unsigned int datasize;
  520. unsigned int totalsize;
  521. unsigned int reserved[3];
  522. };
  523. struct microcode {
  524. struct microcode_header hdr;
  525. unsigned int bits[0];
  526. };
  527. typedef struct microcode microcode_t;
  528. typedef struct microcode_header microcode_header_t;
  529. /* microcode format is extended from prescott processors */
  530. struct extended_signature {
  531. unsigned int sig;
  532. unsigned int pf;
  533. unsigned int cksum;
  534. };
  535. struct extended_sigtable {
  536. unsigned int count;
  537. unsigned int cksum;
  538. unsigned int reserved[3];
  539. struct extended_signature sigs[0];
  540. };
  541. typedef struct {
  542. unsigned long seg;
  543. } mm_segment_t;
  544. /*
  545. * create a kernel thread without removing it from tasklists
  546. */
  547. extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
  548. /* Free all resources held by a thread. */
  549. extern void release_thread(struct task_struct *);
  550. /* Prepare to copy thread state - unlazy all lazy state */
  551. extern void prepare_to_copy(struct task_struct *tsk);
  552. unsigned long get_wchan(struct task_struct *p);
  553. /*
  554. * Generic CPUID function
  555. * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
  556. * resulting in stale register contents being returned.
  557. */
  558. static inline void cpuid(unsigned int op,
  559. unsigned int *eax, unsigned int *ebx,
  560. unsigned int *ecx, unsigned int *edx)
  561. {
  562. *eax = op;
  563. *ecx = 0;
  564. __cpuid(eax, ebx, ecx, edx);
  565. }
  566. /* Some CPUID calls want 'count' to be placed in ecx */
  567. static inline void cpuid_count(unsigned int op, int count,
  568. unsigned int *eax, unsigned int *ebx,
  569. unsigned int *ecx, unsigned int *edx)
  570. {
  571. *eax = op;
  572. *ecx = count;
  573. __cpuid(eax, ebx, ecx, edx);
  574. }
  575. /*
  576. * CPUID functions returning a single datum
  577. */
  578. static inline unsigned int cpuid_eax(unsigned int op)
  579. {
  580. unsigned int eax, ebx, ecx, edx;
  581. cpuid(op, &eax, &ebx, &ecx, &edx);
  582. return eax;
  583. }
  584. static inline unsigned int cpuid_ebx(unsigned int op)
  585. {
  586. unsigned int eax, ebx, ecx, edx;
  587. cpuid(op, &eax, &ebx, &ecx, &edx);
  588. return ebx;
  589. }
  590. static inline unsigned int cpuid_ecx(unsigned int op)
  591. {
  592. unsigned int eax, ebx, ecx, edx;
  593. cpuid(op, &eax, &ebx, &ecx, &edx);
  594. return ecx;
  595. }
  596. static inline unsigned int cpuid_edx(unsigned int op)
  597. {
  598. unsigned int eax, ebx, ecx, edx;
  599. cpuid(op, &eax, &ebx, &ecx, &edx);
  600. return edx;
  601. }
  602. /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
  603. static inline void rep_nop(void)
  604. {
  605. asm volatile("rep; nop" ::: "memory");
  606. }
  607. static inline void cpu_relax(void)
  608. {
  609. rep_nop();
  610. }
  611. /* Stop speculative execution: */
  612. static inline void sync_core(void)
  613. {
  614. int tmp;
  615. asm volatile("cpuid" : "=a" (tmp) : "0" (1)
  616. : "ebx", "ecx", "edx", "memory");
  617. }
  618. static inline void __monitor(const void *eax, unsigned long ecx,
  619. unsigned long edx)
  620. {
  621. /* "monitor %eax, %ecx, %edx;" */
  622. asm volatile(".byte 0x0f, 0x01, 0xc8;"
  623. :: "a" (eax), "c" (ecx), "d"(edx));
  624. }
  625. static inline void __mwait(unsigned long eax, unsigned long ecx)
  626. {
  627. /* "mwait %eax, %ecx;" */
  628. asm volatile(".byte 0x0f, 0x01, 0xc9;"
  629. :: "a" (eax), "c" (ecx));
  630. }
  631. static inline void __sti_mwait(unsigned long eax, unsigned long ecx)
  632. {
  633. trace_hardirqs_on();
  634. /* "mwait %eax, %ecx;" */
  635. asm volatile("sti; .byte 0x0f, 0x01, 0xc9;"
  636. :: "a" (eax), "c" (ecx));
  637. }
  638. extern void mwait_idle_with_hints(unsigned long eax, unsigned long ecx);
  639. extern void select_idle_routine(const struct cpuinfo_x86 *c);
  640. extern unsigned long boot_option_idle_override;
  641. extern unsigned long idle_halt;
  642. extern unsigned long idle_nomwait;
  643. extern void enable_sep_cpu(void);
  644. extern int sysenter_setup(void);
  645. /* Defined in head.S */
  646. extern struct desc_ptr early_gdt_descr;
  647. extern void cpu_set_gdt(int);
  648. extern void switch_to_new_gdt(void);
  649. extern void cpu_init(void);
  650. extern void init_gdt(int cpu);
  651. static inline void update_debugctlmsr(unsigned long debugctlmsr)
  652. {
  653. #ifndef CONFIG_X86_DEBUGCTLMSR
  654. if (boot_cpu_data.x86 < 6)
  655. return;
  656. #endif
  657. wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
  658. }
  659. /*
  660. * from system description table in BIOS. Mostly for MCA use, but
  661. * others may find it useful:
  662. */
  663. extern unsigned int machine_id;
  664. extern unsigned int machine_submodel_id;
  665. extern unsigned int BIOS_revision;
  666. /* Boot loader type from the setup header: */
  667. extern int bootloader_type;
  668. extern char ignore_fpu_irq;
  669. #define HAVE_ARCH_PICK_MMAP_LAYOUT 1
  670. #define ARCH_HAS_PREFETCHW
  671. #define ARCH_HAS_SPINLOCK_PREFETCH
  672. #ifdef CONFIG_X86_32
  673. # define BASE_PREFETCH ASM_NOP4
  674. # define ARCH_HAS_PREFETCH
  675. #else
  676. # define BASE_PREFETCH "prefetcht0 (%1)"
  677. #endif
  678. /*
  679. * Prefetch instructions for Pentium III (+) and AMD Athlon (+)
  680. *
  681. * It's not worth to care about 3dnow prefetches for the K6
  682. * because they are microcoded there and very slow.
  683. */
  684. static inline void prefetch(const void *x)
  685. {
  686. alternative_input(BASE_PREFETCH,
  687. "prefetchnta (%1)",
  688. X86_FEATURE_XMM,
  689. "r" (x));
  690. }
  691. /*
  692. * 3dnow prefetch to get an exclusive cache line.
  693. * Useful for spinlocks to avoid one state transition in the
  694. * cache coherency protocol:
  695. */
  696. static inline void prefetchw(const void *x)
  697. {
  698. alternative_input(BASE_PREFETCH,
  699. "prefetchw (%1)",
  700. X86_FEATURE_3DNOW,
  701. "r" (x));
  702. }
  703. static inline void spin_lock_prefetch(const void *x)
  704. {
  705. prefetchw(x);
  706. }
  707. #ifdef CONFIG_X86_32
  708. /*
  709. * User space process size: 3GB (default).
  710. */
  711. #define TASK_SIZE PAGE_OFFSET
  712. #define STACK_TOP TASK_SIZE
  713. #define STACK_TOP_MAX STACK_TOP
  714. #define INIT_THREAD { \
  715. .sp0 = sizeof(init_stack) + (long)&init_stack, \
  716. .vm86_info = NULL, \
  717. .sysenter_cs = __KERNEL_CS, \
  718. .io_bitmap_ptr = NULL, \
  719. .fs = __KERNEL_PERCPU, \
  720. }
  721. /*
  722. * Note that the .io_bitmap member must be extra-big. This is because
  723. * the CPU will access an additional byte beyond the end of the IO
  724. * permission bitmap. The extra byte must be all 1 bits, and must
  725. * be within the limit.
  726. */
  727. #define INIT_TSS { \
  728. .x86_tss = { \
  729. .sp0 = sizeof(init_stack) + (long)&init_stack, \
  730. .ss0 = __KERNEL_DS, \
  731. .ss1 = __KERNEL_CS, \
  732. .io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \
  733. }, \
  734. .io_bitmap = { [0 ... IO_BITMAP_LONGS] = ~0 }, \
  735. }
  736. extern unsigned long thread_saved_pc(struct task_struct *tsk);
  737. #define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long))
  738. #define KSTK_TOP(info) \
  739. ({ \
  740. unsigned long *__ptr = (unsigned long *)(info); \
  741. (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \
  742. })
  743. /*
  744. * The below -8 is to reserve 8 bytes on top of the ring0 stack.
  745. * This is necessary to guarantee that the entire "struct pt_regs"
  746. * is accessable even if the CPU haven't stored the SS/ESP registers
  747. * on the stack (interrupt gate does not save these registers
  748. * when switching to the same priv ring).
  749. * Therefore beware: accessing the ss/esp fields of the
  750. * "struct pt_regs" is possible, but they may contain the
  751. * completely wrong values.
  752. */
  753. #define task_pt_regs(task) \
  754. ({ \
  755. struct pt_regs *__regs__; \
  756. __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
  757. __regs__ - 1; \
  758. })
  759. #define KSTK_ESP(task) (task_pt_regs(task)->sp)
  760. #else
  761. /*
  762. * User space process size. 47bits minus one guard page.
  763. */
  764. #define TASK_SIZE64 ((1UL << 47) - PAGE_SIZE)
  765. /* This decides where the kernel will search for a free chunk of vm
  766. * space during mmap's.
  767. */
  768. #define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
  769. 0xc0000000 : 0xFFFFe000)
  770. #define TASK_SIZE (test_thread_flag(TIF_IA32) ? \
  771. IA32_PAGE_OFFSET : TASK_SIZE64)
  772. #define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_IA32)) ? \
  773. IA32_PAGE_OFFSET : TASK_SIZE64)
  774. #define STACK_TOP TASK_SIZE
  775. #define STACK_TOP_MAX TASK_SIZE64
  776. #define INIT_THREAD { \
  777. .sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
  778. }
  779. #define INIT_TSS { \
  780. .x86_tss.sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
  781. }
  782. /*
  783. * Return saved PC of a blocked thread.
  784. * What is this good for? it will be always the scheduler or ret_from_fork.
  785. */
  786. #define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8))
  787. #define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
  788. #define KSTK_ESP(tsk) -1 /* sorry. doesn't work for syscall. */
  789. #endif /* CONFIG_X86_64 */
  790. extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
  791. unsigned long new_sp);
  792. /*
  793. * This decides where the kernel will search for a free chunk of vm
  794. * space during mmap's.
  795. */
  796. #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
  797. #define KSTK_EIP(task) (task_pt_regs(task)->ip)
  798. /* Get/set a process' ability to use the timestamp counter instruction */
  799. #define GET_TSC_CTL(adr) get_tsc_mode((adr))
  800. #define SET_TSC_CTL(val) set_tsc_mode((val))
  801. extern int get_tsc_mode(unsigned long adr);
  802. extern int set_tsc_mode(unsigned int val);
  803. #endif /* ASM_X86__PROCESSOR_H */