xref: /openbmc/linux/arch/mips/kernel/unaligned.c (revision 3cf5d076)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * Handle unaligned accesses by emulation.
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * This file is subject to the terms and conditions of the GNU General Public
51da177e4SLinus Torvalds  * License.  See the file "COPYING" in the main directory of this archive
61da177e4SLinus Torvalds  * for more details.
71da177e4SLinus Torvalds  *
81da177e4SLinus Torvalds  * Copyright (C) 1996, 1998, 1999, 2002 by Ralf Baechle
91da177e4SLinus Torvalds  * Copyright (C) 1999 Silicon Graphics, Inc.
109d8e5736SMarkos Chandras  * Copyright (C) 2014 Imagination Technologies Ltd.
111da177e4SLinus Torvalds  *
121da177e4SLinus Torvalds  * This file contains exception handler for address error exception with the
131da177e4SLinus Torvalds  * special capability to execute faulting instructions in software.  The
141da177e4SLinus Torvalds  * handler does not try to handle the case when the program counter points
151da177e4SLinus Torvalds  * to an address not aligned to a word boundary.
161da177e4SLinus Torvalds  *
171da177e4SLinus Torvalds  * Putting data to unaligned addresses is a bad practice even on Intel where
181da177e4SLinus Torvalds  * only the performance is affected.  Much worse is that such code is non-
191da177e4SLinus Torvalds  * portable.  Due to several programs that die on MIPS due to alignment
201da177e4SLinus Torvalds  * problems I decided to implement this handler anyway though I originally
211da177e4SLinus Torvalds  * didn't intend to do this at all for user code.
221da177e4SLinus Torvalds  *
231da177e4SLinus Torvalds  * For now I enable fixing of address errors by default to make life easier.
241da177e4SLinus Torvalds  * I however intend to disable this somewhen in the future when the alignment
251da177e4SLinus Torvalds  * problems with user programs have been fixed.	 For programmers this is the
261da177e4SLinus Torvalds  * right way to go.
271da177e4SLinus Torvalds  *
281da177e4SLinus Torvalds  * Fixing address errors is a per process option.  The option is inherited
291da177e4SLinus Torvalds  * across fork(2) and execve(2) calls.	If you really want to use the
301da177e4SLinus Torvalds  * option in your user programs - I discourage the use of the software
311da177e4SLinus Torvalds  * emulation strongly - use the following code in your userland stuff:
321da177e4SLinus Torvalds  *
331da177e4SLinus Torvalds  * #include <sys/sysmips.h>
341da177e4SLinus Torvalds  *
351da177e4SLinus Torvalds  * ...
361da177e4SLinus Torvalds  * sysmips(MIPS_FIXADE, x);
371da177e4SLinus Torvalds  * ...
381da177e4SLinus Torvalds  *
391da177e4SLinus Torvalds  * The argument x is 0 for disabling software emulation, enabled otherwise.
401da177e4SLinus Torvalds  *
411da177e4SLinus Torvalds  * Below a little program to play around with this feature.
421da177e4SLinus Torvalds  *
431da177e4SLinus Torvalds  * #include <stdio.h>
441da177e4SLinus Torvalds  * #include <sys/sysmips.h>
451da177e4SLinus Torvalds  *
461da177e4SLinus Torvalds  * struct foo {
471da177e4SLinus Torvalds  *	   unsigned char bar[8];
481da177e4SLinus Torvalds  * };
491da177e4SLinus Torvalds  *
501da177e4SLinus Torvalds  * main(int argc, char *argv[])
511da177e4SLinus Torvalds  * {
521da177e4SLinus Torvalds  *	   struct foo x = {0, 1, 2, 3, 4, 5, 6, 7};
531da177e4SLinus Torvalds  *	   unsigned int *p = (unsigned int *) (x.bar + 3);
541da177e4SLinus Torvalds  *	   int i;
551da177e4SLinus Torvalds  *
561da177e4SLinus Torvalds  *	   if (argc > 1)
571da177e4SLinus Torvalds  *		   sysmips(MIPS_FIXADE, atoi(argv[1]));
581da177e4SLinus Torvalds  *
591da177e4SLinus Torvalds  *	   printf("*p = %08lx\n", *p);
601da177e4SLinus Torvalds  *
611da177e4SLinus Torvalds  *	   *p = 0xdeadface;
621da177e4SLinus Torvalds  *
631da177e4SLinus Torvalds  *	   for(i = 0; i <= 7; i++)
641da177e4SLinus Torvalds  *	   printf("%02x ", x.bar[i]);
651da177e4SLinus Torvalds  *	   printf("\n");
661da177e4SLinus Torvalds  * }
671da177e4SLinus Torvalds  *
681da177e4SLinus Torvalds  * Coprocessor loads are not supported; I think this case is unimportant
691da177e4SLinus Torvalds  * in the practice.
701da177e4SLinus Torvalds  *
711da177e4SLinus Torvalds  * TODO: Handle ndc (attempted store to doubleword in uncached memory)
721da177e4SLinus Torvalds  *	 exception for the R6000.
731da177e4SLinus Torvalds  *	 A store crossing a page boundary might be executed only partially.
741da177e4SLinus Torvalds  *	 Undo the partial store in this case.
751da177e4SLinus Torvalds  */
76c3fc5cd5SRalf Baechle #include <linux/context_tracking.h>
771da177e4SLinus Torvalds #include <linux/mm.h>
781da177e4SLinus Torvalds #include <linux/signal.h>
791da177e4SLinus Torvalds #include <linux/smp.h>
80e8edc6e0SAlexey Dobriyan #include <linux/sched.h>
816312e0eeSAtsushi Nemoto #include <linux/debugfs.h>
827f788d2dSDeng-Cheng Zhu #include <linux/perf_event.h>
837f788d2dSDeng-Cheng Zhu 
841da177e4SLinus Torvalds #include <asm/asm.h>
851da177e4SLinus Torvalds #include <asm/branch.h>
861da177e4SLinus Torvalds #include <asm/byteorder.h>
8769f3a7deSRalf Baechle #include <asm/cop2.h>
8875dcfc1dSPaul Burton #include <asm/debug.h>
89102cedc3SLeonid Yegoshin #include <asm/fpu.h>
90102cedc3SLeonid Yegoshin #include <asm/fpu_emulator.h>
911da177e4SLinus Torvalds #include <asm/inst.h>
92c8790d65SPaul Burton #include <asm/mmu_context.h>
937c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
941da177e4SLinus Torvalds 
951da177e4SLinus Torvalds #define STR(x)	__STR(x)
961da177e4SLinus Torvalds #define __STR(x)  #x
971da177e4SLinus Torvalds 
986312e0eeSAtsushi Nemoto enum {
996312e0eeSAtsushi Nemoto 	UNALIGNED_ACTION_QUIET,
1006312e0eeSAtsushi Nemoto 	UNALIGNED_ACTION_SIGNAL,
1016312e0eeSAtsushi Nemoto 	UNALIGNED_ACTION_SHOW,
1026312e0eeSAtsushi Nemoto };
1036312e0eeSAtsushi Nemoto #ifdef CONFIG_DEBUG_FS
1046312e0eeSAtsushi Nemoto static u32 unaligned_instructions;
1056312e0eeSAtsushi Nemoto static u32 unaligned_action;
1066312e0eeSAtsushi Nemoto #else
1076312e0eeSAtsushi Nemoto #define unaligned_action UNALIGNED_ACTION_QUIET
1081da177e4SLinus Torvalds #endif
1096312e0eeSAtsushi Nemoto extern void show_registers(struct pt_regs *regs);
1101da177e4SLinus Torvalds 
11134c2f668SLeonid Yegoshin #ifdef __BIG_ENDIAN
112eeb53895SMarkos Chandras #define     _LoadHW(addr, value, res, type)  \
1133563c32dSMarkos Chandras do {                                                        \
11434c2f668SLeonid Yegoshin 		__asm__ __volatile__ (".set\tnoat\n"        \
115eeb53895SMarkos Chandras 			"1:\t"type##_lb("%0", "0(%2)")"\n"  \
116eeb53895SMarkos Chandras 			"2:\t"type##_lbu("$1", "1(%2)")"\n\t"\
11734c2f668SLeonid Yegoshin 			"sll\t%0, 0x8\n\t"                  \
11834c2f668SLeonid Yegoshin 			"or\t%0, $1\n\t"                    \
11934c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
12034c2f668SLeonid Yegoshin 			"3:\t.set\tat\n\t"                  \
12134c2f668SLeonid Yegoshin 			".insn\n\t"                         \
12234c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
12334c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
12434c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
12534c2f668SLeonid Yegoshin 			".previous\n\t"                     \
12634c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
12734c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
12834c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
12934c2f668SLeonid Yegoshin 			".previous"                         \
13034c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
1313563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
1323563c32dSMarkos Chandras } while(0)
13334c2f668SLeonid Yegoshin 
134932afdeeSYasha Cherikovsky #ifdef CONFIG_CPU_HAS_LOAD_STORE_LR
135eeb53895SMarkos Chandras #define     _LoadW(addr, value, res, type)   \
1363563c32dSMarkos Chandras do {                                                        \
13734c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
138eeb53895SMarkos Chandras 			"1:\t"type##_lwl("%0", "(%2)")"\n"   \
139eeb53895SMarkos Chandras 			"2:\t"type##_lwr("%0", "3(%2)")"\n\t"\
14034c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
14134c2f668SLeonid Yegoshin 			"3:\n\t"                            \
14234c2f668SLeonid Yegoshin 			".insn\n\t"                         \
14334c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
14434c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
14534c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
14634c2f668SLeonid Yegoshin 			".previous\n\t"                     \
14734c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
14834c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
14934c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
15034c2f668SLeonid Yegoshin 			".previous"                         \
15134c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
1523563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
1533563c32dSMarkos Chandras } while(0)
1543563c32dSMarkos Chandras 
155932afdeeSYasha Cherikovsky #else /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
156932afdeeSYasha Cherikovsky /* For CPUs without lwl instruction */
157eeb53895SMarkos Chandras #define     _LoadW(addr, value, res, type) \
1583563c32dSMarkos Chandras do {                                                        \
1590593a44cSLeonid Yegoshin 		__asm__ __volatile__ (			    \
1600593a44cSLeonid Yegoshin 			".set\tpush\n"			    \
1610593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
162eeb53895SMarkos Chandras 			"1:"type##_lb("%0", "0(%2)")"\n\t"  \
163eeb53895SMarkos Chandras 			"2:"type##_lbu("$1", "1(%2)")"\n\t" \
1640593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
1650593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
166eeb53895SMarkos Chandras 			"3:"type##_lbu("$1", "2(%2)")"\n\t" \
1670593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
1680593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
169eeb53895SMarkos Chandras 			"4:"type##_lbu("$1", "3(%2)")"\n\t" \
1700593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
1710593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
1720593a44cSLeonid Yegoshin 			"li\t%1, 0\n"			    \
1730593a44cSLeonid Yegoshin 			".set\tpop\n"			    \
1740593a44cSLeonid Yegoshin 			"10:\n\t"			    \
1750593a44cSLeonid Yegoshin 			".insn\n\t"			    \
1760593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
1770593a44cSLeonid Yegoshin 			"11:\tli\t%1, %3\n\t"		    \
1780593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
1790593a44cSLeonid Yegoshin 			".previous\n\t"			    \
1800593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
1810593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
1820593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
1830593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
1840593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
1850593a44cSLeonid Yegoshin 			".previous"			    \
1860593a44cSLeonid Yegoshin 			: "=&r" (value), "=r" (res)	    \
1873563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
1883563c32dSMarkos Chandras } while(0)
1893563c32dSMarkos Chandras 
190932afdeeSYasha Cherikovsky #endif /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
19134c2f668SLeonid Yegoshin 
192eeb53895SMarkos Chandras #define     _LoadHWU(addr, value, res, type) \
1933563c32dSMarkos Chandras do {                                                        \
19434c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
19534c2f668SLeonid Yegoshin 			".set\tnoat\n"                      \
196eeb53895SMarkos Chandras 			"1:\t"type##_lbu("%0", "0(%2)")"\n" \
197eeb53895SMarkos Chandras 			"2:\t"type##_lbu("$1", "1(%2)")"\n\t"\
19834c2f668SLeonid Yegoshin 			"sll\t%0, 0x8\n\t"                  \
19934c2f668SLeonid Yegoshin 			"or\t%0, $1\n\t"                    \
20034c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
20134c2f668SLeonid Yegoshin 			"3:\n\t"                            \
20234c2f668SLeonid Yegoshin 			".insn\n\t"                         \
20334c2f668SLeonid Yegoshin 			".set\tat\n\t"                      \
20434c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
20534c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
20634c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
20734c2f668SLeonid Yegoshin 			".previous\n\t"                     \
20834c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
20934c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
21034c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
21134c2f668SLeonid Yegoshin 			".previous"                         \
21234c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
2133563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
2143563c32dSMarkos Chandras } while(0)
21534c2f668SLeonid Yegoshin 
216932afdeeSYasha Cherikovsky #ifdef CONFIG_CPU_HAS_LOAD_STORE_LR
217eeb53895SMarkos Chandras #define     _LoadWU(addr, value, res, type)  \
2183563c32dSMarkos Chandras do {                                                        \
21934c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
220eeb53895SMarkos Chandras 			"1:\t"type##_lwl("%0", "(%2)")"\n"  \
221eeb53895SMarkos Chandras 			"2:\t"type##_lwr("%0", "3(%2)")"\n\t"\
22234c2f668SLeonid Yegoshin 			"dsll\t%0, %0, 32\n\t"              \
22334c2f668SLeonid Yegoshin 			"dsrl\t%0, %0, 32\n\t"              \
22434c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
22534c2f668SLeonid Yegoshin 			"3:\n\t"                            \
22634c2f668SLeonid Yegoshin 			".insn\n\t"                         \
22734c2f668SLeonid Yegoshin 			"\t.section\t.fixup,\"ax\"\n\t"     \
22834c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
22934c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
23034c2f668SLeonid Yegoshin 			".previous\n\t"                     \
23134c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
23234c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
23334c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
23434c2f668SLeonid Yegoshin 			".previous"                         \
23534c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
2363563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
2373563c32dSMarkos Chandras } while(0)
23834c2f668SLeonid Yegoshin 
239eeb53895SMarkos Chandras #define     _LoadDW(addr, value, res)  \
2403563c32dSMarkos Chandras do {                                                        \
24134c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
24234c2f668SLeonid Yegoshin 			"1:\tldl\t%0, (%2)\n"               \
24334c2f668SLeonid Yegoshin 			"2:\tldr\t%0, 7(%2)\n\t"            \
24434c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
24534c2f668SLeonid Yegoshin 			"3:\n\t"                            \
24634c2f668SLeonid Yegoshin 			".insn\n\t"                         \
24734c2f668SLeonid Yegoshin 			"\t.section\t.fixup,\"ax\"\n\t"     \
24834c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
24934c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
25034c2f668SLeonid Yegoshin 			".previous\n\t"                     \
25134c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
25234c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
25334c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
25434c2f668SLeonid Yegoshin 			".previous"                         \
25534c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
2563563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
2573563c32dSMarkos Chandras } while(0)
2583563c32dSMarkos Chandras 
259932afdeeSYasha Cherikovsky #else /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
260932afdeeSYasha Cherikovsky /* For CPUs without lwl and ldl instructions */
261eeb53895SMarkos Chandras #define	    _LoadWU(addr, value, res, type) \
2623563c32dSMarkos Chandras do {                                                        \
2630593a44cSLeonid Yegoshin 		__asm__ __volatile__ (			    \
2640593a44cSLeonid Yegoshin 			".set\tpush\n\t"		    \
2650593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
266eeb53895SMarkos Chandras 			"1:"type##_lbu("%0", "0(%2)")"\n\t" \
267eeb53895SMarkos Chandras 			"2:"type##_lbu("$1", "1(%2)")"\n\t" \
2680593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
2690593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
270eeb53895SMarkos Chandras 			"3:"type##_lbu("$1", "2(%2)")"\n\t" \
2710593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
2720593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
273eeb53895SMarkos Chandras 			"4:"type##_lbu("$1", "3(%2)")"\n\t" \
2740593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
2750593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
2760593a44cSLeonid Yegoshin 			"li\t%1, 0\n"			    \
2770593a44cSLeonid Yegoshin 			".set\tpop\n"			    \
2780593a44cSLeonid Yegoshin 			"10:\n\t"			    \
2790593a44cSLeonid Yegoshin 			".insn\n\t"			    \
2800593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
2810593a44cSLeonid Yegoshin 			"11:\tli\t%1, %3\n\t"		    \
2820593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
2830593a44cSLeonid Yegoshin 			".previous\n\t"			    \
2840593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
2850593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
2860593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
2870593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
2880593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
2890593a44cSLeonid Yegoshin 			".previous"			    \
2900593a44cSLeonid Yegoshin 			: "=&r" (value), "=r" (res)	    \
2913563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
2923563c32dSMarkos Chandras } while(0)
2930593a44cSLeonid Yegoshin 
294eeb53895SMarkos Chandras #define     _LoadDW(addr, value, res)  \
2953563c32dSMarkos Chandras do {                                                        \
2960593a44cSLeonid Yegoshin 		__asm__ __volatile__ (			    \
2970593a44cSLeonid Yegoshin 			".set\tpush\n\t"		    \
2980593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
2990593a44cSLeonid Yegoshin 			"1:lb\t%0, 0(%2)\n\t"    	    \
3000593a44cSLeonid Yegoshin 			"2:lbu\t $1, 1(%2)\n\t"   	    \
3010593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
3020593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
3030593a44cSLeonid Yegoshin 			"3:lbu\t$1, 2(%2)\n\t"   	    \
3040593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
3050593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
3060593a44cSLeonid Yegoshin 			"4:lbu\t$1, 3(%2)\n\t"   	    \
3070593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
3080593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
3090593a44cSLeonid Yegoshin 			"5:lbu\t$1, 4(%2)\n\t"   	    \
3100593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
3110593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
3120593a44cSLeonid Yegoshin 			"6:lbu\t$1, 5(%2)\n\t"   	    \
3130593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
3140593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
3150593a44cSLeonid Yegoshin 			"7:lbu\t$1, 6(%2)\n\t"   	    \
3160593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
3170593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
3180593a44cSLeonid Yegoshin 			"8:lbu\t$1, 7(%2)\n\t"   	    \
3190593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
3200593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
3210593a44cSLeonid Yegoshin 			"li\t%1, 0\n"			    \
3220593a44cSLeonid Yegoshin 			".set\tpop\n\t"			    \
3230593a44cSLeonid Yegoshin 			"10:\n\t"			    \
3240593a44cSLeonid Yegoshin 			".insn\n\t"			    \
3250593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
3260593a44cSLeonid Yegoshin 			"11:\tli\t%1, %3\n\t"		    \
3270593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
3280593a44cSLeonid Yegoshin 			".previous\n\t"			    \
3290593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
3300593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
3310593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
3320593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
3330593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
3340593a44cSLeonid Yegoshin 			STR(PTR)"\t5b, 11b\n\t"		    \
3350593a44cSLeonid Yegoshin 			STR(PTR)"\t6b, 11b\n\t"		    \
3360593a44cSLeonid Yegoshin 			STR(PTR)"\t7b, 11b\n\t"		    \
3370593a44cSLeonid Yegoshin 			STR(PTR)"\t8b, 11b\n\t"		    \
3380593a44cSLeonid Yegoshin 			".previous"			    \
3390593a44cSLeonid Yegoshin 			: "=&r" (value), "=r" (res)	    \
3403563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
3413563c32dSMarkos Chandras } while(0)
3423563c32dSMarkos Chandras 
343932afdeeSYasha Cherikovsky #endif /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
3440593a44cSLeonid Yegoshin 
34534c2f668SLeonid Yegoshin 
346eeb53895SMarkos Chandras #define     _StoreHW(addr, value, res, type) \
3473563c32dSMarkos Chandras do {                                                        \
34834c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
34934c2f668SLeonid Yegoshin 			".set\tnoat\n"                      \
350eeb53895SMarkos Chandras 			"1:\t"type##_sb("%1", "1(%2)")"\n"  \
35134c2f668SLeonid Yegoshin 			"srl\t$1, %1, 0x8\n"                \
352eeb53895SMarkos Chandras 			"2:\t"type##_sb("$1", "0(%2)")"\n"  \
35334c2f668SLeonid Yegoshin 			".set\tat\n\t"                      \
35434c2f668SLeonid Yegoshin 			"li\t%0, 0\n"                       \
35534c2f668SLeonid Yegoshin 			"3:\n\t"                            \
35634c2f668SLeonid Yegoshin 			".insn\n\t"                         \
35734c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
35834c2f668SLeonid Yegoshin 			"4:\tli\t%0, %3\n\t"                \
35934c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
36034c2f668SLeonid Yegoshin 			".previous\n\t"                     \
36134c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
36234c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
36334c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
36434c2f668SLeonid Yegoshin 			".previous"                         \
36534c2f668SLeonid Yegoshin 			: "=r" (res)                        \
3663563c32dSMarkos Chandras 			: "r" (value), "r" (addr), "i" (-EFAULT));\
3673563c32dSMarkos Chandras } while(0)
36834c2f668SLeonid Yegoshin 
369932afdeeSYasha Cherikovsky #ifdef CONFIG_CPU_HAS_LOAD_STORE_LR
370eeb53895SMarkos Chandras #define     _StoreW(addr, value, res, type)  \
3713563c32dSMarkos Chandras do {                                                        \
37234c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
373eeb53895SMarkos Chandras 			"1:\t"type##_swl("%1", "(%2)")"\n"  \
374eeb53895SMarkos Chandras 			"2:\t"type##_swr("%1", "3(%2)")"\n\t"\
37534c2f668SLeonid Yegoshin 			"li\t%0, 0\n"                       \
37634c2f668SLeonid Yegoshin 			"3:\n\t"                            \
37734c2f668SLeonid Yegoshin 			".insn\n\t"                         \
37834c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
37934c2f668SLeonid Yegoshin 			"4:\tli\t%0, %3\n\t"                \
38034c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
38134c2f668SLeonid Yegoshin 			".previous\n\t"                     \
38234c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
38334c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
38434c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
38534c2f668SLeonid Yegoshin 			".previous"                         \
38634c2f668SLeonid Yegoshin 		: "=r" (res)                                \
3873563c32dSMarkos Chandras 		: "r" (value), "r" (addr), "i" (-EFAULT));  \
3883563c32dSMarkos Chandras } while(0)
38934c2f668SLeonid Yegoshin 
390eeb53895SMarkos Chandras #define     _StoreDW(addr, value, res) \
3913563c32dSMarkos Chandras do {                                                        \
39234c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
39334c2f668SLeonid Yegoshin 			"1:\tsdl\t%1,(%2)\n"                \
39434c2f668SLeonid Yegoshin 			"2:\tsdr\t%1, 7(%2)\n\t"            \
39534c2f668SLeonid Yegoshin 			"li\t%0, 0\n"                       \
39634c2f668SLeonid Yegoshin 			"3:\n\t"                            \
39734c2f668SLeonid Yegoshin 			".insn\n\t"                         \
39834c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
39934c2f668SLeonid Yegoshin 			"4:\tli\t%0, %3\n\t"                \
40034c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
40134c2f668SLeonid Yegoshin 			".previous\n\t"                     \
40234c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
40334c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
40434c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
40534c2f668SLeonid Yegoshin 			".previous"                         \
40634c2f668SLeonid Yegoshin 		: "=r" (res)                                \
4073563c32dSMarkos Chandras 		: "r" (value), "r" (addr), "i" (-EFAULT));  \
4083563c32dSMarkos Chandras } while(0)
4093563c32dSMarkos Chandras 
410932afdeeSYasha Cherikovsky #else /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
411eeb53895SMarkos Chandras #define     _StoreW(addr, value, res, type)  \
4123563c32dSMarkos Chandras do {                                                        \
4130593a44cSLeonid Yegoshin 		__asm__ __volatile__ (                      \
4140593a44cSLeonid Yegoshin 			".set\tpush\n\t"		    \
4150593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
416eeb53895SMarkos Chandras 			"1:"type##_sb("%1", "3(%2)")"\n\t"  \
4170593a44cSLeonid Yegoshin 			"srl\t$1, %1, 0x8\n\t"		    \
418eeb53895SMarkos Chandras 			"2:"type##_sb("$1", "2(%2)")"\n\t"  \
4190593a44cSLeonid Yegoshin 			"srl\t$1, $1,  0x8\n\t"		    \
420eeb53895SMarkos Chandras 			"3:"type##_sb("$1", "1(%2)")"\n\t"  \
4210593a44cSLeonid Yegoshin 			"srl\t$1, $1, 0x8\n\t"		    \
422eeb53895SMarkos Chandras 			"4:"type##_sb("$1", "0(%2)")"\n\t"  \
4230593a44cSLeonid Yegoshin 			".set\tpop\n\t"			    \
4240593a44cSLeonid Yegoshin 			"li\t%0, 0\n"			    \
4250593a44cSLeonid Yegoshin 			"10:\n\t"			    \
4260593a44cSLeonid Yegoshin 			".insn\n\t"			    \
4270593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
4280593a44cSLeonid Yegoshin 			"11:\tli\t%0, %3\n\t"		    \
4290593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
4300593a44cSLeonid Yegoshin 			".previous\n\t"			    \
4310593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
4320593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
4330593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
4340593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
4350593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
4360593a44cSLeonid Yegoshin 			".previous"			    \
4370593a44cSLeonid Yegoshin 		: "=&r" (res)			    	    \
4380593a44cSLeonid Yegoshin 		: "r" (value), "r" (addr), "i" (-EFAULT)    \
4393563c32dSMarkos Chandras 		: "memory");                                \
4403563c32dSMarkos Chandras } while(0)
44134c2f668SLeonid Yegoshin 
442531a6d59SJames Cowgill #define     _StoreDW(addr, value, res) \
4433563c32dSMarkos Chandras do {                                                        \
4440593a44cSLeonid Yegoshin 		__asm__ __volatile__ (                      \
4450593a44cSLeonid Yegoshin 			".set\tpush\n\t"		    \
4460593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
4470593a44cSLeonid Yegoshin 			"1:sb\t%1, 7(%2)\n\t"    	    \
4480593a44cSLeonid Yegoshin 			"dsrl\t$1, %1, 0x8\n\t"		    \
4490593a44cSLeonid Yegoshin 			"2:sb\t$1, 6(%2)\n\t"    	    \
4500593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
4510593a44cSLeonid Yegoshin 			"3:sb\t$1, 5(%2)\n\t"    	    \
4520593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
4530593a44cSLeonid Yegoshin 			"4:sb\t$1, 4(%2)\n\t"    	    \
4540593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
4550593a44cSLeonid Yegoshin 			"5:sb\t$1, 3(%2)\n\t"    	    \
4560593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
4570593a44cSLeonid Yegoshin 			"6:sb\t$1, 2(%2)\n\t"    	    \
4580593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
4590593a44cSLeonid Yegoshin 			"7:sb\t$1, 1(%2)\n\t"    	    \
4600593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
4610593a44cSLeonid Yegoshin 			"8:sb\t$1, 0(%2)\n\t"    	    \
4620593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
4630593a44cSLeonid Yegoshin 			".set\tpop\n\t"			    \
4640593a44cSLeonid Yegoshin 			"li\t%0, 0\n"			    \
4650593a44cSLeonid Yegoshin 			"10:\n\t"			    \
4660593a44cSLeonid Yegoshin 			".insn\n\t"			    \
4670593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
4680593a44cSLeonid Yegoshin 			"11:\tli\t%0, %3\n\t"		    \
4690593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
4700593a44cSLeonid Yegoshin 			".previous\n\t"			    \
4710593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
4720593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
4730593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
4740593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
4750593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
4760593a44cSLeonid Yegoshin 			STR(PTR)"\t5b, 11b\n\t"		    \
4770593a44cSLeonid Yegoshin 			STR(PTR)"\t6b, 11b\n\t"		    \
4780593a44cSLeonid Yegoshin 			STR(PTR)"\t7b, 11b\n\t"		    \
4790593a44cSLeonid Yegoshin 			STR(PTR)"\t8b, 11b\n\t"		    \
4800593a44cSLeonid Yegoshin 			".previous"			    \
4810593a44cSLeonid Yegoshin 		: "=&r" (res)			    	    \
4820593a44cSLeonid Yegoshin 		: "r" (value), "r" (addr), "i" (-EFAULT)    \
4833563c32dSMarkos Chandras 		: "memory");                                \
4843563c32dSMarkos Chandras } while(0)
4853563c32dSMarkos Chandras 
486932afdeeSYasha Cherikovsky #endif /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
4870593a44cSLeonid Yegoshin 
4880593a44cSLeonid Yegoshin #else /* __BIG_ENDIAN */
4890593a44cSLeonid Yegoshin 
490eeb53895SMarkos Chandras #define     _LoadHW(addr, value, res, type)  \
4913563c32dSMarkos Chandras do {                                                        \
49234c2f668SLeonid Yegoshin 		__asm__ __volatile__ (".set\tnoat\n"        \
493eeb53895SMarkos Chandras 			"1:\t"type##_lb("%0", "1(%2)")"\n"  \
494eeb53895SMarkos Chandras 			"2:\t"type##_lbu("$1", "0(%2)")"\n\t"\
49534c2f668SLeonid Yegoshin 			"sll\t%0, 0x8\n\t"                  \
49634c2f668SLeonid Yegoshin 			"or\t%0, $1\n\t"                    \
49734c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
49834c2f668SLeonid Yegoshin 			"3:\t.set\tat\n\t"                  \
49934c2f668SLeonid Yegoshin 			".insn\n\t"                         \
50034c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
50134c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
50234c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
50334c2f668SLeonid Yegoshin 			".previous\n\t"                     \
50434c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
50534c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
50634c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
50734c2f668SLeonid Yegoshin 			".previous"                         \
50834c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
5093563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
5103563c32dSMarkos Chandras } while(0)
51134c2f668SLeonid Yegoshin 
512932afdeeSYasha Cherikovsky #ifdef CONFIG_CPU_HAS_LOAD_STORE_LR
513eeb53895SMarkos Chandras #define     _LoadW(addr, value, res, type)   \
5143563c32dSMarkos Chandras do {                                                        \
51534c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
516eeb53895SMarkos Chandras 			"1:\t"type##_lwl("%0", "3(%2)")"\n" \
517eeb53895SMarkos Chandras 			"2:\t"type##_lwr("%0", "(%2)")"\n\t"\
51834c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
51934c2f668SLeonid Yegoshin 			"3:\n\t"                            \
52034c2f668SLeonid Yegoshin 			".insn\n\t"                         \
52134c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
52234c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
52334c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
52434c2f668SLeonid Yegoshin 			".previous\n\t"                     \
52534c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
52634c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
52734c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
52834c2f668SLeonid Yegoshin 			".previous"                         \
52934c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
5303563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
5313563c32dSMarkos Chandras } while(0)
5323563c32dSMarkos Chandras 
533932afdeeSYasha Cherikovsky #else  /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
534932afdeeSYasha Cherikovsky /* For CPUs without lwl instruction */
535eeb53895SMarkos Chandras #define     _LoadW(addr, value, res, type) \
5363563c32dSMarkos Chandras do {                                                        \
5370593a44cSLeonid Yegoshin 		__asm__ __volatile__ (			    \
5380593a44cSLeonid Yegoshin 			".set\tpush\n"			    \
5390593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
540eeb53895SMarkos Chandras 			"1:"type##_lb("%0", "3(%2)")"\n\t"  \
541eeb53895SMarkos Chandras 			"2:"type##_lbu("$1", "2(%2)")"\n\t" \
5420593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
5430593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
544eeb53895SMarkos Chandras 			"3:"type##_lbu("$1", "1(%2)")"\n\t" \
5450593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
5460593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
547eeb53895SMarkos Chandras 			"4:"type##_lbu("$1", "0(%2)")"\n\t" \
5480593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
5490593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
5500593a44cSLeonid Yegoshin 			"li\t%1, 0\n"			    \
5510593a44cSLeonid Yegoshin 			".set\tpop\n"			    \
5520593a44cSLeonid Yegoshin 			"10:\n\t"			    \
5530593a44cSLeonid Yegoshin 			".insn\n\t"			    \
5540593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
5550593a44cSLeonid Yegoshin 			"11:\tli\t%1, %3\n\t"		    \
5560593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
5570593a44cSLeonid Yegoshin 			".previous\n\t"			    \
5580593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
5590593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
5600593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
5610593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
5620593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
5630593a44cSLeonid Yegoshin 			".previous"			    \
5640593a44cSLeonid Yegoshin 			: "=&r" (value), "=r" (res)	    \
5653563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
5663563c32dSMarkos Chandras } while(0)
5673563c32dSMarkos Chandras 
568932afdeeSYasha Cherikovsky #endif /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
5690593a44cSLeonid Yegoshin 
57034c2f668SLeonid Yegoshin 
571eeb53895SMarkos Chandras #define     _LoadHWU(addr, value, res, type) \
5723563c32dSMarkos Chandras do {                                                        \
57334c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
57434c2f668SLeonid Yegoshin 			".set\tnoat\n"                      \
575eeb53895SMarkos Chandras 			"1:\t"type##_lbu("%0", "1(%2)")"\n" \
576eeb53895SMarkos Chandras 			"2:\t"type##_lbu("$1", "0(%2)")"\n\t"\
57734c2f668SLeonid Yegoshin 			"sll\t%0, 0x8\n\t"                  \
57834c2f668SLeonid Yegoshin 			"or\t%0, $1\n\t"                    \
57934c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
58034c2f668SLeonid Yegoshin 			"3:\n\t"                            \
58134c2f668SLeonid Yegoshin 			".insn\n\t"                         \
58234c2f668SLeonid Yegoshin 			".set\tat\n\t"                      \
58334c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
58434c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
58534c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
58634c2f668SLeonid Yegoshin 			".previous\n\t"                     \
58734c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
58834c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
58934c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
59034c2f668SLeonid Yegoshin 			".previous"                         \
59134c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
5923563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
5933563c32dSMarkos Chandras } while(0)
59434c2f668SLeonid Yegoshin 
595932afdeeSYasha Cherikovsky #ifdef CONFIG_CPU_HAS_LOAD_STORE_LR
596eeb53895SMarkos Chandras #define     _LoadWU(addr, value, res, type)  \
5973563c32dSMarkos Chandras do {                                                        \
59834c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
599eeb53895SMarkos Chandras 			"1:\t"type##_lwl("%0", "3(%2)")"\n" \
600eeb53895SMarkos Chandras 			"2:\t"type##_lwr("%0", "(%2)")"\n\t"\
60134c2f668SLeonid Yegoshin 			"dsll\t%0, %0, 32\n\t"              \
60234c2f668SLeonid Yegoshin 			"dsrl\t%0, %0, 32\n\t"              \
60334c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
60434c2f668SLeonid Yegoshin 			"3:\n\t"                            \
60534c2f668SLeonid Yegoshin 			".insn\n\t"                         \
60634c2f668SLeonid Yegoshin 			"\t.section\t.fixup,\"ax\"\n\t"     \
60734c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
60834c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
60934c2f668SLeonid Yegoshin 			".previous\n\t"                     \
61034c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
61134c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
61234c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
61334c2f668SLeonid Yegoshin 			".previous"                         \
61434c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
6153563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
6163563c32dSMarkos Chandras } while(0)
61734c2f668SLeonid Yegoshin 
618eeb53895SMarkos Chandras #define     _LoadDW(addr, value, res)  \
6193563c32dSMarkos Chandras do {                                                        \
62034c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
62134c2f668SLeonid Yegoshin 			"1:\tldl\t%0, 7(%2)\n"              \
62234c2f668SLeonid Yegoshin 			"2:\tldr\t%0, (%2)\n\t"             \
62334c2f668SLeonid Yegoshin 			"li\t%1, 0\n"                       \
62434c2f668SLeonid Yegoshin 			"3:\n\t"                            \
62534c2f668SLeonid Yegoshin 			".insn\n\t"                         \
62634c2f668SLeonid Yegoshin 			"\t.section\t.fixup,\"ax\"\n\t"     \
62734c2f668SLeonid Yegoshin 			"4:\tli\t%1, %3\n\t"                \
62834c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
62934c2f668SLeonid Yegoshin 			".previous\n\t"                     \
63034c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
63134c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
63234c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
63334c2f668SLeonid Yegoshin 			".previous"                         \
63434c2f668SLeonid Yegoshin 			: "=&r" (value), "=r" (res)         \
6353563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
6363563c32dSMarkos Chandras } while(0)
6373563c32dSMarkos Chandras 
638932afdeeSYasha Cherikovsky #else /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
639932afdeeSYasha Cherikovsky /* For CPUs without lwl and ldl instructions */
640eeb53895SMarkos Chandras #define	    _LoadWU(addr, value, res, type) \
6413563c32dSMarkos Chandras do {                                                        \
6420593a44cSLeonid Yegoshin 		__asm__ __volatile__ (			    \
6430593a44cSLeonid Yegoshin 			".set\tpush\n\t"		    \
6440593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
645eeb53895SMarkos Chandras 			"1:"type##_lbu("%0", "3(%2)")"\n\t" \
646eeb53895SMarkos Chandras 			"2:"type##_lbu("$1", "2(%2)")"\n\t" \
6470593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
6480593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
649eeb53895SMarkos Chandras 			"3:"type##_lbu("$1", "1(%2)")"\n\t" \
6500593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
6510593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
652eeb53895SMarkos Chandras 			"4:"type##_lbu("$1", "0(%2)")"\n\t" \
6530593a44cSLeonid Yegoshin 			"sll\t%0, 0x8\n\t"		    \
6540593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
6550593a44cSLeonid Yegoshin 			"li\t%1, 0\n"			    \
6560593a44cSLeonid Yegoshin 			".set\tpop\n"			    \
6570593a44cSLeonid Yegoshin 			"10:\n\t"			    \
6580593a44cSLeonid Yegoshin 			".insn\n\t"			    \
6590593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
6600593a44cSLeonid Yegoshin 			"11:\tli\t%1, %3\n\t"		    \
6610593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
6620593a44cSLeonid Yegoshin 			".previous\n\t"			    \
6630593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
6640593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
6650593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
6660593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
6670593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
6680593a44cSLeonid Yegoshin 			".previous"			    \
6690593a44cSLeonid Yegoshin 			: "=&r" (value), "=r" (res)	    \
6703563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
6713563c32dSMarkos Chandras } while(0)
6720593a44cSLeonid Yegoshin 
673eeb53895SMarkos Chandras #define     _LoadDW(addr, value, res)  \
6743563c32dSMarkos Chandras do {                                                        \
6750593a44cSLeonid Yegoshin 		__asm__ __volatile__ (			    \
6760593a44cSLeonid Yegoshin 			".set\tpush\n\t"		    \
6770593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
6780593a44cSLeonid Yegoshin 			"1:lb\t%0, 7(%2)\n\t"    	    \
6790593a44cSLeonid Yegoshin 			"2:lbu\t$1, 6(%2)\n\t"   	    \
6800593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
6810593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
6820593a44cSLeonid Yegoshin 			"3:lbu\t$1, 5(%2)\n\t"   	    \
6830593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
6840593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
6850593a44cSLeonid Yegoshin 			"4:lbu\t$1, 4(%2)\n\t"   	    \
6860593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
6870593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
6880593a44cSLeonid Yegoshin 			"5:lbu\t$1, 3(%2)\n\t"   	    \
6890593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
6900593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
6910593a44cSLeonid Yegoshin 			"6:lbu\t$1, 2(%2)\n\t"   	    \
6920593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
6930593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
6940593a44cSLeonid Yegoshin 			"7:lbu\t$1, 1(%2)\n\t"   	    \
6950593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
6960593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
6970593a44cSLeonid Yegoshin 			"8:lbu\t$1, 0(%2)\n\t"   	    \
6980593a44cSLeonid Yegoshin 			"dsll\t%0, 0x8\n\t"		    \
6990593a44cSLeonid Yegoshin 			"or\t%0, $1\n\t"		    \
7000593a44cSLeonid Yegoshin 			"li\t%1, 0\n"			    \
7010593a44cSLeonid Yegoshin 			".set\tpop\n\t"			    \
7020593a44cSLeonid Yegoshin 			"10:\n\t"			    \
7030593a44cSLeonid Yegoshin 			".insn\n\t"			    \
7040593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
7050593a44cSLeonid Yegoshin 			"11:\tli\t%1, %3\n\t"		    \
7060593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
7070593a44cSLeonid Yegoshin 			".previous\n\t"			    \
7080593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
7090593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
7100593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
7110593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
7120593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
7130593a44cSLeonid Yegoshin 			STR(PTR)"\t5b, 11b\n\t"		    \
7140593a44cSLeonid Yegoshin 			STR(PTR)"\t6b, 11b\n\t"		    \
7150593a44cSLeonid Yegoshin 			STR(PTR)"\t7b, 11b\n\t"		    \
7160593a44cSLeonid Yegoshin 			STR(PTR)"\t8b, 11b\n\t"		    \
7170593a44cSLeonid Yegoshin 			".previous"			    \
7180593a44cSLeonid Yegoshin 			: "=&r" (value), "=r" (res)	    \
7193563c32dSMarkos Chandras 			: "r" (addr), "i" (-EFAULT));       \
7203563c32dSMarkos Chandras } while(0)
721932afdeeSYasha Cherikovsky #endif /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
72234c2f668SLeonid Yegoshin 
723eeb53895SMarkos Chandras #define     _StoreHW(addr, value, res, type) \
7243563c32dSMarkos Chandras do {                                                        \
72534c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
72634c2f668SLeonid Yegoshin 			".set\tnoat\n"                      \
727eeb53895SMarkos Chandras 			"1:\t"type##_sb("%1", "0(%2)")"\n"  \
72834c2f668SLeonid Yegoshin 			"srl\t$1,%1, 0x8\n"                 \
729eeb53895SMarkos Chandras 			"2:\t"type##_sb("$1", "1(%2)")"\n"  \
73034c2f668SLeonid Yegoshin 			".set\tat\n\t"                      \
73134c2f668SLeonid Yegoshin 			"li\t%0, 0\n"                       \
73234c2f668SLeonid Yegoshin 			"3:\n\t"                            \
73334c2f668SLeonid Yegoshin 			".insn\n\t"                         \
73434c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
73534c2f668SLeonid Yegoshin 			"4:\tli\t%0, %3\n\t"                \
73634c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
73734c2f668SLeonid Yegoshin 			".previous\n\t"                     \
73834c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
73934c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
74034c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
74134c2f668SLeonid Yegoshin 			".previous"                         \
74234c2f668SLeonid Yegoshin 			: "=r" (res)                        \
7433563c32dSMarkos Chandras 			: "r" (value), "r" (addr), "i" (-EFAULT));\
7443563c32dSMarkos Chandras } while(0)
7453563c32dSMarkos Chandras 
746932afdeeSYasha Cherikovsky #ifdef CONFIG_CPU_HAS_LOAD_STORE_LR
747eeb53895SMarkos Chandras #define     _StoreW(addr, value, res, type)  \
7483563c32dSMarkos Chandras do {                                                        \
74934c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
750eeb53895SMarkos Chandras 			"1:\t"type##_swl("%1", "3(%2)")"\n" \
751eeb53895SMarkos Chandras 			"2:\t"type##_swr("%1", "(%2)")"\n\t"\
75234c2f668SLeonid Yegoshin 			"li\t%0, 0\n"                       \
75334c2f668SLeonid Yegoshin 			"3:\n\t"                            \
75434c2f668SLeonid Yegoshin 			".insn\n\t"                         \
75534c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
75634c2f668SLeonid Yegoshin 			"4:\tli\t%0, %3\n\t"                \
75734c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
75834c2f668SLeonid Yegoshin 			".previous\n\t"                     \
75934c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
76034c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
76134c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
76234c2f668SLeonid Yegoshin 			".previous"                         \
76334c2f668SLeonid Yegoshin 		: "=r" (res)                                \
7643563c32dSMarkos Chandras 		: "r" (value), "r" (addr), "i" (-EFAULT));  \
7653563c32dSMarkos Chandras } while(0)
76634c2f668SLeonid Yegoshin 
767eeb53895SMarkos Chandras #define     _StoreDW(addr, value, res) \
7683563c32dSMarkos Chandras do {                                                        \
76934c2f668SLeonid Yegoshin 		__asm__ __volatile__ (                      \
77034c2f668SLeonid Yegoshin 			"1:\tsdl\t%1, 7(%2)\n"              \
77134c2f668SLeonid Yegoshin 			"2:\tsdr\t%1, (%2)\n\t"             \
77234c2f668SLeonid Yegoshin 			"li\t%0, 0\n"                       \
77334c2f668SLeonid Yegoshin 			"3:\n\t"                            \
77434c2f668SLeonid Yegoshin 			".insn\n\t"                         \
77534c2f668SLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"       \
77634c2f668SLeonid Yegoshin 			"4:\tli\t%0, %3\n\t"                \
77734c2f668SLeonid Yegoshin 			"j\t3b\n\t"                         \
77834c2f668SLeonid Yegoshin 			".previous\n\t"                     \
77934c2f668SLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
78034c2f668SLeonid Yegoshin 			STR(PTR)"\t1b, 4b\n\t"              \
78134c2f668SLeonid Yegoshin 			STR(PTR)"\t2b, 4b\n\t"              \
78234c2f668SLeonid Yegoshin 			".previous"                         \
78334c2f668SLeonid Yegoshin 		: "=r" (res)                                \
7843563c32dSMarkos Chandras 		: "r" (value), "r" (addr), "i" (-EFAULT));  \
7853563c32dSMarkos Chandras } while(0)
7863563c32dSMarkos Chandras 
787932afdeeSYasha Cherikovsky #else /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
788932afdeeSYasha Cherikovsky /* For CPUs without swl and sdl instructions */
789eeb53895SMarkos Chandras #define     _StoreW(addr, value, res, type)  \
7903563c32dSMarkos Chandras do {                                                        \
7910593a44cSLeonid Yegoshin 		__asm__ __volatile__ (                      \
7920593a44cSLeonid Yegoshin 			".set\tpush\n\t"		    \
7930593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
794eeb53895SMarkos Chandras 			"1:"type##_sb("%1", "0(%2)")"\n\t"  \
7950593a44cSLeonid Yegoshin 			"srl\t$1, %1, 0x8\n\t"		    \
796eeb53895SMarkos Chandras 			"2:"type##_sb("$1", "1(%2)")"\n\t"  \
7970593a44cSLeonid Yegoshin 			"srl\t$1, $1,  0x8\n\t"		    \
798eeb53895SMarkos Chandras 			"3:"type##_sb("$1", "2(%2)")"\n\t"  \
7990593a44cSLeonid Yegoshin 			"srl\t$1, $1, 0x8\n\t"		    \
800eeb53895SMarkos Chandras 			"4:"type##_sb("$1", "3(%2)")"\n\t"  \
8010593a44cSLeonid Yegoshin 			".set\tpop\n\t"			    \
8020593a44cSLeonid Yegoshin 			"li\t%0, 0\n"			    \
8030593a44cSLeonid Yegoshin 			"10:\n\t"			    \
8040593a44cSLeonid Yegoshin 			".insn\n\t"			    \
8050593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
8060593a44cSLeonid Yegoshin 			"11:\tli\t%0, %3\n\t"		    \
8070593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
8080593a44cSLeonid Yegoshin 			".previous\n\t"			    \
8090593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
8100593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
8110593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
8120593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
8130593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
8140593a44cSLeonid Yegoshin 			".previous"			    \
8150593a44cSLeonid Yegoshin 		: "=&r" (res)			    	    \
8160593a44cSLeonid Yegoshin 		: "r" (value), "r" (addr), "i" (-EFAULT)    \
8173563c32dSMarkos Chandras 		: "memory");                                \
8183563c32dSMarkos Chandras } while(0)
8190593a44cSLeonid Yegoshin 
820eeb53895SMarkos Chandras #define     _StoreDW(addr, value, res) \
8213563c32dSMarkos Chandras do {                                                        \
8220593a44cSLeonid Yegoshin 		__asm__ __volatile__ (                      \
8230593a44cSLeonid Yegoshin 			".set\tpush\n\t"		    \
8240593a44cSLeonid Yegoshin 			".set\tnoat\n\t"		    \
8250593a44cSLeonid Yegoshin 			"1:sb\t%1, 0(%2)\n\t"    	    \
8260593a44cSLeonid Yegoshin 			"dsrl\t$1, %1, 0x8\n\t"		    \
8270593a44cSLeonid Yegoshin 			"2:sb\t$1, 1(%2)\n\t"    	    \
8280593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
8290593a44cSLeonid Yegoshin 			"3:sb\t$1, 2(%2)\n\t"    	    \
8300593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
8310593a44cSLeonid Yegoshin 			"4:sb\t$1, 3(%2)\n\t"    	    \
8320593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
8330593a44cSLeonid Yegoshin 			"5:sb\t$1, 4(%2)\n\t"    	    \
8340593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
8350593a44cSLeonid Yegoshin 			"6:sb\t$1, 5(%2)\n\t"    	    \
8360593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
8370593a44cSLeonid Yegoshin 			"7:sb\t$1, 6(%2)\n\t"    	    \
8380593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
8390593a44cSLeonid Yegoshin 			"8:sb\t$1, 7(%2)\n\t"    	    \
8400593a44cSLeonid Yegoshin 			"dsrl\t$1, $1, 0x8\n\t"		    \
8410593a44cSLeonid Yegoshin 			".set\tpop\n\t"			    \
8420593a44cSLeonid Yegoshin 			"li\t%0, 0\n"			    \
8430593a44cSLeonid Yegoshin 			"10:\n\t"			    \
8440593a44cSLeonid Yegoshin 			".insn\n\t"			    \
8450593a44cSLeonid Yegoshin 			".section\t.fixup,\"ax\"\n\t"	    \
8460593a44cSLeonid Yegoshin 			"11:\tli\t%0, %3\n\t"		    \
8470593a44cSLeonid Yegoshin 			"j\t10b\n\t"			    \
8480593a44cSLeonid Yegoshin 			".previous\n\t"			    \
8490593a44cSLeonid Yegoshin 			".section\t__ex_table,\"a\"\n\t"    \
8500593a44cSLeonid Yegoshin 			STR(PTR)"\t1b, 11b\n\t"		    \
8510593a44cSLeonid Yegoshin 			STR(PTR)"\t2b, 11b\n\t"		    \
8520593a44cSLeonid Yegoshin 			STR(PTR)"\t3b, 11b\n\t"		    \
8530593a44cSLeonid Yegoshin 			STR(PTR)"\t4b, 11b\n\t"		    \
8540593a44cSLeonid Yegoshin 			STR(PTR)"\t5b, 11b\n\t"		    \
8550593a44cSLeonid Yegoshin 			STR(PTR)"\t6b, 11b\n\t"		    \
8560593a44cSLeonid Yegoshin 			STR(PTR)"\t7b, 11b\n\t"		    \
8570593a44cSLeonid Yegoshin 			STR(PTR)"\t8b, 11b\n\t"		    \
8580593a44cSLeonid Yegoshin 			".previous"			    \
8590593a44cSLeonid Yegoshin 		: "=&r" (res)			    	    \
8600593a44cSLeonid Yegoshin 		: "r" (value), "r" (addr), "i" (-EFAULT)    \
8613563c32dSMarkos Chandras 		: "memory");                                \
8623563c32dSMarkos Chandras } while(0)
8633563c32dSMarkos Chandras 
864932afdeeSYasha Cherikovsky #endif /* !CONFIG_CPU_HAS_LOAD_STORE_LR */
86534c2f668SLeonid Yegoshin #endif
86634c2f668SLeonid Yegoshin 
867eeb53895SMarkos Chandras #define LoadHWU(addr, value, res)	_LoadHWU(addr, value, res, kernel)
868eeb53895SMarkos Chandras #define LoadHWUE(addr, value, res)	_LoadHWU(addr, value, res, user)
869eeb53895SMarkos Chandras #define LoadWU(addr, value, res)	_LoadWU(addr, value, res, kernel)
870eeb53895SMarkos Chandras #define LoadWUE(addr, value, res)	_LoadWU(addr, value, res, user)
871eeb53895SMarkos Chandras #define LoadHW(addr, value, res)	_LoadHW(addr, value, res, kernel)
872eeb53895SMarkos Chandras #define LoadHWE(addr, value, res)	_LoadHW(addr, value, res, user)
873eeb53895SMarkos Chandras #define LoadW(addr, value, res)		_LoadW(addr, value, res, kernel)
874eeb53895SMarkos Chandras #define LoadWE(addr, value, res)	_LoadW(addr, value, res, user)
875eeb53895SMarkos Chandras #define LoadDW(addr, value, res)	_LoadDW(addr, value, res)
876eeb53895SMarkos Chandras 
877eeb53895SMarkos Chandras #define StoreHW(addr, value, res)	_StoreHW(addr, value, res, kernel)
878eeb53895SMarkos Chandras #define StoreHWE(addr, value, res)	_StoreHW(addr, value, res, user)
879eeb53895SMarkos Chandras #define StoreW(addr, value, res)	_StoreW(addr, value, res, kernel)
880eeb53895SMarkos Chandras #define StoreWE(addr, value, res)	_StoreW(addr, value, res, user)
881eeb53895SMarkos Chandras #define StoreDW(addr, value, res)	_StoreDW(addr, value, res)
882eeb53895SMarkos Chandras 
8837f18f151SRalf Baechle static void emulate_load_store_insn(struct pt_regs *regs,
8847f18f151SRalf Baechle 	void __user *addr, unsigned int __user *pc)
8851da177e4SLinus Torvalds {
88685164fd8SPaul Burton 	unsigned long origpc, orig31, value;
8871da177e4SLinus Torvalds 	union mips_instruction insn;
88885164fd8SPaul Burton 	unsigned int res;
889c1771216SLeonid Yegoshin #ifdef	CONFIG_EVA
890c1771216SLeonid Yegoshin 	mm_segment_t seg;
891c1771216SLeonid Yegoshin #endif
89234c2f668SLeonid Yegoshin 	origpc = (unsigned long)pc;
89334c2f668SLeonid Yegoshin 	orig31 = regs->regs[31];
89434c2f668SLeonid Yegoshin 
895a8b0ca17SPeter Zijlstra 	perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS, 1, regs, 0);
8967f788d2dSDeng-Cheng Zhu 
8971da177e4SLinus Torvalds 	/*
8981da177e4SLinus Torvalds 	 * This load never faults.
8991da177e4SLinus Torvalds 	 */
900fe00f943SRalf Baechle 	__get_user(insn.word, pc);
9011da177e4SLinus Torvalds 
9021da177e4SLinus Torvalds 	switch (insn.i_format.opcode) {
9031da177e4SLinus Torvalds 		/*
9041da177e4SLinus Torvalds 		 * These are instructions that a compiler doesn't generate.  We
9051da177e4SLinus Torvalds 		 * can assume therefore that the code is MIPS-aware and
9061da177e4SLinus Torvalds 		 * really buggy.  Emulating these instructions would break the
9071da177e4SLinus Torvalds 		 * semantics anyway.
9081da177e4SLinus Torvalds 		 */
9091da177e4SLinus Torvalds 	case ll_op:
9101da177e4SLinus Torvalds 	case lld_op:
9111da177e4SLinus Torvalds 	case sc_op:
9121da177e4SLinus Torvalds 	case scd_op:
9131da177e4SLinus Torvalds 
9141da177e4SLinus Torvalds 		/*
9151da177e4SLinus Torvalds 		 * For these instructions the only way to create an address
9161da177e4SLinus Torvalds 		 * error is an attempted access to kernel/supervisor address
9171da177e4SLinus Torvalds 		 * space.
9181da177e4SLinus Torvalds 		 */
9191da177e4SLinus Torvalds 	case ldl_op:
9201da177e4SLinus Torvalds 	case ldr_op:
9211da177e4SLinus Torvalds 	case lwl_op:
9221da177e4SLinus Torvalds 	case lwr_op:
9231da177e4SLinus Torvalds 	case sdl_op:
9241da177e4SLinus Torvalds 	case sdr_op:
9251da177e4SLinus Torvalds 	case swl_op:
9261da177e4SLinus Torvalds 	case swr_op:
9271da177e4SLinus Torvalds 	case lb_op:
9281da177e4SLinus Torvalds 	case lbu_op:
9291da177e4SLinus Torvalds 	case sb_op:
9301da177e4SLinus Torvalds 		goto sigbus;
9311da177e4SLinus Torvalds 
9321da177e4SLinus Torvalds 		/*
93334c2f668SLeonid Yegoshin 		 * The remaining opcodes are the ones that are really of
93434c2f668SLeonid Yegoshin 		 * interest.
9351da177e4SLinus Torvalds 		 */
936c1771216SLeonid Yegoshin 	case spec3_op:
9373f88ec63SMiodrag Dinic 		if (insn.dsp_format.func == lx_op) {
9383f88ec63SMiodrag Dinic 			switch (insn.dsp_format.op) {
9393f88ec63SMiodrag Dinic 			case lwx_op:
94096d4f267SLinus Torvalds 				if (!access_ok(addr, 4))
9413f88ec63SMiodrag Dinic 					goto sigbus;
9423f88ec63SMiodrag Dinic 				LoadW(addr, value, res);
9433f88ec63SMiodrag Dinic 				if (res)
9443f88ec63SMiodrag Dinic 					goto fault;
9453f88ec63SMiodrag Dinic 				compute_return_epc(regs);
9463f88ec63SMiodrag Dinic 				regs->regs[insn.dsp_format.rd] = value;
9473f88ec63SMiodrag Dinic 				break;
9483f88ec63SMiodrag Dinic 			case lhx_op:
94996d4f267SLinus Torvalds 				if (!access_ok(addr, 2))
9503f88ec63SMiodrag Dinic 					goto sigbus;
9513f88ec63SMiodrag Dinic 				LoadHW(addr, value, res);
9523f88ec63SMiodrag Dinic 				if (res)
9533f88ec63SMiodrag Dinic 					goto fault;
9543f88ec63SMiodrag Dinic 				compute_return_epc(regs);
9553f88ec63SMiodrag Dinic 				regs->regs[insn.dsp_format.rd] = value;
9563f88ec63SMiodrag Dinic 				break;
9573f88ec63SMiodrag Dinic 			default:
9583f88ec63SMiodrag Dinic 				goto sigill;
9593f88ec63SMiodrag Dinic 			}
9603f88ec63SMiodrag Dinic 		}
9613f88ec63SMiodrag Dinic #ifdef CONFIG_EVA
9623f88ec63SMiodrag Dinic 		else {
963c1771216SLeonid Yegoshin 			/*
9643f88ec63SMiodrag Dinic 			 * we can land here only from kernel accessing user
9653f88ec63SMiodrag Dinic 			 * memory, so we need to "switch" the address limit to
9663f88ec63SMiodrag Dinic 			 * user space, so that address check can work properly.
967c1771216SLeonid Yegoshin 			 */
968c1771216SLeonid Yegoshin 			seg = get_fs();
969c1771216SLeonid Yegoshin 			set_fs(USER_DS);
970c1771216SLeonid Yegoshin 			switch (insn.spec3_format.func) {
971c1771216SLeonid Yegoshin 			case lhe_op:
97296d4f267SLinus Torvalds 				if (!access_ok(addr, 2)) {
973c1771216SLeonid Yegoshin 					set_fs(seg);
974c1771216SLeonid Yegoshin 					goto sigbus;
975c1771216SLeonid Yegoshin 				}
976eeb53895SMarkos Chandras 				LoadHWE(addr, value, res);
977c1771216SLeonid Yegoshin 				if (res) {
978c1771216SLeonid Yegoshin 					set_fs(seg);
979c1771216SLeonid Yegoshin 					goto fault;
980c1771216SLeonid Yegoshin 				}
981c1771216SLeonid Yegoshin 				compute_return_epc(regs);
982c1771216SLeonid Yegoshin 				regs->regs[insn.spec3_format.rt] = value;
983c1771216SLeonid Yegoshin 				break;
984c1771216SLeonid Yegoshin 			case lwe_op:
98596d4f267SLinus Torvalds 				if (!access_ok(addr, 4)) {
986c1771216SLeonid Yegoshin 					set_fs(seg);
987c1771216SLeonid Yegoshin 					goto sigbus;
988c1771216SLeonid Yegoshin 				}
989eeb53895SMarkos Chandras 				LoadWE(addr, value, res);
990c1771216SLeonid Yegoshin 				if (res) {
991c1771216SLeonid Yegoshin 					set_fs(seg);
992c1771216SLeonid Yegoshin 					goto fault;
993c1771216SLeonid Yegoshin 				}
994c1771216SLeonid Yegoshin 				compute_return_epc(regs);
995c1771216SLeonid Yegoshin 				regs->regs[insn.spec3_format.rt] = value;
996c1771216SLeonid Yegoshin 				break;
997c1771216SLeonid Yegoshin 			case lhue_op:
99896d4f267SLinus Torvalds 				if (!access_ok(addr, 2)) {
999c1771216SLeonid Yegoshin 					set_fs(seg);
1000c1771216SLeonid Yegoshin 					goto sigbus;
1001c1771216SLeonid Yegoshin 				}
1002eeb53895SMarkos Chandras 				LoadHWUE(addr, value, res);
1003c1771216SLeonid Yegoshin 				if (res) {
1004c1771216SLeonid Yegoshin 					set_fs(seg);
1005c1771216SLeonid Yegoshin 					goto fault;
1006c1771216SLeonid Yegoshin 				}
1007c1771216SLeonid Yegoshin 				compute_return_epc(regs);
1008c1771216SLeonid Yegoshin 				regs->regs[insn.spec3_format.rt] = value;
1009c1771216SLeonid Yegoshin 				break;
1010c1771216SLeonid Yegoshin 			case she_op:
101196d4f267SLinus Torvalds 				if (!access_ok(addr, 2)) {
1012c1771216SLeonid Yegoshin 					set_fs(seg);
1013c1771216SLeonid Yegoshin 					goto sigbus;
1014c1771216SLeonid Yegoshin 				}
1015c1771216SLeonid Yegoshin 				compute_return_epc(regs);
1016c1771216SLeonid Yegoshin 				value = regs->regs[insn.spec3_format.rt];
1017eeb53895SMarkos Chandras 				StoreHWE(addr, value, res);
1018c1771216SLeonid Yegoshin 				if (res) {
1019c1771216SLeonid Yegoshin 					set_fs(seg);
1020c1771216SLeonid Yegoshin 					goto fault;
1021c1771216SLeonid Yegoshin 				}
1022c1771216SLeonid Yegoshin 				break;
1023c1771216SLeonid Yegoshin 			case swe_op:
102496d4f267SLinus Torvalds 				if (!access_ok(addr, 4)) {
1025c1771216SLeonid Yegoshin 					set_fs(seg);
1026c1771216SLeonid Yegoshin 					goto sigbus;
1027c1771216SLeonid Yegoshin 				}
1028c1771216SLeonid Yegoshin 				compute_return_epc(regs);
1029c1771216SLeonid Yegoshin 				value = regs->regs[insn.spec3_format.rt];
1030eeb53895SMarkos Chandras 				StoreWE(addr, value, res);
1031c1771216SLeonid Yegoshin 				if (res) {
1032c1771216SLeonid Yegoshin 					set_fs(seg);
1033c1771216SLeonid Yegoshin 					goto fault;
1034c1771216SLeonid Yegoshin 				}
1035c1771216SLeonid Yegoshin 				break;
1036c1771216SLeonid Yegoshin 			default:
1037c1771216SLeonid Yegoshin 				set_fs(seg);
1038c1771216SLeonid Yegoshin 				goto sigill;
1039c1771216SLeonid Yegoshin 			}
1040c1771216SLeonid Yegoshin 			set_fs(seg);
10413f88ec63SMiodrag Dinic 		}
1042c1771216SLeonid Yegoshin #endif
10433f88ec63SMiodrag Dinic 		break;
10441da177e4SLinus Torvalds 	case lh_op:
104596d4f267SLinus Torvalds 		if (!access_ok(addr, 2))
10461da177e4SLinus Torvalds 			goto sigbus;
10471da177e4SLinus Torvalds 
104897f2645fSMasahiro Yamada 		if (IS_ENABLED(CONFIG_EVA)) {
1049db68ce10SAl Viro 			if (uaccess_kernel())
105034c2f668SLeonid Yegoshin 				LoadHW(addr, value, res);
10516eae3548SMarkos Chandras 			else
10526eae3548SMarkos Chandras 				LoadHWE(addr, value, res);
10536eae3548SMarkos Chandras 		} else {
10546eae3548SMarkos Chandras 			LoadHW(addr, value, res);
10556eae3548SMarkos Chandras 		}
10566eae3548SMarkos Chandras 
10571da177e4SLinus Torvalds 		if (res)
10581da177e4SLinus Torvalds 			goto fault;
10597f18f151SRalf Baechle 		compute_return_epc(regs);
10607f18f151SRalf Baechle 		regs->regs[insn.i_format.rt] = value;
10611da177e4SLinus Torvalds 		break;
10621da177e4SLinus Torvalds 
10631da177e4SLinus Torvalds 	case lw_op:
106496d4f267SLinus Torvalds 		if (!access_ok(addr, 4))
10651da177e4SLinus Torvalds 			goto sigbus;
10661da177e4SLinus Torvalds 
106797f2645fSMasahiro Yamada 		if (IS_ENABLED(CONFIG_EVA)) {
1068db68ce10SAl Viro 			if (uaccess_kernel())
106934c2f668SLeonid Yegoshin 				LoadW(addr, value, res);
10706eae3548SMarkos Chandras 			else
10716eae3548SMarkos Chandras 				LoadWE(addr, value, res);
10726eae3548SMarkos Chandras 		} else {
10736eae3548SMarkos Chandras 			LoadW(addr, value, res);
10746eae3548SMarkos Chandras 		}
10756eae3548SMarkos Chandras 
10761da177e4SLinus Torvalds 		if (res)
10771da177e4SLinus Torvalds 			goto fault;
10787f18f151SRalf Baechle 		compute_return_epc(regs);
10797f18f151SRalf Baechle 		regs->regs[insn.i_format.rt] = value;
10801da177e4SLinus Torvalds 		break;
10811da177e4SLinus Torvalds 
10821da177e4SLinus Torvalds 	case lhu_op:
108396d4f267SLinus Torvalds 		if (!access_ok(addr, 2))
10841da177e4SLinus Torvalds 			goto sigbus;
10851da177e4SLinus Torvalds 
108697f2645fSMasahiro Yamada 		if (IS_ENABLED(CONFIG_EVA)) {
1087db68ce10SAl Viro 			if (uaccess_kernel())
108834c2f668SLeonid Yegoshin 				LoadHWU(addr, value, res);
10896eae3548SMarkos Chandras 			else
10906eae3548SMarkos Chandras 				LoadHWUE(addr, value, res);
10916eae3548SMarkos Chandras 		} else {
10926eae3548SMarkos Chandras 			LoadHWU(addr, value, res);
10936eae3548SMarkos Chandras 		}
10946eae3548SMarkos Chandras 
10951da177e4SLinus Torvalds 		if (res)
10961da177e4SLinus Torvalds 			goto fault;
10977f18f151SRalf Baechle 		compute_return_epc(regs);
10987f18f151SRalf Baechle 		regs->regs[insn.i_format.rt] = value;
10991da177e4SLinus Torvalds 		break;
11001da177e4SLinus Torvalds 
11011da177e4SLinus Torvalds 	case lwu_op:
1102875d43e7SRalf Baechle #ifdef CONFIG_64BIT
11031da177e4SLinus Torvalds 		/*
11041da177e4SLinus Torvalds 		 * A 32-bit kernel might be running on a 64-bit processor.  But
11051da177e4SLinus Torvalds 		 * if we're on a 32-bit processor and an i-cache incoherency
11061da177e4SLinus Torvalds 		 * or race makes us see a 64-bit instruction here the sdl/sdr
11071da177e4SLinus Torvalds 		 * would blow up, so for now we don't handle unaligned 64-bit
11081da177e4SLinus Torvalds 		 * instructions on 32-bit kernels.
11091da177e4SLinus Torvalds 		 */
111096d4f267SLinus Torvalds 		if (!access_ok(addr, 4))
11111da177e4SLinus Torvalds 			goto sigbus;
11121da177e4SLinus Torvalds 
111334c2f668SLeonid Yegoshin 		LoadWU(addr, value, res);
11141da177e4SLinus Torvalds 		if (res)
11151da177e4SLinus Torvalds 			goto fault;
11167f18f151SRalf Baechle 		compute_return_epc(regs);
11177f18f151SRalf Baechle 		regs->regs[insn.i_format.rt] = value;
11181da177e4SLinus Torvalds 		break;
1119875d43e7SRalf Baechle #endif /* CONFIG_64BIT */
11201da177e4SLinus Torvalds 
11211da177e4SLinus Torvalds 		/* Cannot handle 64-bit instructions in 32-bit kernel */
11221da177e4SLinus Torvalds 		goto sigill;
11231da177e4SLinus Torvalds 
11241da177e4SLinus Torvalds 	case ld_op:
1125875d43e7SRalf Baechle #ifdef CONFIG_64BIT
11261da177e4SLinus Torvalds 		/*
11271da177e4SLinus Torvalds 		 * A 32-bit kernel might be running on a 64-bit processor.  But
11281da177e4SLinus Torvalds 		 * if we're on a 32-bit processor and an i-cache incoherency
11291da177e4SLinus Torvalds 		 * or race makes us see a 64-bit instruction here the sdl/sdr
11301da177e4SLinus Torvalds 		 * would blow up, so for now we don't handle unaligned 64-bit
11311da177e4SLinus Torvalds 		 * instructions on 32-bit kernels.
11321da177e4SLinus Torvalds 		 */
113396d4f267SLinus Torvalds 		if (!access_ok(addr, 8))
11341da177e4SLinus Torvalds 			goto sigbus;
11351da177e4SLinus Torvalds 
113634c2f668SLeonid Yegoshin 		LoadDW(addr, value, res);
11371da177e4SLinus Torvalds 		if (res)
11381da177e4SLinus Torvalds 			goto fault;
11397f18f151SRalf Baechle 		compute_return_epc(regs);
11407f18f151SRalf Baechle 		regs->regs[insn.i_format.rt] = value;
11411da177e4SLinus Torvalds 		break;
1142875d43e7SRalf Baechle #endif /* CONFIG_64BIT */
11431da177e4SLinus Torvalds 
11441da177e4SLinus Torvalds 		/* Cannot handle 64-bit instructions in 32-bit kernel */
11451da177e4SLinus Torvalds 		goto sigill;
11461da177e4SLinus Torvalds 
11471da177e4SLinus Torvalds 	case sh_op:
114896d4f267SLinus Torvalds 		if (!access_ok(addr, 2))
11491da177e4SLinus Torvalds 			goto sigbus;
11501da177e4SLinus Torvalds 
115134c2f668SLeonid Yegoshin 		compute_return_epc(regs);
11521da177e4SLinus Torvalds 		value = regs->regs[insn.i_format.rt];
11536eae3548SMarkos Chandras 
115497f2645fSMasahiro Yamada 		if (IS_ENABLED(CONFIG_EVA)) {
1155db68ce10SAl Viro 			if (uaccess_kernel())
115634c2f668SLeonid Yegoshin 				StoreHW(addr, value, res);
11576eae3548SMarkos Chandras 			else
11586eae3548SMarkos Chandras 				StoreHWE(addr, value, res);
11596eae3548SMarkos Chandras 		} else {
11606eae3548SMarkos Chandras 			StoreHW(addr, value, res);
11616eae3548SMarkos Chandras 		}
11626eae3548SMarkos Chandras 
11631da177e4SLinus Torvalds 		if (res)
11641da177e4SLinus Torvalds 			goto fault;
11651da177e4SLinus Torvalds 		break;
11661da177e4SLinus Torvalds 
11671da177e4SLinus Torvalds 	case sw_op:
116896d4f267SLinus Torvalds 		if (!access_ok(addr, 4))
11691da177e4SLinus Torvalds 			goto sigbus;
11701da177e4SLinus Torvalds 
117134c2f668SLeonid Yegoshin 		compute_return_epc(regs);
11721da177e4SLinus Torvalds 		value = regs->regs[insn.i_format.rt];
11736eae3548SMarkos Chandras 
117497f2645fSMasahiro Yamada 		if (IS_ENABLED(CONFIG_EVA)) {
1175db68ce10SAl Viro 			if (uaccess_kernel())
117634c2f668SLeonid Yegoshin 				StoreW(addr, value, res);
11776eae3548SMarkos Chandras 			else
11786eae3548SMarkos Chandras 				StoreWE(addr, value, res);
11796eae3548SMarkos Chandras 		} else {
11806eae3548SMarkos Chandras 			StoreW(addr, value, res);
11816eae3548SMarkos Chandras 		}
11826eae3548SMarkos Chandras 
11831da177e4SLinus Torvalds 		if (res)
11841da177e4SLinus Torvalds 			goto fault;
11851da177e4SLinus Torvalds 		break;
11861da177e4SLinus Torvalds 
11871da177e4SLinus Torvalds 	case sd_op:
1188875d43e7SRalf Baechle #ifdef CONFIG_64BIT
11891da177e4SLinus Torvalds 		/*
11901da177e4SLinus Torvalds 		 * A 32-bit kernel might be running on a 64-bit processor.  But
11911da177e4SLinus Torvalds 		 * if we're on a 32-bit processor and an i-cache incoherency
11921da177e4SLinus Torvalds 		 * or race makes us see a 64-bit instruction here the sdl/sdr
11931da177e4SLinus Torvalds 		 * would blow up, so for now we don't handle unaligned 64-bit
11941da177e4SLinus Torvalds 		 * instructions on 32-bit kernels.
11951da177e4SLinus Torvalds 		 */
119696d4f267SLinus Torvalds 		if (!access_ok(addr, 8))
11971da177e4SLinus Torvalds 			goto sigbus;
11981da177e4SLinus Torvalds 
119934c2f668SLeonid Yegoshin 		compute_return_epc(regs);
12001da177e4SLinus Torvalds 		value = regs->regs[insn.i_format.rt];
120134c2f668SLeonid Yegoshin 		StoreDW(addr, value, res);
12021da177e4SLinus Torvalds 		if (res)
12031da177e4SLinus Torvalds 			goto fault;
12041da177e4SLinus Torvalds 		break;
1205875d43e7SRalf Baechle #endif /* CONFIG_64BIT */
12061da177e4SLinus Torvalds 
12071da177e4SLinus Torvalds 		/* Cannot handle 64-bit instructions in 32-bit kernel */
12081da177e4SLinus Torvalds 		goto sigill;
12091da177e4SLinus Torvalds 
121085164fd8SPaul Burton #ifdef CONFIG_MIPS_FP_SUPPORT
121185164fd8SPaul Burton 
12121da177e4SLinus Torvalds 	case lwc1_op:
12131da177e4SLinus Torvalds 	case ldc1_op:
12141da177e4SLinus Torvalds 	case swc1_op:
12151da177e4SLinus Torvalds 	case sdc1_op:
121685164fd8SPaul Burton 	case cop1x_op: {
121785164fd8SPaul Burton 		void __user *fault_addr = NULL;
121885164fd8SPaul Burton 
1219102cedc3SLeonid Yegoshin 		die_if_kernel("Unaligned FP access in kernel code", regs);
1220102cedc3SLeonid Yegoshin 		BUG_ON(!used_math());
1221102cedc3SLeonid Yegoshin 
1222102cedc3SLeonid Yegoshin 		res = fpu_emulator_cop1Handler(regs, &current->thread.fpu, 1,
1223102cedc3SLeonid Yegoshin 					       &fault_addr);
1224102cedc3SLeonid Yegoshin 		own_fpu(1);	/* Restore FPU state. */
1225102cedc3SLeonid Yegoshin 
1226102cedc3SLeonid Yegoshin 		/* Signal if something went wrong. */
1227304acb71SMaciej W. Rozycki 		process_fpemu_return(res, fault_addr, 0);
1228102cedc3SLeonid Yegoshin 
1229102cedc3SLeonid Yegoshin 		if (res == 0)
1230102cedc3SLeonid Yegoshin 			break;
1231102cedc3SLeonid Yegoshin 		return;
123285164fd8SPaul Burton 	}
123385164fd8SPaul Burton #endif /* CONFIG_MIPS_FP_SUPPORT */
12341da177e4SLinus Torvalds 
123585164fd8SPaul Burton #ifdef CONFIG_CPU_HAS_MSA
123685164fd8SPaul Burton 
123785164fd8SPaul Burton 	case msa_op: {
123885164fd8SPaul Burton 		unsigned int wd, preempted;
123985164fd8SPaul Burton 		enum msa_2b_fmt df;
124085164fd8SPaul Burton 		union fpureg *fpr;
124185164fd8SPaul Burton 
1242e4aa1f15SLeonid Yegoshin 		if (!cpu_has_msa)
1243e4aa1f15SLeonid Yegoshin 			goto sigill;
1244e4aa1f15SLeonid Yegoshin 
1245e4aa1f15SLeonid Yegoshin 		/*
1246e4aa1f15SLeonid Yegoshin 		 * If we've reached this point then userland should have taken
1247e4aa1f15SLeonid Yegoshin 		 * the MSA disabled exception & initialised vector context at
1248e4aa1f15SLeonid Yegoshin 		 * some point in the past.
1249e4aa1f15SLeonid Yegoshin 		 */
1250e4aa1f15SLeonid Yegoshin 		BUG_ON(!thread_msa_context_live());
1251e4aa1f15SLeonid Yegoshin 
1252e4aa1f15SLeonid Yegoshin 		df = insn.msa_mi10_format.df;
1253e4aa1f15SLeonid Yegoshin 		wd = insn.msa_mi10_format.wd;
1254e4aa1f15SLeonid Yegoshin 		fpr = &current->thread.fpu.fpr[wd];
1255e4aa1f15SLeonid Yegoshin 
1256e4aa1f15SLeonid Yegoshin 		switch (insn.msa_mi10_format.func) {
1257e4aa1f15SLeonid Yegoshin 		case msa_ld_op:
125896d4f267SLinus Torvalds 			if (!access_ok(addr, sizeof(*fpr)))
1259e4aa1f15SLeonid Yegoshin 				goto sigbus;
1260e4aa1f15SLeonid Yegoshin 
1261fa8ff601SPaul Burton 			do {
1262e4aa1f15SLeonid Yegoshin 				/*
1263fa8ff601SPaul Burton 				 * If we have live MSA context keep track of
1264fa8ff601SPaul Burton 				 * whether we get preempted in order to avoid
1265fa8ff601SPaul Burton 				 * the register context we load being clobbered
1266fa8ff601SPaul Burton 				 * by the live context as it's saved during
1267fa8ff601SPaul Burton 				 * preemption. If we don't have live context
1268fa8ff601SPaul Burton 				 * then it can't be saved to clobber the value
1269fa8ff601SPaul Burton 				 * we load.
1270e4aa1f15SLeonid Yegoshin 				 */
1271fa8ff601SPaul Burton 				preempted = test_thread_flag(TIF_USEDMSA);
1272e4aa1f15SLeonid Yegoshin 
1273e4aa1f15SLeonid Yegoshin 				res = __copy_from_user_inatomic(fpr, addr,
1274e4aa1f15SLeonid Yegoshin 								sizeof(*fpr));
1275e4aa1f15SLeonid Yegoshin 				if (res)
1276e4aa1f15SLeonid Yegoshin 					goto fault;
1277e4aa1f15SLeonid Yegoshin 
1278e4aa1f15SLeonid Yegoshin 				/*
1279fa8ff601SPaul Burton 				 * Update the hardware register if it is in use
1280fa8ff601SPaul Burton 				 * by the task in this quantum, in order to
1281fa8ff601SPaul Burton 				 * avoid having to save & restore the whole
1282fa8ff601SPaul Burton 				 * vector context.
1283e4aa1f15SLeonid Yegoshin 				 */
1284fa8ff601SPaul Burton 				preempt_disable();
1285fa8ff601SPaul Burton 				if (test_thread_flag(TIF_USEDMSA)) {
1286e4aa1f15SLeonid Yegoshin 					write_msa_wr(wd, fpr, df);
1287fa8ff601SPaul Burton 					preempted = 0;
1288fa8ff601SPaul Burton 				}
1289e4aa1f15SLeonid Yegoshin 				preempt_enable();
1290fa8ff601SPaul Burton 			} while (preempted);
1291e4aa1f15SLeonid Yegoshin 			break;
1292e4aa1f15SLeonid Yegoshin 
1293e4aa1f15SLeonid Yegoshin 		case msa_st_op:
129496d4f267SLinus Torvalds 			if (!access_ok(addr, sizeof(*fpr)))
1295e4aa1f15SLeonid Yegoshin 				goto sigbus;
1296e4aa1f15SLeonid Yegoshin 
1297e4aa1f15SLeonid Yegoshin 			/*
1298e4aa1f15SLeonid Yegoshin 			 * Update from the hardware register if it is in use by
1299e4aa1f15SLeonid Yegoshin 			 * the task in this quantum, in order to avoid having to
1300e4aa1f15SLeonid Yegoshin 			 * save & restore the whole vector context.
1301e4aa1f15SLeonid Yegoshin 			 */
1302e4aa1f15SLeonid Yegoshin 			preempt_disable();
1303e4aa1f15SLeonid Yegoshin 			if (test_thread_flag(TIF_USEDMSA))
1304e4aa1f15SLeonid Yegoshin 				read_msa_wr(wd, fpr, df);
1305e4aa1f15SLeonid Yegoshin 			preempt_enable();
1306e4aa1f15SLeonid Yegoshin 
1307e4aa1f15SLeonid Yegoshin 			res = __copy_to_user_inatomic(addr, fpr, sizeof(*fpr));
1308e4aa1f15SLeonid Yegoshin 			if (res)
1309e4aa1f15SLeonid Yegoshin 				goto fault;
1310e4aa1f15SLeonid Yegoshin 			break;
1311e4aa1f15SLeonid Yegoshin 
1312e4aa1f15SLeonid Yegoshin 		default:
1313e4aa1f15SLeonid Yegoshin 			goto sigbus;
1314e4aa1f15SLeonid Yegoshin 		}
1315e4aa1f15SLeonid Yegoshin 
1316e4aa1f15SLeonid Yegoshin 		compute_return_epc(regs);
1317e4aa1f15SLeonid Yegoshin 		break;
131885164fd8SPaul Burton 	}
131985164fd8SPaul Burton #endif /* CONFIG_CPU_HAS_MSA */
1320e4aa1f15SLeonid Yegoshin 
13210593a44cSLeonid Yegoshin #ifndef CONFIG_CPU_MIPSR6
13221da177e4SLinus Torvalds 	/*
132369f3a7deSRalf Baechle 	 * COP2 is available to implementor for application specific use.
132469f3a7deSRalf Baechle 	 * It's up to applications to register a notifier chain and do
132569f3a7deSRalf Baechle 	 * whatever they have to do, including possible sending of signals.
13260593a44cSLeonid Yegoshin 	 *
13270593a44cSLeonid Yegoshin 	 * This instruction has been reallocated in Release 6
13281da177e4SLinus Torvalds 	 */
132969f3a7deSRalf Baechle 	case lwc2_op:
133069f3a7deSRalf Baechle 		cu2_notifier_call_chain(CU2_LWC2_OP, regs);
133169f3a7deSRalf Baechle 		break;
133269f3a7deSRalf Baechle 
133369f3a7deSRalf Baechle 	case ldc2_op:
133469f3a7deSRalf Baechle 		cu2_notifier_call_chain(CU2_LDC2_OP, regs);
133569f3a7deSRalf Baechle 		break;
133669f3a7deSRalf Baechle 
133769f3a7deSRalf Baechle 	case swc2_op:
133869f3a7deSRalf Baechle 		cu2_notifier_call_chain(CU2_SWC2_OP, regs);
133969f3a7deSRalf Baechle 		break;
134069f3a7deSRalf Baechle 
134169f3a7deSRalf Baechle 	case sdc2_op:
134269f3a7deSRalf Baechle 		cu2_notifier_call_chain(CU2_SDC2_OP, regs);
134369f3a7deSRalf Baechle 		break;
13440593a44cSLeonid Yegoshin #endif
13451da177e4SLinus Torvalds 	default:
13461da177e4SLinus Torvalds 		/*
13471da177e4SLinus Torvalds 		 * Pheeee...  We encountered an yet unknown instruction or
13481da177e4SLinus Torvalds 		 * cache coherence problem.  Die sucker, die ...
13491da177e4SLinus Torvalds 		 */
13501da177e4SLinus Torvalds 		goto sigill;
13511da177e4SLinus Torvalds 	}
13521da177e4SLinus Torvalds 
13536312e0eeSAtsushi Nemoto #ifdef CONFIG_DEBUG_FS
13541da177e4SLinus Torvalds 	unaligned_instructions++;
13551da177e4SLinus Torvalds #endif
13561da177e4SLinus Torvalds 
13577f18f151SRalf Baechle 	return;
13581da177e4SLinus Torvalds 
13591da177e4SLinus Torvalds fault:
136034c2f668SLeonid Yegoshin 	/* roll back jump/branch */
136134c2f668SLeonid Yegoshin 	regs->cp0_epc = origpc;
136234c2f668SLeonid Yegoshin 	regs->regs[31] = orig31;
13631da177e4SLinus Torvalds 	/* Did we have an exception handler installed? */
13641da177e4SLinus Torvalds 	if (fixup_exception(regs))
13657f18f151SRalf Baechle 		return;
13661da177e4SLinus Torvalds 
13671da177e4SLinus Torvalds 	die_if_kernel("Unhandled kernel unaligned access", regs);
13683cf5d076SEric W. Biederman 	force_sig(SIGSEGV);
13691da177e4SLinus Torvalds 
13707f18f151SRalf Baechle 	return;
13711da177e4SLinus Torvalds 
13721da177e4SLinus Torvalds sigbus:
13731da177e4SLinus Torvalds 	die_if_kernel("Unhandled kernel unaligned access", regs);
13743cf5d076SEric W. Biederman 	force_sig(SIGBUS);
13751da177e4SLinus Torvalds 
13767f18f151SRalf Baechle 	return;
13771da177e4SLinus Torvalds 
13781da177e4SLinus Torvalds sigill:
137934c2f668SLeonid Yegoshin 	die_if_kernel
138034c2f668SLeonid Yegoshin 	    ("Unhandled kernel unaligned access or invalid instruction", regs);
13813cf5d076SEric W. Biederman 	force_sig(SIGILL);
138234c2f668SLeonid Yegoshin }
138334c2f668SLeonid Yegoshin 
138434c2f668SLeonid Yegoshin /* Recode table from 16-bit register notation to 32-bit GPR. */
138534c2f668SLeonid Yegoshin const int reg16to32[] = { 16, 17, 2, 3, 4, 5, 6, 7 };
138634c2f668SLeonid Yegoshin 
138734c2f668SLeonid Yegoshin /* Recode table from 16-bit STORE register notation to 32-bit GPR. */
1388b7fc2cc5SPaul Burton static const int reg16to32st[] = { 0, 17, 2, 3, 4, 5, 6, 7 };
138934c2f668SLeonid Yegoshin 
139074338805SDavid Daney static void emulate_load_store_microMIPS(struct pt_regs *regs,
139174338805SDavid Daney 					 void __user *addr)
139234c2f668SLeonid Yegoshin {
139334c2f668SLeonid Yegoshin 	unsigned long value;
139434c2f668SLeonid Yegoshin 	unsigned int res;
139534c2f668SLeonid Yegoshin 	int i;
139634c2f668SLeonid Yegoshin 	unsigned int reg = 0, rvar;
139734c2f668SLeonid Yegoshin 	unsigned long orig31;
139834c2f668SLeonid Yegoshin 	u16 __user *pc16;
139934c2f668SLeonid Yegoshin 	u16 halfword;
140034c2f668SLeonid Yegoshin 	unsigned int word;
140134c2f668SLeonid Yegoshin 	unsigned long origpc, contpc;
140234c2f668SLeonid Yegoshin 	union mips_instruction insn;
140334c2f668SLeonid Yegoshin 	struct mm_decoded_insn mminsn;
140434c2f668SLeonid Yegoshin 
140534c2f668SLeonid Yegoshin 	origpc = regs->cp0_epc;
140634c2f668SLeonid Yegoshin 	orig31 = regs->regs[31];
140734c2f668SLeonid Yegoshin 
140834c2f668SLeonid Yegoshin 	mminsn.micro_mips_mode = 1;
140934c2f668SLeonid Yegoshin 
141034c2f668SLeonid Yegoshin 	/*
141134c2f668SLeonid Yegoshin 	 * This load never faults.
141234c2f668SLeonid Yegoshin 	 */
141334c2f668SLeonid Yegoshin 	pc16 = (unsigned short __user *)msk_isa16_mode(regs->cp0_epc);
141434c2f668SLeonid Yegoshin 	__get_user(halfword, pc16);
141534c2f668SLeonid Yegoshin 	pc16++;
141634c2f668SLeonid Yegoshin 	contpc = regs->cp0_epc + 2;
141734c2f668SLeonid Yegoshin 	word = ((unsigned int)halfword << 16);
141834c2f668SLeonid Yegoshin 	mminsn.pc_inc = 2;
141934c2f668SLeonid Yegoshin 
142034c2f668SLeonid Yegoshin 	if (!mm_insn_16bit(halfword)) {
142134c2f668SLeonid Yegoshin 		__get_user(halfword, pc16);
142234c2f668SLeonid Yegoshin 		pc16++;
142334c2f668SLeonid Yegoshin 		contpc = regs->cp0_epc + 4;
142434c2f668SLeonid Yegoshin 		mminsn.pc_inc = 4;
142534c2f668SLeonid Yegoshin 		word |= halfword;
142634c2f668SLeonid Yegoshin 	}
142734c2f668SLeonid Yegoshin 	mminsn.insn = word;
142834c2f668SLeonid Yegoshin 
142934c2f668SLeonid Yegoshin 	if (get_user(halfword, pc16))
143034c2f668SLeonid Yegoshin 		goto fault;
143134c2f668SLeonid Yegoshin 	mminsn.next_pc_inc = 2;
143234c2f668SLeonid Yegoshin 	word = ((unsigned int)halfword << 16);
143334c2f668SLeonid Yegoshin 
143434c2f668SLeonid Yegoshin 	if (!mm_insn_16bit(halfword)) {
143534c2f668SLeonid Yegoshin 		pc16++;
143634c2f668SLeonid Yegoshin 		if (get_user(halfword, pc16))
143734c2f668SLeonid Yegoshin 			goto fault;
143834c2f668SLeonid Yegoshin 		mminsn.next_pc_inc = 4;
143934c2f668SLeonid Yegoshin 		word |= halfword;
144034c2f668SLeonid Yegoshin 	}
144134c2f668SLeonid Yegoshin 	mminsn.next_insn = word;
144234c2f668SLeonid Yegoshin 
144334c2f668SLeonid Yegoshin 	insn = (union mips_instruction)(mminsn.insn);
144434c2f668SLeonid Yegoshin 	if (mm_isBranchInstr(regs, mminsn, &contpc))
144534c2f668SLeonid Yegoshin 		insn = (union mips_instruction)(mminsn.next_insn);
144634c2f668SLeonid Yegoshin 
144734c2f668SLeonid Yegoshin 	/*  Parse instruction to find what to do */
144834c2f668SLeonid Yegoshin 
144934c2f668SLeonid Yegoshin 	switch (insn.mm_i_format.opcode) {
145034c2f668SLeonid Yegoshin 
145134c2f668SLeonid Yegoshin 	case mm_pool32a_op:
145234c2f668SLeonid Yegoshin 		switch (insn.mm_x_format.func) {
145334c2f668SLeonid Yegoshin 		case mm_lwxs_op:
145434c2f668SLeonid Yegoshin 			reg = insn.mm_x_format.rd;
145534c2f668SLeonid Yegoshin 			goto loadW;
145634c2f668SLeonid Yegoshin 		}
145734c2f668SLeonid Yegoshin 
145834c2f668SLeonid Yegoshin 		goto sigbus;
145934c2f668SLeonid Yegoshin 
146034c2f668SLeonid Yegoshin 	case mm_pool32b_op:
146134c2f668SLeonid Yegoshin 		switch (insn.mm_m_format.func) {
146234c2f668SLeonid Yegoshin 		case mm_lwp_func:
146334c2f668SLeonid Yegoshin 			reg = insn.mm_m_format.rd;
146434c2f668SLeonid Yegoshin 			if (reg == 31)
146534c2f668SLeonid Yegoshin 				goto sigbus;
146634c2f668SLeonid Yegoshin 
146796d4f267SLinus Torvalds 			if (!access_ok(addr, 8))
146834c2f668SLeonid Yegoshin 				goto sigbus;
146934c2f668SLeonid Yegoshin 
147034c2f668SLeonid Yegoshin 			LoadW(addr, value, res);
147134c2f668SLeonid Yegoshin 			if (res)
147234c2f668SLeonid Yegoshin 				goto fault;
147334c2f668SLeonid Yegoshin 			regs->regs[reg] = value;
147434c2f668SLeonid Yegoshin 			addr += 4;
147534c2f668SLeonid Yegoshin 			LoadW(addr, value, res);
147634c2f668SLeonid Yegoshin 			if (res)
147734c2f668SLeonid Yegoshin 				goto fault;
147834c2f668SLeonid Yegoshin 			regs->regs[reg + 1] = value;
147934c2f668SLeonid Yegoshin 			goto success;
148034c2f668SLeonid Yegoshin 
148134c2f668SLeonid Yegoshin 		case mm_swp_func:
148234c2f668SLeonid Yegoshin 			reg = insn.mm_m_format.rd;
148334c2f668SLeonid Yegoshin 			if (reg == 31)
148434c2f668SLeonid Yegoshin 				goto sigbus;
148534c2f668SLeonid Yegoshin 
148696d4f267SLinus Torvalds 			if (!access_ok(addr, 8))
148734c2f668SLeonid Yegoshin 				goto sigbus;
148834c2f668SLeonid Yegoshin 
148934c2f668SLeonid Yegoshin 			value = regs->regs[reg];
149034c2f668SLeonid Yegoshin 			StoreW(addr, value, res);
149134c2f668SLeonid Yegoshin 			if (res)
149234c2f668SLeonid Yegoshin 				goto fault;
149334c2f668SLeonid Yegoshin 			addr += 4;
149434c2f668SLeonid Yegoshin 			value = regs->regs[reg + 1];
149534c2f668SLeonid Yegoshin 			StoreW(addr, value, res);
149634c2f668SLeonid Yegoshin 			if (res)
149734c2f668SLeonid Yegoshin 				goto fault;
149834c2f668SLeonid Yegoshin 			goto success;
149934c2f668SLeonid Yegoshin 
150034c2f668SLeonid Yegoshin 		case mm_ldp_func:
150134c2f668SLeonid Yegoshin #ifdef CONFIG_64BIT
150234c2f668SLeonid Yegoshin 			reg = insn.mm_m_format.rd;
150334c2f668SLeonid Yegoshin 			if (reg == 31)
150434c2f668SLeonid Yegoshin 				goto sigbus;
150534c2f668SLeonid Yegoshin 
150696d4f267SLinus Torvalds 			if (!access_ok(addr, 16))
150734c2f668SLeonid Yegoshin 				goto sigbus;
150834c2f668SLeonid Yegoshin 
150934c2f668SLeonid Yegoshin 			LoadDW(addr, value, res);
151034c2f668SLeonid Yegoshin 			if (res)
151134c2f668SLeonid Yegoshin 				goto fault;
151234c2f668SLeonid Yegoshin 			regs->regs[reg] = value;
151334c2f668SLeonid Yegoshin 			addr += 8;
151434c2f668SLeonid Yegoshin 			LoadDW(addr, value, res);
151534c2f668SLeonid Yegoshin 			if (res)
151634c2f668SLeonid Yegoshin 				goto fault;
151734c2f668SLeonid Yegoshin 			regs->regs[reg + 1] = value;
151834c2f668SLeonid Yegoshin 			goto success;
151934c2f668SLeonid Yegoshin #endif /* CONFIG_64BIT */
152034c2f668SLeonid Yegoshin 
152134c2f668SLeonid Yegoshin 			goto sigill;
152234c2f668SLeonid Yegoshin 
152334c2f668SLeonid Yegoshin 		case mm_sdp_func:
152434c2f668SLeonid Yegoshin #ifdef CONFIG_64BIT
152534c2f668SLeonid Yegoshin 			reg = insn.mm_m_format.rd;
152634c2f668SLeonid Yegoshin 			if (reg == 31)
152734c2f668SLeonid Yegoshin 				goto sigbus;
152834c2f668SLeonid Yegoshin 
152996d4f267SLinus Torvalds 			if (!access_ok(addr, 16))
153034c2f668SLeonid Yegoshin 				goto sigbus;
153134c2f668SLeonid Yegoshin 
153234c2f668SLeonid Yegoshin 			value = regs->regs[reg];
153334c2f668SLeonid Yegoshin 			StoreDW(addr, value, res);
153434c2f668SLeonid Yegoshin 			if (res)
153534c2f668SLeonid Yegoshin 				goto fault;
153634c2f668SLeonid Yegoshin 			addr += 8;
153734c2f668SLeonid Yegoshin 			value = regs->regs[reg + 1];
153834c2f668SLeonid Yegoshin 			StoreDW(addr, value, res);
153934c2f668SLeonid Yegoshin 			if (res)
154034c2f668SLeonid Yegoshin 				goto fault;
154134c2f668SLeonid Yegoshin 			goto success;
154234c2f668SLeonid Yegoshin #endif /* CONFIG_64BIT */
154334c2f668SLeonid Yegoshin 
154434c2f668SLeonid Yegoshin 			goto sigill;
154534c2f668SLeonid Yegoshin 
154634c2f668SLeonid Yegoshin 		case mm_lwm32_func:
154734c2f668SLeonid Yegoshin 			reg = insn.mm_m_format.rd;
154834c2f668SLeonid Yegoshin 			rvar = reg & 0xf;
154934c2f668SLeonid Yegoshin 			if ((rvar > 9) || !reg)
155034c2f668SLeonid Yegoshin 				goto sigill;
155134c2f668SLeonid Yegoshin 			if (reg & 0x10) {
155296d4f267SLinus Torvalds 				if (!access_ok(addr, 4 * (rvar + 1)))
155334c2f668SLeonid Yegoshin 					goto sigbus;
155434c2f668SLeonid Yegoshin 			} else {
155596d4f267SLinus Torvalds 				if (!access_ok(addr, 4 * rvar))
155634c2f668SLeonid Yegoshin 					goto sigbus;
155734c2f668SLeonid Yegoshin 			}
155834c2f668SLeonid Yegoshin 			if (rvar == 9)
155934c2f668SLeonid Yegoshin 				rvar = 8;
156034c2f668SLeonid Yegoshin 			for (i = 16; rvar; rvar--, i++) {
156134c2f668SLeonid Yegoshin 				LoadW(addr, value, res);
156234c2f668SLeonid Yegoshin 				if (res)
156334c2f668SLeonid Yegoshin 					goto fault;
156434c2f668SLeonid Yegoshin 				addr += 4;
156534c2f668SLeonid Yegoshin 				regs->regs[i] = value;
156634c2f668SLeonid Yegoshin 			}
156734c2f668SLeonid Yegoshin 			if ((reg & 0xf) == 9) {
156834c2f668SLeonid Yegoshin 				LoadW(addr, value, res);
156934c2f668SLeonid Yegoshin 				if (res)
157034c2f668SLeonid Yegoshin 					goto fault;
157134c2f668SLeonid Yegoshin 				addr += 4;
157234c2f668SLeonid Yegoshin 				regs->regs[30] = value;
157334c2f668SLeonid Yegoshin 			}
157434c2f668SLeonid Yegoshin 			if (reg & 0x10) {
157534c2f668SLeonid Yegoshin 				LoadW(addr, value, res);
157634c2f668SLeonid Yegoshin 				if (res)
157734c2f668SLeonid Yegoshin 					goto fault;
157834c2f668SLeonid Yegoshin 				regs->regs[31] = value;
157934c2f668SLeonid Yegoshin 			}
158034c2f668SLeonid Yegoshin 			goto success;
158134c2f668SLeonid Yegoshin 
158234c2f668SLeonid Yegoshin 		case mm_swm32_func:
158334c2f668SLeonid Yegoshin 			reg = insn.mm_m_format.rd;
158434c2f668SLeonid Yegoshin 			rvar = reg & 0xf;
158534c2f668SLeonid Yegoshin 			if ((rvar > 9) || !reg)
158634c2f668SLeonid Yegoshin 				goto sigill;
158734c2f668SLeonid Yegoshin 			if (reg & 0x10) {
158896d4f267SLinus Torvalds 				if (!access_ok(addr, 4 * (rvar + 1)))
158934c2f668SLeonid Yegoshin 					goto sigbus;
159034c2f668SLeonid Yegoshin 			} else {
159196d4f267SLinus Torvalds 				if (!access_ok(addr, 4 * rvar))
159234c2f668SLeonid Yegoshin 					goto sigbus;
159334c2f668SLeonid Yegoshin 			}
159434c2f668SLeonid Yegoshin 			if (rvar == 9)
159534c2f668SLeonid Yegoshin 				rvar = 8;
159634c2f668SLeonid Yegoshin 			for (i = 16; rvar; rvar--, i++) {
159734c2f668SLeonid Yegoshin 				value = regs->regs[i];
159834c2f668SLeonid Yegoshin 				StoreW(addr, value, res);
159934c2f668SLeonid Yegoshin 				if (res)
160034c2f668SLeonid Yegoshin 					goto fault;
160134c2f668SLeonid Yegoshin 				addr += 4;
160234c2f668SLeonid Yegoshin 			}
160334c2f668SLeonid Yegoshin 			if ((reg & 0xf) == 9) {
160434c2f668SLeonid Yegoshin 				value = regs->regs[30];
160534c2f668SLeonid Yegoshin 				StoreW(addr, value, res);
160634c2f668SLeonid Yegoshin 				if (res)
160734c2f668SLeonid Yegoshin 					goto fault;
160834c2f668SLeonid Yegoshin 				addr += 4;
160934c2f668SLeonid Yegoshin 			}
161034c2f668SLeonid Yegoshin 			if (reg & 0x10) {
161134c2f668SLeonid Yegoshin 				value = regs->regs[31];
161234c2f668SLeonid Yegoshin 				StoreW(addr, value, res);
161334c2f668SLeonid Yegoshin 				if (res)
161434c2f668SLeonid Yegoshin 					goto fault;
161534c2f668SLeonid Yegoshin 			}
161634c2f668SLeonid Yegoshin 			goto success;
161734c2f668SLeonid Yegoshin 
161834c2f668SLeonid Yegoshin 		case mm_ldm_func:
161934c2f668SLeonid Yegoshin #ifdef CONFIG_64BIT
162034c2f668SLeonid Yegoshin 			reg = insn.mm_m_format.rd;
162134c2f668SLeonid Yegoshin 			rvar = reg & 0xf;
162234c2f668SLeonid Yegoshin 			if ((rvar > 9) || !reg)
162334c2f668SLeonid Yegoshin 				goto sigill;
162434c2f668SLeonid Yegoshin 			if (reg & 0x10) {
162596d4f267SLinus Torvalds 				if (!access_ok(addr, 8 * (rvar + 1)))
162634c2f668SLeonid Yegoshin 					goto sigbus;
162734c2f668SLeonid Yegoshin 			} else {
162896d4f267SLinus Torvalds 				if (!access_ok(addr, 8 * rvar))
162934c2f668SLeonid Yegoshin 					goto sigbus;
163034c2f668SLeonid Yegoshin 			}
163134c2f668SLeonid Yegoshin 			if (rvar == 9)
163234c2f668SLeonid Yegoshin 				rvar = 8;
163334c2f668SLeonid Yegoshin 
163434c2f668SLeonid Yegoshin 			for (i = 16; rvar; rvar--, i++) {
163534c2f668SLeonid Yegoshin 				LoadDW(addr, value, res);
163634c2f668SLeonid Yegoshin 				if (res)
163734c2f668SLeonid Yegoshin 					goto fault;
163834c2f668SLeonid Yegoshin 				addr += 4;
163934c2f668SLeonid Yegoshin 				regs->regs[i] = value;
164034c2f668SLeonid Yegoshin 			}
164134c2f668SLeonid Yegoshin 			if ((reg & 0xf) == 9) {
164234c2f668SLeonid Yegoshin 				LoadDW(addr, value, res);
164334c2f668SLeonid Yegoshin 				if (res)
164434c2f668SLeonid Yegoshin 					goto fault;
164534c2f668SLeonid Yegoshin 				addr += 8;
164634c2f668SLeonid Yegoshin 				regs->regs[30] = value;
164734c2f668SLeonid Yegoshin 			}
164834c2f668SLeonid Yegoshin 			if (reg & 0x10) {
164934c2f668SLeonid Yegoshin 				LoadDW(addr, value, res);
165034c2f668SLeonid Yegoshin 				if (res)
165134c2f668SLeonid Yegoshin 					goto fault;
165234c2f668SLeonid Yegoshin 				regs->regs[31] = value;
165334c2f668SLeonid Yegoshin 			}
165434c2f668SLeonid Yegoshin 			goto success;
165534c2f668SLeonid Yegoshin #endif /* CONFIG_64BIT */
165634c2f668SLeonid Yegoshin 
165734c2f668SLeonid Yegoshin 			goto sigill;
165834c2f668SLeonid Yegoshin 
165934c2f668SLeonid Yegoshin 		case mm_sdm_func:
166034c2f668SLeonid Yegoshin #ifdef CONFIG_64BIT
166134c2f668SLeonid Yegoshin 			reg = insn.mm_m_format.rd;
166234c2f668SLeonid Yegoshin 			rvar = reg & 0xf;
166334c2f668SLeonid Yegoshin 			if ((rvar > 9) || !reg)
166434c2f668SLeonid Yegoshin 				goto sigill;
166534c2f668SLeonid Yegoshin 			if (reg & 0x10) {
166696d4f267SLinus Torvalds 				if (!access_ok(addr, 8 * (rvar + 1)))
166734c2f668SLeonid Yegoshin 					goto sigbus;
166834c2f668SLeonid Yegoshin 			} else {
166996d4f267SLinus Torvalds 				if (!access_ok(addr, 8 * rvar))
167034c2f668SLeonid Yegoshin 					goto sigbus;
167134c2f668SLeonid Yegoshin 			}
167234c2f668SLeonid Yegoshin 			if (rvar == 9)
167334c2f668SLeonid Yegoshin 				rvar = 8;
167434c2f668SLeonid Yegoshin 
167534c2f668SLeonid Yegoshin 			for (i = 16; rvar; rvar--, i++) {
167634c2f668SLeonid Yegoshin 				value = regs->regs[i];
167734c2f668SLeonid Yegoshin 				StoreDW(addr, value, res);
167834c2f668SLeonid Yegoshin 				if (res)
167934c2f668SLeonid Yegoshin 					goto fault;
168034c2f668SLeonid Yegoshin 				addr += 8;
168134c2f668SLeonid Yegoshin 			}
168234c2f668SLeonid Yegoshin 			if ((reg & 0xf) == 9) {
168334c2f668SLeonid Yegoshin 				value = regs->regs[30];
168434c2f668SLeonid Yegoshin 				StoreDW(addr, value, res);
168534c2f668SLeonid Yegoshin 				if (res)
168634c2f668SLeonid Yegoshin 					goto fault;
168734c2f668SLeonid Yegoshin 				addr += 8;
168834c2f668SLeonid Yegoshin 			}
168934c2f668SLeonid Yegoshin 			if (reg & 0x10) {
169034c2f668SLeonid Yegoshin 				value = regs->regs[31];
169134c2f668SLeonid Yegoshin 				StoreDW(addr, value, res);
169234c2f668SLeonid Yegoshin 				if (res)
169334c2f668SLeonid Yegoshin 					goto fault;
169434c2f668SLeonid Yegoshin 			}
169534c2f668SLeonid Yegoshin 			goto success;
169634c2f668SLeonid Yegoshin #endif /* CONFIG_64BIT */
169734c2f668SLeonid Yegoshin 
169834c2f668SLeonid Yegoshin 			goto sigill;
169934c2f668SLeonid Yegoshin 
170034c2f668SLeonid Yegoshin 			/*  LWC2, SWC2, LDC2, SDC2 are not serviced */
170134c2f668SLeonid Yegoshin 		}
170234c2f668SLeonid Yegoshin 
170334c2f668SLeonid Yegoshin 		goto sigbus;
170434c2f668SLeonid Yegoshin 
170534c2f668SLeonid Yegoshin 	case mm_pool32c_op:
170634c2f668SLeonid Yegoshin 		switch (insn.mm_m_format.func) {
170734c2f668SLeonid Yegoshin 		case mm_lwu_func:
170834c2f668SLeonid Yegoshin 			reg = insn.mm_m_format.rd;
170934c2f668SLeonid Yegoshin 			goto loadWU;
171034c2f668SLeonid Yegoshin 		}
171134c2f668SLeonid Yegoshin 
171234c2f668SLeonid Yegoshin 		/*  LL,SC,LLD,SCD are not serviced */
171334c2f668SLeonid Yegoshin 		goto sigbus;
171434c2f668SLeonid Yegoshin 
171585164fd8SPaul Burton #ifdef CONFIG_MIPS_FP_SUPPORT
171634c2f668SLeonid Yegoshin 	case mm_pool32f_op:
171734c2f668SLeonid Yegoshin 		switch (insn.mm_x_format.func) {
171834c2f668SLeonid Yegoshin 		case mm_lwxc1_func:
171934c2f668SLeonid Yegoshin 		case mm_swxc1_func:
172034c2f668SLeonid Yegoshin 		case mm_ldxc1_func:
172134c2f668SLeonid Yegoshin 		case mm_sdxc1_func:
172234c2f668SLeonid Yegoshin 			goto fpu_emul;
172334c2f668SLeonid Yegoshin 		}
172434c2f668SLeonid Yegoshin 
172534c2f668SLeonid Yegoshin 		goto sigbus;
172634c2f668SLeonid Yegoshin 
172734c2f668SLeonid Yegoshin 	case mm_ldc132_op:
172834c2f668SLeonid Yegoshin 	case mm_sdc132_op:
172934c2f668SLeonid Yegoshin 	case mm_lwc132_op:
173085164fd8SPaul Burton 	case mm_swc132_op: {
173185164fd8SPaul Burton 		void __user *fault_addr = NULL;
173285164fd8SPaul Burton 
173334c2f668SLeonid Yegoshin fpu_emul:
173434c2f668SLeonid Yegoshin 		/* roll back jump/branch */
173534c2f668SLeonid Yegoshin 		regs->cp0_epc = origpc;
173634c2f668SLeonid Yegoshin 		regs->regs[31] = orig31;
173734c2f668SLeonid Yegoshin 
173834c2f668SLeonid Yegoshin 		die_if_kernel("Unaligned FP access in kernel code", regs);
173934c2f668SLeonid Yegoshin 		BUG_ON(!used_math());
174034c2f668SLeonid Yegoshin 		BUG_ON(!is_fpu_owner());
174134c2f668SLeonid Yegoshin 
174234c2f668SLeonid Yegoshin 		res = fpu_emulator_cop1Handler(regs, &current->thread.fpu, 1,
174334c2f668SLeonid Yegoshin 					       &fault_addr);
174434c2f668SLeonid Yegoshin 		own_fpu(1);	/* restore FPU state */
174534c2f668SLeonid Yegoshin 
174634c2f668SLeonid Yegoshin 		/* If something went wrong, signal */
1747304acb71SMaciej W. Rozycki 		process_fpemu_return(res, fault_addr, 0);
174834c2f668SLeonid Yegoshin 
174934c2f668SLeonid Yegoshin 		if (res == 0)
175034c2f668SLeonid Yegoshin 			goto success;
175134c2f668SLeonid Yegoshin 		return;
175285164fd8SPaul Burton 	}
175385164fd8SPaul Burton #endif /* CONFIG_MIPS_FP_SUPPORT */
175434c2f668SLeonid Yegoshin 
175534c2f668SLeonid Yegoshin 	case mm_lh32_op:
175634c2f668SLeonid Yegoshin 		reg = insn.mm_i_format.rt;
175734c2f668SLeonid Yegoshin 		goto loadHW;
175834c2f668SLeonid Yegoshin 
175934c2f668SLeonid Yegoshin 	case mm_lhu32_op:
176034c2f668SLeonid Yegoshin 		reg = insn.mm_i_format.rt;
176134c2f668SLeonid Yegoshin 		goto loadHWU;
176234c2f668SLeonid Yegoshin 
176334c2f668SLeonid Yegoshin 	case mm_lw32_op:
176434c2f668SLeonid Yegoshin 		reg = insn.mm_i_format.rt;
176534c2f668SLeonid Yegoshin 		goto loadW;
176634c2f668SLeonid Yegoshin 
176734c2f668SLeonid Yegoshin 	case mm_sh32_op:
176834c2f668SLeonid Yegoshin 		reg = insn.mm_i_format.rt;
176934c2f668SLeonid Yegoshin 		goto storeHW;
177034c2f668SLeonid Yegoshin 
177134c2f668SLeonid Yegoshin 	case mm_sw32_op:
177234c2f668SLeonid Yegoshin 		reg = insn.mm_i_format.rt;
177334c2f668SLeonid Yegoshin 		goto storeW;
177434c2f668SLeonid Yegoshin 
177534c2f668SLeonid Yegoshin 	case mm_ld32_op:
177634c2f668SLeonid Yegoshin 		reg = insn.mm_i_format.rt;
177734c2f668SLeonid Yegoshin 		goto loadDW;
177834c2f668SLeonid Yegoshin 
177934c2f668SLeonid Yegoshin 	case mm_sd32_op:
178034c2f668SLeonid Yegoshin 		reg = insn.mm_i_format.rt;
178134c2f668SLeonid Yegoshin 		goto storeDW;
178234c2f668SLeonid Yegoshin 
178334c2f668SLeonid Yegoshin 	case mm_pool16c_op:
178434c2f668SLeonid Yegoshin 		switch (insn.mm16_m_format.func) {
178534c2f668SLeonid Yegoshin 		case mm_lwm16_op:
178634c2f668SLeonid Yegoshin 			reg = insn.mm16_m_format.rlist;
178734c2f668SLeonid Yegoshin 			rvar = reg + 1;
178896d4f267SLinus Torvalds 			if (!access_ok(addr, 4 * rvar))
178934c2f668SLeonid Yegoshin 				goto sigbus;
179034c2f668SLeonid Yegoshin 
179134c2f668SLeonid Yegoshin 			for (i = 16; rvar; rvar--, i++) {
179234c2f668SLeonid Yegoshin 				LoadW(addr, value, res);
179334c2f668SLeonid Yegoshin 				if (res)
179434c2f668SLeonid Yegoshin 					goto fault;
179534c2f668SLeonid Yegoshin 				addr += 4;
179634c2f668SLeonid Yegoshin 				regs->regs[i] = value;
179734c2f668SLeonid Yegoshin 			}
179834c2f668SLeonid Yegoshin 			LoadW(addr, value, res);
179934c2f668SLeonid Yegoshin 			if (res)
180034c2f668SLeonid Yegoshin 				goto fault;
180134c2f668SLeonid Yegoshin 			regs->regs[31] = value;
180234c2f668SLeonid Yegoshin 
180334c2f668SLeonid Yegoshin 			goto success;
180434c2f668SLeonid Yegoshin 
180534c2f668SLeonid Yegoshin 		case mm_swm16_op:
180634c2f668SLeonid Yegoshin 			reg = insn.mm16_m_format.rlist;
180734c2f668SLeonid Yegoshin 			rvar = reg + 1;
180896d4f267SLinus Torvalds 			if (!access_ok(addr, 4 * rvar))
180934c2f668SLeonid Yegoshin 				goto sigbus;
181034c2f668SLeonid Yegoshin 
181134c2f668SLeonid Yegoshin 			for (i = 16; rvar; rvar--, i++) {
181234c2f668SLeonid Yegoshin 				value = regs->regs[i];
181334c2f668SLeonid Yegoshin 				StoreW(addr, value, res);
181434c2f668SLeonid Yegoshin 				if (res)
181534c2f668SLeonid Yegoshin 					goto fault;
181634c2f668SLeonid Yegoshin 				addr += 4;
181734c2f668SLeonid Yegoshin 			}
181834c2f668SLeonid Yegoshin 			value = regs->regs[31];
181934c2f668SLeonid Yegoshin 			StoreW(addr, value, res);
182034c2f668SLeonid Yegoshin 			if (res)
182134c2f668SLeonid Yegoshin 				goto fault;
182234c2f668SLeonid Yegoshin 
182334c2f668SLeonid Yegoshin 			goto success;
182434c2f668SLeonid Yegoshin 
182534c2f668SLeonid Yegoshin 		}
182634c2f668SLeonid Yegoshin 
182734c2f668SLeonid Yegoshin 		goto sigbus;
182834c2f668SLeonid Yegoshin 
182934c2f668SLeonid Yegoshin 	case mm_lhu16_op:
183034c2f668SLeonid Yegoshin 		reg = reg16to32[insn.mm16_rb_format.rt];
183134c2f668SLeonid Yegoshin 		goto loadHWU;
183234c2f668SLeonid Yegoshin 
183334c2f668SLeonid Yegoshin 	case mm_lw16_op:
183434c2f668SLeonid Yegoshin 		reg = reg16to32[insn.mm16_rb_format.rt];
183534c2f668SLeonid Yegoshin 		goto loadW;
183634c2f668SLeonid Yegoshin 
183734c2f668SLeonid Yegoshin 	case mm_sh16_op:
183834c2f668SLeonid Yegoshin 		reg = reg16to32st[insn.mm16_rb_format.rt];
183934c2f668SLeonid Yegoshin 		goto storeHW;
184034c2f668SLeonid Yegoshin 
184134c2f668SLeonid Yegoshin 	case mm_sw16_op:
184234c2f668SLeonid Yegoshin 		reg = reg16to32st[insn.mm16_rb_format.rt];
184334c2f668SLeonid Yegoshin 		goto storeW;
184434c2f668SLeonid Yegoshin 
184534c2f668SLeonid Yegoshin 	case mm_lwsp16_op:
184634c2f668SLeonid Yegoshin 		reg = insn.mm16_r5_format.rt;
184734c2f668SLeonid Yegoshin 		goto loadW;
184834c2f668SLeonid Yegoshin 
184934c2f668SLeonid Yegoshin 	case mm_swsp16_op:
185034c2f668SLeonid Yegoshin 		reg = insn.mm16_r5_format.rt;
185134c2f668SLeonid Yegoshin 		goto storeW;
185234c2f668SLeonid Yegoshin 
185334c2f668SLeonid Yegoshin 	case mm_lwgp16_op:
185434c2f668SLeonid Yegoshin 		reg = reg16to32[insn.mm16_r3_format.rt];
185534c2f668SLeonid Yegoshin 		goto loadW;
185634c2f668SLeonid Yegoshin 
185734c2f668SLeonid Yegoshin 	default:
185834c2f668SLeonid Yegoshin 		goto sigill;
185934c2f668SLeonid Yegoshin 	}
186034c2f668SLeonid Yegoshin 
186134c2f668SLeonid Yegoshin loadHW:
186296d4f267SLinus Torvalds 	if (!access_ok(addr, 2))
186334c2f668SLeonid Yegoshin 		goto sigbus;
186434c2f668SLeonid Yegoshin 
186534c2f668SLeonid Yegoshin 	LoadHW(addr, value, res);
186634c2f668SLeonid Yegoshin 	if (res)
186734c2f668SLeonid Yegoshin 		goto fault;
186834c2f668SLeonid Yegoshin 	regs->regs[reg] = value;
186934c2f668SLeonid Yegoshin 	goto success;
187034c2f668SLeonid Yegoshin 
187134c2f668SLeonid Yegoshin loadHWU:
187296d4f267SLinus Torvalds 	if (!access_ok(addr, 2))
187334c2f668SLeonid Yegoshin 		goto sigbus;
187434c2f668SLeonid Yegoshin 
187534c2f668SLeonid Yegoshin 	LoadHWU(addr, value, res);
187634c2f668SLeonid Yegoshin 	if (res)
187734c2f668SLeonid Yegoshin 		goto fault;
187834c2f668SLeonid Yegoshin 	regs->regs[reg] = value;
187934c2f668SLeonid Yegoshin 	goto success;
188034c2f668SLeonid Yegoshin 
188134c2f668SLeonid Yegoshin loadW:
188296d4f267SLinus Torvalds 	if (!access_ok(addr, 4))
188334c2f668SLeonid Yegoshin 		goto sigbus;
188434c2f668SLeonid Yegoshin 
188534c2f668SLeonid Yegoshin 	LoadW(addr, value, res);
188634c2f668SLeonid Yegoshin 	if (res)
188734c2f668SLeonid Yegoshin 		goto fault;
188834c2f668SLeonid Yegoshin 	regs->regs[reg] = value;
188934c2f668SLeonid Yegoshin 	goto success;
189034c2f668SLeonid Yegoshin 
189134c2f668SLeonid Yegoshin loadWU:
189234c2f668SLeonid Yegoshin #ifdef CONFIG_64BIT
189334c2f668SLeonid Yegoshin 	/*
189434c2f668SLeonid Yegoshin 	 * A 32-bit kernel might be running on a 64-bit processor.  But
189534c2f668SLeonid Yegoshin 	 * if we're on a 32-bit processor and an i-cache incoherency
189634c2f668SLeonid Yegoshin 	 * or race makes us see a 64-bit instruction here the sdl/sdr
189734c2f668SLeonid Yegoshin 	 * would blow up, so for now we don't handle unaligned 64-bit
189834c2f668SLeonid Yegoshin 	 * instructions on 32-bit kernels.
189934c2f668SLeonid Yegoshin 	 */
190096d4f267SLinus Torvalds 	if (!access_ok(addr, 4))
190134c2f668SLeonid Yegoshin 		goto sigbus;
190234c2f668SLeonid Yegoshin 
190334c2f668SLeonid Yegoshin 	LoadWU(addr, value, res);
190434c2f668SLeonid Yegoshin 	if (res)
190534c2f668SLeonid Yegoshin 		goto fault;
190634c2f668SLeonid Yegoshin 	regs->regs[reg] = value;
190734c2f668SLeonid Yegoshin 	goto success;
190834c2f668SLeonid Yegoshin #endif /* CONFIG_64BIT */
190934c2f668SLeonid Yegoshin 
191034c2f668SLeonid Yegoshin 	/* Cannot handle 64-bit instructions in 32-bit kernel */
191134c2f668SLeonid Yegoshin 	goto sigill;
191234c2f668SLeonid Yegoshin 
191334c2f668SLeonid Yegoshin loadDW:
191434c2f668SLeonid Yegoshin #ifdef CONFIG_64BIT
191534c2f668SLeonid Yegoshin 	/*
191634c2f668SLeonid Yegoshin 	 * A 32-bit kernel might be running on a 64-bit processor.  But
191734c2f668SLeonid Yegoshin 	 * if we're on a 32-bit processor and an i-cache incoherency
191834c2f668SLeonid Yegoshin 	 * or race makes us see a 64-bit instruction here the sdl/sdr
191934c2f668SLeonid Yegoshin 	 * would blow up, so for now we don't handle unaligned 64-bit
192034c2f668SLeonid Yegoshin 	 * instructions on 32-bit kernels.
192134c2f668SLeonid Yegoshin 	 */
192296d4f267SLinus Torvalds 	if (!access_ok(addr, 8))
192334c2f668SLeonid Yegoshin 		goto sigbus;
192434c2f668SLeonid Yegoshin 
192534c2f668SLeonid Yegoshin 	LoadDW(addr, value, res);
192634c2f668SLeonid Yegoshin 	if (res)
192734c2f668SLeonid Yegoshin 		goto fault;
192834c2f668SLeonid Yegoshin 	regs->regs[reg] = value;
192934c2f668SLeonid Yegoshin 	goto success;
193034c2f668SLeonid Yegoshin #endif /* CONFIG_64BIT */
193134c2f668SLeonid Yegoshin 
193234c2f668SLeonid Yegoshin 	/* Cannot handle 64-bit instructions in 32-bit kernel */
193334c2f668SLeonid Yegoshin 	goto sigill;
193434c2f668SLeonid Yegoshin 
193534c2f668SLeonid Yegoshin storeHW:
193696d4f267SLinus Torvalds 	if (!access_ok(addr, 2))
193734c2f668SLeonid Yegoshin 		goto sigbus;
193834c2f668SLeonid Yegoshin 
193934c2f668SLeonid Yegoshin 	value = regs->regs[reg];
194034c2f668SLeonid Yegoshin 	StoreHW(addr, value, res);
194134c2f668SLeonid Yegoshin 	if (res)
194234c2f668SLeonid Yegoshin 		goto fault;
194334c2f668SLeonid Yegoshin 	goto success;
194434c2f668SLeonid Yegoshin 
194534c2f668SLeonid Yegoshin storeW:
194696d4f267SLinus Torvalds 	if (!access_ok(addr, 4))
194734c2f668SLeonid Yegoshin 		goto sigbus;
194834c2f668SLeonid Yegoshin 
194934c2f668SLeonid Yegoshin 	value = regs->regs[reg];
195034c2f668SLeonid Yegoshin 	StoreW(addr, value, res);
195134c2f668SLeonid Yegoshin 	if (res)
195234c2f668SLeonid Yegoshin 		goto fault;
195334c2f668SLeonid Yegoshin 	goto success;
195434c2f668SLeonid Yegoshin 
195534c2f668SLeonid Yegoshin storeDW:
195634c2f668SLeonid Yegoshin #ifdef CONFIG_64BIT
195734c2f668SLeonid Yegoshin 	/*
195834c2f668SLeonid Yegoshin 	 * A 32-bit kernel might be running on a 64-bit processor.  But
195934c2f668SLeonid Yegoshin 	 * if we're on a 32-bit processor and an i-cache incoherency
196034c2f668SLeonid Yegoshin 	 * or race makes us see a 64-bit instruction here the sdl/sdr
196134c2f668SLeonid Yegoshin 	 * would blow up, so for now we don't handle unaligned 64-bit
196234c2f668SLeonid Yegoshin 	 * instructions on 32-bit kernels.
196334c2f668SLeonid Yegoshin 	 */
196496d4f267SLinus Torvalds 	if (!access_ok(addr, 8))
196534c2f668SLeonid Yegoshin 		goto sigbus;
196634c2f668SLeonid Yegoshin 
196734c2f668SLeonid Yegoshin 	value = regs->regs[reg];
196834c2f668SLeonid Yegoshin 	StoreDW(addr, value, res);
196934c2f668SLeonid Yegoshin 	if (res)
197034c2f668SLeonid Yegoshin 		goto fault;
197134c2f668SLeonid Yegoshin 	goto success;
197234c2f668SLeonid Yegoshin #endif /* CONFIG_64BIT */
197334c2f668SLeonid Yegoshin 
197434c2f668SLeonid Yegoshin 	/* Cannot handle 64-bit instructions in 32-bit kernel */
197534c2f668SLeonid Yegoshin 	goto sigill;
197634c2f668SLeonid Yegoshin 
197734c2f668SLeonid Yegoshin success:
197834c2f668SLeonid Yegoshin 	regs->cp0_epc = contpc;	/* advance or branch */
197934c2f668SLeonid Yegoshin 
198034c2f668SLeonid Yegoshin #ifdef CONFIG_DEBUG_FS
198134c2f668SLeonid Yegoshin 	unaligned_instructions++;
198234c2f668SLeonid Yegoshin #endif
198334c2f668SLeonid Yegoshin 	return;
198434c2f668SLeonid Yegoshin 
198534c2f668SLeonid Yegoshin fault:
198634c2f668SLeonid Yegoshin 	/* roll back jump/branch */
198734c2f668SLeonid Yegoshin 	regs->cp0_epc = origpc;
198834c2f668SLeonid Yegoshin 	regs->regs[31] = orig31;
198934c2f668SLeonid Yegoshin 	/* Did we have an exception handler installed? */
199034c2f668SLeonid Yegoshin 	if (fixup_exception(regs))
199134c2f668SLeonid Yegoshin 		return;
199234c2f668SLeonid Yegoshin 
199334c2f668SLeonid Yegoshin 	die_if_kernel("Unhandled kernel unaligned access", regs);
19943cf5d076SEric W. Biederman 	force_sig(SIGSEGV);
199534c2f668SLeonid Yegoshin 
199634c2f668SLeonid Yegoshin 	return;
199734c2f668SLeonid Yegoshin 
199834c2f668SLeonid Yegoshin sigbus:
199934c2f668SLeonid Yegoshin 	die_if_kernel("Unhandled kernel unaligned access", regs);
20003cf5d076SEric W. Biederman 	force_sig(SIGBUS);
200134c2f668SLeonid Yegoshin 
200234c2f668SLeonid Yegoshin 	return;
200334c2f668SLeonid Yegoshin 
200434c2f668SLeonid Yegoshin sigill:
200534c2f668SLeonid Yegoshin 	die_if_kernel
200634c2f668SLeonid Yegoshin 	    ("Unhandled kernel unaligned access or invalid instruction", regs);
20073cf5d076SEric W. Biederman 	force_sig(SIGILL);
20081da177e4SLinus Torvalds }
20091da177e4SLinus Torvalds 
2010451b001bSSteven J. Hill static void emulate_load_store_MIPS16e(struct pt_regs *regs, void __user * addr)
2011451b001bSSteven J. Hill {
2012451b001bSSteven J. Hill 	unsigned long value;
2013451b001bSSteven J. Hill 	unsigned int res;
2014451b001bSSteven J. Hill 	int reg;
2015451b001bSSteven J. Hill 	unsigned long orig31;
2016451b001bSSteven J. Hill 	u16 __user *pc16;
2017451b001bSSteven J. Hill 	unsigned long origpc;
2018451b001bSSteven J. Hill 	union mips16e_instruction mips16inst, oldinst;
2019f3235d32SMaciej W. Rozycki 	unsigned int opcode;
2020f3235d32SMaciej W. Rozycki 	int extended = 0;
2021451b001bSSteven J. Hill 
2022451b001bSSteven J. Hill 	origpc = regs->cp0_epc;
2023451b001bSSteven J. Hill 	orig31 = regs->regs[31];
2024451b001bSSteven J. Hill 	pc16 = (unsigned short __user *)msk_isa16_mode(origpc);
2025451b001bSSteven J. Hill 	/*
2026451b001bSSteven J. Hill 	 * This load never faults.
2027451b001bSSteven J. Hill 	 */
2028451b001bSSteven J. Hill 	__get_user(mips16inst.full, pc16);
2029451b001bSSteven J. Hill 	oldinst = mips16inst;
2030451b001bSSteven J. Hill 
2031451b001bSSteven J. Hill 	/* skip EXTEND instruction */
2032451b001bSSteven J. Hill 	if (mips16inst.ri.opcode == MIPS16e_extend_op) {
2033f3235d32SMaciej W. Rozycki 		extended = 1;
2034451b001bSSteven J. Hill 		pc16++;
2035451b001bSSteven J. Hill 		__get_user(mips16inst.full, pc16);
2036451b001bSSteven J. Hill 	} else if (delay_slot(regs)) {
2037451b001bSSteven J. Hill 		/*  skip jump instructions */
2038451b001bSSteven J. Hill 		/*  JAL/JALX are 32 bits but have OPCODE in first short int */
2039451b001bSSteven J. Hill 		if (mips16inst.ri.opcode == MIPS16e_jal_op)
2040451b001bSSteven J. Hill 			pc16++;
2041451b001bSSteven J. Hill 		pc16++;
2042451b001bSSteven J. Hill 		if (get_user(mips16inst.full, pc16))
2043451b001bSSteven J. Hill 			goto sigbus;
2044451b001bSSteven J. Hill 	}
2045451b001bSSteven J. Hill 
2046f3235d32SMaciej W. Rozycki 	opcode = mips16inst.ri.opcode;
2047f3235d32SMaciej W. Rozycki 	switch (opcode) {
2048451b001bSSteven J. Hill 	case MIPS16e_i64_op:	/* I64 or RI64 instruction */
2049451b001bSSteven J. Hill 		switch (mips16inst.i64.func) {	/* I64/RI64 func field check */
2050451b001bSSteven J. Hill 		case MIPS16e_ldpc_func:
2051451b001bSSteven J. Hill 		case MIPS16e_ldsp_func:
2052451b001bSSteven J. Hill 			reg = reg16to32[mips16inst.ri64.ry];
2053451b001bSSteven J. Hill 			goto loadDW;
2054451b001bSSteven J. Hill 
2055451b001bSSteven J. Hill 		case MIPS16e_sdsp_func:
2056451b001bSSteven J. Hill 			reg = reg16to32[mips16inst.ri64.ry];
2057451b001bSSteven J. Hill 			goto writeDW;
2058451b001bSSteven J. Hill 
2059451b001bSSteven J. Hill 		case MIPS16e_sdrasp_func:
2060451b001bSSteven J. Hill 			reg = 29;	/* GPRSP */
2061451b001bSSteven J. Hill 			goto writeDW;
2062451b001bSSteven J. Hill 		}
2063451b001bSSteven J. Hill 
2064451b001bSSteven J. Hill 		goto sigbus;
2065451b001bSSteven J. Hill 
2066451b001bSSteven J. Hill 	case MIPS16e_swsp_op:
2067f3235d32SMaciej W. Rozycki 		reg = reg16to32[mips16inst.ri.rx];
2068f3235d32SMaciej W. Rozycki 		if (extended && cpu_has_mips16e2)
2069f3235d32SMaciej W. Rozycki 			switch (mips16inst.ri.imm >> 5) {
2070f3235d32SMaciej W. Rozycki 			case 0:		/* SWSP */
2071f3235d32SMaciej W. Rozycki 			case 1:		/* SWGP */
2072f3235d32SMaciej W. Rozycki 				break;
2073f3235d32SMaciej W. Rozycki 			case 2:		/* SHGP */
2074f3235d32SMaciej W. Rozycki 				opcode = MIPS16e_sh_op;
2075f3235d32SMaciej W. Rozycki 				break;
2076f3235d32SMaciej W. Rozycki 			default:
2077f3235d32SMaciej W. Rozycki 				goto sigbus;
2078f3235d32SMaciej W. Rozycki 			}
2079f3235d32SMaciej W. Rozycki 		break;
2080f3235d32SMaciej W. Rozycki 
2081451b001bSSteven J. Hill 	case MIPS16e_lwpc_op:
2082f3235d32SMaciej W. Rozycki 		reg = reg16to32[mips16inst.ri.rx];
2083f3235d32SMaciej W. Rozycki 		break;
2084f3235d32SMaciej W. Rozycki 
2085451b001bSSteven J. Hill 	case MIPS16e_lwsp_op:
2086451b001bSSteven J. Hill 		reg = reg16to32[mips16inst.ri.rx];
2087f3235d32SMaciej W. Rozycki 		if (extended && cpu_has_mips16e2)
2088f3235d32SMaciej W. Rozycki 			switch (mips16inst.ri.imm >> 5) {
2089f3235d32SMaciej W. Rozycki 			case 0:		/* LWSP */
2090f3235d32SMaciej W. Rozycki 			case 1:		/* LWGP */
2091f3235d32SMaciej W. Rozycki 				break;
2092f3235d32SMaciej W. Rozycki 			case 2:		/* LHGP */
2093f3235d32SMaciej W. Rozycki 				opcode = MIPS16e_lh_op;
2094f3235d32SMaciej W. Rozycki 				break;
2095f3235d32SMaciej W. Rozycki 			case 4:		/* LHUGP */
2096f3235d32SMaciej W. Rozycki 				opcode = MIPS16e_lhu_op;
2097f3235d32SMaciej W. Rozycki 				break;
2098f3235d32SMaciej W. Rozycki 			default:
2099f3235d32SMaciej W. Rozycki 				goto sigbus;
2100f3235d32SMaciej W. Rozycki 			}
2101451b001bSSteven J. Hill 		break;
2102451b001bSSteven J. Hill 
2103451b001bSSteven J. Hill 	case MIPS16e_i8_op:
2104451b001bSSteven J. Hill 		if (mips16inst.i8.func != MIPS16e_swrasp_func)
2105451b001bSSteven J. Hill 			goto sigbus;
2106451b001bSSteven J. Hill 		reg = 29;	/* GPRSP */
2107451b001bSSteven J. Hill 		break;
2108451b001bSSteven J. Hill 
2109451b001bSSteven J. Hill 	default:
2110451b001bSSteven J. Hill 		reg = reg16to32[mips16inst.rri.ry];
2111451b001bSSteven J. Hill 		break;
2112451b001bSSteven J. Hill 	}
2113451b001bSSteven J. Hill 
2114f3235d32SMaciej W. Rozycki 	switch (opcode) {
2115451b001bSSteven J. Hill 
2116451b001bSSteven J. Hill 	case MIPS16e_lb_op:
2117451b001bSSteven J. Hill 	case MIPS16e_lbu_op:
2118451b001bSSteven J. Hill 	case MIPS16e_sb_op:
2119451b001bSSteven J. Hill 		goto sigbus;
2120451b001bSSteven J. Hill 
2121451b001bSSteven J. Hill 	case MIPS16e_lh_op:
212296d4f267SLinus Torvalds 		if (!access_ok(addr, 2))
2123451b001bSSteven J. Hill 			goto sigbus;
2124451b001bSSteven J. Hill 
2125451b001bSSteven J. Hill 		LoadHW(addr, value, res);
2126451b001bSSteven J. Hill 		if (res)
2127451b001bSSteven J. Hill 			goto fault;
2128451b001bSSteven J. Hill 		MIPS16e_compute_return_epc(regs, &oldinst);
2129451b001bSSteven J. Hill 		regs->regs[reg] = value;
2130451b001bSSteven J. Hill 		break;
2131451b001bSSteven J. Hill 
2132451b001bSSteven J. Hill 	case MIPS16e_lhu_op:
213396d4f267SLinus Torvalds 		if (!access_ok(addr, 2))
2134451b001bSSteven J. Hill 			goto sigbus;
2135451b001bSSteven J. Hill 
2136451b001bSSteven J. Hill 		LoadHWU(addr, value, res);
2137451b001bSSteven J. Hill 		if (res)
2138451b001bSSteven J. Hill 			goto fault;
2139451b001bSSteven J. Hill 		MIPS16e_compute_return_epc(regs, &oldinst);
2140451b001bSSteven J. Hill 		regs->regs[reg] = value;
2141451b001bSSteven J. Hill 		break;
2142451b001bSSteven J. Hill 
2143451b001bSSteven J. Hill 	case MIPS16e_lw_op:
2144451b001bSSteven J. Hill 	case MIPS16e_lwpc_op:
2145451b001bSSteven J. Hill 	case MIPS16e_lwsp_op:
214696d4f267SLinus Torvalds 		if (!access_ok(addr, 4))
2147451b001bSSteven J. Hill 			goto sigbus;
2148451b001bSSteven J. Hill 
2149451b001bSSteven J. Hill 		LoadW(addr, value, res);
2150451b001bSSteven J. Hill 		if (res)
2151451b001bSSteven J. Hill 			goto fault;
2152451b001bSSteven J. Hill 		MIPS16e_compute_return_epc(regs, &oldinst);
2153451b001bSSteven J. Hill 		regs->regs[reg] = value;
2154451b001bSSteven J. Hill 		break;
2155451b001bSSteven J. Hill 
2156451b001bSSteven J. Hill 	case MIPS16e_lwu_op:
2157451b001bSSteven J. Hill #ifdef CONFIG_64BIT
2158451b001bSSteven J. Hill 		/*
2159451b001bSSteven J. Hill 		 * A 32-bit kernel might be running on a 64-bit processor.  But
2160451b001bSSteven J. Hill 		 * if we're on a 32-bit processor and an i-cache incoherency
2161451b001bSSteven J. Hill 		 * or race makes us see a 64-bit instruction here the sdl/sdr
2162451b001bSSteven J. Hill 		 * would blow up, so for now we don't handle unaligned 64-bit
2163451b001bSSteven J. Hill 		 * instructions on 32-bit kernels.
2164451b001bSSteven J. Hill 		 */
216596d4f267SLinus Torvalds 		if (!access_ok(addr, 4))
2166451b001bSSteven J. Hill 			goto sigbus;
2167451b001bSSteven J. Hill 
2168451b001bSSteven J. Hill 		LoadWU(addr, value, res);
2169451b001bSSteven J. Hill 		if (res)
2170451b001bSSteven J. Hill 			goto fault;
2171451b001bSSteven J. Hill 		MIPS16e_compute_return_epc(regs, &oldinst);
2172451b001bSSteven J. Hill 		regs->regs[reg] = value;
2173451b001bSSteven J. Hill 		break;
2174451b001bSSteven J. Hill #endif /* CONFIG_64BIT */
2175451b001bSSteven J. Hill 
2176451b001bSSteven J. Hill 		/* Cannot handle 64-bit instructions in 32-bit kernel */
2177451b001bSSteven J. Hill 		goto sigill;
2178451b001bSSteven J. Hill 
2179451b001bSSteven J. Hill 	case MIPS16e_ld_op:
2180451b001bSSteven J. Hill loadDW:
2181451b001bSSteven J. Hill #ifdef CONFIG_64BIT
2182451b001bSSteven J. Hill 		/*
2183451b001bSSteven J. Hill 		 * A 32-bit kernel might be running on a 64-bit processor.  But
2184451b001bSSteven J. Hill 		 * if we're on a 32-bit processor and an i-cache incoherency
2185451b001bSSteven J. Hill 		 * or race makes us see a 64-bit instruction here the sdl/sdr
2186451b001bSSteven J. Hill 		 * would blow up, so for now we don't handle unaligned 64-bit
2187451b001bSSteven J. Hill 		 * instructions on 32-bit kernels.
2188451b001bSSteven J. Hill 		 */
218996d4f267SLinus Torvalds 		if (!access_ok(addr, 8))
2190451b001bSSteven J. Hill 			goto sigbus;
2191451b001bSSteven J. Hill 
2192451b001bSSteven J. Hill 		LoadDW(addr, value, res);
2193451b001bSSteven J. Hill 		if (res)
2194451b001bSSteven J. Hill 			goto fault;
2195451b001bSSteven J. Hill 		MIPS16e_compute_return_epc(regs, &oldinst);
2196451b001bSSteven J. Hill 		regs->regs[reg] = value;
2197451b001bSSteven J. Hill 		break;
2198451b001bSSteven J. Hill #endif /* CONFIG_64BIT */
2199451b001bSSteven J. Hill 
2200451b001bSSteven J. Hill 		/* Cannot handle 64-bit instructions in 32-bit kernel */
2201451b001bSSteven J. Hill 		goto sigill;
2202451b001bSSteven J. Hill 
2203451b001bSSteven J. Hill 	case MIPS16e_sh_op:
220496d4f267SLinus Torvalds 		if (!access_ok(addr, 2))
2205451b001bSSteven J. Hill 			goto sigbus;
2206451b001bSSteven J. Hill 
2207451b001bSSteven J. Hill 		MIPS16e_compute_return_epc(regs, &oldinst);
2208451b001bSSteven J. Hill 		value = regs->regs[reg];
2209451b001bSSteven J. Hill 		StoreHW(addr, value, res);
2210451b001bSSteven J. Hill 		if (res)
2211451b001bSSteven J. Hill 			goto fault;
2212451b001bSSteven J. Hill 		break;
2213451b001bSSteven J. Hill 
2214451b001bSSteven J. Hill 	case MIPS16e_sw_op:
2215451b001bSSteven J. Hill 	case MIPS16e_swsp_op:
2216451b001bSSteven J. Hill 	case MIPS16e_i8_op:	/* actually - MIPS16e_swrasp_func */
221796d4f267SLinus Torvalds 		if (!access_ok(addr, 4))
2218451b001bSSteven J. Hill 			goto sigbus;
2219451b001bSSteven J. Hill 
2220451b001bSSteven J. Hill 		MIPS16e_compute_return_epc(regs, &oldinst);
2221451b001bSSteven J. Hill 		value = regs->regs[reg];
2222451b001bSSteven J. Hill 		StoreW(addr, value, res);
2223451b001bSSteven J. Hill 		if (res)
2224451b001bSSteven J. Hill 			goto fault;
2225451b001bSSteven J. Hill 		break;
2226451b001bSSteven J. Hill 
2227451b001bSSteven J. Hill 	case MIPS16e_sd_op:
2228451b001bSSteven J. Hill writeDW:
2229451b001bSSteven J. Hill #ifdef CONFIG_64BIT
2230451b001bSSteven J. Hill 		/*
2231451b001bSSteven J. Hill 		 * A 32-bit kernel might be running on a 64-bit processor.  But
2232451b001bSSteven J. Hill 		 * if we're on a 32-bit processor and an i-cache incoherency
2233451b001bSSteven J. Hill 		 * or race makes us see a 64-bit instruction here the sdl/sdr
2234451b001bSSteven J. Hill 		 * would blow up, so for now we don't handle unaligned 64-bit
2235451b001bSSteven J. Hill 		 * instructions on 32-bit kernels.
2236451b001bSSteven J. Hill 		 */
223796d4f267SLinus Torvalds 		if (!access_ok(addr, 8))
2238451b001bSSteven J. Hill 			goto sigbus;
2239451b001bSSteven J. Hill 
2240451b001bSSteven J. Hill 		MIPS16e_compute_return_epc(regs, &oldinst);
2241451b001bSSteven J. Hill 		value = regs->regs[reg];
2242451b001bSSteven J. Hill 		StoreDW(addr, value, res);
2243451b001bSSteven J. Hill 		if (res)
2244451b001bSSteven J. Hill 			goto fault;
2245451b001bSSteven J. Hill 		break;
2246451b001bSSteven J. Hill #endif /* CONFIG_64BIT */
2247451b001bSSteven J. Hill 
2248451b001bSSteven J. Hill 		/* Cannot handle 64-bit instructions in 32-bit kernel */
2249451b001bSSteven J. Hill 		goto sigill;
2250451b001bSSteven J. Hill 
2251451b001bSSteven J. Hill 	default:
2252451b001bSSteven J. Hill 		/*
2253451b001bSSteven J. Hill 		 * Pheeee...  We encountered an yet unknown instruction or
2254451b001bSSteven J. Hill 		 * cache coherence problem.  Die sucker, die ...
2255451b001bSSteven J. Hill 		 */
2256451b001bSSteven J. Hill 		goto sigill;
2257451b001bSSteven J. Hill 	}
2258451b001bSSteven J. Hill 
2259451b001bSSteven J. Hill #ifdef CONFIG_DEBUG_FS
2260451b001bSSteven J. Hill 	unaligned_instructions++;
2261451b001bSSteven J. Hill #endif
2262451b001bSSteven J. Hill 
2263451b001bSSteven J. Hill 	return;
2264451b001bSSteven J. Hill 
2265451b001bSSteven J. Hill fault:
2266451b001bSSteven J. Hill 	/* roll back jump/branch */
2267451b001bSSteven J. Hill 	regs->cp0_epc = origpc;
2268451b001bSSteven J. Hill 	regs->regs[31] = orig31;
2269451b001bSSteven J. Hill 	/* Did we have an exception handler installed? */
2270451b001bSSteven J. Hill 	if (fixup_exception(regs))
2271451b001bSSteven J. Hill 		return;
2272451b001bSSteven J. Hill 
2273451b001bSSteven J. Hill 	die_if_kernel("Unhandled kernel unaligned access", regs);
22743cf5d076SEric W. Biederman 	force_sig(SIGSEGV);
2275451b001bSSteven J. Hill 
2276451b001bSSteven J. Hill 	return;
2277451b001bSSteven J. Hill 
2278451b001bSSteven J. Hill sigbus:
2279451b001bSSteven J. Hill 	die_if_kernel("Unhandled kernel unaligned access", regs);
22803cf5d076SEric W. Biederman 	force_sig(SIGBUS);
2281451b001bSSteven J. Hill 
2282451b001bSSteven J. Hill 	return;
2283451b001bSSteven J. Hill 
2284451b001bSSteven J. Hill sigill:
2285451b001bSSteven J. Hill 	die_if_kernel
2286451b001bSSteven J. Hill 	    ("Unhandled kernel unaligned access or invalid instruction", regs);
22873cf5d076SEric W. Biederman 	force_sig(SIGILL);
2288451b001bSSteven J. Hill }
2289fc192e50STony Wu 
22901da177e4SLinus Torvalds asmlinkage void do_ade(struct pt_regs *regs)
22911da177e4SLinus Torvalds {
2292c3fc5cd5SRalf Baechle 	enum ctx_state prev_state;
2293fe00f943SRalf Baechle 	unsigned int __user *pc;
22941da177e4SLinus Torvalds 	mm_segment_t seg;
22951da177e4SLinus Torvalds 
2296c3fc5cd5SRalf Baechle 	prev_state = exception_enter();
22977f788d2dSDeng-Cheng Zhu 	perf_sw_event(PERF_COUNT_SW_ALIGNMENT_FAULTS,
2298a8b0ca17SPeter Zijlstra 			1, regs, regs->cp0_badvaddr);
22991da177e4SLinus Torvalds 	/*
23001da177e4SLinus Torvalds 	 * Did we catch a fault trying to load an instruction?
23011da177e4SLinus Torvalds 	 */
230234c2f668SLeonid Yegoshin 	if (regs->cp0_badvaddr == regs->cp0_epc)
23031da177e4SLinus Torvalds 		goto sigbus;
23041da177e4SLinus Torvalds 
2305293c5bd1SRalf Baechle 	if (user_mode(regs) && !test_thread_flag(TIF_FIXADE))
23061da177e4SLinus Torvalds 		goto sigbus;
23076312e0eeSAtsushi Nemoto 	if (unaligned_action == UNALIGNED_ACTION_SIGNAL)
23086312e0eeSAtsushi Nemoto 		goto sigbus;
23091da177e4SLinus Torvalds 
23101da177e4SLinus Torvalds 	/*
23111da177e4SLinus Torvalds 	 * Do branch emulation only if we didn't forward the exception.
23121da177e4SLinus Torvalds 	 * This is all so but ugly ...
23131da177e4SLinus Torvalds 	 */
231434c2f668SLeonid Yegoshin 
231534c2f668SLeonid Yegoshin 	/*
231634c2f668SLeonid Yegoshin 	 * Are we running in microMIPS mode?
231734c2f668SLeonid Yegoshin 	 */
231834c2f668SLeonid Yegoshin 	if (get_isa16_mode(regs->cp0_epc)) {
231934c2f668SLeonid Yegoshin 		/*
232034c2f668SLeonid Yegoshin 		 * Did we catch a fault trying to load an instruction in
232134c2f668SLeonid Yegoshin 		 * 16-bit mode?
232234c2f668SLeonid Yegoshin 		 */
232334c2f668SLeonid Yegoshin 		if (regs->cp0_badvaddr == msk_isa16_mode(regs->cp0_epc))
232434c2f668SLeonid Yegoshin 			goto sigbus;
232534c2f668SLeonid Yegoshin 		if (unaligned_action == UNALIGNED_ACTION_SHOW)
232634c2f668SLeonid Yegoshin 			show_registers(regs);
232734c2f668SLeonid Yegoshin 
232834c2f668SLeonid Yegoshin 		if (cpu_has_mmips) {
232934c2f668SLeonid Yegoshin 			seg = get_fs();
233034c2f668SLeonid Yegoshin 			if (!user_mode(regs))
233134c2f668SLeonid Yegoshin 				set_fs(KERNEL_DS);
233234c2f668SLeonid Yegoshin 			emulate_load_store_microMIPS(regs,
233334c2f668SLeonid Yegoshin 				(void __user *)regs->cp0_badvaddr);
233434c2f668SLeonid Yegoshin 			set_fs(seg);
233534c2f668SLeonid Yegoshin 
233634c2f668SLeonid Yegoshin 			return;
233734c2f668SLeonid Yegoshin 		}
233834c2f668SLeonid Yegoshin 
2339451b001bSSteven J. Hill 		if (cpu_has_mips16) {
2340451b001bSSteven J. Hill 			seg = get_fs();
2341451b001bSSteven J. Hill 			if (!user_mode(regs))
2342451b001bSSteven J. Hill 				set_fs(KERNEL_DS);
2343451b001bSSteven J. Hill 			emulate_load_store_MIPS16e(regs,
2344451b001bSSteven J. Hill 				(void __user *)regs->cp0_badvaddr);
2345451b001bSSteven J. Hill 			set_fs(seg);
2346451b001bSSteven J. Hill 
2347451b001bSSteven J. Hill 			return;
2348451b001bSSteven J. Hill 		}
2349451b001bSSteven J. Hill 
235034c2f668SLeonid Yegoshin 		goto sigbus;
235134c2f668SLeonid Yegoshin 	}
235234c2f668SLeonid Yegoshin 
235334c2f668SLeonid Yegoshin 	if (unaligned_action == UNALIGNED_ACTION_SHOW)
235434c2f668SLeonid Yegoshin 		show_registers(regs);
235534c2f668SLeonid Yegoshin 	pc = (unsigned int __user *)exception_epc(regs);
235634c2f668SLeonid Yegoshin 
23571da177e4SLinus Torvalds 	seg = get_fs();
23581da177e4SLinus Torvalds 	if (!user_mode(regs))
23591da177e4SLinus Torvalds 		set_fs(KERNEL_DS);
23607f18f151SRalf Baechle 	emulate_load_store_insn(regs, (void __user *)regs->cp0_badvaddr, pc);
23611da177e4SLinus Torvalds 	set_fs(seg);
23621da177e4SLinus Torvalds 
23631da177e4SLinus Torvalds 	return;
23641da177e4SLinus Torvalds 
23651da177e4SLinus Torvalds sigbus:
23661da177e4SLinus Torvalds 	die_if_kernel("Kernel unaligned instruction access", regs);
23673cf5d076SEric W. Biederman 	force_sig(SIGBUS);
23681da177e4SLinus Torvalds 
23691da177e4SLinus Torvalds 	/*
23701da177e4SLinus Torvalds 	 * XXX On return from the signal handler we should advance the epc
23711da177e4SLinus Torvalds 	 */
2372c3fc5cd5SRalf Baechle 	exception_exit(prev_state);
23731da177e4SLinus Torvalds }
23746312e0eeSAtsushi Nemoto 
23756312e0eeSAtsushi Nemoto #ifdef CONFIG_DEBUG_FS
23766312e0eeSAtsushi Nemoto static int __init debugfs_unaligned(void)
23776312e0eeSAtsushi Nemoto {
2378d8140426SGreg Kroah-Hartman 	debugfs_create_u32("unaligned_instructions", S_IRUGO, mips_debugfs_dir,
2379d8140426SGreg Kroah-Hartman 			   &unaligned_instructions);
2380d8140426SGreg Kroah-Hartman 	debugfs_create_u32("unaligned_action", S_IRUGO | S_IWUSR,
23816312e0eeSAtsushi Nemoto 			   mips_debugfs_dir, &unaligned_action);
23826312e0eeSAtsushi Nemoto 	return 0;
23836312e0eeSAtsushi Nemoto }
23848d6b591cSRalf Baechle arch_initcall(debugfs_unaligned);
23856312e0eeSAtsushi Nemoto #endif
2386