1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0+ OR MIT 2*f126890aSEmmanuel Vadot 3*f126890aSEmmanuel Vadot#include "imx6qdl-pico.dtsi" 4*f126890aSEmmanuel Vadot 5*f126890aSEmmanuel Vadot/ { 6*f126890aSEmmanuel Vadot leds { 7*f126890aSEmmanuel Vadot compatible = "gpio-leds"; 8*f126890aSEmmanuel Vadot pinctrl-names = "default"; 9*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_gpio_leds>; 10*f126890aSEmmanuel Vadot 11*f126890aSEmmanuel Vadot led { 12*f126890aSEmmanuel Vadot label = "gpio-led"; 13*f126890aSEmmanuel Vadot gpios = <&gpio5 31 GPIO_ACTIVE_HIGH>; 14*f126890aSEmmanuel Vadot }; 15*f126890aSEmmanuel Vadot }; 16*f126890aSEmmanuel Vadot 17*f126890aSEmmanuel Vadot}; 18*f126890aSEmmanuel Vadot 19*f126890aSEmmanuel Vadot&i2c1 { 20*f126890aSEmmanuel Vadot adc@52 { 21*f126890aSEmmanuel Vadot compatible = "ti,adc081c"; 22*f126890aSEmmanuel Vadot reg = <0x52>; 23*f126890aSEmmanuel Vadot vref-supply = <®_2p5v>; 24*f126890aSEmmanuel Vadot }; 25*f126890aSEmmanuel Vadot}; 26*f126890aSEmmanuel Vadot 27*f126890aSEmmanuel Vadot&i2c2 { 28*f126890aSEmmanuel Vadot io-expander@25 { 29*f126890aSEmmanuel Vadot compatible = "nxp,pca9554"; 30*f126890aSEmmanuel Vadot reg = <0x25>; 31*f126890aSEmmanuel Vadot gpio-controller; 32*f126890aSEmmanuel Vadot #gpio-cells = <2>; 33*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 34*f126890aSEmmanuel Vadot }; 35*f126890aSEmmanuel Vadot}; 36*f126890aSEmmanuel Vadot 37*f126890aSEmmanuel Vadot&i2c3 { 38*f126890aSEmmanuel Vadot rtc@68 { 39*f126890aSEmmanuel Vadot compatible = "dallas,ds1337"; 40*f126890aSEmmanuel Vadot reg = <0x68>; 41*f126890aSEmmanuel Vadot }; 42*f126890aSEmmanuel Vadot}; 43*f126890aSEmmanuel Vadot 44*f126890aSEmmanuel Vadot&pcie { 45*f126890aSEmmanuel Vadot status = "okay"; 46*f126890aSEmmanuel Vadot}; 47*f126890aSEmmanuel Vadot 48*f126890aSEmmanuel Vadot&iomuxc { 49*f126890aSEmmanuel Vadot pinctrl_gpio_leds: gpioledsgrp { 50*f126890aSEmmanuel Vadot fsl,pins = < 51*f126890aSEmmanuel Vadot MX6QDL_PAD_CSI0_DAT13__GPIO5_IO31 0x1b0b0 52*f126890aSEmmanuel Vadot >; 53*f126890aSEmmanuel Vadot }; 54*f126890aSEmmanuel Vadot}; 55