Document the SOFEF06-M Display-IC and 1080x2520 panel found in the Sony Xperia 5 II (6.1"). Signed-off-by: Marijn Suijten <marijn.suijten@xxxxxxxxxxxxxx> --- .../bindings/display/panel/samsung,sofef03-m.yaml | 73 ++++++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/Documentation/devicetree/bindings/display/panel/samsung,sofef03-m.yaml b/Documentation/devicetree/bindings/display/panel/samsung,sofef03-m.yaml new file mode 100644 index 0000000000000..617218dfe8b3f --- /dev/null +++ b/Documentation/devicetree/bindings/display/panel/samsung,sofef03-m.yaml @@ -0,0 +1,73 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/display/panel/samsung,sofef03-m.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Samsung SOFEF03-M 1080x2520 6.1" OLED DSI panel + +maintainers: + - Marijn Suijten <marijn.suijten@xxxxxxxxxxxxxx> + +description: | + Samsung SOFEF03-M Display-IC panel found in the Sony Xperia 5 II + (edo pdx206) smartphone. + +allOf: + - $ref: panel-common.yaml# + +properties: + compatible: + enum: + - samsung,sofef03-m + + port: true + + reg: + maxItems: 1 + description: DSI virtual channel + + reset-gpios: true + + vci-supply: + description: DriverIC Operation supply (3.0V) + + vddio-supply: + description: I/O voltage supply (1.8V) + +required: + - compatible + - port + - reg + - reset-gpios + - vci-supply + - vddio-supply + +additionalProperties: false + +examples: + - | + #include <dt-bindings/gpio/gpio.h> + + dsi { + #address-cells = <1>; + #size-cells = <0>; + panel@0 { + compatible = "samsung,sofef03-m"; + reg = <0>; + + reset-gpios = <&tlmm 75 GPIO_ACTIVE_LOW>; + + vci-supply = <&vreg_l11c_3p0>; + vddio-supply = <&vreg_l14a_1p8>; + + port { + endpoint { + remote-endpoint = <&dsi0_out>; + }; + }; + }; + }; + +... + -- 2.40.1