1 /* SPDX-License-Identifier: GPL-2.0 */
2 #include <asm/processor.h>
3 #include <asm/ppc_asm.h>
5 #include <asm/asm-offsets.h>
6 #include <asm/cputable.h>
7 #include <asm/thread_info.h>
9 #include <asm/ptrace.h>
10 #include <asm/export.h>
11 #include <asm/asm-compat.h>
14 * Load state from memory into VMX registers including VSCR.
15 * Assumes the caller has enabled VMX in the MSR.
17 _GLOBAL(load_vr_state)
23 EXPORT_SYMBOL(load_vr_state)
24 _ASM_NOKPROBE_SYMBOL(load_vr_state); /* used by restore_math */
27 * Store VMX state into memory, including VSCR.
28 * Assumes the caller has enabled VMX in the MSR.
30 _GLOBAL(store_vr_state)
36 EXPORT_SYMBOL(store_vr_state)
39 * Disable VMX for the task which had it previously,
40 * and save its vector registers in its thread_struct.
41 * Enables the VMX for use in the kernel on return.
42 * On SMP we know the VMX is free, since we give it up every
43 * switch (ie, no lazy save of the vector registers).
45 * Note that on 32-bit this can only use registers that will be
46 * restored by fast_exception_return, i.e. r3 - r6, r10 and r11.
48 _GLOBAL(load_up_altivec)
49 mfmsr r5 /* grab the current MSR */
51 MTMSRD(r5) /* enable use of AltiVec now */
55 * While userspace in general ignores VRSAVE, glibc uses it as a boolean
56 * to optimise userspace context save/restore. Whenever we take an
57 * altivec unavailable exception we must set VRSAVE to something non
58 * zero. Set it to all 1s. See also the programming note in the ISA.
66 /* enable use of VMX after return */
68 mfspr r5,SPRN_SPRG_THREAD /* current task's THREAD (phys) */
70 #ifdef CONFIG_VMAP_STACK
74 ld r4,PACACURRENT(r13)
75 addi r5,r4,THREAD /* Get THREAD */
76 oris r12,r12,MSR_VEC@h
80 stb r4,THREAD_LOAD_VEC(r5)
81 addi r6,r5,THREAD_VRSTATE
84 stw r4,THREAD_USED_VR(r5)
88 /* restore registers and return */
90 _ASM_NOKPROBE_SYMBOL(load_up_altivec)
94 * Save the vector registers to its thread_struct
97 addi r3,r3,THREAD /* want THREAD of task */
98 PPC_LL r7,THREAD_VRSAVEAREA(r3)
102 addi r7,r3,THREAD_VRSTATE
103 2: SAVE_32VRS(0,r4,r7)
112 #error This asm code isn't ready for 32-bit kernels
116 * load_up_vsx(unused, unused, tsk)
117 * Disable VSX for the task which had it previously,
118 * and save its vector registers in its thread_struct.
119 * Reuse the fp and vsx saves, but first check to see if they have
120 * been saved already.
123 /* Load FP and VSX registers if they haven't been done yet */
125 beql+ load_up_fpu /* skip if already loaded */
126 andis. r5,r12,MSR_VEC@h
127 beql+ load_up_altivec /* skip if already loaded */
129 ld r4,PACACURRENT(r13)
130 addi r4,r4,THREAD /* Get THREAD */
132 stw r6,THREAD_USED_VSR(r4) /* ... also set thread used vsr */
133 /* enable use of VSX after return */
134 oris r12,r12,MSR_VSX@h
136 b fast_interrupt_return
138 #endif /* CONFIG_VSX */
142 * The routines below are in assembler so we can closely control the
143 * usage of floating-point registers. These routines must be called
144 * with preempt disabled.
151 .long 0x3f800000 /* 1.0 in single-precision FP */
153 .long 0x3f000000 /* 0.5 in single-precision FP */
155 #define LDCONST(fr, name) \
164 .tc FD_3ff00000_0[TC],0x3ff0000000000000 /* 1.0 */
166 .tc FD_3fe00000_0[TC],0x3fe0000000000000 /* 0.5 */
168 #define LDCONST(fr, name) \
174 * Internal routine to enable floating point and set FPSCR to 0.
175 * Don't call it from C; it doesn't use the normal calling convention.
207 * Vector add, floating point.
224 * Vector subtract, floating point.
241 * Vector multiply and add, floating point.
253 fmadds fr0,fr0,fr2,fr1
261 * Vector negative multiply and subtract, floating point.
273 fnmsubs fr0,fr0,fr2,fr1
281 * Vector reciprocal estimate. We just compute 1.0/x.
282 * r3 -> destination, r4 -> source.
299 * Vector reciprocal square-root estimate, floating point.
300 * We use the frsqrte instruction for the initial estimate followed
301 * by 2 iterations of Newton-Raphson to get sufficient accuracy.
302 * r3 -> destination, r4 -> source.
317 frsqrte fr1,fr0 /* r = frsqrte(s) */
318 fmuls fr3,fr1,fr0 /* r * s */
319 fmuls fr2,fr1,fr5 /* r * 0.5 */
320 fnmsubs fr3,fr1,fr3,fr4 /* 1 - s * r * r */
321 fmadds fr1,fr2,fr3,fr1 /* r = r + 0.5 * r * (1 - s * r * r) */
322 fmuls fr3,fr1,fr0 /* r * s */
323 fmuls fr2,fr1,fr5 /* r * 0.5 */
324 fnmsubs fr3,fr1,fr3,fr4 /* 1 - s * r * r */
325 fmadds fr1,fr2,fr3,fr1 /* r = r + 0.5 * r * (1 - s * r * r) */