devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: Andy Gross <andy.gross@linaro.org>, linux-arm-msm@vger.kernel.org
Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, linux-soc@vger.kernel.org,
	srinivas.kandagatla@linaro.org
Subject: [PATCH v2 10/13] ARM: dts: db600c: Add on board leds support
Date: Tue, 12 Apr 2016 10:33:59 +0100	[thread overview]
Message-ID: <1460453642-5809-11-git-send-email-srinivas.kandagatla@linaro.org> (raw)
In-Reply-To: <1460453642-5809-1-git-send-email-srinivas.kandagatla@linaro.org>

This patch adds support to 4 user leds, wlan and bt led on board.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
---
 .../boot/dts/qcom-apq8064-arrow-db600c-pins.dtsi   | 23 +++++++++++
 arch/arm/boot/dts/qcom-apq8064-arrow-db600c.dts    | 47 ++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-apq8064-arrow-db600c-pins.dtsi b/arch/arm/boot/dts/qcom-apq8064-arrow-db600c-pins.dtsi
index 0610f00..3b55bb9 100644
--- a/arch/arm/boot/dts/qcom-apq8064-arrow-db600c-pins.dtsi
+++ b/arch/arm/boot/dts/qcom-apq8064-arrow-db600c-pins.dtsi
@@ -18,4 +18,27 @@
 			bias-disable;
 		};
 	};
+
+	user_leds: user-leds {
+		mux {
+			pins = "gpio3", "gpio7", "gpio10", "gpio11";
+			function = "gpio";
+		};
+
+		conf {
+			pins = "gpio3", "gpio7", "gpio10", "gpio11";
+			function = "gpio";
+			output-low;
+		};
+	};
+};
+
+&pm8921_mpps {
+	mpp_leds: mpp-leds {
+		pinconf {
+			pins = "mpp7", "mpp8";
+			function = "digital";
+			output-low;
+		};
+	};
 };
diff --git a/arch/arm/boot/dts/qcom-apq8064-arrow-db600c.dts b/arch/arm/boot/dts/qcom-apq8064-arrow-db600c.dts
index 6f97ddc..8c18a4b 100644
--- a/arch/arm/boot/dts/qcom-apq8064-arrow-db600c.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-arrow-db600c.dts
@@ -153,6 +153,53 @@
 			};
 		};
 
+		leds {
+			pinctrl-names = "default";
+			pinctrl-0 = <&user_leds>, <&mpp_leds>;
+
+			compatible = "gpio-leds";
+
+			user-led0 {
+				label = "user0-led";
+				gpios = <&tlmm_pinmux 3 GPIO_ACTIVE_HIGH>;
+				linux,default-trigger = "heartbeat";
+				default-state = "off";
+			};
+
+			user-led1 {
+				label = "user1-led";
+				gpios = <&tlmm_pinmux 7 GPIO_ACTIVE_HIGH>;
+				linux,default-trigger = "mmc0";
+				default-state = "off";
+			};
+
+			user-led2 {
+				label = "user2-led";
+				gpios = <&tlmm_pinmux 10 GPIO_ACTIVE_HIGH>;
+				linux,default-trigger = "mmc1";
+				default-state = "off";
+			};
+
+			user-led3 {
+				label = "user3-led";
+				gpios = <&tlmm_pinmux 11 GPIO_ACTIVE_HIGH>;
+				linux,default-trigger = "none";
+				default-state = "off";
+			};
+
+			wifi-led {
+				label = "WiFi-led";
+				gpios = <&pm8921_mpps 7 GPIO_ACTIVE_HIGH>;
+				default-state = "off";
+			};
+
+			bt-led {
+				label = "BT-led";
+				gpios = <&pm8921_mpps 8 GPIO_ACTIVE_HIGH>;
+				default-state = "off";
+			};
+		};
+
 		pci@1b500000 {
 			status = "okay";
 			vdda-supply = <&pm8921_s3>;
-- 
2.5.0

  parent reply	other threads:[~2016-04-12  9:33 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-12  9:33 [PATCH v2 00/13] ARM: dts: Add DB600c support Srinivas Kandagatla
2016-04-12  9:33 ` [PATCH v2 01/13] ARM: dts: apq8064: fix the pinctrls for i2c and spi Srinivas Kandagatla
2016-04-12  9:33 ` [PATCH v2 02/13] ARM: dts: apq8064: add support to gsbi1 uart Srinivas Kandagatla
2016-04-12  9:33 ` [PATCH v2 03/13] ARM: dts: apq8064: add gsbi7 i2c support Srinivas Kandagatla
2016-04-12  9:33 ` [PATCH v2 04/13] ARM: dts: db600c: add board support with serial Srinivas Kandagatla
2016-04-12  9:33 ` [PATCH v2 05/13] ARM: dts: db600c: add pmic regulator supplies Srinivas Kandagatla
2016-04-19 19:10   ` Stephen Boyd
2016-04-22  9:11     ` Srinivas Kandagatla
2016-04-12  9:33 ` [PATCH v2 06/13] ARM: dts: db600c: Add eMMC and SD card support Srinivas Kandagatla
2016-04-12  9:33 ` [PATCH v2 07/13] ARM: dts: db600c: add usb support Srinivas Kandagatla
2016-04-12  9:33 ` [PATCH v2 08/13] ARM: dts: db600c: add pcie support Srinivas Kandagatla
2016-04-12  9:33 ` [PATCH v2 09/13] ARM: dts: db600c: add on board sata support Srinivas Kandagatla
2016-04-12  9:33 ` Srinivas Kandagatla [this message]
2016-04-12  9:34 ` [PATCH v2 11/13] ARM: dts: db600c: add i2c support Srinivas Kandagatla
2016-04-12  9:34 ` [PATCH v2 12/13] ARM: dts: db600c: add spi support Srinivas Kandagatla
2016-04-12  9:34 ` [PATCH v2 13/13] ARM: dts: db600c: add support to magnetometer Srinivas Kandagatla

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=1460453642-5809-11-git-send-email-srinivas.kandagatla@linaro.org \
    --to=srinivas.kandagatla@linaro.org \
    --cc=andy.gross@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-soc@vger.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 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).