* kexec crash kernel boot failure on arm64
@ 2015-07-24 2:07 Anurup m
2015-07-24 9:29 ` Mark Rutland
0 siblings, 1 reply; 5+ messages in thread
From: Anurup m @ 2015-07-24 2:07 UTC (permalink / raw)
To: linux-arm-kernel
Hi All,
There is a problem observed with crash kernel boot in kdump on arm64.
On arm64 hardware board, when I enable the purgatory segment, the crash kernel doesnot boot.
When checked with trace32, it is observed that the control comes to purgatory_start routine,
but the instructions are seen as UNDEF and the boot hangs. But when I took the memory dump, the
contents were seen as proper(matching with the purgatory_start code).
I did some experiments to analyze this issue. Tried changing the Load order of kexec segments and
observed results as below
------------------------------------------------------------------------------
Segments Load order crash kernel boot status
-------------------- -------------------------
1) crash kernel, initrd, dtb. Elfcorehdr - Boot Success - without purgatory
2) crash kernel, initrd, dtb. Purgatory, elfcorehdr - HUNG as control does not reach purgatory segment.
3) crash kernel, elfcorehdr, purgatory, dtb, initrd - Boot Success
4) crash kernel, initrd, dtb, purgatory, elfcorehdr, - Boot Success
an extra segment(~20M)).
>From this I could infer that If I load a larger segment after purgatory (in the load order), the crash
Kernel boots. i.e. memory sync is taking some time.
So to clarify if memory sync is the Issue, I tried flush the data cache after writing the kexec segments.
kernel/kexec.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/kernel/kexec.c b/kernel/kexec.c index 7bb25f0..ca36aa0 100644
--- a/kernel/kexec.c
+++ b/kernel/kexec.c
@@ -1176,6 +1176,10 @@ static int kimage_load_crash_segment(struct kimage *image,
else
result = copy_from_user(ptr, buf, uchunk);
kexec_flush_icache_page(page);
+ /* Flush Dcache to make sure it is push to DRAM
+ * This is added as workaround for crash kernel
+ * boot failure */
+ __flush_dcache_area((__force void *)ptr, uchunk);
kunmap(page);
if (result) {
result = -EFAULT;
With the above change, control could reach purgatory_start, but this time it loops due to sha256_digest
Verify failure. It is able to boot to crash kernel (after comment verify_sha256_digest)
What could be the possible reasons for this issue? Please share your comments.
Note: This issue does not occur in Foundation Model.
Thanks & Regards,
Anurup
^ permalink raw reply [flat|nested] 5+ messages in thread
* kexec crash kernel boot failure on arm64
2015-07-24 2:07 kexec crash kernel boot failure on arm64 Anurup m
@ 2015-07-24 9:29 ` Mark Rutland
2015-07-27 5:18 ` Pratyush Anand
2015-07-27 5:33 ` Anurup M
0 siblings, 2 replies; 5+ messages in thread
From: Mark Rutland @ 2015-07-24 9:29 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Jul 24, 2015 at 03:07:24AM +0100, Anurup m wrote:
> Hi All,
>
> There is a problem observed with crash kernel boot in kdump on arm64.
With which kernel? Mainline doesn't have kexec or kdump support for
arm64.
> On arm64 hardware board, when I enable the purgatory segment, the crash kernel doesnot boot.
> When checked with trace32, it is observed that the control comes to purgatory_start routine,
> but the instructions are seen as UNDEF and the boot hangs. But when I took the memory dump, the
> contents were seen as proper(matching with the purgatory_start code).
>
> I did some experiments to analyze this issue. Tried changing the Load order of kexec segments and
> observed results as below
> ------------------------------------------------------------------------------
> Segments Load order crash kernel boot status
> -------------------- -------------------------
> 1) crash kernel, initrd, dtb. Elfcorehdr - Boot Success - without purgatory
> 2) crash kernel, initrd, dtb. Purgatory, elfcorehdr - HUNG as control does not reach purgatory segment.
> 3) crash kernel, elfcorehdr, purgatory, dtb, initrd - Boot Success
> 4) crash kernel, initrd, dtb, purgatory, elfcorehdr, - Boot Success
> an extra segment(~20M)).
>
> From this I could infer that If I load a larger segment after purgatory (in the load order), the crash
> Kernel boots. i.e. memory sync is taking some time.
>
> So to clarify if memory sync is the Issue, I tried flush the data cache after writing the kexec segments.
>
> kernel/kexec.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/kernel/kexec.c b/kernel/kexec.c index 7bb25f0..ca36aa0 100644
> --- a/kernel/kexec.c
> +++ b/kernel/kexec.c
> @@ -1176,6 +1176,10 @@ static int kimage_load_crash_segment(struct kimage *image,
> else
> result = copy_from_user(ptr, buf, uchunk);
> kexec_flush_icache_page(page);
> + /* Flush Dcache to make sure it is push to DRAM
> + * This is added as workaround for crash kernel
> + * boot failure */
> + __flush_dcache_area((__force void *)ptr, uchunk);
> kunmap(page);
> if (result) {
> result = -EFAULT;
>
> With the above change, control could reach purgatory_start, but this time it loops due to sha256_digest
> Verify failure. It is able to boot to crash kernel (after comment verify_sha256_digest)
>
> What could be the possible reasons for this issue? Please share your comments.
The only verify_sha256_digest I can see in the kernel tree is under
arch/x86. Without knowing what kernel you're running, it's not possible
to answer your question.
Mark.
^ permalink raw reply [flat|nested] 5+ messages in thread
* kexec crash kernel boot failure on arm64
2015-07-24 9:29 ` Mark Rutland
@ 2015-07-27 5:18 ` Pratyush Anand
2015-07-27 6:24 ` Anurup M
2015-07-27 5:33 ` Anurup M
1 sibling, 1 reply; 5+ messages in thread
From: Pratyush Anand @ 2015-07-27 5:18 UTC (permalink / raw)
To: linux-arm-kernel
On 24/07/2015:10:29:34 AM, Mark Rutland wrote:
> On Fri, Jul 24, 2015 at 03:07:24AM +0100, Anurup m wrote:
> > Hi All,
> >
> > There is a problem observed with crash kernel boot in kdump on arm64.
>
> With which kernel? Mainline doesn't have kexec or kdump support for
> arm64.
>
> > On arm64 hardware board, when I enable the purgatory segment, the crash kernel doesnot boot.
> > When checked with trace32, it is observed that the control comes to purgatory_start routine,
> > but the instructions are seen as UNDEF and the boot hangs. But when I took the memory dump, the
> > contents were seen as proper(matching with the purgatory_start code).
> >
> > I did some experiments to analyze this issue. Tried changing the Load order of kexec segments and
> > observed results as below
As Mark asked, its important to know, which kernel and which
kexec-tools you are using. I guess, you would be using either Geoff's
[1] master branch or Akashi's [2] kdump/v0.12 branch for kexec-tools.
Can you try to increase your crashkernel(=xM) size and use mem=
parameter appropriately for the primary kernel commandline and see if
it improves.
~Pratyush
[1] git://git.kernel.org/pub/scm/linux/kernel/git/geoff/kexec-tools.git
[2] https://git.linaro.org/people/takahiro.akashi/kexec-tools.git
^ permalink raw reply [flat|nested] 5+ messages in thread
* kexec crash kernel boot failure on arm64
2015-07-24 9:29 ` Mark Rutland
2015-07-27 5:18 ` Pratyush Anand
@ 2015-07-27 5:33 ` Anurup M
1 sibling, 0 replies; 5+ messages in thread
From: Anurup M @ 2015-07-27 5:33 UTC (permalink / raw)
To: linux-arm-kernel
Hi Mark,
Sorry that I missed the details.
please find it inline
On 7/24/2015 2:59 PM, Mark Rutland wrote:
> On Fri, Jul 24, 2015 at 03:07:24AM +0100, Anurup m wrote:
>> Hi All,
>>
>> There is a problem observed with crash kernel boot in kdump on arm64.
>
> With which kernel? Mainline doesn't have kexec or kdump support for
> arm64.
>
I use 3.19 kernel + kexec+kdump patches applied from
https://git.kernel.org/cgit/linux/kernel/git/geoff/linux-kexec.git/commit/?h=kexec-4.0-stable
>> On arm64 hardware board, when I enable the purgatory segment, the crash kernel doesnot boot.
>> When checked with trace32, it is observed that the control comes to purgatory_start routine,
>> but the instructions are seen as UNDEF and the boot hangs. But when I took the memory dump, the
>> contents were seen as proper(matching with the purgatory_start code).
>>
>> I did some experiments to analyze this issue. Tried changing the Load order of kexec segments and
>> observed results as below
>> ------------------------------------------------------------------------------
>> Segments Load order crash kernel boot status
>> -------------------- -------------------------
>> 1) crash kernel, initrd, dtb. Elfcorehdr - Boot Success - without purgatory
>> 2) crash kernel, initrd, dtb. Purgatory, elfcorehdr - HUNG as control does not reach purgatory segment.
>> 3) crash kernel, elfcorehdr, purgatory, dtb, initrd - Boot Success
>> 4) crash kernel, initrd, dtb, purgatory, elfcorehdr, - Boot Success
>> an extra segment(~20M)).
>>
>> From this I could infer that If I load a larger segment after purgatory (in the load order), the crash
>> Kernel boots. i.e. memory sync is taking some time.
>>
>> So to clarify if memory sync is the Issue, I tried flush the data cache after writing the kexec segments.
>>
>> kernel/kexec.c | 4 ++++
>> 1 file changed, 4 insertions(+)
>>
>> diff --git a/kernel/kexec.c b/kernel/kexec.c index 7bb25f0..ca36aa0 100644
>> --- a/kernel/kexec.c
>> +++ b/kernel/kexec.c
>> @@ -1176,6 +1176,10 @@ static int kimage_load_crash_segment(struct kimage *image,
>> else
>> result = copy_from_user(ptr, buf, uchunk);
>> kexec_flush_icache_page(page);
>> + /* Flush Dcache to make sure it is push to DRAM
>> + * This is added as workaround for crash kernel
>> + * boot failure */
>> + __flush_dcache_area((__force void *)ptr, uchunk);
>> kunmap(page);
>> if (result) {
>> result = -EFAULT;
>>
>> With the above change, control could reach purgatory_start, but this time it loops due to sha256_digest
>> Verify failure. It is able to boot to crash kernel (after comment verify_sha256_digest)
>>
>> What could be the possible reasons for this issue? Please share your comments.
>
> The only verify_sha256_digest I can see in the kernel tree is under
> arch/x86. Without knowing what kernel you're running, it's not possible
> to answer your question.
>
The verify_sha256_digest is done by purgatory module in kexec-tools(purgatory is the intermediate code executed between first and second kernel
).
The kexec-tools used is taken from
https://git.linaro.org/people/takahiro.akashi/kexec-tools.git/shortlog/refs/heads/kdump/v0.12
-Anurup
> Mark.
>
> .
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* kexec crash kernel boot failure on arm64
2015-07-27 5:18 ` Pratyush Anand
@ 2015-07-27 6:24 ` Anurup M
0 siblings, 0 replies; 5+ messages in thread
From: Anurup M @ 2015-07-27 6:24 UTC (permalink / raw)
To: linux-arm-kernel
On 7/27/2015 10:48 AM, Pratyush Anand wrote:
> On 24/07/2015:10:29:34 AM, Mark Rutland wrote:
>> On Fri, Jul 24, 2015 at 03:07:24AM +0100, Anurup m wrote:
>>> Hi All,
>>>
>>> There is a problem observed with crash kernel boot in kdump on arm64.
>>
>> With which kernel? Mainline doesn't have kexec or kdump support for
>> arm64.
>>
>>> On arm64 hardware board, when I enable the purgatory segment, the crash kernel doesnot boot.
>>> When checked with trace32, it is observed that the control comes to purgatory_start routine,
>>> but the instructions are seen as UNDEF and the boot hangs. But when I took the memory dump, the
>>> contents were seen as proper(matching with the purgatory_start code).
>>>
>>> I did some experiments to analyze this issue. Tried changing the Load order of kexec segments and
>>> observed results as below
>
> As Mark asked, its important to know, which kernel and which
> kexec-tools you are using. I guess, you would be using either Geoff's
> [1] master branch or Akashi's [2] kdump/v0.12 branch for kexec-tools.
> Can you try to increase your crashkernel(=xM) size and use mem=
> parameter appropriately for the primary kernel commandline and see if
> it improves.
>
Thanks you for the reply. I shall try and let you know.
> ~Pratyush
>
> [1] git://git.kernel.org/pub/scm/linux/kernel/git/geoff/kexec-tools.git
> [2] https://git.linaro.org/people/takahiro.akashi/kexec-tools.git
>
>
>
> .
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-07-27 6:24 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-24 2:07 kexec crash kernel boot failure on arm64 Anurup m
2015-07-24 9:29 ` Mark Rutland
2015-07-27 5:18 ` Pratyush Anand
2015-07-27 6:24 ` Anurup M
2015-07-27 5:33 ` Anurup M
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).