blob: 5117177474145c5389927fb11b7e290bfb7d1fe1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +00002/*
Sylvain Lemieuxeb48e2b2015-07-27 13:37:35 -04003 * Copyright (C) 2011-2015 by Vladimir Zapolskiy <vz@mleia.com>
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +00004 */
5
6#include <common.h>
Albert ARIBAUD \(3ADEV\)391e1632015-03-31 11:40:43 +02007#include <netdev.h>
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +00008#include <asm/arch/cpu.h>
9#include <asm/arch/clk.h>
10#include <asm/arch/wdt.h>
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +020011#include <asm/arch/sys_proto.h>
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +000012#include <asm/io.h>
13
14static struct clk_pm_regs *clk = (struct clk_pm_regs *)CLK_PM_BASE;
15static struct wdt_regs *wdt = (struct wdt_regs *)WDT_BASE;
16
17void reset_cpu(ulong addr)
18{
19 /* Enable watchdog clock */
20 setbits_le32(&clk->timclk_ctrl, CLK_TIMCLK_WATCHDOG);
21
Sylvain Lemieuxeb48e2b2015-07-27 13:37:35 -040022 /* To be compatible with the original U-Boot code:
23 * addr: - 0: perform hard reset.
24 * - !=0: perform a soft reset; i.e. "RESOUT_N" not asserted). */
25 if (addr == 0) {
26 /* Reset pulse length is 13005 peripheral clock frames */
27 writel(13000, &wdt->pulse);
28
29 /* Force WDOG_RESET2 and RESOUT_N signal active */
30 writel(WDTIM_MCTRL_RESFRC2 | WDTIM_MCTRL_RESFRC1
31 | WDTIM_MCTRL_M_RES2, &wdt->mctrl);
32 } else {
33 /* Force match output active */
34 writel(0x01, &wdt->emr);
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +000035
Sylvain Lemieuxeb48e2b2015-07-27 13:37:35 -040036 /* Internal reset on match output (no pulse on "RESOUT_N") */
37 writel(WDTIM_MCTRL_M_RES1, &wdt->mctrl);
38 }
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +000039
40 while (1)
41 /* NOP */;
42}
43
44#if defined(CONFIG_ARCH_CPU_INIT)
45int arch_cpu_init(void)
46{
47 /*
Bin Meng75574052016-02-05 19:30:11 -080048 * It might be necessary to flush data cache, if U-Boot is loaded
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +000049 * from kickstart bootloader, e.g. from S1L loader
50 */
51 flush_dcache_all();
52
53 return 0;
54}
55#else
56#error "You have to select CONFIG_ARCH_CPU_INIT"
57#endif
58
59#if defined(CONFIG_DISPLAY_CPUINFO)
60int print_cpuinfo(void)
61{
62 printf("CPU: NXP LPC32XX\n");
63 printf("CPU clock: %uMHz\n", get_hclk_pll_rate() / 1000000);
64 printf("AHB bus clock: %uMHz\n", get_hclk_clk_rate() / 1000000);
65 printf("Peripheral clock: %uMHz\n", get_periph_clk_rate() / 1000000);
66
67 return 0;
68}
69#endif
Albert ARIBAUD \(3ADEV\)391e1632015-03-31 11:40:43 +020070
71#ifdef CONFIG_LPC32XX_ETH
72int cpu_eth_init(bd_t *bis)
73{
74 lpc32xx_eth_initialize(bis);
75 return 0;
76}
77#endif