blob: c3286260a7d1c280213cece8a4f47a49f0ac42da [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)
Nicholas Pigginaebd1fb2021-10-22 16:13:22 +1000118 SAVE_GPRS(3, 8, r1)
Christophe Leroy16db5432021-03-12 12:50:44 +0000119 SAVE_NVGPRS(r1)
120 stw r2,GPR2(r1)
121 stw r12,_NIP(r1)
122 stw r9,_MSR(r1)
123 mfctr r10
124 mfspr r2,SPRN_SPRG_THREAD
125 stw r10,_CTR(r1)
126 tovirt(r2, r2)
127 mfspr r10,SPRN_XER
128 addi r2, r2, -THREAD
129 stw r10,_XER(r1)
130 addi r3,r1,STACK_FRAME_OVERHEAD
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000131.endm
132
Christophe Leroybce4c262021-03-12 12:50:39 +0000133.macro prepare_transfer_to_handler
Christophe Leroya2b3e092021-03-12 12:50:46 +0000134#ifdef CONFIG_PPC_BOOK3S_32
Christophe Leroyb5efec02021-03-12 12:50:47 +0000135 andi. r12,r9,MSR_PR
136 bne 777f
Christophe Leroybce4c262021-03-12 12:50:39 +0000137 bl prepare_transfer_to_handler
Christophe Leroy526d4a42021-10-19 09:29:17 +0200138#ifdef CONFIG_PPC_KUEP
139 b 778f
140777:
141 bl __kuep_lock
142778:
143#endif
Christophe Leroyb5efec02021-03-12 12:50:47 +0000144777:
Christophe Leroya2b3e092021-03-12 12:50:46 +0000145#endif
Christophe Leroybce4c262021-03-12 12:50:39 +0000146.endm
147
Christophe Leroyb86fb882019-04-30 12:39:02 +0000148.macro SYSCALL_ENTRY trapno
Christophe Leroy9e270862020-01-31 11:34:54 +0000149 mfspr r9, SPRN_SRR1
Christophe Leroy10e92522021-06-04 14:54:12 +0000150 mfspr r12, SPRN_SRR0
Christophe Leroy2c59e512021-02-08 15:10:23 +0000151 LOAD_REG_IMMEDIATE(r11, MSR_KERNEL) /* can take exceptions */
Christophe Leroy10e92522021-06-04 14:54:12 +0000152 lis r10, 1f@h
153 ori r10, r10, 1f@l
Christophe Leroy2c59e512021-02-08 15:10:23 +0000154 mtspr SPRN_SRR1, r11
Christophe Leroy10e92522021-06-04 14:54:12 +0000155 mtspr SPRN_SRR0, r10
156 mfspr r10,SPRN_SPRG_THREAD
Christophe Leroyd5c24392020-12-21 06:18:03 +0000157 mr r11, r1
Christophe Leroy10e92522021-06-04 14:54:12 +0000158 lwz r1,TASK_STACK-THREAD(r10)
159 tovirt(r10, r10)
Christophe Leroyd5c24392020-12-21 06:18:03 +0000160 addi r1, r1, THREAD_SIZE - INT_FRAME_SIZE
Christophe Leroy76249dd2021-02-08 15:10:22 +0000161 rfi
1621:
Christophe Leroy275dcf22021-06-04 14:54:13 +0000163 stw r12,_NIP(r1)
Christophe Leroy10e92522021-06-04 14:54:12 +0000164 mfcr r12
165 rlwinm r12,r12,0,4,2 /* Clear SO bit in CR */
Christophe Leroy275dcf22021-06-04 14:54:13 +0000166 stw r12,_CCR(r1)
Christophe Leroy76249dd2021-02-08 15:10:22 +0000167 b transfer_to_syscall /* jump to handler */
Christophe Leroyb86fb882019-04-30 12:39:02 +0000168.endm
169
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000170/*
171 * Note: code which follows this uses cr0.eq (set if from kernel),
172 * r11, r12 (SRR0), and r9 (SRR1).
173 *
174 * Note2: once we have set r1 we are in a position to take exceptions
175 * again, and we could thus set MSR:RI at that point.
176 */
177
178/*
179 * Exception vectors.
180 */
181#ifdef CONFIG_PPC_BOOK3S
182#define START_EXCEPTION(n, label) \
Christophe Leroydc13b882021-03-12 12:50:29 +0000183 __HEAD; \
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000184 . = n; \
185 DO_KVM n; \
186label:
187
188#else
189#define START_EXCEPTION(n, label) \
Christophe Leroydc13b882021-03-12 12:50:29 +0000190 __HEAD; \
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000191 . = n; \
192label:
193
194#endif
195
Christophe Leroyacc142b2021-03-12 12:50:42 +0000196#define EXCEPTION(n, label, hdlr) \
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000197 START_EXCEPTION(n, label) \
Christophe Leroy719e7e22021-03-12 12:50:38 +0000198 EXCEPTION_PROLOG n label; \
Christophe Leroy4c0104a2021-03-12 12:50:41 +0000199 prepare_transfer_to_handler; \
200 bl hdlr; \
201 b interrupt_return
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000202
Christophe Leroy3978eb72019-12-21 08:32:29 +0000203.macro vmap_stack_overflow_exception
Christophe Leroydc13b882021-03-12 12:50:29 +0000204 __HEAD
Christophe Leroy5b5e5bc2021-03-12 12:50:27 +0000205vmap_stack_overflow:
Christophe Leroy3978eb72019-12-21 08:32:29 +0000206#ifdef CONFIG_SMP
Christophe Leroyda7bb432020-09-07 13:42:10 +0000207 mfspr r1, SPRN_SPRG_THREAD
208 lwz r1, TASK_CPU - THREAD(r1)
209 slwi r1, r1, 3
Christophe Leroy5bb60ea2021-11-18 10:39:53 +0100210 addis r1, r1, emergency_ctx-PAGE_OFFSET@ha
Christophe Leroy3978eb72019-12-21 08:32:29 +0000211#else
Christophe Leroy5bb60ea2021-11-18 10:39:53 +0100212 lis r1, emergency_ctx-PAGE_OFFSET@ha
Christophe Leroy3978eb72019-12-21 08:32:29 +0000213#endif
Christophe Leroy5bb60ea2021-11-18 10:39:53 +0100214 lwz r1, emergency_ctx-PAGE_OFFSET@l(r1)
Christophe Leroya4719f52021-03-12 12:50:25 +0000215 addi r1, r1, THREAD_SIZE - INT_FRAME_SIZE
Christophe Leroy719e7e22021-03-12 12:50:38 +0000216 EXCEPTION_PROLOG_2 0 vmap_stack_overflow
Christophe Leroy4c0104a2021-03-12 12:50:41 +0000217 prepare_transfer_to_handler
218 bl stack_overflow_exception
219 b interrupt_return
Christophe Leroy3978eb72019-12-21 08:32:29 +0000220.endm
221
Christophe Leroy8a23fdec2019-04-30 12:38:50 +0000222#endif /* __HEAD_32_H__ */