2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 MontaVista Software Inc.
|
|
|
|
* Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*/
|
|
|
|
#ifndef _ASM_FPU_H
|
|
|
|
#define _ASM_FPU_H
|
|
|
|
|
|
|
|
#include <linux/sched.h>
|
2017-02-09 01:51:37 +08:00
|
|
|
#include <linux/sched/task_stack.h>
|
2017-03-08 15:29:31 +08:00
|
|
|
#include <linux/ptrace.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/thread_info.h>
|
2007-10-19 14:40:25 +08:00
|
|
|
#include <linux/bitops.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <asm/mipsregs.h>
|
|
|
|
#include <asm/cpu.h>
|
|
|
|
#include <asm/cpu-features.h>
|
2014-04-29 04:34:01 +08:00
|
|
|
#include <asm/fpu_emulator.h>
|
2007-05-08 23:09:13 +08:00
|
|
|
#include <asm/hazards.h>
|
2017-03-04 08:32:03 +08:00
|
|
|
#include <asm/ptrace.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/current.h>
|
2014-07-11 23:44:30 +08:00
|
|
|
#include <asm/msa.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-04-05 16:45:47 +08:00
|
|
|
#ifdef CONFIG_MIPS_MT_FPAFF
|
|
|
|
#include <asm/mips_mt.h>
|
|
|
|
#endif
|
|
|
|
|
2013-11-22 21:12:07 +08:00
|
|
|
/*
|
|
|
|
* This enum specifies a mode in which we want the FPU to operate, for cores
|
2014-09-11 15:30:20 +08:00
|
|
|
* which implement the Status.FR bit. Note that the bottom bit of the value
|
|
|
|
* purposefully matches the desired value of the Status.FR bit.
|
2013-11-22 21:12:07 +08:00
|
|
|
*/
|
|
|
|
enum fpu_mode {
|
|
|
|
FPU_32BIT = 0, /* FR = 0 */
|
2014-09-11 15:30:20 +08:00
|
|
|
FPU_64BIT, /* FR = 1, FRE = 0 */
|
2013-11-22 21:12:07 +08:00
|
|
|
FPU_AS_IS,
|
2014-09-11 15:30:20 +08:00
|
|
|
FPU_HYBRID, /* FR = 1, FRE = 1 */
|
|
|
|
|
|
|
|
#define FPU_FR_MASK 0x1
|
2013-11-22 21:12:07 +08:00
|
|
|
};
|
|
|
|
|
2018-11-08 07:14:04 +08:00
|
|
|
#ifdef CONFIG_MIPS_FP_SUPPORT
|
|
|
|
|
|
|
|
extern void _save_fp(struct task_struct *);
|
|
|
|
extern void _restore_fp(struct task_struct *);
|
|
|
|
|
2015-01-30 20:09:37 +08:00
|
|
|
#define __disable_fpu() \
|
|
|
|
do { \
|
|
|
|
clear_c0_status(ST0_CU1); \
|
|
|
|
disable_fpu_hazard(); \
|
|
|
|
} while (0)
|
|
|
|
|
2013-11-22 21:12:07 +08:00
|
|
|
static inline int __enable_fpu(enum fpu_mode mode)
|
|
|
|
{
|
|
|
|
int fr;
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case FPU_AS_IS:
|
|
|
|
/* just enable the FPU in its current mode */
|
|
|
|
set_c0_status(ST0_CU1);
|
|
|
|
enable_fpu_hazard();
|
|
|
|
return 0;
|
|
|
|
|
2014-09-11 15:30:20 +08:00
|
|
|
case FPU_HYBRID:
|
|
|
|
if (!cpu_has_fre)
|
|
|
|
return SIGFPE;
|
|
|
|
|
|
|
|
/* set FRE */
|
2014-12-17 18:46:40 +08:00
|
|
|
set_c0_config5(MIPS_CONF5_FRE);
|
2014-09-11 15:30:20 +08:00
|
|
|
goto fr_common;
|
|
|
|
|
2013-11-22 21:12:07 +08:00
|
|
|
case FPU_64BIT:
|
2015-07-16 22:30:04 +08:00
|
|
|
#if !(defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) \
|
2015-01-30 18:20:28 +08:00
|
|
|
|| defined(CONFIG_64BIT))
|
2013-11-22 21:12:07 +08:00
|
|
|
/* we only have a 32-bit FPU */
|
|
|
|
return SIGFPE;
|
|
|
|
#endif
|
|
|
|
/* fall through */
|
|
|
|
case FPU_32BIT:
|
2014-12-17 18:39:30 +08:00
|
|
|
if (cpu_has_fre) {
|
|
|
|
/* clear FRE */
|
2014-12-17 18:46:40 +08:00
|
|
|
clear_c0_config5(MIPS_CONF5_FRE);
|
2014-12-17 18:39:30 +08:00
|
|
|
}
|
2014-09-11 15:30:20 +08:00
|
|
|
fr_common:
|
2013-11-22 21:12:07 +08:00
|
|
|
/* set CU1 & change FR appropriately */
|
2014-09-11 15:30:20 +08:00
|
|
|
fr = (int)mode & FPU_FR_MASK;
|
2013-11-22 21:12:07 +08:00
|
|
|
change_c0_status(ST0_CU1 | ST0_FR, ST0_CU1 | (fr ? ST0_FR : 0));
|
|
|
|
enable_fpu_hazard();
|
|
|
|
|
|
|
|
/* check FR has the desired value */
|
2015-01-30 20:09:37 +08:00
|
|
|
if (!!(read_c0_status() & ST0_FR) == !!fr)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* unsupported FR value */
|
|
|
|
__disable_fpu();
|
|
|
|
return SIGFPE;
|
2013-11-22 21:12:07 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
2014-02-06 04:05:44 +08:00
|
|
|
|
|
|
|
return SIGFPE;
|
2013-11-22 21:12:07 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define clear_fpu_owner() clear_thread_flag(TIF_USEDFPU)
|
|
|
|
|
2005-05-09 21:16:07 +08:00
|
|
|
static inline int __is_fpu_owner(void)
|
|
|
|
{
|
|
|
|
return test_thread_flag(TIF_USEDFPU);
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
static inline int is_fpu_owner(void)
|
|
|
|
{
|
2005-05-09 21:16:07 +08:00
|
|
|
return cpu_has_fpu && __is_fpu_owner();
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2013-11-22 21:12:07 +08:00
|
|
|
static inline int __own_fpu(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-11-22 21:12:07 +08:00
|
|
|
enum fpu_mode mode;
|
|
|
|
int ret;
|
|
|
|
|
2014-09-11 15:30:20 +08:00
|
|
|
if (test_thread_flag(TIF_HYBRID_FPREGS))
|
|
|
|
mode = FPU_HYBRID;
|
|
|
|
else
|
|
|
|
mode = !test_thread_flag(TIF_32BIT_FPREGS);
|
|
|
|
|
2013-11-22 21:12:07 +08:00
|
|
|
ret = __enable_fpu(mode);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2007-03-10 00:07:45 +08:00
|
|
|
KSTK_STATUS(current) |= ST0_CU1;
|
2014-09-11 15:30:20 +08:00
|
|
|
if (mode == FPU_64BIT || mode == FPU_HYBRID)
|
2013-11-22 21:12:07 +08:00
|
|
|
KSTK_STATUS(current) |= ST0_FR;
|
|
|
|
else /* mode == FPU_32BIT */
|
|
|
|
KSTK_STATUS(current) &= ~ST0_FR;
|
|
|
|
|
2007-03-10 00:07:45 +08:00
|
|
|
set_thread_flag(TIF_USEDFPU);
|
2013-11-22 21:12:07 +08:00
|
|
|
return 0;
|
2007-03-10 00:07:45 +08:00
|
|
|
}
|
|
|
|
|
2013-11-22 21:12:07 +08:00
|
|
|
static inline int own_fpu_inatomic(int restore)
|
2007-03-10 00:07:45 +08:00
|
|
|
{
|
2013-11-22 21:12:07 +08:00
|
|
|
int ret = 0;
|
|
|
|
|
2007-03-10 00:07:45 +08:00
|
|
|
if (cpu_has_fpu && !__is_fpu_owner()) {
|
2013-11-22 21:12:07 +08:00
|
|
|
ret = __own_fpu();
|
|
|
|
if (restore && !ret)
|
2007-03-10 00:07:45 +08:00
|
|
|
_restore_fp(current);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2013-11-22 21:12:07 +08:00
|
|
|
return ret;
|
2007-04-16 22:19:44 +08:00
|
|
|
}
|
|
|
|
|
2013-11-22 21:12:07 +08:00
|
|
|
static inline int own_fpu(int restore)
|
2007-04-16 22:19:44 +08:00
|
|
|
{
|
2013-11-22 21:12:07 +08:00
|
|
|
int ret;
|
|
|
|
|
2007-04-16 22:19:44 +08:00
|
|
|
preempt_disable();
|
2013-11-22 21:12:07 +08:00
|
|
|
ret = own_fpu_inatomic(restore);
|
2007-03-10 00:07:45 +08:00
|
|
|
preempt_enable();
|
2013-11-22 21:12:07 +08:00
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2015-08-03 23:49:30 +08:00
|
|
|
static inline void lose_fpu_inatomic(int save, struct task_struct *tsk)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2014-07-11 23:44:30 +08:00
|
|
|
if (is_msa_enabled()) {
|
|
|
|
if (save) {
|
2015-08-03 23:49:30 +08:00
|
|
|
save_msa(tsk);
|
|
|
|
tsk->thread.fpu.fcr31 =
|
2014-11-07 21:13:54 +08:00
|
|
|
read_32bit_cp1_register(CP1_STATUS);
|
2014-07-11 23:44:30 +08:00
|
|
|
}
|
|
|
|
disable_msa();
|
2015-08-03 23:49:30 +08:00
|
|
|
clear_tsk_thread_flag(tsk, TIF_USEDMSA);
|
2015-02-25 21:08:05 +08:00
|
|
|
__disable_fpu();
|
2014-07-11 23:44:30 +08:00
|
|
|
} else if (is_fpu_owner()) {
|
2007-03-10 00:07:45 +08:00
|
|
|
if (save)
|
2015-08-03 23:49:30 +08:00
|
|
|
_save_fp(tsk);
|
2005-04-17 06:20:36 +08:00
|
|
|
__disable_fpu();
|
MIPS: Fix FPU disable with preemption
The FPU should not be left enabled after a task context switch. This
isn't usually a problem as the FPU enable bit is updated before
returning to userland, however it can potentially mask kernel bugs, and
in fact KVM assumes it won't happen and won't clear the FPU enable bit
before returning to the guest, which allows the guest to use stale FPU
context.
Interrupts and exceptions save and restore most bits of the CP0 Status
register which contains the FPU enable bit (CU1). When the kernel needs
to enable or disable the FPU (for example due to attempted FPU use by
userland, or the scheduler being invoked) both the actual Status
register and the saved value in the userland context are updated.
However this doesn't work correctly with full kernel preemption enabled,
since the FPU enable bit can be cleared from within an interrupt when
the scheduler is invoked, and only the userland context is updated, not
the interrupt context.
For example:
1) Enter kernel with FPU already enabled, TIF_USEDFPU=1, Status.CU1=1
saved.
2) Take a timer interrupt while in kernel mode, Status.CU1=1 saved.
3) Timer interrupt invokes scheduler to preempt the task, which clears
TIF_USEDFPU, disables the FPU in Status register (Status.CU1=0), and
the value stored in user context from step (1), but not the interrupt
context from step (2).
4) When the process is scheduled back in again Status.CU1=0.
5) The interrupt context from step (2) is restored, which sets
Status.CU1=1. So from user context point of view, preemption has
re-enabled FPU!
6) If the scheduler is invoked again (via preemption or voluntarily)
before returning to userland, TIF_USEDFPU=0 so the FPU is not
disabled before the task context switch.
7) The next task resumes from the context switch with FPU enabled!
The restoring of the Status register on return from interrupt/exception
is already selective about which bits to restore, leaving the interrupt
mask bits alone so enabling/disabling of CPU interrupt lines can
persist. Extend this to also leave both the CU1 bit (FPU enable) and the
FR bit (which specifies the FPU mode and gets changed with CU1). This
prevents a stale Status value being restored in step (5) above and
persisting through subsequent context switches.
Also switch to the use of definitions from asm/mipsregs.h while we're at
it.
Since this change also affects the restoration of Status register on the
path back to userland, it increases the sensitivity of the kernel to the
problem of the FPU being left enabled, allowing it to propagate to
userland, therefore a warning is also added to lose_fpu_inatomic() to
point out any future reoccurances before they do any damage.
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Reviewed-by: Paul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/12303/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2016-02-01 21:50:37 +08:00
|
|
|
} else {
|
|
|
|
/* FPU should not have been left enabled with no owner */
|
|
|
|
WARN(read_c0_status() & ST0_CU1,
|
|
|
|
"Orphaned FPU left enabled");
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2015-08-03 23:49:30 +08:00
|
|
|
KSTK_STATUS(tsk) &= ~ST0_CU1;
|
|
|
|
clear_tsk_thread_flag(tsk, TIF_USEDFPU);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void lose_fpu(int save)
|
|
|
|
{
|
|
|
|
preempt_disable();
|
|
|
|
lose_fpu_inatomic(save, current);
|
2007-03-10 00:07:45 +08:00
|
|
|
preempt_enable();
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2018-11-08 07:13:59 +08:00
|
|
|
/**
|
|
|
|
* init_fp_ctx() - Initialize task FP context
|
|
|
|
* @target: The task whose FP context should be initialized.
|
|
|
|
*
|
|
|
|
* Initializes the FP context of the target task to sane default values if that
|
|
|
|
* target task does not already have valid FP context. Once the context has
|
|
|
|
* been initialized, the task will be marked as having used FP & thus having
|
|
|
|
* valid FP context.
|
|
|
|
*
|
|
|
|
* Returns: true if context is initialized, else false.
|
|
|
|
*/
|
|
|
|
static inline bool init_fp_ctx(struct task_struct *target)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2018-11-08 07:13:59 +08:00
|
|
|
/* If FP has been used then the target already has context */
|
|
|
|
if (tsk_used_math(target))
|
|
|
|
return false;
|
2014-09-11 15:30:20 +08:00
|
|
|
|
2018-11-08 07:13:59 +08:00
|
|
|
/* Begin with data registers set to all 1s... */
|
|
|
|
memset(&target->thread.fpu.fpr, ~0, sizeof(target->thread.fpu.fpr));
|
2014-09-11 15:30:20 +08:00
|
|
|
|
2018-11-08 07:13:59 +08:00
|
|
|
/* FCSR has been preset by `mips_set_personality_nan'. */
|
2014-12-17 18:39:30 +08:00
|
|
|
|
2018-11-08 07:13:59 +08:00
|
|
|
/*
|
|
|
|
* Record that the target has "used" math, such that the context
|
|
|
|
* just initialised, and any modifications made by the caller,
|
|
|
|
* aren't discarded.
|
|
|
|
*/
|
|
|
|
set_stopped_child_used_math(target);
|
2014-12-17 18:39:30 +08:00
|
|
|
|
2018-11-08 07:13:59 +08:00
|
|
|
return true;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void save_fp(struct task_struct *tsk)
|
|
|
|
{
|
|
|
|
if (cpu_has_fpu)
|
|
|
|
_save_fp(tsk);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void restore_fp(struct task_struct *tsk)
|
|
|
|
{
|
|
|
|
if (cpu_has_fpu)
|
|
|
|
_restore_fp(tsk);
|
|
|
|
}
|
|
|
|
|
2014-02-13 19:26:41 +08:00
|
|
|
static inline union fpureg *get_fpu_regs(struct task_struct *tsk)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2006-10-08 23:10:01 +08:00
|
|
|
if (tsk == current) {
|
|
|
|
preempt_disable();
|
|
|
|
if (is_fpu_owner())
|
2005-04-17 06:20:36 +08:00
|
|
|
_save_fp(current);
|
2006-10-08 23:10:01 +08:00
|
|
|
preempt_enable();
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2006-05-16 00:26:03 +08:00
|
|
|
return tsk->thread.fpu.fpr;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2018-11-08 07:14:04 +08:00
|
|
|
#else /* !CONFIG_MIPS_FP_SUPPORT */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When FP support is disabled we provide only a minimal set of stub functions
|
|
|
|
* to avoid callers needing to care too much about CONFIG_MIPS_FP_SUPPORT.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline int __enable_fpu(enum fpu_mode mode)
|
|
|
|
{
|
|
|
|
return SIGILL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void __disable_fpu(void)
|
|
|
|
{
|
|
|
|
/* no-op */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline int is_fpu_owner(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void clear_fpu_owner(void)
|
|
|
|
{
|
|
|
|
/* no-op */
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int own_fpu_inatomic(int restore)
|
|
|
|
{
|
|
|
|
return SIGILL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int own_fpu(int restore)
|
|
|
|
{
|
|
|
|
return SIGILL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void lose_fpu_inatomic(int save, struct task_struct *tsk)
|
|
|
|
{
|
|
|
|
/* no-op */
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void lose_fpu(int save)
|
|
|
|
{
|
|
|
|
/* no-op */
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool init_fp_ctx(struct task_struct *target)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following functions should only be called in paths where we know that FP
|
|
|
|
* support is enabled, typically a path where own_fpu() or __enable_fpu() have
|
|
|
|
* returned successfully. When CONFIG_MIPS_FP_SUPPORT=n it is known at compile
|
|
|
|
* time that this should never happen, so calls to these functions should be
|
|
|
|
* optimized away & never actually be emitted.
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern void save_fp(struct task_struct *tsk)
|
|
|
|
__compiletime_error("save_fp() should not be called when CONFIG_MIPS_FP_SUPPORT=n");
|
|
|
|
|
|
|
|
extern void _save_fp(struct task_struct *)
|
|
|
|
__compiletime_error("_save_fp() should not be called when CONFIG_MIPS_FP_SUPPORT=n");
|
|
|
|
|
|
|
|
extern void restore_fp(struct task_struct *tsk)
|
|
|
|
__compiletime_error("restore_fp() should not be called when CONFIG_MIPS_FP_SUPPORT=n");
|
|
|
|
|
|
|
|
extern void _restore_fp(struct task_struct *)
|
|
|
|
__compiletime_error("_restore_fp() should not be called when CONFIG_MIPS_FP_SUPPORT=n");
|
|
|
|
|
|
|
|
extern union fpureg *get_fpu_regs(struct task_struct *tsk)
|
|
|
|
__compiletime_error("get_fpu_regs() should not be called when CONFIG_MIPS_FP_SUPPORT=n");
|
|
|
|
|
|
|
|
#endif /* !CONFIG_MIPS_FP_SUPPORT */
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* _ASM_FPU_H */
|