spi: xilinx: Add support for xlnx,axi-quad-spi-1.00.a
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>
This commit is contained in:
parent
5a1314fa69
commit
a094c2fa09
2 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,7 @@ Xilinx SPI controller Device Tree Bindings
|
||||||
-------------------------------------------------
|
-------------------------------------------------
|
||||||
|
|
||||||
Required properties:
|
Required properties:
|
||||||
- compatible : Should be "xlnx,xps-spi-2.00.a" or "xlnx,xps-spi-2.00.b"
|
- 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.
|
- reg : Physical base address and size of SPI registers map.
|
||||||
- interrupts : Property with a value describing the interrupt
|
- interrupts : Property with a value describing the interrupt
|
||||||
number.
|
number.
|
||||||
|
|
|
@ -381,6 +381,7 @@ static int xilinx_spi_find_buffer_size(struct xilinx_spi *xspi)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct of_device_id xilinx_spi_of_match[] = {
|
static const struct of_device_id xilinx_spi_of_match[] = {
|
||||||
|
{ .compatible = "xlnx,axi-quad-spi-1.00.a", },
|
||||||
{ .compatible = "xlnx,xps-spi-2.00.a", },
|
{ .compatible = "xlnx,xps-spi-2.00.a", },
|
||||||
{ .compatible = "xlnx,xps-spi-2.00.b", },
|
{ .compatible = "xlnx,xps-spi-2.00.b", },
|
||||||
{}
|
{}
|
||||||
|
|
Loading…
Add table
Reference in a new issue