@@ -160,11 +160,15 @@
status = "disabled";
};
- cmu: clock-controller@e0168000 {
- compatible = "actions,s700-cmu";
+ sysctrl: system-controller@e0168000 {
+ compatible = "syscon", "simple-mfd";
reg = <0x0 0xe0168000 0x0 0x1000>;
- clocks = <&hosc>, <&losc>;
- #clock-cells = <1>;
+
+ cmu: clock-controller {
+ compatible = "actions,s700-cmu";
+ clocks = <&hosc>, <&losc>;
+ #clock-cells = <1>;
+ };
};
sps: power-controller@e01b0100 {
@@ -167,11 +167,15 @@
status = "disabled";
};
- cmu: clock-controller@e0160000 {
- compatible = "actions,s900-cmu";
+ sysctrl: system-controller@e0160000 {
+ compatible = "syscon", "simple-mfd";
reg = <0x0 0xe0160000 0x0 0x1000>;
- clocks = <&hosc>, <&losc>;
- #clock-cells = <1>;
+
+ cmu: clock-controller {
+ compatible = "actions,s900-cmu";
+ clocks = <&hosc>, <&losc>;
+ #clock-cells = <1>;
+ };
};
pinctrl: pinctrl@e01b0000 {
Since clock and reset management units are sharing the same memory map, Owl SoCs clock-controller nodes needs to be converted to syscon so that the corresponding reset drivers can also reuse the same memory region. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> --- arch/arm64/boot/dts/actions/s700.dtsi | 12 ++++++++---- arch/arm64/boot/dts/actions/s900.dtsi | 12 ++++++++---- 2 files changed, 16 insertions(+), 8 deletions(-) -- 2.17.1