mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-17 06:06:10 +07:00
44e92e0364
Currently, the nds32 FPU dose not support the arithmetic of denormalized number. When the nds32 FPU finds the result of the instruction is a denormlized number, the nds32 FPU considers it to be an underflow condition and rounds the result to an appropriate number. It may causes some loss of precision. This commit proposes a solution to re-execute the instruction by the FPU emulator to enhance the precision. To transfer calculations from user space to kernel space, this feature will enable the underflow exception trap by default. Enabling this feature may cause some side effects: 1. Performance loss due to extra FPU exception 2. Need another scheme to control real underflow trap A new parameter, UDF_trap, which is belong to FPU context is used to control underflow trap. User can configure this feature via CONFIG_SUPPORT_DENORMAL_ARITHMETIC Signed-off-by: Vincent Chen <vincentc@andestech.com> Acked-by: Greentime Hu <greentime@andestech.com> Signed-off-by: Greentime Hu <greentime@andestech.com>
14 lines
415 B
C
14 lines
415 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2005-2018 Andes Technology Corporation */
|
|
#ifndef _ASM_SETFPUTRAP
|
|
#define _ASM_SETFPUTRAP
|
|
|
|
/*
|
|
* Options for setfputrap system call
|
|
*/
|
|
#define DISABLE_UDFTRAP 0 /* disable underflow exception trap */
|
|
#define ENABLE_UDFTRAP 1 /* enable undeflos exception trap */
|
|
#define GET_UDFTRAP 2 /* only get undeflos exception trap status */
|
|
|
|
#endif /* _ASM_CACHECTL */
|