system_misc.h 745 字节
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4 5 6 7 8 9
#ifndef __ASM_ARM_SYSTEM_MISC_H
#define __ASM_ARM_SYSTEM_MISC_H

#ifndef __ASSEMBLY__

#include <linux/compiler.h>
#include <linux/linkage.h>
#include <linux/irqflags.h>
10
#include <linux/reboot.h>
11 12 13 14

extern void cpu_init(void);

void soft_restart(unsigned long);
15
extern void (*arm_pm_restart)(enum reboot_mode reboot_mode, const char *cmd);
16
extern void (*arm_pm_idle)(void);
17 18 19 20 21 22 23 24 25

#define UDBG_UNDEFINED	(1 << 0)
#define UDBG_SYSCALL	(1 << 1)
#define UDBG_BADABORT	(1 << 2)
#define UDBG_SEGV	(1 << 3)
#define UDBG_BUS	(1 << 4)

extern unsigned int user_debug;

26 27 28 29 30
static inline int handle_guest_sea(phys_addr_t addr, unsigned int esr)
{
	return -1;
}

31 32 33
#endif /* !__ASSEMBLY__ */

#endif /* __ASM_ARM_SYSTEM_MISC_H */