2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2007-05-13 11:58:00 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007
|
|
|
|
* Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2019-11-14 19:57:42 +00:00
|
|
|
#include <irq_func.h>
|
2019-11-14 19:57:34 +00:00
|
|
|
#include <cpu_func.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <net.h>
|
2009-02-27 09:35:41 +00:00
|
|
|
#include <netdev.h>
|
2007-09-22 17:12:30 +00:00
|
|
|
#include <asm/processor.h>
|
2007-05-13 11:58:00 +00:00
|
|
|
|
|
|
|
int checkcpu(void)
|
|
|
|
{
|
|
|
|
puts("CPU: SH4\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cpu_init (void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cleanup_before_linux (void)
|
|
|
|
{
|
|
|
|
disable_interrupts();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
2007-05-13 11:58:00 +00:00
|
|
|
{
|
|
|
|
disable_interrupts();
|
2019-12-28 17:45:01 +00:00
|
|
|
reset_cpu(0);
|
2007-05-13 11:58:00 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
int cpu_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SH_ETHER
|
|
|
|
sh_eth_initialize(bis);
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|