blob: 7730a2176f6da3ef521c5cbf7221f0794662a442 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
/*
* Copyright 2020-2021 Toradex
*/
// FullHD VGA monitor in mode 1920x1080p60. Standard: SMPTE 274M
/dts-v1/;
/plugin/;
/ {
compatible = "toradex,apalis_imx6q",
"toradex,apalis-imx8x",
"toradex,colibri_imx6dl",
"toradex,colibri-imx6ull",
"toradex,colibri-imx7d",
"toradex,colibri-imx7s",
"toradex,colibri-imx8x";
};
&{/panel-dpi} {
status = "okay";
width-mm = <155>;
height-mm = <91>;
panel-timing {
clock-frequency = <148500000>;
hactive = <1920>;
hback-porch = <148>;
hfront-porch = <88>;
hsync-len = <44>;
vactive = <1080>;
vback-porch = <36>;
vfront-porch = <4>;
vsync-len = <5>;
pixelclk-active = <0>;
};
};
|