fixmap.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. *
  11. * Adapted from arch/x86 version.
  12. *
  13. */
  14. #ifndef _ASM_ARM64_FIXMAP_H
  15. #define _ASM_ARM64_FIXMAP_H
  16. #ifndef __ASSEMBLER__
  17. #include <linux/kernel.h>
  18. #include <linux/math.h>
  19. #include <linux/sizes.h>
  20. #include <asm/boot.h>
  21. #include <asm/page.h>
  22. #include <asm/pgtable-prot.h>
  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. * Each enum increment in these 'compile-time allocated'
  30. * memory buffers is page-sized. Use set_fixmap(idx,phys)
  31. * to associate physical memory with a fixmap index.
  32. */
  33. enum fixed_addresses {
  34. FIX_HOLE,
  35. /*
  36. * Reserve a virtual window for the FDT that is a page bigger than the
  37. * maximum supported size. The additional space ensures that any FDT
  38. * that does not exceed MAX_FDT_SIZE can be mapped regardless of
  39. * whether it crosses any page boundary.
  40. */
  41. FIX_FDT_END,
  42. FIX_FDT = FIX_FDT_END + DIV_ROUND_UP(MAX_FDT_SIZE, PAGE_SIZE) + 1,
  43. FIX_EARLYCON_MEM_BASE,
  44. FIX_TEXT_POKE0,
  45. #ifdef CONFIG_KVM
  46. /* One slot per CPU, mapping the guest's VNCR page at EL2. */
  47. FIX_VNCR_END,
  48. FIX_VNCR = FIX_VNCR_END + NR_CPUS,
  49. #endif
  50. #ifdef CONFIG_ACPI_APEI_GHES
  51. /* Used for GHES mapping from assorted contexts */
  52. FIX_APEI_GHES_IRQ,
  53. FIX_APEI_GHES_SEA,
  54. #ifdef CONFIG_ARM_SDE_INTERFACE
  55. FIX_APEI_GHES_SDEI_NORMAL,
  56. FIX_APEI_GHES_SDEI_CRITICAL,
  57. #endif
  58. #endif /* CONFIG_ACPI_APEI_GHES */
  59. #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
  60. #ifdef CONFIG_RELOCATABLE
  61. FIX_ENTRY_TRAMP_TEXT4, /* one extra slot for the data page */
  62. #endif
  63. FIX_ENTRY_TRAMP_TEXT3,
  64. FIX_ENTRY_TRAMP_TEXT2,
  65. FIX_ENTRY_TRAMP_TEXT1,
  66. #define TRAMP_VALIAS (__fix_to_virt(FIX_ENTRY_TRAMP_TEXT1))
  67. #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
  68. __end_of_permanent_fixed_addresses,
  69. /*
  70. * Temporary boot-time mappings, used by early_ioremap(),
  71. * before ioremap() is functional.
  72. */
  73. #define NR_FIX_BTMAPS (SZ_256K / PAGE_SIZE)
  74. #define FIX_BTMAPS_SLOTS 7
  75. #define TOTAL_FIX_BTMAPS (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS)
  76. FIX_BTMAP_END = __end_of_permanent_fixed_addresses,
  77. FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1,
  78. /*
  79. * Used for kernel page table creation, so unmapped memory may be used
  80. * for tables.
  81. */
  82. FIX_PTE,
  83. FIX_PMD,
  84. FIX_PUD,
  85. FIX_P4D,
  86. FIX_PGD,
  87. __end_of_fixed_addresses
  88. };
  89. #define FIXADDR_SIZE (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
  90. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  91. #define FIXADDR_TOT_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
  92. #define FIXADDR_TOT_START (FIXADDR_TOP - FIXADDR_TOT_SIZE)
  93. #define FIXMAP_PAGE_IO __pgprot(PROT_DEVICE_nGnRE)
  94. void __init early_fixmap_init(void);
  95. #define __early_set_fixmap __set_fixmap
  96. #define __late_set_fixmap __set_fixmap
  97. #define __late_clear_fixmap(idx) __set_fixmap((idx), 0, FIXMAP_PAGE_CLEAR)
  98. extern void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot);
  99. #include <asm-generic/fixmap.h>
  100. #endif /* !__ASSEMBLER__ */
  101. #endif /* _ASM_ARM64_FIXMAP_H */