blob: 1df38e8335709aaf41cbf7ea32943ef8727a4acb [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/unaligned.h>
26
27#include "fault.h"
28
29/*
30 * 32-bit misaligned trap handler (c) 1998 San Mehat (CCC) -July 1998
31 * /proc/sys/debug/alignment, modified and integrated into
32 * Linux 2.1 by Russell King
33 *
34 * Speed optimisations and better fault handling by Russell King.
35 *
36 * *** NOTE ***
37 * This code is not portable to processors with late data abort handling.
38 */
39#define CODING_BITS(i) (i & 0x0e000000)
40
41#define LDST_I_BIT(i) (i & (1 << 26)) /* Immediate constant */
42#define LDST_P_BIT(i) (i & (1 << 24)) /* Preindex */
43#define LDST_U_BIT(i) (i & (1 << 23)) /* Add offset */
44#define LDST_W_BIT(i) (i & (1 << 21)) /* Writeback */
45#define LDST_L_BIT(i) (i & (1 << 20)) /* Load */
46
47#define LDST_P_EQ_U(i) ((((i) ^ ((i) >> 1)) & (1 << 23)) == 0)
48
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +010049#define LDSTHD_I_BIT(i) (i & (1 << 22)) /* double/half-word immed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define LDM_S_BIT(i) (i & (1 << 22)) /* write CPSR from SPSR */
51
52#define RN_BITS(i) ((i >> 16) & 15) /* Rn */
53#define RD_BITS(i) ((i >> 12) & 15) /* Rd */
54#define RM_BITS(i) (i & 15) /* Rm */
55
56#define REGMASK_BITS(i) (i & 0xffff)
57#define OFFSET_BITS(i) (i & 0x0fff)
58
59#define IS_SHIFT(i) (i & 0x0ff0)
60#define SHIFT_BITS(i) ((i >> 7) & 0x1f)
61#define SHIFT_TYPE(i) (i & 0x60)
62#define SHIFT_LSL 0x00
63#define SHIFT_LSR 0x20
64#define SHIFT_ASR 0x40
65#define SHIFT_RORRRX 0x60
66
George G. Davisc2860d42009-06-04 17:16:04 +010067#define BAD_INSTR 0xdeadc0de
68
69/* Thumb-2 32 bit format per ARMv7 DDI0406A A6.3, either f800h,e800h,f800h */
70#define IS_T32(hi16) \
71 (((hi16) & 0xe000) == 0xe000 && ((hi16) & 0x1800))
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static unsigned long ai_user;
74static unsigned long ai_sys;
75static unsigned long ai_skipped;
76static unsigned long ai_half;
77static unsigned long ai_word;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +010078static unsigned long ai_dword;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static unsigned long ai_multi;
80static int ai_usermode;
81
Russell Kingd944d542010-02-20 16:13:29 +000082core_param(alignment, ai_usermode, int, 0600);
83
Russell Kingbaa745a2008-12-07 09:44:55 +000084#define UM_WARN (1 << 0)
85#define UM_FIXUP (1 << 1)
86#define UM_SIGNAL (1 << 2)
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#ifdef CONFIG_PROC_FS
89static const char *usermode_action[] = {
90 "ignored",
91 "warn",
92 "fixup",
93 "fixup+warn",
94 "signal",
95 "signal+warn"
96};
97
Dave Martin088c01f2011-07-28 14:28:52 +010098/* Return true if and only if the ARMv6 unaligned access model is in use. */
99static bool cpu_is_v6_unaligned(void)
100{
101 return cpu_architecture() >= CPU_ARCH_ARMv6 && (cr_alignment & CR_U);
102}
103
104static int safe_usermode(int new_usermode, bool warn)
105{
106 /*
107 * ARMv6 and later CPUs can perform unaligned accesses for
108 * most single load and store instructions up to word size.
109 * LDM, STM, LDRD and STRD still need to be handled.
110 *
111 * Ignoring the alignment fault is not an option on these
112 * CPUs since we spin re-faulting the instruction without
113 * making any progress.
114 */
115 if (cpu_is_v6_unaligned() && !(new_usermode & (UM_FIXUP | UM_SIGNAL))) {
116 new_usermode |= UM_FIXUP;
117
118 if (warn)
119 printk(KERN_WARNING "alignment: ignoring faults is unsafe on this CPU. Defaulting to fixup mode.\n");
120 }
121
122 return new_usermode;
123}
124
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300125static int alignment_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300127 seq_printf(m, "User:\t\t%lu\n", ai_user);
128 seq_printf(m, "System:\t\t%lu\n", ai_sys);
129 seq_printf(m, "Skipped:\t%lu\n", ai_skipped);
130 seq_printf(m, "Half:\t\t%lu\n", ai_half);
131 seq_printf(m, "Word:\t\t%lu\n", ai_word);
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100132 if (cpu_architecture() >= CPU_ARCH_ARMv5TE)
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300133 seq_printf(m, "DWord:\t\t%lu\n", ai_dword);
134 seq_printf(m, "Multi:\t\t%lu\n", ai_multi);
135 seq_printf(m, "User faults:\t%i (%s)\n", ai_usermode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 usermode_action[ai_usermode]);
137
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300141static int alignment_proc_open(struct inode *inode, struct file *file)
142{
143 return single_open(file, alignment_proc_show, NULL);
144}
145
146static ssize_t alignment_proc_write(struct file *file, const char __user *buffer,
147 size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 char mode;
150
151 if (count > 0) {
152 if (get_user(mode, buffer))
153 return -EFAULT;
154 if (mode >= '0' && mode <= '5')
Dave Martin088c01f2011-07-28 14:28:52 +0100155 ai_usermode = safe_usermode(mode - '0', true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157 return count;
158}
159
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300160static const struct file_operations alignment_proc_fops = {
161 .open = alignment_proc_open,
162 .read = seq_read,
163 .llseek = seq_lseek,
164 .release = single_release,
165 .write = alignment_proc_write,
166};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#endif /* CONFIG_PROC_FS */
168
169union offset_union {
170 unsigned long un;
171 signed long sn;
172};
173
174#define TYPE_ERROR 0
175#define TYPE_FAULT 1
176#define TYPE_LDST 2
177#define TYPE_DONE 3
178
179#ifdef __ARMEB__
180#define BE 1
181#define FIRST_BYTE_16 "mov %1, %1, ror #8\n"
182#define FIRST_BYTE_32 "mov %1, %1, ror #24\n"
183#define NEXT_BYTE "ror #24"
184#else
185#define BE 0
186#define FIRST_BYTE_16
187#define FIRST_BYTE_32
188#define NEXT_BYTE "lsr #8"
189#endif
190
191#define __get8_unaligned_check(ins,val,addr,err) \
192 __asm__( \
Catalin Marinas347c8b72009-07-24 12:32:56 +0100193 ARM( "1: "ins" %1, [%2], #1\n" ) \
194 THUMB( "1: "ins" %1, [%2]\n" ) \
195 THUMB( " add %2, %2, #1\n" ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 "2:\n" \
Russell King42604152010-04-19 10:15:03 +0100197 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 " .align 2\n" \
199 "3: mov %0, #1\n" \
200 " b 2b\n" \
Russell King42604152010-04-19 10:15:03 +0100201 " .popsection\n" \
202 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 " .align 3\n" \
204 " .long 1b, 3b\n" \
Russell King42604152010-04-19 10:15:03 +0100205 " .popsection\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 : "=r" (err), "=&r" (val), "=r" (addr) \
207 : "0" (err), "2" (addr))
208
209#define __get16_unaligned_check(ins,val,addr) \
210 do { \
211 unsigned int err = 0, v, a = addr; \
212 __get8_unaligned_check(ins,v,a,err); \
213 val = v << ((BE) ? 8 : 0); \
214 __get8_unaligned_check(ins,v,a,err); \
215 val |= v << ((BE) ? 0 : 8); \
216 if (err) \
217 goto fault; \
218 } while (0)
219
220#define get16_unaligned_check(val,addr) \
221 __get16_unaligned_check("ldrb",val,addr)
222
223#define get16t_unaligned_check(val,addr) \
224 __get16_unaligned_check("ldrbt",val,addr)
225
226#define __get32_unaligned_check(ins,val,addr) \
227 do { \
228 unsigned int err = 0, v, a = addr; \
229 __get8_unaligned_check(ins,v,a,err); \
230 val = v << ((BE) ? 24 : 0); \
231 __get8_unaligned_check(ins,v,a,err); \
232 val |= v << ((BE) ? 16 : 8); \
233 __get8_unaligned_check(ins,v,a,err); \
234 val |= v << ((BE) ? 8 : 16); \
235 __get8_unaligned_check(ins,v,a,err); \
236 val |= v << ((BE) ? 0 : 24); \
237 if (err) \
238 goto fault; \
239 } while (0)
240
241#define get32_unaligned_check(val,addr) \
242 __get32_unaligned_check("ldrb",val,addr)
243
244#define get32t_unaligned_check(val,addr) \
245 __get32_unaligned_check("ldrbt",val,addr)
246
247#define __put16_unaligned_check(ins,val,addr) \
248 do { \
249 unsigned int err = 0, v = val, a = addr; \
250 __asm__( FIRST_BYTE_16 \
Catalin Marinas347c8b72009-07-24 12:32:56 +0100251 ARM( "1: "ins" %1, [%2], #1\n" ) \
252 THUMB( "1: "ins" %1, [%2]\n" ) \
253 THUMB( " add %2, %2, #1\n" ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 " mov %1, %1, "NEXT_BYTE"\n" \
255 "2: "ins" %1, [%2]\n" \
256 "3:\n" \
Russell King42604152010-04-19 10:15:03 +0100257 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 " .align 2\n" \
259 "4: mov %0, #1\n" \
260 " b 3b\n" \
Russell King42604152010-04-19 10:15:03 +0100261 " .popsection\n" \
262 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 " .align 3\n" \
264 " .long 1b, 4b\n" \
265 " .long 2b, 4b\n" \
Russell King42604152010-04-19 10:15:03 +0100266 " .popsection\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 : "=r" (err), "=&r" (v), "=&r" (a) \
268 : "0" (err), "1" (v), "2" (a)); \
269 if (err) \
270 goto fault; \
271 } while (0)
272
273#define put16_unaligned_check(val,addr) \
274 __put16_unaligned_check("strb",val,addr)
275
276#define put16t_unaligned_check(val,addr) \
277 __put16_unaligned_check("strbt",val,addr)
278
279#define __put32_unaligned_check(ins,val,addr) \
280 do { \
281 unsigned int err = 0, v = val, a = addr; \
282 __asm__( FIRST_BYTE_32 \
Catalin Marinas347c8b72009-07-24 12:32:56 +0100283 ARM( "1: "ins" %1, [%2], #1\n" ) \
284 THUMB( "1: "ins" %1, [%2]\n" ) \
285 THUMB( " add %2, %2, #1\n" ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 " mov %1, %1, "NEXT_BYTE"\n" \
Catalin Marinas347c8b72009-07-24 12:32:56 +0100287 ARM( "2: "ins" %1, [%2], #1\n" ) \
288 THUMB( "2: "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( "3: "ins" %1, [%2], #1\n" ) \
292 THUMB( "3: "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" \
295 "4: "ins" %1, [%2]\n" \
296 "5:\n" \
Russell King42604152010-04-19 10:15:03 +0100297 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 " .align 2\n" \
299 "6: mov %0, #1\n" \
300 " b 5b\n" \
Russell King42604152010-04-19 10:15:03 +0100301 " .popsection\n" \
302 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 " .align 3\n" \
304 " .long 1b, 6b\n" \
305 " .long 2b, 6b\n" \
306 " .long 3b, 6b\n" \
307 " .long 4b, 6b\n" \
Russell King42604152010-04-19 10:15:03 +0100308 " .popsection\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 : "=r" (err), "=&r" (v), "=&r" (a) \
310 : "0" (err), "1" (v), "2" (a)); \
311 if (err) \
312 goto fault; \
313 } while (0)
314
George G. Davis737d0bb2005-10-12 19:58:10 +0100315#define put32_unaligned_check(val,addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 __put32_unaligned_check("strb", val, addr)
317
318#define put32t_unaligned_check(val,addr) \
319 __put32_unaligned_check("strbt", val, addr)
320
321static void
322do_alignment_finish_ldst(unsigned long addr, unsigned long instr, struct pt_regs *regs, union offset_union offset)
323{
324 if (!LDST_U_BIT(instr))
325 offset.un = -offset.un;
326
327 if (!LDST_P_BIT(instr))
328 addr += offset.un;
329
330 if (!LDST_P_BIT(instr) || LDST_W_BIT(instr))
331 regs->uregs[RN_BITS(instr)] = addr;
332}
333
334static int
335do_alignment_ldrhstrh(unsigned long addr, unsigned long instr, struct pt_regs *regs)
336{
337 unsigned int rd = RD_BITS(instr);
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 ai_half += 1;
340
341 if (user_mode(regs))
342 goto user;
343
344 if (LDST_L_BIT(instr)) {
345 unsigned long val;
346 get16_unaligned_check(val, addr);
347
348 /* signed half-word? */
349 if (instr & 0x40)
350 val = (signed long)((signed short) val);
351
352 regs->uregs[rd] = val;
353 } else
354 put16_unaligned_check(regs->uregs[rd], addr);
355
356 return TYPE_LDST;
357
358 user:
George G. Davis737d0bb2005-10-12 19:58:10 +0100359 if (LDST_L_BIT(instr)) {
360 unsigned long val;
361 get16t_unaligned_check(val, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
George G. Davis737d0bb2005-10-12 19:58:10 +0100363 /* signed half-word? */
364 if (instr & 0x40)
365 val = (signed long)((signed short) val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
George G. Davis737d0bb2005-10-12 19:58:10 +0100367 regs->uregs[rd] = val;
368 } else
369 put16t_unaligned_check(regs->uregs[rd], addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
George G. Davis737d0bb2005-10-12 19:58:10 +0100371 return TYPE_LDST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100373 fault:
374 return TYPE_FAULT;
375}
376
377static int
378do_alignment_ldrdstrd(unsigned long addr, unsigned long instr,
379 struct pt_regs *regs)
380{
381 unsigned int rd = RD_BITS(instr);
George G. Davisc2860d42009-06-04 17:16:04 +0100382 unsigned int rd2;
383 int load;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100384
George G. Davisc2860d42009-06-04 17:16:04 +0100385 if ((instr & 0xfe000000) == 0xe8000000) {
386 /* ARMv7 Thumb-2 32-bit LDRD/STRD */
387 rd2 = (instr >> 8) & 0xf;
388 load = !!(LDST_L_BIT(instr));
389 } else if (((rd & 1) == 1) || (rd == 14))
George G. Davis19da83f2005-10-10 10:17:44 +0100390 goto bad;
George G. Davisc2860d42009-06-04 17:16:04 +0100391 else {
392 load = ((instr & 0xf0) == 0xd0);
393 rd2 = rd + 1;
394 }
George G. Davis19da83f2005-10-10 10:17:44 +0100395
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100396 ai_dword += 1;
397
398 if (user_mode(regs))
399 goto user;
400
George G. Davisc2860d42009-06-04 17:16:04 +0100401 if (load) {
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100402 unsigned long val;
403 get32_unaligned_check(val, addr);
404 regs->uregs[rd] = val;
George G. Davis737d0bb2005-10-12 19:58:10 +0100405 get32_unaligned_check(val, addr + 4);
George G. Davisc2860d42009-06-04 17:16:04 +0100406 regs->uregs[rd2] = val;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100407 } else {
408 put32_unaligned_check(regs->uregs[rd], addr);
George G. Davisc2860d42009-06-04 17:16:04 +0100409 put32_unaligned_check(regs->uregs[rd2], addr + 4);
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100410 }
411
412 return TYPE_LDST;
413
414 user:
George G. Davisc2860d42009-06-04 17:16:04 +0100415 if (load) {
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100416 unsigned long val;
417 get32t_unaligned_check(val, addr);
418 regs->uregs[rd] = val;
George G. Davis737d0bb2005-10-12 19:58:10 +0100419 get32t_unaligned_check(val, addr + 4);
George G. Davisc2860d42009-06-04 17:16:04 +0100420 regs->uregs[rd2] = val;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100421 } else {
422 put32t_unaligned_check(regs->uregs[rd], addr);
George G. Davisc2860d42009-06-04 17:16:04 +0100423 put32t_unaligned_check(regs->uregs[rd2], addr + 4);
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100424 }
425
426 return TYPE_LDST;
George G. Davis19da83f2005-10-10 10:17:44 +0100427 bad:
428 return TYPE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 fault:
430 return TYPE_FAULT;
431}
432
433static int
434do_alignment_ldrstr(unsigned long addr, unsigned long instr, struct pt_regs *regs)
435{
436 unsigned int rd = RD_BITS(instr);
437
438 ai_word += 1;
439
440 if ((!LDST_P_BIT(instr) && LDST_W_BIT(instr)) || user_mode(regs))
441 goto trans;
442
443 if (LDST_L_BIT(instr)) {
444 unsigned int val;
445 get32_unaligned_check(val, addr);
446 regs->uregs[rd] = val;
447 } else
448 put32_unaligned_check(regs->uregs[rd], addr);
449 return TYPE_LDST;
450
451 trans:
452 if (LDST_L_BIT(instr)) {
453 unsigned int val;
454 get32t_unaligned_check(val, addr);
455 regs->uregs[rd] = val;
456 } else
457 put32t_unaligned_check(regs->uregs[rd], addr);
458 return TYPE_LDST;
459
460 fault:
461 return TYPE_FAULT;
462}
463
464/*
465 * LDM/STM alignment handler.
466 *
467 * There are 4 variants of this instruction:
468 *
469 * B = rn pointer before instruction, A = rn pointer after instruction
470 * ------ increasing address ----->
471 * | | r0 | r1 | ... | rx | |
472 * PU = 01 B A
473 * PU = 11 B A
474 * PU = 00 A B
475 * PU = 10 A B
476 */
477static int
478do_alignment_ldmstm(unsigned long addr, unsigned long instr, struct pt_regs *regs)
479{
480 unsigned int rd, rn, correction, nr_regs, regbits;
481 unsigned long eaddr, newaddr;
482
483 if (LDM_S_BIT(instr))
484 goto bad;
485
486 correction = 4; /* processor implementation defined */
487 regs->ARM_pc += correction;
488
489 ai_multi += 1;
490
491 /* count the number of registers in the mask to be transferred */
492 nr_regs = hweight16(REGMASK_BITS(instr)) * 4;
493
494 rn = RN_BITS(instr);
495 newaddr = eaddr = regs->uregs[rn];
496
497 if (!LDST_U_BIT(instr))
498 nr_regs = -nr_regs;
499 newaddr += nr_regs;
500 if (!LDST_U_BIT(instr))
501 eaddr = newaddr;
502
503 if (LDST_P_EQ_U(instr)) /* U = P */
504 eaddr += 4;
505
George G. Davis737d0bb2005-10-12 19:58:10 +0100506 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 * For alignment faults on the ARM922T/ARM920T the MMU makes
508 * the FSR (and hence addr) equal to the updated base address
509 * of the multiple access rather than the restored value.
510 * Switch this message off if we've got a ARM92[02], otherwise
511 * [ls]dm alignment faults are noisy!
512 */
513#if !(defined CONFIG_CPU_ARM922T) && !(defined CONFIG_CPU_ARM920T)
514 /*
515 * This is a "hint" - we already have eaddr worked out by the
516 * processor for us.
517 */
518 if (addr != eaddr) {
519 printk(KERN_ERR "LDMSTM: PC = %08lx, instr = %08lx, "
520 "addr = %08lx, eaddr = %08lx\n",
521 instruction_pointer(regs), instr, addr, eaddr);
522 show_regs(regs);
523 }
524#endif
525
526 if (user_mode(regs)) {
527 for (regbits = REGMASK_BITS(instr), rd = 0; regbits;
528 regbits >>= 1, rd += 1)
529 if (regbits & 1) {
530 if (LDST_L_BIT(instr)) {
531 unsigned int val;
532 get32t_unaligned_check(val, eaddr);
533 regs->uregs[rd] = val;
534 } else
535 put32t_unaligned_check(regs->uregs[rd], eaddr);
536 eaddr += 4;
537 }
538 } else {
539 for (regbits = REGMASK_BITS(instr), rd = 0; regbits;
540 regbits >>= 1, rd += 1)
541 if (regbits & 1) {
542 if (LDST_L_BIT(instr)) {
543 unsigned int val;
544 get32_unaligned_check(val, eaddr);
545 regs->uregs[rd] = val;
546 } else
547 put32_unaligned_check(regs->uregs[rd], eaddr);
548 eaddr += 4;
549 }
550 }
551
552 if (LDST_W_BIT(instr))
553 regs->uregs[rn] = newaddr;
554 if (!LDST_L_BIT(instr) || !(REGMASK_BITS(instr) & (1 << 15)))
555 regs->ARM_pc -= correction;
556 return TYPE_DONE;
557
558fault:
559 regs->ARM_pc -= correction;
560 return TYPE_FAULT;
561
562bad:
563 printk(KERN_ERR "Alignment trap: not handling ldm with s-bit set\n");
564 return TYPE_ERROR;
565}
566
567/*
568 * Convert Thumb ld/st instruction forms to equivalent ARM instructions so
569 * we can reuse ARM userland alignment fault fixups for Thumb.
570 *
571 * This implementation was initially based on the algorithm found in
572 * gdb/sim/arm/thumbemu.c. It is basically just a code reduction of same
573 * to convert only Thumb ld/st instruction forms to equivalent ARM forms.
574 *
575 * NOTES:
576 * 1. Comments below refer to ARM ARM DDI0100E Thumb Instruction sections.
577 * 2. If for some reason we're passed an non-ld/st Thumb instruction to
578 * decode, we return 0xdeadc0de. This should never happen under normal
579 * circumstances but if it does, we've got other problems to deal with
580 * elsewhere and we obviously can't fix those problems here.
581 */
582
583static unsigned long
584thumb2arm(u16 tinstr)
585{
586 u32 L = (tinstr & (1<<11)) >> 11;
587
588 switch ((tinstr & 0xf800) >> 11) {
589 /* 6.5.1 Format 1: */
590 case 0x6000 >> 11: /* 7.1.52 STR(1) */
591 case 0x6800 >> 11: /* 7.1.26 LDR(1) */
592 case 0x7000 >> 11: /* 7.1.55 STRB(1) */
593 case 0x7800 >> 11: /* 7.1.30 LDRB(1) */
594 return 0xe5800000 |
595 ((tinstr & (1<<12)) << (22-12)) | /* fixup */
596 (L<<20) | /* L==1? */
597 ((tinstr & (7<<0)) << (12-0)) | /* Rd */
598 ((tinstr & (7<<3)) << (16-3)) | /* Rn */
599 ((tinstr & (31<<6)) >> /* immed_5 */
600 (6 - ((tinstr & (1<<12)) ? 0 : 2)));
601 case 0x8000 >> 11: /* 7.1.57 STRH(1) */
602 case 0x8800 >> 11: /* 7.1.32 LDRH(1) */
603 return 0xe1c000b0 |
604 (L<<20) | /* L==1? */
605 ((tinstr & (7<<0)) << (12-0)) | /* Rd */
606 ((tinstr & (7<<3)) << (16-3)) | /* Rn */
607 ((tinstr & (7<<6)) >> (6-1)) | /* immed_5[2:0] */
608 ((tinstr & (3<<9)) >> (9-8)); /* immed_5[4:3] */
609
610 /* 6.5.1 Format 2: */
611 case 0x5000 >> 11:
612 case 0x5800 >> 11:
613 {
614 static const u32 subset[8] = {
615 0xe7800000, /* 7.1.53 STR(2) */
616 0xe18000b0, /* 7.1.58 STRH(2) */
617 0xe7c00000, /* 7.1.56 STRB(2) */
618 0xe19000d0, /* 7.1.34 LDRSB */
619 0xe7900000, /* 7.1.27 LDR(2) */
620 0xe19000b0, /* 7.1.33 LDRH(2) */
621 0xe7d00000, /* 7.1.31 LDRB(2) */
622 0xe19000f0 /* 7.1.35 LDRSH */
623 };
624 return subset[(tinstr & (7<<9)) >> 9] |
625 ((tinstr & (7<<0)) << (12-0)) | /* Rd */
626 ((tinstr & (7<<3)) << (16-3)) | /* Rn */
627 ((tinstr & (7<<6)) >> (6-0)); /* Rm */
628 }
629
630 /* 6.5.1 Format 3: */
631 case 0x4800 >> 11: /* 7.1.28 LDR(3) */
632 /* NOTE: This case is not technically possible. We're
George G. Davis737d0bb2005-10-12 19:58:10 +0100633 * loading 32-bit memory data via PC relative
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 * addressing mode. So we can and should eliminate
635 * this case. But I'll leave it here for now.
636 */
637 return 0xe59f0000 |
638 ((tinstr & (7<<8)) << (12-8)) | /* Rd */
639 ((tinstr & 255) << (2-0)); /* immed_8 */
640
641 /* 6.5.1 Format 4: */
642 case 0x9000 >> 11: /* 7.1.54 STR(3) */
643 case 0x9800 >> 11: /* 7.1.29 LDR(4) */
644 return 0xe58d0000 |
645 (L<<20) | /* L==1? */
646 ((tinstr & (7<<8)) << (12-8)) | /* Rd */
647 ((tinstr & 255) << 2); /* immed_8 */
648
649 /* 6.6.1 Format 1: */
650 case 0xc000 >> 11: /* 7.1.51 STMIA */
651 case 0xc800 >> 11: /* 7.1.25 LDMIA */
652 {
653 u32 Rn = (tinstr & (7<<8)) >> 8;
654 u32 W = ((L<<Rn) & (tinstr&255)) ? 0 : 1<<21;
655
656 return 0xe8800000 | W | (L<<20) | (Rn<<16) |
657 (tinstr&255);
658 }
659
660 /* 6.6.1 Format 2: */
661 case 0xb000 >> 11: /* 7.1.48 PUSH */
662 case 0xb800 >> 11: /* 7.1.47 POP */
663 if ((tinstr & (3 << 9)) == 0x0400) {
664 static const u32 subset[4] = {
665 0xe92d0000, /* STMDB sp!,{registers} */
666 0xe92d4000, /* STMDB sp!,{registers,lr} */
667 0xe8bd0000, /* LDMIA sp!,{registers} */
668 0xe8bd8000 /* LDMIA sp!,{registers,pc} */
669 };
670 return subset[(L<<1) | ((tinstr & (1<<8)) >> 8)] |
671 (tinstr & 255); /* register_list */
672 }
673 /* Else fall through for illegal instruction case */
674
675 default:
George G. Davisc2860d42009-06-04 17:16:04 +0100676 return BAD_INSTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678}
679
George G. Davisc2860d42009-06-04 17:16:04 +0100680/*
681 * Convert Thumb-2 32 bit LDM, STM, LDRD, STRD to equivalent instruction
682 * handlable by ARM alignment handler, also find the corresponding handler,
683 * so that we can reuse ARM userland alignment fault fixups for Thumb.
684 *
685 * @pinstr: original Thumb-2 instruction; returns new handlable instruction
686 * @regs: register context.
687 * @poffset: return offset from faulted addr for later writeback
688 *
689 * NOTES:
690 * 1. Comments below refer to ARMv7 DDI0406A Thumb Instruction sections.
691 * 2. Register name Rt from ARMv7 is same as Rd from ARMv6 (Rd is Rt)
692 */
693static void *
694do_alignment_t32_to_handler(unsigned long *pinstr, struct pt_regs *regs,
695 union offset_union *poffset)
696{
697 unsigned long instr = *pinstr;
698 u16 tinst1 = (instr >> 16) & 0xffff;
699 u16 tinst2 = instr & 0xffff;
700 poffset->un = 0;
701
702 switch (tinst1 & 0xffe0) {
703 /* A6.3.5 Load/Store multiple */
704 case 0xe880: /* STM/STMIA/STMEA,LDM/LDMIA, PUSH/POP T2 */
705 case 0xe8a0: /* ...above writeback version */
706 case 0xe900: /* STMDB/STMFD, LDMDB/LDMEA */
707 case 0xe920: /* ...above writeback version */
708 /* no need offset decision since handler calculates it */
709 return do_alignment_ldmstm;
710
711 case 0xf840: /* POP/PUSH T3 (single register) */
712 if (RN_BITS(instr) == 13 && (tinst2 & 0x09ff) == 0x0904) {
713 u32 L = !!(LDST_L_BIT(instr));
714 const u32 subset[2] = {
715 0xe92d0000, /* STMDB sp!,{registers} */
716 0xe8bd0000, /* LDMIA sp!,{registers} */
717 };
718 *pinstr = subset[L] | (1<<RD_BITS(instr));
719 return do_alignment_ldmstm;
720 }
721 /* Else fall through for illegal instruction case */
722 break;
723
724 /* A6.3.6 Load/store double, STRD/LDRD(immed, lit, reg) */
725 case 0xe860:
726 case 0xe960:
727 case 0xe8e0:
728 case 0xe9e0:
729 poffset->un = (tinst2 & 0xff) << 2;
730 case 0xe940:
731 case 0xe9c0:
732 return do_alignment_ldrdstrd;
733
734 /*
735 * No need to handle load/store instructions up to word size
736 * since ARMv6 and later CPUs can perform unaligned accesses.
737 */
738 default:
739 break;
740 }
741 return NULL;
742}
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744static int
745do_alignment(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
746{
747 union offset_union offset;
748 unsigned long instr = 0, instrptr;
749 int (*handler)(unsigned long addr, unsigned long instr, struct pt_regs *regs);
750 unsigned int type;
751 mm_segment_t fs;
752 unsigned int fault;
753 u16 tinstr = 0;
George G. Davisc2860d42009-06-04 17:16:04 +0100754 int isize = 4;
755 int thumb2_32b = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Russell King02fe2842011-06-25 11:44:06 +0100757 if (interrupts_enabled(regs))
758 local_irq_enable();
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 instrptr = instruction_pointer(regs);
761
762 fs = get_fs();
763 set_fs(KERNEL_DS);
Yoann Padioleauf8343682007-06-01 00:46:36 -0700764 if (thumb_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 fault = __get_user(tinstr, (u16 *)(instrptr & ~1));
George G. Davisc2860d42009-06-04 17:16:04 +0100766 if (!fault) {
767 if (cpu_architecture() >= CPU_ARCH_ARMv7 &&
768 IS_T32(tinstr)) {
769 /* Thumb-2 32-bit */
770 u16 tinst2 = 0;
771 fault = __get_user(tinst2, (u16 *)(instrptr+2));
772 instr = (tinstr << 16) | tinst2;
773 thumb2_32b = 1;
774 } else {
775 isize = 2;
776 instr = thumb2arm(tinstr);
777 }
778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 } else
780 fault = __get_user(instr, (u32 *)instrptr);
781 set_fs(fs);
782
783 if (fault) {
784 type = TYPE_FAULT;
George G. Davis737d0bb2005-10-12 19:58:10 +0100785 goto bad_or_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
788 if (user_mode(regs))
789 goto user;
790
791 ai_sys += 1;
792
793 fixup:
794
George G. Davisc2860d42009-06-04 17:16:04 +0100795 regs->ARM_pc += isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 switch (CODING_BITS(instr)) {
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100798 case 0x00000000: /* 3.13.4 load/store instruction extensions */
799 if (LDSTHD_I_BIT(instr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 offset.un = (instr & 0xf00) >> 4 | (instr & 15);
801 else
802 offset.un = regs->uregs[RM_BITS(instr)];
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100803
804 if ((instr & 0x000000f0) == 0x000000b0 || /* LDRH, STRH */
805 (instr & 0x001000f0) == 0x001000f0) /* LDRSH */
806 handler = do_alignment_ldrhstrh;
807 else if ((instr & 0x001000f0) == 0x000000d0 || /* LDRD */
808 (instr & 0x001000f0) == 0x000000f0) /* STRD */
809 handler = do_alignment_ldrdstrd;
George G. Davis19da83f2005-10-10 10:17:44 +0100810 else if ((instr & 0x01f00ff0) == 0x01000090) /* SWP */
811 goto swp;
Steve Longerbeamf21ee2d2005-08-31 21:22:20 +0100812 else
813 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 break;
815
816 case 0x04000000: /* ldr or str immediate */
817 offset.un = OFFSET_BITS(instr);
818 handler = do_alignment_ldrstr;
819 break;
820
821 case 0x06000000: /* ldr or str register */
822 offset.un = regs->uregs[RM_BITS(instr)];
823
824 if (IS_SHIFT(instr)) {
825 unsigned int shiftval = SHIFT_BITS(instr);
826
827 switch(SHIFT_TYPE(instr)) {
828 case SHIFT_LSL:
829 offset.un <<= shiftval;
830 break;
831
832 case SHIFT_LSR:
833 offset.un >>= shiftval;
834 break;
835
836 case SHIFT_ASR:
837 offset.sn >>= shiftval;
838 break;
839
840 case SHIFT_RORRRX:
841 if (shiftval == 0) {
842 offset.un >>= 1;
843 if (regs->ARM_cpsr & PSR_C_BIT)
844 offset.un |= 1 << 31;
845 } else
846 offset.un = offset.un >> shiftval |
847 offset.un << (32 - shiftval);
848 break;
849 }
850 }
851 handler = do_alignment_ldrstr;
852 break;
853
George G. Davisc2860d42009-06-04 17:16:04 +0100854 case 0x08000000: /* ldm or stm, or thumb-2 32bit instruction */
855 if (thumb2_32b)
856 handler = do_alignment_t32_to_handler(&instr, regs, &offset);
857 else
858 handler = do_alignment_ldmstm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 break;
860
861 default:
862 goto bad;
863 }
864
George G. Davisc2860d42009-06-04 17:16:04 +0100865 if (!handler)
866 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 type = handler(addr, instr, regs);
868
George G. Davisc2860d42009-06-04 17:16:04 +0100869 if (type == TYPE_ERROR || type == TYPE_FAULT) {
870 regs->ARM_pc -= isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto bad_or_fault;
George G. Davisc2860d42009-06-04 17:16:04 +0100872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 if (type == TYPE_LDST)
875 do_alignment_finish_ldst(addr, instr, regs, offset);
876
877 return 0;
878
879 bad_or_fault:
880 if (type == TYPE_ERROR)
881 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 /*
883 * We got a fault - fix it up, or die.
884 */
Russell Kinge5beac32006-09-27 16:13:48 +0100885 do_bad_area(addr, fsr, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return 0;
887
George G. Davis19da83f2005-10-10 10:17:44 +0100888 swp:
889 printk(KERN_ERR "Alignment trap: not handling swp instruction\n");
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 bad:
892 /*
893 * Oops, we didn't handle the instruction.
894 */
895 printk(KERN_ERR "Alignment trap: not handling instruction "
896 "%0*lx at [<%08lx>]\n",
George G. Davisc2860d42009-06-04 17:16:04 +0100897 isize << 1,
898 isize == 2 ? tinstr : instr, instrptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 ai_skipped += 1;
900 return 1;
901
902 user:
903 ai_user += 1;
904
Russell Kingbaa745a2008-12-07 09:44:55 +0000905 if (ai_usermode & UM_WARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 printk("Alignment trap: %s (%d) PC=0x%08lx Instr=0x%0*lx "
907 "Address=0x%08lx FSR 0x%03x\n", current->comm,
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700908 task_pid_nr(current), instrptr,
George G. Davisc2860d42009-06-04 17:16:04 +0100909 isize << 1,
910 isize == 2 ? tinstr : instr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 addr, fsr);
912
Russell Kingbaa745a2008-12-07 09:44:55 +0000913 if (ai_usermode & UM_FIXUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 goto fixup;
915
Russell Kingbaa745a2008-12-07 09:44:55 +0000916 if (ai_usermode & UM_SIGNAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 force_sig(SIGBUS, current);
Nicolas Pitre2f27bf82010-09-20 04:10:43 +0100918 else {
919 /*
920 * We're about to disable the alignment trap and return to
921 * user space. But if an interrupt occurs before actually
922 * reaching user space, then the IRQ vector entry code will
923 * notice that we were still in kernel space and therefore
924 * the alignment trap won't be re-enabled in that case as it
925 * is presumed to be always on from kernel space.
926 * Let's prevent that race by disabling interrupts here (they
927 * are disabled on the way back to user space anyway in
928 * entry-common.S) and disable the alignment trap only if
929 * there is no work pending for this thread.
930 */
931 raw_local_irq_disable();
932 if (!(current_thread_info()->flags & _TIF_WORK_MASK))
933 set_cr(cr_no_alignment);
934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 return 0;
937}
938
939/*
940 * This needs to be done after sysctl_init, otherwise sys/ will be
941 * overwritten. Actually, this shouldn't be in sys/ at all since
942 * it isn't a sysctl, and it doesn't contain sysctl information.
943 * We now locate it in /proc/cpu/alignment instead.
944 */
945static int __init alignment_init(void)
946{
947#ifdef CONFIG_PROC_FS
948 struct proc_dir_entry *res;
949
Alexey Dobriyanb7072c62010-05-02 12:40:35 +0300950 res = proc_create("cpu/alignment", S_IWUSR | S_IRUGO, NULL,
951 &alignment_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (!res)
953 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954#endif
955
Dave Martin088c01f2011-07-28 14:28:52 +0100956 if (cpu_is_v6_unaligned()) {
Russell Kingbaa745a2008-12-07 09:44:55 +0000957 cr_alignment &= ~CR_A;
958 cr_no_alignment &= ~CR_A;
959 set_cr(cr_alignment);
Dave Martin088c01f2011-07-28 14:28:52 +0100960 ai_usermode = safe_usermode(ai_usermode, false);
Russell Kingbaa745a2008-12-07 09:44:55 +0000961 }
962
Kirill A. Shutemov6338a6a2010-07-22 13:18:19 +0100963 hook_fault_code(1, do_alignment, SIGBUS, BUS_ADRALN,
964 "alignment exception");
Kirill A. Shutemovb8ab5392010-07-26 11:20:41 +0100965
966 /*
967 * ARMv6K and ARMv7 use fault status 3 (0b00011) as Access Flag section
968 * fault, not as alignment error.
969 *
970 * TODO: handle ARMv6K properly. Runtime check for 'K' extension is
971 * needed.
972 */
973 if (cpu_architecture() <= CPU_ARCH_ARMv6) {
974 hook_fault_code(3, do_alignment, SIGBUS, BUS_ADRALN,
975 "alignment exception");
976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 return 0;
979}
980
981fs_initcall(alignment_init);