1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_ALPHA_FPU_H
3 #define __ASM_ALPHA_FPU_H
5 #include <asm/special_insns.h>
6 #include <uapi/asm/fpu.h>
8 /* The following two functions don't need trapb/excb instructions
9 around the mf_fpcr/mt_fpcr instructions because (a) the kernel
10 never generates arithmetic faults and (b) call_pal instructions
11 are implied trap barriers. */
13 static inline unsigned long
16 unsigned long tmp, ret;
18 #if defined(CONFIG_ALPHA_EV6) || defined(CONFIG_ALPHA_EV67)
19 __asm__ __volatile__ (
24 : "=r"(tmp), "=r"(ret));
26 __asm__ __volatile__ (
31 : "=m"(tmp), "=m"(ret));
38 wrfpcr(unsigned long val)
42 #if defined(CONFIG_ALPHA_EV6) || defined(CONFIG_ALPHA_EV67)
43 __asm__ __volatile__ (
48 : "=&r"(tmp) : "r"(val));
50 __asm__ __volatile__ (
55 : "=m"(tmp) : "m"(val));
59 static inline unsigned long
60 swcr_update_status(unsigned long swcr, unsigned long fpcr)
62 /* EV6 implements most of the bits in hardware. Collect
63 the acrued exception bits from the real fpcr. */
64 if (implver() == IMPLVER_EV6) {
65 swcr &= ~IEEE_STATUS_MASK;
66 swcr |= (fpcr >> 35) & IEEE_STATUS_MASK;
71 extern unsigned long alpha_read_fp_reg (unsigned long reg);
72 extern void alpha_write_fp_reg (unsigned long reg, unsigned long val);
73 extern unsigned long alpha_read_fp_reg_s (unsigned long reg);
74 extern void alpha_write_fp_reg_s (unsigned long reg, unsigned long val);
76 #endif /* __ASM_ALPHA_FPU_H */