syncoam,seps525.txt 799 B

123456789101112131415161718192021222324
  1. spi based seps525 framebuffer display driver
  2. Driver for seps525 display controller (in spi mode), This binding supports selection
  3. of spi chipselect, spi max frequency, gpio to drive dc and reset pin of seps525
  4. controller and spi transaction bit length.
  5. Required properties:
  6. - compatible: "syncoam,seps525"
  7. - reg: Specifies the chip-select the seps525 is connected to on the spi bus
  8. - reset-gpios: gpio connected to reset pin of seps525 controller.
  9. - dc-gpios: gpio connected to dc pin of seps525 controller:
  10. - buswidth: bitlength of each spi transaction
  11. Example:
  12. displayspi@0 {
  13. compatible = "syncoam,seps525";
  14. reg = <0>;
  15. spi-max-frequency = <10000000>;
  16. spi-cpol;
  17. spi-cpha;
  18. buswidth = <8>;
  19. reset-gpios = <&gpio 0x1c GPIO_ACTIVE_LOW>;
  20. dc-gpios = <&gpio 0x1b GPIO_ACTIVE_HIGH>;
  21. };