2 * arch/sh/math-emu/math.c
4 * Copyright (C) 2006 Takashi YOSHII <takasi-y@ops.dti.ne.jp>
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 #include <linux/kernel.h>
11 #include <linux/errno.h>
12 #include <linux/types.h>
13 #include <linux/sched/signal.h>
14 #include <linux/signal.h>
15 #include <linux/perf_event.h>
17 #include <linux/uaccess.h>
20 #include <asm/processor.h>
24 #include <math-emu/soft-fp.h>
25 #include <math-emu/single.h>
26 #include <math-emu/double.h>
28 #define FPUL (fregs->fpul)
29 #define FPSCR (fregs->fpscr)
30 #define FPSCR_RM (FPSCR&3)
31 #define FPSCR_DN ((FPSCR>>18)&1)
32 #define FPSCR_PR ((FPSCR>>19)&1)
33 #define FPSCR_SZ ((FPSCR>>20)&1)
34 #define FPSCR_FR ((FPSCR>>21)&1)
35 #define FPSCR_MASK 0x003fffffUL
37 #define BANK(n) (n^(FPSCR_FR?16:0))
38 #define FR ((unsigned long*)(fregs->fp_regs))
39 #define FR0 (FR[BANK(0)])
40 #define FRn (FR[BANK(n)])
41 #define FRm (FR[BANK(m)])
42 #define DR ((unsigned long long*)(fregs->fp_regs))
43 #define DRn (DR[BANK(n)/2])
44 #define DRm (DR[BANK(m)/2])
46 #define XREG(n) (n^16)
47 #define XFn (FR[BANK(XREG(n))])
48 #define XFm (FR[BANK(XREG(m))])
49 #define XDn (DR[BANK(XREG(n))/2])
50 #define XDm (DR[BANK(XREG(m))/2])
52 #define R0 (regs->regs[0])
53 #define Rn (regs->regs[n])
54 #define Rm (regs->regs[m])
56 #define MWRITE(d,a) ({if(put_user(d, (typeof (d) __user *)a)) return -EFAULT;})
57 #define MREAD(d,a) ({if(get_user(d, (typeof (d) __user *)a)) return -EFAULT;})
59 #define PACK_S(r,f) FP_PACK_SP(&r,f)
60 #define UNPACK_S(f,r) FP_UNPACK_SP(f,&r)
62 {u32 t[2]; FP_PACK_DP(t,f); ((u32*)&r)[0]=t[1]; ((u32*)&r)[1]=t[0];}
63 #define UNPACK_D(f,r) \
64 {u32 t[2]; t[0]=((u32*)&r)[1]; t[1]=((u32*)&r)[0]; FP_UNPACK_DP(f,t);}
66 // 2 args instructions.
67 #define BOTH_PRmn(op,x) \
68 FP_DECL_EX; if(FPSCR_PR) op(D,x,DRm,DRn); else op(S,x,FRm,FRn);
70 #define CMP_X(SZ,R,M,N) do{ \
71 FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); \
72 UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
73 FP_CMP_##SZ(R, Fn, Fm, 2); }while(0)
74 #define EQ_X(SZ,R,M,N) do{ \
75 FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); \
76 UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
77 FP_CMP_EQ_##SZ(R, Fn, Fm); }while(0)
78 #define CMP(OP) ({ int r; BOTH_PRmn(OP##_X,r); r; })
81 fcmp_gt(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
, int n
)
92 fcmp_eq(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
, int n
)
94 if (CMP(CMP
/*EQ*/) == 0)
101 #define ARITH_X(SZ,OP,M,N) do{ \
102 FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); FP_DECL_##SZ(Fr); \
103 UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
104 FP_##OP##_##SZ(Fr, Fn, Fm); \
105 PACK_##SZ(N, Fr); }while(0)
108 fadd(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
, int n
)
110 BOTH_PRmn(ARITH_X
, ADD
);
115 fsub(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
, int n
)
117 BOTH_PRmn(ARITH_X
, SUB
);
122 fmul(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
, int n
)
124 BOTH_PRmn(ARITH_X
, MUL
);
129 fdiv(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
, int n
)
131 BOTH_PRmn(ARITH_X
, DIV
);
136 fmac(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
, int n
)
147 FP_MUL_S(Ft
, Fm
, F0
);
148 FP_ADD_S(Fr
, Fn
, Ft
);
153 // to process fmov's extension (odd n for DR access XD).
154 #define FMOV_EXT(x) if(x&1) x+=16-1
157 fmov_idx_reg(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
,
162 MREAD(FRn
, Rm
+ R0
+ 4);
173 fmov_mem_reg(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
,
189 fmov_inc_reg(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
,
207 fmov_reg_idx(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
,
212 MWRITE(FRm
, Rn
+ R0
+ 4);
214 MWRITE(FRm
, Rn
+ R0
);
216 MWRITE(FRm
, Rn
+ R0
);
223 fmov_reg_mem(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
,
239 fmov_reg_dec(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
,
257 fmov_reg_reg(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
,
272 fnop_mn(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int m
, int n
)
277 // 1 arg instructions.
278 #define NOTYETn(i) static int i(struct sh_fpu_soft_struct *fregs, int n) \
279 { printk( #i " not yet done.\n"); return 0; }
287 #define EMU_FLOAT_X(SZ,N) do { \
289 FP_FROM_INT_##SZ(Fn, FPUL, 32, int); \
290 PACK_##SZ(N, Fn); }while(0)
291 static int ffloat(struct sh_fpu_soft_struct
*fregs
, int n
)
303 #define EMU_FTRC_X(SZ,N) do { \
305 UNPACK_##SZ(Fn, N); \
306 FP_TO_INT_##SZ(FPUL, Fn, 32, 1); }while(0)
307 static int ftrc(struct sh_fpu_soft_struct
*fregs
, int n
)
319 static int fcnvsd(struct sh_fpu_soft_struct
*fregs
, int n
)
325 FP_CONV(D
, S
, 2, 1, Fr
, Fn
);
330 static int fcnvds(struct sh_fpu_soft_struct
*fregs
, int n
)
336 FP_CONV(S
, D
, 1, 2, Fr
, Fn
);
341 static int fxchg(struct sh_fpu_soft_struct
*fregs
, int flag
)
347 static int fsts(struct sh_fpu_soft_struct
*fregs
, int n
)
353 static int flds(struct sh_fpu_soft_struct
*fregs
, int n
)
359 static int fneg(struct sh_fpu_soft_struct
*fregs
, int n
)
361 FRn
^= (1 << (_FP_W_TYPE_SIZE
- 1));
365 static int fabs(struct sh_fpu_soft_struct
*fregs
, int n
)
367 FRn
&= ~(1 << (_FP_W_TYPE_SIZE
- 1));
371 static int fld0(struct sh_fpu_soft_struct
*fregs
, int n
)
377 static int fld1(struct sh_fpu_soft_struct
*fregs
, int n
)
379 FRn
= (_FP_EXPBIAS_S
<< (_FP_FRACBITS_S
- 1));
383 static int fnop_n(struct sh_fpu_soft_struct
*fregs
, int n
)
388 /// Instruction decoders.
390 static int id_fxfd(struct sh_fpu_soft_struct
*, int);
391 static int id_fnxd(struct sh_fpu_soft_struct
*, struct pt_regs
*, int, int);
393 static int (*fnxd
[])(struct sh_fpu_soft_struct
*, int) = {
394 fsts
, flds
, ffloat
, ftrc
, fneg
, fabs
, fsqrt
, fsrra
,
395 fld0
, fld1
, fcnvsd
, fcnvds
, fnop_n
, fnop_n
, fipr
, id_fxfd
398 static int (*fnmx
[])(struct sh_fpu_soft_struct
*, struct pt_regs
*, int, int) = {
399 fadd
, fsub
, fmul
, fdiv
, fcmp_eq
, fcmp_gt
, fmov_idx_reg
, fmov_reg_idx
,
400 fmov_mem_reg
, fmov_inc_reg
, fmov_reg_mem
, fmov_reg_dec
,
401 fmov_reg_reg
, id_fnxd
, fmac
, fnop_mn
};
403 static int id_fxfd(struct sh_fpu_soft_struct
*fregs
, int x
)
405 const int flag
[] = { FPSCR_SZ
, FPSCR_PR
, FPSCR_FR
, 0 };
408 fxchg(fregs
, flag
[x
>> 2]);
420 id_fnxd(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, int x
, int n
)
422 return (fnxd
[x
])(fregs
, n
);
426 id_fnmx(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, u16 code
)
428 int n
= (code
>> 8) & 0xf, m
= (code
>> 4) & 0xf, x
= code
& 0xf;
429 return (fnmx
[x
])(fregs
, regs
, m
, n
);
433 id_sys(struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
, u16 code
)
435 int n
= ((code
>> 8) & 0xf);
436 unsigned long *reg
= (code
& 0x0010) ? &FPUL
: &FPSCR
;
438 switch (code
& 0xf0ff) {
464 static int fpu_emulate(u16 code
, struct sh_fpu_soft_struct
*fregs
, struct pt_regs
*regs
)
466 if ((code
& 0xf000) == 0xf000)
467 return id_fnmx(fregs
, regs
, code
);
469 return id_sys(fregs
, regs
, code
);
473 * fpu_init - Initialize FPU registers
474 * @fpu: Pointer to software emulated FPU registers.
476 static void fpu_init(struct sh_fpu_soft_struct
*fpu
)
480 fpu
->fpscr
= FPSCR_INIT
;
483 for (i
= 0; i
< 16; i
++) {
490 * do_fpu_inst - Handle reserved instructions for FPU emulation
491 * @inst: instruction code.
492 * @regs: registers on stack.
494 int do_fpu_inst(unsigned short inst
, struct pt_regs
*regs
)
496 struct task_struct
*tsk
= current
;
497 struct sh_fpu_soft_struct
*fpu
= &(tsk
->thread
.xstate
->softfpu
);
499 perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS
, 1, regs
, 0);
501 if (!(task_thread_info(tsk
)->status
& TS_USEDFPU
)) {
502 /* initialize once. */
504 task_thread_info(tsk
)->status
|= TS_USEDFPU
;
507 return fpu_emulate(inst
, fpu
, regs
);