gpio/mpc83xx_spisel_boot.c: gpio driver for SPISEL_BOOT signal
authorKlaus H. Sorensen <khso@prevas.dk>
Tue, 11 Feb 2020 15:20:22 +0000 (15:20 +0000)
committerTom Rini <trini@konsulko.com>
Tue, 31 Mar 2020 14:06:52 +0000 (10:06 -0400)
commit3fb22bc2f825ea1b3326edc5b32d711a759a265f
treeefa15fbaac2202fc0ef0bc10aad9161cb4468689
parentdd4cf53f9864362d9e92472298ad60dcbb8b7e72
gpio/mpc83xx_spisel_boot.c: gpio driver for SPISEL_BOOT signal

Some SoCs in the mpc83xx family, e.g. mpc8309, have a dedicated spi
chip select, SPISEL_BOOT, that is used by the boot code to boot from
flash.

This chip select will typically be used to select a SPI boot
flash. The SPISEL_BOOT signal is controlled by a single bit in the
SPI_CS register.

Implement a gpio driver for the spi chip select register. This allows a
spi driver capable of using gpios as chip select, to bind a chip select
to SPISEL_BOOT.

It may be a little odd to do this as a GPIO driver, since the signal
is neither GP or I, but it is quite convenient to present it to the
spi driver that way. The alternative it to teach mpc8xxx_spi to handle
the SPISEL_BOOT signal itself (that is how it's done in the linux
kernel, see commit 69b921acae8a)

Signed-off-by: Klaus H. Sorensen <khso@prevas.dk>
Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
doc/device-tree-bindings/gpio/fsl,mpc83xx-spisel-boot.txt [new file with mode: 0644]
drivers/gpio/Kconfig
drivers/gpio/Makefile
drivers/gpio/mpc83xx_spisel_boot.c [new file with mode: 0644]