diff options
Diffstat (limited to 'arch/arm/mm/mmu.c')
-rw-r--r-- | arch/arm/mm/mmu.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index f866bf6b97d4..b7f194af20b4 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
@@ -265,7 +265,7 @@ static void __init build_mem_type_table(void) | |||
265 | if (arch_is_coherent()) { | 265 | if (arch_is_coherent()) { |
266 | if (cpu_is_xsc3()) { | 266 | if (cpu_is_xsc3()) { |
267 | mem_types[MT_MEMORY].prot_sect |= PMD_SECT_S; | 267 | mem_types[MT_MEMORY].prot_sect |= PMD_SECT_S; |
268 | mem_types[MT_MEMORY].prot_pte |= L_PTE_COHERENT; | 268 | mem_types[MT_MEMORY].prot_pte |= L_PTE_SHARED; |
269 | } | 269 | } |
270 | } | 270 | } |
271 | 271 | ||
@@ -619,6 +619,13 @@ void __init reserve_node_zero(pg_data_t *pgdat) | |||
619 | if (machine_is_p720t()) | 619 | if (machine_is_p720t()) |
620 | res_size = 0x00014000; | 620 | res_size = 0x00014000; |
621 | 621 | ||
622 | /* H1940 and RX3715 need to reserve this for suspend */ | ||
623 | |||
624 | if (machine_is_h1940() || machine_is_rx3715()) { | ||
625 | reserve_bootmem_node(pgdat, 0x30003000, 0x1000); | ||
626 | reserve_bootmem_node(pgdat, 0x30081000, 0x1000); | ||
627 | } | ||
628 | |||
622 | #ifdef CONFIG_SA1111 | 629 | #ifdef CONFIG_SA1111 |
623 | /* | 630 | /* |
624 | * Because of the SA1111 DMA bug, we want to preserve our | 631 | * Because of the SA1111 DMA bug, we want to preserve our |