Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0cd61561 authored by Daniel Mack's avatar Daniel Mack Committed by Vinod Koul
Browse files

dma: mmp_pdma: don't clear DCMD_ENDIRQEN at end of pending chain



In order to fully support multiple transactions per channel, we need to
assure we get an interrupt for each completed transaction. That flags
bit is also our only way to tell at which descriptor a transaction ends.

So, remove the manual clearing of that bit, and then inline the only
remaining command that is left in append_pending_queue() for better
readability.

Signed-off-by: default avatarDaniel Mack <zonque@gmail.com>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent b721f9e8
Loading
Loading
Loading
Loading
+2 −20
Original line number Original line Diff line number Diff line
@@ -279,25 +279,6 @@ static void mmp_pdma_free_phy(struct mmp_pdma_chan *pchan)
	spin_unlock_irqrestore(&pdev->phy_lock, flags);
	spin_unlock_irqrestore(&pdev->phy_lock, flags);
}
}


/* desc->tx_list ==> pending list */
static void append_pending_queue(struct mmp_pdma_chan *chan,
					struct mmp_pdma_desc_sw *desc)
{
	struct mmp_pdma_desc_sw *tail =
				to_mmp_pdma_desc(chan->chain_pending.prev);

	if (list_empty(&chan->chain_pending))
		goto out_splice;

	/* one irq per queue, even appended */
	tail->desc.ddadr = desc->async_tx.phys;
	tail->desc.dcmd &= ~DCMD_ENDIRQEN;

	/* softly link to pending list */
out_splice:
	list_splice_tail_init(&desc->tx_list, &chan->chain_pending);
}

/**
/**
 * start_pending_queue - transfer any pending transactions
 * start_pending_queue - transfer any pending transactions
 * pending list ==> running list
 * pending list ==> running list
@@ -360,7 +341,8 @@ static dma_cookie_t mmp_pdma_tx_submit(struct dma_async_tx_descriptor *tx)
		cookie = dma_cookie_assign(&child->async_tx);
		cookie = dma_cookie_assign(&child->async_tx);
	}
	}


	append_pending_queue(chan, desc);
	/* softly link to pending list - desc->tx_list ==> pending list */
	list_splice_tail_init(&desc->tx_list, &chan->chain_pending);


	spin_unlock_irqrestore(&chan->desc_lock, flags);
	spin_unlock_irqrestore(&chan->desc_lock, flags);