baff6d0da995b3ecf47c37980a8dcce637dbd4f1
[cascardo/linux.git] / arch / x86 / include / asm / fixmap_64.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
11 #ifndef _ASM_X86_FIXMAP_64_H
12 #define _ASM_X86_FIXMAP_64_H
13
14 #include <linux/kernel.h>
15 #include <asm/acpi.h>
16 #include <asm/apicdef.h>
17 #include <asm/page.h>
18 #include <asm/vsyscall.h>
19 #ifdef CONFIG_EFI
20 #include <asm/efi.h>
21 #endif
22
23 /*
24  * Here we define all the compile-time 'special' virtual
25  * addresses. The point is to have a constant address at
26  * compile time, but to set the physical address only
27  * in the boot process.
28  *
29  * These 'compile-time allocated' memory buffers are
30  * fixed-size 4k pages (or larger if used with an increment
31  * higher than 1). Use set_fixmap(idx,phys) to associate
32  * physical memory with fixmap indices.
33  *
34  * TLB entries of such buffers will not be flushed across
35  * task switches.
36  */
37
38 enum fixed_addresses {
39         VSYSCALL_LAST_PAGE,
40         VSYSCALL_FIRST_PAGE = VSYSCALL_LAST_PAGE
41                             + ((VSYSCALL_END-VSYSCALL_START) >> PAGE_SHIFT) - 1,
42         VSYSCALL_HPET,
43         FIX_DBGP_BASE,
44         FIX_EARLYCON_MEM_BASE,
45 #ifdef CONFIG_X86_LOCAL_APIC
46         FIX_APIC_BASE,  /* local (CPU) APIC) -- required for SMP or not */
47 #endif
48 #ifdef CONFIG_X86_IO_APIC
49         FIX_IO_APIC_BASE_0,
50         FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS - 1,
51 #endif
52 #ifdef CONFIG_EFI
53         FIX_EFI_IO_MAP_LAST_PAGE,
54         FIX_EFI_IO_MAP_FIRST_PAGE = FIX_EFI_IO_MAP_LAST_PAGE
55                                   + MAX_EFI_IO_PAGES - 1,
56 #endif
57 #ifdef CONFIG_PARAVIRT
58         FIX_PARAVIRT_BOOTMAP,
59 #endif
60         __end_of_permanent_fixed_addresses,
61 #ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
62         FIX_OHCI1394_BASE,
63 #endif
64         /*
65          * 256 temporary boot-time mappings, used by early_ioremap(),
66          * before ioremap() is functional.
67          *
68          * We round it up to the next 256 pages boundary so that we
69          * can have a single pgd entry and a single pte table:
70          */
71 #define NR_FIX_BTMAPS           64
72 #define FIX_BTMAPS_SLOTS        4
73         FIX_BTMAP_END = __end_of_permanent_fixed_addresses + 256 -
74                         (__end_of_permanent_fixed_addresses & 255),
75         FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS*FIX_BTMAPS_SLOTS - 1,
76         __end_of_fixed_addresses
77 };
78
79 extern void reserve_top_address(unsigned long reserve);
80
81 #define FIXADDR_TOP     (VSYSCALL_END-PAGE_SIZE)
82
83 #define FIXADDR_SIZE    (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
84 #define FIXADDR_BOOT_SIZE       (__end_of_fixed_addresses << PAGE_SHIFT)
85 #define FIXADDR_START           (FIXADDR_TOP - FIXADDR_SIZE)
86 #define FIXADDR_BOOT_START      (FIXADDR_TOP - FIXADDR_BOOT_SIZE)
87
88 /* Only covers 32bit vsyscalls currently. Need another set for 64bit. */
89 #define FIXADDR_USER_START      ((unsigned long)VSYSCALL32_VSYSCALL)
90 #define FIXADDR_USER_END        (FIXADDR_USER_START + PAGE_SIZE)
91
92 #endif /* _ASM_X86_FIXMAP_64_H */