2 * linux/arch/arm/mm/alignment.c
4 * Copyright (C) 1995 Linus Torvalds
5 * Modifications for ARM processor (c) 1995-2001 Russell King
6 * Thumb alignment fault fixups (c) 2004 MontaVista Software, Inc.
7 * - Adapted from gdb/sim/arm/thumbemu.c -- Thumb instruction emulation.
8 * Copyright (C) 1996, Cygnus Software Technologies Ltd.
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.
14 #include <linux/moduleparam.h>
15 #include <linux/compiler.h>
16 #include <linux/kernel.h>
17 #include <linux/errno.h>
18 #include <linux/string.h>
19 #include <linux/proc_fs.h>
20 #include <linux/init.h>
21 #include <linux/sched.h>
22 #include <linux/uaccess.h>
24 #include <asm/unaligned.h>
29 * 32-bit misaligned trap handler (c) 1998 San Mehat (CCC) -July 1998
30 * /proc/sys/debug/alignment, modified and integrated into
31 * Linux 2.1 by Russell King
33 * Speed optimisations and better fault handling by Russell King.
36 * This code is not portable to processors with late data abort handling.
38 #define CODING_BITS(i) (i & 0x0e000000)
40 #define LDST_I_BIT(i) (i & (1 << 26)) /* Immediate constant */
41 #define LDST_P_BIT(i) (i & (1 << 24)) /* Preindex */
42 #define LDST_U_BIT(i) (i & (1 << 23)) /* Add offset */
43 #define LDST_W_BIT(i) (i & (1 << 21)) /* Writeback */
44 #define LDST_L_BIT(i) (i & (1 << 20)) /* Load */
46 #define LDST_P_EQ_U(i) ((((i) ^ ((i) >> 1)) & (1 << 23)) == 0)
48 #define LDSTHD_I_BIT(i) (i & (1 << 22)) /* double/half-word immed */
49 #define LDM_S_BIT(i) (i & (1 << 22)) /* write CPSR from SPSR */
51 #define RN_BITS(i) ((i >> 16) & 15) /* Rn */
52 #define RD_BITS(i) ((i >> 12) & 15) /* Rd */
53 #define RM_BITS(i) (i & 15) /* Rm */
55 #define REGMASK_BITS(i) (i & 0xffff)
56 #define OFFSET_BITS(i) (i & 0x0fff)
58 #define IS_SHIFT(i) (i & 0x0ff0)
59 #define SHIFT_BITS(i) ((i >> 7) & 0x1f)
60 #define SHIFT_TYPE(i) (i & 0x60)
61 #define SHIFT_LSL 0x00
62 #define SHIFT_LSR 0x20
63 #define SHIFT_ASR 0x40
64 #define SHIFT_RORRRX 0x60
66 #define BAD_INSTR 0xdeadc0de
68 /* Thumb-2 32 bit format per ARMv7 DDI0406A A6.3, either f800h,e800h,f800h */
69 #define IS_T32(hi16) \
70 (((hi16) & 0xe000) == 0xe000 && ((hi16) & 0x1800))
72 static unsigned long ai_user
;
73 static unsigned long ai_sys
;
74 static unsigned long ai_skipped
;
75 static unsigned long ai_half
;
76 static unsigned long ai_word
;
77 static unsigned long ai_dword
;
78 static unsigned long ai_multi
;
79 static int ai_usermode
;
81 core_param(alignment
, ai_usermode
, int, 0600);
83 #define UM_WARN (1 << 0)
84 #define UM_FIXUP (1 << 1)
85 #define UM_SIGNAL (1 << 2)
88 static const char *usermode_action
[] = {
98 proc_alignment_read(char *page
, char **start
, off_t off
, int count
, int *eof
,
104 p
+= sprintf(p
, "User:\t\t%lu\n", ai_user
);
105 p
+= sprintf(p
, "System:\t\t%lu\n", ai_sys
);
106 p
+= sprintf(p
, "Skipped:\t%lu\n", ai_skipped
);
107 p
+= sprintf(p
, "Half:\t\t%lu\n", ai_half
);
108 p
+= sprintf(p
, "Word:\t\t%lu\n", ai_word
);
109 if (cpu_architecture() >= CPU_ARCH_ARMv5TE
)
110 p
+= sprintf(p
, "DWord:\t\t%lu\n", ai_dword
);
111 p
+= sprintf(p
, "Multi:\t\t%lu\n", ai_multi
);
112 p
+= sprintf(p
, "User faults:\t%i (%s)\n", ai_usermode
,
113 usermode_action
[ai_usermode
]);
115 len
= (p
- page
) - off
;
119 *eof
= (len
<= count
) ? 1 : 0;
125 static int proc_alignment_write(struct file
*file
, const char __user
*buffer
,
126 unsigned long count
, void *data
)
131 if (get_user(mode
, buffer
))
133 if (mode
>= '0' && mode
<= '5')
134 ai_usermode
= mode
- '0';
139 #endif /* CONFIG_PROC_FS */
153 #define FIRST_BYTE_16 "mov %1, %1, ror #8\n"
154 #define FIRST_BYTE_32 "mov %1, %1, ror #24\n"
155 #define NEXT_BYTE "ror #24"
158 #define FIRST_BYTE_16
159 #define FIRST_BYTE_32
160 #define NEXT_BYTE "lsr #8"
163 #define __get8_unaligned_check(ins,val,addr,err) \
165 ARM( "1: "ins" %1, [%2], #1\n" ) \
166 THUMB( "1: "ins" %1, [%2]\n" ) \
167 THUMB( " add %2, %2, #1\n" ) \
169 " .section .fixup,\"ax\"\n" \
174 " .section __ex_table,\"a\"\n" \
178 : "=r" (err), "=&r" (val), "=r" (addr) \
179 : "0" (err), "2" (addr))
181 #define __get16_unaligned_check(ins,val,addr) \
183 unsigned int err = 0, v, a = addr; \
184 __get8_unaligned_check(ins,v,a,err); \
185 val = v << ((BE) ? 8 : 0); \
186 __get8_unaligned_check(ins,v,a,err); \
187 val |= v << ((BE) ? 0 : 8); \
192 #define get16_unaligned_check(val,addr) \
193 __get16_unaligned_check("ldrb",val,addr)
195 #define get16t_unaligned_check(val,addr) \
196 __get16_unaligned_check("ldrbt",val,addr)
198 #define __get32_unaligned_check(ins,val,addr) \
200 unsigned int err = 0, v, a = addr; \
201 __get8_unaligned_check(ins,v,a,err); \
202 val = v << ((BE) ? 24 : 0); \
203 __get8_unaligned_check(ins,v,a,err); \
204 val |= v << ((BE) ? 16 : 8); \
205 __get8_unaligned_check(ins,v,a,err); \
206 val |= v << ((BE) ? 8 : 16); \
207 __get8_unaligned_check(ins,v,a,err); \
208 val |= v << ((BE) ? 0 : 24); \
213 #define get32_unaligned_check(val,addr) \
214 __get32_unaligned_check("ldrb",val,addr)
216 #define get32t_unaligned_check(val,addr) \
217 __get32_unaligned_check("ldrbt",val,addr)
219 #define __put16_unaligned_check(ins,val,addr) \
221 unsigned int err = 0, v = val, a = addr; \
222 __asm__( FIRST_BYTE_16 \
223 ARM( "1: "ins" %1, [%2], #1\n" ) \
224 THUMB( "1: "ins" %1, [%2]\n" ) \
225 THUMB( " add %2, %2, #1\n" ) \
226 " mov %1, %1, "NEXT_BYTE"\n" \
227 "2: "ins" %1, [%2]\n" \
229 " .section .fixup,\"ax\"\n" \
234 " .section __ex_table,\"a\"\n" \
239 : "=r" (err), "=&r" (v), "=&r" (a) \
240 : "0" (err), "1" (v), "2" (a)); \
245 #define put16_unaligned_check(val,addr) \
246 __put16_unaligned_check("strb",val,addr)
248 #define put16t_unaligned_check(val,addr) \
249 __put16_unaligned_check("strbt",val,addr)
251 #define __put32_unaligned_check(ins,val,addr) \
253 unsigned int err = 0, v = val, a = addr; \
254 __asm__( FIRST_BYTE_32 \
255 ARM( "1: "ins" %1, [%2], #1\n" ) \
256 THUMB( "1: "ins" %1, [%2]\n" ) \
257 THUMB( " add %2, %2, #1\n" ) \
258 " mov %1, %1, "NEXT_BYTE"\n" \
259 ARM( "2: "ins" %1, [%2], #1\n" ) \
260 THUMB( "2: "ins" %1, [%2]\n" ) \
261 THUMB( " add %2, %2, #1\n" ) \
262 " mov %1, %1, "NEXT_BYTE"\n" \
263 ARM( "3: "ins" %1, [%2], #1\n" ) \
264 THUMB( "3: "ins" %1, [%2]\n" ) \
265 THUMB( " add %2, %2, #1\n" ) \
266 " mov %1, %1, "NEXT_BYTE"\n" \
267 "4: "ins" %1, [%2]\n" \
269 " .section .fixup,\"ax\"\n" \
274 " .section __ex_table,\"a\"\n" \
281 : "=r" (err), "=&r" (v), "=&r" (a) \
282 : "0" (err), "1" (v), "2" (a)); \
287 #define put32_unaligned_check(val,addr) \
288 __put32_unaligned_check("strb", val, addr)
290 #define put32t_unaligned_check(val,addr) \
291 __put32_unaligned_check("strbt", val, addr)
294 do_alignment_finish_ldst(unsigned long addr
, unsigned long instr
, struct pt_regs
*regs
, union offset_union offset
)
296 if (!LDST_U_BIT(instr
))
297 offset
.un
= -offset
.un
;
299 if (!LDST_P_BIT(instr
))
302 if (!LDST_P_BIT(instr
) || LDST_W_BIT(instr
))
303 regs
->uregs
[RN_BITS(instr
)] = addr
;
307 do_alignment_ldrhstrh(unsigned long addr
, unsigned long instr
, struct pt_regs
*regs
)
309 unsigned int rd
= RD_BITS(instr
);
316 if (LDST_L_BIT(instr
)) {
318 get16_unaligned_check(val
, addr
);
320 /* signed half-word? */
322 val
= (signed long)((signed short) val
);
324 regs
->uregs
[rd
] = val
;
326 put16_unaligned_check(regs
->uregs
[rd
], addr
);
331 if (LDST_L_BIT(instr
)) {
333 get16t_unaligned_check(val
, addr
);
335 /* signed half-word? */
337 val
= (signed long)((signed short) val
);
339 regs
->uregs
[rd
] = val
;
341 put16t_unaligned_check(regs
->uregs
[rd
], addr
);
350 do_alignment_ldrdstrd(unsigned long addr
, unsigned long instr
,
351 struct pt_regs
*regs
)
353 unsigned int rd
= RD_BITS(instr
);
357 if ((instr
& 0xfe000000) == 0xe8000000) {
358 /* ARMv7 Thumb-2 32-bit LDRD/STRD */
359 rd2
= (instr
>> 8) & 0xf;
360 load
= !!(LDST_L_BIT(instr
));
361 } else if (((rd
& 1) == 1) || (rd
== 14))
364 load
= ((instr
& 0xf0) == 0xd0);
375 get32_unaligned_check(val
, addr
);
376 regs
->uregs
[rd
] = val
;
377 get32_unaligned_check(val
, addr
+ 4);
378 regs
->uregs
[rd2
] = val
;
380 put32_unaligned_check(regs
->uregs
[rd
], addr
);
381 put32_unaligned_check(regs
->uregs
[rd2
], addr
+ 4);
389 get32t_unaligned_check(val
, addr
);
390 regs
->uregs
[rd
] = val
;
391 get32t_unaligned_check(val
, addr
+ 4);
392 regs
->uregs
[rd2
] = val
;
394 put32t_unaligned_check(regs
->uregs
[rd
], addr
);
395 put32t_unaligned_check(regs
->uregs
[rd2
], addr
+ 4);
406 do_alignment_ldrstr(unsigned long addr
, unsigned long instr
, struct pt_regs
*regs
)
408 unsigned int rd
= RD_BITS(instr
);
412 if ((!LDST_P_BIT(instr
) && LDST_W_BIT(instr
)) || user_mode(regs
))
415 if (LDST_L_BIT(instr
)) {
417 get32_unaligned_check(val
, addr
);
418 regs
->uregs
[rd
] = val
;
420 put32_unaligned_check(regs
->uregs
[rd
], addr
);
424 if (LDST_L_BIT(instr
)) {
426 get32t_unaligned_check(val
, addr
);
427 regs
->uregs
[rd
] = val
;
429 put32t_unaligned_check(regs
->uregs
[rd
], addr
);
437 * LDM/STM alignment handler.
439 * There are 4 variants of this instruction:
441 * B = rn pointer before instruction, A = rn pointer after instruction
442 * ------ increasing address ----->
443 * | | r0 | r1 | ... | rx | |
450 do_alignment_ldmstm(unsigned long addr
, unsigned long instr
, struct pt_regs
*regs
)
452 unsigned int rd
, rn
, correction
, nr_regs
, regbits
;
453 unsigned long eaddr
, newaddr
;
455 if (LDM_S_BIT(instr
))
458 correction
= 4; /* processor implementation defined */
459 regs
->ARM_pc
+= correction
;
463 /* count the number of registers in the mask to be transferred */
464 nr_regs
= hweight16(REGMASK_BITS(instr
)) * 4;
467 newaddr
= eaddr
= regs
->uregs
[rn
];
469 if (!LDST_U_BIT(instr
))
472 if (!LDST_U_BIT(instr
))
475 if (LDST_P_EQ_U(instr
)) /* U = P */
479 * For alignment faults on the ARM922T/ARM920T the MMU makes
480 * the FSR (and hence addr) equal to the updated base address
481 * of the multiple access rather than the restored value.
482 * Switch this message off if we've got a ARM92[02], otherwise
483 * [ls]dm alignment faults are noisy!
485 #if !(defined CONFIG_CPU_ARM922T) && !(defined CONFIG_CPU_ARM920T)
487 * This is a "hint" - we already have eaddr worked out by the
491 printk(KERN_ERR
"LDMSTM: PC = %08lx, instr = %08lx, "
492 "addr = %08lx, eaddr = %08lx\n",
493 instruction_pointer(regs
), instr
, addr
, eaddr
);
498 if (user_mode(regs
)) {
499 for (regbits
= REGMASK_BITS(instr
), rd
= 0; regbits
;
500 regbits
>>= 1, rd
+= 1)
502 if (LDST_L_BIT(instr
)) {
504 get32t_unaligned_check(val
, eaddr
);
505 regs
->uregs
[rd
] = val
;
507 put32t_unaligned_check(regs
->uregs
[rd
], eaddr
);
511 for (regbits
= REGMASK_BITS(instr
), rd
= 0; regbits
;
512 regbits
>>= 1, rd
+= 1)
514 if (LDST_L_BIT(instr
)) {
516 get32_unaligned_check(val
, eaddr
);
517 regs
->uregs
[rd
] = val
;
519 put32_unaligned_check(regs
->uregs
[rd
], eaddr
);
524 if (LDST_W_BIT(instr
))
525 regs
->uregs
[rn
] = newaddr
;
526 if (!LDST_L_BIT(instr
) || !(REGMASK_BITS(instr
) & (1 << 15)))
527 regs
->ARM_pc
-= correction
;
531 regs
->ARM_pc
-= correction
;
535 printk(KERN_ERR
"Alignment trap: not handling ldm with s-bit set\n");
540 * Convert Thumb ld/st instruction forms to equivalent ARM instructions so
541 * we can reuse ARM userland alignment fault fixups for Thumb.
543 * This implementation was initially based on the algorithm found in
544 * gdb/sim/arm/thumbemu.c. It is basically just a code reduction of same
545 * to convert only Thumb ld/st instruction forms to equivalent ARM forms.
548 * 1. Comments below refer to ARM ARM DDI0100E Thumb Instruction sections.
549 * 2. If for some reason we're passed an non-ld/st Thumb instruction to
550 * decode, we return 0xdeadc0de. This should never happen under normal
551 * circumstances but if it does, we've got other problems to deal with
552 * elsewhere and we obviously can't fix those problems here.
556 thumb2arm(u16 tinstr
)
558 u32 L
= (tinstr
& (1<<11)) >> 11;
560 switch ((tinstr
& 0xf800) >> 11) {
561 /* 6.5.1 Format 1: */
562 case 0x6000 >> 11: /* 7.1.52 STR(1) */
563 case 0x6800 >> 11: /* 7.1.26 LDR(1) */
564 case 0x7000 >> 11: /* 7.1.55 STRB(1) */
565 case 0x7800 >> 11: /* 7.1.30 LDRB(1) */
567 ((tinstr
& (1<<12)) << (22-12)) | /* fixup */
568 (L
<<20) | /* L==1? */
569 ((tinstr
& (7<<0)) << (12-0)) | /* Rd */
570 ((tinstr
& (7<<3)) << (16-3)) | /* Rn */
571 ((tinstr
& (31<<6)) >> /* immed_5 */
572 (6 - ((tinstr
& (1<<12)) ? 0 : 2)));
573 case 0x8000 >> 11: /* 7.1.57 STRH(1) */
574 case 0x8800 >> 11: /* 7.1.32 LDRH(1) */
576 (L
<<20) | /* L==1? */
577 ((tinstr
& (7<<0)) << (12-0)) | /* Rd */
578 ((tinstr
& (7<<3)) << (16-3)) | /* Rn */
579 ((tinstr
& (7<<6)) >> (6-1)) | /* immed_5[2:0] */
580 ((tinstr
& (3<<9)) >> (9-8)); /* immed_5[4:3] */
582 /* 6.5.1 Format 2: */
586 static const u32 subset
[8] = {
587 0xe7800000, /* 7.1.53 STR(2) */
588 0xe18000b0, /* 7.1.58 STRH(2) */
589 0xe7c00000, /* 7.1.56 STRB(2) */
590 0xe19000d0, /* 7.1.34 LDRSB */
591 0xe7900000, /* 7.1.27 LDR(2) */
592 0xe19000b0, /* 7.1.33 LDRH(2) */
593 0xe7d00000, /* 7.1.31 LDRB(2) */
594 0xe19000f0 /* 7.1.35 LDRSH */
596 return subset
[(tinstr
& (7<<9)) >> 9] |
597 ((tinstr
& (7<<0)) << (12-0)) | /* Rd */
598 ((tinstr
& (7<<3)) << (16-3)) | /* Rn */
599 ((tinstr
& (7<<6)) >> (6-0)); /* Rm */
602 /* 6.5.1 Format 3: */
603 case 0x4800 >> 11: /* 7.1.28 LDR(3) */
604 /* NOTE: This case is not technically possible. We're
605 * loading 32-bit memory data via PC relative
606 * addressing mode. So we can and should eliminate
607 * this case. But I'll leave it here for now.
610 ((tinstr
& (7<<8)) << (12-8)) | /* Rd */
611 ((tinstr
& 255) << (2-0)); /* immed_8 */
613 /* 6.5.1 Format 4: */
614 case 0x9000 >> 11: /* 7.1.54 STR(3) */
615 case 0x9800 >> 11: /* 7.1.29 LDR(4) */
617 (L
<<20) | /* L==1? */
618 ((tinstr
& (7<<8)) << (12-8)) | /* Rd */
619 ((tinstr
& 255) << 2); /* immed_8 */
621 /* 6.6.1 Format 1: */
622 case 0xc000 >> 11: /* 7.1.51 STMIA */
623 case 0xc800 >> 11: /* 7.1.25 LDMIA */
625 u32 Rn
= (tinstr
& (7<<8)) >> 8;
626 u32 W
= ((L
<<Rn
) & (tinstr
&255)) ? 0 : 1<<21;
628 return 0xe8800000 | W
| (L
<<20) | (Rn
<<16) |
632 /* 6.6.1 Format 2: */
633 case 0xb000 >> 11: /* 7.1.48 PUSH */
634 case 0xb800 >> 11: /* 7.1.47 POP */
635 if ((tinstr
& (3 << 9)) == 0x0400) {
636 static const u32 subset
[4] = {
637 0xe92d0000, /* STMDB sp!,{registers} */
638 0xe92d4000, /* STMDB sp!,{registers,lr} */
639 0xe8bd0000, /* LDMIA sp!,{registers} */
640 0xe8bd8000 /* LDMIA sp!,{registers,pc} */
642 return subset
[(L
<<1) | ((tinstr
& (1<<8)) >> 8)] |
643 (tinstr
& 255); /* register_list */
645 /* Else fall through for illegal instruction case */
653 * Convert Thumb-2 32 bit LDM, STM, LDRD, STRD to equivalent instruction
654 * handlable by ARM alignment handler, also find the corresponding handler,
655 * so that we can reuse ARM userland alignment fault fixups for Thumb.
657 * @pinstr: original Thumb-2 instruction; returns new handlable instruction
658 * @regs: register context.
659 * @poffset: return offset from faulted addr for later writeback
662 * 1. Comments below refer to ARMv7 DDI0406A Thumb Instruction sections.
663 * 2. Register name Rt from ARMv7 is same as Rd from ARMv6 (Rd is Rt)
666 do_alignment_t32_to_handler(unsigned long *pinstr
, struct pt_regs
*regs
,
667 union offset_union
*poffset
)
669 unsigned long instr
= *pinstr
;
670 u16 tinst1
= (instr
>> 16) & 0xffff;
671 u16 tinst2
= instr
& 0xffff;
674 switch (tinst1
& 0xffe0) {
675 /* A6.3.5 Load/Store multiple */
676 case 0xe880: /* STM/STMIA/STMEA,LDM/LDMIA, PUSH/POP T2 */
677 case 0xe8a0: /* ...above writeback version */
678 case 0xe900: /* STMDB/STMFD, LDMDB/LDMEA */
679 case 0xe920: /* ...above writeback version */
680 /* no need offset decision since handler calculates it */
681 return do_alignment_ldmstm
;
683 case 0xf840: /* POP/PUSH T3 (single register) */
684 if (RN_BITS(instr
) == 13 && (tinst2
& 0x09ff) == 0x0904) {
685 u32 L
= !!(LDST_L_BIT(instr
));
686 const u32 subset
[2] = {
687 0xe92d0000, /* STMDB sp!,{registers} */
688 0xe8bd0000, /* LDMIA sp!,{registers} */
690 *pinstr
= subset
[L
] | (1<<RD_BITS(instr
));
691 return do_alignment_ldmstm
;
693 /* Else fall through for illegal instruction case */
696 /* A6.3.6 Load/store double, STRD/LDRD(immed, lit, reg) */
701 poffset
->un
= (tinst2
& 0xff) << 2;
704 return do_alignment_ldrdstrd
;
707 * No need to handle load/store instructions up to word size
708 * since ARMv6 and later CPUs can perform unaligned accesses.
717 do_alignment(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
)
719 union offset_union offset
;
720 unsigned long instr
= 0, instrptr
;
721 int (*handler
)(unsigned long addr
, unsigned long instr
, struct pt_regs
*regs
);
729 instrptr
= instruction_pointer(regs
);
733 if (thumb_mode(regs
)) {
734 fault
= __get_user(tinstr
, (u16
*)(instrptr
& ~1));
736 if (cpu_architecture() >= CPU_ARCH_ARMv7
&&
740 fault
= __get_user(tinst2
, (u16
*)(instrptr
+2));
741 instr
= (tinstr
<< 16) | tinst2
;
745 instr
= thumb2arm(tinstr
);
749 fault
= __get_user(instr
, (u32
*)instrptr
);
764 regs
->ARM_pc
+= isize
;
766 switch (CODING_BITS(instr
)) {
767 case 0x00000000: /* 3.13.4 load/store instruction extensions */
768 if (LDSTHD_I_BIT(instr
))
769 offset
.un
= (instr
& 0xf00) >> 4 | (instr
& 15);
771 offset
.un
= regs
->uregs
[RM_BITS(instr
)];
773 if ((instr
& 0x000000f0) == 0x000000b0 || /* LDRH, STRH */
774 (instr
& 0x001000f0) == 0x001000f0) /* LDRSH */
775 handler
= do_alignment_ldrhstrh
;
776 else if ((instr
& 0x001000f0) == 0x000000d0 || /* LDRD */
777 (instr
& 0x001000f0) == 0x000000f0) /* STRD */
778 handler
= do_alignment_ldrdstrd
;
779 else if ((instr
& 0x01f00ff0) == 0x01000090) /* SWP */
785 case 0x04000000: /* ldr or str immediate */
786 offset
.un
= OFFSET_BITS(instr
);
787 handler
= do_alignment_ldrstr
;
790 case 0x06000000: /* ldr or str register */
791 offset
.un
= regs
->uregs
[RM_BITS(instr
)];
793 if (IS_SHIFT(instr
)) {
794 unsigned int shiftval
= SHIFT_BITS(instr
);
796 switch(SHIFT_TYPE(instr
)) {
798 offset
.un
<<= shiftval
;
802 offset
.un
>>= shiftval
;
806 offset
.sn
>>= shiftval
;
812 if (regs
->ARM_cpsr
& PSR_C_BIT
)
813 offset
.un
|= 1 << 31;
815 offset
.un
= offset
.un
>> shiftval
|
816 offset
.un
<< (32 - shiftval
);
820 handler
= do_alignment_ldrstr
;
823 case 0x08000000: /* ldm or stm, or thumb-2 32bit instruction */
825 handler
= do_alignment_t32_to_handler(&instr
, regs
, &offset
);
827 handler
= do_alignment_ldmstm
;
836 type
= handler(addr
, instr
, regs
);
838 if (type
== TYPE_ERROR
|| type
== TYPE_FAULT
) {
839 regs
->ARM_pc
-= isize
;
843 if (type
== TYPE_LDST
)
844 do_alignment_finish_ldst(addr
, instr
, regs
, offset
);
849 if (type
== TYPE_ERROR
)
852 * We got a fault - fix it up, or die.
854 do_bad_area(addr
, fsr
, regs
);
858 printk(KERN_ERR
"Alignment trap: not handling swp instruction\n");
862 * Oops, we didn't handle the instruction.
864 printk(KERN_ERR
"Alignment trap: not handling instruction "
865 "%0*lx at [<%08lx>]\n",
867 isize
== 2 ? tinstr
: instr
, instrptr
);
874 if (ai_usermode
& UM_WARN
)
875 printk("Alignment trap: %s (%d) PC=0x%08lx Instr=0x%0*lx "
876 "Address=0x%08lx FSR 0x%03x\n", current
->comm
,
877 task_pid_nr(current
), instrptr
,
879 isize
== 2 ? tinstr
: instr
,
882 if (ai_usermode
& UM_FIXUP
)
885 if (ai_usermode
& UM_SIGNAL
)
886 force_sig(SIGBUS
, current
);
888 set_cr(cr_no_alignment
);
894 * This needs to be done after sysctl_init, otherwise sys/ will be
895 * overwritten. Actually, this shouldn't be in sys/ at all since
896 * it isn't a sysctl, and it doesn't contain sysctl information.
897 * We now locate it in /proc/cpu/alignment instead.
899 static int __init
alignment_init(void)
901 #ifdef CONFIG_PROC_FS
902 struct proc_dir_entry
*res
;
904 res
= proc_mkdir("cpu", NULL
);
908 res
= create_proc_entry("alignment", S_IWUSR
| S_IRUGO
, res
);
912 res
->read_proc
= proc_alignment_read
;
913 res
->write_proc
= proc_alignment_write
;
917 * ARMv6 and later CPUs can perform unaligned accesses for
918 * most single load and store instructions up to word size.
919 * LDM, STM, LDRD and STRD still need to be handled.
921 * Ignoring the alignment fault is not an option on these
922 * CPUs since we spin re-faulting the instruction without
923 * making any progress.
925 if (cpu_architecture() >= CPU_ARCH_ARMv6
&& (cr_alignment
& CR_U
)) {
926 cr_alignment
&= ~CR_A
;
927 cr_no_alignment
&= ~CR_A
;
928 set_cr(cr_alignment
);
929 ai_usermode
= UM_FIXUP
;
932 hook_fault_code(1, do_alignment
, SIGILL
, "alignment exception");
933 hook_fault_code(3, do_alignment
, SIGILL
, "alignment exception");
938 fs_initcall(alignment_init
);