hc
2023-12-04 f33f61bdb7ca6d5ebe7a78f9d8694b91360279ac
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// SPDX-License-Identifier: GPL-2.0
/*
 * Device Tree Source for the iWave-RZ-G1M/N Daughter Board Camera Module
 *
 * Copyright (C) 2017 Renesas Electronics Corp.
 */
 
/ {
   aliases {
       serial1 = &scif1;
       serial4 = &hscif1;
   };
 
   cec_clock: cec-clock {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <12000000>;
   };
 
   hdmi-out {
       compatible = "hdmi-connector";
       type = "a";
 
       port {
           hdmi_con_out: endpoint {
               remote-endpoint = <&adv7511_out>;
           };
       };
   };
};
 
&can1 {
   pinctrl-0 = <&can1_pins>;
   pinctrl-names = "default";
 
   status = "okay";
};
 
&du {
   pinctrl-0 = <&du_pins>;
   pinctrl-names = "default";
   status = "okay";
 
   ports {
       port@0 {
           endpoint {
               remote-endpoint = <&adv7511_in>;
           };
       };
   };
};
 
&hscif1 {
   pinctrl-0 = <&hscif1_pins>;
   pinctrl-names = "default";
 
   uart-has-rtscts;
   status = "okay";
};
 
&i2c5 {
   status = "okay";
   clock-frequency = <400000>;
 
   hdmi@39 {
       compatible = "adi,adv7511w";
       reg = <0x39>;
       interrupt-parent = <&gpio0>;
       interrupts = <13 IRQ_TYPE_LEVEL_LOW>;
       clocks = <&cec_clock>;
       clock-names = "cec";
 
       adi,input-depth = <8>;
       adi,input-colorspace = "rgb";
       adi,input-clock = "1x";
       adi,input-style = <1>;
       adi,input-justification = "evenly";
 
       ports {
           #address-cells = <1>;
           #size-cells = <0>;
 
           port@0 {
               reg = <0>;
               adv7511_in: endpoint {
                   remote-endpoint = <&du_out_rgb>;
               };
           };
 
           port@1 {
               reg = <1>;
               adv7511_out: endpoint {
                   remote-endpoint = <&hdmi_con_out>;
               };
           };
       };
   };
};
 
&pfc {
   can1_pins: can1 {
       groups = "can1_data_d";
       function = "can1";
   };
 
   du_pins: du {
       groups = "du_rgb888", "du_sync", "du_oddf", "du_clk_out_0";
       function = "du";
   };
 
   hscif1_pins: hscif1 {
       groups = "hscif1_data_c", "hscif1_ctrl_c";
       function = "hscif1";
   };
 
   scif1_pins: scif1 {
       groups = "scif1_data_d";
       function = "scif1";
   };
};
 
&scif1 {
   pinctrl-0 = <&scif1_pins>;
   pinctrl-names = "default";
 
   status = "okay";
};