提交 efcfc46e 编写于 作者: N Nicolas Pitre 提交者: Russell King

ARM: 7918/1: clean up cache handling in core code

We have a handy macro to replace open coded __cpuc_flush_dcache_area(()
and outer_clean_range() sequences. Let's use it. No functional change.
Signed-off-by: NNicolas Pitre <nico@linaro.org>
Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
上级 1b0f6681
...@@ -35,8 +35,7 @@ void mcpm_set_early_poke(unsigned cpu, unsigned cluster, ...@@ -35,8 +35,7 @@ void mcpm_set_early_poke(unsigned cpu, unsigned cluster,
unsigned long *poke = &mcpm_entry_early_pokes[cluster][cpu][0]; unsigned long *poke = &mcpm_entry_early_pokes[cluster][cpu][0];
poke[0] = poke_phys_addr; poke[0] = poke_phys_addr;
poke[1] = poke_val; poke[1] = poke_val;
__cpuc_flush_dcache_area((void *)poke, 8); __sync_cache_range_w(poke, 2 * sizeof(*poke));
outer_clean_range(__pa(poke), __pa(poke + 2));
} }
static const struct mcpm_platform_ops *platform_ops; static const struct mcpm_platform_ops *platform_ops;
......
...@@ -105,8 +105,7 @@ int __cpu_up(unsigned int cpu, struct task_struct *idle) ...@@ -105,8 +105,7 @@ int __cpu_up(unsigned int cpu, struct task_struct *idle)
secondary_data.pgdir = get_arch_pgd(idmap_pgd); secondary_data.pgdir = get_arch_pgd(idmap_pgd);
secondary_data.swapper_pg_dir = get_arch_pgd(swapper_pg_dir); secondary_data.swapper_pg_dir = get_arch_pgd(swapper_pg_dir);
#endif #endif
__cpuc_flush_dcache_area(&secondary_data, sizeof(secondary_data)); sync_cache_w(&secondary_data);
outer_clean_range(__pa(&secondary_data), __pa(&secondary_data + 1));
/* /*
* Now bring the CPU into our world. * Now bring the CPU into our world.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册