summaryrefslogtreecommitdiff
path: root/doc/device-tree-bindings
diff options
context:
space:
mode:
authorVikhyat Goyal <vikhyat.goyal@xilinx.com>2020-12-03 01:21:51 +0300
committerMichal Simek <michal.simek@xilinx.com>2021-01-05 13:54:53 +0300
commit1ac1a04b9ed809e8f9510f6ec6b4d4b9139984c0 (patch)
treec03c2d06af8bdc6b1112ec3d8a36c10396c3c72f /doc/device-tree-bindings
parent9d69c2d9a8eb27bfa2ac0ac1a0fc779f5eccb49b (diff)
downloadu-boot-1ac1a04b9ed809e8f9510f6ec6b4d4b9139984c0.tar.xz
video: seps525: Add dt binding description
Added dt binding for seps525 display driver. Signed-off-by: Vikhyat Goyal <vikhyat.goyal@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc/device-tree-bindings')
-rw-r--r--doc/device-tree-bindings/video/syncoam,seps525.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/video/syncoam,seps525.txt b/doc/device-tree-bindings/video/syncoam,seps525.txt
new file mode 100644
index 0000000000..e1e0db9d71
--- /dev/null
+++ b/doc/device-tree-bindings/video/syncoam,seps525.txt
@@ -0,0 +1,24 @@
+spi based seps525 framebuffer display driver
+
+Driver for seps525 display controller (in spi mode), This binding supports selection
+of spi chipselect, spi max frequency, gpio to drive dc and reset pin of seps525
+controller and spi transaction bit length.
+
+Required properties:
+- compatible: "syncoam,seps525"
+- reg: Specifies the chip-select the seps525 is connected to on the spi bus
+- reset-gpios: gpio connected to reset pin of seps525 controller.
+- dc-gpios: gpio connected to dc pin of seps525 controller:
+- buswidth: bitlength of each spi transaction
+
+Example:
+ displayspi@0 {
+ compatible = "syncoam,seps525";
+ reg = <0>;
+ spi-max-frequency = <10000000>;
+ spi-cpol;
+ spi-cpha;
+ buswidth = <8>;
+ reset-gpios = <&gpio 0x1c GPIO_ACTIVE_LOW>;
+ dc-gpios = <&gpio 0x1b GPIO_ACTIVE_HIGH>;
+ };