fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / include / asm-i386 / 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  */
12
13 #ifndef _ASM_FIXMAP_H
14 #define _ASM_FIXMAP_H
15
16
17 /* used by vmalloc.c, vsyscall.lds.S.
18  *
19  * Leave one empty page between vmalloc'ed areas and
20  * the start of the fixmap.
21  */
22 #ifndef CONFIG_COMPAT_VDSO
23 extern unsigned long __FIXADDR_TOP;
24 #else
25 #define __FIXADDR_TOP  0xfffff000
26 #define FIXADDR_USER_START      __fix_to_virt(FIX_VDSO)
27 #define FIXADDR_USER_END        __fix_to_virt(FIX_VDSO - 1)
28 #endif
29
30 #ifndef __ASSEMBLY__
31 #include <linux/kernel.h>
32 #include <asm/acpi.h>
33 #include <asm/apicdef.h>
34 #include <asm/page.h>
35 #include <xen/gnttab.h>
36 #ifdef CONFIG_HIGHMEM
37 #include <linux/threads.h>
38 #include <asm/kmap_types.h>
39 #endif
40
41 /*
42  * Here we define all the compile-time 'special' virtual
43  * addresses. The point is to have a constant address at
44  * compile time, but to set the physical address only
45  * in the boot process. We allocate these special addresses
46  * from the end of virtual memory (0xfffff000) backwards.
47  * Also this lets us do fail-safe vmalloc(), we
48  * can guarantee that these special addresses and
49  * vmalloc()-ed addresses never overlap.
50  *
51  * these 'compile-time allocated' memory buffers are
52  * fixed-size 4k pages. (or larger if used with an increment
53  * highger than 1) use fixmap_set(idx,phys) to associate
54  * physical memory with fixmap indices.
55  *
56  * TLB entries of such buffers will not be flushed across
57  * task switches.
58  */
59 enum fixed_addresses {
60         FIX_HOLE,
61         FIX_VDSO,
62 #ifdef CONFIG_X86_LOCAL_APIC
63         FIX_APIC_BASE,  /* local (CPU) APIC) -- required for SMP or not */
64 #endif
65 #ifdef CONFIG_X86_IO_APIC
66         FIX_IO_APIC_BASE_0,
67         FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS-1,
68 #endif
69 #ifdef CONFIG_X86_VISWS_APIC
70         FIX_CO_CPU,     /* Cobalt timer */
71         FIX_CO_APIC,    /* Cobalt APIC Redirection Table */ 
72         FIX_LI_PCIA,    /* Lithium PCI Bridge A */
73         FIX_LI_PCIB,    /* Lithium PCI Bridge B */
74 #endif
75 #ifdef CONFIG_X86_F00F_BUG
76         FIX_F00F_IDT,   /* Virtual mapping for IDT */
77 #endif
78 #ifdef CONFIG_X86_CYCLONE_TIMER
79         FIX_CYCLONE_TIMER, /*cyclone timer register*/
80 #endif 
81 #ifdef CONFIG_HIGHMEM
82         FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */
83         FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
84 #endif
85 #ifdef CONFIG_ACPI
86         FIX_ACPI_BEGIN,
87         FIX_ACPI_END = FIX_ACPI_BEGIN + FIX_ACPI_PAGES - 1,
88 #endif
89 #ifdef CONFIG_PCI_MMCONFIG
90         FIX_PCIE_MCFG,
91 #endif
92         FIX_SHARED_INFO,
93 #define NR_FIX_ISAMAPS  256
94         FIX_ISAMAP_END,
95         FIX_ISAMAP_BEGIN = FIX_ISAMAP_END + NR_FIX_ISAMAPS - 1,
96         __end_of_permanent_fixed_addresses,
97         /* temporary boot-time mappings, used before ioremap() is functional */
98 #define NR_FIX_BTMAPS   16
99         FIX_BTMAP_END = __end_of_permanent_fixed_addresses,
100         FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS - 1,
101         FIX_WP_TEST,
102         __end_of_fixed_addresses
103 };
104
105 extern void __set_fixmap(enum fixed_addresses idx,
106                                         maddr_t phys, pgprot_t flags);
107
108 extern void reserve_top_address(unsigned long reserve);
109 extern void set_fixaddr_top(unsigned long top);
110
111 #define set_fixmap(idx, phys) \
112                 __set_fixmap(idx, phys, PAGE_KERNEL)
113 /*
114  * Some hardware wants to get fixmapped without caching.
115  */
116 #define set_fixmap_nocache(idx, phys) \
117                 __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
118
119 #define clear_fixmap(idx) \
120                 __set_fixmap(idx, 0, __pgprot(0))
121
122 #define FIXADDR_TOP     ((unsigned long)__FIXADDR_TOP)
123
124 #define __FIXADDR_SIZE  (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
125 #define __FIXADDR_BOOT_SIZE     (__end_of_fixed_addresses << PAGE_SHIFT)
126 #define FIXADDR_START           (FIXADDR_TOP - __FIXADDR_SIZE)
127 #define FIXADDR_BOOT_START      (FIXADDR_TOP - __FIXADDR_BOOT_SIZE)
128
129 #define __fix_to_virt(x)        (FIXADDR_TOP - ((x) << PAGE_SHIFT))
130 #define __virt_to_fix(x)        ((FIXADDR_TOP - ((x)&PAGE_MASK)) >> PAGE_SHIFT)
131
132 extern void __this_fixmap_does_not_exist(void);
133
134 /*
135  * 'index to address' translation. If anyone tries to use the idx
136  * directly without tranlation, we catch the bug with a NULL-deference
137  * kernel oops. Illegal ranges of incoming indices are caught too.
138  */
139 static __always_inline unsigned long fix_to_virt(const unsigned int idx)
140 {
141         /*
142          * this branch gets completely eliminated after inlining,
143          * except when someone tries to use fixaddr indices in an
144          * illegal way. (such as mixing up address types or using
145          * out-of-range indices).
146          *
147          * If it doesn't get removed, the linker will complain
148          * loudly with a reasonably clear error message..
149          */
150         if (idx >= __end_of_fixed_addresses)
151                 __this_fixmap_does_not_exist();
152
153         return __fix_to_virt(idx);
154 }
155
156 static inline unsigned long virt_to_fix(const unsigned long vaddr)
157 {
158         BUG_ON(vaddr >= FIXADDR_TOP || vaddr < FIXADDR_START);
159         return __virt_to_fix(vaddr);
160 }
161
162 #endif /* !__ASSEMBLY__ */
163 #endif