[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CALAqxLUxh3=LhoHxqiRm_5L4G6m1Vctp=aUg+9_uAtLkFwW9bw@mail.gmail.com>
Date: Fri, 15 Jan 2016 14:41:55 -0800
From: John Stultz <john.stultz@...aro.org>
To: Andy Yan <andy.yan@...k-chips.com>
Cc: Heiko Stübner <heiko@...ech.de>,
Arnd Bergmann <arnd@...db.de>, linux@...ck-us.net,
Kumar Gala <galak@...eaurora.org>,
Ian Campbell <ijc+devicetree@...lion.org.uk>,
Rob Herring <robh+dt@...nel.org>,
Catalin Marinas <catalin.marinas@....com>,
geert+renesas@...der.be, sre@...nel.org,
Olof Johansson <olof@...om.net>, dbaryshkov@...il.com,
Alexandre Belloni <alexandre.belloni@...e-electrons.com>,
jun.nie@...aro.org,
Paweł Moll <pawel.moll@....com>,
f.fainelli@...il.com, Will Deacon <will.deacon@....com>,
linux-rockchip@...ts.infradead.org, devicetree@...r.kernel.org,
Linux PM list <linux-pm@...r.kernel.org>,
Russell King - ARM Linux <linux@....linux.org.uk>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>, lorenzo.pieralisi@....com,
moritz.fischer@...us.com, cernekee@...il.com,
lkml <linux-kernel@...r.kernel.org>, dwmw2@...radead.org,
Mark Rutland <mark.rutland@....com>,
maxime.ripard@...e-electrons.com
Subject: Re: [PATCH v2 1/4] dt-bindings: power: reset: add document for
reboot-mode driver
On Tue, Jan 12, 2016 at 3:29 AM, Andy Yan <andy.yan@...k-chips.com> wrote:
> add device tree binding document for reboot-mode driver
>
> Signed-off-by: Andy Yan <andy.yan@...k-chips.com>
>
> ---
>
> Changes in v2: None
> Changes in v1: None
>
> .../bindings/power/reset/reboot-mode.txt | 41 +++++++++++++++++
> .../bindings/power/reset/syscon-reboot-mode.txt | 52 ++++++++++++++++++++++
> 2 files changed, 93 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/power/reset/reboot-mode.txt
> create mode 100644 Documentation/devicetree/bindings/power/reset/syscon-reboot-mode.txt
>
> diff --git a/Documentation/devicetree/bindings/power/reset/reboot-mode.txt b/Documentation/devicetree/bindings/power/reset/reboot-mode.txt
> new file mode 100644
> index 0000000..81d9f66
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/power/reset/reboot-mode.txt
> @@ -0,0 +1,41 @@
> +Generic reboot mode core map driver
> +
> +This driver get reboot mode arguments and call the write
> +interface to stores the magic value in special register
> +or ram . Then the bootloader can read it and take different
> +action according to the argument stored.
> +
> +Required properties:
> +- compatible: only support "syscon-reboot-mode" now.
> +
> +Each mode is represented as a sub-node of reboot_mode:
> +
> +Subnode required properties:
> +- linux,mode: reboot mode command,such as "loader", "recovery", "fastboot".
> +- loader,magic: magic number for the mode, this is vendor specific.
> +
> +Example:
> + reboot_mode {
> + compatible = "syscon-reboot-mode";
> + offset = <0x40>;
> +
> + loader {
> + linux,mode = "loader";
> + loader,magic = <BOOT_LOADER>;
> + };
> +
> + maskrom {
> + linux,mode = "maskrom";
> + loader,magic = <BOOT_MASKROM>;
> + };
> +
> + recovery {
> + linux,mode = "recovery";
> + loader,magic = <BOOT_RECOVERY>;
> + };
> +
> + fastboot {
> + linux,mode = "fastboot";
> + loader,magic = <BOOT_FASTBOOT>;
> + };
> + };
So one minor thought here. While the commands are somewhat vendor
specific, would it be a good idea for the example commands to match
the common commands on Android devices? For example, usually
"bootloader" is what gets you into fastboot mode on nexus devices.
thanks
-john
Powered by blists - more mailing lists