aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPekka Enberg <penberg@cs.helsinki.fi>2009-03-04 04:46:40 -0500
committerIngo Molnar <mingo@elte.hu>2009-03-04 05:40:04 -0500
commit540aca06b737cc38965b52eeceefba3d24376461 (patch)
tree0231f664033a2f3ad7632e4030e54a6b7a848447
parent8b0e5860cb099d7958d13b00ffbc35ad02735700 (diff)
x86: move devmem_is_allowed() to common mm/init.c
Impact: cleanup The function is identical on 32-bit and 64-bit configurations so move it to the common mm/init.c file. Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi> LKML-Reference: <1236160001.29024.29.camel@penberg-laptop> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/mm/init.c24
-rw-r--r--arch/x86/mm/init_32.c21
-rw-r--r--arch/x86/mm/init_64.c22
3 files changed, 24 insertions, 43 deletions
diff --git a/arch/x86/mm/init.c b/arch/x86/mm/init.c
index ce6a722587d8..f89df52683c5 100644
--- a/arch/x86/mm/init.c
+++ b/arch/x86/mm/init.c
@@ -1,9 +1,33 @@
1#include <linux/ioport.h>
1#include <linux/swap.h> 2#include <linux/swap.h>
3
2#include <asm/cacheflush.h> 4#include <asm/cacheflush.h>
3#include <asm/page.h> 5#include <asm/page.h>
6#include <asm/page_types.h>
4#include <asm/sections.h> 7#include <asm/sections.h>
5#include <asm/system.h> 8#include <asm/system.h>
6 9
10/*
11 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
12 * is valid. The argument is a physical page number.
13 *
14 *
15 * On x86, access has to be given to the first megabyte of ram because that area
16 * contains bios code and data regions used by X and dosemu and similar apps.
17 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
18 * mmio resources as well as potential bios/acpi data regions.
19 */
20int devmem_is_allowed(unsigned long pagenr)
21{
22 if (pagenr <= 256)
23 return 1;
24 if (iomem_is_exclusive(pagenr << PAGE_SHIFT))
25 return 0;
26 if (!page_is_ram(pagenr))
27 return 1;
28 return 0;
29}
30
7void free_init_pages(char *what, unsigned long begin, unsigned long end) 31void free_init_pages(char *what, unsigned long begin, unsigned long end)
8{ 32{
9 unsigned long addr = begin; 33 unsigned long addr = begin;
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c
index 0b087dcd2c18..917c4e60c767 100644
--- a/arch/x86/mm/init_32.c
+++ b/arch/x86/mm/init_32.c
@@ -354,27 +354,6 @@ repeat:
354 } 354 }
355} 355}
356 356
357/*
358 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
359 * is valid. The argument is a physical page number.
360 *
361 *
362 * On x86, access has to be given to the first megabyte of ram because that area
363 * contains bios code and data regions used by X and dosemu and similar apps.
364 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
365 * mmio resources as well as potential bios/acpi data regions.
366 */
367int devmem_is_allowed(unsigned long pagenr)
368{
369 if (pagenr <= 256)
370 return 1;
371 if (iomem_is_exclusive(pagenr << PAGE_SHIFT))
372 return 0;
373 if (!page_is_ram(pagenr))
374 return 1;
375 return 0;
376}
377
378pte_t *kmap_pte; 357pte_t *kmap_pte;
379pgprot_t kmap_prot; 358pgprot_t kmap_prot;
380 359
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
index 724e537432e7..074435e79824 100644
--- a/arch/x86/mm/init_64.c
+++ b/arch/x86/mm/init_64.c
@@ -876,28 +876,6 @@ EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
876 876
877#endif /* CONFIG_MEMORY_HOTPLUG */ 877#endif /* CONFIG_MEMORY_HOTPLUG */
878 878
879/*
880 * devmem_is_allowed() checks to see if /dev/mem access to a certain address
881 * is valid. The argument is a physical page number.
882 *
883 *
884 * On x86, access has to be given to the first megabyte of ram because that area
885 * contains bios code and data regions used by X and dosemu and similar apps.
886 * Access has to be given to non-kernel-ram areas as well, these contain the PCI
887 * mmio resources as well as potential bios/acpi data regions.
888 */
889int devmem_is_allowed(unsigned long pagenr)
890{
891 if (pagenr <= 256)
892 return 1;
893 if (iomem_is_exclusive(pagenr << PAGE_SHIFT))
894 return 0;
895 if (!page_is_ram(pagenr))
896 return 1;
897 return 0;
898}
899
900
901static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel, 879static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
902 kcore_modules, kcore_vsyscall; 880 kcore_modules, kcore_vsyscall;
903 881