]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/x86/lib/Makefile
Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[mirror_ubuntu-jammy-kernel.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
eb13296c
MH
9inat_tables_script = $(srctree)/arch/x86/tools/gen-insn-attr-x86.awk
10inat_tables_maps = $(srctree)/arch/x86/lib/x86-opcode-map.txt
11quiet_cmd_inat_tables = GEN $@
d32ba455 12 cmd_inat_tables = $(AWK) -f $(inat_tables_script) $(inat_tables_maps) > $@ || rm -f $@
eb13296c
MH
13
14$(obj)/inat-tables.c: $(inat_tables_script) $(inat_tables_maps)
15 $(call cmd,inat_tables)
16
17$(obj)/inat.o: $(obj)/inat-tables.c
18
19clean-files := inat-tables.c
20
a7b480e7 21obj-$(CONFIG_SMP) += msr-smp.o cache-smp.o
583d0e90 22
99f925ce 23lib-y := delay.o misc.o cmdline.o cpu.o
1ac2e6ca 24lib-y += usercopy_$(BITS).o usercopy.o getuser.o putuser.o
583d0e90 25lib-y += memcpy_$(BITS).o
a7386694 26lib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o
32542ee2 27lib-$(CONFIG_INSTRUCTION_DECODER) += insn.o inat.o insn-eval.o
d899a7d1 28lib-$(CONFIG_RANDOMIZE_BASE) += kaslr.o
76b04384 29lib-$(CONFIG_RETPOLINE) += retpoline.o
1dde7415 30OBJECT_FILES_NON_STANDARD_retpoline.o :=y
583d0e90 31
f5967101 32obj-y += msr.o msr-reg.o msr-reg-export.o hweight.o
583d0e90 33
5fde34fd 34ifeq ($(CONFIG_X86_32),y)
1fde902d 35 obj-y += atomic64_32.o
a7e926ab 36 lib-y += atomic64_cx8_32.o
583d0e90
SR
37 lib-y += checksum_32.o
38 lib-y += strstr_32.o
4625cd63 39 lib-y += string_32.o
04edbdef 40ifneq ($(CONFIG_X86_CMPXCHG64),y)
a7e926ab 41 lib-y += cmpxchg8b_emu.o atomic64_386_32.o
04edbdef 42endif
583d0e90 43 lib-$(CONFIG_X86_USE_3DNOW) += mmx_32.o
5fde34fd 44else
6175ddf0 45 obj-y += iomap_copy_64.o
583d0e90 46 lib-y += csum-partial_64.o csum-copy_64.o csum-wrappers_64.o
212be3b2 47 lib-y += clear_page_64.o copy_page_64.o
583d0e90 48 lib-y += memmove_64.o memset_64.o
b41e6ec2 49 lib-y += copy_user_64.o
b9ec40af 50 lib-y += cmpxchg16b_emu.o
5fde34fd 51endif