Added patch headers.
[linux-flexiantxendom0-3.2.10.git] / arch / x86 / include / mach-xen / asm / fixmap.h
1 /*
2  * fixmap.h: compile-time virtual memory allocation
3  *
4  * This file is subject to the terms and conditions of the GNU General Public
5  * License.  See the file "COPYING" in the main directory of this archive
6  * for more details.
7  *
8  * Copyright (C) 1998 Ingo Molnar
9  *
10  * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
11  * x86_32 and x86_64 integration by Gustavo F. Padovan, February 2009
12  */
13
14 #ifndef _ASM_X86_FIXMAP_H
15 #define _ASM_X86_FIXMAP_H
16
17 #ifndef __ASSEMBLY__
18 #include <linux/kernel.h>
19 #include <asm/acpi.h>
20 #include <asm/page.h>
21 #ifdef CONFIG_X86_32
22 #include <linux/threads.h>
23 #include <asm/kmap_types.h>
24 #else
25 #include <asm/vsyscall.h>
26 #endif
27
28 /*
29  * We can't declare FIXADDR_TOP as variable for x86_64 because vsyscall
30  * uses fixmaps that relies on FIXADDR_TOP for proper address calculation.
31  * Because of this, FIXADDR_TOP x86 integration was left as later work.
32  */
33 #ifdef CONFIG_X86_32
34 /* used by vmalloc.c, vsyscall.lds.S.
35  *
36  * Leave one empty page between vmalloc'ed areas and
37  * the start of the fixmap.
38  */
39 extern unsigned long __FIXADDR_TOP;
40 #define FIXADDR_TOP     ((unsigned long)__FIXADDR_TOP)
41
42 #define FIXADDR_USER_START     __fix_to_virt(FIX_VDSO)
43 #define FIXADDR_USER_END       __fix_to_virt(FIX_VDSO - 1)
44 #else
45 #define FIXADDR_TOP     (VSYSCALL_END-PAGE_SIZE)
46
47 /* Only covers 32bit vsyscalls currently. Need another set for 64bit. */
48 #define FIXADDR_USER_START      ((unsigned long)VSYSCALL32_VSYSCALL)
49 #define FIXADDR_USER_END        (FIXADDR_USER_START + PAGE_SIZE)
50 #endif
51
52
53 /*
54  * Here we define all the compile-time 'special' virtual
55  * addresses. The point is to have a constant address at
56  * compile time, but to set the physical address only
57  * in the boot process.
58  * for x86_32: We allocate these special addresses
59  * from the end of virtual memory (0xfffff000) backwards.
60  * Also this lets us do fail-safe vmalloc(), we
61  * can guarantee that these special addresses and
62  * vmalloc()-ed addresses never overlap.
63  *
64  * These 'compile-time allocated' memory buffers are
65  * fixed-size 4k pages (or larger if used with an increment
66  * higher than 1). Use set_fixmap(idx,phys) to associate
67  * physical memory with fixmap indices.
68  *
69  * TLB entries of such buffers will not be flushed across
70  * task switches.
71  */
72 enum fixed_addresses {
73 #ifdef CONFIG_X86_32
74         FIX_HOLE,
75         FIX_VDSO,
76 #else
77         VSYSCALL_LAST_PAGE,
78         VSYSCALL_FIRST_PAGE = VSYSCALL_LAST_PAGE
79                             + ((VSYSCALL_END-VSYSCALL_START) >> PAGE_SHIFT) - 1,
80         VSYSCALL_HPET,
81 #endif
82         FIX_DBGP_BASE,
83         FIX_EARLYCON_MEM_BASE,
84 #ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
85         FIX_OHCI1394_BASE,
86 #endif
87 #ifndef CONFIG_XEN
88 #ifdef CONFIG_X86_LOCAL_APIC
89         FIX_APIC_BASE,  /* local (CPU) APIC) -- required for SMP or not */
90 #endif
91 #ifdef CONFIG_X86_IO_APIC
92         FIX_IO_APIC_BASE_0,
93         FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS - 1,
94 #endif
95 #else
96         FIX_SHARED_INFO,
97 #define NR_FIX_ISAMAPS  256
98         FIX_ISAMAP_END,
99         FIX_ISAMAP_BEGIN = FIX_ISAMAP_END + NR_FIX_ISAMAPS - 1,
100 #endif
101 #ifdef CONFIG_X86_VISWS_APIC
102         FIX_CO_CPU,     /* Cobalt timer */
103         FIX_CO_APIC,    /* Cobalt APIC Redirection Table */
104         FIX_LI_PCIA,    /* Lithium PCI Bridge A */
105         FIX_LI_PCIB,    /* Lithium PCI Bridge B */
106 #endif
107 #ifdef CONFIG_X86_F00F_BUG
108         FIX_F00F_IDT,   /* Virtual mapping for IDT */
109 #endif
110 #ifdef CONFIG_X86_CYCLONE_TIMER
111         FIX_CYCLONE_TIMER, /*cyclone timer register*/
112 #endif
113 #ifdef CONFIG_X86_32
114         FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */
115         FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
116 #ifdef CONFIG_PCI_MMCONFIG
117         FIX_PCIE_MCFG,
118 #endif
119 #endif
120 #ifdef CONFIG_PARAVIRT
121         FIX_PARAVIRT_BOOTMAP,
122 #endif
123         FIX_TEXT_POKE1, /* reserve 2 pages for text_poke() */
124         FIX_TEXT_POKE0, /* first page is last, because allocation is backward */
125         __end_of_permanent_fixed_addresses,
126         /*
127          * 256 temporary boot-time mappings, used by early_ioremap(),
128          * before ioremap() is functional.
129          *
130          * If necessary we round it up to the next 256 pages boundary so
131          * that we can have a single pgd entry and a single pte table:
132          */
133 #define NR_FIX_BTMAPS           64
134 #define FIX_BTMAPS_SLOTS        4
135 #define TOTAL_FIX_BTMAPS        (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS)
136         FIX_BTMAP_END =
137          (__end_of_permanent_fixed_addresses ^
138           (__end_of_permanent_fixed_addresses + TOTAL_FIX_BTMAPS - 1)) &
139          -PTRS_PER_PTE
140          ? __end_of_permanent_fixed_addresses + TOTAL_FIX_BTMAPS -
141            (__end_of_permanent_fixed_addresses & (TOTAL_FIX_BTMAPS - 1))
142          : __end_of_permanent_fixed_addresses,
143         FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1,
144 #ifdef CONFIG_X86_32
145         FIX_WP_TEST,
146 #endif
147 #ifdef CONFIG_INTEL_TXT
148         FIX_TBOOT_BASE,
149 #endif
150         __end_of_fixed_addresses
151 };
152
153
154 extern void reserve_top_address(unsigned long reserve);
155
156 #define FIXADDR_SIZE    (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
157 #define FIXADDR_BOOT_SIZE       (__end_of_fixed_addresses << PAGE_SHIFT)
158 #define FIXADDR_START           (FIXADDR_TOP - FIXADDR_SIZE)
159 #define FIXADDR_BOOT_START      (FIXADDR_TOP - FIXADDR_BOOT_SIZE)
160
161 extern int fixmaps_set;
162
163 extern pte_t *kmap_pte;
164 extern pgprot_t kmap_prot;
165 extern pte_t *pkmap_page_table;
166
167 void xen_set_fixmap(enum fixed_addresses, phys_addr_t, pgprot_t);
168
169 static inline void __set_fixmap(enum fixed_addresses idx,
170                                 phys_addr_t phys, pgprot_t flags)
171 {
172         xen_set_fixmap(idx, phys, flags);
173 }
174
175 #define set_fixmap(idx, phys)                           \
176         __set_fixmap(idx, phys, PAGE_KERNEL)
177
178 /*
179  * Some hardware wants to get fixmapped without caching.
180  */
181 #define set_fixmap_nocache(idx, phys)                   \
182         __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
183
184 #define clear_fixmap(idx)                       \
185         __set_fixmap(idx, 0, __pgprot(0))
186
187 #define __fix_to_virt(x)        (FIXADDR_TOP - ((x) << PAGE_SHIFT))
188 #define __virt_to_fix(x)        ((FIXADDR_TOP - ((x)&PAGE_MASK)) >> PAGE_SHIFT)
189
190 extern void __this_fixmap_does_not_exist(void);
191
192 /*
193  * 'index to address' translation. If anyone tries to use the idx
194  * directly without translation, we catch the bug with a NULL-deference
195  * kernel oops. Illegal ranges of incoming indices are caught too.
196  */
197 static __always_inline unsigned long fix_to_virt(const unsigned int idx)
198 {
199         /*
200          * this branch gets completely eliminated after inlining,
201          * except when someone tries to use fixaddr indices in an
202          * illegal way. (such as mixing up address types or using
203          * out-of-range indices).
204          *
205          * If it doesn't get removed, the linker will complain
206          * loudly with a reasonably clear error message..
207          */
208         if (idx >= __end_of_fixed_addresses)
209                 __this_fixmap_does_not_exist();
210
211         return __fix_to_virt(idx);
212 }
213
214 static inline unsigned long virt_to_fix(const unsigned long vaddr)
215 {
216         BUG_ON(vaddr >= FIXADDR_TOP || vaddr < FIXADDR_START);
217         return __virt_to_fix(vaddr);
218 }
219 #endif /* !__ASSEMBLY__ */
220 #endif /* _ASM_X86_FIXMAP_H */