Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | // SPDX-License-Identifier: GPL-2.0-or-later /* align.c - handle alignment exceptions for the Power PC. * * Copyright (c) 1996 Paul Mackerras <paulus@cs.anu.edu.au> * Copyright (c) 1998-1999 TiVo, Inc. * PowerPC 403GCX modifications. * Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu> * PowerPC 403GCX/405GP modifications. * Copyright (c) 2001-2002 PPC64 team, IBM Corp * 64-bit and Power4 support * Copyright (c) 2005 Benjamin Herrenschmidt, IBM Corp * <benh@kernel.crashing.org> * Merge ppc32 and ppc64 implementations */ #include <linux/kernel.h> #include <linux/mm.h> #include <asm/processor.h> #include <linux/uaccess.h> #include <asm/cache.h> #include <asm/cputable.h> #include <asm/emulated_ops.h> #include <asm/switch_to.h> #include <asm/disassemble.h> #include <asm/cpu_has_feature.h> #include <asm/sstep.h> #include <asm/inst.h> struct aligninfo { unsigned char len; unsigned char flags; }; #define INVALID { 0, 0 } /* Bits in the flags field */ #define LD 0 /* load */ #define ST 1 /* store */ #define SE 2 /* sign-extend value, or FP ld/st as word */ #define SW 0x20 /* byte swap */ #define E4 0x40 /* SPE endianness is word */ #define E8 0x80 /* SPE endianness is double word */ #ifdef CONFIG_SPE static struct aligninfo spe_aligninfo[32] = { { 8, LD+E8 }, /* 0 00 00: evldd[x] */ { 8, LD+E4 }, /* 0 00 01: evldw[x] */ { 8, LD }, /* 0 00 10: evldh[x] */ INVALID, /* 0 00 11 */ { 2, LD }, /* 0 01 00: evlhhesplat[x] */ INVALID, /* 0 01 01 */ { 2, LD }, /* 0 01 10: evlhhousplat[x] */ { 2, LD+SE }, /* 0 01 11: evlhhossplat[x] */ { 4, LD }, /* 0 10 00: evlwhe[x] */ INVALID, /* 0 10 01 */ { 4, LD }, /* 0 10 10: evlwhou[x] */ { 4, LD+SE }, /* 0 10 11: evlwhos[x] */ { 4, LD+E4 }, /* 0 11 00: evlwwsplat[x] */ INVALID, /* 0 11 01 */ { 4, LD }, /* 0 11 10: evlwhsplat[x] */ INVALID, /* 0 11 11 */ { 8, ST+E8 }, /* 1 00 00: evstdd[x] */ { 8, ST+E4 }, /* 1 00 01: evstdw[x] */ { 8, ST }, /* 1 00 10: evstdh[x] */ INVALID, /* 1 00 11 */ INVALID, /* 1 01 00 */ INVALID, /* 1 01 01 */ INVALID, /* 1 01 10 */ INVALID, /* 1 01 11 */ { 4, ST }, /* 1 10 00: evstwhe[x] */ INVALID, /* 1 10 01 */ { 4, ST }, /* 1 10 10: evstwho[x] */ INVALID, /* 1 10 11 */ { 4, ST+E4 }, /* 1 11 00: evstwwe[x] */ INVALID, /* 1 11 01 */ { 4, ST+E4 }, /* 1 11 10: evstwwo[x] */ INVALID, /* 1 11 11 */ }; #define EVLDD 0x00 #define EVLDW 0x01 #define EVLDH 0x02 #define EVLHHESPLAT 0x04 #define EVLHHOUSPLAT 0x06 #define EVLHHOSSPLAT 0x07 #define EVLWHE 0x08 #define EVLWHOU 0x0A #define EVLWHOS 0x0B #define EVLWWSPLAT 0x0C #define EVLWHSPLAT 0x0E #define EVSTDD 0x10 #define EVSTDW 0x11 #define EVSTDH 0x12 #define EVSTWHE 0x18 #define EVSTWHO 0x1A #define EVSTWWE 0x1C #define EVSTWWO 0x1E /* * Emulate SPE loads and stores. * Only Book-E has these instructions, and it does true little-endian, * so we don't need the address swizzling. */ static int emulate_spe(struct pt_regs *regs, unsigned int reg, ppc_inst_t ppc_instr) { union { u64 ll; u32 w[2]; u16 h[4]; u8 v[8]; } data, temp; unsigned char __user *p, *addr; unsigned long *evr = ¤t->thread.evr[reg]; unsigned int nb, flags, instr; instr = ppc_inst_val(ppc_instr); instr = (instr >> 1) & 0x1f; /* DAR has the operand effective address */ addr = (unsigned char __user *)regs->dar; nb = spe_aligninfo[instr].len; flags = spe_aligninfo[instr].flags; /* userland only */ if (unlikely(!user_mode(regs))) return 0; flush_spe_to_thread(current); /* If we are loading, get the data from user space, else * get it from register values */ if (flags & ST) { data.ll = 0; switch (instr) { case EVSTDD: case EVSTDW: case EVSTDH: data.w[0] = *evr; data.w[1] = regs->gpr[reg]; break; case EVSTWHE: data.h[2] = *evr >> 16; data.h[3] = regs->gpr[reg] >> 16; break; case EVSTWHO: data.h[2] = *evr & 0xffff; data.h[3] = regs->gpr[reg] & 0xffff; break; case EVSTWWE: data.w[1] = *evr; break; case EVSTWWO: data.w[1] = regs->gpr[reg]; break; default: return -EINVAL; } } else { temp.ll = data.ll = 0; p = addr; if (!user_read_access_begin(addr, nb)) return -EFAULT; switch (nb) { case 8: unsafe_get_user(temp.v[0], p++, Efault_read); unsafe_get_user(temp.v[1], p++, Efault_read); unsafe_get_user(temp.v[2], p++, Efault_read); unsafe_get_user(temp.v[3], p++, Efault_read); fallthrough; case 4: unsafe_get_user(temp.v[4], p++, Efault_read); unsafe_get_user(temp.v[5], p++, Efault_read); fallthrough; case 2: unsafe_get_user(temp.v[6], p++, Efault_read); unsafe_get_user(temp.v[7], p++, Efault_read); } user_read_access_end(); switch (instr) { case EVLDD: case EVLDW: case EVLDH: data.ll = temp.ll; break; case EVLHHESPLAT: data.h[0] = temp.h[3]; data.h[2] = temp.h[3]; break; case EVLHHOUSPLAT: case EVLHHOSSPLAT: data.h[1] = temp.h[3]; data.h[3] = temp.h[3]; break; case EVLWHE: data.h[0] = temp.h[2]; data.h[2] = temp.h[3]; break; case EVLWHOU: case EVLWHOS: data.h[1] = temp.h[2]; data.h[3] = temp.h[3]; break; case EVLWWSPLAT: data.w[0] = temp.w[1]; data.w[1] = temp.w[1]; break; case EVLWHSPLAT: data.h[0] = temp.h[2]; data.h[1] = temp.h[2]; data.h[2] = temp.h[3]; data.h[3] = temp.h[3]; break; default: return -EINVAL; } } if (flags & SW) { switch (flags & 0xf0) { case E8: data.ll = swab64(data.ll); break; case E4: data.w[0] = swab32(data.w[0]); data.w[1] = swab32(data.w[1]); break; /* Its half word endian */ default: data.h[0] = swab16(data.h[0]); data.h[1] = swab16(data.h[1]); data.h[2] = swab16(data.h[2]); data.h[3] = swab16(data.h[3]); break; } } if (flags & SE) { data.w[0] = (s16)data.h[1]; data.w[1] = (s16)data.h[3]; } /* Store result to memory or update registers */ if (flags & ST) { p = addr; if (!user_write_access_begin(addr, nb)) return -EFAULT; switch (nb) { case 8: unsafe_put_user(data.v[0], p++, Efault_write); unsafe_put_user(data.v[1], p++, Efault_write); unsafe_put_user(data.v[2], p++, Efault_write); unsafe_put_user(data.v[3], p++, Efault_write); fallthrough; case 4: unsafe_put_user(data.v[4], p++, Efault_write); unsafe_put_user(data.v[5], p++, Efault_write); fallthrough; case 2: unsafe_put_user(data.v[6], p++, Efault_write); unsafe_put_user(data.v[7], p++, Efault_write); } user_write_access_end(); } else { *evr = data.w[0]; regs->gpr[reg] = data.w[1]; } return 1; Efault_read: user_read_access_end(); return -EFAULT; Efault_write: user_write_access_end(); return -EFAULT; } #endif /* CONFIG_SPE */ /* * Called on alignment exception. Attempts to fixup * * Return 1 on success * Return 0 if unable to handle the interrupt * Return -EFAULT if data address is bad * Other negative return values indicate that the instruction can't * be emulated, and the process should be given a SIGBUS. */ int fix_alignment(struct pt_regs *regs) { ppc_inst_t instr; struct instruction_op op; int r, type; if (is_kernel_addr(regs->nip)) r = copy_inst_from_kernel_nofault(&instr, (void *)regs->nip); else r = __get_user_instr(instr, (void __user *)regs->nip); if (unlikely(r)) return -EFAULT; if ((regs->msr & MSR_LE) != (MSR_KERNEL & MSR_LE)) { /* We don't handle PPC little-endian any more... */ if (cpu_has_feature(CPU_FTR_PPC_LE)) return -EIO; instr = ppc_inst_swab(instr); } #ifdef CONFIG_SPE if (ppc_inst_primary_opcode(instr) == 0x4) { int reg = (ppc_inst_val(instr) >> 21) & 0x1f; PPC_WARN_ALIGNMENT(spe, regs); return emulate_spe(regs, reg, instr); } #endif /* * ISA 3.0 (such as P9) copy, copy_first, paste and paste_last alignment * check. * * Send a SIGBUS to the process that caused the fault. * * We do not emulate these because paste may contain additional metadata * when pasting to a co-processor. Furthermore, paste_last is the * synchronisation point for preceding copy/paste sequences. */ if ((ppc_inst_val(instr) & 0xfc0006fe) == (PPC_INST_COPY & 0xfc0006fe)) return -EIO; r = analyse_instr(&op, regs, instr); if (r < 0) return -EINVAL; type = GETTYPE(op.type); if (!OP_IS_LOAD_STORE(type)) { if (op.type != CACHEOP + DCBZ) return -EINVAL; PPC_WARN_ALIGNMENT(dcbz, regs); WARN_ON_ONCE(!user_mode(regs)); r = emulate_dcbz(op.ea, regs); } else { if (type == LARX || type == STCX) return -EIO; PPC_WARN_ALIGNMENT(unaligned, regs); r = emulate_loadstore(regs, &op); } if (!r) return 1; return r; } |