aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/hardware/iop_adma.h
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
commit8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch)
treea8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /arch/arm/include/asm/hardware/iop_adma.h
parent406089d01562f1e2bf9f089fd7637009ebaad589 (diff)
Patched in Tegra support.
Diffstat (limited to 'arch/arm/include/asm/hardware/iop_adma.h')
-rw-r--r--arch/arm/include/asm/hardware/iop_adma.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/hardware/iop_adma.h b/arch/arm/include/asm/hardware/iop_adma.h
index 122f86d8c99..59b8c3892f7 100644
--- a/arch/arm/include/asm/hardware/iop_adma.h
+++ b/arch/arm/include/asm/hardware/iop_adma.h
@@ -49,6 +49,7 @@ struct iop_adma_device {
49/** 49/**
50 * struct iop_adma_chan - internal representation of an ADMA device 50 * struct iop_adma_chan - internal representation of an ADMA device
51 * @pending: allows batching of hardware operations 51 * @pending: allows batching of hardware operations
52 * @completed_cookie: identifier for the most recently completed operation
52 * @lock: serializes enqueue/dequeue operations to the slot pool 53 * @lock: serializes enqueue/dequeue operations to the slot pool
53 * @mmr_base: memory mapped register base 54 * @mmr_base: memory mapped register base
54 * @chain: device chain view of the descriptors 55 * @chain: device chain view of the descriptors
@@ -61,6 +62,7 @@ struct iop_adma_device {
61 */ 62 */
62struct iop_adma_chan { 63struct iop_adma_chan {
63 int pending; 64 int pending;
65 dma_cookie_t completed_cookie;
64 spinlock_t lock; /* protects the descriptor slot pool */ 66 spinlock_t lock; /* protects the descriptor slot pool */
65 void __iomem *mmr_base; 67 void __iomem *mmr_base;
66 struct list_head chain; 68 struct list_head chain;