sync hh.org
[hh.org.git] / arch / arm / vfp / vfpmodule.c
blobf08eafbddcc1ba7660e2d5ed68849b7595c36b49
1 /*
2 * linux/arch/arm/vfp/vfpmodule.c
4 * Copyright (C) 2004 ARM Limited.
5 * Written by Deep Blue Solutions Limited.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/module.h>
12 #include <linux/types.h>
13 #include <linux/kernel.h>
14 #include <linux/signal.h>
15 #include <linux/sched.h>
16 #include <linux/init.h>
18 #include <asm/thread_notify.h>
19 #include <asm/vfp.h>
21 #include "vfpinstr.h"
22 #include "vfp.h"
25 * Our undef handlers (in entry.S)
27 void vfp_testing_entry(void);
28 void vfp_support_entry(void);
30 void (*vfp_vector)(void) = vfp_testing_entry;
31 union vfp_state *last_VFP_context;
34 * Dual-use variable.
35 * Used in startup: set to non-zero if VFP checks fail
36 * After startup, holds VFP architecture
38 unsigned int VFP_arch;
40 static int vfp_notifier(struct notifier_block *self, unsigned long cmd, void *v)
42 struct thread_info *thread = v;
43 union vfp_state *vfp;
45 if (likely(cmd == THREAD_NOTIFY_SWITCH)) {
47 * Always disable VFP so we can lazily save/restore the
48 * old state.
50 fmxr(FPEXC, fmrx(FPEXC) & ~FPEXC_ENABLE);
51 return NOTIFY_DONE;
54 vfp = &thread->vfpstate;
55 if (cmd == THREAD_NOTIFY_FLUSH) {
57 * Per-thread VFP initialisation.
59 memset(vfp, 0, sizeof(union vfp_state));
61 vfp->hard.fpexc = FPEXC_ENABLE;
62 vfp->hard.fpscr = FPSCR_ROUND_NEAREST;
65 * Disable VFP to ensure we initialise it first.
67 fmxr(FPEXC, fmrx(FPEXC) & ~FPEXC_ENABLE);
70 /* flush and release case: Per-thread VFP cleanup. */
71 if (last_VFP_context == vfp)
72 last_VFP_context = NULL;
74 return NOTIFY_DONE;
77 static struct notifier_block vfp_notifier_block = {
78 .notifier_call = vfp_notifier,
82 * Raise a SIGFPE for the current process.
83 * sicode describes the signal being raised.
85 void vfp_raise_sigfpe(unsigned int sicode, struct pt_regs *regs)
87 siginfo_t info;
89 memset(&info, 0, sizeof(info));
91 info.si_signo = SIGFPE;
92 info.si_code = sicode;
93 info.si_addr = (void __user *)(instruction_pointer(regs) - 4);
96 * This is the same as NWFPE, because it's not clear what
97 * this is used for
99 current->thread.error_code = 0;
100 current->thread.trap_no = 6;
102 send_sig_info(SIGFPE, &info, current);
105 static void vfp_panic(char *reason)
107 int i;
109 printk(KERN_ERR "VFP: Error: %s\n", reason);
110 printk(KERN_ERR "VFP: EXC 0x%08x SCR 0x%08x INST 0x%08x\n",
111 fmrx(FPEXC), fmrx(FPSCR), fmrx(FPINST));
112 for (i = 0; i < 32; i += 2)
113 printk(KERN_ERR "VFP: s%2u: 0x%08x s%2u: 0x%08x\n",
114 i, vfp_get_float(i), i+1, vfp_get_float(i+1));
118 * Process bitmask of exception conditions.
120 static void vfp_raise_exceptions(u32 exceptions, u32 inst, u32 fpscr, struct pt_regs *regs)
122 int si_code = 0;
124 pr_debug("VFP: raising exceptions %08x\n", exceptions);
126 if (exceptions == VFP_EXCEPTION_ERROR) {
127 vfp_panic("unhandled bounce");
128 vfp_raise_sigfpe(0, regs);
129 return;
133 * If any of the status flags are set, update the FPSCR.
134 * Comparison instructions always return at least one of
135 * these flags set.
137 if (exceptions & (FPSCR_N|FPSCR_Z|FPSCR_C|FPSCR_V))
138 fpscr &= ~(FPSCR_N|FPSCR_Z|FPSCR_C|FPSCR_V);
140 fpscr |= exceptions;
142 fmxr(FPSCR, fpscr);
144 #define RAISE(stat,en,sig) \
145 if (exceptions & stat && fpscr & en) \
146 si_code = sig;
149 * These are arranged in priority order, least to highest.
151 RAISE(FPSCR_DZC, FPSCR_DZE, FPE_FLTDIV);
152 RAISE(FPSCR_IXC, FPSCR_IXE, FPE_FLTRES);
153 RAISE(FPSCR_UFC, FPSCR_UFE, FPE_FLTUND);
154 RAISE(FPSCR_OFC, FPSCR_OFE, FPE_FLTOVF);
155 RAISE(FPSCR_IOC, FPSCR_IOE, FPE_FLTINV);
157 if (si_code)
158 vfp_raise_sigfpe(si_code, regs);
162 * Emulate a VFP instruction.
164 static u32 vfp_emulate_instruction(u32 inst, u32 fpscr, struct pt_regs *regs)
166 u32 exceptions = VFP_EXCEPTION_ERROR;
168 pr_debug("VFP: emulate: INST=0x%08x SCR=0x%08x\n", inst, fpscr);
170 if (INST_CPRTDO(inst)) {
171 if (!INST_CPRT(inst)) {
173 * CPDO
175 if (vfp_single(inst)) {
176 exceptions = vfp_single_cpdo(inst, fpscr);
177 } else {
178 exceptions = vfp_double_cpdo(inst, fpscr);
180 } else {
182 * A CPRT instruction can not appear in FPINST2, nor
183 * can it cause an exception. Therefore, we do not
184 * have to emulate it.
187 } else {
189 * A CPDT instruction can not appear in FPINST2, nor can
190 * it cause an exception. Therefore, we do not have to
191 * emulate it.
194 return exceptions & ~VFP_NAN_FLAG;
198 * Package up a bounce condition.
200 void VFP9_bounce(u32 trigger, u32 fpexc, struct pt_regs *regs)
202 u32 fpscr, orig_fpscr, exceptions, inst;
204 pr_debug("VFP: bounce: trigger %08x fpexc %08x\n", trigger, fpexc);
207 * Enable access to the VFP so we can handle the bounce.
209 fmxr(FPEXC, fpexc & ~(FPEXC_EXCEPTION|FPEXC_INV|FPEXC_UFC|FPEXC_IOC));
211 orig_fpscr = fpscr = fmrx(FPSCR);
214 * If we are running with inexact exceptions enabled, we need to
215 * emulate the trigger instruction. Note that as we're emulating
216 * the trigger instruction, we need to increment PC.
218 if (fpscr & FPSCR_IXE) {
219 regs->ARM_pc += 4;
220 goto emulate;
223 barrier();
226 * Modify fpscr to indicate the number of iterations remaining
228 if (fpexc & FPEXC_EXCEPTION) {
229 u32 len;
231 len = fpexc + (1 << FPEXC_LENGTH_BIT);
233 fpscr &= ~FPSCR_LENGTH_MASK;
234 fpscr |= (len & FPEXC_LENGTH_MASK) << (FPSCR_LENGTH_BIT - FPEXC_LENGTH_BIT);
238 * Handle the first FP instruction. We used to take note of the
239 * FPEXC bounce reason, but this appears to be unreliable.
240 * Emulate the bounced instruction instead.
242 inst = fmrx(FPINST);
243 exceptions = vfp_emulate_instruction(inst, fpscr, regs);
244 if (exceptions)
245 vfp_raise_exceptions(exceptions, inst, orig_fpscr, regs);
248 * If there isn't a second FP instruction, exit now.
250 if (!(fpexc & FPEXC_FPV2))
251 return;
254 * The barrier() here prevents fpinst2 being read
255 * before the condition above.
257 barrier();
258 trigger = fmrx(FPINST2);
259 orig_fpscr = fpscr = fmrx(FPSCR);
261 emulate:
262 exceptions = vfp_emulate_instruction(trigger, fpscr, regs);
263 if (exceptions)
264 vfp_raise_exceptions(exceptions, trigger, orig_fpscr, regs);
268 * VFP support code initialisation.
270 static int __init vfp_init(void)
272 unsigned int vfpsid;
275 * First check that there is a VFP that we can use.
276 * The handler is already setup to just log calls, so
277 * we just need to read the VFPSID register.
279 vfpsid = fmrx(FPSID);
281 printk(KERN_INFO "VFP support v0.3: ");
282 if (VFP_arch) {
283 printk("not present\n");
284 } else if (vfpsid & FPSID_NODOUBLE) {
285 printk("no double precision support\n");
286 } else {
287 VFP_arch = (vfpsid & FPSID_ARCH_MASK) >> FPSID_ARCH_BIT; /* Extract the architecture version */
288 printk("implementor %02x architecture %d part %02x variant %x rev %x\n",
289 (vfpsid & FPSID_IMPLEMENTER_MASK) >> FPSID_IMPLEMENTER_BIT,
290 (vfpsid & FPSID_ARCH_MASK) >> FPSID_ARCH_BIT,
291 (vfpsid & FPSID_PART_MASK) >> FPSID_PART_BIT,
292 (vfpsid & FPSID_VARIANT_MASK) >> FPSID_VARIANT_BIT,
293 (vfpsid & FPSID_REV_MASK) >> FPSID_REV_BIT);
294 vfp_vector = vfp_support_entry;
296 thread_register_notifier(&vfp_notifier_block);
298 return 0;
301 late_initcall(vfp_init);