hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
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
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (c) 2019 Fuzhou Rockchip Electronics Co., Ltd.
 */
 
/dts-v1/;
 
#include "rv1109.dtsi"
#include <dt-bindings/display/media-bus-format.h>
 
/ {
   model = "Rockchip RV1109 FPGA Board";
   compatible = "rockchip,rv1109-fpga", "rockchip,rv1109";
 
   memory@0 {
       device_type = "memory";
       reg = <0x00000000 0x10000000>;
   };
 
   chosen {
       bootargs = "earlycon=uart8250,mmio32,0xff570000 console=ttyFIQ0 initrd=0x9000000,0xb05e7 init=/init";
   };
 
   panel: panel {
       compatible = "simple-panel";
       bus-format = <MEDIA_BUS_FMT_RGB888_1X24>;
       status = "okay";
 
       display-timings {
           native-mode = <&kd050fwfba002_timing>;
 
           kd050fwfba002_timing: timing0 {
               clock-frequency = <13500000>;
               hactive = <800>;
               vactive = <1280>;
               hback-porch = <24>;
               hfront-porch = <24>;
               vback-porch = <4>;
               vfront-porch = <2>;
               hsync-len = <16>;
               vsync-len = <2>;
               hsync-active = <0>;
               vsync-active = <0>;
               de-active = <0>;
               pixelclk-active = <0>;
           };
       };
 
       port {
           panel_in_rgb: endpoint {
               remote-endpoint = <&rgb_out_panel>;
           };
       };
   };
};
 
&display_subsystem {
   status = "okay";
};
 
&fiq_debugger {
   rockchip,baudrate = <115200>;
   status = "okay";
};
 
&mpp_srv {
   status = "okay";
};
 
&rgb {
   status = "okay";
   ports {
       port@1 {
           reg = <1>;
           #address-cells = <1>;
           #size-cells = <0>;
 
           rgb_out_panel: endpoint@0 {
               reg = <0>;
               remote-endpoint = <&panel_in_rgb>;
           };
       };
   };
};
 
&rkvenc {
   status = "okay";
};
 
&rkvenc_mmu {
   status = "okay";
};
 
&uart2 {
   clocks = <&xin24m>, <&xin24m>;
};
 
&vop {
   status = "okay";
};
 
&vop_mmu {
   status = "okay";
};