1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 #ifndef _ASM_ARM64_FIXMAP_H
16 #define _ASM_ARM64_FIXMAP_H
17
18 #ifndef __ASSEMBLY__
19 #include <linux/kernel.h>
20 #include <linux/sizes.h>
21 #include <asm/boot.h>
22 #include <asm/page.h>
23 #include <asm/pgtable-prot.h>
24
25
26
27
28
29
30
31
32
33
34
35
36 enum fixed_addresses {
37 FIX_HOLE,
38
39
40
41
42
43
44
45
46
47
48 #define FIX_FDT_SIZE (MAX_FDT_SIZE + SZ_2M)
49 FIX_FDT_END,
50 FIX_FDT = FIX_FDT_END + FIX_FDT_SIZE / PAGE_SIZE - 1,
51
52 FIX_EARLYCON_MEM_BASE,
53 FIX_TEXT_POKE0,
54
55 #ifdef CONFIG_ACPI_APEI_GHES
56
57 FIX_APEI_GHES_IRQ,
58 FIX_APEI_GHES_SEA,
59 #ifdef CONFIG_ARM_SDE_INTERFACE
60 FIX_APEI_GHES_SDEI_NORMAL,
61 FIX_APEI_GHES_SDEI_CRITICAL,
62 #endif
63 #endif
64
65 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
66 FIX_ENTRY_TRAMP_DATA,
67 FIX_ENTRY_TRAMP_TEXT,
68 #define TRAMP_VALIAS (__fix_to_virt(FIX_ENTRY_TRAMP_TEXT))
69 #endif
70 __end_of_permanent_fixed_addresses,
71
72
73
74
75
76 #define NR_FIX_BTMAPS (SZ_256K / PAGE_SIZE)
77 #define FIX_BTMAPS_SLOTS 7
78 #define TOTAL_FIX_BTMAPS (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS)
79
80 FIX_BTMAP_END = __end_of_permanent_fixed_addresses,
81 FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1,
82
83
84
85
86
87 FIX_PTE,
88 FIX_PMD,
89 FIX_PUD,
90 FIX_PGD,
91
92 __end_of_fixed_addresses
93 };
94
95 #define FIXADDR_SIZE (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
96 #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
97
98 #define FIXMAP_PAGE_IO __pgprot(PROT_DEVICE_nGnRE)
99
100 void __init early_fixmap_init(void);
101
102 #define __early_set_fixmap __set_fixmap
103
104 #define __late_set_fixmap __set_fixmap
105 #define __late_clear_fixmap(idx) __set_fixmap((idx), 0, FIXMAP_PAGE_CLEAR)
106
107 extern void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot);
108
109 #include <asm-generic/fixmap.h>
110
111 #endif
112 #endif