Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Zhi-zhou Zhang | 32afad7 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, <wd@denx.de> |
Zhi-zhou Zhang | 32afad7 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <command.h> |
Daniel Schwierzeck | eef88df | 2015-01-29 14:56:20 +0100 | [diff] [blame] | 9 | #include <linux/compiler.h> |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 10 | #include <asm/cache.h> |
Zhi-zhou Zhang | 32afad7 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 11 | #include <asm/mipsregs.h> |
Zhi-zhou Zhang | 32afad7 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 12 | #include <asm/reboot.h> |
| 13 | |
Álvaro Fernández Rojas | 5e36546 | 2017-04-25 00:39:15 +0200 | [diff] [blame] | 14 | #ifndef CONFIG_SYSRESET |
Daniel Schwierzeck | eef88df | 2015-01-29 14:56:20 +0100 | [diff] [blame] | 15 | void __weak _machine_restart(void) |
Zhi-zhou Zhang | 32afad7 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 16 | { |
| 17 | fprintf(stderr, "*** reset failed ***\n"); |
| 18 | |
| 19 | while (1) |
| 20 | /* NOP */; |
| 21 | } |
| 22 | |
| 23 | int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 24 | { |
| 25 | _machine_restart(); |
| 26 | |
| 27 | return 0; |
| 28 | } |
Álvaro Fernández Rojas | 5e36546 | 2017-04-25 00:39:15 +0200 | [diff] [blame] | 29 | #endif |
Zhi-zhou Zhang | 32afad7 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 30 | |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 31 | int arch_cpu_init(void) |
| 32 | { |
| 33 | mips_cache_probe(); |
| 34 | return 0; |
| 35 | } |