ilitek,ili9341.txt 807 B

123456789101112131415161718192021222324252627
  1. Ilitek ILI9341 display panels
  2. This binding is for display panels using an Ilitek ILI9341 controller in SPI
  3. mode.
  4. Required properties:
  5. - compatible: "adafruit,yx240qv29", "ilitek,ili9341"
  6. - dc-gpios: D/C pin
  7. - reset-gpios: Reset pin
  8. The node for this driver must be a child node of a SPI controller, hence
  9. all mandatory properties described in ../spi/spi-bus.txt must be specified.
  10. Optional properties:
  11. - rotation: panel rotation in degrees counter clockwise (0,90,180,270)
  12. - backlight: phandle of the backlight device attached to the panel
  13. Example:
  14. display@0{
  15. compatible = "adafruit,yx240qv29", "ilitek,ili9341";
  16. reg = <0>;
  17. spi-max-frequency = <32000000>;
  18. dc-gpios = <&gpio0 9 GPIO_ACTIVE_HIGH>;
  19. reset-gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>;
  20. rotation = <270>;
  21. backlight = <&backlight>;
  22. };