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

#include <asm/cputype.h>
#include <asm/pgalloc.h>
#include <asm/pgtable.h>

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

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

R
Russell King 已提交
19 20 21 22 23 24 25 26 27 28 29 30
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);
}

31 32
void identity_mapping_add(pgd_t *pgd, unsigned long addr, unsigned long end)
{
33
	unsigned long prot, next;
34 35 36 37 38

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

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

#ifdef CONFIG_SMP
R
Russell King 已提交
47
static void idmap_del_pmd(pud_t *pud, unsigned long addr, unsigned long end)
48
{
R
Russell King 已提交
49
	pmd_t *pmd = pmd_offset(pud, addr);
50 51 52
	pmd_clear(pmd);
}

R
Russell King 已提交
53 54 55 56 57 58 59 60 61 62 63
static void idmap_del_pud(pgd_t *pgd, unsigned long addr, unsigned long end)
{
	pud_t *pud = pud_offset(pgd, addr);
	unsigned long next;

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

64 65
void identity_mapping_del(pgd_t *pgd, unsigned long addr, unsigned long end)
{
66 67 68 69 70
	unsigned long next;

	pgd += pgd_index(addr);
	do {
		next = pgd_addr_end(addr, end);
R
Russell King 已提交
71
		idmap_del_pud(pgd, addr, next);
72
	} while (pgd++, addr = next, addr != end);
73 74 75 76 77 78 79 80
}
#endif

/*
 * In order to soft-boot, we need to insert a 1:1 mapping in place of
 * the user-mode pages.  This will then ensure that we have predictable
 * results when turning the mmu off
 */
81
void setup_mm_for_reboot(void)
82 83 84 85 86 87 88 89 90
{
	/*
	 * We need to access to user-mode page tables here. For kernel threads
	 * we don't have any user-mode mappings so we use the context that we
	 * "borrowed".
	 */
	identity_mapping_add(current->active_mm->pgd, 0, TASK_SIZE);
	local_flush_tlb_all();
}