Commit 8b35a4ac authored by Frank Li's avatar Frank Li Committed by Shawn Guo
Browse files

arm64: dts: fsl-ls1028a: add fsl,ls1028-reset for syscon



Add platform specific compatiable string 'fsl,ls1028-reset' for syscon and
move reboot node under reset syscon node to fix below warning.

syscon@1e60000: compatible: 'anyOf' conditional failed, one must be fixed:
        ['syscon'] is too short
        'syscon' is not one of ['al,alpine-sysfabric-service', ...

Signed-off-by: default avatarFrank Li <Frank.Li@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent e32faab6
Loading
Loading
Loading
Loading
+8 −9
Original line number Diff line number Diff line
@@ -112,13 +112,6 @@ optee: optee {
		};
	};

	reboot {
		compatible = "syscon-reboot";
		regmap = <&rst>;
		offset = <0>;
		mask = <0x02>;
	};

	timer {
		compatible = "arm,armv8-timer";
		interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) |
@@ -235,10 +228,16 @@ fspi_clk: clock-controller@900 {
			};
		};

		rst: syscon@1e60000 {
			compatible = "syscon";
		syscon@1e60000 {
			compatible = "fsl,ls1028a-reset", "syscon", "simple-mfd";
			reg = <0x0 0x1e60000 0x0 0x10000>;
			little-endian;

			reboot {
				compatible = "syscon-reboot";
				offset = <0>;
				mask = <0x02>;
			};
		};

		sfp: efuse@1e80000 {