The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/src/arm/am335x-baltos-leds.dtsi

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 // SPDX-License-Identifier: GPL-2.0-only
    2 /*
    3  * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
    4  */
    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 = <
   42                         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 */
   45                 >;
   46         };
   47 };

Cache object: 27aa9b677fc45fb755fb2474cf31e2e8


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.