diff options
author | Tom Rini <trini@ti.com> | 2013-08-30 16:28:44 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-09-20 11:01:26 -0400 |
commit | 6a0d803c7c9eeee24f579b764eb4bc51ed79eb5e (patch) | |
tree | 027beaf25df3536042b1915bba6796d9cd99cd85 /arch/arm/include/asm/arch-am33xx | |
parent | b04601a7f0f29138bd4a14c383cdeefe83b5a7ee (diff) | |
download | u-boot-imx-6a0d803c7c9eeee24f579b764eb4bc51ed79eb5e.zip u-boot-imx-6a0d803c7c9eeee24f579b764eb4bc51ed79eb5e.tar.gz u-boot-imx-6a0d803c7c9eeee24f579b764eb4bc51ed79eb5e.tar.bz2 |
am33xx: Add am33xx_spl_board_init function, call
We need to allow for a further call-out in spl_board_init. Call this
am33xx_spl_board_init and add a __weak version. This function may be
used to scale the MPU frequency up, depending on board needs.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/include/asm/arch-am33xx')
-rw-r--r-- | arch/arm/include/asm/arch-am33xx/sys_proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-am33xx/sys_proto.h b/arch/arm/include/asm/arch-am33xx/sys_proto.h index c6070a3..55f57ac 100644 --- a/arch/arm/include/asm/arch-am33xx/sys_proto.h +++ b/arch/arm/include/asm/arch-am33xx/sys_proto.h @@ -42,4 +42,5 @@ u32 wait_on_value(u32, u32, void *, u32); #ifdef CONFIG_NOR_BOOT void enable_norboot_pin_mux(void); #endif +void am33xx_spl_board_init(void); #endif |