提交 7a09b28e 编写于 作者: R Russell King

ARM: l2c: omap2: avoid reading directly from the L2 registers in platform code

Avoid reading directly from the L2 registers in platform code.  The L2
code will have already saved the register values itself into the
l2x0_saved_regs structure, so platform code should just move these
values to where they're required.

This is safe because the L2x0 will have been initialised by an early
initcall, whereas the OMAP4 PM code is initialised late.
Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
上级 72ecbed1
...@@ -187,19 +187,15 @@ static void l2x0_pwrst_prepare(unsigned int cpu_id, unsigned int save_state) ...@@ -187,19 +187,15 @@ static void l2x0_pwrst_prepare(unsigned int cpu_id, unsigned int save_state)
* in every restore MPUSS OFF path. * in every restore MPUSS OFF path.
*/ */
#ifdef CONFIG_CACHE_L2X0 #ifdef CONFIG_CACHE_L2X0
static void save_l2x0_context(void) static void __init save_l2x0_context(void)
{ {
u32 val; __raw_writel(l2x0_saved_regs.aux_ctrl,
void __iomem *l2x0_base = omap4_get_l2cache_base(); sar_base + L2X0_AUXCTRL_OFFSET);
if (l2x0_base) { __raw_writel(l2x0_saved_regs.prefetch_ctrl,
val = __raw_readl(l2x0_base + L2X0_AUX_CTRL); sar_base + L2X0_PREFETCH_CTRL_OFFSET);
__raw_writel(val, sar_base + L2X0_AUXCTRL_OFFSET);
val = __raw_readl(l2x0_base + L310_PREFETCH_CTRL);
__raw_writel(val, sar_base + L2X0_PREFETCH_CTRL_OFFSET);
}
} }
#else #else
static void save_l2x0_context(void) static void __init save_l2x0_context(void)
{} {}
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册