blob: 95e6b6dcbe37ecdc191a3d37bb0c263265095f31 [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 *
11 * Adapted from arch/x86_64 version.
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 <asm/page.h>
21
22/*
23 * Here we define all the compile-time 'special' virtual
24 * addresses. The point is to have a constant address at
25 * compile time, but to set the physical address only
26 * in the boot process.
27 *
28 * These 'compile-time allocated' memory buffers are
29 * page-sized. Use set_fixmap(idx,phys) to associate
30 * physical memory with fixmap indices.
31 *
32 */
33enum fixed_addresses {
Laura Abbottdab78b62014-11-26 00:14:16 +000034 FIX_HOLE,
Mark Salterbf4b5582014-04-07 15:39:52 -070035 FIX_EARLYCON_MEM_BASE,
Mark Rutland19fc5772015-03-04 13:27:34 +000036 FIX_TEXT_POKE0,
Mark Salterbf4b5582014-04-07 15:39:52 -070037 __end_of_permanent_fixed_addresses,
38
39 /*
40 * Temporary boot-time mappings, used by early_ioremap(),
41 * before ioremap() is functional.
42 */
43#ifdef CONFIG_ARM64_64K_PAGES
44#define NR_FIX_BTMAPS 4
45#else
46#define NR_FIX_BTMAPS 64
47#endif
48#define FIX_BTMAPS_SLOTS 7
49#define TOTAL_FIX_BTMAPS (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS)
50
51 FIX_BTMAP_END = __end_of_permanent_fixed_addresses,
52 FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1,
53 __end_of_fixed_addresses
54};
55
56#define FIXADDR_SIZE (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
57#define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
58
59#define FIXMAP_PAGE_IO __pgprot(PROT_DEVICE_nGnRE)
60
Laura Abbottaf86e592014-11-21 21:50:42 +000061void __init early_fixmap_init(void);
Mark Salterbf4b5582014-04-07 15:39:52 -070062
Laura Abbottaf86e592014-11-21 21:50:42 +000063#define __early_set_fixmap __set_fixmap
64
Mark Salterb2cedba2015-03-24 14:02:36 +000065#define __late_set_fixmap __set_fixmap
66#define __late_clear_fixmap(idx) __set_fixmap((idx), 0, FIXMAP_PAGE_CLEAR)
67
Laura Abbottaf86e592014-11-21 21:50:42 +000068extern void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot);
Mark Salterbf4b5582014-04-07 15:39:52 -070069
70#include <asm-generic/fixmap.h>
71
72#endif /* !__ASSEMBLY__ */
73#endif /* _ASM_ARM64_FIXMAP_H */