From: Stefan Roese <sr@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 10/14] mips: mt76xx: gardena-smart-gateway: Add LEDs to dts
Date: Tue, 9 Oct 2018 08:59:12 +0200 [thread overview]
Message-ID: <20181009065916.31977-10-sr@denx.de> (raw)
In-Reply-To: <20181009065916.31977-1-sr@denx.de>
Add the available LEDs to the DTS file so that they can be used.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
---
.../mips/dts/gardena-smart-gateway-mt7688.dts | 59 +++++++++++++++++++
1 file changed, 59 insertions(+)
diff --git a/arch/mips/dts/gardena-smart-gateway-mt7688.dts b/arch/mips/dts/gardena-smart-gateway-mt7688.dts
index ee99c3d17c..ef8a9612fd 100644
--- a/arch/mips/dts/gardena-smart-gateway-mt7688.dts
+++ b/arch/mips/dts/gardena-smart-gateway-mt7688.dts
@@ -6,6 +6,7 @@
/dts-v1/;
#include "mt7628a.dtsi"
+#include <dt-bindings/gpio/gpio.h>
/ {
compatible = "gardena,smart-gateway-mt7688", "ralink,mt7628a-soc";
@@ -21,6 +22,64 @@
reg = <0x0 0x08000000>;
};
+ leds {
+ compatible = "gpio-leds";
+
+ power_blue {
+ label = "smartgw:power:blue";
+ gpios = <&gpio0 18 GPIO_ACTIVE_HIGH>;
+ default-state = "off";
+ };
+
+ power_green {
+ label = "smartgw:power:green";
+ gpios = <&gpio0 19 GPIO_ACTIVE_HIGH>;
+ default-state = "off";
+ };
+
+ power_red {
+ label = "smartgw:power:red";
+ gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>;
+ default-state = "off";
+ };
+
+ radio_blue {
+ label = "smartgw:radio:blue";
+ gpios = <&gpio0 23 GPIO_ACTIVE_HIGH>;
+ default-state = "off";
+ };
+
+ radio_green {
+ label = "smartgw:radio:green";
+ gpios = <&gpio0 24 GPIO_ACTIVE_HIGH>;
+ default-state = "off";
+ };
+
+ radio_red {
+ label = "smartgw:radio:red";
+ gpios = <&gpio0 25 GPIO_ACTIVE_HIGH>;
+ default-state = "off";
+ };
+
+ internet_blue {
+ label = "smartgw:internet:blue";
+ gpios = <&gpio0 26 GPIO_ACTIVE_HIGH>;
+ default-state = "off";
+ };
+
+ internet_green {
+ label = "smartgw:internet:green";
+ gpios = <&gpio0 27 GPIO_ACTIVE_HIGH>;
+ default-state = "off";
+ };
+
+ internet_red {
+ label = "smartgw:internet:red";
+ gpios = <&gpio0 28 GPIO_ACTIVE_HIGH>;
+ default-state = "off";
+ };
+ };
+
chosen {
bootargs = "console=ttyS0,57600";
stdout-path = &uart0;
--
2.19.1
next prev parent reply other threads:[~2018-10-09 6:59 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-09 6:59 [U-Boot] [PATCH 01/14] mips: Add in_le32(), out_le32() etc IO accessor functions Stefan Roese
2018-10-09 6:59 ` [U-Boot] [PATCH 02/14] mips: mt76xx: lowlevel_init.S: Add missing memory controller reset in DDR init Stefan Roese
2018-10-28 19:42 ` Daniel Schwierzeck
2018-10-09 6:59 ` [U-Boot] [PATCH 03/14] mips: mt76xx: Enable SYS_MIPS_CACHE_INIT_RAM_LOAD for cache init Stefan Roese
2018-10-28 19:02 ` Daniel Schwierzeck
2018-10-09 6:59 ` [U-Boot] [PATCH 04/14] mips: mt76xx: Add ethernet DT node to mt7628a.dtsi Stefan Roese
2018-10-28 19:43 ` Daniel Schwierzeck
2018-10-09 6:59 ` [U-Boot] [PATCH 05/14] mips: mt76xx: Add GPIO DT nodes " Stefan Roese
2018-10-09 6:59 ` [U-Boot] [PATCH 06/14] mips: mt76xx: Add watchdog DT node " Stefan Roese
2018-10-09 6:59 ` [U-Boot] [PATCH 07/14] mips: mt76xx: Kconfig: Add ethernet and GPIO support Stefan Roese
2018-10-09 6:59 ` [U-Boot] [PATCH 08/14] mips: mt76xx: Enable watchdog support Stefan Roese
2018-10-09 6:59 ` [U-Boot] [PATCH 09/14] mips: mt76xx: gardena-smart-gateway: Configure GPIOs (digital vs analog) Stefan Roese
2018-10-09 6:59 ` Stefan Roese [this message]
2018-10-09 6:59 ` [U-Boot] [PATCH 11/14] mips: mt76xx: gardena-smart-gateway: Add board_late_init() to set LED def state Stefan Roese
2018-10-09 6:59 ` [U-Boot] [PATCH 12/14] mips: mt76xx: gardena-smart-gateway: Misc updates to dts/config/defconfig Stefan Roese
2018-10-09 6:59 ` [U-Boot] [PATCH 13/14] mips: mt76xx: linkit-smart-7688: Use ioremap_nocache to get address Stefan Roese
2018-10-09 6:59 ` [U-Boot] [PATCH 14/14] mips: mt76xx: linkit-smart-7688: Misc updates to dts/config/defconfig Stefan Roese
2018-10-09 17:38 ` [U-Boot] [PATCH 01/14] mips: Add in_le32(), out_le32() etc IO accessor functions Anatolij Gustschin
2018-10-10 5:57 ` Stefan Roese
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=20181009065916.31977-10-sr@denx.de \
--to=sr@denx.de \
--cc=u-boot@lists.denx.de \
/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