Browse Source

ARM: l2c: write auxiliary control register first

Before calling the controller specific configuration function, write
the auxiliary control register first, so that bits shared with other
registers (such as the prefetch control register) are not overwritten
by the later write to the auxctrl register.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Russell King 10 năm trước cách đây
mục cha
commit
7705dd256c
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      arch/arm/mm/cache-l2x0.c

+ 2 - 2
arch/arm/mm/cache-l2x0.c

@@ -115,10 +115,10 @@ static void l2c_configure(void __iomem *base)
 		return;
 		return;
 	}
 	}
 
 
+	l2c_write_sec(l2x0_saved_regs.aux_ctrl, base, L2X0_AUX_CTRL);
+
 	if (l2x0_data->configure)
 	if (l2x0_data->configure)
 		l2x0_data->configure(base);
 		l2x0_data->configure(base);
-
-	l2c_write_sec(l2x0_saved_regs.aux_ctrl, base, L2X0_AUX_CTRL);
 }
 }
 
 
 /*
 /*