diff options
author | Laura Abbott <lauraa@codeaurora.org> | 2013-06-17 13:29:13 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-12-11 04:53:19 -0500 |
commit | 75374ad47c6465de6c098d7b913fe02d6131195c (patch) | |
tree | ade5f83cf6baea175e6380c986777f0b7979d940 /arch/arm/mm/mmu.c | |
parent | 27ec8da4ace46900a71b8462157aa2bc88ff5d2c (diff) |
ARM: mm: Define set_memory_* functions for ARM
Other architectures define various set_memory functions to allow
attributes to be changed (e.g. set_memory_x, set_memory_rw, etc.)
Currently, these functions are missing on ARM. Define these in an
appropriate manner for ARM.
Signed-off-by: Laura Abbott <lauraa@codeaurora.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm/mmu.c')
-rw-r--r-- | arch/arm/mm/mmu.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index 9ec715f12224..09033890c8b0 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
@@ -345,6 +345,44 @@ const struct mem_type *get_mem_type(unsigned int type) | |||
345 | } | 345 | } |
346 | EXPORT_SYMBOL(get_mem_type); | 346 | EXPORT_SYMBOL(get_mem_type); |
347 | 347 | ||
348 | #define PTE_SET_FN(_name, pteop) \ | ||
349 | static int pte_set_##_name(pte_t *ptep, pgtable_t token, unsigned long addr, \ | ||
350 | void *data) \ | ||
351 | { \ | ||
352 | pte_t pte = pteop(*ptep); \ | ||
353 | \ | ||
354 | set_pte_ext(ptep, pte, 0); \ | ||
355 | return 0; \ | ||
356 | } \ | ||
357 | |||
358 | #define SET_MEMORY_FN(_name, callback) \ | ||
359 | int set_memory_##_name(unsigned long addr, int numpages) \ | ||
360 | { \ | ||
361 | unsigned long start = addr; \ | ||
362 | unsigned long size = PAGE_SIZE*numpages; \ | ||
363 | unsigned end = start + size; \ | ||
364 | \ | ||
365 | if (start < MODULES_VADDR || start >= MODULES_END) \ | ||
366 | return -EINVAL;\ | ||
367 | \ | ||
368 | if (end < MODULES_VADDR || end >= MODULES_END) \ | ||
369 | return -EINVAL; \ | ||
370 | \ | ||
371 | apply_to_page_range(&init_mm, start, size, callback, NULL); \ | ||
372 | flush_tlb_kernel_range(start, end); \ | ||
373 | return 0;\ | ||
374 | } | ||
375 | |||
376 | PTE_SET_FN(ro, pte_wrprotect) | ||
377 | PTE_SET_FN(rw, pte_mkwrite) | ||
378 | PTE_SET_FN(x, pte_mkexec) | ||
379 | PTE_SET_FN(nx, pte_mknexec) | ||
380 | |||
381 | SET_MEMORY_FN(ro, pte_set_ro) | ||
382 | SET_MEMORY_FN(rw, pte_set_rw) | ||
383 | SET_MEMORY_FN(x, pte_set_x) | ||
384 | SET_MEMORY_FN(nx, pte_set_nx) | ||
385 | |||
348 | /* | 386 | /* |
349 | * Adjust the PMD section entries according to the CPU in use. | 387 | * Adjust the PMD section entries according to the CPU in use. |
350 | */ | 388 | */ |