aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2007-11-22 03:30:50 -0500
committerPaul Mundt <lethal@linux-sh.org>2008-01-27 23:18:55 -0500
commit332fd57b92d26e2ac6112340b98e92bb76117a41 (patch)
treefbbc00a900299ad91f46a74b8f2d42efaf4809af /arch/sh/kernel
parentb6d7b666097e79a8908e3c43fd55fd291a95e133 (diff)
sh: Bring the SH-5 FPU in line with the SH-4 FPU API.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel')
-rw-r--r--arch/sh/kernel/cpu/sh5/fpu.c16
-rw-r--r--arch/sh/kernel/process_64.c4
-rw-r--r--arch/sh/kernel/ptrace_64.c4
-rw-r--r--arch/sh/kernel/signal_64.c2
-rw-r--r--arch/sh/kernel/traps_64.c4
5 files changed, 14 insertions, 16 deletions
diff --git a/arch/sh/kernel/cpu/sh5/fpu.c b/arch/sh/kernel/cpu/sh5/fpu.c
index d3f5e7468dfe..5a391b1a00e2 100644
--- a/arch/sh/kernel/cpu/sh5/fpu.c
+++ b/arch/sh/kernel/cpu/sh5/fpu.c
@@ -30,12 +30,12 @@
30 30
31static union sh_fpu_union init_fpuregs = { 31static union sh_fpu_union init_fpuregs = {
32 .hard = { 32 .hard = {
33 .fp_regs = { [0 ... 63] = sNAN32 }, 33 .fp_regs = { [0 ... 63] = sNAN32 },
34 .fpscr = FPSCR_INIT 34 .fpscr = FPSCR_INIT
35 } 35 }
36}; 36};
37 37
38inline void fpsave(struct sh_fpu_hard_struct *fpregs) 38void save_fpu(struct task_struct *tsk, struct pt_regs *regs)
39{ 39{
40 asm volatile("fst.p %0, (0*8), fp0\n\t" 40 asm volatile("fst.p %0, (0*8), fp0\n\t"
41 "fst.p %0, (1*8), fp2\n\t" 41 "fst.p %0, (1*8), fp2\n\t"
@@ -73,11 +73,10 @@ inline void fpsave(struct sh_fpu_hard_struct *fpregs)
73 "fgetscr fr63\n\t" 73 "fgetscr fr63\n\t"
74 "fst.s %0, (32*8), fr63\n\t" 74 "fst.s %0, (32*8), fr63\n\t"
75 : /* no output */ 75 : /* no output */
76 : "r" (fpregs) 76 : "r" (&tsk->thread.fpu.hard)
77 : "memory"); 77 : "memory");
78} 78}
79 79
80
81static inline void 80static inline void
82fpload(struct sh_fpu_hard_struct *fpregs) 81fpload(struct sh_fpu_hard_struct *fpregs)
83{ 82{
@@ -153,10 +152,10 @@ do_fpu_state_restore(unsigned long ex, struct pt_regs *regs)
153 return; 152 return;
154 153
155 enable_fpu(); 154 enable_fpu();
156 if (last_task_used_math != NULL) { 155 if (last_task_used_math != NULL)
157 /* Other processes fpu state, save away */ 156 /* Other processes fpu state, save away */
158 fpsave(&last_task_used_math->thread.fpu.hard); 157 save_fpu(last_task_used_math, regs);
159 } 158
160 last_task_used_math = current; 159 last_task_used_math = current;
161 if (used_math()) { 160 if (used_math()) {
162 fpload(&current->thread.fpu.hard); 161 fpload(&current->thread.fpu.hard);
@@ -167,4 +166,3 @@ do_fpu_state_restore(unsigned long ex, struct pt_regs *regs)
167 } 166 }
168 disable_fpu(); 167 disable_fpu();
169} 168}
170
diff --git a/arch/sh/kernel/process_64.c b/arch/sh/kernel/process_64.c
index 2dd97eecb44c..973dd1a3d292 100644
--- a/arch/sh/kernel/process_64.c
+++ b/arch/sh/kernel/process_64.c
@@ -480,7 +480,7 @@ int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
480 if (fpvalid) { 480 if (fpvalid) {
481 if (current == last_task_used_math) { 481 if (current == last_task_used_math) {
482 enable_fpu(); 482 enable_fpu();
483 fpsave(&tsk->thread.fpu.hard); 483 save_fpu(tsk, regs);
484 disable_fpu(); 484 disable_fpu();
485 last_task_used_math = 0; 485 last_task_used_math = 0;
486 regs->sr |= SR_FD; 486 regs->sr |= SR_FD;
@@ -507,7 +507,7 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
507#ifdef CONFIG_SH_FPU 507#ifdef CONFIG_SH_FPU
508 if(last_task_used_math == current) { 508 if(last_task_used_math == current) {
509 enable_fpu(); 509 enable_fpu();
510 fpsave(&current->thread.fpu.hard); 510 save_fpu(current, regs);
511 disable_fpu(); 511 disable_fpu();
512 last_task_used_math = NULL; 512 last_task_used_math = NULL;
513 regs->sr |= SR_FD; 513 regs->sr |= SR_FD;
diff --git a/arch/sh/kernel/ptrace_64.c b/arch/sh/kernel/ptrace_64.c
index 51bb546365cb..e9cc6ebd2cea 100644
--- a/arch/sh/kernel/ptrace_64.c
+++ b/arch/sh/kernel/ptrace_64.c
@@ -75,7 +75,7 @@ get_fpu_long(struct task_struct *task, unsigned long addr)
75 75
76 if (last_task_used_math == task) { 76 if (last_task_used_math == task) {
77 enable_fpu(); 77 enable_fpu();
78 fpsave(&task->thread.fpu.hard); 78 save_fpu(task, regs);
79 disable_fpu(); 79 disable_fpu();
80 last_task_used_math = 0; 80 last_task_used_math = 0;
81 regs->sr |= SR_FD; 81 regs->sr |= SR_FD;
@@ -111,7 +111,7 @@ put_fpu_long(struct task_struct *task, unsigned long addr, unsigned long data)
111 set_stopped_child_used_math(task); 111 set_stopped_child_used_math(task);
112 } else if (last_task_used_math == task) { 112 } else if (last_task_used_math == task) {
113 enable_fpu(); 113 enable_fpu();
114 fpsave(&task->thread.fpu.hard); 114 save_fpu(task, regs);
115 disable_fpu(); 115 disable_fpu();
116 last_task_used_math = 0; 116 last_task_used_math = 0;
117 regs->sr |= SR_FD; 117 regs->sr |= SR_FD;
diff --git a/arch/sh/kernel/signal_64.c b/arch/sh/kernel/signal_64.c
index 08f403e23662..922891960c33 100644
--- a/arch/sh/kernel/signal_64.c
+++ b/arch/sh/kernel/signal_64.c
@@ -212,7 +212,7 @@ setup_sigcontext_fpu(struct pt_regs *regs, struct sigcontext __user *sc)
212 212
213 if (current == last_task_used_math) { 213 if (current == last_task_used_math) {
214 enable_fpu(); 214 enable_fpu();
215 fpsave(&current->thread.fpu.hard); 215 save_fpu(current, regs);
216 disable_fpu(); 216 disable_fpu();
217 last_task_used_math = NULL; 217 last_task_used_math = NULL;
218 regs->sr |= SR_FD; 218 regs->sr |= SR_FD;
diff --git a/arch/sh/kernel/traps_64.c b/arch/sh/kernel/traps_64.c
index 0f4ea3ac3e0b..b8020f26b635 100644
--- a/arch/sh/kernel/traps_64.c
+++ b/arch/sh/kernel/traps_64.c
@@ -618,7 +618,7 @@ static int misaligned_fpu_load(struct pt_regs *regs,
618 indexed by register number. */ 618 indexed by register number. */
619 if (last_task_used_math == current) { 619 if (last_task_used_math == current) {
620 enable_fpu(); 620 enable_fpu();
621 fpsave(&current->thread.fpu.hard); 621 save_fpu(current, regs);
622 disable_fpu(); 622 disable_fpu();
623 last_task_used_math = NULL; 623 last_task_used_math = NULL;
624 regs->sr |= SR_FD; 624 regs->sr |= SR_FD;
@@ -691,7 +691,7 @@ static int misaligned_fpu_store(struct pt_regs *regs,
691 indexed by register number. */ 691 indexed by register number. */
692 if (last_task_used_math == current) { 692 if (last_task_used_math == current) {
693 enable_fpu(); 693 enable_fpu();
694 fpsave(&current->thread.fpu.hard); 694 save_fpu(current, regs);
695 disable_fpu(); 695 disable_fpu();
696 last_task_used_math = NULL; 696 last_task_used_math = NULL;
697 regs->sr |= SR_FD; 697 regs->sr |= SR_FD;