fpu.h 809 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * linux/arch/sh/kernel/cpu/sh4/sh4_fpu.h
  3. *
  4. * Copyright (C) 2006 STMicroelectronics Limited
  5. * Author: Carl Shaw <carl.shaw@st.com>
  6. *
  7. * May be copied or modified under the terms of the GNU General Public
  8. * License Version 2. See linux/COPYING for more information.
  9. *
  10. * Definitions for SH4 FPU operations
  11. */
  12. #ifndef __CPU_SH4_FPU_H
  13. #define __CPU_SH4_FPU_H
  14. #define FPSCR_ENABLE_MASK 0x00000f80UL
  15. #define FPSCR_FMOV_DOUBLE (1<<1)
  16. #define FPSCR_CAUSE_INEXACT (1<<12)
  17. #define FPSCR_CAUSE_UNDERFLOW (1<<13)
  18. #define FPSCR_CAUSE_OVERFLOW (1<<14)
  19. #define FPSCR_CAUSE_DIVZERO (1<<15)
  20. #define FPSCR_CAUSE_INVALID (1<<16)
  21. #define FPSCR_CAUSE_ERROR (1<<17)
  22. #define FPSCR_DBL_PRECISION (1<<19)
  23. #define FPSCR_ROUNDING_MODE(x) ((x >> 20) & 3)
  24. #define FPSCR_RM_NEAREST (0)
  25. #define FPSCR_RM_ZERO (1)
  26. #endif