ae8f154129
If we're going to have mmu.c for code which is specific to the MMU machines, we might as well move the other MMU initialisation specific code from mm-armv.c into this new file. This also allows us to make some functions static. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
23 lines
510 B
C
23 lines
510 B
C
/* the upper-most page table pointer */
|
|
extern pmd_t *top_pmd;
|
|
|
|
#define TOP_PTE(x) pte_offset_kernel(top_pmd, x)
|
|
|
|
static inline pmd_t *pmd_off(pgd_t *pgd, unsigned long virt)
|
|
{
|
|
return pmd_offset(pgd, virt);
|
|
}
|
|
|
|
static inline pmd_t *pmd_off_k(unsigned long virt)
|
|
{
|
|
return pmd_off(pgd_offset_k(virt), virt);
|
|
}
|
|
|
|
struct map_desc;
|
|
struct meminfo;
|
|
struct pglist_data;
|
|
|
|
void __init create_mapping(struct map_desc *md);
|
|
void __init bootmem_init(struct meminfo *mi);
|
|
void reserve_node_zero(struct pglist_data *pgdat);
|