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