All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-07-27 12:16 ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ 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

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(-)

-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 27+ messages in thread

* [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-07-27 12:16 ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ 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

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(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 27+ messages in thread

* [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-07-27 12:16 ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ messages in thread
From: Kishon Vijay Abraham I @ 2015-07-27 12:16 UTC (permalink / raw)
  To: linux-arm-kernel

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(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 27+ messages in thread

* [RFT PATCH 1/4] ARM: dts: omap24xx: Fix broken pbias device creation
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ 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 <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@vger.kernel.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 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


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [RFT PATCH 1/4] ARM: dts: omap24xx: Fix broken pbias device creation
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ 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] 27+ messages in thread

* [RFT PATCH 1/4] ARM: dts: omap24xx: Fix broken pbias device creation
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ messages in thread
From: Kishon Vijay Abraham I @ 2015-07-27 12:16 UTC (permalink / raw)
  To: linux-arm-kernel

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@vger.kernel.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 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 at 270 {
-					compatible = "syscon";
+					compatible = "syscon",
+						     "simple-bus";
 					reg = <0x270 0x240>;
 					#address-cells = <1>;
 					#size-cells = <1>;
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH 2/4] ARM: dts: OMAP4: Fix broken pbias device creation
  2015-07-27 12:16 ` Kishon Vijay Abraham I
  (?)
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  -1 siblings, 0 replies; 27+ 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 <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] 27+ messages in thread

* [PATCH 2/4] ARM: dts: OMAP4: Fix broken pbias device creation
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ 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] 27+ messages in thread

* [PATCH 2/4] ARM: dts: OMAP4: Fix broken pbias device creation
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ messages in thread
From: Kishon Vijay Abraham I @ 2015-07-27 12:16 UTC (permalink / raw)
  To: linux-arm-kernel

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 at 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] 27+ messages in thread

* [PATCH 3/4] ARM: dts: OMAP5: Fix broken pbias device creation
  2015-07-27 12:16 ` Kishon Vijay Abraham I
  (?)
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  -1 siblings, 0 replies; 27+ 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] 27+ messages in thread

* [PATCH 3/4] ARM: dts: OMAP5: Fix broken pbias device creation
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ 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] 27+ messages in thread

* [PATCH 3/4] ARM: dts: OMAP5: Fix broken pbias device creation
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ messages in thread
From: Kishon Vijay Abraham I @ 2015-07-27 12:16 UTC (permalink / raw)
  To: linux-arm-kernel

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 at 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] 27+ messages in thread

* [PATCH 4/4] ARM: dts: dra7: Fix broken pbias device creation
  2015-07-27 12:16 ` Kishon Vijay Abraham I
  (?)
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  -1 siblings, 0 replies; 27+ 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] 27+ messages in thread

* [PATCH 4/4] ARM: dts: dra7: Fix broken pbias device creation
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ 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] 27+ messages in thread

* [PATCH 4/4] ARM: dts: dra7: Fix broken pbias device creation
@ 2015-07-27 12:16   ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ messages in thread
From: Kishon Vijay Abraham I @ 2015-07-27 12:16 UTC (permalink / raw)
  To: linux-arm-kernel

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 at 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] 27+ messages in thread

* Re: [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-07-29  8:57   ` Grygorii Strashko
  0 siblings, 0 replies; 27+ messages in thread
From: Grygorii Strashko @ 2015-07-29  8:57 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, tony, devicetree, linux-arm-kernel,
	linux-omap, linux-kernel
  Cc: bcousson, robh+dt, pawel.moll, mark.rutland, ijc+devicetree,
	galak, linux, t-kristo, nsekhar

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>

-- 
regards,
-grygorii

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-07-29  8:57   ` Grygorii Strashko
  0 siblings, 0 replies; 27+ 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] 27+ messages in thread

* [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-07-29  8:57   ` Grygorii Strashko
  0 siblings, 0 replies; 27+ messages in thread
From: Grygorii Strashko @ 2015-07-29  8:57 UTC (permalink / raw)
  To: linux-arm-kernel

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>

-- 
regards,
-grygorii

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH 0/4] omap: Fix broken pbias device creation
  2015-07-29  8:57   ` Grygorii Strashko
  (?)
@ 2015-08-05 10:00     ` Tony Lindgren
  -1 siblings, 0 replies; 27+ messages in thread
From: Tony Lindgren @ 2015-08-05 10:00 UTC (permalink / raw)
  To: Grygorii Strashko
  Cc: Kishon Vijay Abraham I, devicetree, linux-arm-kernel, linux-omap,
	linux-kernel, bcousson, robh+dt, pawel.moll, mark.rutland,
	ijc+devicetree, galak, linux, t-kristo, nsekhar

* 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] 27+ messages in thread

* Re: [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-08-05 10:00     ` Tony Lindgren
  0 siblings, 0 replies; 27+ 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] 27+ messages in thread

* [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-08-05 10:00     ` Tony Lindgren
  0 siblings, 0 replies; 27+ messages in thread
From: Tony Lindgren @ 2015-08-05 10:00 UTC (permalink / raw)
  To: 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] 27+ messages in thread

* Re: [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-08-07 11:48       ` Peter Robinson
  0 siblings, 0 replies; 27+ messages in thread
From: Peter Robinson @ 2015-08-07 11:48 UTC (permalink / raw)
  To: Tony Lindgren
  Cc: Grygorii Strashko, 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

On Wed, Aug 5, 2015 at 11:00 AM, Tony Lindgren <tony@atomide.com> wrote:
> * 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.

Do we need the same for am33xx.dtsi too given commit e3bc5358e097 ?

Peter

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-08-07 11:48       ` Peter Robinson
  0 siblings, 0 replies; 27+ messages in thread
From: Peter Robinson @ 2015-08-07 11:48 UTC (permalink / raw)
  To: Tony Lindgren
  Cc: Grygorii Strashko, mark.rutland-5wv7dgnIgG8,
	devicetree-u79uwXL29TY76Z2rM5mHXA, linux-lFZ/pmaqli7XmaaqVzeoHQ,
	pawel.moll-5wv7dgnIgG8, ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg,
	nsekhar-l0cyMroinI0, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	Kishon Vijay Abraham I, t-kristo-l0cyMroinI0,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A, bcousson-rdvid1DuHRBWk0Htik3J/w,
	galak-sgV2jX0FEOL9JmXXK+q4OQ, linux-omap-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Wed, Aug 5, 2015 at 11:00 AM, Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> wrote:
> * Grygorii Strashko <grygorii.strashko-l0cyMroinI0@public.gmane.org> [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-l0cyMroinI0@public.gmane.org>
>
> Applying all into omap-for-v4.2fixes-v2 thanks.

Do we need the same for am33xx.dtsi too given commit e3bc5358e097 ?

Peter
--
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] 27+ messages in thread

* [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-08-07 11:48       ` Peter Robinson
  0 siblings, 0 replies; 27+ messages in thread
From: Peter Robinson @ 2015-08-07 11:48 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Aug 5, 2015 at 11:00 AM, Tony Lindgren <tony@atomide.com> wrote:
> * 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.

Do we need the same for am33xx.dtsi too given commit e3bc5358e097 ?

Peter

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH 0/4] omap: Fix broken pbias device creation
  2015-08-07 11:48       ` Peter Robinson
  (?)
@ 2015-08-07 14:25         ` Kishon Vijay Abraham I
  -1 siblings, 0 replies; 27+ messages in thread
From: Kishon Vijay Abraham I @ 2015-08-07 14:25 UTC (permalink / raw)
  To: Peter Robinson, Tony Lindgren
  Cc: Grygorii Strashko, mark.rutland, devicetree, linux, pawel.moll,
	ijc+devicetree, nsekhar, linux-kernel, t-kristo, robh+dt,
	bcousson, galak, linux-omap, linux-arm-kernel

Hi Peter,

On Friday 07 August 2015 05:18 PM, Peter Robinson wrote:
> On Wed, Aug 5, 2015 at 11:00 AM, Tony Lindgren <tony@atomide.com> wrote:
>> * 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.
> 
> Do we need the same for am33xx.dtsi too given commit e3bc5358e097 ?

PBIAS is not present in am33xx.

Thanks
Kishon

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-08-07 14:25         ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ messages in thread
From: Kishon Vijay Abraham I @ 2015-08-07 14:25 UTC (permalink / raw)
  To: Peter Robinson, Tony Lindgren
  Cc: Grygorii Strashko, mark.rutland, devicetree, linux, pawel.moll,
	ijc+devicetree, nsekhar, linux-kernel, t-kristo, robh+dt,
	bcousson, galak, linux-omap, linux-arm-kernel

Hi Peter,

On Friday 07 August 2015 05:18 PM, Peter Robinson wrote:
> On Wed, Aug 5, 2015 at 11:00 AM, Tony Lindgren <tony@atomide.com> wrote:
>> * 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.
> 
> Do we need the same for am33xx.dtsi too given commit e3bc5358e097 ?

PBIAS is not present in am33xx.

Thanks
Kishon

^ permalink raw reply	[flat|nested] 27+ messages in thread

* [PATCH 0/4] omap: Fix broken pbias device creation
@ 2015-08-07 14:25         ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 27+ messages in thread
From: Kishon Vijay Abraham I @ 2015-08-07 14:25 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Peter,

On Friday 07 August 2015 05:18 PM, Peter Robinson wrote:
> On Wed, Aug 5, 2015 at 11:00 AM, Tony Lindgren <tony@atomide.com> wrote:
>> * 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.
> 
> Do we need the same for am33xx.dtsi too given commit e3bc5358e097 ?

PBIAS is not present in am33xx.

Thanks
Kishon

^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2015-08-07 14:26 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-27 12:16 [PATCH 0/4] omap: Fix broken pbias device creation Kishon Vijay Abraham I
2015-07-27 12:16 ` Kishon Vijay Abraham I
2015-07-27 12:16 ` Kishon Vijay Abraham I
2015-07-27 12:16 ` [RFT PATCH 1/4] ARM: dts: omap24xx: " Kishon Vijay Abraham I
2015-07-27 12:16   ` Kishon Vijay Abraham I
2015-07-27 12:16   ` Kishon Vijay Abraham I
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   ` Kishon Vijay Abraham I
2015-07-27 12:16 ` [PATCH 3/4] ARM: dts: OMAP5: " Kishon Vijay Abraham I
2015-07-27 12:16   ` 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
2015-07-27 12:16   ` Kishon Vijay Abraham I
2015-07-27 12:16   ` Kishon Vijay Abraham I
2015-07-29  8:57 ` [PATCH 0/4] omap: " Grygorii Strashko
2015-07-29  8:57   ` Grygorii Strashko
2015-07-29  8:57   ` Grygorii Strashko
2015-08-05 10:00   ` Tony Lindgren
2015-08-05 10:00     ` Tony Lindgren
2015-08-05 10:00     ` Tony Lindgren
2015-08-07 11:48     ` Peter Robinson
2015-08-07 11:48       ` Peter Robinson
2015-08-07 11:48       ` Peter Robinson
2015-08-07 14:25       ` Kishon Vijay Abraham I
2015-08-07 14:25         ` Kishon Vijay Abraham I
2015-08-07 14:25         ` Kishon Vijay Abraham I

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.