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/samsung,s6e8aa5x01-ams561ra01.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Samsung AMS561RA01 panel with S6E8AA5X01 controller
8
9maintainers:
10 - Kaustabh Chakraborty <kauschluss@disroot.org>
11
12allOf:
13 - $ref: panel-common.yaml#
14
15properties:
16 compatible:
17 const: samsung,s6e8aa5x01-ams561ra01
18
19 reg:
20 maxItems: 1
21
22 vdd-supply:
23 description: core voltage supply
24
25 vci-supply:
26 description: voltage supply for analog circuits
27
28 reset-gpios: true
29
30required:
31 - compatible
32 - reg
33
34additionalProperties: false
35
36examples:
37 - |
38 #include <dt-bindings/gpio/gpio.h>
39
40 dsi {
41 #address-cells = <1>;
42 #size-cells = <0>;
43
44 panel@0 {
45 compatible = "samsung,s6e8aa5x01-ams561ra01";
46 reg = <0>;
47
48 vdd-supply = <&panel_vdd_reg>;
49 vci-supply = <&panel_vci_reg>;
50
51 reset-gpios = <&gpd3 4 GPIO_ACTIVE_HIGH>;
52 };
53 };
54
55...