mm.h 1.0 KB
Newer Older
R
Russell King 已提交
1 2
#ifdef CONFIG_MMU

N
Nicolas Pitre 已提交
3
/* the upper-most page table pointer */
4 5 6 7 8 9
extern pmd_t *top_pmd;

#define TOP_PTE(x)	pte_offset_kernel(top_pmd, x)

static inline pmd_t *pmd_off_k(unsigned long virt)
{
R
Russell King 已提交
10
	return pmd_offset(pud_offset(pgd_offset_k(virt), virt), virt);
11 12
}

13
struct mem_type {
14
	pteval_t prot_pte;
15 16
	pmdval_t prot_l1;
	pmdval_t prot_sect;
17 18 19 20 21
	unsigned int domain;
};

const struct mem_type *get_mem_type(unsigned int type);

22 23
extern void __flush_dcache_page(struct address_space *mapping, struct page *page);

24 25 26 27 28 29 30 31 32 33 34 35 36 37
/*
 * ARM specific vm_struct->flags bits.
 */

/* (super)section-mapped I/O regions used by ioremap()/iounmap() */
#define VM_ARM_SECTION_MAPPING	0x80000000

/* permanent static mappings from iotable_init() */
#define VM_ARM_STATIC_MAPPING	0x40000000

/* mapping type (attributes) for permanent static mappings */
#define VM_ARM_MTYPE(mt)		((mt) << 20)
#define VM_ARM_MTYPE_MASK	(0x1f << 20)

R
Russell King 已提交
38 39
#endif

40 41 42 43 44 45
#ifdef CONFIG_ZONE_DMA
extern u32 arm_dma_limit;
#else
#define arm_dma_limit ((u32)~0)
#endif

46
void __init bootmem_init(void);
R
Russell King 已提交
47
void arm_mm_memblock_reserve(void);