2019-06-03 12:44:50 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-03-05 18:49:34 +07:00
|
|
|
/*
|
|
|
|
* Based on arch/arm/include/asm/exception.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 ARM Ltd.
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_EXCEPTION_H
|
|
|
|
#define __ASM_EXCEPTION_H
|
|
|
|
|
2018-01-16 02:38:59 +07:00
|
|
|
#include <asm/esr.h>
|
|
|
|
|
2016-03-26 04:22:05 +07:00
|
|
|
#include <linux/interrupt.h>
|
2015-08-12 21:16:19 +07:00
|
|
|
|
2012-03-05 18:49:34 +07:00
|
|
|
#define __exception __attribute__((section(".exception.text")))
|
2015-08-12 21:16:19 +07:00
|
|
|
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
|
|
|
|
#define __exception_irq_entry __irq_entry
|
|
|
|
#else
|
2013-01-14 19:39:31 +07:00
|
|
|
#define __exception_irq_entry __exception
|
2015-08-12 21:16:19 +07:00
|
|
|
#endif
|
2012-03-05 18:49:34 +07:00
|
|
|
|
2018-01-16 02:38:59 +07:00
|
|
|
static inline u32 disr_to_esr(u64 disr)
|
|
|
|
{
|
|
|
|
unsigned int esr = ESR_ELx_EC_SERROR << ESR_ELx_EC_SHIFT;
|
|
|
|
|
|
|
|
if ((disr & DISR_EL1_IDS) == 0)
|
|
|
|
esr |= (disr & DISR_EL1_ESR_MASK);
|
|
|
|
else
|
|
|
|
esr |= (disr & ESR_ELx_ISS_MASK);
|
|
|
|
|
|
|
|
return esr;
|
|
|
|
}
|
|
|
|
|
2012-03-05 18:49:34 +07:00
|
|
|
#endif /* __ASM_EXCEPTION_H */
|