H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_PDA_H |
| 2 | #define _ASM_X86_PDA_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
| 4 | #ifndef __ASSEMBLY__ |
| 5 | #include <linux/stddef.h> |
| 6 | #include <linux/types.h> |
| 7 | #include <linux/cache.h> |
Tejun Heo | c8f3329 | 2009-01-13 20:41:35 +0900 | [diff] [blame] | 8 | #include <linux/threads.h> |
Jan Beulich | b556b35e | 2006-01-11 22:43:00 +0100 | [diff] [blame] | 9 | #include <asm/page.h> |
Tejun Heo | b12d8db | 2009-01-13 20:41:35 +0900 | [diff] [blame^] | 10 | #include <asm/percpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 12 | /* Per processor datastructure. %gs points to it while the kernel runs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | struct x8664_pda { |
Arjan van de Ven | 29a9af6 | 2006-09-26 10:52:38 +0200 | [diff] [blame] | 14 | struct task_struct *pcurrent; /* 0 Current process */ |
Tejun Heo | 9939dda | 2009-01-13 20:41:35 +0900 | [diff] [blame] | 15 | unsigned long dummy; |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 16 | unsigned long kernelstack; /* 16 top of kernel stack for current */ |
| 17 | unsigned long oldrsp; /* 24 user rsp for system call */ |
| 18 | int irqcount; /* 32 Irq nesting counter. Starts -1 */ |
| 19 | unsigned int cpunumber; /* 36 Logical CPU number */ |
Arjan van de Ven | 0a425405 | 2006-09-26 10:52:38 +0200 | [diff] [blame] | 20 | #ifdef CONFIG_CC_STACKPROTECTOR |
| 21 | unsigned long stack_canary; /* 40 stack canary value */ |
| 22 | /* gcc-ABI: this canary MUST be at |
| 23 | offset 40!!! */ |
| 24 | #endif |
| 25 | char *irqstackptr; |
Mike Travis | 3461b0a | 2008-05-12 21:21:13 +0200 | [diff] [blame] | 26 | short nodenumber; /* number of current node (32k max) */ |
| 27 | short in_bootmem; /* pda lives in bootmem */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | unsigned int __softirq_pending; |
| 29 | unsigned int __nmi_count; /* number of NMI on this CPUs */ |
Andi Kleen | a15da49 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 30 | short mmu_state; |
| 31 | short isidle; |
Arjan van de Ven | df92004 | 2006-03-25 16:31:01 +0100 | [diff] [blame] | 32 | struct mm_struct *active_mm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | unsigned apic_timer_irqs; |
Thomas Gleixner | 4e77ae3 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 34 | unsigned irq0_irqs; |
Joe Korty | 38e760a | 2007-10-17 18:04:40 +0200 | [diff] [blame] | 35 | unsigned irq_resched_count; |
| 36 | unsigned irq_call_count; |
| 37 | unsigned irq_tlb_count; |
| 38 | unsigned irq_thermal_count; |
| 39 | unsigned irq_threshold_count; |
| 40 | unsigned irq_spurious_count; |
Andi Kleen | b916911 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 41 | } ____cacheline_aligned_in_smp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Tejun Heo | b12d8db | 2009-01-13 20:41:35 +0900 | [diff] [blame^] | 43 | DECLARE_PER_CPU(struct x8664_pda, __pda); |
Thomas Gleixner | 40fec50 | 2008-01-30 13:30:18 +0100 | [diff] [blame] | 44 | extern void pda_init(int); |
Ravikiran G Thirumalai | df79efd | 2006-01-11 22:45:39 +0100 | [diff] [blame] | 45 | |
Tejun Heo | b12d8db | 2009-01-13 20:41:35 +0900 | [diff] [blame^] | 46 | #define cpu_pda(cpu) (&per_cpu(__pda, cpu)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 48 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | * There is no fast way to get the base address of the PDA, all the accesses |
| 50 | * have to mention %fs/%gs. So it needs to be done this Torvaldian way. |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 51 | */ |
Andi Kleen | fd167e4 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 52 | extern void __bad_pda_field(void) __attribute__((noreturn)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Andi Kleen | c1a9d41 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 54 | /* |
| 55 | * proxy_pda doesn't actually exist, but tell gcc it is accessed for |
| 56 | * all PDA accesses so it gets read/write dependencies right. |
| 57 | */ |
Andi Kleen | 53ee11a | 2006-09-26 10:52:38 +0200 | [diff] [blame] | 58 | extern struct x8664_pda _proxy_pda; |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #define pda_offset(field) offsetof(struct x8664_pda, field) |
| 61 | |
Joe Perches | 46e1abc | 2008-03-23 01:03:05 -0700 | [diff] [blame] | 62 | #define pda_to_op(op, field, val) \ |
| 63 | do { \ |
| 64 | typedef typeof(_proxy_pda.field) T__; \ |
| 65 | if (0) { T__ tmp__; tmp__ = (val); } /* type checking */ \ |
| 66 | switch (sizeof(_proxy_pda.field)) { \ |
| 67 | case 2: \ |
| 68 | asm(op "w %1,%%gs:%c2" : \ |
| 69 | "+m" (_proxy_pda.field) : \ |
| 70 | "ri" ((T__)val), \ |
| 71 | "i"(pda_offset(field))); \ |
| 72 | break; \ |
| 73 | case 4: \ |
| 74 | asm(op "l %1,%%gs:%c2" : \ |
| 75 | "+m" (_proxy_pda.field) : \ |
| 76 | "ri" ((T__)val), \ |
| 77 | "i" (pda_offset(field))); \ |
| 78 | break; \ |
| 79 | case 8: \ |
| 80 | asm(op "q %1,%%gs:%c2": \ |
| 81 | "+m" (_proxy_pda.field) : \ |
Tejun Heo | 7de6883 | 2009-01-13 20:41:34 +0900 | [diff] [blame] | 82 | "r" ((T__)val), \ |
Joe Perches | 46e1abc | 2008-03-23 01:03:05 -0700 | [diff] [blame] | 83 | "i"(pda_offset(field))); \ |
| 84 | break; \ |
| 85 | default: \ |
| 86 | __bad_pda_field(); \ |
| 87 | } \ |
| 88 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Joe Perches | 46e1abc | 2008-03-23 01:03:05 -0700 | [diff] [blame] | 90 | #define pda_from_op(op, field) \ |
| 91 | ({ \ |
Andi Kleen | c1a9d41 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 92 | typeof(_proxy_pda.field) ret__; \ |
| 93 | switch (sizeof(_proxy_pda.field)) { \ |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 94 | case 2: \ |
| 95 | asm(op "w %%gs:%c1,%0" : \ |
Andi Kleen | c1a9d41 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 96 | "=r" (ret__) : \ |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 97 | "i" (pda_offset(field)), \ |
| 98 | "m" (_proxy_pda.field)); \ |
Joe Perches | 46e1abc | 2008-03-23 01:03:05 -0700 | [diff] [blame] | 99 | break; \ |
Andi Kleen | c1a9d41 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 100 | case 4: \ |
| 101 | asm(op "l %%gs:%c1,%0": \ |
| 102 | "=r" (ret__): \ |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 103 | "i" (pda_offset(field)), \ |
| 104 | "m" (_proxy_pda.field)); \ |
Joe Perches | 46e1abc | 2008-03-23 01:03:05 -0700 | [diff] [blame] | 105 | break; \ |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 106 | case 8: \ |
Andi Kleen | c1a9d41 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 107 | asm(op "q %%gs:%c1,%0": \ |
| 108 | "=r" (ret__) : \ |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 109 | "i" (pda_offset(field)), \ |
| 110 | "m" (_proxy_pda.field)); \ |
Joe Perches | 46e1abc | 2008-03-23 01:03:05 -0700 | [diff] [blame] | 111 | break; \ |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 112 | default: \ |
Andi Kleen | c1a9d41 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 113 | __bad_pda_field(); \ |
Joe Perches | 46e1abc | 2008-03-23 01:03:05 -0700 | [diff] [blame] | 114 | } \ |
| 115 | ret__; \ |
| 116 | }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Cyrill Gorcunov | fe758fb | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 118 | #define read_pda(field) pda_from_op("mov", field) |
| 119 | #define write_pda(field, val) pda_to_op("mov", field, val) |
| 120 | #define add_pda(field, val) pda_to_op("add", field, val) |
| 121 | #define sub_pda(field, val) pda_to_op("sub", field, val) |
| 122 | #define or_pda(field, val) pda_to_op("or", field, val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Andi Kleen | 9446868 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 124 | /* This is not atomic against other CPUs -- CPU preemption needs to be off */ |
Joe Perches | 46e1abc | 2008-03-23 01:03:05 -0700 | [diff] [blame] | 125 | #define test_and_clear_bit_pda(bit, field) \ |
| 126 | ({ \ |
| 127 | int old__; \ |
| 128 | asm volatile("btr %2,%%gs:%c3\n\tsbbl %0,%0" \ |
| 129 | : "=r" (old__), "+m" (_proxy_pda.field) \ |
| 130 | : "dIr" (bit), "i" (pda_offset(field)) : "memory");\ |
| 131 | old__; \ |
Andi Kleen | 9446868 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 132 | }) |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | #endif |
| 135 | |
| 136 | #define PDA_STACKOFFSET (5*8) |
| 137 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 138 | #endif /* _ASM_X86_PDA_H */ |