fpu-ucf64.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * linux/arch/unicore32/kernel/fpu-ucf64.c
  3. *
  4. * Code specific to PKUnity SoC and UniCore ISA
  5. *
  6. * Copyright (C) 2001-2010 GUAN Xue-tao
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/types.h>
  14. #include <linux/kernel.h>
  15. #include <linux/signal.h>
  16. #include <linux/sched/signal.h>
  17. #include <linux/init.h>
  18. #include <asm/fpu-ucf64.h>
  19. /*
  20. * A special flag to tell the normalisation code not to normalise.
  21. */
  22. #define F64_NAN_FLAG 0x100
  23. /*
  24. * A bit pattern used to indicate the initial (unset) value of the
  25. * exception mask, in case nothing handles an instruction. This
  26. * doesn't include the NAN flag, which get masked out before
  27. * we check for an error.
  28. */
  29. #define F64_EXCEPTION_ERROR ((u32)-1 & ~F64_NAN_FLAG)
  30. /*
  31. * Since we aren't building with -mfpu=f64, we need to code
  32. * these instructions using their MRC/MCR equivalents.
  33. */
  34. #define f64reg(_f64_) #_f64_
  35. #define cff(_f64_) ({ \
  36. u32 __v; \
  37. asm("cff %0, " f64reg(_f64_) "@ fmrx %0, " #_f64_ \
  38. : "=r" (__v) : : "cc"); \
  39. __v; \
  40. })
  41. #define ctf(_f64_, _var_) \
  42. asm("ctf %0, " f64reg(_f64_) "@ fmxr " #_f64_ ", %0" \
  43. : : "r" (_var_) : "cc")
  44. /*
  45. * Raise a SIGFPE for the current process.
  46. * sicode describes the signal being raised.
  47. */
  48. void ucf64_raise_sigfpe(struct pt_regs *regs)
  49. {
  50. /*
  51. * This is the same as NWFPE, because it's not clear what
  52. * this is used for
  53. */
  54. current->thread.error_code = 0;
  55. current->thread.trap_no = 6;
  56. send_sig_fault(SIGFPE, FPE_FLTUNK,
  57. (void __user *)(instruction_pointer(regs) - 4),
  58. current);
  59. }
  60. /*
  61. * Handle exceptions of UniCore-F64.
  62. */
  63. void ucf64_exchandler(u32 inst, u32 fpexc, struct pt_regs *regs)
  64. {
  65. u32 tmp = fpexc;
  66. u32 exc = F64_EXCEPTION_ERROR & fpexc;
  67. pr_debug("UniCore-F64: instruction %08x fpscr %08x\n",
  68. inst, fpexc);
  69. if (exc & FPSCR_CMPINSTR_BIT) {
  70. if (exc & FPSCR_CON)
  71. tmp |= FPSCR_CON;
  72. else
  73. tmp &= ~(FPSCR_CON);
  74. exc &= ~(FPSCR_CMPINSTR_BIT | FPSCR_CON);
  75. } else {
  76. pr_debug("UniCore-F64 Error: unhandled exceptions\n");
  77. pr_debug("UniCore-F64 FPSCR 0x%08x INST 0x%08x\n",
  78. cff(FPSCR), inst);
  79. ucf64_raise_sigfpe(regs);
  80. return;
  81. }
  82. /*
  83. * Update the FPSCR with the additional exception flags.
  84. * Comparison instructions always return at least one of
  85. * these flags set.
  86. */
  87. tmp &= ~(FPSCR_TRAP | FPSCR_IOS | FPSCR_OFS | FPSCR_UFS |
  88. FPSCR_IXS | FPSCR_HIS | FPSCR_IOC | FPSCR_OFC |
  89. FPSCR_UFC | FPSCR_IXC | FPSCR_HIC);
  90. tmp |= exc;
  91. ctf(FPSCR, tmp);
  92. }
  93. /*
  94. * F64 support code initialisation.
  95. */
  96. static int __init ucf64_init(void)
  97. {
  98. ctf(FPSCR, 0x0); /* FPSCR_UFE | FPSCR_NDE perhaps better */
  99. printk(KERN_INFO "Enable UniCore-F64 support.\n");
  100. return 0;
  101. }
  102. late_initcall(ucf64_init);