From: mark.rutland@arm.com (Mark Rutland)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm64: dts: Added syscon-reboot node for FSL's LS2085A SoC
Date: Tue, 27 Oct 2015 16:34:41 +0000 [thread overview]
Message-ID: <20151027163441.GK3091@leverpostej> (raw)
In-Reply-To: <1445650280-9966-1-git-send-email-German.Rivera@freescale.com>
On Fri, Oct 23, 2015 at 08:31:20PM -0500, J. German Rivera wrote:
> Added sys-reboot node to the FSL's LS2085A SoC DT to leverage
> the ARM-generic reboot mechanism for this SoC. This mechanism
> is enabled through CONFIG_POWER_RESET_SYSCON.
Per the comments in arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi, the
platform has PSCI 0.2+, and therefore already has system reset
functionality.
Given that, why is this necessary?
Thanks,
Mark.
> Signed-off-by: J. German Rivera <German.Rivera@freescale.com>
> ---
> arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi
> index e281ceb..6f82163 100644
> --- a/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi
> +++ b/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi
> @@ -131,6 +131,18 @@
> interrupts = <1 9 0x4>;
> };
>
> + rst_ccsr: rstccsr at 1E60000 {
> + compatible = "syscon";
> + reg = <0x0 0x1E60000 0x0 0x10000>;
> + };
> +
> + reboot at 65024000 {
> + compatible ="syscon-reboot";
> + regmap = <&rst_ccsr>;
> + offset = <0x0>;
> + mask = <0x2>;
> + };
> +
> timer {
> compatible = "arm,armv8-timer";
> interrupts = <1 13 0x8>, /* Physical Secure PPI, active-low */
> --
> 2.3.3
>
WARNING: multiple messages have this Message-ID (diff)
From: Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>
To: "J. German Rivera"
<German.Rivera-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
Cc: robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
bhupesh.sharma-KZfg59tc24xl57MIdRCFDg@public.gmane.org,
stuart.yoder-KZfg59tc24xl57MIdRCFDg@public.gmane.org,
leoli-KZfg59tc24xl57MIdRCFDg@public.gmane.org
Subject: Re: [PATCH] arm64: dts: Added syscon-reboot node for FSL's LS2085A SoC
Date: Tue, 27 Oct 2015 16:34:41 +0000 [thread overview]
Message-ID: <20151027163441.GK3091@leverpostej> (raw)
In-Reply-To: <1445650280-9966-1-git-send-email-German.Rivera-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
On Fri, Oct 23, 2015 at 08:31:20PM -0500, J. German Rivera wrote:
> Added sys-reboot node to the FSL's LS2085A SoC DT to leverage
> the ARM-generic reboot mechanism for this SoC. This mechanism
> is enabled through CONFIG_POWER_RESET_SYSCON.
Per the comments in arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi, the
platform has PSCI 0.2+, and therefore already has system reset
functionality.
Given that, why is this necessary?
Thanks,
Mark.
> Signed-off-by: J. German Rivera <German.Rivera-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
> ---
> arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi
> index e281ceb..6f82163 100644
> --- a/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi
> +++ b/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi
> @@ -131,6 +131,18 @@
> interrupts = <1 9 0x4>;
> };
>
> + rst_ccsr: rstccsr@1E60000 {
> + compatible = "syscon";
> + reg = <0x0 0x1E60000 0x0 0x10000>;
> + };
> +
> + reboot@65024000 {
> + compatible ="syscon-reboot";
> + regmap = <&rst_ccsr>;
> + offset = <0x0>;
> + mask = <0x2>;
> + };
> +
> timer {
> compatible = "arm,armv8-timer";
> interrupts = <1 13 0x8>, /* Physical Secure PPI, active-low */
> --
> 2.3.3
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Mark Rutland <mark.rutland@arm.com>
To: "J. German Rivera" <German.Rivera@freescale.com>
Cc: robh+dt@kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, bhupesh.sharma@freescale.com,
stuart.yoder@freescale.com, leoli@freescale.com
Subject: Re: [PATCH] arm64: dts: Added syscon-reboot node for FSL's LS2085A SoC
Date: Tue, 27 Oct 2015 16:34:41 +0000 [thread overview]
Message-ID: <20151027163441.GK3091@leverpostej> (raw)
In-Reply-To: <1445650280-9966-1-git-send-email-German.Rivera@freescale.com>
On Fri, Oct 23, 2015 at 08:31:20PM -0500, J. German Rivera wrote:
> Added sys-reboot node to the FSL's LS2085A SoC DT to leverage
> the ARM-generic reboot mechanism for this SoC. This mechanism
> is enabled through CONFIG_POWER_RESET_SYSCON.
Per the comments in arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi, the
platform has PSCI 0.2+, and therefore already has system reset
functionality.
Given that, why is this necessary?
Thanks,
Mark.
> Signed-off-by: J. German Rivera <German.Rivera@freescale.com>
> ---
> arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi
> index e281ceb..6f82163 100644
> --- a/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi
> +++ b/arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi
> @@ -131,6 +131,18 @@
> interrupts = <1 9 0x4>;
> };
>
> + rst_ccsr: rstccsr@1E60000 {
> + compatible = "syscon";
> + reg = <0x0 0x1E60000 0x0 0x10000>;
> + };
> +
> + reboot@65024000 {
> + compatible ="syscon-reboot";
> + regmap = <&rst_ccsr>;
> + offset = <0x0>;
> + mask = <0x2>;
> + };
> +
> timer {
> compatible = "arm,armv8-timer";
> interrupts = <1 13 0x8>, /* Physical Secure PPI, active-low */
> --
> 2.3.3
>
next prev parent reply other threads:[~2015-10-27 16:34 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-24 1:31 [PATCH] arm64: dts: Added syscon-reboot node for FSL's LS2085A SoC J. German Rivera
2015-10-24 1:31 ` J. German Rivera
2015-10-24 1:31 ` J. German Rivera
2015-10-27 16:31 ` Stuart Yoder
2015-10-27 16:31 ` Stuart Yoder
2015-10-27 16:31 ` Stuart Yoder
2015-10-27 16:34 ` Mark Rutland [this message]
2015-10-27 16:34 ` Mark Rutland
2015-10-27 16:34 ` Mark Rutland
2015-10-27 18:25 ` Stuart Yoder
2015-10-27 18:25 ` Stuart Yoder
2015-10-30 13:36 ` Arnd Bergmann
2015-10-30 13:36 ` Arnd Bergmann
2015-10-30 13:36 ` Arnd Bergmann
2015-10-30 16:15 ` Stuart Yoder
2015-10-30 16:15 ` Stuart Yoder
2015-10-30 14:32 ` Mark Rutland
2015-10-30 14:32 ` Mark Rutland
2015-10-30 14:32 ` Mark Rutland
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=20151027163441.GK3091@leverpostej \
--to=mark.rutland@arm.com \
--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 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.