blob: ed1579489a2ee7e5327e7e34816ce9da176f1687 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*
* Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
/ {
aliases {
display0 = &tlc59108;
display1 = &hdmi0;
};
};
&i2c1 {
/* TLC chip for LCD panel power and backlight */
tlc59108: tlc59108@40 {
compatible = "ti,tlc59108-lp101";
reg = <0x40>;
enable-gpios = <&pcf_lcd 13 GPIO_ACTIVE_LOW>; /* P15, CON_LCD_PWR_DN */
port {
tlc_in: endpoint {
remote-endpoint = <&dpi_out>;
};
};
};
};
&dss {
ports {
#address-cells = <1>;
#size-cells = <0>;
port {
reg = <0>;
dpi_out: endpoint {
remote-endpoint = <&tlc_in>;
data-lines = <24>;
};
};
};
};
|