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/sony,td4353-jdi.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Sony TD4353 JDI 5 / 5.7" 2160x1080 MIPI-DSI Panel 8 9maintainers: 10 - Konrad Dybcio <konrad.dybcio@somainline.org> 11 12description: | 13 The Sony TD4353 JDI is a 5 (XZ2c) / 5.7 (XZ2) inch 2160x1080 14 MIPI-DSI panel, used in Xperia XZ2 and XZ2 Compact smartphones. 15 16allOf: 17 - $ref: panel-common.yaml# 18 19properties: 20 compatible: 21 const: sony,td4353-jdi-tama 22 23 reg: true 24 25 backlight: true 26 width-mm: true 27 height-mm: true 28 29 vddio-supply: 30 description: VDDIO 1.8V supply 31 32 vsp-supply: 33 description: Positive 5.5V supply 34 35 vsn-supply: 36 description: Negative 5.5V supply 37 38 panel-reset-gpios: 39 description: Display panel reset pin 40 41 touch-reset-gpios: 42 description: Touch panel reset pin 43 44 port: true 45 46required: 47 - compatible 48 - reg 49 - vddio-supply 50 - vsp-supply 51 - vsn-supply 52 - panel-reset-gpios 53 - touch-reset-gpios 54 - port 55 56additionalProperties: false 57 58examples: 59 - | 60 #include <dt-bindings/gpio/gpio.h> 61 62 dsi { 63 #address-cells = <1>; 64 #size-cells = <0>; 65 66 panel: panel@0 { 67 compatible = "sony,td4353-jdi-tama"; 68 reg = <0>; 69 70 backlight = <&pmi8998_wled>; 71 vddio-supply = <&vreg_l14a_1p8>; 72 vsp-supply = <&lab>; 73 vsn-supply = <&ibb>; 74 panel-reset-gpios = <&tlmm 6 GPIO_ACTIVE_HIGH>; 75 touch-reset-gpios = <&tlmm 99 GPIO_ACTIVE_HIGH>; 76 77 port { 78 panel_in: endpoint { 79 remote-endpoint = <&dsi0_out>; 80 }; 81 }; 82 }; 83 }; 84... 85