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