fixmap.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. /*
  22. * Here we define all the compile-time 'special' virtual
  23. * addresses. The point is to have a constant address at
  24. * compile time, but to set the physical address only
  25. * in the boot process.
  26. *
  27. * These 'compile-time allocated' memory buffers are
  28. * page-sized. Use set_fixmap(idx,phys) to associate
  29. * physical memory with fixmap indices.
  30. *
  31. */
  32. enum fixed_addresses {
  33. FIX_HOLE,
  34. /*
  35. * Reserve a virtual window for the FDT that is 2 MB larger than the
  36. * maximum supported size, and put it at the top of the fixmap region.
  37. * The additional space ensures that any FDT that does not exceed
  38. * MAX_FDT_SIZE can be mapped regardless of whether it crosses any
  39. * 2 MB alignment boundaries.
  40. *
  41. * Keep this at the top so it remains 2 MB aligned.
  42. */
  43. #define FIX_FDT_SIZE (MAX_FDT_SIZE + SZ_2M)
  44. FIX_FDT_END,
  45. FIX_FDT = FIX_FDT_END + FIX_FDT_SIZE / PAGE_SIZE - 1,
  46. FIX_EARLYCON_MEM_BASE,
  47. FIX_TEXT_POKE0,
  48. __end_of_permanent_fixed_addresses,
  49. /*
  50. * Temporary boot-time mappings, used by early_ioremap(),
  51. * before ioremap() is functional.
  52. */
  53. #define NR_FIX_BTMAPS (SZ_256K / PAGE_SIZE)
  54. #define FIX_BTMAPS_SLOTS 7
  55. #define TOTAL_FIX_BTMAPS (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS)
  56. FIX_BTMAP_END = __end_of_permanent_fixed_addresses,
  57. FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1,
  58. __end_of_fixed_addresses
  59. };
  60. #define FIXADDR_SIZE (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
  61. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  62. #define FIXMAP_PAGE_IO __pgprot(PROT_DEVICE_nGnRE)
  63. void __init early_fixmap_init(void);
  64. #define __early_set_fixmap __set_fixmap
  65. #define __late_set_fixmap __set_fixmap
  66. #define __late_clear_fixmap(idx) __set_fixmap((idx), 0, FIXMAP_PAGE_CLEAR)
  67. extern void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot);
  68. #include <asm-generic/fixmap.h>
  69. #endif /* !__ASSEMBLY__ */
  70. #endif /* _ASM_ARM64_FIXMAP_H */