18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Simple interface to link xor_vmx.c and xor_vmx_glue.c 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Separating these file ensures that no altivec instructions are run 68c2ecf20Sopenharmony_ci * outside of the enable/disable altivec block. 78c2ecf20Sopenharmony_ci */ 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_civoid __xor_altivec_2(unsigned long bytes, unsigned long *v1_in, 108c2ecf20Sopenharmony_ci unsigned long *v2_in); 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_civoid __xor_altivec_3(unsigned long bytes, unsigned long *v1_in, 138c2ecf20Sopenharmony_ci unsigned long *v2_in, unsigned long *v3_in); 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_civoid __xor_altivec_4(unsigned long bytes, unsigned long *v1_in, 168c2ecf20Sopenharmony_ci unsigned long *v2_in, unsigned long *v3_in, 178c2ecf20Sopenharmony_ci unsigned long *v4_in); 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_civoid __xor_altivec_5(unsigned long bytes, unsigned long *v1_in, 208c2ecf20Sopenharmony_ci unsigned long *v2_in, unsigned long *v3_in, 218c2ecf20Sopenharmony_ci unsigned long *v4_in, unsigned long *v5_in); 22