forked from Minki/linux
spi/xilinx: Support for spi mode LSB_FIRST
Hardware supports LSB_FIRST mode. Support it also in the driver. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
97bf6af1f9
commit
bca690db90
@ -34,7 +34,8 @@
|
|||||||
#define XSPI_CR_MASTER_MODE 0x04
|
#define XSPI_CR_MASTER_MODE 0x04
|
||||||
#define XSPI_CR_CPOL 0x08
|
#define XSPI_CR_CPOL 0x08
|
||||||
#define XSPI_CR_CPHA 0x10
|
#define XSPI_CR_CPHA 0x10
|
||||||
#define XSPI_CR_MODE_MASK (XSPI_CR_CPHA | XSPI_CR_CPOL)
|
#define XSPI_CR_MODE_MASK (XSPI_CR_CPHA | XSPI_CR_CPOL | \
|
||||||
|
XSPI_CR_LSB_FIRST)
|
||||||
#define XSPI_CR_TXFIFO_RESET 0x20
|
#define XSPI_CR_TXFIFO_RESET 0x20
|
||||||
#define XSPI_CR_RXFIFO_RESET 0x40
|
#define XSPI_CR_RXFIFO_RESET 0x40
|
||||||
#define XSPI_CR_MANUAL_SSELECT 0x80
|
#define XSPI_CR_MANUAL_SSELECT 0x80
|
||||||
@ -194,6 +195,8 @@ static void xilinx_spi_chipselect(struct spi_device *spi, int is_on)
|
|||||||
cr |= XSPI_CR_CPHA;
|
cr |= XSPI_CR_CPHA;
|
||||||
if (spi->mode & SPI_CPOL)
|
if (spi->mode & SPI_CPOL)
|
||||||
cr |= XSPI_CR_CPOL;
|
cr |= XSPI_CR_CPOL;
|
||||||
|
if (spi->mode & SPI_LSB_FIRST)
|
||||||
|
cr |= XSPI_CR_LSB_FIRST;
|
||||||
xspi->write_fn(cr, xspi->regs + XSPI_CR_OFFSET);
|
xspi->write_fn(cr, xspi->regs + XSPI_CR_OFFSET);
|
||||||
|
|
||||||
/* We do not check spi->max_speed_hz here as the SPI clock
|
/* We do not check spi->max_speed_hz here as the SPI clock
|
||||||
@ -353,7 +356,7 @@ static int xilinx_spi_probe(struct platform_device *pdev)
|
|||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
/* the spi->mode bits understood by this driver: */
|
/* the spi->mode bits understood by this driver: */
|
||||||
master->mode_bits = SPI_CPOL | SPI_CPHA;
|
master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_LSB_FIRST;
|
||||||
|
|
||||||
xspi = spi_master_get_devdata(master);
|
xspi = spi_master_get_devdata(master);
|
||||||
xspi->bitbang.master = master;
|
xspi->bitbang.master = master;
|
||||||
|
Loading…
Reference in New Issue
Block a user