mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 13:51:44 +00:00
a094c2fa09
The driver has been successfully tested with Xilinx's core axi-quad-spi-1.0.0a. Documented on DS843: https://www.xilinx.com/support/documentation/ip_documentation/axi_quad_spi/v1_00_a/ds843_axi_quad_spi.pdf Cc: Mark Brown <broonie@kernel.org> Cc: Rob Herring <robh+dt@kernel.org> Cc: devicetree@vger.kernel.org Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Mark Brown <broonie@kernel.org>
23 lines
678 B
Plaintext
23 lines
678 B
Plaintext
Xilinx SPI controller Device Tree Bindings
|
|
-------------------------------------------------
|
|
|
|
Required properties:
|
|
- compatible : Should be "xlnx,xps-spi-2.00.a", "xlnx,xps-spi-2.00.b" or "xlnx,axi-quad-spi-1.00.a"
|
|
- reg : Physical base address and size of SPI registers map.
|
|
- interrupts : Property with a value describing the interrupt
|
|
number.
|
|
- interrupt-parent : Must be core interrupt controller
|
|
|
|
Optional properties:
|
|
- xlnx,num-ss-bits : Number of chip selects used.
|
|
|
|
Example:
|
|
axi_quad_spi@41e00000 {
|
|
compatible = "xlnx,xps-spi-2.00.a";
|
|
interrupt-parent = <&intc>;
|
|
interrupts = <0 31 1>;
|
|
reg = <0x41e00000 0x10000>;
|
|
xlnx,num-ss-bits = <0x1>;
|
|
};
|
|
|