devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: meson: add reset controller for Meson-S4 SoC
@ 2022-05-26 13:01 Zelong Dong
  2022-05-27 13:45 ` Neil Armstrong
  2022-05-27 13:47 ` Neil Armstrong
  0 siblings, 2 replies; 3+ messages in thread
From: Zelong Dong @ 2022-05-26 13:01 UTC (permalink / raw)
  To: devicetree, p.zabel, robh+dt, khilman, narmstrong, martin.blumenstingl
  Cc: linux-amlogic, linux-kernel, linux-arm-kernel, jbrunet, Zelong Dong

Add the reset controller device of Meson-S4 SoC family

Signed-off-by: Zelong Dong <zelong.dong@amlogic.com>
---
 arch/arm64/boot/dts/amlogic/meson-s4.dtsi | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-s4.dtsi b/arch/arm64/boot/dts/amlogic/meson-s4.dtsi
index 480afa2cc61f..c750bc60786f 100644
--- a/arch/arm64/boot/dts/amlogic/meson-s4.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-s4.dtsi
@@ -94,6 +94,12 @@ uart_B: serial@7a000 {
 				clocks = <&xtal>, <&xtal>, <&xtal>;
 				clock-names = "xtal", "pclk", "baud";
 			};
+
+			reset: reset-controller@2000 {
+				compatible = "amlogic,meson-s4-reset";
+				reg = <0x0 0x2000 0x0 0x98>;
+				#reset-cells = <1>;
+			};
 		};
 	};
 };
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] arm64: dts: meson: add reset controller for Meson-S4 SoC
  2022-05-26 13:01 [PATCH] arm64: dts: meson: add reset controller for Meson-S4 SoC Zelong Dong
@ 2022-05-27 13:45 ` Neil Armstrong
  2022-05-27 13:47 ` Neil Armstrong
  1 sibling, 0 replies; 3+ messages in thread
From: Neil Armstrong @ 2022-05-27 13:45 UTC (permalink / raw)
  To: Zelong Dong, devicetree, p.zabel, robh+dt, khilman, martin.blumenstingl
  Cc: linux-amlogic, linux-kernel, linux-arm-kernel, jbrunet

On 26/05/2022 15:01, Zelong Dong wrote:
> Add the reset controller device of Meson-S4 SoC family
> 
> Signed-off-by: Zelong Dong <zelong.dong@amlogic.com>
> ---
>   arch/arm64/boot/dts/amlogic/meson-s4.dtsi | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/amlogic/meson-s4.dtsi b/arch/arm64/boot/dts/amlogic/meson-s4.dtsi
> index 480afa2cc61f..c750bc60786f 100644
> --- a/arch/arm64/boot/dts/amlogic/meson-s4.dtsi
> +++ b/arch/arm64/boot/dts/amlogic/meson-s4.dtsi
> @@ -94,6 +94,12 @@ uart_B: serial@7a000 {
>   				clocks = <&xtal>, <&xtal>, <&xtal>;
>   				clock-names = "xtal", "pclk", "baud";
>   			};
> +
> +			reset: reset-controller@2000 {
> +				compatible = "amlogic,meson-s4-reset";
> +				reg = <0x0 0x2000 0x0 0x98>;
> +				#reset-cells = <1>;
> +			};
>   		};
>   	};
>   };

Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] arm64: dts: meson: add reset controller for Meson-S4 SoC
  2022-05-26 13:01 [PATCH] arm64: dts: meson: add reset controller for Meson-S4 SoC Zelong Dong
  2022-05-27 13:45 ` Neil Armstrong
@ 2022-05-27 13:47 ` Neil Armstrong
  1 sibling, 0 replies; 3+ messages in thread
From: Neil Armstrong @ 2022-05-27 13:47 UTC (permalink / raw)
  To: khilman, Zelong Dong, robh+dt, p.zabel, martin.blumenstingl, devicetree
  Cc: Neil Armstrong, linux-kernel, linux-amlogic, linux-arm-kernel, jbrunet

Hi,

On Thu, 26 May 2022 21:01:58 +0800, Zelong Dong wrote:
> Add the reset controller device of Meson-S4 SoC family
> 
> 

Thanks, Applied to https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git (v5.20/arm64)

[1/1] arm64: dts: meson: add reset controller for Meson-S4 SoC
      https://git.kernel.org/amlogic/c/ead23b52f539a4d93a541afe208d70b1a9089e1a

These changes has been applied on the intermediate git tree [1].

The v5.20/arm64 branch will then be sent via a formal Pull Request to the Linux SoC maintainers
for inclusion in their intermediate git branches in order to be sent to Linus during
the next merge window, or sooner if it's a set of fixes.

In the cases of fixes, those will be merged in the current release candidate
kernel and as soon they appear on the Linux master branch they will be
backported to the previous Stable and Long-Stable kernels [2].

The intermediate git branches are merged daily in the linux-next tree [3],
people are encouraged testing these pre-release kernels and report issues on the
relevant mailing-lists.

If problems are discovered on those changes, please submit a signed-off-by revert
patch followed by a corrective changeset.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git
[2] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
[3] https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git

-- 
Neil

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-05-27 13:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-26 13:01 [PATCH] arm64: dts: meson: add reset controller for Meson-S4 SoC Zelong Dong
2022-05-27 13:45 ` Neil Armstrong
2022-05-27 13:47 ` Neil Armstrong

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).