Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 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/newvision,nv3051d.yaml# |
| 5 | $schema: http://devicetree.org/meta-schemas/core.yaml# |
| 6 | |
| 7 | title: NewVision NV3051D based LCD panel |
| 8 | |
| 9 | description: | |
| 10 | The NewVision NV3051D is a driver chip used to drive DSI panels. |
| 11 | |
| 12 | maintainers: |
| 13 | - Chris Morgan <macromorgan@hotmail.com> |
| 14 | |
| 15 | allOf: |
| 16 | - $ref: panel-common.yaml# |
| 17 | |
| 18 | properties: |
| 19 | compatible: |
| 20 | items: |
| 21 | - enum: |
| 22 | - anbernic,rg351v-panel |
| 23 | - anbernic,rg353p-panel |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame] | 24 | - powkiddy,rk2023-panel |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 25 | - const: newvision,nv3051d |
| 26 | |
Tom Rini | 762f85b | 2024-07-20 11:15:10 -0600 | [diff] [blame^] | 27 | reg: |
| 28 | maxItems: 1 |
| 29 | |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 30 | backlight: true |
| 31 | port: true |
| 32 | reset-gpios: |
| 33 | description: Active low reset GPIO |
| 34 | vdd-supply: true |
| 35 | |
| 36 | required: |
| 37 | - compatible |
| 38 | - reg |
| 39 | - backlight |
| 40 | |
| 41 | additionalProperties: false |
| 42 | |
| 43 | examples: |
| 44 | - | |
| 45 | #include <dt-bindings/gpio/gpio.h> |
| 46 | dsi { |
| 47 | #address-cells = <1>; |
| 48 | #size-cells = <0>; |
| 49 | panel@0 { |
| 50 | compatible = "anbernic,rg353p-panel", "newvision,nv3051d"; |
| 51 | reg = <0>; |
| 52 | backlight = <&backlight>; |
| 53 | reset-gpios = <&gpio4 0 GPIO_ACTIVE_LOW>; |
| 54 | vdd-supply = <&vcc3v3_lcd>; |
| 55 | |
| 56 | port { |
| 57 | mipi_in_panel: endpoint { |
| 58 | remote-endpoint = <&mipi_out_panel>; |
| 59 | }; |
| 60 | }; |
| 61 | }; |
| 62 | }; |
| 63 | |
| 64 | ... |