mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 21:33:00 +00:00
791d3ef2e1
'interrupt-parent' is often documented as part of define bindings, but it is really outside the scope of a device binding. It's never required in a given node as it is often inherited from a parent node. Or it can be implicit if a parent node is an 'interrupt-controller' node. So remove it from all the binding files. Cc: Mark Rutland <mark.rutland@arm.com> Cc: devicetree@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
31 lines
963 B
Plaintext
31 lines
963 B
Plaintext
Cadence SPI controller Device Tree Bindings
|
|
-------------------------------------------
|
|
|
|
Required properties:
|
|
- compatible : Should be "cdns,spi-r1p6" or "xlnx,zynq-spi-r1p6".
|
|
- reg : Physical base address and size of SPI registers map.
|
|
- interrupts : Property with a value describing the interrupt
|
|
number.
|
|
- 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.
|
|
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.
|
|
|
|
Example:
|
|
|
|
spi@e0007000 {
|
|
compatible = "xlnx,zynq-spi-r1p6";
|
|
clock-names = "ref_clk", "pclk";
|
|
clocks = <&clkc 26>, <&clkc 35>;
|
|
interrupt-parent = <&intc>;
|
|
interrupts = <0 49 4>;
|
|
num-cs = <4>;
|
|
is-decoded-cs = <0>;
|
|
reg = <0xe0007000 0x1000>;
|
|
} ;
|