blob: 6ee1ff2c1da641be1b5034c868b2ae737ba9bea1 [file] [log] [blame]
Russell King3ff15592006-11-30 13:53:54 +00001#ifdef CONFIG_MMU
2
Nicolas Pitre5f0fbf92008-09-16 13:05:53 -04003/* the upper-most page table pointer */
Russell King1b2e2b72006-08-21 17:06:38 +01004extern pmd_t *top_pmd;
5
6#define TOP_PTE(x) pte_offset_kernel(top_pmd, x)
7
Russell Kingde27c302011-07-02 14:46:27 +01008/*
9 * 0xffff8000 to 0xffffffff is reserved for any ARM architecture
10 * specific hacks for copying pages efficiently, while 0xffff4000
11 * is reserved for VIPT aliasing flushing by generic code.
12 *
13 * Note that we don't allow VIPT aliasing caches with SMP.
14 */
15#define COPYPAGE_MINICACHE 0xffff8000
16#define COPYPAGE_V6_FROM 0xffff8000
17#define COPYPAGE_V6_TO 0xffffc000
18/* PFN alias flushing, for VIPT caches */
19#define FLUSH_ALIAS_START 0xffff4000
20
Russell King1b2e2b72006-08-21 17:06:38 +010021static inline pmd_t *pmd_off_k(unsigned long virt)
22{
Russell Kingcc780af2011-05-26 19:50:30 +010023 return pmd_offset(pud_offset(pgd_offset_k(virt), virt), virt);
Russell King1b2e2b72006-08-21 17:06:38 +010024}
25
Russell Kingb29e9f52007-04-21 10:47:29 +010026struct mem_type {
Russell Kingf6e33542010-11-16 00:22:09 +000027 pteval_t prot_pte;
Catalin Marinas442e70c2011-09-05 17:51:56 +010028 pmdval_t prot_l1;
29 pmdval_t prot_sect;
Russell Kingb29e9f52007-04-21 10:47:29 +010030 unsigned int domain;
31};
32
33const struct mem_type *get_mem_type(unsigned int type);
34
Russell King7b0a1002009-10-24 14:11:59 +010035extern void __flush_dcache_page(struct address_space *mapping, struct page *page);
36
Nicolas Pitre576d2f22011-09-16 01:14:23 -040037/*
38 * ARM specific vm_struct->flags bits.
39 */
40
41/* (super)section-mapped I/O regions used by ioremap()/iounmap() */
42#define VM_ARM_SECTION_MAPPING 0x80000000
43
44/* permanent static mappings from iotable_init() */
45#define VM_ARM_STATIC_MAPPING 0x40000000
46
47/* mapping type (attributes) for permanent static mappings */
48#define VM_ARM_MTYPE(mt) ((mt) << 20)
49#define VM_ARM_MTYPE_MASK (0x1f << 20)
50
Russell King3ff15592006-11-30 13:53:54 +000051#endif
52
Russell King022ae532011-07-08 21:26:59 +010053#ifdef CONFIG_ZONE_DMA
54extern u32 arm_dma_limit;
55#else
56#define arm_dma_limit ((u32)~0)
57#endif
58
Russell King8d717a52010-05-22 19:47:18 +010059void __init bootmem_init(void);
Russell King2778f622010-07-09 16:27:52 +010060void arm_mm_memblock_reserve(void);