mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 19:28:36 +00:00
dc39ae9513
calculate dynamically the clock rate and pllb setting for usb Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14 lines
268 B
C
14 lines
268 B
C
#include <config.h>
|
|
#include <asm/arch/hardware.h>
|
|
#include <asm/arch/at91_pmc.h>
|
|
#include <asm/arch/clk.h>
|
|
#include <asm/arch/io.h>
|
|
|
|
int arch_cpu_init(void)
|
|
{
|
|
#ifdef AT91_MAIN_CLOCK
|
|
return at91_clock_init(AT91_MAIN_CLOCK);
|
|
#else
|
|
return at91_clock_init(0);
|
|
#endif
|
|
}
|