Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1306924 > unrolled thread
| Started by | Zhaoyang Huang <zhaoyang.huang@linaro.org> |
|---|---|
| First post | 2016-01-12 03:10 +0100 |
| Last post | 2016-01-12 13:00 +0100 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
[RFC PATCH v2] Add IPI entry for CPU UP Zhaoyang Huang <zhaoyang.huang@linaro.org> - 2016-01-12 03:10 +0100
Re: [RFC PATCH v2] Add IPI entry for CPU UP Zhaoyang Huang <zhaoyang.huang@linaro.org> - 2016-01-12 03:20 +0100
Re: [RFC PATCH v2] Add IPI entry for CPU UP Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2016-01-12 10:40 +0100
Re: [RFC PATCH v2] Add IPI entry for CPU UP Zhaoyang Huang <zhaoyang.huang@linaro.org> - 2016-01-12 10:50 +0100
Re: [RFC PATCH v2] Add IPI entry for CPU UP Mark Rutland <mark.rutland@arm.com> - 2016-01-12 13:00 +0100
| From | Zhaoyang Huang <zhaoyang.huang@linaro.org> |
|---|---|
| Date | 2016-01-12 03:10 +0100 |
| Subject | [RFC PATCH v2] Add IPI entry for CPU UP |
| Message-ID | <qPWzg-2LM-19@gated-at.bofh.it> |
In some ARM SOCs, IPI interrupt is used for hotplug in one cpu, that is,
sending a IPI to the core in WFI and powerdown status. So Add a IPI
entry for handle this kind of cpu up interrupt
Launching the IPI can be done within PSCI, while there will be one unknown
type of IPI as the dest core come up to the kernel world which will bring a
warning so far.So add such type of IPI to handle the interrupt.
Signed-off-by: Zhaoyang Huang <zhaoyang.huang@spreadtrum.com>
---
arch/arm64/include/asm/hardirq.h | 2 +-
arch/arm64/kernel/smp.c | 10 ++++++++++
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/arch/arm64/include/asm/hardirq.h b/arch/arm64/include/asm/hardirq.h
index a57601f..bb4edb7 100644
--- a/arch/arm64/include/asm/hardirq.h
+++ b/arch/arm64/include/asm/hardirq.h
@@ -20,7 +20,7 @@
#include <linux/threads.h>
#include <asm/irq.h>
-#define NR_IPI 5
+#define NR_IPI 6
typedef struct {
unsigned int __softirq_pending;
diff --git a/arch/arm64/kernel/smp.c b/arch/arm64/kernel/smp.c
index b1adc51..20e63c9 100644
--- a/arch/arm64/kernel/smp.c
+++ b/arch/arm64/kernel/smp.c
@@ -70,6 +70,7 @@ enum ipi_msg_type {
IPI_CPU_STOP,
IPI_TIMER,
IPI_IRQ_WORK,
+ IPI_CPU_UP,
};
/*
@@ -627,6 +628,7 @@ static const char *ipi_types[NR_IPI] __tracepoint_string = {
S(IPI_CPU_STOP, "CPU stop interrupts"),
S(IPI_TIMER, "Timer broadcast interrupts"),
S(IPI_IRQ_WORK, "IRQ work interrupts"),
+ S(IPI_CPU_UP, "Hotplug cpu up by ipi"),
};
static void smp_cross_call(const struct cpumask *target, unsigned int ipinr)
@@ -746,6 +748,8 @@ void handle_IPI(int ipinr, struct pt_regs *regs)
irq_exit();
break;
#endif
+ case IPI_CPU_UP:
+ break;
default:
pr_crit("CPU%u: Unknown IPI message 0x%x\n", cpu, ipinr);
@@ -798,3 +802,9 @@ int setup_profiling_timer(unsigned int multiplier)
{
return -EINVAL;
}
+
+void smp_send_cpuup(int cpu)
+{
+ smp_cross_call(cpumask_of(cpu), IPI_CPU_UP);
+}
+
--
1.7.9.5
[toc] | [next] | [standalone]
| From | Zhaoyang Huang <zhaoyang.huang@linaro.org> |
|---|---|
| Date | 2016-01-12 03:20 +0100 |
| Message-ID | <qPWIV-2PA-1@gated-at.bofh.it> |
| In reply to | #1306924 |
On 12 January 2016 at 10:05, Zhaoyang Huang <zhaoyang.huang@linaro.org> wrote:
> In some ARM SOCs, IPI interrupt is used for hotplug in one cpu, that is,
> sending a IPI to the core in WFI and powerdown status. So Add a IPI
> entry for handle this kind of cpu up interrupt
> Launching the IPI can be done within PSCI, while there will be one unknown
> type of IPI as the dest core come up to the kernel world which will bring a
> warning so far.So add such type of IPI to handle the interrupt.
>
> Signed-off-by: Zhaoyang Huang <zhaoyang.huang@spreadtrum.com>
> ---
> arch/arm64/include/asm/hardirq.h | 2 +-
> arch/arm64/kernel/smp.c | 10 ++++++++++
> 2 files changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm64/include/asm/hardirq.h b/arch/arm64/include/asm/hardirq.h
> index a57601f..bb4edb7 100644
> --- a/arch/arm64/include/asm/hardirq.h
> +++ b/arch/arm64/include/asm/hardirq.h
> @@ -20,7 +20,7 @@
> #include <linux/threads.h>
> #include <asm/irq.h>
>
> -#define NR_IPI 5
> +#define NR_IPI 6
>
> typedef struct {
> unsigned int __softirq_pending;
> diff --git a/arch/arm64/kernel/smp.c b/arch/arm64/kernel/smp.c
> index b1adc51..20e63c9 100644
> --- a/arch/arm64/kernel/smp.c
> +++ b/arch/arm64/kernel/smp.c
> @@ -70,6 +70,7 @@ enum ipi_msg_type {
> IPI_CPU_STOP,
> IPI_TIMER,
> IPI_IRQ_WORK,
> + IPI_CPU_UP,
> };
>
> /*
> @@ -627,6 +628,7 @@ static const char *ipi_types[NR_IPI] __tracepoint_string = {
> S(IPI_CPU_STOP, "CPU stop interrupts"),
> S(IPI_TIMER, "Timer broadcast interrupts"),
> S(IPI_IRQ_WORK, "IRQ work interrupts"),
> + S(IPI_CPU_UP, "Hotplug cpu up by ipi"),
> };
>
> static void smp_cross_call(const struct cpumask *target, unsigned int ipinr)
> @@ -746,6 +748,8 @@ void handle_IPI(int ipinr, struct pt_regs *regs)
> irq_exit();
> break;
> #endif
> + case IPI_CPU_UP:
> + break;
>
> default:
> pr_crit("CPU%u: Unknown IPI message 0x%x\n", cpu, ipinr);
> @@ -798,3 +802,9 @@ int setup_profiling_timer(unsigned int multiplier)
> {
> return -EINVAL;
> }
> +
> +void smp_send_cpuup(int cpu)
> +{
> + smp_cross_call(cpumask_of(cpu), IPI_CPU_UP);
> +}
> +
> --
> 1.7.9.5
>
As the added commit message saying, the IPI can be launched in either
of kernel or PSCI. But there will be a unknown type of IPI when dest
core come to the kernel.
[toc] | [prev] | [next] | [standalone]
| From | Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
|---|---|
| Date | 2016-01-12 10:40 +0100 |
| Message-ID | <qQ3AK-7rn-27@gated-at.bofh.it> |
| In reply to | #1306926 |
On Tue, Jan 12, 2016 at 10:17:42AM +0800, Zhaoyang Huang wrote:
> On 12 January 2016 at 10:05, Zhaoyang Huang <zhaoyang.huang@linaro.org> wrote:
> > In some ARM SOCs, IPI interrupt is used for hotplug in one cpu, that is,
> > sending a IPI to the core in WFI and powerdown status. So Add a IPI
> > entry for handle this kind of cpu up interrupt
> > Launching the IPI can be done within PSCI, while there will be one unknown
> > type of IPI as the dest core come up to the kernel world which will bring a
> > warning so far.So add such type of IPI to handle the interrupt.
You missed CC'ing ALKML for the second time and you were warned.
You are adding a call to *send* an IPI in the kernel so the commit
above is misleading.
Acknowledge and clear the IRQ in FW so that the mechanism is completely
implemented in FW (ie PSCI), that the CPU coming out of reset will run
before getting to the kernel, this patch is not needed and we already
explained to you why.
Lorenzo
> > Signed-off-by: Zhaoyang Huang <zhaoyang.huang@spreadtrum.com>
> > ---
> > arch/arm64/include/asm/hardirq.h | 2 +-
> > arch/arm64/kernel/smp.c | 10 ++++++++++
> > 2 files changed, 11 insertions(+), 1 deletion(-)
> >
> > diff --git a/arch/arm64/include/asm/hardirq.h b/arch/arm64/include/asm/hardirq.h
> > index a57601f..bb4edb7 100644
> > --- a/arch/arm64/include/asm/hardirq.h
> > +++ b/arch/arm64/include/asm/hardirq.h
> > @@ -20,7 +20,7 @@
> > #include <linux/threads.h>
> > #include <asm/irq.h>
> >
> > -#define NR_IPI 5
> > +#define NR_IPI 6
> >
> > typedef struct {
> > unsigned int __softirq_pending;
> > diff --git a/arch/arm64/kernel/smp.c b/arch/arm64/kernel/smp.c
> > index b1adc51..20e63c9 100644
> > --- a/arch/arm64/kernel/smp.c
> > +++ b/arch/arm64/kernel/smp.c
> > @@ -70,6 +70,7 @@ enum ipi_msg_type {
> > IPI_CPU_STOP,
> > IPI_TIMER,
> > IPI_IRQ_WORK,
> > + IPI_CPU_UP,
> > };
> >
> > /*
> > @@ -627,6 +628,7 @@ static const char *ipi_types[NR_IPI] __tracepoint_string = {
> > S(IPI_CPU_STOP, "CPU stop interrupts"),
> > S(IPI_TIMER, "Timer broadcast interrupts"),
> > S(IPI_IRQ_WORK, "IRQ work interrupts"),
> > + S(IPI_CPU_UP, "Hotplug cpu up by ipi"),
> > };
> >
> > static void smp_cross_call(const struct cpumask *target, unsigned int ipinr)
> > @@ -746,6 +748,8 @@ void handle_IPI(int ipinr, struct pt_regs *regs)
> > irq_exit();
> > break;
> > #endif
> > + case IPI_CPU_UP:
> > + break;
> >
> > default:
> > pr_crit("CPU%u: Unknown IPI message 0x%x\n", cpu, ipinr);
> > @@ -798,3 +802,9 @@ int setup_profiling_timer(unsigned int multiplier)
> > {
> > return -EINVAL;
> > }
> > +
> > +void smp_send_cpuup(int cpu)
> > +{
> > + smp_cross_call(cpumask_of(cpu), IPI_CPU_UP);
> > +}
> > +
> > --
> > 1.7.9.5
> >
> As the added commit message saying, the IPI can be launched in either
> of kernel or PSCI. But there will be a unknown type of IPI when dest
> core come to the kernel.
>
[toc] | [prev] | [next] | [standalone]
| From | Zhaoyang Huang <zhaoyang.huang@linaro.org> |
|---|---|
| Date | 2016-01-12 10:50 +0100 |
| Message-ID | <qQ3Kp-7vj-1@gated-at.bofh.it> |
| In reply to | #1307157 |
On 12 January 2016 at 17:38, Lorenzo Pieralisi
<lorenzo.pieralisi@arm.com> wrote:
> On Tue, Jan 12, 2016 at 10:17:42AM +0800, Zhaoyang Huang wrote:
>> On 12 January 2016 at 10:05, Zhaoyang Huang <zhaoyang.huang@linaro.org> wrote:
>> > In some ARM SOCs, IPI interrupt is used for hotplug in one cpu, that is,
>> > sending a IPI to the core in WFI and powerdown status. So Add a IPI
>> > entry for handle this kind of cpu up interrupt
>> > Launching the IPI can be done within PSCI, while there will be one unknown
>> > type of IPI as the dest core come up to the kernel world which will bring a
>> > warning so far.So add such type of IPI to handle the interrupt.
>
> You missed CC'ing ALKML for the second time and you were warned.
>
> You are adding a call to *send* an IPI in the kernel so the commit
> above is misleading.
>
> Acknowledge and clear the IRQ in FW so that the mechanism is completely
> implemented in FW (ie PSCI), that the CPU coming out of reset will run
> before getting to the kernel, this patch is not needed and we already
> explained to you why.
>
> Lorenzo
>
Thanks for clarification. Whereas, I got a kernel warning for an
unknown type of IPI
from the dest core. It seems that the irq is not acked and cleared by
the fw before
kernel.
hint:There is only bl31 for the testing SOC
>> > Signed-off-by: Zhaoyang Huang <zhaoyang.huang@spreadtrum.com>
>> > ---
>> > arch/arm64/include/asm/hardirq.h | 2 +-
>> > arch/arm64/kernel/smp.c | 10 ++++++++++
>> > 2 files changed, 11 insertions(+), 1 deletion(-)
>> >
>> > diff --git a/arch/arm64/include/asm/hardirq.h b/arch/arm64/include/asm/hardirq.h
>> > index a57601f..bb4edb7 100644
>> > --- a/arch/arm64/include/asm/hardirq.h
>> > +++ b/arch/arm64/include/asm/hardirq.h
>> > @@ -20,7 +20,7 @@
>> > #include <linux/threads.h>
>> > #include <asm/irq.h>
>> >
>> > -#define NR_IPI 5
>> > +#define NR_IPI 6
>> >
>> > typedef struct {
>> > unsigned int __softirq_pending;
>> > diff --git a/arch/arm64/kernel/smp.c b/arch/arm64/kernel/smp.c
>> > index b1adc51..20e63c9 100644
>> > --- a/arch/arm64/kernel/smp.c
>> > +++ b/arch/arm64/kernel/smp.c
>> > @@ -70,6 +70,7 @@ enum ipi_msg_type {
>> > IPI_CPU_STOP,
>> > IPI_TIMER,
>> > IPI_IRQ_WORK,
>> > + IPI_CPU_UP,
>> > };
>> >
>> > /*
>> > @@ -627,6 +628,7 @@ static const char *ipi_types[NR_IPI] __tracepoint_string = {
>> > S(IPI_CPU_STOP, "CPU stop interrupts"),
>> > S(IPI_TIMER, "Timer broadcast interrupts"),
>> > S(IPI_IRQ_WORK, "IRQ work interrupts"),
>> > + S(IPI_CPU_UP, "Hotplug cpu up by ipi"),
>> > };
>> >
>> > static void smp_cross_call(const struct cpumask *target, unsigned int ipinr)
>> > @@ -746,6 +748,8 @@ void handle_IPI(int ipinr, struct pt_regs *regs)
>> > irq_exit();
>> > break;
>> > #endif
>> > + case IPI_CPU_UP:
>> > + break;
>> >
>> > default:
>> > pr_crit("CPU%u: Unknown IPI message 0x%x\n", cpu, ipinr);
>> > @@ -798,3 +802,9 @@ int setup_profiling_timer(unsigned int multiplier)
>> > {
>> > return -EINVAL;
>> > }
>> > +
>> > +void smp_send_cpuup(int cpu)
>> > +{
>> > + smp_cross_call(cpumask_of(cpu), IPI_CPU_UP);
>> > +}
>> > +
>> > --
>> > 1.7.9.5
>> >
>> As the added commit message saying, the IPI can be launched in either
>> of kernel or PSCI. But there will be a unknown type of IPI when dest
>> core come to the kernel.
>>
[toc] | [prev] | [next] | [standalone]
| From | Mark Rutland <mark.rutland@arm.com> |
|---|---|
| Date | 2016-01-12 13:00 +0100 |
| Message-ID | <qQ5Me-nk-15@gated-at.bofh.it> |
| In reply to | #1307157 |
On Tue, Jan 12, 2016 at 09:38:20AM +0000, Lorenzo Pieralisi wrote: > On Tue, Jan 12, 2016 at 10:17:42AM +0800, Zhaoyang Huang wrote: > > On 12 January 2016 at 10:05, Zhaoyang Huang <zhaoyang.huang@linaro.org> wrote: > > > In some ARM SOCs, IPI interrupt is used for hotplug in one cpu, that is, > > > sending a IPI to the core in WFI and powerdown status. So Add a IPI > > > entry for handle this kind of cpu up interrupt > > > Launching the IPI can be done within PSCI, while there will be one unknown > > > type of IPI as the dest core come up to the kernel world which will bring a > > > warning so far.So add such type of IPI to handle the interrupt. > > You missed CC'ing ALKML for the second time and you were warned. > > You are adding a call to *send* an IPI in the kernel so the commit > above is misleading. > > Acknowledge and clear the IRQ in FW so that the mechanism is completely > implemented in FW (ie PSCI), that the CPU coming out of reset will run > before getting to the kernel, this patch is not needed and we already > explained to you why. > > Lorenzo I would also suggest that FW used the set of SGIs reserved for secure usage (i.e. ID8 - ID15), as these will not conflict with those the kernel uses. Thanks, Mark.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web