diff options
author | Justin Waters <justin.waters@timesys.com> | 2013-04-24 17:38:39 -0400 |
---|---|---|
committer | Justin Waters <justin.waters@timesys.com> | 2013-04-24 17:38:39 -0400 |
commit | 75c641ece39c136001340df61f0ad57028ce4ffc (patch) | |
tree | e5f2c5f5764770a34d0e39b5eace575fd4751527 /arch/arm/lib/board.c | |
parent | 1341f103ac87882633b019a5a137056818234248 (diff) |
LogicPD Support for OMAP3/DM3/AM3 boards 2.1 Update
Diffstat (limited to 'arch/arm/lib/board.c')
-rw-r--r-- | arch/arm/lib/board.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index 2e223199471..21e6feb182c 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -50,6 +50,7 @@ #include <asm/arch/sys_proto.h> #include <onenand_uboot.h> #include <mmc.h> +#include <asm/arch/dma.h> #ifdef CONFIG_BITBANGMII #include <miiphy.h> @@ -465,6 +466,10 @@ void board_init_r (gd_t *id, ulong dest_addr) debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr); +#if defined(CONFIG_OMAP_DMA) + omap3_dma_init(); +#endif + #ifdef CONFIG_LOGBUFFER logbuff_init_ptrs (); #endif |