# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/display/panel/ilitek,ili9488.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Ilitek ILI9488 based MIPI-DSI panels maintainers: - Igor Reznichenko allOf: - $ref: panel-common.yaml# properties: compatible: items: - enum: - focuslcds,e35gh-i-mw800cb - const: ilitek,ili9488 reg: maxItems: 1 vci-supply: true iovcc-supply: true required: - compatible - reg - vci-supply - iovcc-supply - reset-gpios - backlight - port unevaluatedProperties: false examples: - | #include dsi { #address-cells = <1>; #size-cells = <0>; panel@0 { compatible = "focuslcds,e35gh-i-mw800cb", "ilitek,ili9488"; reg = <0>; vci-supply = <®_vci_panel>; iovcc-supply = <®_iovcc_panel>; reset-gpios = <&gpio3 6 GPIO_ACTIVE_LOW>; backlight = <&pwm_bl>; port { panel_in: endpoint { remote-endpoint = <&dsi_out>; }; }; }; }; ...