1// SPDX-License-Identifier: (GPL-2.0-only OR MIT) 2/* 3 * support for the imx6 based aristainetos2 board 4 * 5 * Copyright (C) 2015 Heiko Schocher <hs@denx.de> 6 */ 7/dts-v1/; 8#include "imx6dl.dtsi" 9#include "imx6qdl-aristainetos2.dtsi" 10 11/ { 12 model = "aristainetos2 i.MX6 Dual Lite Board 7"; 13 compatible = "abb,aristainetos2-imx6dl-7", "fsl,imx6dl"; 14 15 memory@10000000 { 16 device_type = "memory"; 17 reg = <0x10000000 0x40000000>; 18 }; 19 20 panel: panel { 21 compatible = "lg,lb070wv8"; 22 backlight = <&backlight>; 23 enable-gpios = <&gpio6 15 GPIO_ACTIVE_HIGH>; 24 25 port { 26 panel_in: endpoint { 27 remote-endpoint = <&lvds0_out>; 28 }; 29 }; 30 }; 31}; 32 33&i2c3 { 34 touch: touch@4d { 35 compatible = "atmel,maxtouch"; 36 reg = <0x4d>; 37 interrupt-parent = <&gpio2>; 38 interrupts = <9 8>; 39 }; 40}; 41 42&ldb { 43 status = "okay"; 44 45 lvds-channel@0 { 46 status = "okay"; 47 48 port@0 { 49 reg = <0>; 50 lvds0_in: endpoint { 51 remote-endpoint = <&ipu1_di0_lvds0>; 52 }; 53 }; 54 55 port@4 { 56 reg = <4>; 57 lvds0_out: endpoint { 58 remote-endpoint = <&panel_in>; 59 }; 60 }; 61 }; 62}; 63