x86: page.h: make pte_t a union to always include
[linux-2.6/linux-loongson.git] / include / asm-x86 / page_64.h
blobc1ac42d8707f34fe374c6063cc37503b7e4647f4
1 #ifndef _X86_64_PAGE_H
2 #define _X86_64_PAGE_H
4 #define PAGETABLE_LEVELS 4
6 #define THREAD_ORDER 1
7 #define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
8 #define CURRENT_MASK (~(THREAD_SIZE-1))
10 #define EXCEPTION_STACK_ORDER 0
11 #define EXCEPTION_STKSZ (PAGE_SIZE << EXCEPTION_STACK_ORDER)
13 #define DEBUG_STACK_ORDER (EXCEPTION_STACK_ORDER + 1)
14 #define DEBUG_STKSZ (PAGE_SIZE << DEBUG_STACK_ORDER)
16 #define IRQSTACK_ORDER 2
17 #define IRQSTACKSIZE (PAGE_SIZE << IRQSTACK_ORDER)
19 #define STACKFAULT_STACK 1
20 #define DOUBLEFAULT_STACK 2
21 #define NMI_STACK 3
22 #define DEBUG_STACK 4
23 #define MCE_STACK 5
24 #define N_EXCEPTION_STACKS 5 /* hw limit: 7 */
26 #define __PAGE_OFFSET _AC(0xffff810000000000, UL)
28 #define __PHYSICAL_START CONFIG_PHYSICAL_START
29 #define __KERNEL_ALIGN 0x200000
32 * Make sure kernel is aligned to 2MB address. Catching it at compile
33 * time is better. Change your config file and compile the kernel
34 * for a 2MB aligned address (CONFIG_PHYSICAL_START)
36 #if (CONFIG_PHYSICAL_START % __KERNEL_ALIGN) != 0
37 #error "CONFIG_PHYSICAL_START must be a multiple of 2MB"
38 #endif
40 #define __START_KERNEL (__START_KERNEL_map + __PHYSICAL_START)
41 #define __START_KERNEL_map _AC(0xffffffff80000000, UL)
43 /* See Documentation/x86_64/mm.txt for a description of the memory map. */
44 #define __PHYSICAL_MASK_SHIFT 46
45 #define __VIRTUAL_MASK_SHIFT 48
47 #define KERNEL_TEXT_SIZE (40*1024*1024)
48 #define KERNEL_TEXT_START _AC(0xffffffff80000000, UL)
50 #ifndef __ASSEMBLY__
51 void clear_page(void *page);
52 void copy_page(void *to, void *from);
54 extern unsigned long end_pfn;
55 extern unsigned long end_pfn_map;
56 extern unsigned long phys_base;
58 extern unsigned long __phys_addr(unsigned long);
59 #define __phys_reloc_hide(x) (x)
62 * These are used to make use of C type-checking..
64 typedef unsigned long pteval_t;
65 typedef unsigned long pmdval_t;
66 typedef unsigned long pudval_t;
67 typedef unsigned long pgdval_t;
68 typedef unsigned long pgprotval_t;
69 typedef unsigned long phys_addr_t;
71 typedef struct { pteval_t pte; } pte_t;
73 #define vmemmap ((struct page *)VMEMMAP_START)
75 #endif /* !__ASSEMBLY__ */
77 #ifdef CONFIG_FLATMEM
78 #define pfn_valid(pfn) ((pfn) < end_pfn)
79 #endif
82 #endif /* _X86_64_PAGE_H */