blob: 660f1bc68f998350df44d4d2c1b37a99a5b6a919 [file] [log] [blame]
Russell King614dd052010-11-21 11:41:57 +00001#include <linux/kernel.h>
2
3#include <asm/cputype.h>
Will Deacon89038262011-09-30 11:43:29 +01004#include <asm/idmap.h>
Russell King614dd052010-11-21 11:41:57 +00005#include <asm/pgalloc.h>
6#include <asm/pgtable.h>
Will Deacon89038262011-09-30 11:43:29 +01007#include <asm/sections.h>
8
9pgd_t *idmap_pgd;
Russell King614dd052010-11-21 11:41:57 +000010
Russell King516295e2010-11-21 16:27:49 +000011static void idmap_add_pmd(pud_t *pud, unsigned long addr, unsigned long end,
Russell Kingaf3813d2010-11-21 11:48:16 +000012 unsigned long prot)
13{
Russell King516295e2010-11-21 16:27:49 +000014 pmd_t *pmd = pmd_offset(pud, addr);
Russell Kingaf3813d2010-11-21 11:48:16 +000015
16 addr = (addr & PMD_MASK) | prot;
17 pmd[0] = __pmd(addr);
18 addr += SECTION_SIZE;
19 pmd[1] = __pmd(addr);
20 flush_pmd_entry(pmd);
21}
22
Russell King516295e2010-11-21 16:27:49 +000023static void idmap_add_pud(pgd_t *pgd, unsigned long addr, unsigned long end,
24 unsigned long prot)
25{
26 pud_t *pud = pud_offset(pgd, addr);
27 unsigned long next;
28
29 do {
30 next = pud_addr_end(addr, end);
31 idmap_add_pmd(pud, addr, next, prot);
32 } while (pud++, addr = next, addr != end);
33}
34
Will Deacon4e8ee7d2011-11-23 12:26:25 +000035static void identity_mapping_add(pgd_t *pgd, unsigned long addr, unsigned long end)
Russell King614dd052010-11-21 11:41:57 +000036{
Russell Kingaf3813d2010-11-21 11:48:16 +000037 unsigned long prot, next;
Russell King614dd052010-11-21 11:41:57 +000038
39 prot = PMD_TYPE_SECT | PMD_SECT_AP_WRITE;
40 if (cpu_architecture() <= CPU_ARCH_ARMv5TEJ && !cpu_is_xscale())
41 prot |= PMD_BIT4;
42
Russell Kingaf3813d2010-11-21 11:48:16 +000043 pgd += pgd_index(addr);
44 do {
45 next = pgd_addr_end(addr, end);
Russell King516295e2010-11-21 16:27:49 +000046 idmap_add_pud(pgd, addr, next, prot);
Russell Kingaf3813d2010-11-21 11:48:16 +000047 } while (pgd++, addr = next, addr != end);
Russell King614dd052010-11-21 11:41:57 +000048}
49
Will Deacon89038262011-09-30 11:43:29 +010050extern char __idmap_text_start[], __idmap_text_end[];
51
52static int __init init_static_idmap(void)
53{
54 phys_addr_t idmap_start, idmap_end;
55
56 idmap_pgd = pgd_alloc(&init_mm);
57 if (!idmap_pgd)
58 return -ENOMEM;
59
60 /* Add an identity mapping for the physical address of the section. */
61 idmap_start = virt_to_phys((void *)__idmap_text_start);
62 idmap_end = virt_to_phys((void *)__idmap_text_end);
63
64 pr_info("Setting up static identity map for 0x%llx - 0x%llx\n",
65 (long long)idmap_start, (long long)idmap_end);
66 identity_mapping_add(idmap_pgd, idmap_start, idmap_end);
67
68 return 0;
69}
Will Deacon4e8ee7d2011-11-23 12:26:25 +000070early_initcall(init_static_idmap);
Will Deacon89038262011-09-30 11:43:29 +010071
Russell King614dd052010-11-21 11:41:57 +000072/*
Will Deacon2c8951a2011-06-08 15:53:34 +010073 * In order to soft-boot, we need to switch to a 1:1 mapping for the
74 * cpu_reset functions. This will then ensure that we have predictable
75 * results when turning off the mmu.
Russell King614dd052010-11-21 11:41:57 +000076 */
Russell King5aafec12011-11-01 10:15:27 +000077void setup_mm_for_reboot(void)
Russell King614dd052010-11-21 11:41:57 +000078{
Will Deacon2c8951a2011-06-08 15:53:34 +010079 /* Clean and invalidate L1. */
80 flush_cache_all();
81
82 /* Switch to the identity mapping. */
83 cpu_switch_mm(idmap_pgd, &init_mm);
84
85 /* Flush the TLB. */
Russell King614dd052010-11-21 11:41:57 +000086 local_flush_tlb_all();
87}