]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-x86_64/pda.h
[PATCH] Use %c instead of %P modifier in pda access
[linux-2.6-omap-h63xx.git] / include / asm-x86_64 / pda.h
1 #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>
8 #include <asm/page.h>
9
10 /* Per processor datastructure. %gs points to it while the kernel runs */ 
11 struct x8664_pda {
12         struct task_struct *pcurrent;   /* 0  Current process */
13         unsigned long data_offset;      /* 8 Per cpu data offset from linker
14                                            address */
15         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 with -1 */
18         int cpunumber;              /* 36 Logical CPU number */
19 #ifdef CONFIG_CC_STACKPROTECTOR
20         unsigned long stack_canary;     /* 40 stack canary value */
21                                         /* gcc-ABI: this canary MUST be at
22                                            offset 40!!! */
23 #endif
24         char *irqstackptr;
25         int nodenumber;             /* number of current node */
26         unsigned int __softirq_pending;
27         unsigned int __nmi_count;       /* number of NMI on this CPUs */
28         int mmu_state;     
29         struct mm_struct *active_mm;
30         unsigned apic_timer_irqs;
31 } ____cacheline_aligned_in_smp;
32
33 extern struct x8664_pda *_cpu_pda[];
34 extern struct x8664_pda boot_cpu_pda[];
35
36 #define cpu_pda(i) (_cpu_pda[i])
37
38 /* 
39  * There is no fast way to get the base address of the PDA, all the accesses
40  * have to mention %fs/%gs.  So it needs to be done this Torvaldian way.
41  */ 
42 extern void __bad_pda_field(void);
43
44 /* proxy_pda doesn't actually exist, but tell gcc it is accessed
45    for all PDA accesses so it gets read/write dependencies right. */
46 extern struct x8664_pda _proxy_pda;
47
48 #define pda_offset(field) offsetof(struct x8664_pda, field)
49
50 #define pda_to_op(op,field,val) do { \
51         typedef typeof(_proxy_pda.field) T__; \
52        switch (sizeof(_proxy_pda.field)) {              \
53 case 2: \
54 asm(op "w %1,%%gs:%c2" : "+m" (_proxy_pda.field) : \
55         "ri" ((T__)val),"i"(pda_offset(field))); break; \
56 case 4: \
57 asm(op "l %1,%%gs:%c2" : "+m" (_proxy_pda.field) : \
58         "ri" ((T__)val),"i"(pda_offset(field))); break; \
59 case 8: \
60 asm(op "q %1,%%gs:%c2": "+m" (_proxy_pda.field) : \
61          "ri" ((T__)val),"i"(pda_offset(field))); break; \
62 default: __bad_pda_field();                                     \
63        } \
64        } while (0)
65
66 #define pda_from_op(op,field) ({ \
67        typeof(_proxy_pda.field) ret__; \
68        switch (sizeof(_proxy_pda.field)) {              \
69 case 2: \
70 asm(op "w %%gs:%c1,%0":"=r" (ret__):\
71         "i" (pda_offset(field)), "m" (_proxy_pda.field)); break;\
72 case 4: \
73 asm(op "l %%gs:%c1,%0":"=r" (ret__):\
74         "i" (pda_offset(field)), "m" (_proxy_pda.field)); break;\
75 case 8: \
76 asm(op "q %%gs:%c1,%0":"=r" (ret__):\
77         "i" (pda_offset(field)), "m" (_proxy_pda.field)); break;\
78 default: __bad_pda_field();                                     \
79        } \
80        ret__; })
81
82
83 #define read_pda(field) pda_from_op("mov",field)
84 #define write_pda(field,val) pda_to_op("mov",field,val)
85 #define add_pda(field,val) pda_to_op("add",field,val)
86 #define sub_pda(field,val) pda_to_op("sub",field,val)
87 #define or_pda(field,val) pda_to_op("or",field,val)
88
89 #endif
90
91 #define PDA_STACKOFFSET (5*8)
92
93 #endif