Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma
[linux-block.git] / arch / x86 / lib / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
583d0e90
SR
2#
3# Makefile for x86 specific library files.
4#
5
5c9a8750
DV
6# Produces uninteresting flaky coverage.
7KCOV_INSTRUMENT_delay.o := n
8
40d04110
ME
9# KCSAN uses udelay for introducing watchpoint delay; avoid recursion.
10KCSAN_SANITIZE_delay.o := n
f5d2313b
ME
11ifdef CONFIG_KCSAN
12# In case KCSAN+lockdep+ftrace are enabled, disable ftrace for delay.o to avoid
13# lockdep -> [other libs] -> KCSAN -> udelay -> ftrace -> lockdep recursion.
14CFLAGS_REMOVE_delay.o = $(CC_FLAGS_FTRACE)
15endif
40d04110 16
eb13296c
MH
17inat_tables_script = $(srctree)/arch/x86/tools/gen-insn-attr-x86.awk
18inat_tables_maps = $(srctree)/arch/x86/lib/x86-opcode-map.txt
19quiet_cmd_inat_tables = GEN $@
172caf19 20 cmd_inat_tables = $(AWK) -f $(inat_tables_script) $(inat_tables_maps) > $@
eb13296c
MH
21
22$(obj)/inat-tables.c: $(inat_tables_script) $(inat_tables_maps)
23 $(call cmd,inat_tables)
24
25$(obj)/inat.o: $(obj)/inat-tables.c
26
27clean-files := inat-tables.c
28
a7b480e7 29obj-$(CONFIG_SMP) += msr-smp.o cache-smp.o
583d0e90 30
99f925ce 31lib-y := delay.o misc.o cmdline.o cpu.o
1ac2e6ca 32lib-y += usercopy_$(BITS).o usercopy.o getuser.o putuser.o
583d0e90 33lib-y += memcpy_$(BITS).o
fb6a0408 34lib-y += pc-conf-reg.o
ec6347bb 35lib-$(CONFIG_ARCH_HAS_COPY_MC) += copy_mc.o copy_mc_64.o
32542ee2 36lib-$(CONFIG_INSTRUCTION_DECODER) += insn.o inat.o insn-eval.o
d899a7d1 37lib-$(CONFIG_RANDOMIZE_BASE) += kaslr.o
540adea3 38lib-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o
aefb2f2e 39lib-$(CONFIG_MITIGATION_RETPOLINE) += retpoline.o
583d0e90 40
f5967101 41obj-y += msr.o msr-reg.o msr-reg-export.o hweight.o
170d13ca 42obj-y += iomem.o
583d0e90 43
5fde34fd 44ifeq ($(CONFIG_X86_32),y)
1fde902d 45 obj-y += atomic64_32.o
a7e926ab 46 lib-y += atomic64_cx8_32.o
583d0e90
SR
47 lib-y += checksum_32.o
48 lib-y += strstr_32.o
4625cd63 49 lib-y += string_32.o
bce5a1e8 50 lib-y += memmove_32.o
6d12c8d3 51 lib-y += cmpxchg8b_emu.o
04edbdef 52ifneq ($(CONFIG_X86_CMPXCHG64),y)
6d12c8d3 53 lib-y += atomic64_386_32.o
04edbdef 54endif
5fde34fd 55else
d911c67e 56ifneq ($(CONFIG_GENERIC_CSUM),y)
583d0e90 57 lib-y += csum-partial_64.o csum-copy_64.o csum-wrappers_64.o
d911c67e 58endif
212be3b2 59 lib-y += clear_page_64.o copy_page_64.o
583d0e90 60 lib-y += memmove_64.o memset_64.o
034ff37d 61 lib-y += copy_user_64.o copy_user_uncached_64.o
b9ec40af 62 lib-y += cmpxchg16b_emu.o
5fde34fd 63endif