ARM: dts: lan966x: add reset switch reset node
authorMichael Walle <michael@walle.cc>
Mon, 2 May 2022 22:41:24 +0000 (00:41 +0200)
committerClaudiu Beznea <claudiu.beznea@microchip.com>
Fri, 13 May 2022 13:42:19 +0000 (16:42 +0300)
Add the switch reset node which will later be used by the switch driver.
The switch reset also resets the GPIO controller and the SGPIO
controller, thus it also has to be connectected to these nodes. This way
the reset will only issued once for the first device requesting the
reset.

Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Tested-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/20220502224127.2604333-11-michael@walle.cc
Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
arch/arm/boot/dts/lan966x.dtsi

index 786655b..238b4df 100644 (file)
                        status = "disabled";
                };
 
+               cpu_ctrl: syscon@e00c0000 {
+                       compatible = "microchip,lan966x-cpu-syscon", "syscon";
+                       reg = <0xe00c0000 0x350>;
+               };
+
                can0: can@e081c000 {
                        compatible = "bosch,m_can";
                        reg = <0xe081c000 0xfc>, <0x00100000 0x4000>;
                        status = "disabled";
                };
 
+               reset: reset-controller@e200400c {
+                       compatible = "microchip,lan966x-switch-reset";
+                       reg = <0xe200400c 0x4>;
+                       reg-names = "gcb";
+                       #reset-cells = <1>;
+                       cpu-syscon = <&cpu_ctrl>;
+               };
+
                gpio: pinctrl@e2004064 {
                        compatible = "microchip,lan966x-pinctrl";
                        reg = <0xe2004064 0xb4>,
                            <0xe2010024 0x138>;
+                       resets = <&reset 0>;
+                       reset-names = "switch";
                        gpio-controller;
                        #gpio-cells = <2>;
                        gpio-ranges = <&gpio 0 0 78>;
                        compatible = "microchip,sparx5-sgpio";
                        reg = <0xe2004190 0x118>;
                        clocks = <&sys_clk>;
+                       resets = <&reset 0>;
+                       reset-names = "switch";
                        #address-cells = <1>;
                        #size-cells = <0>;
                        status = "disabled";