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> |
Simon Glass | 8f3f761 | 2019-11-14 12:57:42 -0700 | [diff] [blame^] | 9 | #include <irq_func.h> |
Simon Glass | 1fa70f8 | 2019-11-14 12:57:34 -0700 | [diff] [blame] | 10 | #include <cpu_func.h> |
Nobuhiro Iwamatsu | fe77115 | 2009-02-27 18:35:41 +0900 | [diff] [blame] | 11 | #include <netdev.h> |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 12 | #include <asm/processor.h> |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 13 | |
| 14 | int checkcpu(void) |
| 15 | { |
| 16 | puts("CPU: SH4\n"); |
| 17 | return 0; |
| 18 | } |
| 19 | |
| 20 | int cpu_init (void) |
| 21 | { |
| 22 | return 0; |
| 23 | } |
| 24 | |
| 25 | int cleanup_before_linux (void) |
| 26 | { |
| 27 | disable_interrupts(); |
| 28 | return 0; |
| 29 | } |
| 30 | |
Wolfgang Denk | 6262d021 | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 31 | 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] | 32 | { |
| 33 | disable_interrupts(); |
| 34 | reset_cpu (0); |
| 35 | return 0; |
| 36 | } |
| 37 | |
Nobuhiro Iwamatsu | d8f5d50 | 2008-11-21 12:04:18 +0900 | [diff] [blame] | 38 | int cpu_eth_init(bd_t *bis) |
| 39 | { |
| 40 | #ifdef CONFIG_SH_ETHER |
| 41 | sh_eth_initialize(bis); |
| 42 | #endif |
| 43 | return 0; |
| 44 | } |