blob: a5ff5bb762995849eae3acb219365834353aa96f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef X86_64_PDA_H
2#define X86_64_PDA_H
3
4#ifndef __ASSEMBLY__
5#include <linux/stddef.h>
6#include <linux/types.h>
7#include <linux/cache.h>
Jan Beulichb556b352006-01-11 22:43:00 +01008#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010010/* Per processor datastructure. %gs points to it while the kernel runs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011struct x8664_pda {
Arjan van de Ven29a9af62006-09-26 10:52:38 +020012 struct task_struct *pcurrent; /* 0 Current process */
13 unsigned long data_offset; /* 8 Per cpu data offset from linker
14 address */
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010015 unsigned long kernelstack; /* 16 top of kernel stack for current */
16 unsigned long oldrsp; /* 24 user rsp for system call */
17 int irqcount; /* 32 Irq nesting counter. Starts -1 */
18 unsigned int cpunumber; /* 36 Logical CPU number */
Arjan van de Ven0a425402006-09-26 10:52:38 +020019 unsigned long stack_canary; /* 40 stack canary value */
20 /* gcc-ABI: this canary MUST be at
21 offset 40!!! */
Arjan van de Ven0a425402006-09-26 10:52:38 +020022 char *irqstackptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 unsigned int __softirq_pending;
24 unsigned int __nmi_count; /* number of NMI on this CPUs */
Andi Kleena15da492006-09-26 10:52:40 +020025 short mmu_state;
26 short isidle;
Arjan van de Vendf920042006-03-25 16:31:01 +010027 struct mm_struct *active_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 unsigned apic_timer_irqs;
Thomas Gleixner4e77ae32007-10-12 23:04:07 +020029 unsigned irq0_irqs;
Joe Korty38e760a2007-10-17 18:04:40 +020030 unsigned irq_resched_count;
31 unsigned irq_call_count;
32 unsigned irq_tlb_count;
33 unsigned irq_thermal_count;
34 unsigned irq_threshold_count;
35 unsigned irq_spurious_count;
Andi Kleenb9169112005-09-12 18:49:24 +020036} ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Ravikiran G Thirumalai365ba912006-01-11 22:45:42 +010038extern struct x8664_pda *_cpu_pda[];
39extern struct x8664_pda boot_cpu_pda[];
Thomas Gleixner40fec502008-01-30 13:30:18 +010040extern void pda_init(int);
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +010041
Ravikiran G Thirumalai365ba912006-01-11 22:45:42 +010042#define cpu_pda(i) (_cpu_pda[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010044/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * There is no fast way to get the base address of the PDA, all the accesses
46 * have to mention %fs/%gs. So it needs to be done this Torvaldian way.
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010047 */
Andi Kleenfd167e42006-09-26 10:52:40 +020048extern void __bad_pda_field(void) __attribute__((noreturn));
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Andi Kleenc1a9d412006-09-26 10:52:40 +020050/*
51 * proxy_pda doesn't actually exist, but tell gcc it is accessed for
52 * all PDA accesses so it gets read/write dependencies right.
53 */
Andi Kleen53ee11a2006-09-26 10:52:38 +020054extern struct x8664_pda _proxy_pda;
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define pda_offset(field) offsetof(struct x8664_pda, field)
57
Joe Perches46e1abc2008-03-23 01:03:05 -070058#define pda_to_op(op, field, val) \
59do { \
60 typedef typeof(_proxy_pda.field) T__; \
61 if (0) { T__ tmp__; tmp__ = (val); } /* type checking */ \
62 switch (sizeof(_proxy_pda.field)) { \
63 case 2: \
64 asm(op "w %1,%%gs:%c2" : \
65 "+m" (_proxy_pda.field) : \
66 "ri" ((T__)val), \
67 "i"(pda_offset(field))); \
68 break; \
69 case 4: \
70 asm(op "l %1,%%gs:%c2" : \
71 "+m" (_proxy_pda.field) : \
72 "ri" ((T__)val), \
73 "i" (pda_offset(field))); \
74 break; \
75 case 8: \
76 asm(op "q %1,%%gs:%c2": \
77 "+m" (_proxy_pda.field) : \
78 "ri" ((T__)val), \
79 "i"(pda_offset(field))); \
80 break; \
81 default: \
82 __bad_pda_field(); \
83 } \
84} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Joe Perches46e1abc2008-03-23 01:03:05 -070086#define pda_from_op(op, field) \
87({ \
Andi Kleenc1a9d412006-09-26 10:52:40 +020088 typeof(_proxy_pda.field) ret__; \
89 switch (sizeof(_proxy_pda.field)) { \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010090 case 2: \
91 asm(op "w %%gs:%c1,%0" : \
Andi Kleenc1a9d412006-09-26 10:52:40 +020092 "=r" (ret__) : \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010093 "i" (pda_offset(field)), \
94 "m" (_proxy_pda.field)); \
Joe Perches46e1abc2008-03-23 01:03:05 -070095 break; \
Andi Kleenc1a9d412006-09-26 10:52:40 +020096 case 4: \
97 asm(op "l %%gs:%c1,%0": \
98 "=r" (ret__): \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +010099 "i" (pda_offset(field)), \
100 "m" (_proxy_pda.field)); \
Joe Perches46e1abc2008-03-23 01:03:05 -0700101 break; \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +0100102 case 8: \
Andi Kleenc1a9d412006-09-26 10:52:40 +0200103 asm(op "q %%gs:%c1,%0": \
104 "=r" (ret__) : \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +0100105 "i" (pda_offset(field)), \
106 "m" (_proxy_pda.field)); \
Joe Perches46e1abc2008-03-23 01:03:05 -0700107 break; \
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +0100108 default: \
Andi Kleenc1a9d412006-09-26 10:52:40 +0200109 __bad_pda_field(); \
Joe Perches46e1abc2008-03-23 01:03:05 -0700110 } \
111 ret__; \
112})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Cyrill Gorcunovfe758fb2008-01-30 13:31:25 +0100114#define read_pda(field) pda_from_op("mov", field)
115#define write_pda(field, val) pda_to_op("mov", field, val)
116#define add_pda(field, val) pda_to_op("add", field, val)
117#define sub_pda(field, val) pda_to_op("sub", field, val)
118#define or_pda(field, val) pda_to_op("or", field, val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Andi Kleen94468682006-11-14 16:57:46 +0100120/* This is not atomic against other CPUs -- CPU preemption needs to be off */
Joe Perches46e1abc2008-03-23 01:03:05 -0700121#define test_and_clear_bit_pda(bit, field) \
122({ \
123 int old__; \
124 asm volatile("btr %2,%%gs:%c3\n\tsbbl %0,%0" \
125 : "=r" (old__), "+m" (_proxy_pda.field) \
126 : "dIr" (bit), "i" (pda_offset(field)) : "memory");\
127 old__; \
Andi Kleen94468682006-11-14 16:57:46 +0100128})
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#endif
131
132#define PDA_STACKOFFSET (5*8)
133
Arjan van de Venaf9ff782008-07-12 09:36:38 -0700134#define refresh_stack_canary() write_pda(stack_canary, current->stack_canary)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#endif