All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bruce Mitchell <bruce.mitchell@linux.vnet.ibm.com>
To: Joel Stanley <joel@jms.id.au>,
	openbmc@lists.ozlabs.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Cc: Andrew Jeffery <andrew@aj.id.au>, Eddie James <eajames@linux.ibm.com>
Subject: Re: [PATCH linux-next tag: next-20210322] ARM: aspeed: Add CPU hotplug callbacks for kexec support
Date: Mon, 22 Mar 2021 11:07:02 -0700	[thread overview]
Message-ID: <7c8ca40f-3f73-d8ea-08e2-ee7c0b0b6ab1@linux.vnet.ibm.com> (raw)
In-Reply-To: <ddb2757d-36df-8695-ce9b-ab9e26f3d457@linux.vnet.ibm.com>

On 3/22/2021 09:40, Bruce Mitchell wrote:
> On 3/22/2021 08:57, Bruce Mitchell wrote:
>> These callbacks are required for kexec to function. The AST2600 does not
>> expose any controls for powering down it's CPU cores, so we borrow the
>> approach taken from socfpga and wait in the idle loop.
>>
>> Author: Joel Stanley <joel@jms.id.au>
>>
>> Signed-off-by: Bruce Mitchell <bruce.mitchell@linux.vnet.ibm.com>
>> ---
>>   arch/arm/mach-aspeed/platsmp.c | 20 ++++++++++++++++++++
>>   1 file changed, 20 insertions(+)
>>
>> diff --git a/arch/arm/mach-aspeed/platsmp.c 
>> b/arch/arm/mach-aspeed/platsmp.c
>> index 2324becf7991..1ae3ff5a9701 100644
>> --- a/arch/arm/mach-aspeed/platsmp.c
>> +++ b/arch/arm/mach-aspeed/platsmp.c
>> @@ -7,6 +7,8 @@
>>   #include <linux/of.h>
>>   #include <linux/smp.h>
>>
>> +#include <asm/proc-fns.h>
>> +
>>   #define BOOT_ADDR    0x00
>>   #define BOOT_SIG    0x04
>>
>> @@ -53,9 +55,27 @@ static void __init 
>> aspeed_g6_smp_prepare_cpus(unsigned int max_cpus)
>>       iounmap(base);
>>   }
>>
>> +#ifdef CONFIG_HOTPLUG_CPU
>> +static void aspeed_g6_cpu_die(unsigned int cpu)
>> +{
>> +        /* Do WFI. If we wake up early, go back into WFI */
>> +        while (1)
>> +                cpu_do_idle();
>> +}
>> +
>> +static int aspeed_g6_cpu_kill(unsigned int cpu)
>> +{
>> +        return 1;
>> +}
>> +#endif
>> +
>>   static const struct smp_operations aspeed_smp_ops __initconst = {
>>       .smp_prepare_cpus    = aspeed_g6_smp_prepare_cpus,
>>       .smp_boot_secondary    = aspeed_g6_boot_secondary,
>> +#ifdef CONFIG_HOTPLUG_CPU
>> +    .cpu_die        = aspeed_g6_cpu_die,
>> +    .cpu_kill        = aspeed_g6_cpu_kill,
>> +#endif
>>   };
>>
>>   CPU_METHOD_OF_DECLARE(aspeed_smp, "aspeed,ast2600-smp", 
>> &aspeed_smp_ops);
>>
> 
> Adding Andrew Jeffery and Eddie James to the CC list.
> 

Adding linux-kernel@vger.kernel.org and 
linux-arm-kernel@lists.infradead.org based feedback.

WARNING: multiple messages have this Message-ID (diff)
From: Bruce Mitchell <bruce.mitchell@linux.vnet.ibm.com>
To: Joel Stanley <joel@jms.id.au>,
	openbmc@lists.ozlabs.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Cc: Andrew Jeffery <andrew@aj.id.au>, Eddie James <eajames@linux.ibm.com>
Subject: Re: [PATCH linux-next tag: next-20210322] ARM: aspeed: Add CPU hotplug callbacks for kexec support
Date: Mon, 22 Mar 2021 11:07:02 -0700	[thread overview]
Message-ID: <7c8ca40f-3f73-d8ea-08e2-ee7c0b0b6ab1@linux.vnet.ibm.com> (raw)
In-Reply-To: <ddb2757d-36df-8695-ce9b-ab9e26f3d457@linux.vnet.ibm.com>

On 3/22/2021 09:40, Bruce Mitchell wrote:
> On 3/22/2021 08:57, Bruce Mitchell wrote:
>> These callbacks are required for kexec to function. The AST2600 does not
>> expose any controls for powering down it's CPU cores, so we borrow the
>> approach taken from socfpga and wait in the idle loop.
>>
>> Author: Joel Stanley <joel@jms.id.au>
>>
>> Signed-off-by: Bruce Mitchell <bruce.mitchell@linux.vnet.ibm.com>
>> ---
>>   arch/arm/mach-aspeed/platsmp.c | 20 ++++++++++++++++++++
>>   1 file changed, 20 insertions(+)
>>
>> diff --git a/arch/arm/mach-aspeed/platsmp.c 
>> b/arch/arm/mach-aspeed/platsmp.c
>> index 2324becf7991..1ae3ff5a9701 100644
>> --- a/arch/arm/mach-aspeed/platsmp.c
>> +++ b/arch/arm/mach-aspeed/platsmp.c
>> @@ -7,6 +7,8 @@
>>   #include <linux/of.h>
>>   #include <linux/smp.h>
>>
>> +#include <asm/proc-fns.h>
>> +
>>   #define BOOT_ADDR    0x00
>>   #define BOOT_SIG    0x04
>>
>> @@ -53,9 +55,27 @@ static void __init 
>> aspeed_g6_smp_prepare_cpus(unsigned int max_cpus)
>>       iounmap(base);
>>   }
>>
>> +#ifdef CONFIG_HOTPLUG_CPU
>> +static void aspeed_g6_cpu_die(unsigned int cpu)
>> +{
>> +        /* Do WFI. If we wake up early, go back into WFI */
>> +        while (1)
>> +                cpu_do_idle();
>> +}
>> +
>> +static int aspeed_g6_cpu_kill(unsigned int cpu)
>> +{
>> +        return 1;
>> +}
>> +#endif
>> +
>>   static const struct smp_operations aspeed_smp_ops __initconst = {
>>       .smp_prepare_cpus    = aspeed_g6_smp_prepare_cpus,
>>       .smp_boot_secondary    = aspeed_g6_boot_secondary,
>> +#ifdef CONFIG_HOTPLUG_CPU
>> +    .cpu_die        = aspeed_g6_cpu_die,
>> +    .cpu_kill        = aspeed_g6_cpu_kill,
>> +#endif
>>   };
>>
>>   CPU_METHOD_OF_DECLARE(aspeed_smp, "aspeed,ast2600-smp", 
>> &aspeed_smp_ops);
>>
> 
> Adding Andrew Jeffery and Eddie James to the CC list.
> 

Adding linux-kernel@vger.kernel.org and 
linux-arm-kernel@lists.infradead.org based feedback.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2021-03-22 18:08 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-22 15:57 [PATCH linux-next tag: next-20210322] ARM: aspeed: Add CPU hotplug callbacks for kexec support Bruce Mitchell
2021-03-22 16:40 ` Bruce Mitchell
2021-03-22 18:07   ` Bruce Mitchell [this message]
2021-03-22 18:07     ` Bruce Mitchell

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=7c8ca40f-3f73-d8ea-08e2-ee7c0b0b6ab1@linux.vnet.ibm.com \
    --to=bruce.mitchell@linux.vnet.ibm.com \
    --cc=andrew@aj.id.au \
    --cc=eajames@linux.ibm.com \
    --cc=joel@jms.id.au \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=openbmc@lists.ozlabs.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.