Release 4.11 arch/arm/mm/idmap.c
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/mm_types.h>
#include <asm/cputype.h>
#include <asm/idmap.h>
#include <asm/pgalloc.h>
#include <asm/pgtable.h>
#include <asm/sections.h>
#include <asm/system_info.h>
/*
* 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.
*/
pgd_t *idmap_pgd;
long long arch_phys_to_idmap_offset;
#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) {
pr_warn("Failed to allocate identity pmd.\n");
return;
}
/*
* 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));
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);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Catalin Marinas | 143 | 82.66% | 1 | 33.33% |
Konstantin Khlebnikov | 29 | 16.76% | 1 | 33.33% |
Joe Perches | 1 | 0.58% | 1 | 33.33% |
Total | 173 | 100.00% | 3 | 100.00% |
#else /* !CONFIG_ARM_LPAE */
static void idmap_add_pmd(pud_t *pud, unsigned long addr, unsigned long end,
unsigned long prot)
{
pmd_t *pmd = pmd_offset(pud, addr);
addr = (addr & PMD_MASK) | prot;
pmd[0] = __pmd(addr);
addr += SECTION_SIZE;
pmd[1] = __pmd(addr);
flush_pmd_entry(pmd);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 72 | 100.00% | 3 | 100.00% |
Total | 72 | 100.00% | 3 | 100.00% |
#endif /* CONFIG_ARM_LPAE */
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);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 74 | 100.00% | 1 | 100.00% |
Total | 74 | 100.00% | 1 | 100.00% |
static void identity_mapping_add(pgd_t *pgd, const char *text_start,
const char *text_end, unsigned long prot)
{
unsigned long addr, end;
unsigned long next;
addr = virt_to_idmap(text_start);
end = virt_to_idmap(text_end);
pr_info("Setting up static identity map for 0x%lx - 0x%lx\n", addr, end);
prot |= PMD_TYPE_SECT | PMD_SECT_AP_WRITE | PMD_SECT_AF;
if (cpu_architecture() <= CPU_ARCH_ARMv5TEJ && !cpu_is_xscale_family())
prot |= PMD_BIT4;
pgd += pgd_index(addr);
do {
next = pgd_addr_end(addr, end);
idmap_add_pud(pgd, addr, next, prot);
} while (pgd++, addr = next, addr != end);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 81 | 65.32% | 3 | 33.33% |
Christoffer Dall | 28 | 22.58% | 1 | 11.11% |
Santosh Shilimkar | 11 | 8.87% | 2 | 22.22% |
Catalin Marinas | 2 | 1.61% | 1 | 11.11% |
Arnd Bergmann | 1 | 0.81% | 1 | 11.11% |
Will Deacon | 1 | 0.81% | 1 | 11.11% |
Total | 124 | 100.00% | 9 | 100.00% |
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;
identity_mapping_add(idmap_pgd, __idmap_text_start,
__idmap_text_end, 0);
/* Flush L1 for the hardware to see this page table content */
flush_cache_louis();
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Will Deacon | 35 | 79.55% | 1 | 25.00% |
Nico Pitre | 4 | 9.09% | 1 | 25.00% |
Christoffer Dall | 4 | 9.09% | 1 | 25.00% |
Marc Zyngier | 1 | 2.27% | 1 | 25.00% |
Total | 44 | 100.00% | 4 | 100.00% |
early_initcall(init_static_idmap);
/*
* 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.
*/
void setup_mm_for_reboot(void)
{
/* Switch to the identity mapping. */
cpu_switch_mm(idmap_pgd, &init_mm);
local_flush_bp_all();
#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.
*/
local_flush_tlb_all();
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 14 | 50.00% | 2 | 40.00% |
Will Deacon | 8 | 28.57% | 2 | 40.00% |
Nico Pitre | 6 | 21.43% | 1 | 20.00% |
Total | 28 | 100.00% | 5 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 257 | 44.54% | 7 | 31.82% |
Catalin Marinas | 154 | 26.69% | 1 | 4.55% |
Will Deacon | 68 | 11.79% | 4 | 18.18% |
Christoffer Dall | 38 | 6.59% | 1 | 4.55% |
Konstantin Khlebnikov | 29 | 5.03% | 1 | 4.55% |
Santosh Shilimkar | 12 | 2.08% | 2 | 9.09% |
Nico Pitre | 10 | 1.73% | 1 | 4.55% |
David Howells | 3 | 0.52% | 1 | 4.55% |
Ingo Molnar | 3 | 0.52% | 1 | 4.55% |
Arnd Bergmann | 1 | 0.17% | 1 | 4.55% |
Marc Zyngier | 1 | 0.17% | 1 | 4.55% |
Joe Perches | 1 | 0.17% | 1 | 4.55% |
Total | 577 | 100.00% | 22 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.