fixmap.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 __ASSEMBLY__
  17. #include <linux/kernel.h>
  18. #include <linux/sizes.h>
  19. #include <asm/boot.h>
  20. #include <asm/page.h>
  21. #include <asm/pgtable-prot.h>
  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. */
  33. enum fixed_addresses {
  34. FIX_HOLE,
  35. /*
  36. * Reserve a virtual window for the FDT that is 2 MB larger than the
  37. * maximum supported size, and put it at the top of the fixmap region.
  38. * The additional space ensures that any FDT that does not exceed
  39. * MAX_FDT_SIZE can be mapped regardless of whether it crosses any
  40. * 2 MB alignment boundaries.
  41. *
  42. * Keep this at the top so it remains 2 MB aligned.
  43. */
  44. #define FIX_FDT_SIZE (MAX_FDT_SIZE + SZ_2M)
  45. FIX_FDT_END,
  46. FIX_FDT = FIX_FDT_END + FIX_FDT_SIZE / PAGE_SIZE - 1,
  47. FIX_EARLYCON_MEM_BASE,
  48. FIX_TEXT_POKE0,
  49. #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
  50. FIX_ENTRY_TRAMP_DATA,
  51. FIX_ENTRY_TRAMP_TEXT,
  52. #define TRAMP_VALIAS (__fix_to_virt(FIX_ENTRY_TRAMP_TEXT))
  53. #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
  54. __end_of_permanent_fixed_addresses,
  55. /*
  56. * Temporary boot-time mappings, used by early_ioremap(),
  57. * before ioremap() is functional.
  58. */
  59. #define NR_FIX_BTMAPS (SZ_256K / PAGE_SIZE)
  60. #define FIX_BTMAPS_SLOTS 7
  61. #define TOTAL_FIX_BTMAPS (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS)
  62. FIX_BTMAP_END = __end_of_permanent_fixed_addresses,
  63. FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1,
  64. /*
  65. * Used for kernel page table creation, so unmapped memory may be used
  66. * for tables.
  67. */
  68. FIX_PTE,
  69. FIX_PMD,
  70. FIX_PUD,
  71. FIX_PGD,
  72. __end_of_fixed_addresses
  73. };
  74. #define FIXADDR_SIZE (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
  75. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  76. #define FIXMAP_PAGE_IO __pgprot(PROT_DEVICE_nGnRE)
  77. void __init early_fixmap_init(void);
  78. #define __early_set_fixmap __set_fixmap
  79. #define __late_set_fixmap __set_fixmap
  80. #define __late_clear_fixmap(idx) __set_fixmap((idx), 0, FIXMAP_PAGE_CLEAR)
  81. extern void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot);
  82. #include <asm-generic/fixmap.h>
  83. #endif /* !__ASSEMBLY__ */
  84. #endif /* _ASM_ARM64_FIXMAP_H */