All of lore.kernel.org
 help / color / mirror / Atom feed
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: agross@codeaurora.org, linux-arm-msm@vger.kernel.org
Cc: Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Russell King <linux@arm.linux.org.uk>,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, srinivas.kandagatla@linaro.org
Subject: [PATCH 01/14] ARM: dts: apq8064: remove redundant i2c pinctrl properties
Date: Fri, 18 Sep 2015 13:30:13 +0100	[thread overview]
Message-ID: <1442579413-19865-1-git-send-email-srinivas.kandagatla@linaro.org> (raw)
In-Reply-To: <1442579371-19822-1-git-send-email-srinivas.kandagatla@linaro.org>

This patch removes i2c pinctrl properties from board which which are now
mentioned in the SOC specific file. This will avoid redundant properties
across multiple board fiiles.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
---
 arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts | 11 -----------
 arch/arm/boot/dts/qcom-apq8064-ifc6410.dts  |  5 -----
 arch/arm/boot/dts/qcom-apq8064.dtsi         |  4 ++++
 3 files changed, 4 insertions(+), 16 deletions(-)

diff --git a/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
index 47c0282..80ab5b8 100644
--- a/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
@@ -13,15 +13,6 @@
 	};
 
 	soc {
-		pinctrl@800000 {
-			i2c1_pins: i2c1 {
-				mux {
-					pins = "gpio20", "gpio21";
-					function = "gsbi1";
-				};
-			};
-		};
-
 		rpm@108000 {
 			regulators {
 				vin_lvs1_3_6-supply = <&pm8921_s4>;
@@ -96,8 +87,6 @@
 			i2c@12460000 {
 				status = "okay";
 				clock-frequency = <200000>;
-				pinctrl-0 = <&i2c1_pins>;
-				pinctrl-names = "default";
 
 				eeprom: eeprom@50 {
 					compatible = "24c02";
diff --git a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
index f3100da..b701f33 100644
--- a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
@@ -119,8 +119,6 @@
 			qcom,mode = <GSBI_PROT_I2C>;
 			i2c3: i2c@16280000 {
 				status = "okay";
-				pinctrl-0 = <&i2c3_pins>;
-				pinctrl-names = "default";
 			};
 		};
 
@@ -131,8 +129,6 @@
 			i2c@12460000 {
 				status = "okay";
 				clock-frequency = <200000>;
-				pinctrl-0 = <&i2c1_pins>;
-				pinctrl-names = "default";
 
 				eeprom: eeprom@52 {
 					compatible = "atmel,24c128";
@@ -148,7 +144,6 @@
 
 			serial@16540000 {
 				status = "ok";
-
 				pinctrl-names = "default";
 				pinctrl-0 = <&uart_pins>;
 			};
diff --git a/arch/arm/boot/dts/qcom-apq8064.dtsi b/arch/arm/boot/dts/qcom-apq8064.dtsi
index d2e94d6..53d5311 100644
--- a/arch/arm/boot/dts/qcom-apq8064.dtsi
+++ b/arch/arm/boot/dts/qcom-apq8064.dtsi
@@ -213,6 +213,8 @@
 
 			i2c1: i2c@12460000 {
 				compatible = "qcom,i2c-qup-v1.1.1";
+				pinctrl-0 = <&i2c1_pins>;
+				pinctrl-names = "default";
 				reg = <0x12460000 0x1000>;
 				interrupts = <0 194 IRQ_TYPE_NONE>;
 				clocks = <&gcc GSBI1_QUP_CLK>, <&gcc GSBI1_H_CLK>;
@@ -258,6 +260,8 @@
 			ranges;
 			i2c3: i2c@16280000 {
 				compatible = "qcom,i2c-qup-v1.1.1";
+				pinctrl-0 = <&i2c3_pins>;
+				pinctrl-names = "default";
 				reg = <0x16280000 0x1000>;
 				interrupts = <GIC_SPI 151 IRQ_TYPE_NONE>;
 				clocks = <&gcc GSBI3_QUP_CLK>,
-- 
1.9.1

WARNING: multiple messages have this Message-ID (diff)
From: srinivas.kandagatla@linaro.org (Srinivas Kandagatla)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 01/14] ARM: dts: apq8064: remove redundant i2c pinctrl properties
Date: Fri, 18 Sep 2015 13:30:13 +0100	[thread overview]
Message-ID: <1442579413-19865-1-git-send-email-srinivas.kandagatla@linaro.org> (raw)
In-Reply-To: <1442579371-19822-1-git-send-email-srinivas.kandagatla@linaro.org>

This patch removes i2c pinctrl properties from board which which are now
mentioned in the SOC specific file. This will avoid redundant properties
across multiple board fiiles.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
---
 arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts | 11 -----------
 arch/arm/boot/dts/qcom-apq8064-ifc6410.dts  |  5 -----
 arch/arm/boot/dts/qcom-apq8064.dtsi         |  4 ++++
 3 files changed, 4 insertions(+), 16 deletions(-)

diff --git a/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
index 47c0282..80ab5b8 100644
--- a/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
@@ -13,15 +13,6 @@
 	};
 
 	soc {
-		pinctrl at 800000 {
-			i2c1_pins: i2c1 {
-				mux {
-					pins = "gpio20", "gpio21";
-					function = "gsbi1";
-				};
-			};
-		};
-
 		rpm at 108000 {
 			regulators {
 				vin_lvs1_3_6-supply = <&pm8921_s4>;
@@ -96,8 +87,6 @@
 			i2c at 12460000 {
 				status = "okay";
 				clock-frequency = <200000>;
-				pinctrl-0 = <&i2c1_pins>;
-				pinctrl-names = "default";
 
 				eeprom: eeprom at 50 {
 					compatible = "24c02";
diff --git a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
index f3100da..b701f33 100644
--- a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
@@ -119,8 +119,6 @@
 			qcom,mode = <GSBI_PROT_I2C>;
 			i2c3: i2c at 16280000 {
 				status = "okay";
-				pinctrl-0 = <&i2c3_pins>;
-				pinctrl-names = "default";
 			};
 		};
 
@@ -131,8 +129,6 @@
 			i2c at 12460000 {
 				status = "okay";
 				clock-frequency = <200000>;
-				pinctrl-0 = <&i2c1_pins>;
-				pinctrl-names = "default";
 
 				eeprom: eeprom at 52 {
 					compatible = "atmel,24c128";
@@ -148,7 +144,6 @@
 
 			serial at 16540000 {
 				status = "ok";
-
 				pinctrl-names = "default";
 				pinctrl-0 = <&uart_pins>;
 			};
diff --git a/arch/arm/boot/dts/qcom-apq8064.dtsi b/arch/arm/boot/dts/qcom-apq8064.dtsi
index d2e94d6..53d5311 100644
--- a/arch/arm/boot/dts/qcom-apq8064.dtsi
+++ b/arch/arm/boot/dts/qcom-apq8064.dtsi
@@ -213,6 +213,8 @@
 
 			i2c1: i2c at 12460000 {
 				compatible = "qcom,i2c-qup-v1.1.1";
+				pinctrl-0 = <&i2c1_pins>;
+				pinctrl-names = "default";
 				reg = <0x12460000 0x1000>;
 				interrupts = <0 194 IRQ_TYPE_NONE>;
 				clocks = <&gcc GSBI1_QUP_CLK>, <&gcc GSBI1_H_CLK>;
@@ -258,6 +260,8 @@
 			ranges;
 			i2c3: i2c at 16280000 {
 				compatible = "qcom,i2c-qup-v1.1.1";
+				pinctrl-0 = <&i2c3_pins>;
+				pinctrl-names = "default";
 				reg = <0x16280000 0x1000>;
 				interrupts = <GIC_SPI 151 IRQ_TYPE_NONE>;
 				clocks = <&gcc GSBI3_QUP_CLK>,
-- 
1.9.1

  reply	other threads:[~2015-09-18 12:30 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-18 12:29 [PATCH 00/14] ARM: dts: apq8064 dt cleanups and additions Srinivas Kandagatla
2015-09-18 12:29 ` Srinivas Kandagatla
2015-09-18 12:29 ` Srinivas Kandagatla
2015-09-18 12:30 ` Srinivas Kandagatla [this message]
2015-09-18 12:30   ` [PATCH 01/14] ARM: dts: apq8064: remove redundant i2c pinctrl properties Srinivas Kandagatla
2015-09-18 12:30 ` [PATCH 02/14] ARM: dts: ifc6410: remove unnecessary eeprom label Srinivas Kandagatla
2015-09-18 12:30   ` Srinivas Kandagatla
2015-09-18 12:30 ` [PATCH 03/14] ARM: dts: qs600: " Srinivas Kandagatla
2015-09-18 12:30   ` Srinivas Kandagatla
2015-09-18 12:31 ` [PATCH 04/14] devicetree: Add hardware rng entry to qcom-apq8064.dtsi Srinivas Kandagatla
2015-09-18 12:31   ` Srinivas Kandagatla
     [not found]   ` <1442579472-20102-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-10-26 21:46     ` Bjorn Andersson
2015-10-26 21:46       ` Bjorn Andersson
2015-10-26 21:46       ` Bjorn Andersson
2015-09-18 12:31 ` [PATCH 05/14] ARM: dts: apq8064: add pm8921 rtc Srinivas Kandagatla
2015-09-18 12:31   ` Srinivas Kandagatla
2015-09-18 12:31 ` [PATCH 06/14] ARM: dts: apq8064: add pm8921 pwrkey support Srinivas Kandagatla
2015-09-18 12:31   ` Srinivas Kandagatla
2015-09-18 12:31 ` [PATCH 07/14] ARM: dts: apq8064: Prefix the gsbi6 uart pins correctly Srinivas Kandagatla
2015-09-18 12:31   ` Srinivas Kandagatla
2015-09-18 12:31 ` [PATCH 08/14] ARM: dts: apq8064: add missing gsbi7 uart pinctrl Srinivas Kandagatla
2015-09-18 12:31   ` Srinivas Kandagatla
2015-09-18 12:31 ` [PATCH 09/14] ARM: dts: ifc6410: Add missing pinctrl to gsbi7 uart Srinivas Kandagatla
2015-09-18 12:31   ` Srinivas Kandagatla
2015-09-25 18:54   ` Kevin Hilman
2015-09-25 18:54     ` Kevin Hilman
2015-09-25 18:54     ` Kevin Hilman
2015-09-30 13:22     ` Srinivas Kandagatla
2015-09-30 13:22       ` Srinivas Kandagatla
2015-09-30 13:22       ` Srinivas Kandagatla
2015-09-18 12:31 ` [PATCH 10/14] ARM: dts: qs600: Add missing pinctrl property for " Srinivas Kandagatla
2015-09-18 12:31   ` Srinivas Kandagatla
2015-09-21  6:26   ` Igor Grinberg
2015-09-21  6:26     ` Igor Grinberg
2015-09-18 12:31 ` [PATCH 11/14] ARM: dts: ifc6410: Add pwrseq support for WLAN Srinivas Kandagatla
2015-09-18 12:31   ` Srinivas Kandagatla
2015-09-18 12:32 ` [PATCH 12/14] ARM: dts: qs600: add pwrseq support to WLAN Srinivas Kandagatla
2015-09-18 12:32   ` Srinivas Kandagatla
2015-09-21  6:27   ` Igor Grinberg
2015-09-21  6:27     ` Igor Grinberg
2015-09-18 12:32 ` [PATCH 13/14] ARM: dts: apq8064-ifc6410: add notify led support Srinivas Kandagatla
2015-09-18 12:32   ` Srinivas Kandagatla
2015-09-18 12:32 ` [PATCH 14/14] ARM: dts: qs600: Add SD card detect support Srinivas Kandagatla
2015-09-18 12:32   ` Srinivas Kandagatla
2015-09-21  6:31   ` Igor Grinberg
2015-09-21  6:31     ` Igor Grinberg
2015-09-20  2:52 ` [PATCH 00/14] ARM: dts: apq8064 dt cleanups and additions Andy Gross
2015-09-20  2:52   ` Andy Gross

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1442579413-19865-1-git-send-email-srinivas.kandagatla@linaro.org \
    --to=srinivas.kandagatla@linaro.org \
    --cc=agross@codeaurora.org \
    --cc=devicetree@vger.kernel.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=robh+dt@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.