[parent not found: <1437999401-3519-1-git-send-email-kishon-l0cyMroinI0@public.gmane.org>]
* [RFT PATCH 1/4] ARM: dts: omap24xx: Fix broken pbias device creation
[not found] ` <1437999401-3519-1-git-send-email-kishon-l0cyMroinI0@public.gmane.org>
@ 2015-07-27 12:16 ` Kishon Vijay Abraham I
2015-07-29 8:57 ` [PATCH 0/4] omap: " Grygorii Strashko
1 sibling, 0 replies; 9+ messages in thread
From: Kishon Vijay Abraham I @ 2015-07-27 12:16 UTC (permalink / raw)
To: tony-4v6yS6AI5VpBDgjK7y7TUQ, devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-omap-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
Cc: bcousson-rdvid1DuHRBWk0Htik3J/w, robh+dt-DgEjT+Ai2ygdnm+yROfE0A,
pawel.moll-5wv7dgnIgG8, mark.rutland-5wv7dgnIgG8,
ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg,
galak-sgV2jX0FEOL9JmXXK+q4OQ, linux-lFZ/pmaqli7XmaaqVzeoHQ,
t-kristo-l0cyMroinI0, grygorii.strashko-l0cyMroinI0,
nsekhar-l0cyMroinI0, kishon-l0cyMroinI0,
stable-u79uwXL29TY76Z2rM5mHXA
commit <72b10ac00eb1> ("ARM: dts: omap24xx: add minimal l4 bus
layout with control module support") moved pbias_regulator dt node
from being a child node of ocp to be the child node of
scm_conf. After this device for pbias_regulator is
not created.
Fix it by adding "simple-bus" compatible property to
scm_conf dt node.
Fixes: 72b10ac00eb1 ("ARM: dts: omap24xx: add minimal l4 bus
layout with control module support")
Cc: <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Signed-off-by: Kishon Vijay Abraham I <kishon-l0cyMroinI0@public.gmane.org>
---
arch/arm/boot/dts/omap2430.dtsi | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/omap2430.dtsi b/arch/arm/boot/dts/omap2430.dtsi
index 11a7963..2390f38 100644
--- a/arch/arm/boot/dts/omap2430.dtsi
+++ b/arch/arm/boot/dts/omap2430.dtsi
@@ -51,7 +51,8 @@
};
scm_conf: scm_conf@270 {
- compatible = "syscon";
+ compatible = "syscon",
+ "simple-bus";
reg = <0x270 0x240>;
#address-cells = <1>;
#size-cells = <1>;
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 0/4] omap: Fix broken pbias device creation
[not found] ` <1437999401-3519-1-git-send-email-kishon-l0cyMroinI0@public.gmane.org>
2015-07-27 12:16 ` [RFT PATCH 1/4] ARM: dts: omap24xx: " Kishon Vijay Abraham I
@ 2015-07-29 8:57 ` Grygorii Strashko
2015-08-05 10:00 ` Tony Lindgren
1 sibling, 1 reply; 9+ messages in thread
From: Grygorii Strashko @ 2015-07-29 8:57 UTC (permalink / raw)
To: Kishon Vijay Abraham I, tony-4v6yS6AI5VpBDgjK7y7TUQ,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-omap-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
Cc: bcousson-rdvid1DuHRBWk0Htik3J/w, robh+dt-DgEjT+Ai2ygdnm+yROfE0A,
pawel.moll-5wv7dgnIgG8, mark.rutland-5wv7dgnIgG8,
ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg,
galak-sgV2jX0FEOL9JmXXK+q4OQ, linux-lFZ/pmaqli7XmaaqVzeoHQ,
t-kristo-l0cyMroinI0, nsekhar-l0cyMroinI0
On 07/27/2015 03:16 PM, Kishon Vijay Abraham I wrote:
> pbias device creation got broken once SCM cleanup got merged.
> This patch series re-enables device creation by adding
> "simple-bus" in the compatible property of the syscon
> dt node.
>
> validated this series in DRA72, OMAP4 PANDA and OMAP5 UEVM
> boards.
>
> Kishon Vijay Abraham I (4):
> ARM: dts: omap24xx: Fix broken pbias device creation
> ARM: dts: OMAP4: Fix broken pbias device creation
> ARM: dts: OMAP5: Fix broken pbias device creation
> ARM: dts: dra7: Fix broken pbias device creation
>
> arch/arm/boot/dts/dra7.dtsi | 2 +-
> arch/arm/boot/dts/omap2430.dtsi | 3 ++-
> arch/arm/boot/dts/omap4.dtsi | 3 ++-
> arch/arm/boot/dts/omap5.dtsi | 3 ++-
> 4 files changed, 7 insertions(+), 4 deletions(-)
>
For dra7-evm:
Tested-by: Grygorii Strashko <grygorii.strashko-l0cyMroinI0@public.gmane.org>
--
regards,
-grygorii
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/4] omap: Fix broken pbias device creation
2015-07-29 8:57 ` [PATCH 0/4] omap: " Grygorii Strashko
@ 2015-08-05 10:00 ` Tony Lindgren
[not found] ` <20150805100009.GY16878-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Tony Lindgren @ 2015-08-05 10:00 UTC (permalink / raw)
To: Grygorii Strashko
Cc: mark.rutland, devicetree, linux, pawel.moll, ijc+devicetree,
nsekhar, linux-kernel, Kishon Vijay Abraham I, t-kristo, robh+dt,
bcousson, galak, linux-omap, linux-arm-kernel
* Grygorii Strashko <grygorii.strashko@ti.com> [150729 02:01]:
> On 07/27/2015 03:16 PM, Kishon Vijay Abraham I wrote:
> >pbias device creation got broken once SCM cleanup got merged.
> >This patch series re-enables device creation by adding
> >"simple-bus" in the compatible property of the syscon
> >dt node.
> >
> >validated this series in DRA72, OMAP4 PANDA and OMAP5 UEVM
> >boards.
> >
> >Kishon Vijay Abraham I (4):
> > ARM: dts: omap24xx: Fix broken pbias device creation
> > ARM: dts: OMAP4: Fix broken pbias device creation
> > ARM: dts: OMAP5: Fix broken pbias device creation
> > ARM: dts: dra7: Fix broken pbias device creation
> >
> > arch/arm/boot/dts/dra7.dtsi | 2 +-
> > arch/arm/boot/dts/omap2430.dtsi | 3 ++-
> > arch/arm/boot/dts/omap4.dtsi | 3 ++-
> > arch/arm/boot/dts/omap5.dtsi | 3 ++-
> > 4 files changed, 7 insertions(+), 4 deletions(-)
> >
>
> For dra7-evm:
> Tested-by: Grygorii Strashko <grygorii.strashko@ti.com>
Applying all into omap-for-v4.2fixes-v2 thanks.
Tony
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 2/4] ARM: dts: OMAP4: Fix broken pbias device creation
2015-07-27 12:16 [PATCH 0/4] omap: Fix broken pbias device creation Kishon Vijay Abraham I
[not found] ` <1437999401-3519-1-git-send-email-kishon-l0cyMroinI0@public.gmane.org>
@ 2015-07-27 12:16 ` Kishon Vijay Abraham I
2015-07-27 12:16 ` [PATCH 3/4] ARM: dts: OMAP5: " Kishon Vijay Abraham I
2015-07-27 12:16 ` [PATCH 4/4] ARM: dts: dra7: " Kishon Vijay Abraham I
3 siblings, 0 replies; 9+ messages in thread
From: Kishon Vijay Abraham I @ 2015-07-27 12:16 UTC (permalink / raw)
To: tony, devicetree, linux-arm-kernel, linux-omap, linux-kernel
Cc: mark.rutland, grygorii.strashko, linux, pawel.moll,
ijc+devicetree, nsekhar, stable, kishon, t-kristo, robh+dt,
bcousson, galak
commit <7415b0b4c645> ("ARM: dts: omap4: add minimal l4 bus layout
with control module support") moved pbias_regulator dt node
from being a child node of ocp to be the child node of
omap4_padconf_global. After this device for pbias_regulator
is not created.
Fix it by adding "simple-bus" compatible property to
omap4_padconf_global dt node.
Fixes: 7415b0b4c645 ("ARM: dts: omap4: add minimal l4 bus layout
with control module support")
Cc: <stable@vger.kernel.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
arch/arm/boot/dts/omap4.dtsi | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi
index 7d31c6f..abc4473 100644
--- a/arch/arm/boot/dts/omap4.dtsi
+++ b/arch/arm/boot/dts/omap4.dtsi
@@ -191,7 +191,8 @@
};
omap4_padconf_global: omap4_padconf_global@5a0 {
- compatible = "syscon";
+ compatible = "syscon",
+ "simple-bus";
reg = <0x5a0 0x170>;
#address-cells = <1>;
#size-cells = <1>;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/4] ARM: dts: OMAP5: Fix broken pbias device creation
2015-07-27 12:16 [PATCH 0/4] omap: Fix broken pbias device creation Kishon Vijay Abraham I
[not found] ` <1437999401-3519-1-git-send-email-kishon-l0cyMroinI0@public.gmane.org>
2015-07-27 12:16 ` [PATCH 2/4] ARM: dts: OMAP4: " Kishon Vijay Abraham I
@ 2015-07-27 12:16 ` Kishon Vijay Abraham I
2015-07-27 12:16 ` [PATCH 4/4] ARM: dts: dra7: " Kishon Vijay Abraham I
3 siblings, 0 replies; 9+ messages in thread
From: Kishon Vijay Abraham I @ 2015-07-27 12:16 UTC (permalink / raw)
To: tony, devicetree, linux-arm-kernel, linux-omap, linux-kernel
Cc: bcousson, robh+dt, pawel.moll, mark.rutland, ijc+devicetree,
galak, linux, t-kristo, grygorii.strashko, nsekhar, kishon,
stable
commit <ed8509edddeb> ("ARM: dts: omap5: add minimal l4 bus
layout with control module support") moved pbias_regulator dt node
from being a child node of ocp to be the child node of
omap5_padconf_global. After this device for pbias_regulator is
not created.
Fix it by adding "simple-bus" compatible property to
omap5_padconf_global dt node.
Fixes: ed8509edddeb ("ARM: dts: omap5: add minimal l4 bus
layout with control module support")
Cc: <stable@vger.kernel.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
arch/arm/boot/dts/omap5.dtsi | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
index c8fd648..b1a1263 100644
--- a/arch/arm/boot/dts/omap5.dtsi
+++ b/arch/arm/boot/dts/omap5.dtsi
@@ -180,7 +180,8 @@
};
omap5_padconf_global: omap5_padconf_global@5a0 {
- compatible = "syscon";
+ compatible = "syscon",
+ "simple-bus";
reg = <0x5a0 0xec>;
#address-cells = <1>;
#size-cells = <1>;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 4/4] ARM: dts: dra7: Fix broken pbias device creation
2015-07-27 12:16 [PATCH 0/4] omap: Fix broken pbias device creation Kishon Vijay Abraham I
` (2 preceding siblings ...)
2015-07-27 12:16 ` [PATCH 3/4] ARM: dts: OMAP5: " Kishon Vijay Abraham I
@ 2015-07-27 12:16 ` Kishon Vijay Abraham I
3 siblings, 0 replies; 9+ messages in thread
From: Kishon Vijay Abraham I @ 2015-07-27 12:16 UTC (permalink / raw)
To: tony, devicetree, linux-arm-kernel, linux-omap, linux-kernel
Cc: bcousson, robh+dt, pawel.moll, mark.rutland, ijc+devicetree,
galak, linux, t-kristo, grygorii.strashko, nsekhar, kishon,
stable
commit <d919501feffa> ("ARM: dts: dra7: add minimal l4 bus
layout with control module support") moved pbias_regulator dt node
from being a child node of ocp to be the child node of
scm_conf. After this device for pbias_regulator is
not created.
Fix it by adding "simple-bus" compatible property to
scm_conf dt node.
Fixes: d919501feffa ("ARM: dts: dra7: add minimal l4 bus
layout with control module support")
Cc: <stable@vger.kernel.org>
Suggested-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
arch/arm/boot/dts/dra7.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
index 8f1e25b..3062b1f 100644
--- a/arch/arm/boot/dts/dra7.dtsi
+++ b/arch/arm/boot/dts/dra7.dtsi
@@ -116,7 +116,7 @@
ranges = <0 0x2000 0x2000>;
scm_conf: scm_conf@0 {
- compatible = "syscon";
+ compatible = "syscon", "simple-bus";
reg = <0x0 0x1400>;
#address-cells = <1>;
#size-cells = <1>;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 9+ messages in thread