mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-16 16:23:14 +00:00
a9ab9f7c37
According to Documentation/devicetree/bindings/spi/spi-gpio.yaml from Linux, the recommended spio-gpio properties are: sck-gpios, miso-gpios and mosi-gpios. gpio-sck, gpio-mosi and gpio-miso are considered deprecated. Update the bindings to suggest the recommeded properties. Signed-off-by: Fabio Estevam <festevam@denx.de> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
38 lines
1.1 KiB
Text
38 lines
1.1 KiB
Text
Soft SPI
|
|
|
|
The soft SPI bus implementation allows the use of GPIO pins to simulate a
|
|
SPI bus. No SPI host is required for this to work. The down-side is that the
|
|
performance will typically be much lower than a real SPI bus.
|
|
|
|
The soft SPI node requires the following properties:
|
|
|
|
Mandatory properties:
|
|
compatible: "spi-gpio"
|
|
cs-gpios: GPIOs to use for SPI chip select (output)
|
|
sck-gpios: GPIO to use for SPI clock (output)
|
|
And at least one of:
|
|
mosi-gpios: GPIO to use for SPI MOSI line (output)
|
|
miso-gpios: GPIO to use for SPI MISO line (input)
|
|
|
|
Optional propertie:
|
|
spi-delay-us: Number of microseconds of delay between each CS transition
|
|
|
|
The GPIOs should be specified as required by the GPIO controller referenced.
|
|
The first cell holds the phandle of the controller and the second cell
|
|
typically holds the GPIO number.
|
|
|
|
|
|
Example:
|
|
|
|
soft-spi {
|
|
compatible = "spi-gpio";
|
|
cs-gpios = <&gpio 235 0>; /* Y43 */
|
|
sck-gpios = <&gpio 225 0>; /* Y31 */
|
|
mosi-gpios = <&gpio 227 0>; /* Y33 */
|
|
miso-gpios = <&gpio 224 0>; /* Y30 */
|
|
spi-delay-us = <1>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
cs@0 {
|
|
};
|
|
};
|