2 * Based on arch/arm/include/asm/traps.h
4 * Copyright (C) 2012 ARM Ltd.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include <linux/list.h>
23 #include <asm/sections.h>
28 struct list_head node
;
33 int (*fn
)(struct pt_regs
*regs
, u32 instr
);
36 void register_undef_hook(struct undef_hook
*hook
);
37 void unregister_undef_hook(struct undef_hook
*hook
);
38 void force_signal_inject(int signal
, int code
, struct pt_regs
*regs
,
39 unsigned long address
);
41 void arm64_notify_segfault(struct pt_regs
*regs
, unsigned long addr
);
44 * Move regs->pc to next instruction and do necessary setup before it
47 void arm64_skip_faulting_instruction(struct pt_regs
*regs
, unsigned long size
);
49 static inline int __in_irqentry_text(unsigned long ptr
)
51 return ptr
>= (unsigned long)&__irqentry_text_start
&&
52 ptr
< (unsigned long)&__irqentry_text_end
;
55 static inline int in_exception_text(unsigned long ptr
)
59 in
= ptr
>= (unsigned long)&__exception_text_start
&&
60 ptr
< (unsigned long)&__exception_text_end
;
62 return in
? : __in_irqentry_text(ptr
);
65 static inline int in_entry_text(unsigned long ptr
)
67 return ptr
>= (unsigned long)&__entry_text_start
&&
68 ptr
< (unsigned long)&__entry_text_end
;
72 * CPUs with the RAS extensions have an Implementation-Defined-Syndrome bit
73 * to indicate whether this ESR has a RAS encoding. CPUs without this feature
74 * have a ISS-Valid bit in the same position.
75 * If this bit is set, we know its not a RAS SError.
76 * If its clear, we need to know if the CPU supports RAS. Uncategorized RAS
77 * errors share the same encoding as an all-zeros encoding from a CPU that
78 * doesn't support RAS.
80 static inline bool arm64_is_ras_serror(u32 esr
)
82 WARN_ON(preemptible());
84 if (esr
& ESR_ELx_IDS
)
87 if (this_cpu_has_cap(ARM64_HAS_RAS_EXTN
))
94 * Return the AET bits from a RAS SError's ESR.
96 * It is implementation defined whether Uncategorized errors are containable.
97 * We treat them as Uncontainable.
98 * Non-RAS SError's are reported as Uncontained/Uncategorized.
100 static inline u32
arm64_ras_serror_get_severity(u32 esr
)
102 u32 aet
= esr
& ESR_ELx_AET
;
104 if (!arm64_is_ras_serror(esr
)) {
105 /* Not a RAS error, we can't interpret the ESR. */
106 return ESR_ELx_AET_UC
;
110 * AET is RES0 if 'the value returned in the DFSC field is not
111 * [ESR_ELx_FSC_SERROR]'
113 if ((esr
& ESR_ELx_FSC
) != ESR_ELx_FSC_SERROR
) {
114 /* No severity information : Uncategorized */
115 return ESR_ELx_AET_UC
;
121 bool arm64_is_fatal_ras_serror(struct pt_regs
*regs
, unsigned int esr
);
122 void __noreturn
arm64_serror_panic(struct pt_regs
*regs
, u32 esr
);