1 /* SPDX-License-Identifier: GPL-2.0 */
3 #include <linux/list.h>
4 #include <linux/vmalloc.h>
6 #include <asm/pgtable.h>
8 /* the upper-most page table pointer */
11 extern int icache_size
;
14 * 0xffff8000 to 0xffffffff is reserved for any ARM architecture
15 * specific hacks for copying pages efficiently, while 0xffff4000
16 * is reserved for VIPT aliasing flushing by generic code.
18 * Note that we don't allow VIPT aliasing caches with SMP.
20 #define COPYPAGE_MINICACHE 0xffff8000
21 #define COPYPAGE_V6_FROM 0xffff8000
22 #define COPYPAGE_V6_TO 0xffffc000
23 /* PFN alias flushing, for VIPT caches */
24 #define FLUSH_ALIAS_START 0xffff4000
26 static inline void set_top_pte(unsigned long va
, pte_t pte
)
28 pte_t
*ptep
= pte_offset_kernel(top_pmd
, va
);
29 set_pte_ext(ptep
, pte
, 0);
30 local_flush_tlb_kernel_page(va
);
33 static inline pte_t
get_top_pte(unsigned long va
)
35 pte_t
*ptep
= pte_offset_kernel(top_pmd
, va
);
39 static inline pmd_t
*pmd_off_k(unsigned long virt
)
41 return pmd_offset(pud_offset(pgd_offset_k(virt
), virt
), virt
);
52 const struct mem_type
*get_mem_type(unsigned int type
);
54 extern void __flush_dcache_page(struct address_space
*mapping
, struct page
*page
);
57 * ARM specific vm_struct->flags bits.
60 /* (super)section-mapped I/O regions used by ioremap()/iounmap() */
61 #define VM_ARM_SECTION_MAPPING 0x80000000
63 /* permanent static mappings from iotable_init() */
64 #define VM_ARM_STATIC_MAPPING 0x40000000
67 #define VM_ARM_EMPTY_MAPPING 0x20000000
69 /* mapping type (attributes) for permanent static mappings */
70 #define VM_ARM_MTYPE(mt) ((mt) << 20)
71 #define VM_ARM_MTYPE_MASK (0x1f << 20)
76 struct list_head list
;
79 extern struct list_head static_vmlist
;
80 extern struct static_vm
*find_static_vm_vaddr(void *vaddr
);
81 extern __init
void add_static_vm_early(struct static_vm
*svm
);
85 #ifdef CONFIG_ZONE_DMA
86 extern phys_addr_t arm_dma_limit
;
87 extern unsigned long arm_dma_pfn_limit
;
89 #define arm_dma_limit ((phys_addr_t)~0)
90 #define arm_dma_pfn_limit (~0ul >> PAGE_SHIFT)
93 extern phys_addr_t arm_lowmem_limit
;
95 void __init
bootmem_init(void);
96 void arm_mm_memblock_reserve(void);
97 void dma_contiguous_remap(void);
99 unsigned long __clear_cr(unsigned long mask
);