aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQipan Li <Qipan.Li@csr.com>2014-11-17 10:17:03 -0500
committerMark Brown <broonie@kernel.org>2014-11-18 09:45:02 -0500
commitfcc50e5cd2deb8316d19e446d8efdfc9b35646ef (patch)
tree578691ec08d21ac98b5e0982c56bee72e65fa002
parentf114040e3ea6e07372334ade75d1ee0775c355e1 (diff)
spi: sirf: assign spi_master's max_speed_hz member
if spi device has no frequency, spi core will setup the default frequency to max_speed_hz of spi_master according to int spi_setup(struct spi_device *spi) { ... if (!spi->max_speed_hz) spi->max_speed_hz = spi->master->max_speed_hz; ... } this patch moves CSR SiRFSoC SPI frequency set to follow SPI core behaviour. Signed-off-by: Qipan Li <Qipan.Li@csr.com> Signed-off-by: Barry Song <Baohua.Song@csr.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/spi/spi-sirf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/spi/spi-sirf.c b/drivers/spi/spi-sirf.c
index 39e2c0a55a28..bf3c6bc77530 100644
--- a/drivers/spi/spi-sirf.c
+++ b/drivers/spi/spi-sirf.c
@@ -134,6 +134,7 @@
134 ALIGNED(x->len) && (x->len < 2 * PAGE_SIZE)) 134 ALIGNED(x->len) && (x->len < 2 * PAGE_SIZE))
135 135
136#define SIRFSOC_MAX_CMD_BYTES 4 136#define SIRFSOC_MAX_CMD_BYTES 4
137#define SIRFSOC_SPI_DEFAULT_FRQ 1000000
137 138
138struct sirfsoc_spi { 139struct sirfsoc_spi {
139 struct spi_bitbang bitbang; 140 struct spi_bitbang bitbang;
@@ -629,9 +630,6 @@ static int spi_sirfsoc_setup(struct spi_device *spi)
629{ 630{
630 struct sirfsoc_spi *sspi; 631 struct sirfsoc_spi *sspi;
631 632
632 if (!spi->max_speed_hz)
633 return -EINVAL;
634
635 sspi = spi_master_get_devdata(spi->master); 633 sspi = spi_master_get_devdata(spi->master);
636 634
637 if (spi->cs_gpio == -ENOENT) 635 if (spi->cs_gpio == -ENOENT)
@@ -683,6 +681,7 @@ static int spi_sirfsoc_probe(struct platform_device *pdev)
683 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_LSB_FIRST | SPI_CS_HIGH; 681 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_LSB_FIRST | SPI_CS_HIGH;
684 master->bits_per_word_mask = SPI_BPW_MASK(8) | SPI_BPW_MASK(12) | 682 master->bits_per_word_mask = SPI_BPW_MASK(8) | SPI_BPW_MASK(12) |
685 SPI_BPW_MASK(16) | SPI_BPW_MASK(32); 683 SPI_BPW_MASK(16) | SPI_BPW_MASK(32);
684 master->max_speed_hz = SIRFSOC_SPI_DEFAULT_FRQ;
686 sspi->bitbang.master->dev.of_node = pdev->dev.of_node; 685 sspi->bitbang.master->dev.of_node = pdev->dev.of_node;
687 686
688 /* request DMA channels */ 687 /* request DMA channels */