Skip to content

Commit

Permalink
[SPARC64]: Handle unimplemented FPU square-root on Niagara.
Browse files Browse the repository at this point in the history
The math-emu code only expects unfinished fpop traps when
emulating FPU sqrt instructions on pre-Niagara chips.
On Niagara we can get unimplemented fpop, so handle that.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Mar 20, 2006
1 parent f5deb80 commit 4e74ae8
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions arch/sparc64/math-emu/math.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,30 @@ int do_mathemu(struct pt_regs *regs, struct fpustate *f)
case FSTOQ: TYPE(3,3,1,1,1,0,0); break;
case FDTOQ: TYPE(3,3,1,2,1,0,0); break;
case FQTOI: TYPE(3,1,0,3,1,0,0); break;

/* We can get either unimplemented or unfinished
* for these cases. Pre-Niagara systems generate
* unfinished fpop for SUBNORMAL cases, and Niagara
* always gives unimplemented fpop for fsqrt{s,d}.
*/
case FSQRTS: {
unsigned long x = current_thread_info()->xfsr[0];

x = (x >> 14) & 0xf;
TYPE(x,1,1,1,1,0,0);
printk("math-emu: type is %08x\n", type);
break;
}

case FSQRTD: {
unsigned long x = current_thread_info()->xfsr[0];

x = (x >> 14) & 0xf;
TYPE(x,2,1,2,1,0,0);
break;
}

/* SUBNORMAL - ftt == 2 */
case FSQRTS: TYPE(2,1,1,1,1,0,0); break;
case FSQRTD: TYPE(2,2,1,2,1,0,0); break;
case FADDD:
case FSUBD:
case FMULD:
Expand Down

0 comments on commit 4e74ae8

Please sign in to comment.