blob: 66ae1043393db6cc56902f7051ff3391c4e89109 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_PDA_H
2#define _ASM_X86_PDA_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4#ifndef __ASSEMBLY__
5#include <linux/stddef.h>
6#include <linux/types.h>
7#include <linux/cache.h>
Tejun Heoc8f33292009-01-13 20:41:35 +09008#include <linux/threads.h>
Jan Beulichb556b35e2006-01-11 22:43:00 +01009#include <asm/page.h>
Tejun Heob12d8db2009-01-13 20:41:35 +090010#include <asm/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010012/* Per processor datastructure. %gs points to it while the kernel runs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013struct x8664_pda {
Arjan van de Ven29a9af62006-09-26 10:52:38 +020014 struct task_struct *pcurrent; /* 0 Current process */
Tejun Heo9939dda2009-01-13 20:41:35 +090015 unsigned long dummy;
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010016 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 Ven0a4254052006-09-26 10:52:38 +020020#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 Travis3461b0a2008-05-12 21:21:13 +020026 short nodenumber; /* number of current node (32k max) */
27 short in_bootmem; /* pda lives in bootmem */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 unsigned int __softirq_pending;
29 unsigned int __nmi_count; /* number of NMI on this CPUs */
Andi Kleena15da492006-09-26 10:52:40 +020030 short mmu_state;
31 short isidle;
Arjan van de Vendf920042006-03-25 16:31:01 +010032 struct mm_struct *active_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 unsigned apic_timer_irqs;
Thomas Gleixner4e77ae32007-10-12 23:04:07 +020034 unsigned irq0_irqs;
Joe Korty38e760a2007-10-17 18:04:40 +020035 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 Kleenb9169112005-09-12 18:49:24 +020041} ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Tejun Heob12d8db2009-01-13 20:41:35 +090043DECLARE_PER_CPU(struct x8664_pda, __pda);
Thomas Gleixner40fec502008-01-30 13:30:18 +010044extern void pda_init(int);
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +010045
Tejun Heob12d8db2009-01-13 20:41:35 +090046#define cpu_pda(cpu) (&per_cpu(__pda, cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010048/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * 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 Gorcunovfe758fb2008-01-30 13:31:25 +010051 */
Andi Kleenfd167e42006-09-26 10:52:40 +020052extern void __bad_pda_field(void) __attribute__((noreturn));
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Andi Kleenc1a9d412006-09-26 10:52:40 +020054/*
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 Kleen53ee11a2006-09-26 10:52:38 +020058extern struct x8664_pda _proxy_pda;
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define pda_offset(field) offsetof(struct x8664_pda, field)
61
Joe Perches46e1abc2008-03-23 01:03:05 -070062#define pda_to_op(op, field, val) \
63do { \
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 Heo7de68832009-01-13 20:41:34 +090082 "r" ((T__)val), \
Joe Perches46e1abc2008-03-23 01:03:05 -070083 "i"(pda_offset(field))); \
84 break; \
85 default: \
86 __bad_pda_field(); \
87 } \
88} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Joe Perches46e1abc2008-03-23 01:03:05 -070090#define pda_from_op(op, field) \
91({ \
Andi Kleenc1a9d412006-09-26 10:52:40 +020092 typeof(_proxy_pda.field) ret__; \
93 switch (sizeof(_proxy_pda.field)) { \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010094 case 2: \
95 asm(op "w %%gs:%c1,%0" : \
Andi Kleenc1a9d412006-09-26 10:52:40 +020096 "=r" (ret__) : \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010097 "i" (pda_offset(field)), \
98 "m" (_proxy_pda.field)); \
Joe Perches46e1abc2008-03-23 01:03:05 -070099 break; \
Andi Kleenc1a9d412006-09-26 10:52:40 +0200100 case 4: \
101 asm(op "l %%gs:%c1,%0": \
102 "=r" (ret__): \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +0100103 "i" (pda_offset(field)), \
104 "m" (_proxy_pda.field)); \
Joe Perches46e1abc2008-03-23 01:03:05 -0700105 break; \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +0100106 case 8: \
Andi Kleenc1a9d412006-09-26 10:52:40 +0200107 asm(op "q %%gs:%c1,%0": \
108 "=r" (ret__) : \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +0100109 "i" (pda_offset(field)), \
110 "m" (_proxy_pda.field)); \
Joe Perches46e1abc2008-03-23 01:03:05 -0700111 break; \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +0100112 default: \
Andi Kleenc1a9d412006-09-26 10:52:40 +0200113 __bad_pda_field(); \
Joe Perches46e1abc2008-03-23 01:03:05 -0700114 } \
115 ret__; \
116})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +0100118#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 Torvalds1da177e2005-04-16 15:20:36 -0700123
Andi Kleen94468682006-11-14 16:57:46 +0100124/* This is not atomic against other CPUs -- CPU preemption needs to be off */
Joe Perches46e1abc2008-03-23 01:03:05 -0700125#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 Kleen94468682006-11-14 16:57:46 +0100132})
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#endif
135
136#define PDA_STACKOFFSET (5*8)
137
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700138#endif /* _ASM_X86_PDA_H */