import PULS_20160108
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm64 / kernel / fpsimd.c
CommitLineData
53631b54
CM
1/*
2 * FP/SIMD context switching and fault handling
3 *
4 * Copyright (C) 2012 ARM Ltd.
5 * Author: Catalin Marinas <catalin.marinas@arm.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <linux/kernel.h>
21#include <linux/init.h>
22#include <linux/sched.h>
23#include <linux/signal.h>
6fa3eb70
S
24#include <linux/hardirq.h>
25#include <linux/cpu.h>
26
53631b54
CM
27
28#include <asm/fpsimd.h>
29#include <asm/cputype.h>
30
31#define FPEXC_IOF (1 << 0)
32#define FPEXC_DZF (1 << 1)
33#define FPEXC_OFF (1 << 2)
34#define FPEXC_UFF (1 << 3)
35#define FPEXC_IXF (1 << 4)
36#define FPEXC_IDF (1 << 7)
37
6fa3eb70
S
38/*
39 * In order to reduce the number of times the FPSIMD state is needlessly saved
40 * and restored, we need to keep track of two things:
41 * (a) for each task, we need to remember which CPU was the last one to have
42 * the task's FPSIMD state loaded into its FPSIMD registers;
43 * (b) for each CPU, we need to remember which task's userland FPSIMD state has
44 * been loaded into its FPSIMD registers most recently, or whether it has
45 * been used to perform kernel mode NEON in the meantime.
46 *
47 * For (a), we add a 'cpu' field to struct fpsimd_state, which gets updated to
48 * the id of the current CPU everytime the state is loaded onto a CPU. For (b),
49 * we add the per-cpu variable 'fpsimd_last_state' (below), which contains the
50 * address of the userland FPSIMD state of the task that was loaded onto the CPU
51 * the most recently, or NULL if kernel mode NEON has been performed after that.
52 *
53 * With this in place, we no longer have to restore the next FPSIMD state right
54 * when switching between tasks. Instead, we can defer this check to userland
55 * resume, at which time we verify whether the CPU's fpsimd_last_state and the
56 * task's fpsimd_state.cpu are still mutually in sync. If this is the case, we
57 * can omit the FPSIMD restore.
58 *
59 * As an optimization, we use the thread_info flag TIF_FOREIGN_FPSTATE to
60 * indicate whether or not the userland FPSIMD state of the current task is
61 * present in the registers. The flag is set unless the FPSIMD registers of this
62 * CPU currently contain the most recent userland FPSIMD state of the current
63 * task.
64 *
65 * For a certain task, the sequence may look something like this:
66 * - the task gets scheduled in; if both the task's fpsimd_state.cpu field
67 * contains the id of the current CPU, and the CPU's fpsimd_last_state per-cpu
68 * variable points to the task's fpsimd_state, the TIF_FOREIGN_FPSTATE flag is
69 * cleared, otherwise it is set;
70 *
71 * - the task returns to userland; if TIF_FOREIGN_FPSTATE is set, the task's
72 * userland FPSIMD state is copied from memory to the registers, the task's
73 * fpsimd_state.cpu field is set to the id of the current CPU, the current
74 * CPU's fpsimd_last_state pointer is set to this task's fpsimd_state and the
75 * TIF_FOREIGN_FPSTATE flag is cleared;
76 *
77 * - the task executes an ordinary syscall; upon return to userland, the
78 * TIF_FOREIGN_FPSTATE flag will still be cleared, so no FPSIMD state is
79 * restored;
80 *
81 * - the task executes a syscall which executes some NEON instructions; this is
82 * preceded by a call to kernel_neon_begin(), which copies the task's FPSIMD
83 * register contents to memory, clears the fpsimd_last_state per-cpu variable
84 * and sets the TIF_FOREIGN_FPSTATE flag;
85 *
86 * - the task gets preempted after kernel_neon_end() is called; as we have not
87 * returned from the 2nd syscall yet, TIF_FOREIGN_FPSTATE is still set so
88 * whatever is in the FPSIMD registers is not saved to memory, but discarded.
89 */
90static DEFINE_PER_CPU(struct fpsimd_state *, fpsimd_last_state);
91
53631b54
CM
92/*
93 * Trapped FP/ASIMD access.
94 */
95void do_fpsimd_acc(unsigned int esr, struct pt_regs *regs)
96{
97 /* TODO: implement lazy context saving/restoring */
98 WARN_ON(1);
99}
100
101/*
102 * Raise a SIGFPE for the current process.
103 */
104void do_fpsimd_exc(unsigned int esr, struct pt_regs *regs)
105{
106 siginfo_t info;
107 unsigned int si_code = 0;
108
109 if (esr & FPEXC_IOF)
110 si_code = FPE_FLTINV;
111 else if (esr & FPEXC_DZF)
112 si_code = FPE_FLTDIV;
113 else if (esr & FPEXC_OFF)
114 si_code = FPE_FLTOVF;
115 else if (esr & FPEXC_UFF)
116 si_code = FPE_FLTUND;
117 else if (esr & FPEXC_IXF)
118 si_code = FPE_FLTRES;
119
120 memset(&info, 0, sizeof(info));
121 info.si_signo = SIGFPE;
122 info.si_code = si_code;
123 info.si_addr = (void __user *)instruction_pointer(regs);
124
125 send_sig_info(SIGFPE, &info, current);
126}
127
128void fpsimd_thread_switch(struct task_struct *next)
129{
6fa3eb70
S
130 /*
131 * Save the current FPSIMD state to memory, but only if whatever is in
132 * the registers is in fact the most recent userland FPSIMD state of
133 * 'current'.
134 */
135 if (current->mm && !test_thread_flag(TIF_FOREIGN_FPSTATE))
53631b54 136 fpsimd_save_state(&current->thread.fpsimd_state);
6fa3eb70
S
137
138 if (next->mm) {
139 /*
140 * If we are switching to a task whose most recent userland
141 * FPSIMD state is already in the registers of *this* cpu,
142 * we can skip loading the state from memory. Otherwise, set
143 * the TIF_FOREIGN_FPSTATE flag so the state will be loaded
144 * upon the next return to userland.
145 */
146 struct fpsimd_state *st = &next->thread.fpsimd_state;
147
148 if (__this_cpu_read(fpsimd_last_state) == st
149 && st->cpu == smp_processor_id())
150 clear_ti_thread_flag(task_thread_info(next),
151 TIF_FOREIGN_FPSTATE);
152 else
153 set_ti_thread_flag(task_thread_info(next),
154 TIF_FOREIGN_FPSTATE);
155 }
53631b54
CM
156}
157
158void fpsimd_flush_thread(void)
159{
2bf5861a 160 preempt_disable();
53631b54 161 memset(&current->thread.fpsimd_state, 0, sizeof(struct fpsimd_state));
6fa3eb70
S
162 set_thread_flag(TIF_FOREIGN_FPSTATE);
163 preempt_enable();
164}
165
166/*
167 * Save the userland FPSIMD state of 'current' to memory, but only if the state
168 * currently held in the registers does in fact belong to 'current'
169 */
170void fpsimd_preserve_current_state(void)
171{
172 preempt_disable();
173 if (!test_thread_flag(TIF_FOREIGN_FPSTATE))
174 fpsimd_save_state(&current->thread.fpsimd_state);
175 preempt_enable();
176}
177
178/*
179 * Load the userland FPSIMD state of 'current' from memory, but only if the
180 * FPSIMD state already held in the registers is /not/ the most recent FPSIMD
181 * state of 'current'
182 */
183void fpsimd_restore_current_state(void)
184{
185 preempt_disable();
186 if (test_and_clear_thread_flag(TIF_FOREIGN_FPSTATE)) {
187 struct fpsimd_state *st = &current->thread.fpsimd_state;
188
189 fpsimd_load_state(st);
190 this_cpu_write(fpsimd_last_state, st);
191 st->cpu = smp_processor_id();
192 }
193 preempt_enable();
194}
195
196/*
197 * Load an updated userland FPSIMD state for 'current' from memory and set the
198 * flag that indicates that the FPSIMD register contents are the most recent
199 * FPSIMD state of 'current'
200 */
201void fpsimd_update_current_state(struct fpsimd_state *state)
202{
203 preempt_disable();
204 fpsimd_load_state(state);
205 if (test_and_clear_thread_flag(TIF_FOREIGN_FPSTATE)) {
206 struct fpsimd_state *st = &current->thread.fpsimd_state;
207
208 this_cpu_write(fpsimd_last_state, st);
209 st->cpu = smp_processor_id();
210 }
2bf5861a 211 preempt_enable();
53631b54
CM
212}
213
6fa3eb70
S
214/*
215 * Invalidate live CPU copies of task t's FPSIMD state
216 */
217void fpsimd_flush_task_state(struct task_struct *t)
218{
219 t->thread.fpsimd_state.cpu = NR_CPUS;
220}
221
222#ifdef CONFIG_KERNEL_MODE_NEON
223
224static DEFINE_PER_CPU(struct fpsimd_partial_state, hardirq_fpsimdstate);
225static DEFINE_PER_CPU(struct fpsimd_partial_state, softirq_fpsimdstate);
226
227/*
228 * Kernel-side NEON support functions
229 */
230void kernel_neon_begin_partial(u32 num_regs)
231{
232 if (in_interrupt()) {
233 struct fpsimd_partial_state *s = this_cpu_ptr(
234 in_irq() ? &hardirq_fpsimdstate : &softirq_fpsimdstate);
235
236 BUG_ON(num_regs > 32);
237 fpsimd_save_partial_state(s, roundup(num_regs, 2));
238 } else {
239 /*
240 * Save the userland FPSIMD state if we have one and if we
241 * haven't done so already. Clear fpsimd_last_state to indicate
242 * that there is no longer userland FPSIMD state in the
243 * registers.
244 */
245 preempt_disable();
246 if (current->mm &&
247 !test_and_set_thread_flag(TIF_FOREIGN_FPSTATE))
248 fpsimd_save_state(&current->thread.fpsimd_state);
249 this_cpu_write(fpsimd_last_state, NULL);
250 }
251}
252EXPORT_SYMBOL(kernel_neon_begin_partial);
253
254void kernel_neon_end(void)
255{
256 if (in_interrupt()) {
257 struct fpsimd_partial_state *s = this_cpu_ptr(
258 in_irq() ? &hardirq_fpsimdstate : &softirq_fpsimdstate);
259 fpsimd_load_partial_state(s);
260 } else {
261 preempt_enable();
262 }
263}
264EXPORT_SYMBOL(kernel_neon_end);
265
266#endif /* CONFIG_KERNEL_MODE_NEON */
267
268#ifdef CONFIG_CPU_PM
269static int fpsimd_cpu_pm_notifier(struct notifier_block *self,
270 unsigned long cmd, void *v)
271{
272 switch (cmd) {
273 case CPU_PM_ENTER:
274 if (current->mm && !test_thread_flag(TIF_FOREIGN_FPSTATE))
275 fpsimd_save_state(&current->thread.fpsimd_state);
276 this_cpu_write(fpsimd_last_state, NULL);
277 break;
278 case CPU_PM_EXIT:
279 if (current->mm)
280 set_thread_flag(TIF_FOREIGN_FPSTATE);
281 break;
282 case CPU_PM_ENTER_FAILED:
283 default:
284 return NOTIFY_DONE;
285 }
286 return NOTIFY_OK;
287}
288
289static struct notifier_block fpsimd_cpu_pm_notifier_block = {
290 .notifier_call = fpsimd_cpu_pm_notifier,
291};
292
293static void fpsimd_pm_init(void)
294{
295 cpu_pm_register_notifier(&fpsimd_cpu_pm_notifier_block);
296}
297
298#else
299static inline void fpsimd_pm_init(void) { }
300#endif /* CONFIG_CPU_PM */
301
302#ifdef CONFIG_MEDIATEK_SOLUTION
303static int fpsimd_hotplug(struct notifier_block *b, unsigned long action, void *hcpu)
304{
305 if (action == CPU_DYING || action == CPU_DYING_FROZEN) {
306 if (current->mm && !test_thread_flag(TIF_FOREIGN_FPSTATE))
307 fpsimd_save_state(&current->thread.fpsimd_state);
308 this_cpu_write(fpsimd_last_state, NULL);
309 } else if (action == CPU_STARTING || action == CPU_STARTING_FROZEN){
310 if (current->mm)
311 set_thread_flag(TIF_FOREIGN_FPSTATE);
312 }
313
314 return NOTIFY_OK;
315}
316#endif
317
53631b54
CM
318/*
319 * FP/SIMD support code initialisation.
320 */
321static int __init fpsimd_init(void)
322{
323 u64 pfr = read_cpuid(ID_AA64PFR0_EL1);
324
325 if (pfr & (0xf << 16)) {
326 pr_notice("Floating-point is not implemented\n");
327 return 0;
328 }
329 elf_hwcap |= HWCAP_FP;
330
331 if (pfr & (0xf << 20))
332 pr_notice("Advanced SIMD is not implemented\n");
333 else
334 elf_hwcap |= HWCAP_ASIMD;
335
6fa3eb70
S
336#ifdef CONFIG_MEDIATEK_SOLUTION
337 hotcpu_notifier(fpsimd_hotplug, 0);
338#endif
339
53631b54
CM
340 return 0;
341}
342late_initcall(fpsimd_init);