himax,hx8357d.txt 824 B

1234567891011121314151617181920212223242526
  1. Himax HX8357D display panels
  2. This binding is for display panels using a Himax HX8357D controller in SPI
  3. mode, such as the Adafruit 3.5" TFT for Raspberry Pi.
  4. Required properties:
  5. - compatible: "adafruit,yx350hv15", "himax,hx8357d"
  6. - dc-gpios: D/C pin
  7. - reg: address of the panel on the SPI bus
  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,yx350hv15", "himax,hx8357d";
  16. reg = <0>;
  17. spi-max-frequency = <32000000>;
  18. dc-gpios = <&gpio0 25 GPIO_ACTIVE_HIGH>;
  19. rotation = <90>;
  20. backlight = <&backlight>;
  21. };