stfs.c 822 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/types.h>
  3. #include <linux/errno.h>
  4. #include <linux/uaccess.h>
  5. #include <asm/sfp-machine.h>
  6. #include <math-emu/soft-fp.h>
  7. #include <math-emu/double.h>
  8. #include <math-emu/single.h>
  9. int
  10. stfs(void *frS, void *ea)
  11. {
  12. FP_DECL_D(A);
  13. FP_DECL_S(R);
  14. FP_DECL_EX;
  15. float f;
  16. #ifdef DEBUG
  17. printk("%s: S %p, ea %p\n", __func__, frS, ea);
  18. #endif
  19. FP_UNPACK_DP(A, frS);
  20. #ifdef DEBUG
  21. printk("A: %ld %lu %lu %ld (%ld)\n", A_s, A_f1, A_f0, A_e, A_c);
  22. #endif
  23. FP_CONV(S, D, 1, 2, R, A);
  24. #ifdef DEBUG
  25. printk("R: %ld %lu %ld (%ld)\n", R_s, R_f, R_e, R_c);
  26. #endif
  27. _FP_PACK_CANONICAL(S, 1, R);
  28. if (!FP_CUR_EXCEPTIONS || !__FPU_TRAP_P(FP_CUR_EXCEPTIONS)) {
  29. _FP_PACK_RAW_1_P(S, &f, R);
  30. if (copy_to_user(ea, &f, sizeof(float)))
  31. return -EFAULT;
  32. }
  33. return FP_CUR_EXCEPTIONS;
  34. }