blob: d8e58051f32d47ab5e93ec389672c1fbc4bf71c8 [file] [log] [blame]
Mark Salterbf4b5582014-04-07 15:39:52 -07001/*
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 * Copyright (C) 2013 Mark Salter <msalter@redhat.com>
10 *
Alexander Kuleshov5d3c2c32015-08-23 14:24:44 +010011 * Adapted from arch/x86 version.
Mark Salterbf4b5582014-04-07 15:39:52 -070012 *
13 */
14
15#ifndef _ASM_ARM64_FIXMAP_H
16#define _ASM_ARM64_FIXMAP_H
17
18#ifndef __ASSEMBLY__
19#include <linux/kernel.h>
Mark Rutlande25781e2015-10-19 14:19:33 +010020#include <linux/sizes.h>
Ard Biesheuvel61bd93c2015-06-01 13:40:32 +020021#include <asm/boot.h>
Mark Salterbf4b5582014-04-07 15:39:52 -070022#include <asm/page.h>
Mark Rutland3eca86e2016-02-26 14:31:32 +000023#include <asm/pgtable-prot.h>
Mark Salterbf4b5582014-04-07 15:39:52 -070024
25/*
26 * Here we define all the compile-time 'special' virtual
27 * addresses. The point is to have a constant address at
28 * compile time, but to set the physical address only
29 * in the boot process.
30 *
31 * These 'compile-time allocated' memory buffers are
32 * page-sized. Use set_fixmap(idx,phys) to associate
33 * physical memory with fixmap indices.
34 *
35 */
36enum fixed_addresses {
Laura Abbottdab78b62014-11-26 00:14:16 +000037 FIX_HOLE,
Ard Biesheuvel61bd93c2015-06-01 13:40:32 +020038
39 /*
40 * Reserve a virtual window for the FDT that is 2 MB larger than the
41 * maximum supported size, and put it at the top of the fixmap region.
42 * The additional space ensures that any FDT that does not exceed
43 * MAX_FDT_SIZE can be mapped regardless of whether it crosses any
44 * 2 MB alignment boundaries.
45 *
46 * Keep this at the top so it remains 2 MB aligned.
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
Mark Salterbf4b5582014-04-07 15:39:52 -070052 FIX_EARLYCON_MEM_BASE,
Mark Rutland19fc5772015-03-04 13:27:34 +000053 FIX_TEXT_POKE0,
Will Deacon5e54c4b2017-11-14 14:14:17 +000054
55#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
Will Deacon06fe41f2017-12-06 11:24:02 +000056 FIX_ENTRY_TRAMP_DATA,
Will Deacon5e54c4b2017-11-14 14:14:17 +000057 FIX_ENTRY_TRAMP_TEXT,
58#define TRAMP_VALIAS (__fix_to_virt(FIX_ENTRY_TRAMP_TEXT))
59#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
Mark Salterbf4b5582014-04-07 15:39:52 -070060 __end_of_permanent_fixed_addresses,
61
62 /*
63 * Temporary boot-time mappings, used by early_ioremap(),
64 * before ioremap() is functional.
65 */
Mark Rutlande25781e2015-10-19 14:19:33 +010066#define NR_FIX_BTMAPS (SZ_256K / PAGE_SIZE)
Mark Salterbf4b5582014-04-07 15:39:52 -070067#define FIX_BTMAPS_SLOTS 7
68#define TOTAL_FIX_BTMAPS (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS)
69
70 FIX_BTMAP_END = __end_of_permanent_fixed_addresses,
71 FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1,
Mark Rutland961faac2016-01-25 11:45:07 +000072
73 /*
74 * Used for kernel page table creation, so unmapped memory may be used
75 * for tables.
76 */
77 FIX_PTE,
78 FIX_PMD,
79 FIX_PUD,
80 FIX_PGD,
81
Mark Salterbf4b5582014-04-07 15:39:52 -070082 __end_of_fixed_addresses
83};
84
85#define FIXADDR_SIZE (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
86#define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
87
88#define FIXMAP_PAGE_IO __pgprot(PROT_DEVICE_nGnRE)
89
Laura Abbottaf86e592014-11-21 21:50:42 +000090void __init early_fixmap_init(void);
Mark Salterbf4b5582014-04-07 15:39:52 -070091
Laura Abbottaf86e592014-11-21 21:50:42 +000092#define __early_set_fixmap __set_fixmap
93
Mark Salterb2cedba2015-03-24 14:02:36 +000094#define __late_set_fixmap __set_fixmap
95#define __late_clear_fixmap(idx) __set_fixmap((idx), 0, FIXMAP_PAGE_CLEAR)
96
Laura Abbottaf86e592014-11-21 21:50:42 +000097extern void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot);
Mark Salterbf4b5582014-04-07 15:39:52 -070098
99#include <asm-generic/fixmap.h>
100
101#endif /* !__ASSEMBLY__ */
102#endif /* _ASM_ARM64_FIXMAP_H */