4 * Extracted from init.c
6 #include <linux/percpu.h>
7 #include <linux/init.h>
8 #include <linux/string.h>
9 #include <linux/slab.h>
10 #include <linux/cache.h>
13 #include <asm/tlbflush.h>
14 #include <asm/mmu_context.h>
17 void __init paging_init(void)
19 memset(swapper_pg_dir, 0, PAGE_SIZE);
23 * Flush the mmu and reset associated register to default values.
25 void __init init_mmu(void)
27 #if !(XCHAL_HAVE_PTP_MMU && XCHAL_HAVE_SPANNING_WAY)
29 * Writing zeros to the instruction and data TLBCFG special
30 * registers ensure that valid values exist in the register.
32 * For existing PGSZID<w> fields, zero selects the first element
33 * of the page-size array. For nonexistent PGSZID<w> fields,
34 * zero is the best value to write. Also, when changing PGSZID<w>
35 * fields, the corresponding TLB must be flushed.
37 set_itlbcfg_register(0);
38 set_dtlbcfg_register(0);
42 /* Set rasid register to a known value. */
44 set_rasid_register(ASID_INSERT(ASID_USER_FIRST));
46 /* Set PTEVADDR special register to the start of the page
47 * table, which is in kernel mappable space (ie. not
48 * statically mapped). This register's value is undefined on
51 set_ptevaddr_register(PGTABLE_START);
54 struct kmem_cache *pgtable_cache __read_mostly;
56 static void pgd_ctor(void *addr)
58 pte_t *ptep = (pte_t *)addr;
61 for (i = 0; i < 1024; i++, ptep++)
62 pte_clear(NULL, 0, ptep);
66 void __init pgtable_cache_init(void)
68 pgtable_cache = kmem_cache_create("pgd",