Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 321155
b: refs/heads/master
c: eab8253
h: refs/heads/master
i:
  321153: 9648fd9
  321151: aa8baef
v: v3
  • Loading branch information
Russell King committed Jul 1, 2012
1 parent f0b4cf5 commit 7345cce
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 21 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7847f6b55e6a5fe0bbcdaf20db291c9b1db890e8
refs/heads/master: eab82533c972bf932434b69bbb71c6724d863ef7
37 changes: 17 additions & 20 deletions trunk/drivers/dma/amba-pl08x.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,20 +354,25 @@ static int pl08x_phy_channel_busy(struct pl08x_phy_chan *ch)
* been set when the LLIs were constructed. Poke them into the hardware
* and start the transfer.
*/
static void pl08x_start_txd(struct pl08x_dma_chan *plchan,
struct pl08x_txd *txd)
static void pl08x_start_next_txd(struct pl08x_dma_chan *plchan)
{
struct pl08x_driver_data *pl08x = plchan->host;
struct pl08x_phy_chan *phychan = plchan->phychan;
struct pl08x_lli *lli = &txd->llis_va[0];
struct pl08x_lli *lli;
struct pl08x_txd *txd;
u32 val;

txd = list_first_entry(&plchan->pend_list, struct pl08x_txd, node);
list_del(&txd->node);

plchan->at = txd;

/* Wait for channel inactive */
while (pl08x_phy_channel_busy(phychan))
cpu_relax();

lli = &txd->llis_va[0];

dev_vdbg(&pl08x->adev->dev,
"WRITE channel %d: csrc=0x%08x, cdst=0x%08x, "
"clli=0x%08x, cctl=0x%08x, ccfg=0x%08x\n",
Expand Down Expand Up @@ -1272,15 +1277,8 @@ static void pl08x_issue_pending(struct dma_chan *chan)

/* Take the first element in the queue and execute it */
if (!list_empty(&plchan->pend_list)) {
struct pl08x_txd *next;

next = list_first_entry(&plchan->pend_list,
struct pl08x_txd,
node);
list_del(&next->node);
plchan->state = PL08X_CHAN_RUNNING;

pl08x_start_txd(plchan, next);
pl08x_start_next_txd(plchan);
}

spin_unlock_irqrestore(&plchan->lock, flags);
Expand Down Expand Up @@ -1661,14 +1659,7 @@ static void pl08x_tasklet(unsigned long data)

/* If a new descriptor is queued, set it up plchan->at is NULL here */
if (!list_empty(&plchan->pend_list)) {
struct pl08x_txd *next;

next = list_first_entry(&plchan->pend_list,
struct pl08x_txd,
node);
list_del(&next->node);

pl08x_start_txd(plchan, next);
pl08x_start_next_txd(plchan);
} else if (plchan->phychan_hold) {
/*
* This channel is still in use - we have a new txd being
Expand Down Expand Up @@ -1700,7 +1691,13 @@ static void pl08x_tasklet(unsigned long data)
BUG_ON(ret);
waiting->phychan_hold--;
waiting->state = PL08X_CHAN_RUNNING;
pl08x_issue_pending(&waiting->chan);
/*
* Eww. We know this isn't going to deadlock
* but lockdep probably doens't.
*/
spin_lock(&waiting->lock);
pl08x_start_next_txd(waiting);
spin_unlock(&waiting->lock);
break;
}
}
Expand Down

0 comments on commit 7345cce

Please sign in to comment.