Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 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 | * Copyright (C) 2013 Mark Salter <msalter@redhat.com> |
| 10 | * |
Alexander Kuleshov | 5d3c2c3 | 2015-08-23 14:24:44 +0100 | [diff] [blame] | 11 | * Adapted from arch/x86 version. |
Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 12 | * |
| 13 | */ |
| 14 | |
| 15 | #ifndef _ASM_ARM64_FIXMAP_H |
| 16 | #define _ASM_ARM64_FIXMAP_H |
| 17 | |
| 18 | #ifndef __ASSEMBLY__ |
| 19 | #include <linux/kernel.h> |
Mark Rutland | e25781e | 2015-10-19 14:19:33 +0100 | [diff] [blame] | 20 | #include <linux/sizes.h> |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 21 | #include <asm/boot.h> |
Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 22 | #include <asm/page.h> |
| 23 | |
| 24 | /* |
| 25 | * Here we define all the compile-time 'special' virtual |
| 26 | * addresses. The point is to have a constant address at |
| 27 | * compile time, but to set the physical address only |
| 28 | * in the boot process. |
| 29 | * |
| 30 | * These 'compile-time allocated' memory buffers are |
| 31 | * page-sized. Use set_fixmap(idx,phys) to associate |
| 32 | * physical memory with fixmap indices. |
| 33 | * |
| 34 | */ |
| 35 | enum fixed_addresses { |
Laura Abbott | dab78b6 | 2014-11-26 00:14:16 +0000 | [diff] [blame] | 36 | FIX_HOLE, |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * Reserve a virtual window for the FDT that is 2 MB larger than the |
| 40 | * maximum supported size, and put it at the top of the fixmap region. |
| 41 | * The additional space ensures that any FDT that does not exceed |
| 42 | * MAX_FDT_SIZE can be mapped regardless of whether it crosses any |
| 43 | * 2 MB alignment boundaries. |
| 44 | * |
| 45 | * Keep this at the top so it remains 2 MB aligned. |
| 46 | */ |
| 47 | #define FIX_FDT_SIZE (MAX_FDT_SIZE + SZ_2M) |
| 48 | FIX_FDT_END, |
| 49 | FIX_FDT = FIX_FDT_END + FIX_FDT_SIZE / PAGE_SIZE - 1, |
| 50 | |
Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 51 | FIX_EARLYCON_MEM_BASE, |
Mark Rutland | 19fc577 | 2015-03-04 13:27:34 +0000 | [diff] [blame] | 52 | FIX_TEXT_POKE0, |
Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 53 | __end_of_permanent_fixed_addresses, |
| 54 | |
| 55 | /* |
| 56 | * Temporary boot-time mappings, used by early_ioremap(), |
| 57 | * before ioremap() is functional. |
| 58 | */ |
Mark Rutland | e25781e | 2015-10-19 14:19:33 +0100 | [diff] [blame] | 59 | #define NR_FIX_BTMAPS (SZ_256K / PAGE_SIZE) |
Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 60 | #define FIX_BTMAPS_SLOTS 7 |
| 61 | #define TOTAL_FIX_BTMAPS (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS) |
| 62 | |
| 63 | FIX_BTMAP_END = __end_of_permanent_fixed_addresses, |
| 64 | FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1, |
| 65 | __end_of_fixed_addresses |
| 66 | }; |
| 67 | |
| 68 | #define FIXADDR_SIZE (__end_of_permanent_fixed_addresses << PAGE_SHIFT) |
| 69 | #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE) |
| 70 | |
| 71 | #define FIXMAP_PAGE_IO __pgprot(PROT_DEVICE_nGnRE) |
| 72 | |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 73 | void __init early_fixmap_init(void); |
Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 74 | |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 75 | #define __early_set_fixmap __set_fixmap |
| 76 | |
Mark Salter | b2cedba | 2015-03-24 14:02:36 +0000 | [diff] [blame] | 77 | #define __late_set_fixmap __set_fixmap |
| 78 | #define __late_clear_fixmap(idx) __set_fixmap((idx), 0, FIXMAP_PAGE_CLEAR) |
| 79 | |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 80 | extern void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot); |
Mark Salter | bf4b558 | 2014-04-07 15:39:52 -0700 | [diff] [blame] | 81 | |
| 82 | #include <asm-generic/fixmap.h> |
| 83 | |
| 84 | #endif /* !__ASSEMBLY__ */ |
| 85 | #endif /* _ASM_ARM64_FIXMAP_H */ |