forked from mirrors/linux
		
	To split up APEIs in_nmi() path, the caller needs to always be in_nmi(). KVM shouldn't have to know about this, pull the RAS plumbing out into a header file. Currently guest synchronous external aborts are claimed as RAS notifications by handle_guest_sea(), which is hidden in the arch codes mm/fault.c. 32bit gets a dummy declaration in system_misc.h. There is going to be more of this in the future if/when the kernel supports the SError-based firmware-first notification mechanism and/or kernel-first notifications for both synchronous external abort and SError. Each of these will come with some Kconfig symbols and a handful of header files. Create a header file for all this. This patch gives handle_guest_sea() a 'kvm_' prefix, and moves the declarations to kvm_ras.h as preparation for a future patch that moves the ACPI-specific RAS code out of mm/fault.c. Signed-off-by: James Morse <james.morse@arm.com> Reviewed-by: Punit Agrawal <punit.agrawal@arm.com> Acked-by: Marc Zyngier <marc.zyngier@arm.com> Tested-by: Tyler Baicar <tbaicar@codeaurora.org> Acked-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#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>
 | 
						|
#include <linux/reboot.h>
 | 
						|
#include <linux/percpu.h>
 | 
						|
 | 
						|
extern void cpu_init(void);
 | 
						|
 | 
						|
void soft_restart(unsigned long);
 | 
						|
extern void (*arm_pm_restart)(enum reboot_mode reboot_mode, const char *cmd);
 | 
						|
extern void (*arm_pm_idle)(void);
 | 
						|
 | 
						|
#ifdef CONFIG_HARDEN_BRANCH_PREDICTOR
 | 
						|
typedef void (*harden_branch_predictor_fn_t)(void);
 | 
						|
DECLARE_PER_CPU(harden_branch_predictor_fn_t, harden_branch_predictor_fn);
 | 
						|
static inline void harden_branch_predictor(void)
 | 
						|
{
 | 
						|
	harden_branch_predictor_fn_t fn = per_cpu(harden_branch_predictor_fn,
 | 
						|
						  smp_processor_id());
 | 
						|
	if (fn)
 | 
						|
		fn();
 | 
						|
}
 | 
						|
#else
 | 
						|
#define harden_branch_predictor() do { } while (0)
 | 
						|
#endif
 | 
						|
 | 
						|
#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;
 | 
						|
 | 
						|
#endif /* !__ASSEMBLY__ */
 | 
						|
 | 
						|
#endif /* __ASM_ARM_SYSTEM_MISC_H */
 |