Skip to content

Commit

Permalink
doc: device-tree-bindings: spi: Add zynq qspi info
Browse files Browse the repository at this point in the history
Added device-tree-binding information for zynq qspi controller
driver.

Signed-off-by: Jagan Teki <[email protected]>
Cc: Simon Glass <[email protected]>
Cc: Siva Durga Prasad Paladugu <[email protected]>
Acked-by: Michal Simek <[email protected]>
Tested-by: Jagan Teki <[email protected]>
  • Loading branch information
Jagan Teki committed Oct 25, 2015
1 parent 70676cb commit e5e7c74
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions doc/device-tree-bindings/spi/spi-zynq-qspi.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Xilinx Zynq QSPI controller Device Tree Bindings
-------------------------------------------------

Required properties:
- compatible : Should be "xlnx,zynq-qspi-1.0".
- reg : Physical base address and size of QSPI registers map.
- interrupts : Property with a value describing the interrupt
number.
- interrupt-parent : Must be core interrupt controller
- clock-names : List of input clock names - "ref_clk", "pclk"
(See clock bindings for details).
- clocks : Clock phandles (see clock bindings for details).

Optional properties:
- num-cs : Number of chip selects used.

Example:
qspi@e000d000 {
compatible = "xlnx,zynq-qspi-1.0";
clock-names = "ref_clk", "pclk";
clocks = <&clkc 10>, <&clkc 43>;
interrupt-parent = <&intc>;
interrupts = <0 19 4>;
num-cs = <1>;
reg = <0xe000d000 0x1000>;
} ;

0 comments on commit e5e7c74

Please sign in to comment.