hc
2024-05-10 37f49e37ab4cb5d0bc4c60eb5c6d4dd57db767bb
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
// SPDX-License-Identifier: GPL-2.0
/*
 * Device Tree Source for the RZ/G2[MN] HiHope sub board LVDS common parts
 *
 * Copyright (C) 2020 Renesas Electronics Corp.
 */
 
/ {
   backlight {
       compatible = "pwm-backlight";
       pwms = <&pwm0 0 50000>;
 
       brightness-levels = <0 2 8 16 32 64 128 255>;
       default-brightness-level = <6>;
   };
};
 
&gpio1 {
   /*
    * When GP1_20 is LOW LVDS0 is connected to the LVDS connector
    * When GP1_20 is HIGH LVDS0 is connected to the LT8918L
    */
   lvds-connector-en-gpio {
       gpio-hog;
       gpios = <20 GPIO_ACTIVE_HIGH>;
       output-low;
       line-name = "lvds-connector-en-gpio";
   };
};
 
&lvds0 {
   ports {
       port@1 {
           lvds_connector: endpoint {
           };
       };
   };
};
 
&pfc {
   pwm0_pins: pwm0 {
       groups = "pwm0";
       function = "pwm0";
   };
};
 
&pwm0 {
   pinctrl-0 = <&pwm0_pins>;
   pinctrl-names = "default";
 
   status = "okay";
};