Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007 |
| 4 | * Nobuhiro Iwamatsu <iwamatsu@nigauri.org> |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <command.h> |
Nobuhiro Iwamatsu | fe77115 | 2009-02-27 18:35:41 +0900 | [diff] [blame] | 9 | #include <netdev.h> |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 10 | #include <asm/processor.h> |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 11 | |
| 12 | int checkcpu(void) |
| 13 | { |
| 14 | puts("CPU: SH4\n"); |
| 15 | return 0; |
| 16 | } |
| 17 | |
| 18 | int cpu_init (void) |
| 19 | { |
| 20 | return 0; |
| 21 | } |
| 22 | |
| 23 | int cleanup_before_linux (void) |
| 24 | { |
| 25 | disable_interrupts(); |
| 26 | return 0; |
| 27 | } |
| 28 | |
Wolfgang Denk | 6262d021 | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 29 | int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 30 | { |
| 31 | disable_interrupts(); |
| 32 | reset_cpu (0); |
| 33 | return 0; |
| 34 | } |
| 35 | |
Nobuhiro Iwamatsu | d8f5d50 | 2008-11-21 12:04:18 +0900 | [diff] [blame] | 36 | int cpu_eth_init(bd_t *bis) |
| 37 | { |
| 38 | #ifdef CONFIG_SH_ETHER |
| 39 | sh_eth_initialize(bis); |
| 40 | #endif |
| 41 | return 0; |
| 42 | } |