Merge tag 'pci-v3.15-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[deliverable/linux.git] / arch / xtensa / mm / mmu.c
CommitLineData
e5083a63
JW
1/*
2 * xtensa mmu stuff
3 *
4 * Extracted from init.c
5 */
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>
11
12#include <asm/tlb.h>
13#include <asm/tlbflush.h>
14#include <asm/mmu_context.h>
15#include <asm/page.h>
6cb97111
BS
16#include <asm/initialize_mmu.h>
17#include <asm/io.h>
e5083a63 18
e5083a63
JW
19void __init paging_init(void)
20{
21 memset(swapper_pg_dir, 0, PAGE_SIZE);
22}
23
24/*
25 * Flush the mmu and reset associated register to default values.
26 */
f615136c 27void init_mmu(void)
e5083a63 28{
e85e335f
MF
29#if !(XCHAL_HAVE_PTP_MMU && XCHAL_HAVE_SPANNING_WAY)
30 /*
31 * Writing zeros to the instruction and data TLBCFG special
32 * registers ensure that valid values exist in the register.
33 *
34 * For existing PGSZID<w> fields, zero selects the first element
35 * of the page-size array. For nonexistent PGSZID<w> fields,
36 * zero is the best value to write. Also, when changing PGSZID<w>
e5083a63
JW
37 * fields, the corresponding TLB must be flushed.
38 */
39 set_itlbcfg_register(0);
40 set_dtlbcfg_register(0);
e85e335f 41#endif
9848e49a 42#if XCHAL_HAVE_PTP_MMU && XCHAL_HAVE_SPANNING_WAY && defined(CONFIG_OF)
6cb97111
BS
43 /*
44 * Update the IO area mapping in case xtensa_kio_paddr has changed
45 */
46 write_dtlb_entry(__pte(xtensa_kio_paddr + CA_WRITEBACK),
47 XCHAL_KIO_CACHED_VADDR + 6);
48 write_itlb_entry(__pte(xtensa_kio_paddr + CA_WRITEBACK),
49 XCHAL_KIO_CACHED_VADDR + 6);
50 write_dtlb_entry(__pte(xtensa_kio_paddr + CA_BYPASS),
51 XCHAL_KIO_BYPASS_VADDR + 6);
52 write_itlb_entry(__pte(xtensa_kio_paddr + CA_BYPASS),
53 XCHAL_KIO_BYPASS_VADDR + 6);
54#endif
55
f615136c 56 local_flush_tlb_all();
e5083a63
JW
57
58 /* Set rasid register to a known value. */
59
ec747b21 60 set_rasid_register(ASID_INSERT(ASID_USER_FIRST));
e5083a63
JW
61
62 /* Set PTEVADDR special register to the start of the page
63 * table, which is in kernel mappable space (ie. not
64 * statically mapped). This register's value is undefined on
65 * reset.
66 */
67 set_ptevaddr_register(PGTABLE_START);
68}
This page took 0.314462 seconds and 5 git commands to generate.