openrisc: Add FPU config
authorStafford Horne <shorne@gmail.com>
Sat, 30 Mar 2024 14:54:51 +0000 (14:54 +0000)
committerStafford Horne <shorne@gmail.com>
Mon, 15 Apr 2024 14:20:39 +0000 (15:20 +0100)
Allow disabling FPU related code sequences to save space.

Signed-off-by: Stafford Horne <shorne@gmail.com>
arch/openrisc/Kconfig
arch/openrisc/kernel/ptrace.c
arch/openrisc/kernel/traps.c

index 3586cda55bdecaf687114d2dad14c8b1e9ceef97..69c0258700b28a8302df475c57b22e96576cee6d 100644 (file)
@@ -188,6 +188,15 @@ config SMP
 
          If you don't know what to do here, say N.
 
+config FPU
+       bool "FPU support"
+       default y
+       help
+         Say N here if you want to disable all floating-point related procedures
+         in the kernel and reduce binary size.
+
+         If you don't know what to do here, say Y.
+
 source "kernel/Kconfig.hz"
 
 config OPENRISC_NO_SPR_SR_DSX
index 1eeac3b62e9d3ab075011c6b95b9563a373b8c79..cf410193095fcad02bd11620d51502f4c02707b5 100644 (file)
@@ -88,6 +88,7 @@ static int genregs_set(struct task_struct *target,
        return ret;
 }
 
+#ifdef CONFIG_FPU
 /*
  * As OpenRISC shares GPRs and floating point registers we don't need to export
  * the floating point registers again.  So here we only export the fpcsr special
@@ -115,13 +116,16 @@ static int fpregs_set(struct task_struct *target,
                                 &regs->fpcsr, 0, 4);
        return ret;
 }
+#endif
 
 /*
  * Define the register sets available on OpenRISC under Linux
  */
 enum or1k_regset {
        REGSET_GENERAL,
+#ifdef CONFIG_FPU
        REGSET_FPU,
+#endif
 };
 
 static const struct user_regset or1k_regsets[] = {
@@ -133,6 +137,7 @@ static const struct user_regset or1k_regsets[] = {
                            .regset_get = genregs_get,
                            .set = genregs_set,
                            },
+#ifdef CONFIG_FPU
        [REGSET_FPU] = {
                            .core_note_type = NT_PRFPREG,
                            .n = sizeof(struct __or1k_fpu_state) / sizeof(long),
@@ -141,6 +146,7 @@ static const struct user_regset or1k_regsets[] = {
                            .regset_get = fpregs_get,
                            .set = fpregs_set,
                            },
+#endif
 };
 
 static const struct user_regset_view user_or1k_native_view = {
index 211ddaa0c5fadebe95a372bd9c57702fed12d6d5..57e0d674eb04c732827c34265565a26a1ebda2e8 100644 (file)
@@ -182,6 +182,7 @@ asmlinkage void do_fpe_trap(struct pt_regs *regs, unsigned long address)
 {
        if (user_mode(regs)) {
                int code = FPE_FLTUNK;
+#ifdef CONFIG_FPU
                unsigned long fpcsr = regs->fpcsr;
 
                if (fpcsr & SPR_FPCSR_IVF)
@@ -197,7 +198,7 @@ asmlinkage void do_fpe_trap(struct pt_regs *regs, unsigned long address)
 
                /* Clear all flags */
                regs->fpcsr &= ~SPR_FPCSR_ALLF;
-
+#endif
                force_sig_fault(SIGFPE, code, (void __user *)regs->pc);
        } else {
                pr_emerg("KERNEL: Illegal fpe exception 0x%.8lx\n", regs->pc);