Skip to content

Commit 4998d53

Browse files
Jakko3superna9999
authored andcommitted
dt-bindings: display: panel: Add Samsung S6E88A0-AMS427AP24
Add bindings for Samsung AMS427AP24 panel with S6E88A0 controller. Signed-off-by: Jakob Hauser <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Link: https://lore.kernel.org/r/d60428e7dad57efd42948adfd34b81335dabcd1f.1730070570.git.jahau@rocketmail.com Signed-off-by: Neil Armstrong <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/d60428e7dad57efd42948adfd34b81335dabcd1f.1730070570.git.jahau@rocketmail.com
1 parent 3c0ecd8 commit 4998d53

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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/samsung,s6e88a0-ams427ap24.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Samsung AMS427AP24 panel with S6E88A0 controller
8+
9+
maintainers:
10+
- Jakob Hauser <[email protected]>
11+
12+
allOf:
13+
- $ref: panel-common.yaml#
14+
15+
properties:
16+
compatible:
17+
const: samsung,s6e88a0-ams427ap24
18+
19+
reg:
20+
maxItems: 1
21+
22+
port: true
23+
reset-gpios: true
24+
flip-horizontal: true
25+
26+
vdd3-supply:
27+
description: core voltage supply
28+
29+
vci-supply:
30+
description: voltage supply for analog circuits
31+
32+
required:
33+
- compatible
34+
- reg
35+
- port
36+
- reset-gpios
37+
- vdd3-supply
38+
- vci-supply
39+
40+
additionalProperties: false
41+
42+
examples:
43+
- |
44+
#include <dt-bindings/gpio/gpio.h>
45+
46+
dsi {
47+
#address-cells = <1>;
48+
#size-cells = <0>;
49+
50+
panel@0 {
51+
compatible = "samsung,s6e88a0-ams427ap24";
52+
reg = <0>;
53+
54+
vdd3-supply = <&pm8916_l17>;
55+
vci-supply = <&pm8916_l6>;
56+
reset-gpios = <&tlmm 25 GPIO_ACTIVE_LOW>;
57+
flip-horizontal;
58+
59+
port {
60+
panel_in: endpoint {
61+
remote-endpoint = <&mdss_dsi0_out>;
62+
};
63+
};
64+
};
65+
};

0 commit comments

Comments
 (0)