sitronix,st7586.txt 693 B

12345678910111213141516171819202122
  1. Sitronix ST7586 display panel
  2. Required properties:
  3. - compatible: "lego,ev3-lcd".
  4. - a0-gpios: The A0 signal (since this binding is for serial mode, this is
  5. the pin labeled D1 on the controller, not the pin labeled A0)
  6. - reset-gpios: Reset pin
  7. The node for this driver must be a child node of a SPI controller, hence
  8. all mandatory properties described in ../spi/spi-bus.txt must be specified.
  9. Optional properties:
  10. - rotation: panel rotation in degrees counter clockwise (0,90,180,270)
  11. Example:
  12. display@0{
  13. compatible = "lego,ev3-lcd";
  14. reg = <0>;
  15. spi-max-frequency = <10000000>;
  16. a0-gpios = <&gpio 43 GPIO_ACTIVE_HIGH>;
  17. reset-gpios = <&gpio 80 GPIO_ACTIVE_HIGH>;
  18. };