diff options
Diffstat (limited to 'arch/arm/mach-davinci/dm355.c')
-rw-r--r-- | arch/arm/mach-davinci/dm355.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c index 383478116ef..3d996b659ff 100644 --- a/arch/arm/mach-davinci/dm355.c +++ b/arch/arm/mach-davinci/dm355.c | |||
@@ -591,16 +591,18 @@ queue_priority_mapping[][2] = { | |||
591 | {-1, -1}, | 591 | {-1, -1}, |
592 | }; | 592 | }; |
593 | 593 | ||
594 | static struct edma_soc_info dm355_edma_info[] = { | 594 | static struct edma_soc_info edma_cc0_info = { |
595 | { | 595 | .n_channel = 64, |
596 | .n_channel = 64, | 596 | .n_region = 4, |
597 | .n_region = 4, | 597 | .n_slot = 128, |
598 | .n_slot = 128, | 598 | .n_tc = 2, |
599 | .n_tc = 2, | 599 | .n_cc = 1, |
600 | .n_cc = 1, | 600 | .queue_tc_mapping = queue_tc_mapping, |
601 | .queue_tc_mapping = queue_tc_mapping, | 601 | .queue_priority_mapping = queue_priority_mapping, |
602 | .queue_priority_mapping = queue_priority_mapping, | 602 | }; |
603 | }, | 603 | |
604 | static struct edma_soc_info *dm355_edma_info[EDMA_MAX_CC] = { | ||
605 | &edma_cc0_info, | ||
604 | }; | 606 | }; |
605 | 607 | ||
606 | static struct resource edma_resources[] = { | 608 | static struct resource edma_resources[] = { |