diff options
Diffstat (limited to 'arch/arm/mach-davinci/dm644x.c')
-rw-r--r-- | arch/arm/mach-davinci/dm644x.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/arch/arm/mach-davinci/dm644x.c b/arch/arm/mach-davinci/dm644x.c index 7ad15208b841..40fec315c99a 100644 --- a/arch/arm/mach-davinci/dm644x.c +++ b/arch/arm/mach-davinci/dm644x.c | |||
@@ -492,16 +492,18 @@ queue_priority_mapping[][2] = { | |||
492 | {-1, -1}, | 492 | {-1, -1}, |
493 | }; | 493 | }; |
494 | 494 | ||
495 | static struct edma_soc_info dm644x_edma_info[] = { | 495 | static struct edma_soc_info edma_cc0_info = { |
496 | { | 496 | .n_channel = 64, |
497 | .n_channel = 64, | 497 | .n_region = 4, |
498 | .n_region = 4, | 498 | .n_slot = 128, |
499 | .n_slot = 128, | 499 | .n_tc = 2, |
500 | .n_tc = 2, | 500 | .n_cc = 1, |
501 | .n_cc = 1, | 501 | .queue_tc_mapping = queue_tc_mapping, |
502 | .queue_tc_mapping = queue_tc_mapping, | 502 | .queue_priority_mapping = queue_priority_mapping, |
503 | .queue_priority_mapping = queue_priority_mapping, | 503 | }; |
504 | }, | 504 | |
505 | static struct edma_soc_info *dm644x_edma_info[EDMA_MAX_CC] = { | ||
506 | &edma_cc0_info, | ||
505 | }; | 507 | }; |
506 | 508 | ||
507 | static struct resource edma_resources[] = { | 509 | static struct resource edma_resources[] = { |