memory.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. /*
  2. * Based on arch/arm/include/asm/memory.h
  3. *
  4. * Copyright (C) 2000-2002 Russell King
  5. * Copyright (C) 2012 ARM Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. * Note: this file should not be included by non-asm/.h files
  20. */
  21. #ifndef __ASM_MEMORY_H
  22. #define __ASM_MEMORY_H
  23. #include <linux/compiler.h>
  24. #include <linux/const.h>
  25. #include <linux/types.h>
  26. #include <asm/bug.h>
  27. #include <asm/page-def.h>
  28. #include <asm/sizes.h>
  29. /*
  30. * Size of the PCI I/O space. This must remain a power of two so that
  31. * IO_SPACE_LIMIT acts as a mask for the low bits of I/O addresses.
  32. */
  33. #define PCI_IO_SIZE SZ_16M
  34. /*
  35. * Log2 of the upper bound of the size of a struct page. Used for sizing
  36. * the vmemmap region only, does not affect actual memory footprint.
  37. * We don't use sizeof(struct page) directly since taking its size here
  38. * requires its definition to be available at this point in the inclusion
  39. * chain, and it may not be a power of 2 in the first place.
  40. */
  41. #define STRUCT_PAGE_MAX_SHIFT 6
  42. /*
  43. * VMEMMAP_SIZE - allows the whole linear region to be covered by
  44. * a struct page array
  45. */
  46. #define VMEMMAP_SIZE (UL(1) << (VA_BITS - PAGE_SHIFT - 1 + STRUCT_PAGE_MAX_SHIFT))
  47. /*
  48. * PAGE_OFFSET - the virtual address of the start of the linear map (top
  49. * (VA_BITS - 1))
  50. * KIMAGE_VADDR - the virtual address of the start of the kernel image
  51. * VA_BITS - the maximum number of bits for virtual addresses.
  52. * VA_START - the first kernel virtual address.
  53. */
  54. #define VA_BITS (CONFIG_ARM64_VA_BITS)
  55. #define VA_START (UL(0xffffffffffffffff) - \
  56. (UL(1) << VA_BITS) + 1)
  57. #define PAGE_OFFSET (UL(0xffffffffffffffff) - \
  58. (UL(1) << (VA_BITS - 1)) + 1)
  59. #define KIMAGE_VADDR (MODULES_END)
  60. #define MODULES_END (MODULES_VADDR + MODULES_VSIZE)
  61. #define MODULES_VADDR (VA_START + KASAN_SHADOW_SIZE)
  62. #define MODULES_VSIZE (SZ_128M)
  63. #define VMEMMAP_START (PAGE_OFFSET - VMEMMAP_SIZE)
  64. #define PCI_IO_END (VMEMMAP_START - SZ_2M)
  65. #define PCI_IO_START (PCI_IO_END - PCI_IO_SIZE)
  66. #define FIXADDR_TOP (PCI_IO_START - SZ_2M)
  67. #define KERNEL_START _text
  68. #define KERNEL_END _end
  69. /*
  70. * KASAN requires 1/8th of the kernel virtual address space for the shadow
  71. * region. KASAN can bloat the stack significantly, so double the (minimum)
  72. * stack size when KASAN is in use.
  73. */
  74. #ifdef CONFIG_KASAN
  75. #define KASAN_SHADOW_SCALE_SHIFT 3
  76. #define KASAN_SHADOW_SIZE (UL(1) << (VA_BITS - KASAN_SHADOW_SCALE_SHIFT))
  77. #define KASAN_THREAD_SHIFT 1
  78. #else
  79. #define KASAN_SHADOW_SIZE (0)
  80. #define KASAN_THREAD_SHIFT 0
  81. #endif
  82. #define MIN_THREAD_SHIFT (14 + KASAN_THREAD_SHIFT)
  83. /*
  84. * VMAP'd stacks are allocated at page granularity, so we must ensure that such
  85. * stacks are a multiple of page size.
  86. */
  87. #if defined(CONFIG_VMAP_STACK) && (MIN_THREAD_SHIFT < PAGE_SHIFT)
  88. #define THREAD_SHIFT PAGE_SHIFT
  89. #else
  90. #define THREAD_SHIFT MIN_THREAD_SHIFT
  91. #endif
  92. #if THREAD_SHIFT >= PAGE_SHIFT
  93. #define THREAD_SIZE_ORDER (THREAD_SHIFT - PAGE_SHIFT)
  94. #endif
  95. #define THREAD_SIZE (UL(1) << THREAD_SHIFT)
  96. /*
  97. * By aligning VMAP'd stacks to 2 * THREAD_SIZE, we can detect overflow by
  98. * checking sp & (1 << THREAD_SHIFT), which we can do cheaply in the entry
  99. * assembly.
  100. */
  101. #ifdef CONFIG_VMAP_STACK
  102. #define THREAD_ALIGN (2 * THREAD_SIZE)
  103. #else
  104. #define THREAD_ALIGN THREAD_SIZE
  105. #endif
  106. #define IRQ_STACK_SIZE THREAD_SIZE
  107. #define OVERFLOW_STACK_SIZE SZ_4K
  108. /*
  109. * Alignment of kernel segments (e.g. .text, .data).
  110. */
  111. #if defined(CONFIG_DEBUG_ALIGN_RODATA)
  112. /*
  113. * 4 KB granule: 1 level 2 entry
  114. * 16 KB granule: 128 level 3 entries, with contiguous bit
  115. * 64 KB granule: 32 level 3 entries, with contiguous bit
  116. */
  117. #define SEGMENT_ALIGN SZ_2M
  118. #else
  119. /*
  120. * 4 KB granule: 16 level 3 entries, with contiguous bit
  121. * 16 KB granule: 4 level 3 entries, without contiguous bit
  122. * 64 KB granule: 1 level 3 entry
  123. */
  124. #define SEGMENT_ALIGN SZ_64K
  125. #endif
  126. /*
  127. * Memory types available.
  128. */
  129. #define MT_DEVICE_nGnRnE 0
  130. #define MT_DEVICE_nGnRE 1
  131. #define MT_DEVICE_GRE 2
  132. #define MT_NORMAL_NC 3
  133. #define MT_NORMAL 4
  134. #define MT_NORMAL_WT 5
  135. /*
  136. * Memory types for Stage-2 translation
  137. */
  138. #define MT_S2_NORMAL 0xf
  139. #define MT_S2_DEVICE_nGnRE 0x1
  140. /*
  141. * Memory types for Stage-2 translation when ID_AA64MMFR2_EL1.FWB is 0001
  142. * Stage-2 enforces Normal-WB and Device-nGnRE
  143. */
  144. #define MT_S2_FWB_NORMAL 6
  145. #define MT_S2_FWB_DEVICE_nGnRE 1
  146. #ifdef CONFIG_ARM64_4K_PAGES
  147. #define IOREMAP_MAX_ORDER (PUD_SHIFT)
  148. #else
  149. #define IOREMAP_MAX_ORDER (PMD_SHIFT)
  150. #endif
  151. #ifdef CONFIG_BLK_DEV_INITRD
  152. #define __early_init_dt_declare_initrd(__start, __end) \
  153. do { \
  154. initrd_start = (__start); \
  155. initrd_end = (__end); \
  156. } while (0)
  157. #endif
  158. #ifndef __ASSEMBLY__
  159. #include <linux/bitops.h>
  160. #include <linux/mmdebug.h>
  161. extern s64 memstart_addr;
  162. /* PHYS_OFFSET - the physical address of the start of memory. */
  163. #define PHYS_OFFSET ({ VM_BUG_ON(memstart_addr & 1); memstart_addr; })
  164. /* the virtual base of the kernel image (minus TEXT_OFFSET) */
  165. extern u64 kimage_vaddr;
  166. /* the offset between the kernel virtual and physical mappings */
  167. extern u64 kimage_voffset;
  168. static inline unsigned long kaslr_offset(void)
  169. {
  170. return kimage_vaddr - KIMAGE_VADDR;
  171. }
  172. /*
  173. * Allow all memory at the discovery stage. We will clip it later.
  174. */
  175. #define MIN_MEMBLOCK_ADDR 0
  176. #define MAX_MEMBLOCK_ADDR U64_MAX
  177. /*
  178. * PFNs are used to describe any physical page; this means
  179. * PFN 0 == physical address 0.
  180. *
  181. * This is the PFN of the first RAM page in the kernel
  182. * direct-mapped view. We assume this is the first page
  183. * of RAM in the mem_map as well.
  184. */
  185. #define PHYS_PFN_OFFSET (PHYS_OFFSET >> PAGE_SHIFT)
  186. /*
  187. * Physical vs virtual RAM address space conversion. These are
  188. * private definitions which should NOT be used outside memory.h
  189. * files. Use virt_to_phys/phys_to_virt/__pa/__va instead.
  190. */
  191. /*
  192. * The linear kernel range starts in the middle of the virtual adddress
  193. * space. Testing the top bit for the start of the region is a
  194. * sufficient check.
  195. */
  196. #define __is_lm_address(addr) (!!((addr) & BIT(VA_BITS - 1)))
  197. #define __lm_to_phys(addr) (((addr) & ~PAGE_OFFSET) + PHYS_OFFSET)
  198. #define __kimg_to_phys(addr) ((addr) - kimage_voffset)
  199. #define __virt_to_phys_nodebug(x) ({ \
  200. phys_addr_t __x = (phys_addr_t)(x); \
  201. __is_lm_address(__x) ? __lm_to_phys(__x) : \
  202. __kimg_to_phys(__x); \
  203. })
  204. #define __pa_symbol_nodebug(x) __kimg_to_phys((phys_addr_t)(x))
  205. #ifdef CONFIG_DEBUG_VIRTUAL
  206. extern phys_addr_t __virt_to_phys(unsigned long x);
  207. extern phys_addr_t __phys_addr_symbol(unsigned long x);
  208. #else
  209. #define __virt_to_phys(x) __virt_to_phys_nodebug(x)
  210. #define __phys_addr_symbol(x) __pa_symbol_nodebug(x)
  211. #endif
  212. #define __phys_to_virt(x) ((unsigned long)((x) - PHYS_OFFSET) | PAGE_OFFSET)
  213. #define __phys_to_kimg(x) ((unsigned long)((x) + kimage_voffset))
  214. /*
  215. * Convert a page to/from a physical address
  216. */
  217. #define page_to_phys(page) (__pfn_to_phys(page_to_pfn(page)))
  218. #define phys_to_page(phys) (pfn_to_page(__phys_to_pfn(phys)))
  219. /*
  220. * Note: Drivers should NOT use these. They are the wrong
  221. * translation for translating DMA addresses. Use the driver
  222. * DMA support - see dma-mapping.h.
  223. */
  224. #define virt_to_phys virt_to_phys
  225. static inline phys_addr_t virt_to_phys(const volatile void *x)
  226. {
  227. return __virt_to_phys((unsigned long)(x));
  228. }
  229. #define phys_to_virt phys_to_virt
  230. static inline void *phys_to_virt(phys_addr_t x)
  231. {
  232. return (void *)(__phys_to_virt(x));
  233. }
  234. /*
  235. * Drivers should NOT use these either.
  236. */
  237. #define __pa(x) __virt_to_phys((unsigned long)(x))
  238. #define __pa_symbol(x) __phys_addr_symbol(RELOC_HIDE((unsigned long)(x), 0))
  239. #define __pa_nodebug(x) __virt_to_phys_nodebug((unsigned long)(x))
  240. #define __va(x) ((void *)__phys_to_virt((phys_addr_t)(x)))
  241. #define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
  242. #define virt_to_pfn(x) __phys_to_pfn(__virt_to_phys((unsigned long)(x)))
  243. #define sym_to_pfn(x) __phys_to_pfn(__pa_symbol(x))
  244. /*
  245. * virt_to_page(k) convert a _valid_ virtual address to struct page *
  246. * virt_addr_valid(k) indicates whether a virtual address is valid
  247. */
  248. #define ARCH_PFN_OFFSET ((unsigned long)PHYS_PFN_OFFSET)
  249. #ifndef CONFIG_SPARSEMEM_VMEMMAP
  250. #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
  251. #define _virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT)
  252. #else
  253. #define __virt_to_pgoff(kaddr) (((u64)(kaddr) & ~PAGE_OFFSET) / PAGE_SIZE * sizeof(struct page))
  254. #define __page_to_voff(kaddr) (((u64)(kaddr) & ~VMEMMAP_START) * PAGE_SIZE / sizeof(struct page))
  255. #define page_to_virt(page) ((void *)((__page_to_voff(page)) | PAGE_OFFSET))
  256. #define virt_to_page(vaddr) ((struct page *)((__virt_to_pgoff(vaddr)) | VMEMMAP_START))
  257. #define _virt_addr_valid(kaddr) pfn_valid((((u64)(kaddr) & ~PAGE_OFFSET) \
  258. + PHYS_OFFSET) >> PAGE_SHIFT)
  259. #endif
  260. #endif
  261. #define _virt_addr_is_linear(kaddr) (((u64)(kaddr)) >= PAGE_OFFSET)
  262. #define virt_addr_valid(kaddr) (_virt_addr_is_linear(kaddr) && \
  263. _virt_addr_valid(kaddr))
  264. #include <asm-generic/memory_model.h>
  265. #endif