MIPS: do not compile generic functions for CONFIG_CAVIUM_OCTEON_SOC
authorMasahiro Yamada <masahiroy@kernel.org>
Wed, 25 Mar 2020 07:45:29 +0000 (16:45 +0900)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Wed, 25 Mar 2020 15:07:13 +0000 (16:07 +0100)
MIPS provides multiple definitions for the following functions:

  fw_init_cmdline
  __delay
  __udelay
  __ndelay
  memmove
  __rmemcpy
  memcpy
  __copy_user

The generic ones are defined in lib-y objects, which are overridden by
the Octeon ones when CONFIG_CAVIUM_OCTEON_SOC is enabled.

The use of EXPORT_SYMBOL in static libraries potentially causes a
problem for the llvm linker [1]. So, I want to forcibly link lib-y
objects to vmlinux when CONFIG_MODULES=y.

As a groundwork, we must fix multiple definitions that have previously
been hidden by lib-y.

If you look at lib/string.c, arch can define __HAVE_ARCH_* to opt out
the generic implementation.

Similarly, this commit adds CONFIG_HAVE_PLAT_* to allow a platform
to opt out the MIPS generic code.

[1]: https://github.com/ClangBuiltLinux/linux/issues/515

Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/Kconfig
arch/mips/fw/lib/cmdline.c
arch/mips/lib/delay.c
arch/mips/lib/memcpy.S

index 4a0b2f494d7954d769fb6d9456c02d6b5642edf1..a1f973cc02656d291b58313e5ded680d47c5ae28 100644 (file)
@@ -975,6 +975,9 @@ config CAVIUM_OCTEON_SOC
        select SYS_HAS_EARLY_PRINTK
        select SYS_HAS_CPU_CAVIUM_OCTEON
        select HAVE_PCI
+       select HAVE_PLAT_DELAY
+       select HAVE_PLAT_FW_INIT_CMDLINE
+       select HAVE_PLAT_MEMCPY
        select ZONE_DMA32
        select HOLES_IN_ZONE
        select GPIOLIB
@@ -1231,6 +1234,15 @@ config GENERIC_ISA_DMA_SUPPORT_BROKEN
        bool
        select GENERIC_ISA_DMA
 
+config HAVE_PLAT_DELAY
+       bool
+
+config HAVE_PLAT_FW_INIT_CMDLINE
+       bool
+
+config HAVE_PLAT_MEMCPY
+       bool
+
 config ISA_DMA_API
        bool
 
index 6ecda64ad18423f5e27e22cf9ccf8786a5062cac..f24cbb4a39b506ad015c15cbd3773b2502b4dc1e 100644 (file)
@@ -16,6 +16,7 @@ int fw_argc;
 int *_fw_argv;
 int *_fw_envp;
 
+#ifndef CONFIG_HAVE_PLAT_FW_INIT_CMDLINE
 void __init fw_init_cmdline(void)
 {
        int i;
@@ -41,6 +42,7 @@ void __init fw_init_cmdline(void)
                        strlcat(arcs_cmdline, " ", COMMAND_LINE_SIZE);
        }
 }
+#endif
 
 char * __init fw_getcmdline(void)
 {
index 68c495ed71e303f4bb83bd5cac88d04c73b2a2a9..2e8dfc1d59c8bb2cbcbbf6c84ef0d267edb847b7 100644 (file)
@@ -24,6 +24,8 @@
 #define GCC_DADDI_IMM_ASM() "r"
 #endif
 
+#ifndef CONFIG_HAVE_PLAT_DELAY
+
 void __delay(unsigned long loops)
 {
        __asm__ __volatile__ (
@@ -63,3 +65,5 @@ void __ndelay(unsigned long ns)
        __delay((ns * 0x00000005ull * HZ * lpj) >> 32);
 }
 EXPORT_SYMBOL(__ndelay);
+
+#endif
index f7994d936505aae2f4bdfe6756056f96b633e6ff..88065ee433cdea4fb35a07ca80b65cabf66fa5d2 100644 (file)
@@ -598,6 +598,7 @@ SEXC(1)
         nop
        .endm
 
+#ifndef CONFIG_HAVE_PLAT_MEMCPY
        .align  5
 LEAF(memmove)
 EXPORT_SYMBOL(memmove)
@@ -665,6 +666,8 @@ EXPORT_SYMBOL(__copy_user)
        /* Legacy Mode, user <-> user */
        __BUILD_COPY_USER LEGACY_MODE USEROP USEROP
 
+#endif
+
 #ifdef CONFIG_EVA
 
 /*