diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2013-07-30 11:36:29 +0530 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-08-15 08:51:10 -0400 |
commit | 3b34ac13fe1e841e8f4ab00dda6a5a7df0568710 (patch) | |
tree | f16630afab7c81ecc11e9db1b425132ed966a3ae /board/ti/am43xx | |
parent | c06e498a16eae82eda3a6947c2375990df20bd3a (diff) | |
download | u-boot-imx-3b34ac13fe1e841e8f4ab00dda6a5a7df0568710.zip u-boot-imx-3b34ac13fe1e841e8f4ab00dda6a5a7df0568710.tar.gz u-boot-imx-3b34ac13fe1e841e8f4ab00dda6a5a7df0568710.tar.bz2 |
ARM: AM43xx: clocks: Add dpll and clock data
Add dpll and clock data for AM43xx
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'board/ti/am43xx')
-rw-r--r-- | board/ti/am43xx/board.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index f5b9100..51b2576 100644 --- a/board/ti/am43xx/board.c +++ b/board/ti/am43xx/board.c @@ -10,6 +10,7 @@ #include <common.h> #include <spl.h> +#include <asm/arch/clock.h> #include <asm/arch/sys_proto.h> #include <asm/arch/mux.h> #include "board.h" @@ -19,7 +20,7 @@ DECLARE_GLOBAL_DATA_PTR; #ifdef CONFIG_SPL_BUILD const struct dpll_params dpll_ddr = { - 266, OSC-1, 1, -1, -1, -1, -1}; + -1, -1, -1, -1, -1, -1, -1}; const struct dpll_params *get_dpll_ddr_params(void) { |