diff options
author | Viresh Kumar <viresh.kumar@st.com> | 2011-03-04 05:12:50 -0500 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2011-03-06 14:42:27 -0500 |
commit | 418e74070662e1ae7d9bb5202f773d35c9a7f05e (patch) | |
tree | 23bd64f0d62af665ae69b67f608cb416e60e16ea /drivers/dma/dw_dmac.c | |
parent | a02274564dd78f7edde3c9ff197ed44f2f8a5a81 (diff) |
dw_dmac: Change value of DWC_MAX_COUNT to 4095.
Every descriptor can transfer a maximum count of 4095 (12 bits, in control reg),
So we must have DWC_MAX_COUNT as 4095 instead of 2048.
Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/dw_dmac.c')
-rw-r--r-- | drivers/dma/dw_dmac.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/dma/dw_dmac.c b/drivers/dma/dw_dmac.c index e5d97bf9264a..711ebe954f5b 100644 --- a/drivers/dma/dw_dmac.c +++ b/drivers/dma/dw_dmac.c | |||
@@ -47,14 +47,13 @@ | |||
47 | 47 | ||
48 | /* | 48 | /* |
49 | * This is configuration-dependent and usually a funny size like 4095. | 49 | * This is configuration-dependent and usually a funny size like 4095. |
50 | * Let's round it down to the nearest power of two. | ||
51 | * | 50 | * |
52 | * Note that this is a transfer count, i.e. if we transfer 32-bit | 51 | * Note that this is a transfer count, i.e. if we transfer 32-bit |
53 | * words, we can do 8192 bytes per descriptor. | 52 | * words, we can do 16380 bytes per descriptor. |
54 | * | 53 | * |
55 | * This parameter is also system-specific. | 54 | * This parameter is also system-specific. |
56 | */ | 55 | */ |
57 | #define DWC_MAX_COUNT 2048U | 56 | #define DWC_MAX_COUNT 4095U |
58 | 57 | ||
59 | /* | 58 | /* |
60 | * Number of descriptors to allocate for each channel. This should be | 59 | * Number of descriptors to allocate for each channel. This should be |