1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * arch/mips/include/asm/dec/reset.h 4 * 5 * DECstation/DECsystem halt/reset support. 6 * 7 * Copyright (C) 2026 Maciej W. Rozycki 8 */ 9 #ifndef __ASM_DEC_RESET_H 10 #define __ASM_DEC_RESET_H 11 12 #include <linux/compiler_attributes.h> 13 14 void __noreturn dec_machine_restart(char *command); 15 void __noreturn dec_machine_halt(void); 16 void __noreturn dec_machine_power_off(void); 17 irqreturn_t dec_intr_halt(int irq, void *dev_id); 18 19 #endif /* __ASM_DEC_RESET_H */ 20