summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2012-03-02 12:54:19 +0530
committerVarun Colbert <vcolbert@nvidia.com>2012-03-09 21:28:59 -0800
commit7988d9109fb6c274faf9e14dd9e8366c68214640 (patch)
tree9150a49b2e063b3dbd401938a74c42e731018e5e
parentb0a97558c4ff738fefcc52c98faa8c417b1747d7 (diff)
ARM: tegra: dma: Return ERROR_STOPPED if dma stopped.
The dma will be stop in continuous mode with following reason: - There is no next request and dma restarted the same buffer as it was last transfer. - The buffer size was not enough and so latency to serve dma interrupt is more than buffer transfer time and hence buffer completed before interrupt served. In the above cases, dma actually transfer more than requested size. Returning correct transferred data in byte transferred and return request status as ERROR. Change-Id: I7046e0935b7261475a0f6ed49e40a6f1b86d72ec Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: http://git-master/r/86002 Reviewed-by: Stephen Warren <swarren@nvidia.com>
-rw-r--r--arch/arm/mach-tegra/dma.c98
-rw-r--r--arch/arm/mach-tegra/include/mach/dma.h26
2 files changed, 86 insertions, 38 deletions
diff --git a/arch/arm/mach-tegra/dma.c b/arch/arm/mach-tegra/dma.c
index f882d4293bec..35499916e2bd 100644
--- a/arch/arm/mach-tegra/dma.c
+++ b/arch/arm/mach-tegra/dma.c
@@ -237,6 +237,62 @@ static inline unsigned int get_req_xfer_word_count(
return req->size >> 2;
}
+static int get_current_xferred_count(struct tegra_dma_channel *ch,
+ struct tegra_dma_req *req, unsigned long status)
+{
+ int req_transfer_count;
+ req_transfer_count = get_req_xfer_word_count(ch, req) << 2;
+ return req_transfer_count - ((status & STA_COUNT_MASK) + 4);
+}
+
+static void tegra_dma_abort_req(struct tegra_dma_channel *ch,
+ struct tegra_dma_req *req, const char *warn_msg)
+{
+ unsigned long status = readl(ch->addr + APB_DMA_CHAN_STA);
+
+ /*
+ * Check if interrupt is pending.
+ * This api is called from isr and hence need not to call
+ * isr handle again, just update the byte_transferred.
+ */
+ if (status & STA_ISE_EOC)
+ req->bytes_transferred += get_req_xfer_word_count(ch, req) << 2;
+ tegra_dma_stop(ch);
+
+ req->bytes_transferred += get_current_xferred_count(ch, req, status);
+ req->status = -TEGRA_DMA_REQ_ERROR_STOPPED;
+ if (warn_msg)
+ WARN(1, KERN_WARNING "%s\n", warn_msg);
+ start_head_req(ch);
+}
+
+static void handle_continuous_head_request(struct tegra_dma_channel *ch,
+ struct tegra_dma_req *last_req)
+{
+ struct tegra_dma_req *hreq = NULL;
+
+ if (list_empty(&ch->list)) {
+ tegra_dma_abort_req(ch, last_req, NULL);
+ return;
+ }
+
+ /*
+ * Check that head req on list should be in flight.
+ * If it is not in flight then request came late
+ * and so need to abort dma and start next request
+ * immediately.
+ */
+ hreq = list_entry(ch->list.next, typeof(*hreq), node);
+ if (hreq->status != TEGRA_DMA_REQ_INFLIGHT) {
+ tegra_dma_abort_req(ch, last_req, "Req was not queued on time");
+ return;
+ }
+
+ /* Configure next request in single buffer mode */
+ if (ch->mode & TEGRA_DMA_MODE_CONTINUOUS_SINGLE)
+ configure_next_req(ch, hreq);
+}
+
static unsigned int get_channel_status(struct tegra_dma_channel *ch,
struct tegra_dma_req *req, bool is_stop_dma)
{
@@ -807,17 +863,14 @@ static void handle_continuous_dbl_dma(struct tegra_dma_channel *ch)
* We should not land here if queue mechanism
* with system latency are properly configured.
*/
- WARN_ON(1);
- req->buffer_status = TEGRA_DMA_REQ_BUF_STATUS_FULL;
req->bytes_transferred += req->size;
- req->status = TEGRA_DMA_REQ_SUCCESS;
- tegra_dma_stop(ch);
list_del(&req->node);
ch->callback = req->complete;
ch->cb_req = req;
- start_head_req(ch);
+ tegra_dma_abort_req(ch, req,
+ "Dma becomes out of sync for ping-pong buffer");
return;
}
@@ -846,24 +899,10 @@ static void handle_continuous_dbl_dma(struct tegra_dma_channel *ch)
ch->callback = req->complete;
ch->cb_req = req;
- if (list_empty(&ch->list)) {
- tegra_dma_stop(ch);
- } else {
- /* Check that next req on list should be in flight */
- req = list_entry(ch->list.next, typeof(*req), node);
- if (req->status != TEGRA_DMA_REQ_INFLIGHT) {
- /*
- * We should not land here if queue mechanism
- * with system latency are properly configured.
- */
- WARN_ON(1);
- tegra_dma_stop(ch);
- start_head_req(ch);
- }
- }
+ handle_continuous_head_request(ch, req);
return;
}
- tegra_dma_stop(ch);
+ tegra_dma_abort_req(ch, req, "Dma status is not on sync\n");
/* Dma should be stop much earlier */
BUG();
return;
@@ -872,7 +911,6 @@ static void handle_continuous_dbl_dma(struct tegra_dma_channel *ch)
static void handle_continuous_sngl_dma(struct tegra_dma_channel *ch)
{
struct tegra_dma_req *req;
- struct tegra_dma_req *nreq;
req = list_entry(ch->list.next, typeof(*req), node);
if (req->buffer_status == TEGRA_DMA_REQ_BUF_STATUS_FULL) {
@@ -892,21 +930,7 @@ static void handle_continuous_sngl_dma(struct tegra_dma_channel *ch)
ch->callback = req->complete;
ch->cb_req = req;
- if (list_empty(&ch->list)) {
- pr_debug("%s: stop\n", __func__);
- tegra_dma_stop(ch);
- } else {
- /* Head req should be in flight */
- nreq = list_entry(ch->list.next, typeof(*nreq), node);
- if (nreq->status != TEGRA_DMA_REQ_INFLIGHT) {
- tegra_dma_stop(ch);
- WARN_ON(1);
- start_head_req(ch);
- } else {
- /* Configure next req */
- configure_next_req(ch, nreq);
- }
- }
+ handle_continuous_head_request(ch, req);
return;
}
diff --git a/arch/arm/mach-tegra/include/mach/dma.h b/arch/arm/mach-tegra/include/mach/dma.h
index 055bd6a97499..0b0a5d9fd1d8 100644
--- a/arch/arm/mach-tegra/include/mach/dma.h
+++ b/arch/arm/mach-tegra/include/mach/dma.h
@@ -72,9 +72,33 @@ enum tegra_dma_mode {
TEGRA_DMA_MODE_ONESHOT = 8,
};
-enum tegra_dma_req_error {
+/*
+ * tegra_dma_req_status: Dma request status
+ * TEGRA_DMA_REQ_SUCCESS: The request has been successfully completed.
+ * The byte_transferred tells number of bytes transferred.
+ * TEGRA_DMA_REQ_ERROR_ABORTED: The request is aborted by client after
+ * calling tegra_dma_dequeue_req.
+ * The byte_transferred tells number of bytes transferred
+ * which may be more than request size due to buffer
+ * wrap-up in continuous mode.
+ * TEGRA_DMA_REQ_ERROR_STOPPED: Applicable in continuous mode.
+ * The request is stopped forcefully. This may be becasue of
+ * - due to non-available of next request.
+ * - not able to serve current interrupt before next buffer
+ * completed by dma. This can happen if buffer req size is
+ * not enough and it transfer completes before system actually
+ * serve the previous dma interrupts.
+ * The byte_transferred will not be accurate in this case. It will
+ * just give an idea that how much approximately have been
+ * transferred by dma.
+ * TEGRA_DMA_REQ_INFLIGHT: The request is configured in the dma register
+ * for transfer.
+ */
+
+enum tegra_dma_req_status {
TEGRA_DMA_REQ_SUCCESS = 0,
TEGRA_DMA_REQ_ERROR_ABORTED,
+ TEGRA_DMA_REQ_ERROR_STOPPED,
TEGRA_DMA_REQ_INFLIGHT,
};