[PATCH v2] arm64: kdump: Avoid to power off nonpanic CPUs

James Morse james.morse at arm.com
Wed Nov 29 08:02:00 PST 2017


Hi Mathieu,

On 21/11/17 19:06, Mathieu Poirier wrote:
> On 21 November 2017 at 09:47, James Morse <james.morse at arm.com> wrote:
>> On 18/11/17 09:12, Leo Yan wrote:
>>> The upper patch has no issue if enabled crash dump only; but if enabled
>>> crash dump and Coresight debug module for panic dumping at the meantime,
>>> nonpanic CPUs are powered off in crash dump flow, later this may
>>> introduce conflicts with the Coresight debug module because Coresight
>>> debug registers dumping requires the CPU must be powered on for some
>>> platforms (e.g. Hi6220 on Hikey board).
>>
>> Is it just Hikey with this problem?
> 
> Any board with the CoreSight debug registers being part of the core
> power domain will exhibit that behaviour.

When the external-debugger interface is internal?
The problem is Linux can't know this is the case and that firmware isn't doing
the right thing to work around it.

If we were to take the line firmware must work around this SoC-specific
integration issue, which boards break? Is it just Hikey? Will a user of this
coresight kdump thing know how to update the firmware?

I want to avoid fixing this in such a way that firmware never needs to do the
right thing, as Linux always has to work round it... (but that ship may have
sailed!)...


>>> If we cannot keep the CPUs
>>> powered on, we can see the hardware lockup issue when access Coresight
>>> debug registers.
>>
>> By 'hardware lockup issue' do you mean you want to use the Coresight debug
>> registers to inspect what caused the panic()=>kdump in the first place?
>> You mention 'dumping requires the CPU [to] be powered on', I assume it loses
>> state when powered off.
>>
>> ...or does the CPU hang if you use PSCI to power it off while the Coresight
>> debug is running?
>>
>>
>>> To fix this issue, this commit bypasses CPU hotplug operation in func
>>> crash_smp_send_stop() when coresight CPU debug module has been enabled
>>> and let CPUs to run into WFE/WFI states so CPUs can still be powered on
>>> after crash dump. This finally is more safe for Coresight debug module
>>> to dump registers and avoid hardware lockup.
>>
>> Ah, there is a hardware-lockup.
> 
> Right, this is a classic case of accessing registers on a device that
> isn't powered.

Sounds fun.
This wasn't particularly clear from this commit message.


>> Wouldn't the same thing happen if I poke the sysfs cpu online/offline interface
>> while this thing is running? (Not to mention cpu-idle)
>>
>> Shouldn't this be fixed in firmware? If EL3 can see the Coresight debug is running,
>> it can hold the CPU in WFE instead of trying to actually power off. Firmware can
>> know if the debug hardware and the CPU are powered together, (which I guess is
>> why this is a problem on Hikey).
>
> I agree that firmware is the way to go and the driver is provisioning
> for that already.  The problem is that the goal posts have moved a
> little.
> 
> When Leo first introduced the coresight-cpu-debug driver in June
> crash_smp_send_stop() wasn't resolving to anything.

(You were depending on a bug that broke kdump).


> As part of the
> panic notifier chain the driver was receiving a notification and
> setting the COREPURQ and CORENPDRQ in register EDPCR for each CPU.

>From Documentation/trace/coresight-cpu-debug.txt, these bits inhibit power-off
on 'sane' systems.


> That was enough for the coresight-cpu-debug driver to do its work
> before the CPUs got switched off by operations carried out after calls
> to the notifier chain. 

Ugh, because smp_send_stop() doesn't bother trying to turn off the CPUs. (fixing
this is on my todo list, glad to know what it'll break!)


> Firmware in Juno had been implemented to
> properly deal with the COREPURQ and CORENPDRQ signals.

(Would coresight-cpu-debug.txt classify Juno as sane?)

What do you expect firmware do to here? It looks like you are using CORENPDRQ as
a flag for firmware on insane systems to not do the power-down.

Does this Juno firmware work with cpu-idle and coresight debug?


> I see two ways to deal with this:
> 
> 1) Set COREPURQ and CORENPDRQ when the crash collection capability is
> enabled in the the coresight-cpu-debug driver (either at boot time or
> from sysFS). 

> That is easy to do but prevent CPUs from being switched
> off as soon as the feature is enabled.

...isn't that what you want?

>From coresight-cpu-debug.txt, it looks like this wouldn't work on an insane
system unless firmware is reading those bits. Can you spot these systems from
the power-domains property in the DT?

Do you have any way of knowing whether firmware is working around this issue?

I want to keep the current behaviour for systems not using coresight-cpu-debug
and ideally for those where firmware is doing the right thing. i.e. linux
powers-off CPUs when it isn't using them. This rules out this-patches
compile-time approach, as it all needs to work with a single kernel image.


Fixing this in firmware means this thing would work over cpu-idle, and the user
doesn't need to know about the SoCs power domains in order to craft a
coresight-debug compatible cmdline.

(What are you using nohlt for?)


Thanks,

James

>>> diff --git a/arch/arm64/kernel/smp.c b/arch/arm64/kernel/smp.c
>>> index 9f7195a..31dab1f 100644
>>> --- a/arch/arm64/kernel/smp.c
>>> +++ b/arch/arm64/kernel/smp.c
>>> @@ -856,7 +856,7 @@ static void ipi_cpu_crash_stop(unsigned int cpu, struct pt_regs *regs)
>>>
>>>       local_irq_disable();
>>>
>>> -#ifdef CONFIG_HOTPLUG_CPU
>>> +#if defined(CONFIG_HOTPLUG_CPU) && !defined(CONFIG_CORESIGHT_CPU_DEBUG)
>>>       if (cpu_ops[cpu]->cpu_die)
>>>               cpu_ops[cpu]->cpu_die(cpu);
>>>  #endif
>>>
>>




More information about the linux-arm-kernel mailing list