ARM: amba: Make driver_override output consistent with other buses
[linux/fpc-iii.git] / arch / powerpc / lib / xor_vmx_glue.c
blob6521fe5e8cef6aa216c8dd600998003db9f8c896
1 /*
2 * Altivec XOR operations
4 * Copyright 2017 IBM Corp.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/preempt.h>
13 #include <linux/export.h>
14 #include <linux/sched.h>
15 #include <asm/switch_to.h>
16 #include "xor_vmx.h"
18 void xor_altivec_2(unsigned long bytes, unsigned long *v1_in,
19 unsigned long *v2_in)
21 preempt_disable();
22 enable_kernel_altivec();
23 __xor_altivec_2(bytes, v1_in, v2_in);
24 disable_kernel_altivec();
25 preempt_enable();
27 EXPORT_SYMBOL(xor_altivec_2);
29 void xor_altivec_3(unsigned long bytes, unsigned long *v1_in,
30 unsigned long *v2_in, unsigned long *v3_in)
32 preempt_disable();
33 enable_kernel_altivec();
34 __xor_altivec_3(bytes, v1_in, v2_in, v3_in);
35 disable_kernel_altivec();
36 preempt_enable();
38 EXPORT_SYMBOL(xor_altivec_3);
40 void xor_altivec_4(unsigned long bytes, unsigned long *v1_in,
41 unsigned long *v2_in, unsigned long *v3_in,
42 unsigned long *v4_in)
44 preempt_disable();
45 enable_kernel_altivec();
46 __xor_altivec_4(bytes, v1_in, v2_in, v3_in, v4_in);
47 disable_kernel_altivec();
48 preempt_enable();
50 EXPORT_SYMBOL(xor_altivec_4);
52 void xor_altivec_5(unsigned long bytes, unsigned long *v1_in,
53 unsigned long *v2_in, unsigned long *v3_in,
54 unsigned long *v4_in, unsigned long *v5_in)
56 preempt_disable();
57 enable_kernel_altivec();
58 __xor_altivec_5(bytes, v1_in, v2_in, v3_in, v4_in, v5_in);
59 disable_kernel_altivec();
60 preempt_enable();
62 EXPORT_SYMBOL(xor_altivec_5);