Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/panel/advantech,idk-1110wr.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Advantech IDK-1110WR 10.1" WSVGA LVDS Display Panel
8
9maintainers:
10 - Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
11 - Thierry Reding <thierry.reding@gmail.com>
12
13allOf:
14 - $ref: lvds.yaml#
15
16properties:
17 compatible:
18 items:
19 - const: advantech,idk-1110wr
20 - {} # panel-lvds, but not listed here to avoid false select
21
22 data-mapping:
23 const: jeida-24
24
25 width-mm:
26 const: 223
27
28 height-mm:
29 const: 125
30
31 panel-timing: true
32 port: true
33
34additionalProperties: false
35
36required:
37 - compatible
38
39examples:
40 - |+
41 panel {
42 compatible = "advantech,idk-1110wr", "panel-lvds";
43
44 width-mm = <223>;
45 height-mm = <125>;
46
47 data-mapping = "jeida-24";
48
49 panel-timing {
50 /* 1024x600 @60Hz */
51 clock-frequency = <51200000>;
52 hactive = <1024>;
53 vactive = <600>;
54 hsync-len = <240>;
55 hfront-porch = <40>;
56 hback-porch = <40>;
57 vsync-len = <10>;
58 vfront-porch = <15>;
59 vback-porch = <10>;
60 };
61
62 port {
63 panel_in: endpoint {
64 remote-endpoint = <&lvds_encoder>;
65 };
66 };
67 };
68
69...