2013-08-20 18:55:48 +05:30
TI QSPI controller.
Required properties:
2013-08-27 19:42:24 +05:30
- compatible : should be "ti,dra7xxx-qspi" or "ti,am4372-qspi".
2013-08-20 18:55:48 +05:30
- reg: Should contain QSPI registers location and length.
2013-12-06 19:54:49 +05:30
- reg-names: Should contain the resource reg names.
- qspi_base: Qspi configuration register Address space
- qspi_mmap: Memory mapped Address space
- (optional) qspi_ctrlmod: Control module Address space
- interrupts: should contain the qspi interrupt number.
2013-08-20 18:55:48 +05:30
- #address-cells, #size-cells : Must be present if the device has sub-nodes
- ti,hwmods: Name of the hwmod associated to the QSPI
Recommended properties:
- spi-max-frequency: Definition as per
Documentation/devicetree/bindings/spi/spi-bus.txt
2015-12-11 09:39:59 +05:30
Optional properties:
- syscon-chipselects: Handle to system control region contains QSPI
chipselect register and offset of that register.
2016-04-20 17:03:00 +05:30
NOTE: TI QSPI controller requires different pinmux and IODelay
2016-06-29 04:33:33 +09:00
parameters for Mode-0 and Mode-3 operations, which needs to be set up by
2016-04-20 17:03:00 +05:30
the bootloader (U-Boot). Default configuration only supports Mode-0
operation. Hence, "spi-cpol" and "spi-cpha" DT properties cannot be
specified in the slave nodes of TI QSPI controller without appropriate
modification to bootloader.
2013-08-20 18:55:48 +05:30
Example:
2015-12-11 09:40:00 +05:30
For am4372:
2013-08-20 18:55:48 +05:30
qspi: qspi@4b300000 {
2015-12-11 09:40:00 +05:30
compatible = "ti,am4372-qspi";
reg = <0x47900000 0x100>, <0x30000000 0x4000000>;
2013-12-06 19:54:49 +05:30
reg-names = "qspi_base", "qspi_mmap";
2013-08-20 18:55:48 +05:30
#address-cells = <1>;
#size-cells = <0>;
spi-max-frequency = <25000000>;
ti,hwmods = "qspi";
};
2015-12-11 09:39:59 +05:30
For dra7xx:
qspi: qspi@4b300000 {
compatible = "ti,dra7xxx-qspi";
reg = <0x4b300000 0x100>,
<0x5c000000 0x4000000>,
reg-names = "qspi_base", "qspi_mmap";
syscon-chipselects = <&scm_conf 0x558>;
#address-cells = <1>;
#size-cells = <0>;
spi-max-frequency = <48000000>;
ti,hwmods = "qspi";
};