mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v1 0/2] ARM: dts: qcom: Add initial IFC6540 board support
@ 2014-08-26 15:39 Georgi Djakov
  2014-08-26 15:39 ` [PATCH v1 1/2] ARM: dts: qcom: Add initial IFC6540 board device tree Georgi Djakov
  2014-08-26 15:39 ` [PATCH v1 2/2] ARM: dts: qcom: Enable serial port on IFC6540 boards Georgi Djakov
  0 siblings, 2 replies; 3+ messages in thread
From: Georgi Djakov @ 2014-08-26 15:39 UTC (permalink / raw)
  To: galak
  Cc: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, linux,
	devicetree, linux-arm-kernel, linux-kernel, iivanov,
	Georgi Djakov

Add basic support for the IFC6540 single-board computer boards, that are
based on the APQ8084 SoC. The first patch adds the initial device tree
and the second enables the serial console.

Should go through the qcom/arm-soc tree.

Georgi Djakov (2):
  ARM: dts: qcom: Add initial IFC6540 board device tree
  ARM: dts: qcom: Enable serial port on IFC6540 boards

 arch/arm/boot/dts/Makefile                 |    1 +
 arch/arm/boot/dts/qcom-apq8084-ifc6540.dts |   12 ++++++++++++
 2 files changed, 13 insertions(+)
 create mode 100644 arch/arm/boot/dts/qcom-apq8084-ifc6540.dts

-- 
1.7.9.5


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

* [PATCH v1 1/2] ARM: dts: qcom: Add initial IFC6540 board device tree
  2014-08-26 15:39 [PATCH v1 0/2] ARM: dts: qcom: Add initial IFC6540 board support Georgi Djakov
@ 2014-08-26 15:39 ` Georgi Djakov
  2014-08-26 15:39 ` [PATCH v1 2/2] ARM: dts: qcom: Enable serial port on IFC6540 boards Georgi Djakov
  1 sibling, 0 replies; 3+ messages in thread
From: Georgi Djakov @ 2014-08-26 15:39 UTC (permalink / raw)
  To: galak
  Cc: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, linux,
	devicetree, linux-arm-kernel, linux-kernel, iivanov,
	Georgi Djakov

Add initial device tree for the IFC6540 Snapdragon 805 pico-itx
single-board computer.

Signed-off-by: Georgi Djakov <gdjakov@mm-sol.com>
---
 arch/arm/boot/dts/Makefile                 |    1 +
 arch/arm/boot/dts/qcom-apq8084-ifc6540.dts |    6 ++++++
 2 files changed, 7 insertions(+)
 create mode 100644 arch/arm/boot/dts/qcom-apq8084-ifc6540.dts

diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
index b022972..df8453a 100644
--- a/arch/arm/boot/dts/Makefile
+++ b/arch/arm/boot/dts/Makefile
@@ -345,6 +345,7 @@ dtb-$(CONFIG_ARCH_PRIMA2) += prima2-evb.dtb
 dtb-$(CONFIG_ARCH_QCOM) += \
 	qcom-apq8064-ifc6410.dtb \
 	qcom-apq8074-dragonboard.dtb \
+	qcom-apq8084-ifc6540.dtb \
 	qcom-apq8084-mtp.dtb \
 	qcom-msm8660-surf.dtb \
 	qcom-msm8960-cdp.dtb
diff --git a/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts b/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts
new file mode 100644
index 0000000..4603e91
--- /dev/null
+++ b/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts
@@ -0,0 +1,6 @@
+#include "qcom-apq8084.dtsi"
+
+/ {
+	model = "Qualcomm APQ8084/IFC6540";
+	compatible = "qcom,apq8084-ifc6540", "qcom,apq8084";
+};
-- 
1.7.9.5


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

* [PATCH v1 2/2] ARM: dts: qcom: Enable serial port on IFC6540 boards
  2014-08-26 15:39 [PATCH v1 0/2] ARM: dts: qcom: Add initial IFC6540 board support Georgi Djakov
  2014-08-26 15:39 ` [PATCH v1 1/2] ARM: dts: qcom: Add initial IFC6540 board device tree Georgi Djakov
@ 2014-08-26 15:39 ` Georgi Djakov
  1 sibling, 0 replies; 3+ messages in thread
From: Georgi Djakov @ 2014-08-26 15:39 UTC (permalink / raw)
  To: galak
  Cc: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, linux,
	devicetree, linux-arm-kernel, linux-kernel, iivanov,
	Georgi Djakov

Enable the serial port on the IFC6540 boards.

Signed-off-by: Georgi Djakov <gdjakov@mm-sol.com>
---
 arch/arm/boot/dts/qcom-apq8084-ifc6540.dts |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts b/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts
index 4603e91..e41cb8a 100644
--- a/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts
+++ b/arch/arm/boot/dts/qcom-apq8084-ifc6540.dts
@@ -3,4 +3,10 @@
 / {
 	model = "Qualcomm APQ8084/IFC6540";
 	compatible = "qcom,apq8084-ifc6540", "qcom,apq8084";
+
+	soc {
+		serial@f995e000 {
+			status = "okay";
+		};
+	};
 };
-- 
1.7.9.5


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

end of thread, other threads:[~2014-08-26 15:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-26 15:39 [PATCH v1 0/2] ARM: dts: qcom: Add initial IFC6540 board support Georgi Djakov
2014-08-26 15:39 ` [PATCH v1 1/2] ARM: dts: qcom: Add initial IFC6540 board device tree Georgi Djakov
2014-08-26 15:39 ` [PATCH v1 2/2] ARM: dts: qcom: Enable serial port on IFC6540 boards Georgi Djakov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®