projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc2bdef
)
sh: Try PMB mapping based on physical address, not mapping size
author
Matt Fleming
<matt@console-pimps.org>
Tue, 6 Oct 2009 21:22:27 +0000
(21:22 +0000)
committer
Paul Mundt
<lethal@linux-sh.org>
Fri, 9 Oct 2009 02:25:10 +0000
(11:25 +0900)
We should favour PMB mappings when the physical address cannot be
reached with 29-bits.
Signed-off-by: Matt Fleming <matt@console-pimps.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/mm/ioremap_32.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/sh/mm/ioremap_32.c
b/arch/sh/mm/ioremap_32.c
index c3250614e3ae291ce2d97208b87fc822377e911e..a86eaa9d75a5a6e4d776820dbde9b6e5542de0e9 100644
(file)
--- a/
arch/sh/mm/ioremap_32.c
+++ b/
arch/sh/mm/ioremap_32.c
@@
-83,7
+83,7
@@
void __iomem *__ioremap(unsigned long phys_addr, unsigned long size,
*
* PMB entries are all pre-faulted.
*/
- if (unlikely(
size >= 0x1000000
)) {
+ if (unlikely(
phys_addr >= P1SEG
)) {
unsigned long mapped = pmb_remap(addr, phys_addr, size, flags);
if (likely(mapped)) {