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