[PATCH v1 3/4] dt-bindings: display: panel: add Ilitek ILI9488 panel
Giandomenico Rossi
rossi at amelchem.com
Fri Feb 13 11:12:46 PST 2026
Add device tree binding documentation for TFT LCD panels based on
the Ilitek ILI9488 controller connected via MIPI DBI Type-C Option 1
over SPI.
The binding documents panels such as the WF35-320480UD operating in
RGB666 (18-bit) pixel format and describes required GPIOs, power
supply, optional backlight and panel timing.
A 'rotation' property is provided to configure the display
orientation.
Signed-off-by: Giandomenico Rossi <rossi at amelchem.com>
---
.../display/panel/panel-ilitek-ili9488.yaml | 120 ++++++++++++++++++
1 file changed, 120 insertions(+)
create mode 100644 dts/Bindings/display/panel/panel-ilitek-ili9488.yaml
diff --git a/dts/Bindings/display/panel/panel-ilitek-ili9488.yaml b/dts/Bindings/display/panel/panel-ilitek-ili9488.yaml
new file mode 100644
index 0000000000..ceb14a5c25
--- /dev/null
+++ b/dts/Bindings/display/panel/panel-ilitek-ili9488.yaml
@@ -0,0 +1,120 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: "http://devicetree.org/schemas/video/panel-ilitek-ili9488.yaml#"
+$schema: "http://devicetree.org/meta-schemas/core.yaml#"
+
+title: Ilitek ILI9488 TFT LCD Panel (MIPI DBI SPI)
+
+maintainers:
+ - Giandomenico Rossi <rossi at amelchem.com>
+
+description: |
+ Ilitek ILI9488 TFT LCD controller connected over MIPI DBI Type C
+ Option 1 using an SPI bus.
+
+ Specific panels such as the Winstar WF35-320480UD may provide a
+ vendor-specific compatible string followed by "ilitek,ili9488"
+ as fallback.
+
+ The controller supports RGB666 (18-bit) pixel format over SPI.
+
+properties:
+ compatible:
+ oneOf:
+ - items:
+ - const: winstar,wf35-320480ud
+ - const: ilitek,ili9488
+ - const: ilitek,ili9488
+
+ reg:
+ description: SPI chip select number
+ maxItems: 1
+
+ spi-max-frequency:
+ $ref: /schemas/types.yaml#/definitions/uint32
+ maximum: 48000000
+ description: Maximum SPI clock frequency in Hz
+
+ reset-gpios:
+ description: Optional hardware reset GPIO
+ maxItems: 1
+
+ power-supply:
+ description: Regulator supplying panel power
+
+ backlight:
+ description: Phandle to a backlight device
+
+ rotation:
+ description: |
+ Display rotation in degrees clockwise.
+
+ The driver uses this value to configure the ILI9488
+ Memory Access Control (MADCTL) register.
+ enum: [0, 90, 180, 270]
+ default: 0
+
+ panel-timing:
+ description: |
+ Panel timing description.
+
+ For MIPI DBI panels the pixel clock and porch values are ignored,
+ but xactive/yactive must be provided.
+ type: object
+ properties:
+ clock-frequency:
+ description: Dummy pixel clock (may be 0)
+ hactive:
+ description: Horizontal resolution in pixels
+ vactive:
+ description: Vertical resolution in pixels
+ hfront-porch:
+ default: 0
+ hback-porch:
+ default: 0
+ hsync-len:
+ default: 0
+ vfront-porch:
+ default: 0
+ vback-porch:
+ default: 0
+ vsync-len:
+ default: 0
+
+ required:
+ - hactive
+ - vactive
+
+required:
+ - compatible
+ - reg
+ - panel-timing
+
+additionalProperties: false
+
+examples:
+ - |
+ spi {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ display at 0 {
+ compatible = "winstar,wf35-320480ud", "ilitek,ili9488";
+ reg = <0>;
+ spi-max-frequency = <40000000>;
+
+ reset-gpios = <&gpio1 6 GPIO_ACTIVE_HIGH>;
+
+ power-supply = <&vcc_3v3>;
+ backlight = <&backlight>;
+
+ rotation = <90>;
+
+ panel-timing {
+ hactive = <480>;
+ vactive = <320>;
+ clock-frequency = <0>;
+ };
+ };
+ };
--
2.34.1
More information about the barebox
mailing list