blob: 9a79f727baf60b1952c6382d9fb25d86fb52da7b [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Yegor Yefremov21339f52017-03-28 15:09:16 +02002/*
Alexander A. Klimov75f66812020-07-08 11:34:51 +02003 * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
Yegor Yefremov21339f52017-03-28 15:09:16 +02004 */
5
6/*
7 * VScom OnRISC
8 * http://www.vscom.de
9 */
10
11/*#include "am33xx.dtsi"*/
12
13/ {
14 leds {
15 pinctrl-names = "default";
16 pinctrl-0 = <&user_leds>;
17
18 compatible = "gpio-leds";
19
20 power {
21 label = "onrisc:red:power";
22 linux,default-trigger = "default-on";
23 gpios = <&gpio3 0 GPIO_ACTIVE_LOW>;
24 default-state = "on";
25 };
26 wlan {
27 label = "onrisc:blue:wlan";
28 gpios = <&gpio0 16 GPIO_ACTIVE_HIGH>;
29 default-state = "off";
30 };
31 app {
32 label = "onrisc:green:app";
33 gpios = <&gpio0 17 GPIO_ACTIVE_HIGH>;
34 default-state = "off";
35 };
36 };
37};
38
39&am33xx_pinmux {
40 user_leds: pinmux_user_leds {
41 pinctrl-single,pins = <
Christina Quast8ce8c4b2019-04-09 18:03:35 +020042 AM33XX_PADCONF(AM335X_PIN_MII1_COL, PIN_OUTPUT_PULLDOWN, MUX_MODE7) /* mii1_col.gpio3_0 PWR LED */
43 AM33XX_PADCONF(AM335X_PIN_MII1_TXD3, PIN_OUTPUT_PULLDOWN, MUX_MODE7) /* mii1_txd3.gpio0_16 WLAN LED */
44 AM33XX_PADCONF(AM335X_PIN_MII1_TXD2, PIN_OUTPUT_PULLDOWN, MUX_MODE7) /* mii1_txd2.gpio0_17 APP LED */
Yegor Yefremov21339f52017-03-28 15:09:16 +020045 >;
46 };
47};