From: sricharan@codeaurora.org
To: Andy Strohman <andy@uplevelsystems.com>
Cc: linux-arm-msm@vger.kernel.org, kexec@lists.infradead.org,
linux-arm-msm-owner@vger.kernel.org
Subject: Re: kexec failures on ipq4019
Date: Mon, 18 Jun 2018 12:01:07 +0530 [thread overview]
Message-ID: <b741eca8c2d1bee8a8db7136c3061064@codeaurora.org> (raw)
In-Reply-To: <CAAGQ2nQNQ-aFkcrQHNA6H5TZ1tTovtfO_0Ohfndn9jXy13Hc6A@mail.gmail.com>
Hi Andy,
On 2018-06-16 06:37, Andy Strohman wrote:
> Hi,
>
> I'm trying to get kexec to work consistently for ipq4019. I load
> the crash kernel like this:
>
> kexec --type zImage -p zImage-initramfs
> --dtb=image-qcom-ipq4019-eap1300.dtb --append="maxcpus=1
> reset_devices" --image-size=34419456
>
> I have reserved 64MB of memory for the crash kernel with parameter:
> crashkernel=64M
>
> This seems to work ~70% of the time. When it doesn't work, I see the
> "bye!" message followed by a 5-10 second hang without output. Then
> the machine resets.
>
> I've been testing with:
> echo c > /proc/sysrq-trigger
>
> Does anyone have an idea of what may be causing the failures or how
> to troubleshoot this?
>
I will try to reproduce this and get back to you shortly.
Regards,
Sricharan
> I'm using OpenWRT with kernel 4.14.37. I added the following patch
> in order to load the crash kernel:
>
> --- a/arch/arm/mach-qcom/platsmp.c
> +++ b/arch/arm/mach-qcom/platsmp.c
> @@ -332,6 +332,12 @@ static void __init qcom_smp_prepare_cpus
> }
> }
>
> +/* Needed by kexec and platform_can_cpu_hotplug() */
> +int qcom_cpu_kill(unsigned int cpu)
> +{
> + return 1;
> +}
> +
> static const struct smp_operations smp_msm8660_ops __initconst = {
> .smp_prepare_cpus = qcom_smp_prepare_cpus,
> .smp_secondary_init = qcom_secondary_init,
> @@ -358,6 +364,7 @@ static const struct smp_operations qcom_
> .smp_boot_secondary = kpssv2_boot_secondary,
> #ifdef CONFIG_HOTPLUG_CPU
> .cpu_die = qcom_cpu_die,
> + .cpu_kill = qcom_cpu_kill,
> #endif
> };
> CPU_METHOD_OF_DECLARE(qcom_smp_kpssv2, "qcom,kpss-acc-v2",
> &qcom_smp_kpssv2_ops);
>
>
> Thanks,
>
> Andy
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
WARNING: multiple messages have this Message-ID (diff)
From: sricharan-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org
To: Andy Strohman <andy-ms2BWiETKxTkQYj/0HfcvtBPR1lH4CV8@public.gmane.org>
Cc: linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-arm-msm-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: kexec failures on ipq4019
Date: Mon, 18 Jun 2018 12:01:07 +0530 [thread overview]
Message-ID: <b741eca8c2d1bee8a8db7136c3061064@codeaurora.org> (raw)
In-Reply-To: <CAAGQ2nQNQ-aFkcrQHNA6H5TZ1tTovtfO_0Ohfndn9jXy13Hc6A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
Hi Andy,
On 2018-06-16 06:37, Andy Strohman wrote:
> Hi,
>
> I'm trying to get kexec to work consistently for ipq4019. I load
> the crash kernel like this:
>
> kexec --type zImage -p zImage-initramfs
> --dtb=image-qcom-ipq4019-eap1300.dtb --append="maxcpus=1
> reset_devices" --image-size=34419456
>
> I have reserved 64MB of memory for the crash kernel with parameter:
> crashkernel=64M
>
> This seems to work ~70% of the time. When it doesn't work, I see the
> "bye!" message followed by a 5-10 second hang without output. Then
> the machine resets.
>
> I've been testing with:
> echo c > /proc/sysrq-trigger
>
> Does anyone have an idea of what may be causing the failures or how
> to troubleshoot this?
>
I will try to reproduce this and get back to you shortly.
Regards,
Sricharan
> I'm using OpenWRT with kernel 4.14.37. I added the following patch
> in order to load the crash kernel:
>
> --- a/arch/arm/mach-qcom/platsmp.c
> +++ b/arch/arm/mach-qcom/platsmp.c
> @@ -332,6 +332,12 @@ static void __init qcom_smp_prepare_cpus
> }
> }
>
> +/* Needed by kexec and platform_can_cpu_hotplug() */
> +int qcom_cpu_kill(unsigned int cpu)
> +{
> + return 1;
> +}
> +
> static const struct smp_operations smp_msm8660_ops __initconst = {
> .smp_prepare_cpus = qcom_smp_prepare_cpus,
> .smp_secondary_init = qcom_secondary_init,
> @@ -358,6 +364,7 @@ static const struct smp_operations qcom_
> .smp_boot_secondary = kpssv2_boot_secondary,
> #ifdef CONFIG_HOTPLUG_CPU
> .cpu_die = qcom_cpu_die,
> + .cpu_kill = qcom_cpu_kill,
> #endif
> };
> CPU_METHOD_OF_DECLARE(qcom_smp_kpssv2, "qcom,kpss-acc-v2",
> &qcom_smp_kpssv2_ops);
>
>
> Thanks,
>
> Andy
next prev parent reply other threads:[~2018-06-18 6:31 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-16 1:07 kexec failures on ipq4019 Andy Strohman
2018-06-16 1:07 ` Andy Strohman
2018-06-18 6:31 ` sricharan [this message]
2018-06-18 6:31 ` sricharan-sgV2jX0FEOL9JmXXK+q4OQ
2018-06-26 21:17 ` Andy Strohman
2018-06-26 21:17 ` Andy Strohman
2018-06-28 4:33 ` Sricharan R
2018-06-28 4:33 ` Sricharan R
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=b741eca8c2d1bee8a8db7136c3061064@codeaurora.org \
--to=sricharan@codeaurora.org \
--cc=andy@uplevelsystems.com \
--cc=kexec@lists.infradead.org \
--cc=linux-arm-msm-owner@vger.kernel.org \
--cc=linux-arm-msm@vger.kernel.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.