fcmpu.c 916 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. int
  9. fcmpu(u32 *ccr, int crfD, void *frA, void *frB)
  10. {
  11. FP_DECL_D(A);
  12. FP_DECL_D(B);
  13. FP_DECL_EX;
  14. int code[4] = { (1 << 3), (1 << 1), (1 << 2), (1 << 0) };
  15. long cmp;
  16. #ifdef DEBUG
  17. printk("%s: %p (%08x) %d %p %p\n", __func__, ccr, *ccr, crfD, frA, frB);
  18. #endif
  19. FP_UNPACK_DP(A, frA);
  20. FP_UNPACK_DP(B, frB);
  21. #ifdef DEBUG
  22. printk("A: %ld %lu %lu %ld (%ld)\n", A_s, A_f1, A_f0, A_e, A_c);
  23. printk("B: %ld %lu %lu %ld (%ld)\n", B_s, B_f1, B_f0, B_e, B_c);
  24. #endif
  25. FP_CMP_D(cmp, A, B, 2);
  26. cmp = code[(cmp + 1) & 3];
  27. __FPU_FPSCR &= ~(0x1f000);
  28. __FPU_FPSCR |= (cmp << 12);
  29. *ccr &= ~(15 << ((7 - crfD) << 2));
  30. *ccr |= (cmp << ((7 - crfD) << 2));
  31. #ifdef DEBUG
  32. printk("CR: %08x\n", *ccr);
  33. #endif
  34. return 0;
  35. }