arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git] / arch / powerpc / lib / vmx-helper.c
blob62e6c3045252df1c9fbc2b1a0a377cf7d779f207
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
4 * Copyright (C) IBM Corporation, 2011
6 * Authors: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
7 * Anton Blanchard <anton@au.ibm.com>
8 */
9 #include <linux/uaccess.h>
10 #include <linux/hardirq.h>
11 #include <asm/switch_to.h>
12 #include <asm/asm-prototypes.h>
14 int enter_vmx_usercopy(void)
16 if (in_interrupt())
17 return 0;
19 preempt_disable();
21 * We need to disable page faults as they can call schedule and
22 * thus make us lose the VMX context. So on page faults, we just
23 * fail which will cause a fallback to the normal non-vmx copy.
25 pagefault_disable();
27 enable_kernel_altivec();
29 return 1;
33 * This function must return 0 because we tail call optimise when calling
34 * from __copy_tofrom_user_power7 which returns 0 on success.
36 int exit_vmx_usercopy(void)
38 disable_kernel_altivec();
39 pagefault_enable();
40 preempt_enable();
41 return 0;
44 int enter_vmx_ops(void)
46 if (in_interrupt())
47 return 0;
49 preempt_disable();
51 enable_kernel_altivec();
53 return 1;
57 * All calls to this function will be optimised into tail calls. We are
58 * passed a pointer to the destination which we return as required by a
59 * memcpy implementation.
61 void *exit_vmx_ops(void *dest)
63 disable_kernel_altivec();
64 preempt_enable();
65 return dest;