1 // SPDX-License-Identifier: GPL-2.0+
9 #include <linux/compiler.h>
10 #include <asm/cache.h>
11 #include <asm/mipsregs.h>
12 #include <asm/reboot.h>
14 #ifndef CONFIG_SYSRESET
15 void __weak _machine_restart(void)
17 fprintf(stderr, "*** reset failed ***\n");
23 int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
31 void write_one_tlb(int index, u32 pagemask, u32 hi, u32 low0, u32 low1)
33 write_c0_entrylo0(low0);
34 write_c0_pagemask(pagemask);
35 write_c0_entrylo1(low1);
37 write_c0_index(index);
41 int arch_cpu_init(void)