2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-04-19 04:33:08 +00:00
|
|
|
/*
|
2015-07-27 17:37:35 +00:00
|
|
|
* Copyright (C) 2011-2015 by Vladimir Zapolskiy <vz@mleia.com>
|
2012-04-19 04:33:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:39 +00:00
|
|
|
#include <cpu_func.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <net.h>
|
2015-03-31 09:40:43 +00:00
|
|
|
#include <netdev.h>
|
2012-04-19 04:33:08 +00:00
|
|
|
#include <asm/arch/cpu.h>
|
|
|
|
#include <asm/arch/clk.h>
|
|
|
|
#include <asm/arch/wdt.h>
|
2015-03-31 09:40:51 +00:00
|
|
|
#include <asm/arch/sys_proto.h>
|
2012-04-19 04:33:08 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
static struct clk_pm_regs *clk = (struct clk_pm_regs *)CLK_PM_BASE;
|
|
|
|
static struct wdt_regs *wdt = (struct wdt_regs *)WDT_BASE;
|
|
|
|
|
2020-12-15 15:47:52 +00:00
|
|
|
void reset_cpu(void)
|
2012-04-19 04:33:08 +00:00
|
|
|
{
|
|
|
|
/* Enable watchdog clock */
|
|
|
|
setbits_le32(&clk->timclk_ctrl, CLK_TIMCLK_WATCHDOG);
|
|
|
|
|
2020-12-15 15:47:51 +00:00
|
|
|
/* Reset pulse length is 13005 peripheral clock frames */
|
|
|
|
writel(13000, &wdt->pulse);
|
2012-04-19 04:33:08 +00:00
|
|
|
|
2020-12-15 15:47:51 +00:00
|
|
|
/* Force WDOG_RESET2 and RESOUT_N signal active */
|
|
|
|
writel(WDTIM_MCTRL_RESFRC2 | WDTIM_MCTRL_RESFRC1 | WDTIM_MCTRL_M_RES2,
|
|
|
|
&wdt->mctrl);
|
2012-04-19 04:33:08 +00:00
|
|
|
|
|
|
|
while (1)
|
|
|
|
/* NOP */;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_ARCH_CPU_INIT)
|
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
|
|
|
/*
|
2016-02-06 03:30:11 +00:00
|
|
|
* It might be necessary to flush data cache, if U-Boot is loaded
|
2012-04-19 04:33:08 +00:00
|
|
|
* from kickstart bootloader, e.g. from S1L loader
|
|
|
|
*/
|
|
|
|
flush_dcache_all();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#error "You have to select CONFIG_ARCH_CPU_INIT"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_DISPLAY_CPUINFO)
|
|
|
|
int print_cpuinfo(void)
|
|
|
|
{
|
|
|
|
printf("CPU: NXP LPC32XX\n");
|
|
|
|
printf("CPU clock: %uMHz\n", get_hclk_pll_rate() / 1000000);
|
|
|
|
printf("AHB bus clock: %uMHz\n", get_hclk_clk_rate() / 1000000);
|
|
|
|
printf("Peripheral clock: %uMHz\n", get_periph_clk_rate() / 1000000);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2015-03-31 09:40:43 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_LPC32XX_ETH
|
2020-06-26 06:13:33 +00:00
|
|
|
int cpu_eth_init(struct bd_info *bis)
|
2015-03-31 09:40:43 +00:00
|
|
|
{
|
|
|
|
lpc32xx_eth_initialize(bis);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|