Message ID | 1403583071-5650-4-git-send-email-nicolas.pitre@linaro.org |
---|---|
State | Accepted |
Commit | fbb0499091dc1132995214a47188214602fd75c9 |
Headers | show |
On 06/24/2014 09:41 AM, Nicolas Pitre wrote: > The Chromebook firmware doesn't enable the CCI for the boot cpu, and > arguably it shouldn't have to either. Let's have the kernel handle the > CCI on its own for the boot CPU the same way it does it for secondary CPUs > by using the MCPM loopback. > > Signed-off-by: Nicolas Pitre <nico@linaro.org> > --- Tested on top of next-20140623. Verified that all 8 cores are coming up on Exynos5800 based Peach-pi board. Tested-by: Tushar Behera <tushar.b@samsung.com> > arch/arm/mach-exynos/mcpm-exynos.c | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > > diff --git a/arch/arm/mach-exynos/mcpm-exynos.c b/arch/arm/mach-exynos/mcpm-exynos.c > index 0498d0b887..0c839f94ec 100644 > --- a/arch/arm/mach-exynos/mcpm-exynos.c > +++ b/arch/arm/mach-exynos/mcpm-exynos.c > @@ -290,6 +290,19 @@ static void __naked exynos_pm_power_up_setup(unsigned int affinity_level) > "b cci_enable_port_for_self"); > } > > +static void __init exynos_cache_off(void) > +{ > + if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A15) { > + /* disable L2 prefetching on the Cortex-A15 */ > + asm volatile( > + "mcr p15, 1, %0, c15, c0, 3\n\t" > + "isb\n\t" > + "dsb" > + : : "r" (0x400)); > + } > + exynos_v7_exit_coherency_flush(all); > +} > + > static const struct of_device_id exynos_dt_mcpm_match[] = { > { .compatible = "samsung,exynos5420" }, > { .compatible = "samsung,exynos5800" }, > @@ -333,6 +346,8 @@ static int __init exynos_mcpm_init(void) > ret = mcpm_platform_register(&exynos_power_ops); > if (!ret) > ret = mcpm_sync_init(exynos_pm_power_up_setup); > + if (!ret) > + ret = mcpm_loopback(exynos_cache_off); /* turn on the CCI */ > if (ret) { > iounmap(ns_sram_base_addr); > return ret; >
Nicolas, On Mon, Jun 23, 2014 at 9:11 PM, Nicolas Pitre <nicolas.pitre@linaro.org> wrote: > The Chromebook firmware doesn't enable the CCI for the boot cpu, and > arguably it shouldn't have to either. Let's have the kernel handle the > CCI on its own for the boot CPU the same way it does it for secondary CPUs > by using the MCPM loopback. > > Signed-off-by: Nicolas Pitre <nico@linaro.org> > --- > arch/arm/mach-exynos/mcpm-exynos.c | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) Thank you very much for posting! With your series I'm able to boot all 8 cores on exynos5420-peach-pit and exynos5800-peach-pi sitting on my desk. Tested-by: Doug Anderson <dianders@chromium.org> -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Tue, 24 Jun 2014, Doug Anderson wrote: > Thank you very much for posting! With your series I'm able to boot > all 8 cores on exynos5420-peach-pit and exynos5800-peach-pi sitting on > my desk. > > Tested-by: Doug Anderson <dianders@chromium.org> Thanks to all. I've submitted those patches, with minor nits fixed, to RMK's system as patches 8081 to 8083. Nicolas -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/mach-exynos/mcpm-exynos.c b/arch/arm/mach-exynos/mcpm-exynos.c index 0498d0b887..0c839f94ec 100644 --- a/arch/arm/mach-exynos/mcpm-exynos.c +++ b/arch/arm/mach-exynos/mcpm-exynos.c @@ -290,6 +290,19 @@ static void __naked exynos_pm_power_up_setup(unsigned int affinity_level) "b cci_enable_port_for_self"); } +static void __init exynos_cache_off(void) +{ + if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A15) { + /* disable L2 prefetching on the Cortex-A15 */ + asm volatile( + "mcr p15, 1, %0, c15, c0, 3\n\t" + "isb\n\t" + "dsb" + : : "r" (0x400)); + } + exynos_v7_exit_coherency_flush(all); +} + static const struct of_device_id exynos_dt_mcpm_match[] = { { .compatible = "samsung,exynos5420" }, { .compatible = "samsung,exynos5800" }, @@ -333,6 +346,8 @@ static int __init exynos_mcpm_init(void) ret = mcpm_platform_register(&exynos_power_ops); if (!ret) ret = mcpm_sync_init(exynos_pm_power_up_setup); + if (!ret) + ret = mcpm_loopback(exynos_cache_off); /* turn on the CCI */ if (ret) { iounmap(ns_sram_base_addr); return ret;
The Chromebook firmware doesn't enable the CCI for the boot cpu, and arguably it shouldn't have to either. Let's have the kernel handle the CCI on its own for the boot CPU the same way it does it for secondary CPUs by using the MCPM loopback. Signed-off-by: Nicolas Pitre <nico@linaro.org> --- arch/arm/mach-exynos/mcpm-exynos.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+)