linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/10] Use stdout-path on qcom boards
@ 2015-06-16 21:31 Stephen Boyd
  2015-06-16 21:31 ` [PATCH 01/10] ARM: dts: qcom: Label serial nodes for aliasing and stdout-path Stephen Boyd
                   ` (9 more replies)
  0 siblings, 10 replies; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross
  Cc: Mathieu Olivari, linux-arm-msm, Tim Bird, linux-kernel,
	Mike Rapoport, Igor Grinberg, Bjorn Andersson, linux-arm-kernel

These patches convert the qcom dts files to use serial aliases
and the stdout-path property so that we don't have to put the
console on the kernel commandline.

Cc: Mike Rapoport <mike.rapoport@gmail.com>
Cc: Igor Grinberg <grinberg@compulab.co.il>
Cc: Tim Bird <tim.bird@sonymobile.com>
Cc: Bjorn Andersson <bjorn.andersson@sonymobile.com>
Cc: Mathieu Olivari <mathieu@codeaurora.org>

Stephen Boyd (10):
  ARM: dts: qcom: Label serial nodes for aliasing and stdout-path
  ARM: dts: qcom: apq8064-cm-qs600: Use stdout-path
  ARM: dts: qcom: apq8064-ifc6410: Use stdout-path
  ARM: dts: qcom: apq8074-dragonboard: Use stdout-path
  ARM: dts: qcom: apq8084-ifc6540: Use stdout-path
  ARM: dts: qcom: apq8084-mtp: Use stdout-path
  ARM: dts: qcom: ipq8064-ap148: Use stdout-path
  ARM: dts: qcom: msm8660-surf: Use stdout-path
  ARM: dts: qcom: msm8960-cdp: Use stdout-path
  ARM: dts: qcom: msm8974-sony-xperia-honami: Use stdout-path

 arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts           | 8 ++++++++
 arch/arm/boot/dts/qcom-apq8064-ifc6410.dts            | 4 ++++
 arch/arm/boot/dts/qcom-apq8074-dragonboard.dts        | 8 ++++++++
 arch/arm/boot/dts/qcom-apq8084-ifc6540.dts            | 8 ++++++++
 arch/arm/boot/dts/qcom-apq8084-mtp.dts                | 8 ++++++++
 arch/arm/boot/dts/qcom-apq8084.dtsi                   | 2 +-
 arch/arm/boot/dts/qcom-ipq8064-ap148.dts              | 8 ++++++++
 arch/arm/boot/dts/qcom-ipq8064.dtsi                   | 2 +-
 arch/arm/boot/dts/qcom-msm8660-surf.dts               | 8 ++++++++
 arch/arm/boot/dts/qcom-msm8660.dtsi                   | 2 +-
 arch/arm/boot/dts/qcom-msm8960-cdp.dts                | 8 ++++++++
 arch/arm/boot/dts/qcom-msm8960.dtsi                   | 2 +-
 arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dts | 8 ++++++++
 arch/arm/boot/dts/qcom-msm8974.dtsi                   | 2 +-
 14 files changed, 73 insertions(+), 5 deletions(-)

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 01/10] ARM: dts: qcom: Label serial nodes for aliasing and stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:35   ` Andy Gross
  2015-06-16 21:31 ` [PATCH 02/10] ARM: dts: qcom: apq8064-cm-qs600: Use stdout-path Stephen Boyd
                   ` (8 subsequent siblings)
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

Add a label to the serial nodes that are being used for the
console.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-apq8084.dtsi | 2 +-
 arch/arm/boot/dts/qcom-ipq8064.dtsi | 2 +-
 arch/arm/boot/dts/qcom-msm8660.dtsi | 2 +-
 arch/arm/boot/dts/qcom-msm8960.dtsi | 2 +-
 arch/arm/boot/dts/qcom-msm8974.dtsi | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/arm/boot/dts/qcom-apq8084.dtsi b/arch/arm/boot/dts/qcom-apq8084.dtsi
index 7084010ee61b..0554fbd72c40 100644
--- a/arch/arm/boot/dts/qcom-apq8084.dtsi
+++ b/arch/arm/boot/dts/qcom-apq8084.dtsi
@@ -234,7 +234,7 @@
 			interrupts = <0 208 0>;
 		};
 
-		serial@f995e000 {
+		blsp2_uart2: serial@f995e000 {
 			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
 			reg = <0xf995e000 0x1000>;
 			interrupts = <0 114 0x0>;
diff --git a/arch/arm/boot/dts/qcom-ipq8064.dtsi b/arch/arm/boot/dts/qcom-ipq8064.dtsi
index 9f727d8eadf6..fa698635eea0 100644
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
@@ -197,7 +197,7 @@
 
 			syscon-tcsr = <&tcsr>;
 
-			serial@16340000 {
+			gsbi4_serial: serial@16340000 {
 				compatible = "qcom,msm-uartdm-v1.3", "qcom,msm-uartdm";
 				reg = <0x16340000 0x1000>,
 				      <0x16300000 0x1000>;
diff --git a/arch/arm/boot/dts/qcom-msm8660.dtsi b/arch/arm/boot/dts/qcom-msm8660.dtsi
index e0b2ce2910e0..80070bd41d5d 100644
--- a/arch/arm/boot/dts/qcom-msm8660.dtsi
+++ b/arch/arm/boot/dts/qcom-msm8660.dtsi
@@ -97,7 +97,7 @@
 
 			syscon-tcsr = <&tcsr>;
 
-			serial@19c40000 {
+			gsbi12_serial: serial@19c40000 {
 				compatible = "qcom,msm-uartdm-v1.3", "qcom,msm-uartdm";
 				reg = <0x19c40000 0x1000>,
 				      <0x19c00000 0x1000>;
diff --git a/arch/arm/boot/dts/qcom-msm8960.dtsi b/arch/arm/boot/dts/qcom-msm8960.dtsi
index a02b984cc68d..502d332eb7bc 100644
--- a/arch/arm/boot/dts/qcom-msm8960.dtsi
+++ b/arch/arm/boot/dts/qcom-msm8960.dtsi
@@ -139,7 +139,7 @@
 
 			syscon-tcsr = <&tcsr>;
 
-			serial@16440000 {
+			gsbi5_serial: serial@16440000 {
 				compatible = "qcom,msm-uartdm-v1.3", "qcom,msm-uartdm";
 				reg = <0x16440000 0x1000>,
 				      <0x16400000 0x1000>;
diff --git a/arch/arm/boot/dts/qcom-msm8974.dtsi b/arch/arm/boot/dts/qcom-msm8974.dtsi
index 37b47b5538b8..d549f7edf21f 100644
--- a/arch/arm/boot/dts/qcom-msm8974.dtsi
+++ b/arch/arm/boot/dts/qcom-msm8974.dtsi
@@ -227,7 +227,7 @@
 			reg = <0xfd8c0000 0x6000>;
 		};
 
-		serial@f991e000 {
+		blsp1_uart2: serial@f991e000 {
 			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
 			reg = <0xf991e000 0x1000>;
 			interrupts = <0 108 0x0>;
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 02/10] ARM: dts: qcom: apq8064-cm-qs600: Use stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
  2015-06-16 21:31 ` [PATCH 01/10] ARM: dts: qcom: Label serial nodes for aliasing and stdout-path Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:33   ` Andy Gross
  2015-06-16 21:31 ` [PATCH 03/10] ARM: dts: qcom: apq8064-ifc6410: " Stephen Boyd
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross
  Cc: linux-kernel, linux-arm-msm, linux-arm-kernel, Mike Rapoport,
	Igor Grinberg

Use stdout-path so that we don't have to put the console on the
kernel command line.

Cc: Mike Rapoport <mike.rapoport@gmail.com>
Cc: Igor Grinberg <grinberg@compulab.co.il>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
index 71512b3ca444..bdc0acd5f825 100644
--- a/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
@@ -4,6 +4,14 @@
 	model = "CompuLab CM-QS600";
 	compatible = "qcom,apq8064-cm-qs600", "qcom,apq8064";
 
+	aliases {
+		serial0 = &gsbi7_serial;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
 	soc {
 		pinctrl@800000 {
 			i2c1_pins: i2c1 {
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 03/10] ARM: dts: qcom: apq8064-ifc6410: Use stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
  2015-06-16 21:31 ` [PATCH 01/10] ARM: dts: qcom: Label serial nodes for aliasing and stdout-path Stephen Boyd
  2015-06-16 21:31 ` [PATCH 02/10] ARM: dts: qcom: apq8064-cm-qs600: Use stdout-path Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:16   ` Andy Gross
  2015-06-16 21:31 ` [PATCH 04/10] ARM: dts: qcom: apq8074-dragonboard: " Stephen Boyd
                   ` (6 subsequent siblings)
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

Use stdout-path so that we don't have to put the console on the
kernel command line.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-apq8064-ifc6410.dts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
index a7c939ba8873..c843274a34ef 100644
--- a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
@@ -9,6 +9,10 @@
 		serial0 = &gsbi7_serial;
 	};
 
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
 	soc {
 		pinctrl@800000 {
 			card_detect: card_detect {
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 04/10] ARM: dts: qcom: apq8074-dragonboard: Use stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
                   ` (2 preceding siblings ...)
  2015-06-16 21:31 ` [PATCH 03/10] ARM: dts: qcom: apq8064-ifc6410: " Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:17   ` Andy Gross
  2015-06-16 21:31 ` [PATCH 05/10] ARM: dts: qcom: apq8084-ifc6540: " Stephen Boyd
                   ` (5 subsequent siblings)
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

Use stdout-path so that we don't have to put the console on the
kernel command line.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-apq8074-dragonboard.dts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-apq8074-dragonboard.dts b/arch/arm/boot/dts/qcom-apq8074-dragonboard.dts
index d484d08163e9..835bdc71c5ba 100644
--- a/arch/arm/boot/dts/qcom-apq8074-dragonboard.dts
+++ b/arch/arm/boot/dts/qcom-apq8074-dragonboard.dts
@@ -6,6 +6,14 @@
 	model = "Qualcomm APQ8074 Dragonboard";
 	compatible = "qcom,apq8074-dragonboard", "qcom,apq8074";
 
+	aliases {
+		serial0 = &blsp1_uart2;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
 	soc {
 		serial@f991e000 {
 			status = "ok";
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 05/10] ARM: dts: qcom: apq8084-ifc6540: Use stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
                   ` (3 preceding siblings ...)
  2015-06-16 21:31 ` [PATCH 04/10] ARM: dts: qcom: apq8074-dragonboard: " Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:27   ` Andy Gross
  2015-06-16 21:31 ` [PATCH 06/10] ARM: dts: qcom: apq8084-mtp: " Stephen Boyd
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

Use stdout-path so that we don't have to put the console on the
kernel command line.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-apq8084-ifc6540.dts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts b/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts
index f7725b96612c..c9c2b769554f 100644
--- a/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts
+++ b/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts
@@ -5,6 +5,14 @@
 	model = "Qualcomm APQ8084/IFC6540";
 	compatible = "qcom,apq8084-ifc6540", "qcom,apq8084";
 
+	aliases {
+		serial0 = &blsp2_uart2;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
 	soc {
 		serial@f995e000 {
 			status = "okay";
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 06/10] ARM: dts: qcom: apq8084-mtp: Use stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
                   ` (4 preceding siblings ...)
  2015-06-16 21:31 ` [PATCH 05/10] ARM: dts: qcom: apq8084-ifc6540: " Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:36   ` Andy Gross
  2015-06-16 21:31 ` [PATCH 07/10] ARM: dts: qcom: ipq8064-ap148: " Stephen Boyd
                   ` (3 subsequent siblings)
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

Use stdout-path so that we don't have to put the console on the
kernel command line.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-apq8084-mtp.dts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-apq8084-mtp.dts b/arch/arm/boot/dts/qcom-apq8084-mtp.dts
index cb43acfc5d1d..3016c7048d44 100644
--- a/arch/arm/boot/dts/qcom-apq8084-mtp.dts
+++ b/arch/arm/boot/dts/qcom-apq8084-mtp.dts
@@ -5,6 +5,14 @@
 	model = "Qualcomm APQ 8084-MTP";
 	compatible = "qcom,apq8084-mtp", "qcom,apq8084";
 
+	aliases {
+		serial0 = &blsp2_uart2;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
 	soc {
 		serial@f995e000 {
 			status = "okay";
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 07/10] ARM: dts: qcom: ipq8064-ap148: Use stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
                   ` (5 preceding siblings ...)
  2015-06-16 21:31 ` [PATCH 06/10] ARM: dts: qcom: apq8084-mtp: " Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:34   ` Andy Gross
  2015-06-16 21:31 ` [PATCH 08/10] ARM: dts: qcom: msm8660-surf: " Stephen Boyd
                   ` (2 subsequent siblings)
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel, Mathieu Olivari

Use stdout-path so that we don't have to put the console on the
kernel command line.

Cc: Mathieu Olivari <mathieu@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-ipq8064-ap148.dts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-ipq8064-ap148.dts b/arch/arm/boot/dts/qcom-ipq8064-ap148.dts
index 55b2910efd87..d501382493e3 100644
--- a/arch/arm/boot/dts/qcom-ipq8064-ap148.dts
+++ b/arch/arm/boot/dts/qcom-ipq8064-ap148.dts
@@ -4,6 +4,14 @@
 	model = "Qualcomm IPQ8064/AP148";
 	compatible = "qcom,ipq8064-ap148", "qcom,ipq8064";
 
+	aliases {
+		serial0 = &gsbi4_serial;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
 	reserved-memory {
 		#address-cells = <1>;
 		#size-cells = <1>;
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 08/10] ARM: dts: qcom: msm8660-surf: Use stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
                   ` (6 preceding siblings ...)
  2015-06-16 21:31 ` [PATCH 07/10] ARM: dts: qcom: ipq8064-ap148: " Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:36   ` Andy Gross
  2015-06-16 21:31 ` [PATCH 09/10] ARM: dts: qcom: msm8960-cdp: " Stephen Boyd
  2015-06-16 21:31 ` [PATCH 10/10] ARM: dts: qcom: msm8974-sony-xperia-honami: " Stephen Boyd
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

Use stdout-path so that we don't have to put the console on the
kernel command line.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-msm8660-surf.dts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-msm8660-surf.dts b/arch/arm/boot/dts/qcom-msm8660-surf.dts
index e0883c376248..b17f379e8c2a 100644
--- a/arch/arm/boot/dts/qcom-msm8660-surf.dts
+++ b/arch/arm/boot/dts/qcom-msm8660-surf.dts
@@ -6,6 +6,14 @@
 	model = "Qualcomm MSM8660 SURF";
 	compatible = "qcom,msm8660-surf", "qcom,msm8660";
 
+	aliases {
+		serial0 = &gsbi12_serial;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
 	soc {
 		gsbi@19c00000 {
 			status = "ok";
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 09/10] ARM: dts: qcom: msm8960-cdp: Use stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
                   ` (7 preceding siblings ...)
  2015-06-16 21:31 ` [PATCH 08/10] ARM: dts: qcom: msm8660-surf: " Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:28   ` Andy Gross
  2015-06-16 21:31 ` [PATCH 10/10] ARM: dts: qcom: msm8974-sony-xperia-honami: " Stephen Boyd
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

Use stdout-path so that we don't have to put the console on the
kernel command line.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-msm8960-cdp.dts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-msm8960-cdp.dts b/arch/arm/boot/dts/qcom-msm8960-cdp.dts
index 7f70fae90959..9a99742e4a18 100644
--- a/arch/arm/boot/dts/qcom-msm8960-cdp.dts
+++ b/arch/arm/boot/dts/qcom-msm8960-cdp.dts
@@ -6,6 +6,14 @@
 	model = "Qualcomm MSM8960 CDP";
 	compatible = "qcom,msm8960-cdp", "qcom,msm8960";
 
+	aliases {
+		serial0 = &gsbi5_serial;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
 	soc {
 		gsbi@16400000 {
 			status = "ok";
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH 10/10] ARM: dts: qcom: msm8974-sony-xperia-honami: Use stdout-path
  2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
                   ` (8 preceding siblings ...)
  2015-06-16 21:31 ` [PATCH 09/10] ARM: dts: qcom: msm8960-cdp: " Stephen Boyd
@ 2015-06-16 21:31 ` Stephen Boyd
  2015-08-27  4:36   ` Andy Gross
  9 siblings, 1 reply; 21+ messages in thread
From: Stephen Boyd @ 2015-06-16 21:31 UTC (permalink / raw)
  To: Andy Gross
  Cc: linux-kernel, linux-arm-msm, linux-arm-kernel, Tim Bird, Bjorn Andersson

Use stdout-path so that we don't have to put the console on the
kernel command line.

Cc: Tim Bird <tim.bird@sonymobile.com>
Cc: Bjorn Andersson <bjorn.andersson@sonymobile.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dts b/arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dts
index bd35b0674ff6..eb547f1f6a60 100644
--- a/arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dts
+++ b/arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dts
@@ -6,6 +6,14 @@
 	model = "Sony Xperia Z1";
 	compatible = "sony,xperia-honami", "qcom,msm8974";
 
+	aliases {
+		serial0 = &blsp1_uart2;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
 	memory@0 {
 		reg = <0 0x40000000>, <0x40000000 0x40000000>;
 		device_type = "memory";
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 03/10] ARM: dts: qcom: apq8064-ifc6410: Use stdout-path
  2015-06-16 21:31 ` [PATCH 03/10] ARM: dts: qcom: apq8064-ifc6410: " Stephen Boyd
@ 2015-08-27  4:16   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:16 UTC (permalink / raw)
  To: Stephen Boyd; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

On Tue, Jun 16, 2015 at 02:31:46PM -0700, Stephen Boyd wrote:
> Use stdout-path so that we don't have to put the console on the
> kernel command line.
> 
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  arch/arm/boot/dts/qcom-apq8064-ifc6410.dts | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts

Thanks.  Applied.

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 04/10] ARM: dts: qcom: apq8074-dragonboard: Use stdout-path
  2015-06-16 21:31 ` [PATCH 04/10] ARM: dts: qcom: apq8074-dragonboard: " Stephen Boyd
@ 2015-08-27  4:17   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:17 UTC (permalink / raw)
  To: Stephen Boyd; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

On Tue, Jun 16, 2015 at 02:31:47PM -0700, Stephen Boyd wrote:
> Use stdout-path so that we don't have to put the console on the
> kernel command line.
> 
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  arch/arm/boot/dts/qcom-apq8074-dragonboard.dts | 8 ++++++++
>  1 file changed, 8 insertions(+)

Thanks.  Applied.

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 05/10] ARM: dts: qcom: apq8084-ifc6540: Use stdout-path
  2015-06-16 21:31 ` [PATCH 05/10] ARM: dts: qcom: apq8084-ifc6540: " Stephen Boyd
@ 2015-08-27  4:27   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:27 UTC (permalink / raw)
  To: Stephen Boyd; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

On Tue, Jun 16, 2015 at 02:31:48PM -0700, Stephen Boyd wrote:
> Use stdout-path so that we don't have to put the console on the
> kernel command line.
> 
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  arch/arm/boot/dts/qcom-apq8084-ifc6540.dts | 8 ++++++++
>  1 file changed, 8 insertions(+)

Applied.  Thanks

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 09/10] ARM: dts: qcom: msm8960-cdp: Use stdout-path
  2015-06-16 21:31 ` [PATCH 09/10] ARM: dts: qcom: msm8960-cdp: " Stephen Boyd
@ 2015-08-27  4:28   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:28 UTC (permalink / raw)
  To: Stephen Boyd; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

On Tue, Jun 16, 2015 at 02:31:52PM -0700, Stephen Boyd wrote:
> Use stdout-path so that we don't have to put the console on the
> kernel command line.
> 
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  arch/arm/boot/dts/qcom-msm8960-cdp.dts | 8 ++++++++
>  1 file changed, 8 insertions(+)

Applied.  Thanks

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 02/10] ARM: dts: qcom: apq8064-cm-qs600: Use stdout-path
  2015-06-16 21:31 ` [PATCH 02/10] ARM: dts: qcom: apq8064-cm-qs600: Use stdout-path Stephen Boyd
@ 2015-08-27  4:33   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:33 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: linux-kernel, linux-arm-msm, linux-arm-kernel, Mike Rapoport,
	Igor Grinberg

On Tue, Jun 16, 2015 at 02:31:45PM -0700, Stephen Boyd wrote:
> Use stdout-path so that we don't have to put the console on the
> kernel command line.
> 
> Cc: Mike Rapoport <mike.rapoport@gmail.com>
> Cc: Igor Grinberg <grinberg@compulab.co.il>
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts | 8 ++++++++
>  1 file changed, 8 insertions(+)


Applied.  Thanks

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 07/10] ARM: dts: qcom: ipq8064-ap148: Use stdout-path
  2015-06-16 21:31 ` [PATCH 07/10] ARM: dts: qcom: ipq8064-ap148: " Stephen Boyd
@ 2015-08-27  4:34   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:34 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: linux-kernel, linux-arm-msm, linux-arm-kernel, Mathieu Olivari

On Tue, Jun 16, 2015 at 02:31:50PM -0700, Stephen Boyd wrote:
> Use stdout-path so that we don't have to put the console on the
> kernel command line.
> 
> Cc: Mathieu Olivari <mathieu@codeaurora.org>
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  arch/arm/boot/dts/qcom-ipq8064-ap148.dts | 8 ++++++++
>  1 file changed, 8 insertions(+)

Applied thanks

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 01/10] ARM: dts: qcom: Label serial nodes for aliasing and stdout-path
  2015-06-16 21:31 ` [PATCH 01/10] ARM: dts: qcom: Label serial nodes for aliasing and stdout-path Stephen Boyd
@ 2015-08-27  4:35   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:35 UTC (permalink / raw)
  To: Stephen Boyd; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

On Tue, Jun 16, 2015 at 02:31:44PM -0700, Stephen Boyd wrote:
> Add a label to the serial nodes that are being used for the
> console.
> 
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---

Applied.  Thanks

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 08/10] ARM: dts: qcom: msm8660-surf: Use stdout-path
  2015-06-16 21:31 ` [PATCH 08/10] ARM: dts: qcom: msm8660-surf: " Stephen Boyd
@ 2015-08-27  4:36   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:36 UTC (permalink / raw)
  To: Stephen Boyd; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

On Tue, Jun 16, 2015 at 02:31:51PM -0700, Stephen Boyd wrote:
> Use stdout-path so that we don't have to put the console on the
> kernel command line.
> 
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  arch/arm/boot/dts/qcom-msm8660-surf.dts | 8 ++++++++
>  1 file changed, 8 insertions(+)

Applied.  thanks

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 10/10] ARM: dts: qcom: msm8974-sony-xperia-honami: Use stdout-path
  2015-06-16 21:31 ` [PATCH 10/10] ARM: dts: qcom: msm8974-sony-xperia-honami: " Stephen Boyd
@ 2015-08-27  4:36   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:36 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: linux-kernel, linux-arm-msm, linux-arm-kernel, Tim Bird, Bjorn Andersson

On Tue, Jun 16, 2015 at 02:31:53PM -0700, Stephen Boyd wrote:
> Use stdout-path so that we don't have to put the console on the
> kernel command line.
> 
> Cc: Tim Bird <tim.bird@sonymobile.com>
> Cc: Bjorn Andersson <bjorn.andersson@sonymobile.com>
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dts | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 

Applied.  Thanks

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH 06/10] ARM: dts: qcom: apq8084-mtp: Use stdout-path
  2015-06-16 21:31 ` [PATCH 06/10] ARM: dts: qcom: apq8084-mtp: " Stephen Boyd
@ 2015-08-27  4:36   ` Andy Gross
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Gross @ 2015-08-27  4:36 UTC (permalink / raw)
  To: Stephen Boyd; +Cc: linux-kernel, linux-arm-msm, linux-arm-kernel

On Tue, Jun 16, 2015 at 02:31:49PM -0700, Stephen Boyd wrote:
> Use stdout-path so that we don't have to put the console on the
> kernel command line.
> 
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  arch/arm/boot/dts/qcom-apq8084-mtp.dts | 8 ++++++++
>  1 file changed, 8 insertions(+)


Applied.  Thanks

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

end of thread, other threads:[~2015-08-27  4:36 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-16 21:31 [PATCH 00/10] Use stdout-path on qcom boards Stephen Boyd
2015-06-16 21:31 ` [PATCH 01/10] ARM: dts: qcom: Label serial nodes for aliasing and stdout-path Stephen Boyd
2015-08-27  4:35   ` Andy Gross
2015-06-16 21:31 ` [PATCH 02/10] ARM: dts: qcom: apq8064-cm-qs600: Use stdout-path Stephen Boyd
2015-08-27  4:33   ` Andy Gross
2015-06-16 21:31 ` [PATCH 03/10] ARM: dts: qcom: apq8064-ifc6410: " Stephen Boyd
2015-08-27  4:16   ` Andy Gross
2015-06-16 21:31 ` [PATCH 04/10] ARM: dts: qcom: apq8074-dragonboard: " Stephen Boyd
2015-08-27  4:17   ` Andy Gross
2015-06-16 21:31 ` [PATCH 05/10] ARM: dts: qcom: apq8084-ifc6540: " Stephen Boyd
2015-08-27  4:27   ` Andy Gross
2015-06-16 21:31 ` [PATCH 06/10] ARM: dts: qcom: apq8084-mtp: " Stephen Boyd
2015-08-27  4:36   ` Andy Gross
2015-06-16 21:31 ` [PATCH 07/10] ARM: dts: qcom: ipq8064-ap148: " Stephen Boyd
2015-08-27  4:34   ` Andy Gross
2015-06-16 21:31 ` [PATCH 08/10] ARM: dts: qcom: msm8660-surf: " Stephen Boyd
2015-08-27  4:36   ` Andy Gross
2015-06-16 21:31 ` [PATCH 09/10] ARM: dts: qcom: msm8960-cdp: " Stephen Boyd
2015-08-27  4:28   ` Andy Gross
2015-06-16 21:31 ` [PATCH 10/10] ARM: dts: qcom: msm8974-sony-xperia-honami: " Stephen Boyd
2015-08-27  4:36   ` Andy Gross

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).