2 * muldiv.c: Hardware multiply/division illegal instruction trap
3 * for sun4c/sun4 (which do not have those instructions)
5 * Copyright (C) 1996 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
6 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
8 * 2004-12-25 Krzysztof Helt (krzysztof.h1@wp.pl)
9 * - fixed registers constrains in inline assembly declarations
12 #include <linux/kernel.h>
13 #include <linux/sched.h>
15 #include <asm/ptrace.h>
16 #include <asm/processor.h>
17 #include <asm/system.h>
18 #include <asm/uaccess.h>
22 /* #define DEBUG_MULDIV */
24 static inline int has_imm13(int insn)
26 return (insn & 0x2000);
29 static inline int is_foocc(int insn)
31 return (insn & 0x800000);
34 static inline int sign_extend_imm13(int imm)
36 return imm << 19 >> 19;
39 static inline void advance(struct pt_regs *regs)
45 static inline void maybe_flush_windows(unsigned int rs1, unsigned int rs2,
48 if(rs2 >= 16 || rs1 >= 16 || rd >= 16) {
50 __asm__ __volatile__("save %sp, -0x40, %sp\n\t"
51 "save %sp, -0x40, %sp\n\t"
52 "save %sp, -0x40, %sp\n\t"
53 "save %sp, -0x40, %sp\n\t"
54 "save %sp, -0x40, %sp\n\t"
55 "save %sp, -0x40, %sp\n\t"
56 "save %sp, -0x40, %sp\n\t"
57 "restore; restore; restore; restore;\n\t"
58 "restore; restore; restore;\n\t");
62 #define fetch_reg(reg, regs) ({ \
63 struct reg_window32 __user *win; \
64 register unsigned long ret; \
66 if (!(reg)) ret = 0; \
67 else if ((reg) < 16) { \
68 ret = regs->u_regs[(reg)]; \
70 /* Ho hum, the slightly complicated case. */ \
71 win = (struct reg_window32 __user *)regs->u_regs[UREG_FP];\
72 if (get_user (ret, &win->locals[(reg) - 16])) return -1;\
78 store_reg(unsigned int result, unsigned int reg, struct pt_regs *regs)
80 struct reg_window32 __user *win;
85 regs->u_regs[reg] = result;
88 /* need to use put_user() in this case: */
89 win = (struct reg_window32 __user *) regs->u_regs[UREG_FP];
90 return (put_user(result, &win->locals[reg - 16]));
94 /* Should return 0 if mul/div emulation succeeded and SIGILL should
97 int do_user_muldiv(struct pt_regs *regs, unsigned long pc)
101 unsigned int rs1, rs2, rdv;
104 return -1; /* This happens to often, I think */
105 if (get_user (insn, (unsigned int __user *)pc))
107 if ((insn & 0xc1400000) != 0x80400000)
109 inst = ((insn >> 19) & 0xf);
110 if ((inst & 0xe) != 10 && (inst & 0xe) != 14)
113 /* Now we know we have to do something with umul, smul, udiv or sdiv */
114 rs1 = (insn >> 14) & 0x1f;
116 rdv = (insn >> 25) & 0x1f;
117 if (has_imm13(insn)) {
118 maybe_flush_windows(rs1, 0, rdv);
119 rs2 = sign_extend_imm13(insn);
121 maybe_flush_windows(rs1, rs2, rdv);
122 rs2 = fetch_reg(rs2, regs);
124 rs1 = fetch_reg(rs1, regs);
128 printk ("unsigned muldiv: 0x%x * 0x%x = ", rs1, rs2);
130 __asm__ __volatile__ ("\n\t"
136 : "=r" (rs1), "=r" (rs2)
137 : "0" (rs1), "1" (rs2)
138 : "o0", "o1", "o2", "o3", "o4", "o5", "o7", "cc");
140 printk ("0x%x%08x\n", rs2, rs1);
142 if (store_reg(rs1, rdv, regs))
148 printk ("signed muldiv: 0x%x * 0x%x = ", rs1, rs2);
150 __asm__ __volatile__ ("\n\t"
156 : "=r" (rs1), "=r" (rs2)
157 : "0" (rs1), "1" (rs2)
158 : "o0", "o1", "o2", "o3", "o4", "o5", "o7", "cc");
160 printk ("0x%x%08x\n", rs2, rs1);
162 if (store_reg(rs1, rdv, regs))
168 printk ("unsigned muldiv: 0x%x%08x / 0x%x = ", regs->y, rs1, rs2);
172 printk ("DIVISION BY ZERO\n");
174 handle_hw_divzero (regs, pc, regs->npc, regs->psr);
177 __asm__ __volatile__ ("\n\t"
185 : "=r" (rs1), "=r" (rs2)
186 : "r" (regs->y), "0" (rs1), "1" (rs2)
187 : "o0", "o1", "o2", "o3", "o4", "o5", "o7",
188 "g1", "g2", "g3", "cc");
190 printk ("0x%x\n", rs1);
192 if (store_reg(rs1, rdv, regs))
197 printk ("signed muldiv: 0x%x%08x / 0x%x = ", regs->y, rs1, rs2);
201 printk ("DIVISION BY ZERO\n");
203 handle_hw_divzero (regs, pc, regs->npc, regs->psr);
206 __asm__ __volatile__ ("\n\t"
214 : "=r" (rs1), "=r" (rs2)
215 : "r" (regs->y), "0" (rs1), "1" (rs2)
216 : "o0", "o1", "o2", "o3", "o4", "o5", "o7",
217 "g1", "g2", "g3", "cc");
219 printk ("0x%x\n", rs1);
221 if (store_reg(rs1, rdv, regs))
225 if (is_foocc (insn)) {
226 regs->psr &= ~PSR_ICC;
227 if ((inst & 0xe) == 14) {
229 if (rs2) regs->psr |= PSR_V;
231 if (!rs1) regs->psr |= PSR_Z;
232 if (((int)rs1) < 0) regs->psr |= PSR_N;
234 printk ("psr muldiv: %08x\n", regs->psr);