]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
x86: ich-spi: Set the rx operation mode for ich 7
authorBin Meng <bmeng.cn@gmail.com>
Fri, 12 Dec 2014 14:06:15 +0000 (19:36 +0530)
committerSimon Glass <sjg@chromium.org>
Sat, 13 Dec 2014 22:08:04 +0000 (15:08 -0700)
ICH 7 SPI controller only supports array read command (03h).
Fast array read command (0Bh) is not supported.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
drivers/spi/ich.c

index c4d3a291e8dbf75cbbb52ba0ab3c8efe704678ac..b356411c36a4c3f87bda9549fa28dc7cf35a5872 100644 (file)
@@ -141,6 +141,10 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
        ich->slave.max_write_size = ctlr.databytes;
        ich->speed = max_hz;
 
+       /* ICH 7 SPI controller only supports array read command */
+       if (ctlr.ich_version == 7)
+               ich->slave.op_mode_rx = SPI_OPM_RX_AS;
+
        return &ich->slave;
 }