diff options
Diffstat (limited to 'arch/arm/mach-tegra/common.c')
-rw-r--r-- | arch/arm/mach-tegra/common.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index 445104a993ba..7c91e2b9d643 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c | |||
@@ -19,10 +19,13 @@ | |||
19 | 19 | ||
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/io.h> | 21 | #include <linux/io.h> |
22 | #include <linux/clk.h> | ||
23 | #include <linux/delay.h> | ||
22 | 24 | ||
23 | #include <asm/hardware/cache-l2x0.h> | 25 | #include <asm/hardware/cache-l2x0.h> |
24 | 26 | ||
25 | #include <mach/iomap.h> | 27 | #include <mach/iomap.h> |
28 | #include <mach/dma.h> | ||
26 | 29 | ||
27 | #include "board.h" | 30 | #include "board.h" |
28 | #include "clock.h" | 31 | #include "clock.h" |
@@ -52,6 +55,7 @@ void __init tegra_init_cache(void) | |||
52 | 55 | ||
53 | l2x0_init(p, 0x6C080001, 0x8200c3fe); | 56 | l2x0_init(p, 0x6C080001, 0x8200c3fe); |
54 | #endif | 57 | #endif |
58 | |||
55 | } | 59 | } |
56 | 60 | ||
57 | void __init tegra_common_init(void) | 61 | void __init tegra_common_init(void) |
@@ -60,4 +64,7 @@ void __init tegra_common_init(void) | |||
60 | tegra_init_clock(); | 64 | tegra_init_clock(); |
61 | tegra_clk_init_from_table(common_clk_init_table); | 65 | tegra_clk_init_from_table(common_clk_init_table); |
62 | tegra_init_cache(); | 66 | tegra_init_cache(); |
67 | #ifdef CONFIG_TEGRA_SYSTEM_DMA | ||
68 | tegra_dma_init(); | ||
69 | #endif | ||
63 | } | 70 | } |