-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 225912 b: refs/heads/master c: 614dd05 h: refs/heads/master v: v3
- Loading branch information
Russell King
committed
Dec 22, 2010
1 parent
63499ff
commit 9932250
Showing
6 changed files
with
57 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 26bbf0b57a0848932f725076bcb1245ca696e8d3 | ||
refs/heads/master: 614dd0585f376a25c638abbed9c5fbd21d7baece |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#include <linux/kernel.h> | ||
|
||
#include <asm/cputype.h> | ||
#include <asm/pgalloc.h> | ||
#include <asm/pgtable.h> | ||
|
||
void identity_mapping_add(pgd_t *pgd, unsigned long addr, unsigned long end) | ||
{ | ||
unsigned long prot; | ||
|
||
prot = PMD_TYPE_SECT | PMD_SECT_AP_WRITE; | ||
if (cpu_architecture() <= CPU_ARCH_ARMv5TEJ && !cpu_is_xscale()) | ||
prot |= PMD_BIT4; | ||
|
||
for (addr &= PGDIR_MASK; addr < end;) { | ||
pmd_t *pmd = pmd_offset(pgd + pgd_index(addr), addr); | ||
pmd[0] = __pmd(addr | prot); | ||
addr += SECTION_SIZE; | ||
pmd[1] = __pmd(addr | prot); | ||
addr += SECTION_SIZE; | ||
flush_pmd_entry(pmd); | ||
} | ||
} | ||
|
||
#ifdef CONFIG_SMP | ||
void identity_mapping_del(pgd_t *pgd, unsigned long addr, unsigned long end) | ||
{ | ||
for (addr &= PGDIR_MASK; addr < end; addr += PGDIR_SIZE) { | ||
pmd_t *pmd = pmd_offset(pgd + pgd_index(addr), addr); | ||
pmd[0] = __pmd(0); | ||
pmd[1] = __pmd(0); | ||
clean_pmd_entry(pmd); | ||
} | ||
} | ||
#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 | ||
*/ | ||
void setup_mm_for_reboot(char mode) | ||
{ | ||
/* | ||
* 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(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters