idmap.c 2.1 KB
Newer Older
1 2 3
#include <linux/kernel.h>

#include <asm/cputype.h>
4
#include <asm/idmap.h>
5 6
#include <asm/pgalloc.h>
#include <asm/pgtable.h>
7 8 9
#include <asm/sections.h>

pgd_t *idmap_pgd;
10

R
Russell King 已提交
11
static void idmap_add_pmd(pud_t *pud, unsigned long addr, unsigned long end,
12 13
	unsigned long prot)
{
R
Russell King 已提交
14
	pmd_t *pmd = pmd_offset(pud, addr);
15 16 17 18 19 20 21 22

	addr = (addr & PMD_MASK) | prot;
	pmd[0] = __pmd(addr);
	addr += SECTION_SIZE;
	pmd[1] = __pmd(addr);
	flush_pmd_entry(pmd);
}

R
Russell King 已提交
23 24 25 26 27 28 29 30 31 32 33 34
static void idmap_add_pud(pgd_t *pgd, unsigned long addr, unsigned long end,
	unsigned long prot)
{
	pud_t *pud = pud_offset(pgd, addr);
	unsigned long next;

	do {
		next = pud_addr_end(addr, end);
		idmap_add_pmd(pud, addr, next, prot);
	} while (pud++, addr = next, addr != end);
}

35
static void identity_mapping_add(pgd_t *pgd, unsigned long addr, unsigned long end)
36
{
37
	unsigned long prot, next;
38 39 40 41 42

	prot = PMD_TYPE_SECT | PMD_SECT_AP_WRITE;
	if (cpu_architecture() <= CPU_ARCH_ARMv5TEJ && !cpu_is_xscale())
		prot |= PMD_BIT4;

43 44 45
	pgd += pgd_index(addr);
	do {
		next = pgd_addr_end(addr, end);
R
Russell King 已提交
46
		idmap_add_pud(pgd, addr, next, prot);
47
	} while (pgd++, addr = next, addr != end);
48 49
}

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
extern char  __idmap_text_start[], __idmap_text_end[];

static int __init init_static_idmap(void)
{
	phys_addr_t idmap_start, idmap_end;

	idmap_pgd = pgd_alloc(&init_mm);
	if (!idmap_pgd)
		return -ENOMEM;

	/* Add an identity mapping for the physical address of the section. */
	idmap_start = virt_to_phys((void *)__idmap_text_start);
	idmap_end = virt_to_phys((void *)__idmap_text_end);

	pr_info("Setting up static identity map for 0x%llx - 0x%llx\n",
		(long long)idmap_start, (long long)idmap_end);
	identity_mapping_add(idmap_pgd, idmap_start, idmap_end);

	return 0;
}
70
early_initcall(init_static_idmap);
71

72
/*
73 74 75
 * In order to soft-boot, we need to switch to a 1:1 mapping for the
 * cpu_reset functions. This will then ensure that we have predictable
 * results when turning off the mmu.
76
 */
77
void setup_mm_for_reboot(void)
78
{
79 80 81 82 83 84 85
	/* Clean and invalidate L1. */
	flush_cache_all();

	/* Switch to the identity mapping. */
	cpu_switch_mm(idmap_pgd, &init_mm);

	/* Flush the TLB. */
86 87
	local_flush_tlb_all();
}