@@ -674,9 +674,7 @@
#address-cells = <1>;
#size-cells = <1>;
status = "disabled";
- ranges = <0x48300100 0x48300100 0x80 /* ECAP */
- 0x48300180 0x48300180 0x80 /* EQEP */
- 0x48300200 0x48300200 0x80>; /* EHRPWM */
+ ranges;
ecap0: ecap@48300100 {
compatible = "ti,am33xx-ecap";
@@ -704,9 +702,7 @@
#address-cells = <1>;
#size-cells = <1>;
status = "disabled";
- ranges = <0x48302100 0x48302100 0x80 /* ECAP */
- 0x48302180 0x48302180 0x80 /* EQEP */
- 0x48302200 0x48302200 0x80>; /* EHRPWM */
+ ranges;
ecap1: ecap@48302100 {
compatible = "ti,am33xx-ecap";
@@ -734,9 +730,7 @@
#address-cells = <1>;
#size-cells = <1>;
status = "disabled";
- ranges = <0x48304100 0x48304100 0x80 /* ECAP */
- 0x48304180 0x48304180 0x80 /* EQEP */
- 0x48304200 0x48304200 0x80>; /* EHRPWM */
+ ranges;
ecap2: ecap@48304100 {
compatible = "ti,am33xx-ecap";
The eCAP and ePWM are in the same address space as the PWMSS. Therefore, no address translation is needed which means the ranges property should be empty. This mimics how the PWMSS nodes look in the AM4372.dtsi which is similar to AM335x. Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> --- arch/arm/boot/dts/am33xx.dtsi | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-)