diff options
author | Sergey Dyasly <dserrg@gmail.com> | 2013-09-24 11:38:00 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-05-13 07:59:41 -0400 |
commit | b6b461e90f8fbebb8fa46f363999ed5023be7d3c (patch) | |
tree | f1c57d2f39278100b4329d249c37877d3d55c965 /arch | |
parent | d306606e58d53a9d8cd78fefacbe9a50b3aa9fcd (diff) |
ARM: 7840/1: LPAE: don't reject mapping /dev/mem above 4GB
commit 3159f372354e8e1f5dee714663d705dd2c7e0759 upstream.
With LPAE enabled, physical address space is larger than 4GB. Allow mapping any
part of it via /dev/mem by using PHYS_MASK to determine valid range.
PHYS_MASK covers 40 bits with LPAE enabled and 32 bits otherwise.
Reported-by: Vassili Karpov <av1474@comtv.ru>
Signed-off-by: Sergey Dyasly <dserrg@gmail.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: hujianyang <hujianyang@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mm/mmap.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mm/mmap.c b/arch/arm/mm/mmap.c index f0ef2f7d4ad7..5ef506c6f492 100644 --- a/arch/arm/mm/mmap.c +++ b/arch/arm/mm/mmap.c | |||
@@ -204,13 +204,11 @@ int valid_phys_addr_range(phys_addr_t addr, size_t size) | |||
204 | } | 204 | } |
205 | 205 | ||
206 | /* | 206 | /* |
207 | * We don't use supersection mappings for mmap() on /dev/mem, which | 207 | * Do not allow /dev/mem mappings beyond the supported physical range. |
208 | * means that we can't map the memory area above the 4G barrier into | ||
209 | * userspace. | ||
210 | */ | 208 | */ |
211 | int valid_mmap_phys_addr_range(unsigned long pfn, size_t size) | 209 | int valid_mmap_phys_addr_range(unsigned long pfn, size_t size) |
212 | { | 210 | { |
213 | return !(pfn + (size >> PAGE_SHIFT) > 0x00100000); | 211 | return (pfn + (size >> PAGE_SHIFT)) <= (1 + (PHYS_MASK >> PAGE_SHIFT)); |
214 | } | 212 | } |
215 | 213 | ||
216 | #ifdef CONFIG_STRICT_DEVMEM | 214 | #ifdef CONFIG_STRICT_DEVMEM |