Commit ddf41bf7 authored by Dilip Kota's avatar Dilip Kota Committed by Mark Brown

spi: lantiq: Add SMP support

Existing driver supports only single core SoC. New multicore platforms uses
the same driver/IP so SMP support is required. This patch adds multicore
support in the driver.
Signed-off-by: default avatarDilip Kota <eswara.kota@linux.intel.com>
Link: https://lore.kernel.org/r/d6663296b41f102c582fda08e71f62b72ca05d5d.1594957019.git.eswara.kota@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 661ccf2b
...@@ -622,7 +622,9 @@ static void rx_request(struct lantiq_ssc_spi *spi) ...@@ -622,7 +622,9 @@ static void rx_request(struct lantiq_ssc_spi *spi)
static irqreturn_t lantiq_ssc_xmit_interrupt(int irq, void *data) static irqreturn_t lantiq_ssc_xmit_interrupt(int irq, void *data)
{ {
struct lantiq_ssc_spi *spi = data; struct lantiq_ssc_spi *spi = data;
unsigned long flags;
spin_lock_irqsave(&spi->lock, flags);
if (spi->tx) { if (spi->tx) {
if (spi->rx && spi->rx_todo) if (spi->rx && spi->rx_todo)
rx_fifo_read_full_duplex(spi); rx_fifo_read_full_duplex(spi);
...@@ -644,10 +646,12 @@ static irqreturn_t lantiq_ssc_xmit_interrupt(int irq, void *data) ...@@ -644,10 +646,12 @@ static irqreturn_t lantiq_ssc_xmit_interrupt(int irq, void *data)
} }
} }
spin_unlock_irqrestore(&spi->lock, flags);
return IRQ_HANDLED; return IRQ_HANDLED;
completed: completed:
queue_work(spi->wq, &spi->work); queue_work(spi->wq, &spi->work);
spin_unlock_irqrestore(&spi->lock, flags);
return IRQ_HANDLED; return IRQ_HANDLED;
} }
...@@ -656,10 +660,12 @@ static irqreturn_t lantiq_ssc_err_interrupt(int irq, void *data) ...@@ -656,10 +660,12 @@ static irqreturn_t lantiq_ssc_err_interrupt(int irq, void *data)
{ {
struct lantiq_ssc_spi *spi = data; struct lantiq_ssc_spi *spi = data;
u32 stat = lantiq_ssc_readl(spi, LTQ_SPI_STAT); u32 stat = lantiq_ssc_readl(spi, LTQ_SPI_STAT);
unsigned long flags;
if (!(stat & LTQ_SPI_STAT_ERRORS)) if (!(stat & LTQ_SPI_STAT_ERRORS))
return IRQ_NONE; return IRQ_NONE;
spin_lock_irqsave(&spi->lock, flags);
if (stat & LTQ_SPI_STAT_RUE) if (stat & LTQ_SPI_STAT_RUE)
dev_err(spi->dev, "receive underflow error\n"); dev_err(spi->dev, "receive underflow error\n");
if (stat & LTQ_SPI_STAT_TUE) if (stat & LTQ_SPI_STAT_TUE)
...@@ -680,6 +686,7 @@ static irqreturn_t lantiq_ssc_err_interrupt(int irq, void *data) ...@@ -680,6 +686,7 @@ static irqreturn_t lantiq_ssc_err_interrupt(int irq, void *data)
if (spi->master->cur_msg) if (spi->master->cur_msg)
spi->master->cur_msg->status = -EIO; spi->master->cur_msg->status = -EIO;
queue_work(spi->wq, &spi->work); queue_work(spi->wq, &spi->work);
spin_unlock_irqrestore(&spi->lock, flags);
return IRQ_HANDLED; return IRQ_HANDLED;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment