]> git.karo-electronics.de Git - mv-sheeva.git/blob - include/asm-x86_64/pda.h
5dadb201f7699c45aaf6485ad0f9b77a75cf36ec
[mv-sheeva.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         if (0) { T__ tmp__; tmp__ = (val); }  \
53         switch (sizeof(_proxy_pda.field)) {             \
54 case 2: \
55 asm(op "w %1,%%gs:%c2" : "+m" (_proxy_pda.field) : \
56         "ri" ((T__)val),"i"(pda_offset(field))); break; \
57 case 4: \
58 asm(op "l %1,%%gs:%c2" : "+m" (_proxy_pda.field) : \
59         "ri" ((T__)val),"i"(pda_offset(field))); break; \
60 case 8: \
61 asm(op "q %1,%%gs:%c2": "+m" (_proxy_pda.field) : \
62          "ri" ((T__)val),"i"(pda_offset(field))); break; \
63 default: __bad_pda_field();                                     \
64        } \
65        } while (0)
66
67 #define pda_from_op(op,field) ({ \
68        typeof(_proxy_pda.field) ret__; \
69        switch (sizeof(_proxy_pda.field)) {              \
70 case 2: \
71 asm(op "w %%gs:%c1,%0":"=r" (ret__):\
72         "i" (pda_offset(field)), "m" (_proxy_pda.field)); break;\
73 case 4: \
74 asm(op "l %%gs:%c1,%0":"=r" (ret__):\
75         "i" (pda_offset(field)), "m" (_proxy_pda.field)); break;\
76 case 8: \
77 asm(op "q %%gs:%c1,%0":"=r" (ret__):\
78         "i" (pda_offset(field)), "m" (_proxy_pda.field)); break;\
79 default: __bad_pda_field();                                     \
80        } \
81        ret__; })
82
83
84 #define read_pda(field) pda_from_op("mov",field)
85 #define write_pda(field,val) pda_to_op("mov",field,val)
86 #define add_pda(field,val) pda_to_op("add",field,val)
87 #define sub_pda(field,val) pda_to_op("sub",field,val)
88 #define or_pda(field,val) pda_to_op("or",field,val)
89
90 #endif
91
92 #define PDA_STACKOFFSET (5*8)
93
94 #endif