From: Jonas Aaberg <[email protected]>

Fixed bug when asking for paused status of a logical
channel would fail.

Signed-off-by: Jonas Aaberg <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
---
 drivers/dma/ste_dma40.c |   77 +++++++++++++++++++++++++++++++++++++---------
 1 files changed, 62 insertions(+), 15 deletions(-)

diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c
index f86b99f..ed1a05c 100644
--- a/drivers/dma/ste_dma40.c
+++ b/drivers/dma/ste_dma40.c
@@ -663,7 +663,7 @@ static void d40_config_set_event(struct d40_chan *d40c, 
bool do_enable)
        spin_unlock_irqrestore(&d40c->phy_chan->lock, flags);
 }
 
-static bool d40_chan_has_events(struct d40_chan *d40c)
+static u32 d40_chan_has_events(struct d40_chan *d40c)
 {
        u32 val = 0;
 
@@ -678,7 +678,7 @@ static bool d40_chan_has_events(struct d40_chan *d40c)
                val = readl(d40c->base->virtbase + D40_DREG_PCBASE +
                            d40c->phy_chan->num * D40_DREG_PCDELTA +
                            D40_CHAN_REG_SDLNK);
-       return (bool) val;
+       return val;
 }
 
 static void d40_config_enable_lidx(struct d40_chan *d40c)
@@ -1393,6 +1393,65 @@ static int d40_pause(struct dma_chan *chan)
        return res;
 }
 
+static bool d40_is_paused(struct d40_chan *d40c)
+{
+       bool is_paused = false;
+       unsigned long flags;
+       void __iomem *active_reg;
+       u32 status;
+       u32 event;
+       int res;
+
+       spin_lock_irqsave(&d40c->lock, flags);
+
+       if (d40c->log_num == D40_PHY_CHAN) {
+               if (d40c->phy_chan->num % 2 == 0)
+                       active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
+               else
+                       active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
+
+               status = (readl(active_reg) &
+                         D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
+                       D40_CHAN_POS(d40c->phy_chan->num);
+               if (status == D40_DMA_SUSPENDED || status == D40_DMA_STOP)
+                       is_paused = true;
+
+               goto _exit;
+       }
+
+       res = d40_channel_execute_command(d40c, D40_DMA_SUSPEND_REQ);
+       if (res != 0)
+               goto _exit;
+
+       if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
+           d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM)
+               event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
+       else if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM)
+               event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
+       else {
+               dev_err(&d40c->chan.dev->device,
+                       "[%s] Unknown direction\n", __func__);
+               goto _exit;
+       }
+       status = d40_chan_has_events(d40c);
+       status = (status & D40_EVENTLINE_MASK(event)) >>
+               D40_EVENTLINE_POS(event);
+
+       if (status != D40_DMA_RUN)
+               is_paused = true;
+
+       /* Resume the other logical channels if any */
+       if (d40_chan_has_events(d40c))
+               res = d40_channel_execute_command(d40c,
+                                                 D40_DMA_RUN);
+
+_exit:
+       spin_unlock_irqrestore(&d40c->lock, flags);
+       return is_paused;
+
+}
+
+
 static bool d40_tx_is_linked(struct d40_chan *d40c)
 {
        bool is_link;
@@ -1983,26 +2042,14 @@ static enum dma_status d40_tx_status(struct dma_chan 
*chan,
                                     struct dma_tx_state *txstate)
 {
        struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
-       void __iomem *active_reg;
        dma_cookie_t last_used;
        dma_cookie_t last_complete;
-       u32 status;
        int ret;
 
        last_complete = d40c->completed;
        last_used = chan->cookie;
 
-       /* check for pause first */
-       if (d40c->phy_chan->num % 2 == 0)
-               active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
-       else
-               active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
-
-       status = (readl(active_reg) &
-                 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
-               D40_CHAN_POS(d40c->phy_chan->num);
-
-       if (status == D40_DMA_SUSPENDED)
+       if (d40_is_paused(d40c))
                ret = DMA_PAUSED;
        else
                ret = dma_async_is_complete(cookie, last_complete, last_used);
-- 
1.6.3.3

--
To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to