]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/asm-x86/pda.h
Add a new sysfs_streq() string comparison function
[mirror_ubuntu-bionic-kernel.git] / include / asm-x86 / pda.h
CommitLineData
1da177e4
LT
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>
b556b35e 8#include <asm/page.h>
1da177e4 9
fe758fb1 10/* Per processor datastructure. %gs points to it while the kernel runs */
1da177e4 11struct x8664_pda {
29a9af60
AV
12 struct task_struct *pcurrent; /* 0 Current process */
13 unsigned long data_offset; /* 8 Per cpu data offset from linker
14 address */
fe758fb1
CG
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 -1 */
18 unsigned int cpunumber; /* 36 Logical CPU number */
0a425405
AV
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;
1da177e4
LT
25 unsigned int __softirq_pending;
26 unsigned int __nmi_count; /* number of NMI on this CPUs */
a15da49d
AK
27 short mmu_state;
28 short isidle;
df92004c 29 struct mm_struct *active_mm;
1da177e4 30 unsigned apic_timer_irqs;
4e77ae3e 31 unsigned irq0_irqs;
38e760a1
JK
32 unsigned irq_resched_count;
33 unsigned irq_call_count;
34 unsigned irq_tlb_count;
35 unsigned irq_thermal_count;
36 unsigned irq_threshold_count;
37 unsigned irq_spurious_count;
b9169116 38} ____cacheline_aligned_in_smp;
1da177e4 39
365ba917
RT
40extern struct x8664_pda *_cpu_pda[];
41extern struct x8664_pda boot_cpu_pda[];
40fec50a 42extern void pda_init(int);
df79efde 43
365ba917 44#define cpu_pda(i) (_cpu_pda[i])
1da177e4 45
fe758fb1 46/*
1da177e4
LT
47 * There is no fast way to get the base address of the PDA, all the accesses
48 * have to mention %fs/%gs. So it needs to be done this Torvaldian way.
fe758fb1 49 */
fd167e42 50extern void __bad_pda_field(void) __attribute__((noreturn));
1da177e4 51
c1a9d41f
AK
52/*
53 * proxy_pda doesn't actually exist, but tell gcc it is accessed for
54 * all PDA accesses so it gets read/write dependencies right.
55 */
53ee11ae
AK
56extern struct x8664_pda _proxy_pda;
57
1da177e4
LT
58#define pda_offset(field) offsetof(struct x8664_pda, field)
59
46e1abc6
JP
60#define pda_to_op(op, field, val) \
61do { \
62 typedef typeof(_proxy_pda.field) T__; \
63 if (0) { T__ tmp__; tmp__ = (val); } /* type checking */ \
64 switch (sizeof(_proxy_pda.field)) { \
65 case 2: \
66 asm(op "w %1,%%gs:%c2" : \
67 "+m" (_proxy_pda.field) : \
68 "ri" ((T__)val), \
69 "i"(pda_offset(field))); \
70 break; \
71 case 4: \
72 asm(op "l %1,%%gs:%c2" : \
73 "+m" (_proxy_pda.field) : \
74 "ri" ((T__)val), \
75 "i" (pda_offset(field))); \
76 break; \
77 case 8: \
78 asm(op "q %1,%%gs:%c2": \
79 "+m" (_proxy_pda.field) : \
80 "ri" ((T__)val), \
81 "i"(pda_offset(field))); \
82 break; \
83 default: \
84 __bad_pda_field(); \
85 } \
86} while (0)
1da177e4 87
46e1abc6
JP
88#define pda_from_op(op, field) \
89({ \
c1a9d41f
AK
90 typeof(_proxy_pda.field) ret__; \
91 switch (sizeof(_proxy_pda.field)) { \
fe758fb1
CG
92 case 2: \
93 asm(op "w %%gs:%c1,%0" : \
c1a9d41f 94 "=r" (ret__) : \
fe758fb1
CG
95 "i" (pda_offset(field)), \
96 "m" (_proxy_pda.field)); \
46e1abc6 97 break; \
c1a9d41f
AK
98 case 4: \
99 asm(op "l %%gs:%c1,%0": \
100 "=r" (ret__): \
fe758fb1
CG
101 "i" (pda_offset(field)), \
102 "m" (_proxy_pda.field)); \
46e1abc6 103 break; \
fe758fb1 104 case 8: \
c1a9d41f
AK
105 asm(op "q %%gs:%c1,%0": \
106 "=r" (ret__) : \
fe758fb1
CG
107 "i" (pda_offset(field)), \
108 "m" (_proxy_pda.field)); \
46e1abc6 109 break; \
fe758fb1 110 default: \
c1a9d41f 111 __bad_pda_field(); \
46e1abc6
JP
112 } \
113 ret__; \
114})
1da177e4 115
fe758fb1
CG
116#define read_pda(field) pda_from_op("mov", field)
117#define write_pda(field, val) pda_to_op("mov", field, val)
118#define add_pda(field, val) pda_to_op("add", field, val)
119#define sub_pda(field, val) pda_to_op("sub", field, val)
120#define or_pda(field, val) pda_to_op("or", field, val)
1da177e4 121
9446868b 122/* This is not atomic against other CPUs -- CPU preemption needs to be off */
46e1abc6
JP
123#define test_and_clear_bit_pda(bit, field) \
124({ \
125 int old__; \
126 asm volatile("btr %2,%%gs:%c3\n\tsbbl %0,%0" \
127 : "=r" (old__), "+m" (_proxy_pda.field) \
128 : "dIr" (bit), "i" (pda_offset(field)) : "memory");\
129 old__; \
9446868b
AK
130})
131
1da177e4
LT
132#endif
133
134#define PDA_STACKOFFSET (5*8)
135
136#endif