linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: takahiro.akashi@linaro.org (AKASHI Takahiro)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v23 9/9] Documentation: dt: chosen properties for arm64 kdump
Date: Thu, 4 Aug 2016 14:10:11 +0900	[thread overview]
Message-ID: <20160804051010.GK7995@linaro.org> (raw)
In-Reply-To: <20160728075511.GA7995@linaro.org>

Rob,

On Thu, Jul 28, 2016 at 04:55:11PM +0900, AKASHI Takahiro wrote:
> Rob,
> 
> On Wed, Jul 27, 2016 at 10:09:33AM -0500, Rob Herring wrote:
> > On Tue, Jul 26, 2016 at 05:02:06PM +0900, AKASHI Takahiro wrote:
> > > From: James Morse <james.morse@arm.com>
> > > 
> > > Add documentation for
> > > 	linux,crashkernel-base and crashkernel-size,
> > > 	linux,usable-memory-range, and
> > > 	linux,elfcorehdr
> > > used by arm64 kexec/kdump to decribe the kdump reserved area, and
> > > the elfcorehdr's location within it.
> > > 
> > > Signed-off-by: James Morse <james.morse@arm.com>
> > > [takahiro.akashi at linaro.org:
> > >     renamed "usable-memory" to "usable-memory-range",
> > >     added "linux,crashkernel-base" and "-size" ]
> > > Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
> > > ---
> > >  Documentation/devicetree/bindings/chosen.txt | 45 ++++++++++++++++++++++++++++
> > >  1 file changed, 45 insertions(+)
> > > 
> > > diff --git a/Documentation/devicetree/bindings/chosen.txt b/Documentation/devicetree/bindings/chosen.txt
> > > index 6ae9d82..d7a3a86 100644
> > > --- a/Documentation/devicetree/bindings/chosen.txt
> > > +++ b/Documentation/devicetree/bindings/chosen.txt
> > > @@ -52,3 +52,48 @@ This property is set (currently only on PowerPC, and only needed on
> > >  book3e) by some versions of kexec-tools to tell the new kernel that it
> > >  is being booted by kexec, as the booting environment may differ (e.g.
> > >  a different secondary CPU release mechanism)
> > > +
> > > +linux,crashkernel-base
> > > +linux,crashkernel-size
> > > +----------------------
> > > +These properties are set (on PowerPC and arm64) during kdump to tell
> > > +use-space tools, like kexec-tools, the base address of the crash-dump
> > 
> > s/use/user/
> >
> > Ideally, userspace should not care whether this comes from DT, kernel 
> > command-line or somewhere else and should be exposed in some source 
> > independent way. However, that's not really the problem for the binding.
> 
> Yeah, I will remove "user-space"-related description as Mark also
> commented before.
> 
> > > +kernel's reserved area of memory and the size. e.g.
> > > +
> > > +/ {
> > > +	chosen {
> > > +		linux,crashkernel-base = <0x9 0xf0000000>;
> > > +		linux,crashkernel-size = <0x0 0x10000000>;
> > > +	};
> > > +};
> > > +
> > > +linux,usable-memory-range
> > > +-------------------------
> > > +
> > > +This property is set (currently only on arm64) during kdump to tell
> > > +the crash-dump kernel the base address of its reserved area of memory,
> > > +and the size. e.g.
> > > +
> > > +/ {
> > > +	chosen {
> > > +		linux,usable-memory-range = <0x9 0xf0000000 0x0 0x10000000>;
> > 
> > This is the same range as linux,crashkernel-*, but used by the 2nd 
> > kernel? Why not just update the memory node or use command line mem= 
> > parameter?
> 
> Please see:
> http://lists.infradead.org/pipermail/linux-arm-kernel/2016-July/443225.html
> 
> There was also a discussion that simply appending "mem=", or more generally
> any parameter, to a command line might break some assumption of order of
> parameters in the future.
> So adding a DT property would be a better way.

Do you have any other comments about those properties?

-Takahiro AKASHI

> Thanks,
> -Takahiro AKASHI
> 
> > Why has PPC not need this and ARM does? 
> > 
> > > +	};
> > > +};
> > > +
> > > +Please note that, if this property is present, any memory regions under
> > > +"memory" nodes will be ignored.
> > > +
> > > +linux,elfcorehdr
> > > +----------------
> > > +
> > > +This property is set (currently only on arm64) during kdump to tell
> > > +the crash-dump kernel the address and size of the elfcorehdr that describes
> > > +the old kernel's memory as an elf file. This memory must reside within
> > > +the area described by 'linux,usable-memory-range'. e.g.
> > > +
> > > +/ {
> > > +	chosen {
> > > +		linux,usable-memory = <0x9 0xf0000000 0x0 0x10000000>;
> > > +		linux,elfcorehdr = <0x9 0xfffff000 0x0 0x800>;
> > > +	};
> > > +};
> > > -- 
> > > 2.9.0
> > > 

  parent reply	other threads:[~2016-08-04  5:10 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-26  7:56 [PATCH v23 0/9] arm64: add kdump support AKASHI Takahiro
2016-07-26  7:56 ` [PATCH v23 1/9] arm64: kdump: reserve memory for crash dump kernel AKASHI Takahiro
2016-07-26  7:56 ` [PATCH v23 2/9] memblock: add memblock_cap_memory_range() AKASHI Takahiro
2016-07-26  7:56 ` [PATCH v23 3/9] arm64: limit memory regions based on DT property, usable-memory-range AKASHI Takahiro
2016-07-26  7:56 ` [PATCH v23 4/9] arm64: kdump: implement machine_crash_shutdown() AKASHI Takahiro
2016-07-26  7:56 ` [PATCH v23 5/9] arm64: kdump: add kdump support AKASHI Takahiro
2016-07-26  7:56 ` [PATCH v23 6/9] arm64: kdump: add VMCOREINFO's for user-space coredump tools AKASHI Takahiro
2016-07-26  7:56 ` [PATCH v23 7/9] arm64: kdump: enable kdump in the arm64 defconfig AKASHI Takahiro
2016-07-26  7:56 ` [PATCH v23 8/9] arm64: kdump: update a kernel doc AKASHI Takahiro
2016-07-26  8:02 ` [PATCH v23 9/9] Documentation: dt: chosen properties for arm64 kdump AKASHI Takahiro
2016-07-27 15:09   ` Rob Herring
     [not found]     ` <20160728075511.GA7995@linaro.org>
2016-08-04  5:10       ` AKASHI Takahiro [this message]
2016-07-26  8:09 ` [PATCH v23 0/9] arm64: add kdump support AKASHI Takahiro
2016-07-29 16:26   ` Ruslan Bilovol
2016-07-29 17:08     ` Geoff Levand
2016-07-29 17:17       ` Pratyush Anand
2016-07-29 17:13     ` Pratyush Anand
2016-08-01  4:37       ` AKASHI Takahiro
2016-08-01  6:21         ` Pratyush Anand
2016-08-01  6:46           ` AKASHI Takahiro
2016-08-04  5:20     ` AKASHI Takahiro

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=20160804051010.GK7995@linaro.org \
    --to=takahiro.akashi@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.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 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).