2015-07-22 08:47:33 +00:00
|
|
|
Cadence SPI controller Device Tree Bindings
|
|
|
|
-------------------------------------------
|
2015-06-26 19:21:33 +00:00
|
|
|
|
|
|
|
Required properties:
|
2015-07-22 08:47:33 +00:00
|
|
|
- compatible : Should be "cdns,spi-r1p6" or "xlnx,zynq-spi-r1p6".
|
2015-06-26 19:21:33 +00:00
|
|
|
- reg : Physical base address and size of SPI registers map.
|
|
|
|
- interrupts : Property with a value describing the interrupt
|
|
|
|
number.
|
2015-07-22 08:47:33 +00:00
|
|
|
- interrupt-parent : Must be core interrupt controller
|
2015-06-26 19:21:33 +00:00
|
|
|
- clock-names : List of input clock names - "ref_clk", "pclk"
|
|
|
|
(See clock bindings for details).
|
2015-07-22 08:47:33 +00:00
|
|
|
- clocks : Clock phandles (see clock bindings for details).
|
2015-06-26 19:21:34 +00:00
|
|
|
- spi-max-frequency : Maximum SPI clocking speed of device in Hz
|
2015-06-26 19:21:33 +00:00
|
|
|
|
2015-07-22 08:47:33 +00:00
|
|
|
Optional properties:
|
|
|
|
- num-cs : Number of chip selects used.
|
|
|
|
If a decoder is used, this will be the number of
|
|
|
|
chip selects after the decoder.
|
|
|
|
- is-decoded-cs : Flag to indicate whether decoder is used or not.
|
|
|
|
|
2015-06-26 19:21:33 +00:00
|
|
|
Example:
|
|
|
|
|
2015-07-22 08:47:33 +00:00
|
|
|
spi@e0007000 {
|
|
|
|
compatible = "xlnx,zynq-spi-r1p6";
|
2015-06-26 19:21:33 +00:00
|
|
|
clock-names = "ref_clk", "pclk";
|
2015-07-22 08:47:33 +00:00
|
|
|
clocks = <&clkc 26>, <&clkc 35>;
|
|
|
|
interrupt-parent = <&intc>;
|
|
|
|
interrupts = <0 49 4>;
|
|
|
|
num-cs = <4>;
|
|
|
|
is-decoded-cs = <0>;
|
|
|
|
reg = <0xe0007000 0x1000>;
|
2015-06-26 19:21:33 +00:00
|
|
|
} ;
|