Commit 80570ce8 authored by Andrew F. Davis's avatar Andrew F. Davis Committed by Santosh Shilimkar

ARM: dts: keystone-k2l: Move keystone_dsp_gpio to under device-state-control

The keystone_irq node describes a device that is a member of the device
state control module address space. As such, it should not be a member
of soc0 bus but instead a sub-node of device-state-control.

This move also fixes warnings about not having a reg property. Now
that this is a sub-node of device-state-control, a syscon type node,
we add this reg property but relative to the syscon base, this way
when the dt-binding/driver are updated we can drop the non-standard
gpio,syscon-dev property completely and simply use get_resource() in
the driver.
Signed-off-by: default avatarAndrew F. Davis <afd@ti.com>
Acked-by: default avatarNishanth Menon <nm@ti.com>
Signed-off-by: default avatarSantosh Shilimkar <santosh.shilimkar@oracle.com>
parent 056a3ccb
...@@ -289,33 +289,39 @@ osr: sram@70000000 { ...@@ -289,33 +289,39 @@ osr: sram@70000000 {
clocks = <&clkosr>; clocks = <&clkosr>;
}; };
dspgpio0: keystone_dsp_gpio@2620240 { devctrl: device-state-control@2620000 {
dspgpio0: keystone_dsp_gpio@240 {
compatible = "ti,keystone-dsp-gpio"; compatible = "ti,keystone-dsp-gpio";
reg = <0x240 0x4>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
gpio,syscon-dev = <&devctrl 0x240>; gpio,syscon-dev = <&devctrl 0x240>;
}; };
dspgpio1: keystone_dsp_gpio@2620244 { dspgpio1: keystone_dsp_gpio@244 {
compatible = "ti,keystone-dsp-gpio"; compatible = "ti,keystone-dsp-gpio";
reg = <0x244 0x4>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
gpio,syscon-dev = <&devctrl 0x244>; gpio,syscon-dev = <&devctrl 0x244>;
}; };
dspgpio2: keystone_dsp_gpio@2620248 { dspgpio2: keystone_dsp_gpio@248 {
compatible = "ti,keystone-dsp-gpio"; compatible = "ti,keystone-dsp-gpio";
reg = <0x248 0x4>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
gpio,syscon-dev = <&devctrl 0x248>; gpio,syscon-dev = <&devctrl 0x248>;
}; };
dspgpio3: keystone_dsp_gpio@262024c { dspgpio3: keystone_dsp_gpio@24c {
compatible = "ti,keystone-dsp-gpio"; compatible = "ti,keystone-dsp-gpio";
reg = <0x24c 0x4>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
gpio,syscon-dev = <&devctrl 0x24c>; gpio,syscon-dev = <&devctrl 0x24c>;
}; };
};
dsp0: dsp@10800000 { dsp0: dsp@10800000 {
compatible = "ti,k2l-dsp"; compatible = "ti,k2l-dsp";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment