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
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/panel/samsung,s6e8aa0.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Samsung S6E8AA0 AMOLED LCD 5.3 inch panel
8
9maintainers:
10 - Andrzej Hajda <a.hajda@samsung.com>
11
12allOf:
13 - $ref: panel-common.yaml#
14
15properties:
16 compatible:
17 const: samsung,s6e8aa0
18
19 reg:
20 maxItems: 1
21
22 reset-gpios: true
23 display-timings: true
24 flip-horizontal: true
25 flip-vertical: true
26
27 vdd3-supply:
28 description: core voltage supply
29
30 vci-supply:
31 description: voltage supply for analog circuits
32
33 power-on-delay:
34 description: delay after turning regulators on [ms]
35 $ref: /schemas/types.yaml#/definitions/uint32
36
37 reset-delay:
38 description: delay after reset sequence [ms]
39 $ref: /schemas/types.yaml#/definitions/uint32
40
41 init-delay:
42 description: delay after initialization sequence [ms]
43 $ref: /schemas/types.yaml#/definitions/uint32
44
45 panel-width-mm:
46 description: physical panel width [mm]
47
48 panel-height-mm:
49 description: physical panel height [mm]
50
51required:
52 - compatible
53 - reg
54 - vdd3-supply
55 - vci-supply
56 - reset-gpios
57 - display-timings
58
59additionalProperties: false
60
61examples:
62 - |
63 dsi {
64 #address-cells = <1>;
65 #size-cells = <0>;
66
67 panel@0 {
68 compatible = "samsung,s6e8aa0";
69 reg = <0>;
70 vdd3-supply = <&vcclcd_reg>;
71 vci-supply = <&vlcd_reg>;
72 reset-gpios = <&gpy4 5 0>;
73 power-on-delay = <50>;
74 reset-delay = <100>;
75 init-delay = <100>;
76 panel-width-mm = <58>;
77 panel-height-mm = <103>;
78 flip-horizontal;
79 flip-vertical;
80
81 display-timings {
82 timing0: timing-0 {
83 clock-frequency = <57153600>;
84 hactive = <720>;
85 vactive = <1280>;
86 hfront-porch = <5>;
87 hback-porch = <5>;
88 hsync-len = <5>;
89 vfront-porch = <13>;
90 vback-porch = <1>;
91 vsync-len = <2>;
92 };
93 };
94 };
95 };
96
97...