blob: a8f4356ce94fdd247e0c01be33711778599f448d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bo Shen3225f342013-05-12 22:40:54 +00002/*
3 * (C) Copyright 2010
4 * Reinhard Meyer, reinhard.meyer@emk-elektronik.de
5 * (C) Copyright 2009
6 * Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7 * (C) Copyright 2013
8 * Bo Shen <voice.shen@atmel.com>
Bo Shen3225f342013-05-12 22:40:54 +00009 */
10
11#include <common.h>
Simon Glass9edefc22019-11-14 12:57:37 -070012#include <cpu_func.h>
Simon Glass691d7192020-05-10 11:40:02 -060013#include <init.h>
Simon Glass2189d5f2019-11-14 12:57:20 -070014#include <vsprintf.h>
Bo Shen3225f342013-05-12 22:40:54 +000015#include <asm/io.h>
16#include <asm/arch/hardware.h>
Bo Shen3225f342013-05-12 22:40:54 +000017#include <asm/arch/at91_pit.h>
18#include <asm/arch/at91_gpbr.h>
19#include <asm/arch/clk.h>
20
21#ifndef CONFIG_SYS_AT91_MAIN_CLOCK
22#define CONFIG_SYS_AT91_MAIN_CLOCK 0
23#endif
24
25int arch_cpu_init(void)
26{
27 return at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
28}
29
30void arch_preboot_os(void)
31{
32 ulong cpiv;
33 at91_pit_t *pit = (at91_pit_t *)ATMEL_BASE_PIT;
34
35 cpiv = AT91_PIT_MR_PIV_MASK(readl(&pit->piir));
36
37 /*
38 * Disable PITC
39 * Add 0x1000 to current counter to stop it faster
40 * without waiting for wrapping back to 0
41 */
42 writel(cpiv + 0x1000, &pit->mr);
43}
44
45#if defined(CONFIG_DISPLAY_CPUINFO)
46int print_cpuinfo(void)
47{
48 char buf[32];
49
50 printf("CPU: %s\n", get_cpu_name());
51 printf("Crystal frequency: %8s MHz\n",
52 strmhz(buf, get_main_clk_rate()));
53 printf("CPU clock : %8s MHz\n",
54 strmhz(buf, get_cpu_clk_rate()));
55 printf("Master clock : %8s MHz\n",
56 strmhz(buf, get_mck_clk_rate()));
57
58 return 0;
59}
60#endif
61
62void enable_caches(void)
63{
Wu, Joshd337a092014-05-19 19:51:28 +080064 icache_enable();
65 dcache_enable();
Bo Shen3225f342013-05-12 22:40:54 +000066}
67
Wenyou Yangce396802015-09-08 14:38:26 +080068#define ATMEL_CHIPID_CIDR_VERSION 0x1f
69
Bo Shen3225f342013-05-12 22:40:54 +000070unsigned int get_chip_id(void)
71{
Wenyou Yangce396802015-09-08 14:38:26 +080072 return readl(ATMEL_CHIPID_CIDR) & ~ATMEL_CHIPID_CIDR_VERSION;
Bo Shen3225f342013-05-12 22:40:54 +000073}
74
75unsigned int get_extension_chip_id(void)
76{
Wenyou Yangce396802015-09-08 14:38:26 +080077 return readl(ATMEL_CHIPID_EXID);
Bo Shen3225f342013-05-12 22:40:54 +000078}