blob: dd4e5bce4a55dca44ee70d5485017ddba1e186d2 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// SPDX-License-Identifier: (GPL-2.0-only OR MIT)
/*
* Copyright 2017 Lothar Waßmann <LW@KARO-electronics.de>
*/
/ {
backlight0 {
pwms = <&pwm1 0 500000 PWM_POLARITY_INVERTED>;
power-supply = <®_lcd1_pwr>;
};
backlight1 {
pwms = <&pwm2 0 500000 PWM_POLARITY_INVERTED>;
power-supply = <®_lcd1_pwr>;
};
lcd-panel {
compatible = "edt,et057090dhu";
pixelclk-active = <0>;
};
lvds0-panel {
compatible = "edt,etml1010g0dka";
pixelclk-active = <0>;
};
lvds1-panel {
compatible = "edt,etml1010g0dka";
pixelclk-active = <0>;
};
};
&can1 {
status = "disabled";
};
&can2 {
xceiver-supply = <®_3v3>;
};
&ds1339 {
/*
* The backup voltage of the module internal RTC is not wired
* by default on the MB7, so disable that RTC chip.
*/
status = "disabled";
};
&i2c3 {
rtc: rtc@6f {
compatible = "microchip,mcp7940x";
reg = <0x6f>;
};
};
®_lcd0_pwr {
status = "disabled";
};
|