blob: 53e268fcae45e0bcd6e06cbc78d405882818251d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mm/alignment.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 * Modifications for ARM processor (c) 1995-2001 Russell King
Simon Arlott6cbdc8c2007-05-11 20:40:30 +01006 * Thumb alignment fault fixups (c) 2004 MontaVista Software, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * - Adapted from gdb/sim/arm/thumbemu.c -- Thumb instruction emulation.
8 * Copyright (C) 1996, Cygnus Software Technologies Ltd.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
Russell Kingd944d542010-02-20 16:13:29 +000014#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/compiler.h>
16#include <linux/kernel.h>
17#include <linux/errno.h>
18#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/proc_fs.h>
Alexey Dobriyanb7072c62010-05-02 12:40:35 +030020#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/init.h>
Russell King87c52572008-11-29 17:35:51 +000022#include <linux/sched.h>
Russell King33fa9b12008-09-06 11:35:55 +010023#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Russell King15d07dc2012-03-28 18:30:01 +010025#include <asm/cp15.h>
David Howells9f97da72012-03-28 18:30:01 +010026#include <asm/system_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/unaligned.h>
Ben Dooks8592edf2013-07-18 21:10:56 +010028#include <asm/opcodes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include "fault.h"
Russell Kingb4b20ad82014-04-13 18:57:29 +010031#include "mm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/*
34 * 32-bit misaligned trap handler (c) 1998 San Mehat (CCC) -July 1998
35 * /proc/sys/debug/alignment, modified and integrated into
36 * Linux 2.1 by Russell King
37 *
38 * Speed optimisations and better fault handling by Russell King.
39 *
40 * *** NOTE ***
41 * This code is not portable to processors with late data abort handling.
42 */
43#define CODING_BITS(i) (i & 0x0e000000)
44
45#define LDST_I_BIT(i) (i & (1 << 26)) /* Immediate constant */
46#define LDST_P_BIT(i) (i & (1 << 24)) /* Preindex */
47#define LDST_U_BIT(i) (i & (1 << 23)) /* Add offset */
48#define LDST_W_BIT(i) (i & (1 << 21)) /* Writeback */
49#define LDST_L_BIT(i) (i & (1 << 20)) /* Load */
50
51#define LDST_P_EQ_U(i) ((((i) ^ ((i) >> 1)) & (1 << 23)) == 0)
52
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +010053#define LDSTHD_I_BIT(i) (i & (1 << 22)) /* double/half-word immed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define LDM_S_BIT(i) (i & (1 << 22)) /* write CPSR from SPSR */
55
56#define RN_BITS(i) ((i >> 16) & 15) /* Rn */
57#define RD_BITS(i) ((i >> 12) & 15) /* Rd */
58#define RM_BITS(i) (i & 15) /* Rm */
59
60#define REGMASK_BITS(i) (i & 0xffff)
61#define OFFSET_BITS(i) (i & 0x0fff)
62
63#define IS_SHIFT(i) (i & 0x0ff0)
64#define SHIFT_BITS(i) ((i >> 7) & 0x1f)
65#define SHIFT_TYPE(i) (i & 0x60)
66#define SHIFT_LSL 0x00
67#define SHIFT_LSR 0x20
68#define SHIFT_ASR 0x40
69#define SHIFT_RORRRX 0x60
70
George G. Davisc2860d42009-06-04 17:16:04 +010071#define BAD_INSTR 0xdeadc0de
72
73/* Thumb-2 32 bit format per ARMv7 DDI0406A A6.3, either f800h,e800h,f800h */
74#define IS_T32(hi16) \
75 (((hi16) & 0xe000) == 0xe000 && ((hi16) & 0x1800))
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static unsigned long ai_user;
78static unsigned long ai_sys;
79static unsigned long ai_skipped;
80static unsigned long ai_half;
81static unsigned long ai_word;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +010082static unsigned long ai_dword;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static unsigned long ai_multi;
84static int ai_usermode;
85
Russell Kingd944d542010-02-20 16:13:29 +000086core_param(alignment, ai_usermode, int, 0600);
87
Russell Kingbaa745a2008-12-07 09:44:55 +000088#define UM_WARN (1 << 0)
89#define UM_FIXUP (1 << 1)
90#define UM_SIGNAL (1 << 2)
91
Dave Martin088c01f2011-07-28 14:28:52 +010092/* Return true if and only if the ARMv6 unaligned access model is in use. */
93static bool cpu_is_v6_unaligned(void)
94{
Russell King4585eaf2014-04-13 18:47:34 +010095 return cpu_architecture() >= CPU_ARCH_ARMv6 && get_cr() & CR_U;
Dave Martin088c01f2011-07-28 14:28:52 +010096}
97
98static int safe_usermode(int new_usermode, bool warn)
99{
100 /*
101 * ARMv6 and later CPUs can perform unaligned accesses for
102 * most single load and store instructions up to word size.
103 * LDM, STM, LDRD and STRD still need to be handled.
104 *
105 * Ignoring the alignment fault is not an option on these
106 * CPUs since we spin re-faulting the instruction without
107 * making any progress.
108 */
109 if (cpu_is_v6_unaligned() && !(new_usermode & (UM_FIXUP | UM_SIGNAL))) {
110 new_usermode |= UM_FIXUP;
111
112 if (warn)
113 printk(KERN_WARNING "alignment: ignoring faults is unsafe on this CPU. Defaulting to fixup mode.\n");
114 }
115
116 return new_usermode;
117}
118
Arnd Bergmannffc660c2011-08-27 20:01:07 +0200119#ifdef CONFIG_PROC_FS
120static const char *usermode_action[] = {
121 "ignored",
122 "warn",
123 "fixup",
124 "fixup+warn",
125 "signal",
126 "signal+warn"
127};
128
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300129static int alignment_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300131 seq_printf(m, "User:\t\t%lu\n", ai_user);
132 seq_printf(m, "System:\t\t%lu\n", ai_sys);
133 seq_printf(m, "Skipped:\t%lu\n", ai_skipped);
134 seq_printf(m, "Half:\t\t%lu\n", ai_half);
135 seq_printf(m, "Word:\t\t%lu\n", ai_word);
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100136 if (cpu_architecture() >= CPU_ARCH_ARMv5TE)
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300137 seq_printf(m, "DWord:\t\t%lu\n", ai_dword);
138 seq_printf(m, "Multi:\t\t%lu\n", ai_multi);
139 seq_printf(m, "User faults:\t%i (%s)\n", ai_usermode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 usermode_action[ai_usermode]);
141
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300145static int alignment_proc_open(struct inode *inode, struct file *file)
146{
147 return single_open(file, alignment_proc_show, NULL);
148}
149
150static ssize_t alignment_proc_write(struct file *file, const char __user *buffer,
151 size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 char mode;
154
155 if (count > 0) {
156 if (get_user(mode, buffer))
157 return -EFAULT;
158 if (mode >= '0' && mode <= '5')
Dave Martin088c01f2011-07-28 14:28:52 +0100159 ai_usermode = safe_usermode(mode - '0', true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161 return count;
162}
163
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300164static const struct file_operations alignment_proc_fops = {
165 .open = alignment_proc_open,
166 .read = seq_read,
167 .llseek = seq_lseek,
168 .release = single_release,
169 .write = alignment_proc_write,
170};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#endif /* CONFIG_PROC_FS */
172
173union offset_union {
174 unsigned long un;
175 signed long sn;
176};
177
178#define TYPE_ERROR 0
179#define TYPE_FAULT 1
180#define TYPE_LDST 2
181#define TYPE_DONE 3
182
183#ifdef __ARMEB__
184#define BE 1
185#define FIRST_BYTE_16 "mov %1, %1, ror #8\n"
186#define FIRST_BYTE_32 "mov %1, %1, ror #24\n"
187#define NEXT_BYTE "ror #24"
188#else
189#define BE 0
190#define FIRST_BYTE_16
191#define FIRST_BYTE_32
192#define NEXT_BYTE "lsr #8"
193#endif
194
195#define __get8_unaligned_check(ins,val,addr,err) \
196 __asm__( \
Catalin Marinas347c8b72009-07-24 12:32:56 +0100197 ARM( "1: "ins" %1, [%2], #1\n" ) \
198 THUMB( "1: "ins" %1, [%2]\n" ) \
199 THUMB( " add %2, %2, #1\n" ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 "2:\n" \
Russell King42604152010-04-19 10:15:03 +0100201 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 " .align 2\n" \
203 "3: mov %0, #1\n" \
204 " b 2b\n" \
Russell King42604152010-04-19 10:15:03 +0100205 " .popsection\n" \
206 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 " .align 3\n" \
208 " .long 1b, 3b\n" \
Russell King42604152010-04-19 10:15:03 +0100209 " .popsection\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 : "=r" (err), "=&r" (val), "=r" (addr) \
211 : "0" (err), "2" (addr))
212
213#define __get16_unaligned_check(ins,val,addr) \
214 do { \
215 unsigned int err = 0, v, a = addr; \
216 __get8_unaligned_check(ins,v,a,err); \
217 val = v << ((BE) ? 8 : 0); \
218 __get8_unaligned_check(ins,v,a,err); \
219 val |= v << ((BE) ? 0 : 8); \
220 if (err) \
221 goto fault; \
222 } while (0)
223
224#define get16_unaligned_check(val,addr) \
225 __get16_unaligned_check("ldrb",val,addr)
226
227#define get16t_unaligned_check(val,addr) \
228 __get16_unaligned_check("ldrbt",val,addr)
229
230#define __get32_unaligned_check(ins,val,addr) \
231 do { \
232 unsigned int err = 0, v, a = addr; \
233 __get8_unaligned_check(ins,v,a,err); \
234 val = v << ((BE) ? 24 : 0); \
235 __get8_unaligned_check(ins,v,a,err); \
236 val |= v << ((BE) ? 16 : 8); \
237 __get8_unaligned_check(ins,v,a,err); \
238 val |= v << ((BE) ? 8 : 16); \
239 __get8_unaligned_check(ins,v,a,err); \
240 val |= v << ((BE) ? 0 : 24); \
241 if (err) \
242 goto fault; \
243 } while (0)
244
245#define get32_unaligned_check(val,addr) \
246 __get32_unaligned_check("ldrb",val,addr)
247
248#define get32t_unaligned_check(val,addr) \
249 __get32_unaligned_check("ldrbt",val,addr)
250
251#define __put16_unaligned_check(ins,val,addr) \
252 do { \
253 unsigned int err = 0, v = val, a = addr; \
254 __asm__( FIRST_BYTE_16 \
Catalin Marinas347c8b72009-07-24 12:32:56 +0100255 ARM( "1: "ins" %1, [%2], #1\n" ) \
256 THUMB( "1: "ins" %1, [%2]\n" ) \
257 THUMB( " add %2, %2, #1\n" ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 " mov %1, %1, "NEXT_BYTE"\n" \
259 "2: "ins" %1, [%2]\n" \
260 "3:\n" \
Russell King42604152010-04-19 10:15:03 +0100261 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 " .align 2\n" \
263 "4: mov %0, #1\n" \
264 " b 3b\n" \
Russell King42604152010-04-19 10:15:03 +0100265 " .popsection\n" \
266 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 " .align 3\n" \
268 " .long 1b, 4b\n" \
269 " .long 2b, 4b\n" \
Russell King42604152010-04-19 10:15:03 +0100270 " .popsection\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 : "=r" (err), "=&r" (v), "=&r" (a) \
272 : "0" (err), "1" (v), "2" (a)); \
273 if (err) \
274 goto fault; \
275 } while (0)
276
277#define put16_unaligned_check(val,addr) \
278 __put16_unaligned_check("strb",val,addr)
279
280#define put16t_unaligned_check(val,addr) \
281 __put16_unaligned_check("strbt",val,addr)
282
283#define __put32_unaligned_check(ins,val,addr) \
284 do { \
285 unsigned int err = 0, v = val, a = addr; \
286 __asm__( FIRST_BYTE_32 \
Catalin Marinas347c8b72009-07-24 12:32:56 +0100287 ARM( "1: "ins" %1, [%2], #1\n" ) \
288 THUMB( "1: "ins" %1, [%2]\n" ) \
289 THUMB( " add %2, %2, #1\n" ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 " mov %1, %1, "NEXT_BYTE"\n" \
Catalin Marinas347c8b72009-07-24 12:32:56 +0100291 ARM( "2: "ins" %1, [%2], #1\n" ) \
292 THUMB( "2: "ins" %1, [%2]\n" ) \
293 THUMB( " add %2, %2, #1\n" ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 " mov %1, %1, "NEXT_BYTE"\n" \
Catalin Marinas347c8b72009-07-24 12:32:56 +0100295 ARM( "3: "ins" %1, [%2], #1\n" ) \
296 THUMB( "3: "ins" %1, [%2]\n" ) \
297 THUMB( " add %2, %2, #1\n" ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 " mov %1, %1, "NEXT_BYTE"\n" \
299 "4: "ins" %1, [%2]\n" \
300 "5:\n" \
Russell King42604152010-04-19 10:15:03 +0100301 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 " .align 2\n" \
303 "6: mov %0, #1\n" \
304 " b 5b\n" \
Russell King42604152010-04-19 10:15:03 +0100305 " .popsection\n" \
306 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 " .align 3\n" \
308 " .long 1b, 6b\n" \
309 " .long 2b, 6b\n" \
310 " .long 3b, 6b\n" \
311 " .long 4b, 6b\n" \
Russell King42604152010-04-19 10:15:03 +0100312 " .popsection\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 : "=r" (err), "=&r" (v), "=&r" (a) \
314 : "0" (err), "1" (v), "2" (a)); \
315 if (err) \
316 goto fault; \
317 } while (0)
318
George G. Davis737d0bb2005-10-12 19:58:10 +0100319#define put32_unaligned_check(val,addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 __put32_unaligned_check("strb", val, addr)
321
322#define put32t_unaligned_check(val,addr) \
323 __put32_unaligned_check("strbt", val, addr)
324
325static void
326do_alignment_finish_ldst(unsigned long addr, unsigned long instr, struct pt_regs *regs, union offset_union offset)
327{
328 if (!LDST_U_BIT(instr))
329 offset.un = -offset.un;
330
331 if (!LDST_P_BIT(instr))
332 addr += offset.un;
333
334 if (!LDST_P_BIT(instr) || LDST_W_BIT(instr))
335 regs->uregs[RN_BITS(instr)] = addr;
336}
337
338static int
339do_alignment_ldrhstrh(unsigned long addr, unsigned long instr, struct pt_regs *regs)
340{
341 unsigned int rd = RD_BITS(instr);
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 ai_half += 1;
344
345 if (user_mode(regs))
346 goto user;
347
348 if (LDST_L_BIT(instr)) {
349 unsigned long val;
350 get16_unaligned_check(val, addr);
351
352 /* signed half-word? */
353 if (instr & 0x40)
354 val = (signed long)((signed short) val);
355
356 regs->uregs[rd] = val;
357 } else
358 put16_unaligned_check(regs->uregs[rd], addr);
359
360 return TYPE_LDST;
361
362 user:
George G. Davis737d0bb2005-10-12 19:58:10 +0100363 if (LDST_L_BIT(instr)) {
364 unsigned long val;
365 get16t_unaligned_check(val, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
George G. Davis737d0bb2005-10-12 19:58:10 +0100367 /* signed half-word? */
368 if (instr & 0x40)
369 val = (signed long)((signed short) val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
George G. Davis737d0bb2005-10-12 19:58:10 +0100371 regs->uregs[rd] = val;
372 } else
373 put16t_unaligned_check(regs->uregs[rd], addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
George G. Davis737d0bb2005-10-12 19:58:10 +0100375 return TYPE_LDST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100377 fault:
378 return TYPE_FAULT;
379}
380
381static int
382do_alignment_ldrdstrd(unsigned long addr, unsigned long instr,
383 struct pt_regs *regs)
384{
385 unsigned int rd = RD_BITS(instr);
George G. Davisc2860d42009-06-04 17:16:04 +0100386 unsigned int rd2;
387 int load;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100388
George G. Davisc2860d42009-06-04 17:16:04 +0100389 if ((instr & 0xfe000000) == 0xe8000000) {
390 /* ARMv7 Thumb-2 32-bit LDRD/STRD */
391 rd2 = (instr >> 8) & 0xf;
392 load = !!(LDST_L_BIT(instr));
393 } else if (((rd & 1) == 1) || (rd == 14))
George G. Davis19da83f2005-10-10 10:17:44 +0100394 goto bad;
George G. Davisc2860d42009-06-04 17:16:04 +0100395 else {
396 load = ((instr & 0xf0) == 0xd0);
397 rd2 = rd + 1;
398 }
George G. Davis19da83f2005-10-10 10:17:44 +0100399
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100400 ai_dword += 1;
401
402 if (user_mode(regs))
403 goto user;
404
George G. Davisc2860d42009-06-04 17:16:04 +0100405 if (load) {
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100406 unsigned long val;
407 get32_unaligned_check(val, addr);
408 regs->uregs[rd] = val;
George G. Davis737d0bb2005-10-12 19:58:10 +0100409 get32_unaligned_check(val, addr + 4);
George G. Davisc2860d42009-06-04 17:16:04 +0100410 regs->uregs[rd2] = val;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100411 } else {
412 put32_unaligned_check(regs->uregs[rd], addr);
George G. Davisc2860d42009-06-04 17:16:04 +0100413 put32_unaligned_check(regs->uregs[rd2], addr + 4);
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100414 }
415
416 return TYPE_LDST;
417
418 user:
George G. Davisc2860d42009-06-04 17:16:04 +0100419 if (load) {
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100420 unsigned long val;
421 get32t_unaligned_check(val, addr);
422 regs->uregs[rd] = val;
George G. Davis737d0bb2005-10-12 19:58:10 +0100423 get32t_unaligned_check(val, addr + 4);
George G. Davisc2860d42009-06-04 17:16:04 +0100424 regs->uregs[rd2] = val;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100425 } else {
426 put32t_unaligned_check(regs->uregs[rd], addr);
George G. Davisc2860d42009-06-04 17:16:04 +0100427 put32t_unaligned_check(regs->uregs[rd2], addr + 4);
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100428 }
429
430 return TYPE_LDST;
George G. Davis19da83f2005-10-10 10:17:44 +0100431 bad:
432 return TYPE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 fault:
434 return TYPE_FAULT;
435}
436
437static int
438do_alignment_ldrstr(unsigned long addr, unsigned long instr, struct pt_regs *regs)
439{
440 unsigned int rd = RD_BITS(instr);
441
442 ai_word += 1;
443
444 if ((!LDST_P_BIT(instr) && LDST_W_BIT(instr)) || user_mode(regs))
445 goto trans;
446
447 if (LDST_L_BIT(instr)) {
448 unsigned int val;
449 get32_unaligned_check(val, addr);
450 regs->uregs[rd] = val;
451 } else
452 put32_unaligned_check(regs->uregs[rd], addr);
453 return TYPE_LDST;
454
455 trans:
456 if (LDST_L_BIT(instr)) {
457 unsigned int val;
458 get32t_unaligned_check(val, addr);
459 regs->uregs[rd] = val;
460 } else
461 put32t_unaligned_check(regs->uregs[rd], addr);
462 return TYPE_LDST;
463
464 fault:
465 return TYPE_FAULT;
466}
467
468/*
469 * LDM/STM alignment handler.
470 *
471 * There are 4 variants of this instruction:
472 *
473 * B = rn pointer before instruction, A = rn pointer after instruction
474 * ------ increasing address ----->
475 * | | r0 | r1 | ... | rx | |
476 * PU = 01 B A
477 * PU = 11 B A
478 * PU = 00 A B
479 * PU = 10 A B
480 */
481static int
482do_alignment_ldmstm(unsigned long addr, unsigned long instr, struct pt_regs *regs)
483{
484 unsigned int rd, rn, correction, nr_regs, regbits;
485 unsigned long eaddr, newaddr;
486
487 if (LDM_S_BIT(instr))
488 goto bad;
489
490 correction = 4; /* processor implementation defined */
491 regs->ARM_pc += correction;
492
493 ai_multi += 1;
494
495 /* count the number of registers in the mask to be transferred */
496 nr_regs = hweight16(REGMASK_BITS(instr)) * 4;
497
498 rn = RN_BITS(instr);
499 newaddr = eaddr = regs->uregs[rn];
500
501 if (!LDST_U_BIT(instr))
502 nr_regs = -nr_regs;
503 newaddr += nr_regs;
504 if (!LDST_U_BIT(instr))
505 eaddr = newaddr;
506
507 if (LDST_P_EQ_U(instr)) /* U = P */
508 eaddr += 4;
509
George G. Davis737d0bb2005-10-12 19:58:10 +0100510 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * For alignment faults on the ARM922T/ARM920T the MMU makes
512 * the FSR (and hence addr) equal to the updated base address
513 * of the multiple access rather than the restored value.
514 * Switch this message off if we've got a ARM92[02], otherwise
515 * [ls]dm alignment faults are noisy!
516 */
517#if !(defined CONFIG_CPU_ARM922T) && !(defined CONFIG_CPU_ARM920T)
518 /*
519 * This is a "hint" - we already have eaddr worked out by the
520 * processor for us.
521 */
522 if (addr != eaddr) {
523 printk(KERN_ERR "LDMSTM: PC = %08lx, instr = %08lx, "
524 "addr = %08lx, eaddr = %08lx\n",
525 instruction_pointer(regs), instr, addr, eaddr);
526 show_regs(regs);
527 }
528#endif
529
530 if (user_mode(regs)) {
531 for (regbits = REGMASK_BITS(instr), rd = 0; regbits;
532 regbits >>= 1, rd += 1)
533 if (regbits & 1) {
534 if (LDST_L_BIT(instr)) {
535 unsigned int val;
536 get32t_unaligned_check(val, eaddr);
537 regs->uregs[rd] = val;
538 } else
539 put32t_unaligned_check(regs->uregs[rd], eaddr);
540 eaddr += 4;
541 }
542 } else {
543 for (regbits = REGMASK_BITS(instr), rd = 0; regbits;
544 regbits >>= 1, rd += 1)
545 if (regbits & 1) {
546 if (LDST_L_BIT(instr)) {
547 unsigned int val;
548 get32_unaligned_check(val, eaddr);
549 regs->uregs[rd] = val;
550 } else
551 put32_unaligned_check(regs->uregs[rd], eaddr);
552 eaddr += 4;
553 }
554 }
555
556 if (LDST_W_BIT(instr))
557 regs->uregs[rn] = newaddr;
558 if (!LDST_L_BIT(instr) || !(REGMASK_BITS(instr) & (1 << 15)))
559 regs->ARM_pc -= correction;
560 return TYPE_DONE;
561
562fault:
563 regs->ARM_pc -= correction;
564 return TYPE_FAULT;
565
566bad:
567 printk(KERN_ERR "Alignment trap: not handling ldm with s-bit set\n");
568 return TYPE_ERROR;
569}
570
571/*
572 * Convert Thumb ld/st instruction forms to equivalent ARM instructions so
573 * we can reuse ARM userland alignment fault fixups for Thumb.
574 *
575 * This implementation was initially based on the algorithm found in
576 * gdb/sim/arm/thumbemu.c. It is basically just a code reduction of same
577 * to convert only Thumb ld/st instruction forms to equivalent ARM forms.
578 *
579 * NOTES:
580 * 1. Comments below refer to ARM ARM DDI0100E Thumb Instruction sections.
581 * 2. If for some reason we're passed an non-ld/st Thumb instruction to
582 * decode, we return 0xdeadc0de. This should never happen under normal
583 * circumstances but if it does, we've got other problems to deal with
584 * elsewhere and we obviously can't fix those problems here.
585 */
586
587static unsigned long
588thumb2arm(u16 tinstr)
589{
590 u32 L = (tinstr & (1<<11)) >> 11;
591
592 switch ((tinstr & 0xf800) >> 11) {
593 /* 6.5.1 Format 1: */
594 case 0x6000 >> 11: /* 7.1.52 STR(1) */
595 case 0x6800 >> 11: /* 7.1.26 LDR(1) */
596 case 0x7000 >> 11: /* 7.1.55 STRB(1) */
597 case 0x7800 >> 11: /* 7.1.30 LDRB(1) */
598 return 0xe5800000 |
599 ((tinstr & (1<<12)) << (22-12)) | /* fixup */
600 (L<<20) | /* L==1? */
601 ((tinstr & (7<<0)) << (12-0)) | /* Rd */
602 ((tinstr & (7<<3)) << (16-3)) | /* Rn */
603 ((tinstr & (31<<6)) >> /* immed_5 */
604 (6 - ((tinstr & (1<<12)) ? 0 : 2)));
605 case 0x8000 >> 11: /* 7.1.57 STRH(1) */
606 case 0x8800 >> 11: /* 7.1.32 LDRH(1) */
607 return 0xe1c000b0 |
608 (L<<20) | /* L==1? */
609 ((tinstr & (7<<0)) << (12-0)) | /* Rd */
610 ((tinstr & (7<<3)) << (16-3)) | /* Rn */
611 ((tinstr & (7<<6)) >> (6-1)) | /* immed_5[2:0] */
612 ((tinstr & (3<<9)) >> (9-8)); /* immed_5[4:3] */
613
614 /* 6.5.1 Format 2: */
615 case 0x5000 >> 11:
616 case 0x5800 >> 11:
617 {
618 static const u32 subset[8] = {
619 0xe7800000, /* 7.1.53 STR(2) */
620 0xe18000b0, /* 7.1.58 STRH(2) */
621 0xe7c00000, /* 7.1.56 STRB(2) */
622 0xe19000d0, /* 7.1.34 LDRSB */
623 0xe7900000, /* 7.1.27 LDR(2) */
624 0xe19000b0, /* 7.1.33 LDRH(2) */
625 0xe7d00000, /* 7.1.31 LDRB(2) */
626 0xe19000f0 /* 7.1.35 LDRSH */
627 };
628 return subset[(tinstr & (7<<9)) >> 9] |
629 ((tinstr & (7<<0)) << (12-0)) | /* Rd */
630 ((tinstr & (7<<3)) << (16-3)) | /* Rn */
631 ((tinstr & (7<<6)) >> (6-0)); /* Rm */
632 }
633
634 /* 6.5.1 Format 3: */
635 case 0x4800 >> 11: /* 7.1.28 LDR(3) */
636 /* NOTE: This case is not technically possible. We're
George G. Davis737d0bb2005-10-12 19:58:10 +0100637 * loading 32-bit memory data via PC relative
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 * addressing mode. So we can and should eliminate
639 * this case. But I'll leave it here for now.
640 */
641 return 0xe59f0000 |
642 ((tinstr & (7<<8)) << (12-8)) | /* Rd */
643 ((tinstr & 255) << (2-0)); /* immed_8 */
644
645 /* 6.5.1 Format 4: */
646 case 0x9000 >> 11: /* 7.1.54 STR(3) */
647 case 0x9800 >> 11: /* 7.1.29 LDR(4) */
648 return 0xe58d0000 |
649 (L<<20) | /* L==1? */
650 ((tinstr & (7<<8)) << (12-8)) | /* Rd */
651 ((tinstr & 255) << 2); /* immed_8 */
652
653 /* 6.6.1 Format 1: */
654 case 0xc000 >> 11: /* 7.1.51 STMIA */
655 case 0xc800 >> 11: /* 7.1.25 LDMIA */
656 {
657 u32 Rn = (tinstr & (7<<8)) >> 8;
658 u32 W = ((L<<Rn) & (tinstr&255)) ? 0 : 1<<21;
659
660 return 0xe8800000 | W | (L<<20) | (Rn<<16) |
661 (tinstr&255);
662 }
663
664 /* 6.6.1 Format 2: */
665 case 0xb000 >> 11: /* 7.1.48 PUSH */
666 case 0xb800 >> 11: /* 7.1.47 POP */
667 if ((tinstr & (3 << 9)) == 0x0400) {
668 static const u32 subset[4] = {
669 0xe92d0000, /* STMDB sp!,{registers} */
670 0xe92d4000, /* STMDB sp!,{registers,lr} */
671 0xe8bd0000, /* LDMIA sp!,{registers} */
672 0xe8bd8000 /* LDMIA sp!,{registers,pc} */
673 };
674 return subset[(L<<1) | ((tinstr & (1<<8)) >> 8)] |
675 (tinstr & 255); /* register_list */
676 }
677 /* Else fall through for illegal instruction case */
678
679 default:
George G. Davisc2860d42009-06-04 17:16:04 +0100680 return BAD_INSTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682}
683
George G. Davisc2860d42009-06-04 17:16:04 +0100684/*
685 * Convert Thumb-2 32 bit LDM, STM, LDRD, STRD to equivalent instruction
686 * handlable by ARM alignment handler, also find the corresponding handler,
687 * so that we can reuse ARM userland alignment fault fixups for Thumb.
688 *
689 * @pinstr: original Thumb-2 instruction; returns new handlable instruction
690 * @regs: register context.
691 * @poffset: return offset from faulted addr for later writeback
692 *
693 * NOTES:
694 * 1. Comments below refer to ARMv7 DDI0406A Thumb Instruction sections.
695 * 2. Register name Rt from ARMv7 is same as Rd from ARMv6 (Rd is Rt)
696 */
697static void *
698do_alignment_t32_to_handler(unsigned long *pinstr, struct pt_regs *regs,
699 union offset_union *poffset)
700{
701 unsigned long instr = *pinstr;
702 u16 tinst1 = (instr >> 16) & 0xffff;
703 u16 tinst2 = instr & 0xffff;
George G. Davisc2860d42009-06-04 17:16:04 +0100704
705 switch (tinst1 & 0xffe0) {
706 /* A6.3.5 Load/Store multiple */
707 case 0xe880: /* STM/STMIA/STMEA,LDM/LDMIA, PUSH/POP T2 */
708 case 0xe8a0: /* ...above writeback version */
709 case 0xe900: /* STMDB/STMFD, LDMDB/LDMEA */
710 case 0xe920: /* ...above writeback version */
711 /* no need offset decision since handler calculates it */
712 return do_alignment_ldmstm;
713
714 case 0xf840: /* POP/PUSH T3 (single register) */
715 if (RN_BITS(instr) == 13 && (tinst2 & 0x09ff) == 0x0904) {
716 u32 L = !!(LDST_L_BIT(instr));
717 const u32 subset[2] = {
718 0xe92d0000, /* STMDB sp!,{registers} */
719 0xe8bd0000, /* LDMIA sp!,{registers} */
720 };
721 *pinstr = subset[L] | (1<<RD_BITS(instr));
722 return do_alignment_ldmstm;
723 }
724 /* Else fall through for illegal instruction case */
725 break;
726
727 /* A6.3.6 Load/store double, STRD/LDRD(immed, lit, reg) */
728 case 0xe860:
729 case 0xe960:
730 case 0xe8e0:
731 case 0xe9e0:
732 poffset->un = (tinst2 & 0xff) << 2;
733 case 0xe940:
734 case 0xe9c0:
735 return do_alignment_ldrdstrd;
736
737 /*
738 * No need to handle load/store instructions up to word size
739 * since ARMv6 and later CPUs can perform unaligned accesses.
740 */
741 default:
742 break;
743 }
744 return NULL;
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747static int
748do_alignment(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
749{
viresh kumar6404f0b2012-10-31 10:40:42 +0100750 union offset_union uninitialized_var(offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 unsigned long instr = 0, instrptr;
752 int (*handler)(unsigned long addr, unsigned long instr, struct pt_regs *regs);
753 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 unsigned int fault;
755 u16 tinstr = 0;
George G. Davisc2860d42009-06-04 17:16:04 +0100756 int isize = 4;
757 int thumb2_32b = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Russell King02fe2842011-06-25 11:44:06 +0100759 if (interrupts_enabled(regs))
760 local_irq_enable();
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 instrptr = instruction_pointer(regs);
763
Yoann Padioleauf8343682007-06-01 00:46:36 -0700764 if (thumb_mode(regs)) {
Russell Kingb2551882013-02-25 16:10:42 +0000765 u16 *ptr = (u16 *)(instrptr & ~1);
766 fault = probe_kernel_address(ptr, tinstr);
Ben Dooks8592edf2013-07-18 21:10:56 +0100767 tinstr = __mem_to_opcode_thumb16(tinstr);
George G. Davisc2860d42009-06-04 17:16:04 +0100768 if (!fault) {
769 if (cpu_architecture() >= CPU_ARCH_ARMv7 &&
770 IS_T32(tinstr)) {
771 /* Thumb-2 32-bit */
772 u16 tinst2 = 0;
Russell Kingb2551882013-02-25 16:10:42 +0000773 fault = probe_kernel_address(ptr + 1, tinst2);
Ben Dooks8592edf2013-07-18 21:10:56 +0100774 tinst2 = __mem_to_opcode_thumb16(tinst2);
775 instr = __opcode_thumb32_compose(tinstr, tinst2);
George G. Davisc2860d42009-06-04 17:16:04 +0100776 thumb2_32b = 1;
777 } else {
778 isize = 2;
779 instr = thumb2arm(tinstr);
780 }
781 }
Ben Dooks8592edf2013-07-18 21:10:56 +0100782 } else {
Russell Kingb2551882013-02-25 16:10:42 +0000783 fault = probe_kernel_address(instrptr, instr);
Ben Dooks8592edf2013-07-18 21:10:56 +0100784 instr = __mem_to_opcode_arm(instr);
785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (fault) {
788 type = TYPE_FAULT;
George G. Davis737d0bb2005-10-12 19:58:10 +0100789 goto bad_or_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791
792 if (user_mode(regs))
793 goto user;
794
795 ai_sys += 1;
796
797 fixup:
798
George G. Davisc2860d42009-06-04 17:16:04 +0100799 regs->ARM_pc += isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 switch (CODING_BITS(instr)) {
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100802 case 0x00000000: /* 3.13.4 load/store instruction extensions */
803 if (LDSTHD_I_BIT(instr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 offset.un = (instr & 0xf00) >> 4 | (instr & 15);
805 else
806 offset.un = regs->uregs[RM_BITS(instr)];
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100807
808 if ((instr & 0x000000f0) == 0x000000b0 || /* LDRH, STRH */
809 (instr & 0x001000f0) == 0x001000f0) /* LDRSH */
810 handler = do_alignment_ldrhstrh;
811 else if ((instr & 0x001000f0) == 0x000000d0 || /* LDRD */
812 (instr & 0x001000f0) == 0x000000f0) /* STRD */
813 handler = do_alignment_ldrdstrd;
George G. Davis19da83f2005-10-10 10:17:44 +0100814 else if ((instr & 0x01f00ff0) == 0x01000090) /* SWP */
815 goto swp;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100816 else
817 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 break;
819
820 case 0x04000000: /* ldr or str immediate */
821 offset.un = OFFSET_BITS(instr);
822 handler = do_alignment_ldrstr;
823 break;
824
825 case 0x06000000: /* ldr or str register */
826 offset.un = regs->uregs[RM_BITS(instr)];
827
828 if (IS_SHIFT(instr)) {
829 unsigned int shiftval = SHIFT_BITS(instr);
830
831 switch(SHIFT_TYPE(instr)) {
832 case SHIFT_LSL:
833 offset.un <<= shiftval;
834 break;
835
836 case SHIFT_LSR:
837 offset.un >>= shiftval;
838 break;
839
840 case SHIFT_ASR:
841 offset.sn >>= shiftval;
842 break;
843
844 case SHIFT_RORRRX:
845 if (shiftval == 0) {
846 offset.un >>= 1;
847 if (regs->ARM_cpsr & PSR_C_BIT)
848 offset.un |= 1 << 31;
849 } else
850 offset.un = offset.un >> shiftval |
851 offset.un << (32 - shiftval);
852 break;
853 }
854 }
855 handler = do_alignment_ldrstr;
856 break;
857
George G. Davisc2860d42009-06-04 17:16:04 +0100858 case 0x08000000: /* ldm or stm, or thumb-2 32bit instruction */
Russell Kinga761ceb2012-09-10 11:50:45 +0100859 if (thumb2_32b) {
860 offset.un = 0;
George G. Davisc2860d42009-06-04 17:16:04 +0100861 handler = do_alignment_t32_to_handler(&instr, regs, &offset);
Arnd Bergmann31d2a632012-10-07 20:35:18 +0000862 } else {
863 offset.un = 0;
George G. Davisc2860d42009-06-04 17:16:04 +0100864 handler = do_alignment_ldmstm;
Arnd Bergmann31d2a632012-10-07 20:35:18 +0000865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 break;
867
868 default:
869 goto bad;
870 }
871
George G. Davisc2860d42009-06-04 17:16:04 +0100872 if (!handler)
873 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 type = handler(addr, instr, regs);
875
George G. Davisc2860d42009-06-04 17:16:04 +0100876 if (type == TYPE_ERROR || type == TYPE_FAULT) {
877 regs->ARM_pc -= isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 goto bad_or_fault;
George G. Davisc2860d42009-06-04 17:16:04 +0100879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 if (type == TYPE_LDST)
882 do_alignment_finish_ldst(addr, instr, regs, offset);
883
884 return 0;
885
886 bad_or_fault:
887 if (type == TYPE_ERROR)
888 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /*
890 * We got a fault - fix it up, or die.
891 */
Russell Kinge5beac32006-09-27 16:13:48 +0100892 do_bad_area(addr, fsr, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return 0;
894
George G. Davis19da83f2005-10-10 10:17:44 +0100895 swp:
896 printk(KERN_ERR "Alignment trap: not handling swp instruction\n");
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 bad:
899 /*
900 * Oops, we didn't handle the instruction.
901 */
902 printk(KERN_ERR "Alignment trap: not handling instruction "
903 "%0*lx at [<%08lx>]\n",
George G. Davisc2860d42009-06-04 17:16:04 +0100904 isize << 1,
905 isize == 2 ? tinstr : instr, instrptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 ai_skipped += 1;
907 return 1;
908
909 user:
910 ai_user += 1;
911
Russell Kingbaa745a2008-12-07 09:44:55 +0000912 if (ai_usermode & UM_WARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 printk("Alignment trap: %s (%d) PC=0x%08lx Instr=0x%0*lx "
914 "Address=0x%08lx FSR 0x%03x\n", current->comm,
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700915 task_pid_nr(current), instrptr,
George G. Davisc2860d42009-06-04 17:16:04 +0100916 isize << 1,
917 isize == 2 ? tinstr : instr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 addr, fsr);
919
Russell Kingbaa745a2008-12-07 09:44:55 +0000920 if (ai_usermode & UM_FIXUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 goto fixup;
922
Dave Martin2102a652011-07-28 14:29:40 +0100923 if (ai_usermode & UM_SIGNAL) {
924 siginfo_t si;
925
926 si.si_signo = SIGBUS;
927 si.si_errno = 0;
928 si.si_code = BUS_ADRALN;
929 si.si_addr = (void __user *)addr;
930
931 force_sig_info(si.si_signo, &si, current);
932 } else {
Nicolas Pitre2f27bf82010-09-20 04:10:43 +0100933 /*
934 * We're about to disable the alignment trap and return to
935 * user space. But if an interrupt occurs before actually
936 * reaching user space, then the IRQ vector entry code will
937 * notice that we were still in kernel space and therefore
938 * the alignment trap won't be re-enabled in that case as it
939 * is presumed to be always on from kernel space.
940 * Let's prevent that race by disabling interrupts here (they
941 * are disabled on the way back to user space anyway in
942 * entry-common.S) and disable the alignment trap only if
943 * there is no work pending for this thread.
944 */
945 raw_local_irq_disable();
946 if (!(current_thread_info()->flags & _TIF_WORK_MASK))
947 set_cr(cr_no_alignment);
948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 return 0;
951}
952
953/*
954 * This needs to be done after sysctl_init, otherwise sys/ will be
955 * overwritten. Actually, this shouldn't be in sys/ at all since
956 * it isn't a sysctl, and it doesn't contain sysctl information.
957 * We now locate it in /proc/cpu/alignment instead.
958 */
959static int __init alignment_init(void)
960{
961#ifdef CONFIG_PROC_FS
962 struct proc_dir_entry *res;
963
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300964 res = proc_create("cpu/alignment", S_IWUSR | S_IRUGO, NULL,
965 &alignment_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (!res)
967 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968#endif
969
Uwe Kleine-Königb849a602012-01-16 10:34:31 +0100970#ifdef CONFIG_CPU_CP15
Dave Martin088c01f2011-07-28 14:28:52 +0100971 if (cpu_is_v6_unaligned()) {
Russell Kingb4b20ad82014-04-13 18:57:29 +0100972 set_cr(__clear_cr(CR_A));
Dave Martin088c01f2011-07-28 14:28:52 +0100973 ai_usermode = safe_usermode(ai_usermode, false);
Russell Kingbaa745a2008-12-07 09:44:55 +0000974 }
Uwe Kleine-Königb849a602012-01-16 10:34:31 +0100975#endif
Russell Kingbaa745a2008-12-07 09:44:55 +0000976
Catalin Marinasf7b81562011-11-22 17:30:31 +0000977 hook_fault_code(FAULT_CODE_ALIGNMENT, do_alignment, SIGBUS, BUS_ADRALN,
Kirill A. Shutemov6338a6a2010-07-22 13:18:19 +0100978 "alignment exception");
Kirill A. Shutemovb8ab5392010-07-26 11:20:41 +0100979
980 /*
981 * ARMv6K and ARMv7 use fault status 3 (0b00011) as Access Flag section
982 * fault, not as alignment error.
983 *
984 * TODO: handle ARMv6K properly. Runtime check for 'K' extension is
985 * needed.
986 */
987 if (cpu_architecture() <= CPU_ARCH_ARMv6) {
988 hook_fault_code(3, do_alignment, SIGBUS, BUS_ADRALN,
989 "alignment exception");
990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 return 0;
993}
994
995fs_initcall(alignment_init);