mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 16:06:16 +07:00
sh: Try PMB mapping based on physical address, not mapping size
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>
This commit is contained in:
parent
fc2bdefdde
commit
2bea7ea7d5
@ -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)) {
|
||||
|
Loading…
Reference in New Issue
Block a user