diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> | 2015-02-02 05:06:56 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-02-02 07:17:19 -0500 |
commit | 34093cb97abe9298a19a96b1b2f1714e28f8e67f (patch) | |
tree | 8d516008ea9cde7c6e2de5519bbbc913a85bf703 | |
parent | 0635287a308d38bad334fe91ea5a69b597e0a583 (diff) |
spi/xilinx: Fix access invalid memory on xilinx_spi_tx
On 1 and 2 bytes per word, the transfer of the 3 last bytes will access
memory outside tx_ptr.
Although this has not trigger any error on real hardware, we should
better fix this.
Fixes: 24ba5e593f391507 (Remove rx_fn and tx_fn pointer)
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-xilinx.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/drivers/spi/spi-xilinx.c b/drivers/spi/spi-xilinx.c index d1901d578823..133f53a9c1d4 100644 --- a/drivers/spi/spi-xilinx.c +++ b/drivers/spi/spi-xilinx.c | |||
@@ -117,11 +117,26 @@ static unsigned int xspi_read32_be(void __iomem *addr) | |||
117 | 117 | ||
118 | static void xilinx_spi_tx(struct xilinx_spi *xspi) | 118 | static void xilinx_spi_tx(struct xilinx_spi *xspi) |
119 | { | 119 | { |
120 | u32 data = 0; | ||
121 | |||
120 | if (!xspi->tx_ptr) { | 122 | if (!xspi->tx_ptr) { |
121 | xspi->write_fn(0, xspi->regs + XSPI_TXD_OFFSET); | 123 | xspi->write_fn(0, xspi->regs + XSPI_TXD_OFFSET); |
122 | return; | 124 | return; |
123 | } | 125 | } |
124 | xspi->write_fn(*(u32 *)(xspi->tx_ptr), xspi->regs + XSPI_TXD_OFFSET); | 126 | |
127 | switch (xspi->bytes_per_word) { | ||
128 | case 1: | ||
129 | data = *(u8 *)(xspi->tx_ptr); | ||
130 | break; | ||
131 | case 2: | ||
132 | data = *(u16 *)(xspi->tx_ptr); | ||
133 | break; | ||
134 | case 4: | ||
135 | data = *(u32 *)(xspi->tx_ptr); | ||
136 | break; | ||
137 | } | ||
138 | |||
139 | xspi->write_fn(data, xspi->regs + XSPI_TXD_OFFSET); | ||
125 | xspi->tx_ptr += xspi->bytes_per_word; | 140 | xspi->tx_ptr += xspi->bytes_per_word; |
126 | } | 141 | } |
127 | 142 | ||