ee36aca407d2fac0923c6564b7e4f65221c6e409
[oweals/u-boot.git] / arch / sh / cpu / sh4 / cpu.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2007
4  * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5  */
6
7 #include <common.h>
8 #include <command.h>
9 #include <cpu_func.h>
10 #include <netdev.h>
11 #include <asm/processor.h>
12
13 int checkcpu(void)
14 {
15         puts("CPU: SH4\n");
16         return 0;
17 }
18
19 int cpu_init (void)
20 {
21         return 0;
22 }
23
24 int cleanup_before_linux (void)
25 {
26         disable_interrupts();
27         return 0;
28 }
29
30 int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
31 {
32         disable_interrupts();
33         reset_cpu (0);
34         return 0;
35 }
36
37 int cpu_eth_init(bd_t *bis)
38 {
39 #ifdef CONFIG_SH_ETHER
40         sh_eth_initialize(bis);
41 #endif
42         return 0;
43 }