123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- From 3027505ab8c8cb17291e53bca1d7bd770539d468 Mon Sep 17 00:00:00 2001
- From: Axel Lin <[email protected]>
- Date: Mon, 24 Feb 2014 23:07:36 +0800
- Subject: [PATCH 073/182] spi: qup: Get rid of using struct spi_qup_device
- Current code uses struct spi_qup_device to store spi->mode and spi->chip_select
- settings. We can get these settings in spi_qup_transfer_one and spi_qup_set_cs
- without using struct spi_qup_device. Refactor the code a bit to remove
- spi_qup_setup(), spi_qup_cleanup(), and struct spi_qup_device.
- Signed-off-by: Axel Lin <[email protected]>
- Tested-by: Ivan T. Ivanov <[email protected]>
- Signed-off-by: Mark Brown <[email protected]>
- ---
- drivers/spi/spi-qup.c | 61 ++++++++-----------------------------------------
- 1 file changed, 9 insertions(+), 52 deletions(-)
- --- a/drivers/spi/spi-qup.c
- +++ b/drivers/spi/spi-qup.c
- @@ -123,11 +123,6 @@
- #define SPI_DELAY_THRESHOLD 1
- #define SPI_DELAY_RETRY 10
-
- -struct spi_qup_device {
- - int select;
- - u16 mode;
- -};
- -
- struct spi_qup {
- void __iomem *base;
- struct device *dev;
- @@ -338,14 +333,13 @@ static irqreturn_t spi_qup_qup_irq(int i
-
-
- /* set clock freq ... bits per word */
- -static int spi_qup_io_config(struct spi_qup *controller,
- - struct spi_qup_device *chip,
- - struct spi_transfer *xfer)
- +static int spi_qup_io_config(struct spi_device *spi, struct spi_transfer *xfer)
- {
- + struct spi_qup *controller = spi_master_get_devdata(spi->master);
- u32 config, iomode, mode;
- int ret, n_words, w_size;
-
- - if (chip->mode & SPI_LOOP && xfer->len > controller->in_fifo_sz) {
- + if (spi->mode & SPI_LOOP && xfer->len > controller->in_fifo_sz) {
- dev_err(controller->dev, "too big size for loopback %d > %d\n",
- xfer->len, controller->in_fifo_sz);
- return -EIO;
- @@ -399,12 +393,12 @@ static int spi_qup_io_config(struct spi_
-
- config = readl_relaxed(controller->base + SPI_CONFIG);
-
- - if (chip->mode & SPI_LOOP)
- + if (spi->mode & SPI_LOOP)
- config |= SPI_CONFIG_LOOPBACK;
- else
- config &= ~SPI_CONFIG_LOOPBACK;
-
- - if (chip->mode & SPI_CPHA)
- + if (spi->mode & SPI_CPHA)
- config &= ~SPI_CONFIG_INPUT_FIRST;
- else
- config |= SPI_CONFIG_INPUT_FIRST;
- @@ -413,7 +407,7 @@ static int spi_qup_io_config(struct spi_
- * HS_MODE improves signal stability for spi-clk high rates,
- * but is invalid in loop back mode.
- */
- - if ((xfer->speed_hz >= SPI_HS_MIN_RATE) && !(chip->mode & SPI_LOOP))
- + if ((xfer->speed_hz >= SPI_HS_MIN_RATE) && !(spi->mode & SPI_LOOP))
- config |= SPI_CONFIG_HS_MODE;
- else
- config &= ~SPI_CONFIG_HS_MODE;
- @@ -433,7 +427,6 @@ static int spi_qup_io_config(struct spi_
- static void spi_qup_set_cs(struct spi_device *spi, bool enable)
- {
- struct spi_qup *controller = spi_master_get_devdata(spi->master);
- - struct spi_qup_device *chip = spi_get_ctldata(spi);
-
- u32 iocontol, mask;
-
- @@ -444,9 +437,9 @@ static void spi_qup_set_cs(struct spi_de
- iocontol |= SPI_IO_C_FORCE_CS;
-
- iocontol &= ~SPI_IO_C_CS_SELECT_MASK;
- - iocontol |= SPI_IO_C_CS_SELECT(chip->select);
- + iocontol |= SPI_IO_C_CS_SELECT(spi->chip_select);
-
- - mask = SPI_IO_C_CS_N_POLARITY_0 << chip->select;
- + mask = SPI_IO_C_CS_N_POLARITY_0 << spi->chip_select;
-
- if (enable)
- iocontol |= mask;
- @@ -461,11 +454,10 @@ static int spi_qup_transfer_one(struct s
- struct spi_transfer *xfer)
- {
- struct spi_qup *controller = spi_master_get_devdata(master);
- - struct spi_qup_device *chip = spi_get_ctldata(spi);
- unsigned long timeout, flags;
- int ret = -EIO;
-
- - ret = spi_qup_io_config(controller, chip, xfer);
- + ret = spi_qup_io_config(spi, xfer);
- if (ret)
- return ret;
-
- @@ -511,38 +503,6 @@ exit:
- return ret;
- }
-
- -static int spi_qup_setup(struct spi_device *spi)
- -{
- - struct spi_qup *controller = spi_master_get_devdata(spi->master);
- - struct spi_qup_device *chip = spi_get_ctldata(spi);
- -
- - if (!chip) {
- - /* First setup */
- - chip = kzalloc(sizeof(*chip), GFP_KERNEL);
- - if (!chip) {
- - dev_err(controller->dev, "no memory for chip data\n");
- - return -ENOMEM;
- - }
- -
- - chip->mode = spi->mode;
- - chip->select = spi->chip_select;
- - spi_set_ctldata(spi, chip);
- - }
- -
- - return 0;
- -}
- -
- -static void spi_qup_cleanup(struct spi_device *spi)
- -{
- - struct spi_qup_device *chip = spi_get_ctldata(spi);
- -
- - if (!chip)
- - return;
- -
- - spi_set_ctldata(spi, NULL);
- - kfree(chip);
- -}
- -
- static int spi_qup_probe(struct platform_device *pdev)
- {
- struct spi_master *master;
- @@ -561,7 +521,6 @@ static int spi_qup_probe(struct platform
- return PTR_ERR(base);
-
- irq = platform_get_irq(pdev, 0);
- -
- if (irq < 0)
- return irq;
-
- @@ -617,8 +576,6 @@ static int spi_qup_probe(struct platform
- master->num_chipselect = SPI_NUM_CHIPSELECTS;
- master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32);
- master->max_speed_hz = max_freq;
- - master->setup = spi_qup_setup;
- - master->cleanup = spi_qup_cleanup;
- master->set_cs = spi_qup_set_cs;
- master->transfer_one = spi_qup_transfer_one;
- master->dev.of_node = pdev->dev.of_node;
|