blob: c018fcdf915741bf1e26f17aaa5bd5ec82284385 [file] [log] [blame]
Christophe Leroy8a23fdec2019-04-30 12:38:50 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __HEAD_32_H__
3#define __HEAD_32_H__
4
5#include <asm/ptrace.h> /* for STACK_FRAME_REGS_MARKER */
6
7/*
8 * Exception entry code. This code runs with address translation
9 * turned off, i.e. using physical addresses.
10 * We assume sprg3 has the physical address of the current
11 * task's thread_struct.
12 */
Christophe Leroy719e7e22021-03-12 12:50:38 +000013.macro EXCEPTION_PROLOG trapno name handle_dar_dsisr=0
Christophe Leroy02847482019-12-21 08:32:27 +000014 EXCEPTION_PROLOG_0 handle_dar_dsisr=\handle_dar_dsisr
Christophe Leroy1f1c4d02019-12-21 08:32:23 +000015 EXCEPTION_PROLOG_1
Christophe Leroy719e7e22021-03-12 12:50:38 +000016 EXCEPTION_PROLOG_2 \trapno \name handle_dar_dsisr=\handle_dar_dsisr
Christophe Leroy1f1c4d02019-12-21 08:32:23 +000017.endm
18
Christophe Leroy02847482019-12-21 08:32:27 +000019.macro EXCEPTION_PROLOG_0 handle_dar_dsisr=0
Christophe Leroy8a23fdec2019-04-30 12:38:50 +000020 mtspr SPRN_SPRG_SCRATCH0,r10
21 mtspr SPRN_SPRG_SCRATCH1,r11
Christophe Leroy02847482019-12-21 08:32:27 +000022 mfspr r10, SPRN_SPRG_THREAD
23 .if \handle_dar_dsisr
Christophe Leroy0512aad2021-03-12 12:50:16 +000024#ifdef CONFIG_40x
25 mfspr r11, SPRN_DEAR
26#else
Christophe Leroy02847482019-12-21 08:32:27 +000027 mfspr r11, SPRN_DAR
Christophe Leroy0512aad2021-03-12 12:50:16 +000028#endif
Christophe Leroy02847482019-12-21 08:32:27 +000029 stw r11, DAR(r10)
Christophe Leroy0512aad2021-03-12 12:50:16 +000030#ifdef CONFIG_40x
31 mfspr r11, SPRN_ESR
32#else
Christophe Leroy02847482019-12-21 08:32:27 +000033 mfspr r11, SPRN_DSISR
Christophe Leroy0512aad2021-03-12 12:50:16 +000034#endif
Christophe Leroy02847482019-12-21 08:32:27 +000035 stw r11, DSISR(r10)
36 .endif
37 mfspr r11, SPRN_SRR0
38 stw r11, SRR0(r10)
Christophe Leroy5ae8fab2019-12-21 08:32:25 +000039 mfspr r11, SPRN_SRR1 /* check whether user or kernel */
Christophe Leroy02847482019-12-21 08:32:27 +000040 stw r11, SRR1(r10)
Christophe Leroy8a23fdec2019-04-30 12:38:50 +000041 mfcr r10
Christophe Leroy5ae8fab2019-12-21 08:32:25 +000042 andi. r11, r11, MSR_PR
Christophe Leroy8a23fdec2019-04-30 12:38:50 +000043.endm
44
Christophe Leroy7aa8dd62021-03-12 12:50:22 +000045.macro EXCEPTION_PROLOG_1
Christophe Leroyd2e00602020-11-25 07:10:53 +000046 mtspr SPRN_SPRG_SCRATCH2,r1
Christophe Leroyda7bb432020-09-07 13:42:10 +000047 subi r1, r1, INT_FRAME_SIZE /* use r1 if kernel */
48 beq 1f
49 mfspr r1,SPRN_SPRG_THREAD
50 lwz r1,TASK_STACK-THREAD(r1)
51 addi r1, r1, THREAD_SIZE - INT_FRAME_SIZE
Christophe Leroy6285f9c2020-11-25 07:10:51 +0000521:
Christophe Leroy7aa8dd62021-03-12 12:50:22 +000053#ifdef CONFIG_VMAP_STACK
Christophe Leroy3642eb22021-02-08 07:17:40 +000054 mtcrf 0x3f, r1
Christophe Leroy5b5e5bc2021-03-12 12:50:27 +000055 bt 32 - THREAD_ALIGN_SHIFT, vmap_stack_overflow
Christophe Leroy3978eb72019-12-21 08:32:29 +000056#endif
Christophe Leroy8a23fdec2019-04-30 12:38:50 +000057.endm
58
Christophe Leroy719e7e22021-03-12 12:50:38 +000059.macro EXCEPTION_PROLOG_2 trapno name handle_dar_dsisr=0
Christophe Leroy5b1c9a02021-03-12 12:50:23 +000060#ifdef CONFIG_PPC_8xx
61 .if \handle_dar_dsisr
62 li r11, RPN_PATTERN
63 mtspr SPRN_DAR, r11 /* Tag DAR, to be used in DTLB Error */
64 .endif
65#endif
Christophe Leroy9b6150f2021-03-12 12:50:24 +000066 LOAD_REG_IMMEDIATE(r11, MSR_KERNEL & ~MSR_RI) /* re-enable MMU */
67 mtspr SPRN_SRR1, r11
68 lis r11, 1f@h
69 ori r11, r11, 1f@l
70 mtspr SPRN_SRR0, r11
Christophe Leroyd2e00602020-11-25 07:10:53 +000071 mfspr r11, SPRN_SPRG_SCRATCH2
Christophe Leroy9b6150f2021-03-12 12:50:24 +000072 rfi
Christophe Leroydc13b882021-03-12 12:50:29 +000073
74 .text
Christophe Leroy8f844c02021-03-12 12:50:30 +000075\name\()_virt:
Christophe Leroy9b6150f2021-03-12 12:50:24 +0000761:
Christophe Leroyda7bb432020-09-07 13:42:10 +000077 stw r11,GPR1(r1)
78 stw r11,0(r1)
79 mr r11, r1
Christophe Leroyd2e00602020-11-25 07:10:53 +000080 stw r10,_CCR(r11) /* save registers */
Christophe Leroy8a23fdec2019-04-30 12:38:50 +000081 stw r12,GPR12(r11)
82 stw r9,GPR9(r11)
Christophe Leroyd2e00602020-11-25 07:10:53 +000083 mfspr r10,SPRN_SPRG_SCRATCH0
Christophe Leroy8a23fdec2019-04-30 12:38:50 +000084 mfspr r12,SPRN_SPRG_SCRATCH1
Christophe Leroyd2e00602020-11-25 07:10:53 +000085 stw r10,GPR10(r11)
Christophe Leroy8a23fdec2019-04-30 12:38:50 +000086 stw r12,GPR11(r11)
87 mflr r10
88 stw r10,_LINK(r11)
Christophe Leroy02847482019-12-21 08:32:27 +000089 mfspr r12, SPRN_SPRG_THREAD
90 tovirt(r12, r12)
91 .if \handle_dar_dsisr
92 lwz r10, DAR(r12)
93 stw r10, _DAR(r11)
94 lwz r10, DSISR(r12)
95 stw r10, _DSISR(r11)
96 .endif
97 lwz r9, SRR1(r12)
98 lwz r12, SRR0(r12)
Christophe Leroy90f204b2019-04-30 12:38:56 +000099#ifdef CONFIG_40x
100 rlwinm r9,r9,0,14,12 /* clear MSR_WE (necessary?) */
Christophe Leroye464d922021-03-12 12:50:20 +0000101#elif defined(CONFIG_PPC_8xx)
102 mtspr SPRN_EID, r2 /* Set MSR_RI */
Christophe Leroy90f204b2019-04-30 12:38:56 +0000103#else
Christophe Leroy9b6150f2021-03-12 12:50:24 +0000104 li r10, MSR_KERNEL /* can take exceptions */
Christophe Leroy39bccfd2019-12-21 08:32:22 +0000105 mtmsr r10 /* (except for mach check in rtas) */
Christophe Leroy90f204b2019-04-30 12:38:56 +0000106#endif
Christophe Leroya3055972021-03-12 12:50:43 +0000107 COMMON_EXCEPTION_PROLOG_END \trapno
108_ASM_NOKPROBE_SYMBOL(\name\()_virt)
109.endm
110
111.macro COMMON_EXCEPTION_PROLOG_END trapno
112 stw r0,GPR0(r1)
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000113 lis r10,STACK_FRAME_REGS_MARKER@ha /* exception frame marker */
114 addi r10,r10,STACK_FRAME_REGS_MARKER@l
Christophe Leroya3055972021-03-12 12:50:43 +0000115 stw r10,8(r1)
Christophe Leroy719e7e22021-03-12 12:50:38 +0000116 li r10, \trapno
Christophe Leroya3055972021-03-12 12:50:43 +0000117 stw r10,_TRAP(r1)
118 SAVE_4GPRS(3, r1)
119 SAVE_2GPRS(7, r1)
Christophe Leroy16db5432021-03-12 12:50:44 +0000120 SAVE_NVGPRS(r1)
121 stw r2,GPR2(r1)
122 stw r12,_NIP(r1)
123 stw r9,_MSR(r1)
124 mfctr r10
125 mfspr r2,SPRN_SPRG_THREAD
126 stw r10,_CTR(r1)
127 tovirt(r2, r2)
128 mfspr r10,SPRN_XER
129 addi r2, r2, -THREAD
130 stw r10,_XER(r1)
131 addi r3,r1,STACK_FRAME_OVERHEAD
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000132.endm
133
Christophe Leroybce4c262021-03-12 12:50:39 +0000134.macro prepare_transfer_to_handler
Christophe Leroya2b3e092021-03-12 12:50:46 +0000135#ifdef CONFIG_PPC_BOOK3S_32
Christophe Leroybce4c262021-03-12 12:50:39 +0000136 bl prepare_transfer_to_handler
Christophe Leroya2b3e092021-03-12 12:50:46 +0000137#endif
Christophe Leroybce4c262021-03-12 12:50:39 +0000138.endm
139
Christophe Leroyb86fb882019-04-30 12:39:02 +0000140.macro SYSCALL_ENTRY trapno
Christophe Leroy9e270862020-01-31 11:34:54 +0000141 mfspr r9, SPRN_SRR1
Christophe Leroy2c59e512021-02-08 15:10:23 +0000142 mfspr r10, SPRN_SRR0
Christophe Leroy2c59e512021-02-08 15:10:23 +0000143 LOAD_REG_IMMEDIATE(r11, MSR_KERNEL) /* can take exceptions */
144 lis r12, 1f@h
145 ori r12, r12, 1f@l
146 mtspr SPRN_SRR1, r11
147 mtspr SPRN_SRR0, r12
148 mfspr r12,SPRN_SPRG_THREAD
Christophe Leroyd5c24392020-12-21 06:18:03 +0000149 mr r11, r1
150 lwz r1,TASK_STACK-THREAD(r12)
Christophe Leroy2c59e512021-02-08 15:10:23 +0000151 tovirt(r12, r12)
Christophe Leroyd5c24392020-12-21 06:18:03 +0000152 addi r1, r1, THREAD_SIZE - INT_FRAME_SIZE
Christophe Leroy76249dd2021-02-08 15:10:22 +0000153 rfi
1541:
Christophe Leroyd5c24392020-12-21 06:18:03 +0000155 stw r11,GPR1(r1)
156 stw r11,0(r1)
157 mr r11, r1
Christophe Leroy2c59e512021-02-08 15:10:23 +0000158 stw r10,_NIP(r11)
Christophe Leroy9e270862020-01-31 11:34:54 +0000159 mflr r10
160 stw r10, _LINK(r11)
Christophe Leroyc06f0af2020-01-31 11:34:55 +0000161 mfcr r10
162 rlwinm r10,r10,0,4,2 /* Clear SO bit in CR */
163 stw r10,_CCR(r11) /* save registers */
Christophe Leroyb86fb882019-04-30 12:39:02 +0000164#ifdef CONFIG_40x
165 rlwinm r9,r9,0,14,12 /* clear MSR_WE (necessary?) */
Christophe Leroyb86fb882019-04-30 12:39:02 +0000166#endif
167 lis r10,STACK_FRAME_REGS_MARKER@ha /* exception frame marker */
168 stw r2,GPR2(r11)
169 addi r10,r10,STACK_FRAME_REGS_MARKER@l
170 stw r9,_MSR(r11)
Christophe Leroyfbcee2e2021-02-08 15:10:32 +0000171 li r2, \trapno
Christophe Leroyb86fb882019-04-30 12:39:02 +0000172 stw r10,8(r11)
173 stw r2,_TRAP(r11)
174 SAVE_GPR(0, r11)
175 SAVE_4GPRS(3, r11)
176 SAVE_2GPRS(7, r11)
Christophe Leroyb86fb882019-04-30 12:39:02 +0000177 addi r2,r12,-THREAD
Christophe Leroy76249dd2021-02-08 15:10:22 +0000178 b transfer_to_syscall /* jump to handler */
Christophe Leroyb86fb882019-04-30 12:39:02 +0000179.endm
180
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000181/*
182 * Note: code which follows this uses cr0.eq (set if from kernel),
183 * r11, r12 (SRR0), and r9 (SRR1).
184 *
185 * Note2: once we have set r1 we are in a position to take exceptions
186 * again, and we could thus set MSR:RI at that point.
187 */
188
189/*
190 * Exception vectors.
191 */
192#ifdef CONFIG_PPC_BOOK3S
193#define START_EXCEPTION(n, label) \
Christophe Leroydc13b882021-03-12 12:50:29 +0000194 __HEAD; \
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000195 . = n; \
196 DO_KVM n; \
197label:
198
199#else
200#define START_EXCEPTION(n, label) \
Christophe Leroydc13b882021-03-12 12:50:29 +0000201 __HEAD; \
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000202 . = n; \
203label:
204
205#endif
206
Christophe Leroyacc142b2021-03-12 12:50:42 +0000207#define EXCEPTION(n, label, hdlr) \
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000208 START_EXCEPTION(n, label) \
Christophe Leroy719e7e22021-03-12 12:50:38 +0000209 EXCEPTION_PROLOG n label; \
Christophe Leroy4c0104a2021-03-12 12:50:41 +0000210 prepare_transfer_to_handler; \
211 bl hdlr; \
212 b interrupt_return
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000213
Christophe Leroy3978eb72019-12-21 08:32:29 +0000214.macro vmap_stack_overflow_exception
Christophe Leroydc13b882021-03-12 12:50:29 +0000215 __HEAD
Christophe Leroy5b5e5bc2021-03-12 12:50:27 +0000216vmap_stack_overflow:
Christophe Leroy3978eb72019-12-21 08:32:29 +0000217#ifdef CONFIG_SMP
Christophe Leroyda7bb432020-09-07 13:42:10 +0000218 mfspr r1, SPRN_SPRG_THREAD
219 lwz r1, TASK_CPU - THREAD(r1)
220 slwi r1, r1, 3
221 addis r1, r1, emergency_ctx@ha
Christophe Leroy3978eb72019-12-21 08:32:29 +0000222#else
Christophe Leroyda7bb432020-09-07 13:42:10 +0000223 lis r1, emergency_ctx@ha
Christophe Leroy3978eb72019-12-21 08:32:29 +0000224#endif
Christophe Leroyda7bb432020-09-07 13:42:10 +0000225 lwz r1, emergency_ctx@l(r1)
Christophe Leroya4719f52021-03-12 12:50:25 +0000226 addi r1, r1, THREAD_SIZE - INT_FRAME_SIZE
Christophe Leroy719e7e22021-03-12 12:50:38 +0000227 EXCEPTION_PROLOG_2 0 vmap_stack_overflow
Christophe Leroy4c0104a2021-03-12 12:50:41 +0000228 prepare_transfer_to_handler
229 bl stack_overflow_exception
230 b interrupt_return
Christophe Leroy3978eb72019-12-21 08:32:29 +0000231.endm
232
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000233#endif /* __HEAD_32_H__ */