blob: 8733ccfa442ef7802967fd05d4c84859691ba74e [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>
8
9/* Per processor datastructure. %gs points to it while the kernel runs */
10struct x8664_pda {
11 struct task_struct *pcurrent; /* Current process */
12 unsigned long data_offset; /* Per cpu data offset from linker address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 unsigned long kernelstack; /* top of kernel stack for current */
14 unsigned long oldrsp; /* user rsp for system call */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 int irqcount; /* Irq nesting counter. Starts with -1 */
16 int cpunumber; /* Logical CPU number */
17 char *irqstackptr; /* top of irqstack */
Andi Kleen69d81fc2005-11-05 17:25:53 +010018 int nodenumber; /* number of current node */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 unsigned int __softirq_pending;
20 unsigned int __nmi_count; /* number of NMI on this CPUs */
21 struct mm_struct *active_mm;
22 int mmu_state;
23 unsigned apic_timer_irqs;
Andi Kleenb9169112005-09-12 18:49:24 +020024} ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26
27#define IRQSTACK_ORDER 2
28#define IRQSTACKSIZE (PAGE_SIZE << IRQSTACK_ORDER)
29
30extern struct x8664_pda cpu_pda[];
31
32/*
33 * There is no fast way to get the base address of the PDA, all the accesses
34 * have to mention %fs/%gs. So it needs to be done this Torvaldian way.
35 */
36#define sizeof_field(type,field) (sizeof(((type *)0)->field))
37#define typeof_field(type,field) typeof(((type *)0)->field)
38
39extern void __bad_pda_field(void);
40
41#define pda_offset(field) offsetof(struct x8664_pda, field)
42
43#define pda_to_op(op,field,val) do { \
Andi Kleen3f744782005-09-12 18:49:24 +020044 typedef typeof_field(struct x8664_pda, field) T__; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 switch (sizeof_field(struct x8664_pda, field)) { \
46case 2: \
Andi Kleen3f744782005-09-12 18:49:24 +020047asm volatile(op "w %0,%%gs:%P1"::"ri" ((T__)val),"i"(pda_offset(field)):"memory"); break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070048case 4: \
Andi Kleen3f744782005-09-12 18:49:24 +020049asm volatile(op "l %0,%%gs:%P1"::"ri" ((T__)val),"i"(pda_offset(field)):"memory"); break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070050case 8: \
Andi Kleen3f744782005-09-12 18:49:24 +020051asm volatile(op "q %0,%%gs:%P1"::"ri" ((T__)val),"i"(pda_offset(field)):"memory"); break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 default: __bad_pda_field(); \
53 } \
54 } while (0)
55
56/*
57 * AK: PDA read accesses should be neither volatile nor have an memory clobber.
58 * Unfortunately removing them causes all hell to break lose currently.
59 */
60#define pda_from_op(op,field) ({ \
Andi Kleen3f744782005-09-12 18:49:24 +020061 typeof_field(struct x8664_pda, field) ret__; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 switch (sizeof_field(struct x8664_pda, field)) { \
63case 2: \
64asm volatile(op "w %%gs:%P1,%0":"=r" (ret__):"i"(pda_offset(field)):"memory"); break;\
65case 4: \
66asm volatile(op "l %%gs:%P1,%0":"=r" (ret__):"i"(pda_offset(field)):"memory"); break;\
67case 8: \
68asm volatile(op "q %%gs:%P1,%0":"=r" (ret__):"i"(pda_offset(field)):"memory"); break;\
69 default: __bad_pda_field(); \
70 } \
71 ret__; })
72
73
74#define read_pda(field) pda_from_op("mov",field)
75#define write_pda(field,val) pda_to_op("mov",field,val)
76#define add_pda(field,val) pda_to_op("add",field,val)
77#define sub_pda(field,val) pda_to_op("sub",field,val)
Andi Kleen3f744782005-09-12 18:49:24 +020078#define or_pda(field,val) pda_to_op("or",field,val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80#endif
81
82#define PDA_STACKOFFSET (5*8)
83
84#endif