blob: b47c3df9ed1dd72d792ceca2e6f8f5d6338b7556 [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
10/* Per processor datastructure. %gs points to it while the kernel runs */
11struct x8664_pda {
12 struct task_struct *pcurrent; /* Current process */
13 unsigned long data_offset; /* Per cpu data offset from linker address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 unsigned long kernelstack; /* top of kernel stack for current */
15 unsigned long oldrsp; /* user rsp for system call */
Jan Beulichb556b352006-01-11 22:43:00 +010016#if DEBUG_STKSZ > EXCEPTION_STKSZ
17 unsigned long debugstack; /* #DB/#BP stack. */
18#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 int irqcount; /* Irq nesting counter. Starts with -1 */
20 int cpunumber; /* Logical CPU number */
21 char *irqstackptr; /* top of irqstack */
Andi Kleen69d81fc2005-11-05 17:25:53 +010022 int nodenumber; /* number of current node */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 unsigned int __softirq_pending;
24 unsigned int __nmi_count; /* number of NMI on this CPUs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 int mmu_state;
Arjan van de Vendf920042006-03-25 16:31:01 +010026 struct mm_struct *active_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 unsigned apic_timer_irqs;
Andi Kleenb9169112005-09-12 18:49:24 +020028} ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Ravikiran G Thirumalai365ba912006-01-11 22:45:42 +010030extern struct x8664_pda *_cpu_pda[];
31extern struct x8664_pda boot_cpu_pda[];
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +010032
Ravikiran G Thirumalai365ba912006-01-11 22:45:42 +010033#define cpu_pda(i) (_cpu_pda[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/*
36 * There is no fast way to get the base address of the PDA, all the accesses
37 * have to mention %fs/%gs. So it needs to be done this Torvaldian way.
38 */
39#define sizeof_field(type,field) (sizeof(((type *)0)->field))
40#define typeof_field(type,field) typeof(((type *)0)->field)
41
42extern void __bad_pda_field(void);
43
44#define pda_offset(field) offsetof(struct x8664_pda, field)
45
46#define pda_to_op(op,field,val) do { \
Andi Kleen3f744782005-09-12 18:49:24 +020047 typedef typeof_field(struct x8664_pda, field) T__; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 switch (sizeof_field(struct x8664_pda, field)) { \
49case 2: \
Andi Kleen3f744782005-09-12 18:49:24 +020050asm volatile(op "w %0,%%gs:%P1"::"ri" ((T__)val),"i"(pda_offset(field)):"memory"); break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070051case 4: \
Andi Kleen3f744782005-09-12 18:49:24 +020052asm volatile(op "l %0,%%gs:%P1"::"ri" ((T__)val),"i"(pda_offset(field)):"memory"); break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070053case 8: \
Andi Kleen3f744782005-09-12 18:49:24 +020054asm volatile(op "q %0,%%gs:%P1"::"ri" ((T__)val),"i"(pda_offset(field)):"memory"); break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 default: __bad_pda_field(); \
56 } \
57 } while (0)
58
59/*
60 * AK: PDA read accesses should be neither volatile nor have an memory clobber.
61 * Unfortunately removing them causes all hell to break lose currently.
62 */
63#define pda_from_op(op,field) ({ \
Andi Kleen3f744782005-09-12 18:49:24 +020064 typeof_field(struct x8664_pda, field) ret__; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 switch (sizeof_field(struct x8664_pda, field)) { \
66case 2: \
67asm volatile(op "w %%gs:%P1,%0":"=r" (ret__):"i"(pda_offset(field)):"memory"); break;\
68case 4: \
69asm volatile(op "l %%gs:%P1,%0":"=r" (ret__):"i"(pda_offset(field)):"memory"); break;\
70case 8: \
71asm volatile(op "q %%gs:%P1,%0":"=r" (ret__):"i"(pda_offset(field)):"memory"); break;\
72 default: __bad_pda_field(); \
73 } \
74 ret__; })
75
76
77#define read_pda(field) pda_from_op("mov",field)
78#define write_pda(field,val) pda_to_op("mov",field,val)
79#define add_pda(field,val) pda_to_op("add",field,val)
80#define sub_pda(field,val) pda_to_op("sub",field,val)
Andi Kleen3f744782005-09-12 18:49:24 +020081#define or_pda(field,val) pda_to_op("or",field,val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#endif
84
85#define PDA_STACKOFFSET (5*8)
86
87#endif