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/arm64/freescale/imx8qxp-colibri-eval-v3.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+ OR MIT
    2 /*
    3  * Copyright 2019 Toradex
    4  */
    5 
    6 #include "dt-bindings/input/linux-event-codes.h"
    7 
    8 / {
    9         aliases {
   10                 rtc0 = &rtc_i2c;
   11                 rtc1 = &rtc;
   12         };
   13 
   14         gpio-keys {
   15                 compatible = "gpio-keys";
   16                 pinctrl-names = "default";
   17                 pinctrl-0 = <&pinctrl_gpiokeys>;
   18 
   19                 key-wakeup {
   20                         label = "Wake-Up";
   21                         gpios = <&lsio_gpio3 10 GPIO_ACTIVE_HIGH>;
   22                         linux,code = <KEY_WAKEUP>;
   23                         debounce-interval = <10>;
   24                         wakeup-source;
   25                 };
   26         };
   27 };
   28 
   29 &i2c1 {
   30         status = "okay";
   31 
   32         /* M41T0M6 real time clock on carrier board */
   33         rtc_i2c: rtc@68 {
   34                 compatible = "st,m41t0";
   35                 reg = <0x68>;
   36         };
   37 };
   38 
   39 /* Colibri UART_B */
   40 &lpuart0 {
   41         status = "okay";
   42 };
   43 
   44 /* Colibri UART_C */
   45 &lpuart2 {
   46         status = "okay";
   47 };
   48 
   49 /* Colibri UART_A */
   50 &lpuart3 {
   51         status = "okay";
   52 };
   53 
   54 /* Colibri FastEthernet */
   55 &fec1 {
   56         status = "okay";
   57 };
   58 
   59 /* Colibri SD/MMC Card */
   60 &usdhc2 {
   61         status = "okay";
   62 };

Cache object: 82afdbfeca6a6ab3e7c7ede9c0d5dd6f


[ 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.