fpu.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_ALPHA_FPU_H
  2. #define __ASM_ALPHA_FPU_H
  3. /*
  4.  * Alpha floating-point control register defines:
  5.  */
  6. #define FPCR_DNOD (1UL<<47) /* denorm INV trap disable */
  7. #define FPCR_DNZ (1UL<<48) /* denorms to zero */
  8. #define FPCR_INVD (1UL<<49) /* invalid op disable (opt.) */
  9. #define FPCR_DZED (1UL<<50) /* division by zero disable (opt.) */
  10. #define FPCR_OVFD (1UL<<51) /* overflow disable (optional) */
  11. #define FPCR_INV (1UL<<52) /* invalid operation */
  12. #define FPCR_DZE (1UL<<53) /* division by zero */
  13. #define FPCR_OVF (1UL<<54) /* overflow */
  14. #define FPCR_UNF (1UL<<55) /* underflow */
  15. #define FPCR_INE (1UL<<56) /* inexact */
  16. #define FPCR_IOV (1UL<<57) /* integer overflow */
  17. #define FPCR_UNDZ (1UL<<60) /* underflow to zero (opt.) */
  18. #define FPCR_UNFD (1UL<<61) /* underflow disable (opt.) */
  19. #define FPCR_INED (1UL<<62) /* inexact disable (opt.) */
  20. #define FPCR_SUM (1UL<<63) /* summary bit */
  21. #define FPCR_DYN_SHIFT 58 /* first dynamic rounding mode bit */
  22. #define FPCR_DYN_CHOPPED (0x0UL << FPCR_DYN_SHIFT) /* towards 0 */
  23. #define FPCR_DYN_MINUS  (0x1UL << FPCR_DYN_SHIFT) /* towards -INF */
  24. #define FPCR_DYN_NORMAL  (0x2UL << FPCR_DYN_SHIFT) /* towards nearest */
  25. #define FPCR_DYN_PLUS  (0x3UL << FPCR_DYN_SHIFT) /* towards +INF */
  26. #define FPCR_DYN_MASK  (0x3UL << FPCR_DYN_SHIFT)
  27. #define FPCR_MASK 0xffff800000000000
  28. /*
  29.  * IEEE trap enables are implemented in software.  These per-thread
  30.  * bits are stored in the "flags" field of "struct thread_struct".
  31.  * Thus, the bits are defined so as not to conflict with the
  32.  * floating-point enable bit (which is architected).  On top of that,
  33.  * we want to make these bits compatible with OSF/1 so
  34.  * ieee_set_fp_control() etc. can be implemented easily and
  35.  * compatibly.  The corresponding definitions are in
  36.  * /usr/include/machine/fpu.h under OSF/1.
  37.  */
  38. #define IEEE_TRAP_ENABLE_INV (1UL<<1) /* invalid op */
  39. #define IEEE_TRAP_ENABLE_DZE (1UL<<2) /* division by zero */
  40. #define IEEE_TRAP_ENABLE_OVF (1UL<<3) /* overflow */
  41. #define IEEE_TRAP_ENABLE_UNF (1UL<<4) /* underflow */
  42. #define IEEE_TRAP_ENABLE_INE (1UL<<5) /* inexact */
  43. #define IEEE_TRAP_ENABLE_DNO (1UL<<6) /* denorm */
  44. #define IEEE_TRAP_ENABLE_MASK (IEEE_TRAP_ENABLE_INV | IEEE_TRAP_ENABLE_DZE |
  45.  IEEE_TRAP_ENABLE_OVF | IEEE_TRAP_ENABLE_UNF |
  46.  IEEE_TRAP_ENABLE_INE | IEEE_TRAP_ENABLE_DNO)
  47. /* Denorm and Underflow flushing */
  48. #define IEEE_MAP_DMZ (1UL<<12) /* Map denorm inputs to zero */
  49. #define IEEE_MAP_UMZ (1UL<<13) /* Map underflowed outputs to zero */
  50. #define IEEE_MAP_MASK (IEEE_MAP_DMZ | IEEE_MAP_UMZ)
  51. /* status bits coming from fpcr: */
  52. #define IEEE_STATUS_INV (1UL<<17)
  53. #define IEEE_STATUS_DZE (1UL<<18)
  54. #define IEEE_STATUS_OVF (1UL<<19)
  55. #define IEEE_STATUS_UNF (1UL<<20)
  56. #define IEEE_STATUS_INE (1UL<<21)
  57. #define IEEE_STATUS_DNO (1UL<<22)
  58. #define IEEE_STATUS_MASK (IEEE_STATUS_INV | IEEE_STATUS_DZE |
  59.  IEEE_STATUS_OVF | IEEE_STATUS_UNF |
  60.  IEEE_STATUS_INE | IEEE_STATUS_DNO)
  61. #define IEEE_SW_MASK (IEEE_TRAP_ENABLE_MASK |
  62.  IEEE_STATUS_MASK | IEEE_MAP_MASK)
  63. #define IEEE_CURRENT_RM_SHIFT 32
  64. #define IEEE_CURRENT_RM_MASK (3UL<<IEEE_CURRENT_RM_SHIFT)
  65. #define IEEE_STATUS_TO_EXCSUM_SHIFT 16
  66. #define IEEE_INHERIT    (1UL<<63) /* inherit on thread create? */
  67. /*
  68.  * Convert the software IEEE trap enable and status bits into the
  69.  * hardware fpcr format. 
  70.  *
  71.  * Digital Unix engineers receive my thanks for not defining the
  72.  * software bits identical to the hardware bits.  The chip designers
  73.  * receive my thanks for making all the not-implemented fpcr bits
  74.  * RAZ forcing us to use system calls to read/write this value.
  75.  */
  76. static inline unsigned long
  77. ieee_swcr_to_fpcr(unsigned long sw)
  78. {
  79. unsigned long fp;
  80. fp = (sw & IEEE_STATUS_MASK) << 35;
  81. fp |= (sw & IEEE_MAP_DMZ) << 36;
  82. fp |= (sw & IEEE_STATUS_MASK ? FPCR_SUM : 0);
  83. fp |= (~sw & (IEEE_TRAP_ENABLE_INV
  84.       | IEEE_TRAP_ENABLE_DZE
  85.       | IEEE_TRAP_ENABLE_OVF)) << 48;
  86. fp |= (~sw & (IEEE_TRAP_ENABLE_UNF | IEEE_TRAP_ENABLE_INE)) << 57;
  87. fp |= (sw & IEEE_MAP_UMZ ? FPCR_UNDZ | FPCR_UNFD : 0);
  88. fp |= (~sw & IEEE_TRAP_ENABLE_DNO) << 41;
  89. return fp;
  90. }
  91. static inline unsigned long
  92. ieee_fpcr_to_swcr(unsigned long fp)
  93. {
  94. unsigned long sw;
  95. sw = (fp >> 35) & IEEE_STATUS_MASK;
  96. sw |= (fp >> 36) & IEEE_MAP_DMZ;
  97. sw |= (~fp >> 48) & (IEEE_TRAP_ENABLE_INV
  98.      | IEEE_TRAP_ENABLE_DZE
  99.      | IEEE_TRAP_ENABLE_OVF);
  100. sw |= (~fp >> 57) & (IEEE_TRAP_ENABLE_UNF | IEEE_TRAP_ENABLE_INE);
  101. sw |= (fp >> 47) & IEEE_MAP_UMZ;
  102. sw |= (~fp >> 41) & IEEE_TRAP_ENABLE_DNO;
  103. return sw;
  104. }
  105. #ifdef __KERNEL__
  106. /* The following two functions don't need trapb/excb instructions
  107.    around the mf_fpcr/mt_fpcr instructions because (a) the kernel
  108.    never generates arithmetic faults and (b) call_pal instructions
  109.    are implied trap barriers.  */
  110. static inline unsigned long
  111. rdfpcr(void)
  112. {
  113. unsigned long tmp, ret;
  114. #if defined(__alpha_cix__) || defined(__alpha_fix__)
  115. __asm__ __volatile__ (
  116. "ftoit $f0,%0nt"
  117. "mf_fpcr $f0nt"
  118. "ftoit $f0,%1nt"
  119. "itoft %0,$f0"
  120. : "=r"(tmp), "=r"(ret));
  121. #else
  122. __asm__ __volatile__ (
  123. "stt $f0,%0nt"
  124. "mf_fpcr $f0nt"
  125. "stt $f0,%1nt"
  126. "ldt $f0,%0"
  127. : "=m"(tmp), "=m"(ret));
  128. #endif
  129. return ret;
  130. }
  131. static inline void
  132. wrfpcr(unsigned long val)
  133. {
  134. unsigned long tmp;
  135. #if defined(__alpha_cix__) || defined(__alpha_fix__)
  136. __asm__ __volatile__ (
  137. "ftoit $f0,%0nt"
  138. "itoft %1,$f0nt"
  139. "mt_fpcr $f0nt"
  140. "itoft %0,$f0"
  141. : "=&r"(tmp) : "r"(val));
  142. #else
  143. __asm__ __volatile__ (
  144. "stt $f0,%0nt"
  145. "ldt $f0,%1nt"
  146. "mt_fpcr $f0nt"
  147. "ldt $f0,%0"
  148. : "=m"(tmp) : "m"(val));
  149. #endif
  150. }
  151. static inline unsigned long
  152. swcr_update_status(unsigned long swcr, unsigned long fpcr)
  153. {
  154. /* EV6 implements most of the bits in hardware.  Collect
  155.    the acrued exception bits from the real fpcr.  */
  156. if (implver() == IMPLVER_EV6) {
  157. swcr &= ~IEEE_STATUS_MASK;
  158. swcr |= (fpcr >> 35) & IEEE_STATUS_MASK;
  159. }
  160. return swcr;
  161. }
  162. extern unsigned long alpha_read_fp_reg (unsigned long reg);
  163. extern void alpha_write_fp_reg (unsigned long reg, unsigned long val);
  164. extern unsigned long alpha_read_fp_reg_s (unsigned long reg);
  165. extern void alpha_write_fp_reg_s (unsigned long reg, unsigned long val);
  166. #endif /* __KERNEL__ */
  167. #endif /* __ASM_ALPHA_FPU_H */