2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-05-22 18:23:51 +00:00
|
|
|
/*
|
2010-09-14 14:38:57 +00:00
|
|
|
* (C) Copyright 2010
|
|
|
|
* Reinhard Meyer, reinhard.meyer@emk-elektronik.de
|
2009-05-22 18:23:51 +00:00
|
|
|
* (C) Copyright 2009
|
|
|
|
* Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
|
|
|
|
*/
|
|
|
|
|
2009-05-31 12:53:18 +00:00
|
|
|
#include <common.h>
|
2010-11-07 12:26:14 +00:00
|
|
|
#include <asm/io.h>
|
2009-04-16 19:30:44 +00:00
|
|
|
#include <asm/arch/hardware.h>
|
2010-09-13 06:26:39 +00:00
|
|
|
#include <asm/arch/at91_pit.h>
|
2010-09-14 14:38:57 +00:00
|
|
|
#include <asm/arch/at91_gpbr.h>
|
2009-04-16 19:30:44 +00:00
|
|
|
#include <asm/arch/clk.h>
|
|
|
|
|
2010-02-24 09:29:16 +00:00
|
|
|
#ifndef CONFIG_SYS_AT91_MAIN_CLOCK
|
|
|
|
#define CONFIG_SYS_AT91_MAIN_CLOCK 0
|
2009-05-31 12:53:18 +00:00
|
|
|
#endif
|
|
|
|
|
2009-04-16 19:30:44 +00:00
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
2010-02-24 09:29:16 +00:00
|
|
|
return at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
|
2009-04-16 19:30:44 +00:00
|
|
|
}
|
2009-05-31 12:53:18 +00:00
|
|
|
|
2010-09-13 06:26:39 +00:00
|
|
|
void arch_preboot_os(void)
|
|
|
|
{
|
|
|
|
ulong cpiv;
|
2010-11-03 14:39:55 +00:00
|
|
|
at91_pit_t *pit = (at91_pit_t *) ATMEL_BASE_PIT;
|
2010-09-13 06:26:39 +00:00
|
|
|
|
|
|
|
cpiv = AT91_PIT_MR_PIV_MASK(readl(&pit->piir));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Disable PITC
|
|
|
|
* Add 0x1000 to current counter to stop it faster
|
|
|
|
* without waiting for wrapping back to 0
|
|
|
|
*/
|
|
|
|
writel(cpiv + 0x1000, &pit->mr);
|
|
|
|
}
|
|
|
|
|
2009-05-31 12:53:18 +00:00
|
|
|
#if defined(CONFIG_DISPLAY_CPUINFO)
|
|
|
|
int print_cpuinfo(void)
|
|
|
|
{
|
2015-06-29 07:10:46 +00:00
|
|
|
char __maybe_unused buf[32];
|
2009-05-31 12:53:18 +00:00
|
|
|
|
2010-11-03 14:39:55 +00:00
|
|
|
printf("CPU: %s\n", ATMEL_CPU_NAME);
|
2009-05-31 12:53:18 +00:00
|
|
|
printf("Crystal frequency: %8s MHz\n",
|
|
|
|
strmhz(buf, get_main_clk_rate()));
|
|
|
|
printf("CPU clock : %8s MHz\n",
|
|
|
|
strmhz(buf, get_cpu_clk_rate()));
|
|
|
|
printf("Master clock : %8s MHz\n",
|
|
|
|
strmhz(buf, get_mck_clk_rate()));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|