From: olof@lixom.net (Olof Johansson)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 09/11] ARM: hi3xxx: add hotplug support
Date: Tue, 27 Aug 2013 19:21:00 -0700 [thread overview]
Message-ID: <20130828022100.GG22852@quad.lixom.net> (raw)
In-Reply-To: <1376965873-14431-10-git-send-email-haojian.zhuang@linaro.org>
Hi,
Some comments below.
On Tue, Aug 20, 2013 at 10:31:11AM +0800, Haojian Zhuang wrote:
> From: Zhangfei Gao <zhangfei.gao@linaro.org>
>
> Enable hotplug support on hi3xxx platform
>
> How to test:
> cat proc/interrupts
> echo 0 > /sys/devices/system/cpu/cpuX/online
> cat proc/interrupts
> echo 1 > /sys/devices/system/cpu/cpuX/online
>
> Signed-off-by: Zhangfei Gao <zhangfei.gao@linaro.org>
> Tested-by: Zhang Mingjun <zhang.mingjun@linaro.org>
> ---
> arch/arm/mach-hi3xxx/Makefile | 1 +
> arch/arm/mach-hi3xxx/core.h | 5 ++
> arch/arm/mach-hi3xxx/hi3xxx.c | 1 +
> arch/arm/mach-hi3xxx/hotplug.c | 154 +++++++++++++++++++++++++++++++++++++++++
> arch/arm/mach-hi3xxx/platsmp.c | 5 ++
> 5 files changed, 166 insertions(+)
> create mode 100644 arch/arm/mach-hi3xxx/hotplug.c
>
> diff --git a/arch/arm/mach-hi3xxx/Makefile b/arch/arm/mach-hi3xxx/Makefile
> index 0917f1c..c597cbf 100644
> --- a/arch/arm/mach-hi3xxx/Makefile
> +++ b/arch/arm/mach-hi3xxx/Makefile
> @@ -4,3 +4,4 @@
>
> obj-y += hi3xxx.o system.o
> obj-$(CONFIG_SMP) += platsmp.o
> +obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
> diff --git a/arch/arm/mach-hi3xxx/core.h b/arch/arm/mach-hi3xxx/core.h
> index 2cfd643..c2ce35d 100644
> --- a/arch/arm/mach-hi3xxx/core.h
> +++ b/arch/arm/mach-hi3xxx/core.h
> @@ -11,4 +11,9 @@ extern void hs_map_io(void);
> extern void hs_restart(enum reboot_mode, const char *cmd);
> extern struct smp_operations hs_smp_ops;
>
> +extern void __init hs_hotplug_init(void);
> +extern void hs_cpu_die(unsigned int cpu);
> +extern int hs_cpu_kill(unsigned int cpu);
> +extern void hs_set_cpu(int cpu, bool enable);
> +
> #endif
> diff --git a/arch/arm/mach-hi3xxx/hi3xxx.c b/arch/arm/mach-hi3xxx/hi3xxx.c
> index 567a0d5..01ac68b 100644
> --- a/arch/arm/mach-hi3xxx/hi3xxx.c
> +++ b/arch/arm/mach-hi3xxx/hi3xxx.c
> @@ -24,6 +24,7 @@
> static void __init hi3xxx_timer_init(void)
> {
> hs_map_io();
> + hs_hotplug_init();
> of_clk_init(NULL);
> clocksource_of_init();
> }
> diff --git a/arch/arm/mach-hi3xxx/hotplug.c b/arch/arm/mach-hi3xxx/hotplug.c
> new file mode 100644
> index 0000000..c67f8a2
> --- /dev/null
> +++ b/arch/arm/mach-hi3xxx/hotplug.c
> @@ -0,0 +1,154 @@
> +/*
> + * Copyright (c) 2013 Linaro Ltd.
> + * Copyright (c) 2013 Hisilicon Limited.
> + *
> + * This program is free software; you can redistribute it and/or modify it
> + * under the terms and conditions of the GNU General Public License,
> + * version 2, as published by the Free Software Foundation.
> + */
> +#include <linux/cpu.h>
> +#include <linux/io.h>
> +#include <linux/of_address.h>
> +#include <linux/of_platform.h>
> +#include <asm/cacheflush.h>
> +#include <asm/smp_plat.h>
> +#include "core.h"
> +
> +enum {
> + HI3620_CTRL,
> + HI3716_CTRL,
> +};
> +
> +static void __iomem *ctrl_base;
> +static int id;
> +
> +void hs_set_cpu(int cpu, bool enable)
> +{
> + u32 val = 0;
> +
> + if (!ctrl_base)
> + return;
> +
> + if (id == HI3620_CTRL) {
> + if (enable) {
> + /* MTCMOS */
> + writel_relaxed((0x01 << (cpu + 3)), ctrl_base + 0xD0);
0xD0 should be 0xd0 (we usually don't use all-caps hex)
> + writel_relaxed((0x1011 << cpu), ctrl_base + 0x414);
> + writel_relaxed((0x401011 << cpu), ctrl_base + 0x410);
You can skip the outermost parens here.
These numbers look pretty magic. Can you make it slightly easier for someone
reading the code to figure out what's going on?
> + /* ISO disable */
> + writel((0x01 << (cpu + 3)), ctrl_base + 0x0C4);
0x0C4 should be 0xc4. Also, it's clearer if you use 0x8 << cpu instead.
> +
> + /* WFI Mask */
> + val = readl(ctrl_base + 0x200);
> + val &= ~(0x1 << (cpu+28));
Same here, don't use cpu + 28, modify the constant instead. Same for the other
occurrances below.
> + writel(val, ctrl_base + 0x200);
> +
> + /* Enable core */
> + writel_relaxed((0x01 << cpu), ctrl_base + 0xf4);
> + /* Unreset */
> + writel_relaxed((0x401011 << cpu), ctrl_base + 0x414);
> + } else {
> + /* iso enable */
> + writel_relaxed((0x01 << (cpu + 3)), ctrl_base + 0xC0);
> +
> + /* MTCMOS */
> + writel_relaxed((0x01 << (cpu + 3)), ctrl_base + 0xD4);
> +
> + /* wfi mask */
> + val = readl_relaxed(ctrl_base + 0x200);
> + val |= (0x1 << (cpu+28));
> + writel_relaxed(val, ctrl_base + 0x200);
> +
> + /* disable core*/
> + writel_relaxed((0x01 << cpu), ctrl_base + 0xf8);
> + /* Reset */
> + writel_relaxed((0x401011 << cpu), ctrl_base + 0x410);
> + }
> + } else if (id == HI3716_CTRL) {
> + if (enable) {
> + /* power on cpu1 */
> + val = readl_relaxed(ctrl_base + 0x1000);
> + val &= ~(0x1 << 8);
> + val |= (0x1 << 7);
> + val &= ~(0x1 << 3);
> + writel_relaxed(val, ctrl_base + 0x1000);
> +
> + /* unreset */
> + val = readl_relaxed(ctrl_base + 0x50);
> + val &= ~(0x1 << 17);
> + writel_relaxed(val, ctrl_base + 0x50);
> + } else {
> + /* power down cpu1 */
> + val = readl_relaxed(ctrl_base + 0x1000);
> + val &= ~(0x1 << 8);
> + val |= (0x1 << 7);
> + val |= (0x1 << 3);
> + writel_relaxed(val, ctrl_base + 0x1000);
> +
> + /* reset */
> + val = readl_relaxed(ctrl_base + 0x50);
> + val |= (0x1 << 17);
> + writel_relaxed(val, ctrl_base + 0x50);
> + }
> + }
So the function above really shares no code path between the different SoCs.
Instead of doing it all in nested if/else bodies, please split it up in two
functions, one for each SoC. You can still keep the enable/disable paths under
if/else though.
> +}
> +
> +void __init hs_hotplug_init(void)
> +{
> + struct device_node *node;
> +
> + node = of_find_compatible_node(NULL, NULL, "hisilicon,cpuctrl");
> + if (node) {
> + ctrl_base = of_iomap(node, 0);
> + id = HI3716_CTRL;
You should use something more specific than just hisilicon,cpuctrl here, if
it's truly tied to the SoC (i.e. this ID here).
hisilicon,hi3716-cpuctrl seems appropriate. Note that the bindings need
to be revised for this.
> + return;
> + }
> + node = of_find_compatible_node(NULL, NULL, "hisilicon,sctrl");
> + if (node) {
> + ctrl_base = of_iomap(node, 0);
> + id = HI3620_CTRL;
Same here.
> + return;
> + }
> +}
> +
> +static inline void cpu_enter_lowpower(void)
> +{
> + unsigned int v;
> +
> + flush_cache_all();
> + asm volatile(
> + /*
> + * Turn off coherency and L1 D-cache
> + */
Move the comment up above the asm volatile
> + " mrc p15, 0, %0, c1, c0, 1\n"
> + " bic %0, %0, #0x40\n"
> + " mcr p15, 0, %0, c1, c0, 1\n"
> + " mrc p15, 0, %0, c1, c0, 0\n"
> + " bic %0, %0, #0x04\n"
> + " mcr p15, 0, %0, c1, c0, 0\n"
> + : "=&r" (v)
> + : "r" (0)
> + : "cc");
> +}
> +
> +void hs_cpu_die(unsigned int cpu)
> +{
> + cpu_enter_lowpower();
> + hs_set_cpu_jump(cpu, phys_to_virt(0));
> + cpu_do_idle();
> +
> + /* We should have never returned from idle */
> + panic("cpu %d unexpectedly exit from shutdown\n", cpu);
> +}
> +
> +int hs_cpu_kill(unsigned int cpu)
> +{
> + unsigned long timeout = jiffies + msecs_to_jiffies(50);
> +
> + while (hs_get_cpu_jump(cpu))
> + if (time_after(jiffies, timeout))
> + return 0;
> + hs_set_cpu(cpu, false);
> + return 1;
> +}
> diff --git a/arch/arm/mach-hi3xxx/platsmp.c b/arch/arm/mach-hi3xxx/platsmp.c
> index a76a3cc..6a08630 100644
> --- a/arch/arm/mach-hi3xxx/platsmp.c
> +++ b/arch/arm/mach-hi3xxx/platsmp.c
> @@ -32,6 +32,7 @@ static void __init hs_smp_prepare_cpus(unsigned int max_cpus)
>
> static int hs_boot_secondary(unsigned int cpu, struct task_struct *idle)
> {
> + hs_set_cpu(cpu, true);
> hs_set_cpu_jump(cpu, secondary_startup);
> arch_send_wakeup_ipi_mask(cpumask_of(cpu));
> return 0;
> @@ -40,4 +41,8 @@ static int hs_boot_secondary(unsigned int cpu, struct task_struct *idle)
> struct smp_operations hs_smp_ops __initdata = {
> .smp_prepare_cpus = hs_smp_prepare_cpus,
> .smp_boot_secondary = hs_boot_secondary,
> +#ifdef CONFIG_HOTPLUG_CPU
> + .cpu_die = hs_cpu_die,
> + .cpu_kill = hs_cpu_kill,
> +#endif
> };
> --
> 1.8.1.2
>
next prev parent reply other threads:[~2013-08-28 2:21 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-20 2:31 [PATCH v7 00/11] Enable Hisilicon Hi3620 SoC Haojian Zhuang
2013-08-20 2:31 ` [PATCH v7 01/11] ARM: debug: support debug ll on hisilicon soc Haojian Zhuang
2013-08-20 2:31 ` [PATCH v7 02/11] clk: hi3xxx: add clock support Haojian Zhuang
2013-08-21 21:29 ` Mike Turquette
2013-08-24 4:13 ` Haojian Zhuang
2013-08-20 2:31 ` [PATCH v7 03/11] clk: gate: add CLK_GATE_SEPERATED_REG flag Haojian Zhuang
2013-08-21 21:18 ` Mike Turquette
2013-08-20 2:31 ` [PATCH v7 04/11] ARM: hi3xxx: add board support with device tree Haojian Zhuang
2013-08-20 2:31 ` [PATCH v7 05/11] ARM: dts: enable hi4511 " Haojian Zhuang
2013-08-22 18:07 ` Kevin Hilman
2013-08-22 18:50 ` Stephen Warren
2013-08-24 3:52 ` Haojian Zhuang
2013-08-26 16:48 ` Stephen Warren
2013-08-26 16:48 ` Stephen Warren
2013-08-28 2:17 ` Haojian Zhuang
2013-08-28 2:17 ` Haojian Zhuang
2013-08-28 14:20 ` Stephen Warren
2013-08-28 14:20 ` Stephen Warren
2013-08-28 15:15 ` Haojian Zhuang
2013-08-28 15:15 ` Haojian Zhuang
2013-08-28 15:45 ` Stephen Warren
2013-08-28 15:45 ` Stephen Warren
2013-08-24 3:59 ` Haojian Zhuang
2013-08-20 2:31 ` [PATCH v7 06/11] ARM: config: enable hi3xxx in multi_v7_defconfig Haojian Zhuang
2013-08-20 2:31 ` [PATCH v7 07/11] ARM: config: add defconfig for Hi3xxx Haojian Zhuang
2013-08-20 2:31 ` [PATCH v7 08/11] ARM: hi3xxx: add smp support Haojian Zhuang
2013-08-28 2:12 ` Olof Johansson
2013-08-28 11:53 ` zhangfei gao
2013-08-28 17:19 ` Olof Johansson
2013-08-29 1:54 ` zhangfei
2013-08-20 2:31 ` [PATCH v7 09/11] ARM: hi3xxx: add hotplug support Haojian Zhuang
2013-08-28 2:21 ` Olof Johansson [this message]
2013-08-28 11:45 ` zhangfei gao
2013-08-20 2:31 ` [PATCH v7 10/11] ARM: hi3xxx: add clk-hi3716 Haojian Zhuang
2013-08-21 21:43 ` Mike Turquette
2013-08-22 1:19 ` zhangfei gao
2013-08-22 5:59 ` Mike Turquette
2013-08-22 7:50 ` Haojian Zhuang
2013-08-22 8:16 ` Mike Turquette
2013-08-20 2:31 ` [PATCH v7 11/11] ARM: hi3xxx: support hi3716-dkb board Haojian Zhuang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130828022100.GG22852@quad.lixom.net \
--to=olof@lixom.net \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.