idmap.c 3.4 KB
Newer Older
C
Christoffer Dall 已提交
1
#include <linux/module.h>
2
#include <linux/kernel.h>
C
Christoffer Dall 已提交
3
#include <linux/slab.h>
4 5

#include <asm/cputype.h>
6
#include <asm/idmap.h>
7 8
#include <asm/pgalloc.h>
#include <asm/pgtable.h>
9
#include <asm/sections.h>
10
#include <asm/system_info.h>
11

12 13 14 15 16
/*
 * Note: accesses outside of the kernel image and the identity map area
 * are not supported on any CPU using the idmap tables as its current
 * page tables.
 */
17
pgd_t *idmap_pgd;
18
long long arch_phys_to_idmap_offset;
19

20 21 22 23 24 25 26 27 28 29
#ifdef CONFIG_ARM_LPAE
static void idmap_add_pmd(pud_t *pud, unsigned long addr, unsigned long end,
	unsigned long prot)
{
	pmd_t *pmd;
	unsigned long next;

	if (pud_none_or_clear_bad(pud) || (pud_val(*pud) & L_PGD_SWAPPER)) {
		pmd = pmd_alloc_one(&init_mm, addr);
		if (!pmd) {
30
			pr_warn("Failed to allocate identity pmd.\n");
31 32
			return;
		}
33 34 35 36 37 38 39
		/*
		 * Copy the original PMD to ensure that the PMD entries for
		 * the kernel image are preserved.
		 */
		if (!pud_none(*pud))
			memcpy(pmd, pmd_offset(pud, 0),
			       PTRS_PER_PMD * sizeof(pmd_t));
40 41 42 43 44 45 46 47 48 49 50 51
		pud_populate(&init_mm, pud, pmd);
		pmd += pmd_index(addr);
	} else
		pmd = pmd_offset(pud, addr);

	do {
		next = pmd_addr_end(addr, end);
		*pmd = __pmd((addr & PMD_MASK) | prot);
		flush_pmd_entry(pmd);
	} while (pmd++, addr = next, addr != end);
}
#else	/* !CONFIG_ARM_LPAE */
R
Russell King 已提交
52
static void idmap_add_pmd(pud_t *pud, unsigned long addr, unsigned long end,
53 54
	unsigned long prot)
{
R
Russell King 已提交
55
	pmd_t *pmd = pmd_offset(pud, addr);
56 57 58 59 60 61 62

	addr = (addr & PMD_MASK) | prot;
	pmd[0] = __pmd(addr);
	addr += SECTION_SIZE;
	pmd[1] = __pmd(addr);
	flush_pmd_entry(pmd);
}
63
#endif	/* CONFIG_ARM_LPAE */
64

R
Russell King 已提交
65 66 67 68 69 70 71 72 73 74 75 76
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);
}

C
Christoffer Dall 已提交
77 78
static void identity_mapping_add(pgd_t *pgd, const char *text_start,
				 const char *text_end, unsigned long prot)
79
{
C
Christoffer Dall 已提交
80 81 82
	unsigned long addr, end;
	unsigned long next;

83 84
	addr = virt_to_idmap(text_start);
	end = virt_to_idmap(text_end);
85
	pr_info("Setting up static identity map for 0x%lx - 0x%lx\n", addr, end);
C
Christoffer Dall 已提交
86 87

	prot |= PMD_TYPE_SECT | PMD_SECT_AP_WRITE | PMD_SECT_AF;
88

89
	if (cpu_architecture() <= CPU_ARCH_ARMv5TEJ && !cpu_is_xscale_family())
90 91
		prot |= PMD_BIT4;

92 93 94
	pgd += pgd_index(addr);
	do {
		next = pgd_addr_end(addr, end);
R
Russell King 已提交
95
		idmap_add_pud(pgd, addr, next, prot);
96
	} while (pgd++, addr = next, addr != end);
97 98
}

99 100 101 102 103 104 105 106
extern char  __idmap_text_start[], __idmap_text_end[];

static int __init init_static_idmap(void)
{
	idmap_pgd = pgd_alloc(&init_mm);
	if (!idmap_pgd)
		return -ENOMEM;

C
Christoffer Dall 已提交
107 108
	identity_mapping_add(idmap_pgd, __idmap_text_start,
			     __idmap_text_end, 0);
109

110 111 112
	/* Flush L1 for the hardware to see this page table content */
	flush_cache_louis();

113
	return 0;
114
}
115
early_initcall(init_static_idmap);
116

117
/*
118 119 120
 * 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.
121
 */
122
void setup_mm_for_reboot(void)
123
{
124 125
	/* Switch to the identity mapping. */
	cpu_switch_mm(idmap_pgd, &init_mm);
126
	local_flush_bp_all();
127

128 129 130 131 132 133
#ifdef CONFIG_CPU_HAS_ASID
	/*
	 * We don't have a clean ASID for the identity mapping, which
	 * may clash with virtual addresses of the previous page tables
	 * and therefore potentially in the TLB.
	 */
134
	local_flush_tlb_all();
135
#endif
136
}