diff options
author | Ido Yariv <ido@wizery.com> | 2011-07-10 09:14:35 -0400 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2011-09-17 06:24:08 -0400 |
commit | f23fe857bbea393b4b94fe2218c98d934bd3d4cf (patch) | |
tree | 39661f5a8db2b71a3efcd4dd19c5133462de87f4 /arch/arm/mach-davinci/dm644x.c | |
parent | b6fd41e29dea9c6753b1843a77e50433e6123bcb (diff) |
ARM: davinci: Explicitly set channel controllers' default queues
Davinci platforms may define a default queue for each channel
controller. If one is not defined, the default queue is set to EVENTQ_1.
However, there's no way to distinguish between an unset default queue to
one that is set to EVENTQ_0, as EVENTQ_0 = 0.
Explicitly specify the default queue for all channel controllers on all
Davinci platforms to EVENTQ_1, and don't overwrite it in the EDMA probe
function.
One exception is the DA850 board, for which EVENTQ_1 is not a valid
option for its second channel controller. Use EVENTQ_0 instead for that
channel controller.
Signed-off-by: Ido Yariv <ido@wizery.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm644x.c')
-rw-r--r-- | arch/arm/mach-davinci/dm644x.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/dm644x.c b/arch/arm/mach-davinci/dm644x.c index 4c82c2716293..555ff5bdb220 100644 --- a/arch/arm/mach-davinci/dm644x.c +++ b/arch/arm/mach-davinci/dm644x.c | |||
@@ -514,6 +514,7 @@ static struct edma_soc_info edma_cc0_info = { | |||
514 | .n_cc = 1, | 514 | .n_cc = 1, |
515 | .queue_tc_mapping = queue_tc_mapping, | 515 | .queue_tc_mapping = queue_tc_mapping, |
516 | .queue_priority_mapping = queue_priority_mapping, | 516 | .queue_priority_mapping = queue_priority_mapping, |
517 | .default_queue = EVENTQ_1, | ||
517 | }; | 518 | }; |
518 | 519 | ||
519 | static struct edma_soc_info *dm644x_edma_info[EDMA_MAX_CC] = { | 520 | static struct edma_soc_info *dm644x_edma_info[EDMA_MAX_CC] = { |