xref: /openbmc/linux/lib/Makefile (revision 455a35a6)
1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
21da177e4SLinus Torvalds#
31da177e4SLinus Torvalds# Makefile for some libs needed in the kernel.
41da177e4SLinus Torvalds#
51da177e4SLinus Torvalds
6606576ceSSteven Rostedtifdef CONFIG_FUNCTION_TRACER
72464a609SIngo MolnarORIG_CFLAGS := $(KBUILD_CFLAGS)
8c0a80c0cSHeiko CarstensKBUILD_CFLAGS = $(subst $(CC_FLAGS_FTRACE),,$(ORIG_CFLAGS))
92464a609SIngo Molnarendif
102464a609SIngo Molnar
115c9a8750SDmitry Vyukov# These files are disabled because they produce lots of non-interesting and/or
125c9a8750SDmitry Vyukov# flaky coverage that is not a function of syscall inputs. For example,
135c9a8750SDmitry Vyukov# rbtree can be global and individual rotations don't correlate with inputs.
145c9a8750SDmitry VyukovKCOV_INSTRUMENT_string.o := n
155c9a8750SDmitry VyukovKCOV_INSTRUMENT_rbtree.o := n
165c9a8750SDmitry VyukovKCOV_INSTRUMENT_list_debug.o := n
175c9a8750SDmitry VyukovKCOV_INSTRUMENT_debugobjects.o := n
185c9a8750SDmitry VyukovKCOV_INSTRUMENT_dynamic_debug.o := n
195c9a8750SDmitry Vyukov
207a5c5d57SAlexey Dobriyanlib-y := ctype.o string.o vsprintf.o cmdline.o \
21e36df28fSDave Young	 rbtree.o radix-tree.o timerqueue.o\
22b4d3ba33SRandy Dunlap	 idr.o int_sqrt.o extable.o \
233c7eb3ccSJason A. Donenfeld	 sha1.o chacha20.o irq_regs.o argv_split.o \
24d18d12d0SRichard Cochran	 flex_proportions.o ratelimit.o show_mem.o \
2518dd0bf2SLinus Torvalds	 is_single_threaded.o plist.o decompress.o kobject_uevent.o \
262c956a60SJason A. Donenfeld	 earlycpio.o seq_buf.o siphash.o \
272c956a60SJason A. Donenfeld	 nmi_backtrace.o nodemask.o win_minmax.o
289a19fea4Smochel@digitalimplant.org
29e36df28fSDave Younglib-$(CONFIG_PRINTK) += dump_stack.o
3074588d8bSHaavard Skinnemoenlib-$(CONFIG_MMU) += ioremap.o
31ccb46000SAndrew Mortonlib-$(CONFIG_SMP) += cpumask.o
32002e6745SChristoph Hellwiglib-$(CONFIG_DMA_DIRECT_OPS) += dma-direct.o
33551199acSBart Van Asschelib-$(CONFIG_DMA_VIRT_OPS) += dma-virt.o
34ccb46000SAndrew Morton
354af679cdSPeter Zijlstralib-y	+= kobject.o klist.o
362f4f12e5SLinus Torvaldsobj-y	+= lockref.o
371da177e4SLinus Torvalds
381c83a9aaSJason A. Donenfeldobj-y += bcd.o div64.o sort.o parser.o debug_locks.o random32.o \
3964d1d77aSAndy Shevchenko	 bust_spinlocks.o kasprintf.o bitmap.o scatterlist.o \
40d879cb83SAl Viro	 gcd.o lcm.o list_sort.o uuid.o flex_array.o iov_iter.o clz_ctz.o \
41840620a1SYury Norov	 bsearch.o find_bit.o llist.o memweight.o kfifo.o \
4246234253SHannes Frederic Sowa	 percpu-refcount.o percpu_ida.o rhashtable.o reciprocal_div.o \
4392f36ccaSTom Herbert	 once.o refcount.o usercopy.o errseq.o bucket_locks.o
44d6b28e09SGeert Uytterhoevenobj-$(CONFIG_STRING_SELFTEST) += test_string.o
4516c7fa05SAndy Shevchenkoobj-y += string_helpers.o
4616c7fa05SAndy Shevchenkoobj-$(CONFIG_TEST_STRING_HELPERS) += test-string_helpers.o
4764d1d77aSAndy Shevchenkoobj-y += hexdump.o
4860b2e8f4SAndy Shevchenkoobj-$(CONFIG_TEST_HEXDUMP) += test_hexdump.o
4933ee3b2eSAlexey Dobriyanobj-y += kstrtox.o
50dceeb3e7SYury Norovobj-$(CONFIG_FIND_BIT_BENCHMARK) += find_bit_benchmark.o
5164a8946bSAlexei Starovoitovobj-$(CONFIG_TEST_BPF) += test_bpf.o
520a8adf58SKees Cookobj-$(CONFIG_TEST_FIRMWARE) += test_firmware.o
539308f2f9SLuis R. Rodriguezobj-$(CONFIG_TEST_SYSCTL) += test_sysctl.o
542c956a60SJason A. Donenfeldobj-$(CONFIG_TEST_HASH) += test_hash.o test_siphash.o
553f15801cSAndrey Ryabininobj-$(CONFIG_TEST_KASAN) += test_kasan.o
5669ca372cSAndrey KonovalovCFLAGS_test_kasan.o += -fno-builtin
57854686f4SJinbum Parkobj-$(CONFIG_TEST_UBSAN) += test_ubsan.o
58854686f4SJinbum ParkUBSAN_SANITIZE_test_ubsan.o := y
593f15801cSAndrey Ryabininobj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o
60e327fd7cSGeert Uytterhoevenobj-$(CONFIG_TEST_LIST_SORT) += test_list_sort.o
613f15801cSAndrey Ryabininobj-$(CONFIG_TEST_LKM) += test_module.o
62455a35a6SRasmus Villemoesobj-$(CONFIG_TEST_OVERFLOW) += test_overflow.o
639d6dbe1bSGeert Uytterhoevenobj-$(CONFIG_TEST_RHASHTABLE) += test_rhashtable.o
64c5adae95SKostenzer Felixobj-$(CONFIG_TEST_SORT) += test_sort.o
653f15801cSAndrey Ryabininobj-$(CONFIG_TEST_USER_COPY) += test_user_copy.o
662bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_keys.o
672bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_key_base.o
68707cc728SRasmus Villemoesobj-$(CONFIG_TEST_PRINTF) += test_printf.o
695fd003f5SDavid Decotignyobj-$(CONFIG_TEST_BITMAP) += test_bitmap.o
70cfaff0e5SAndy Shevchenkoobj-$(CONFIG_TEST_UUID) += test_uuid.o
7144091d29SJiri Pirkoobj-$(CONFIG_TEST_PARMAN) += test_parman.o
72d9c6a72dSLuis R. Rodriguezobj-$(CONFIG_TEST_KMOD) += test_kmod.o
73e4dace36SFlorian Fainelliobj-$(CONFIG_TEST_DEBUG_VIRTUAL) += test_debug_virtual.o
741da177e4SLinus Torvalds
751da177e4SLinus Torvaldsifeq ($(CONFIG_DEBUG_KOBJECT),y)
761da177e4SLinus TorvaldsCFLAGS_kobject.o += -DDEBUG
771da177e4SLinus TorvaldsCFLAGS_kobject_uevent.o += -DDEBUG
781da177e4SLinus Torvaldsendif
791da177e4SLinus Torvalds
8050ab9a69SRasmus Villemoesobj-$(CONFIG_DEBUG_INFO_REDUCED) += debug_info.o
8150ab9a69SRasmus VillemoesCFLAGS_debug_info.o += $(call cc-option, -femit-struct-debug-detailed=any)
8250ab9a69SRasmus Villemoes
835ea81769SAl Viroobj-$(CONFIG_GENERIC_IOMAP) += iomap.o
8466eab4dfSMichael S. Tsirkinobj-$(CONFIG_GENERIC_PCI_IOMAP) += pci_iomap.o
85928923c7SGeert Uytterhoevenobj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o
86928923c7SGeert Uytterhoevenobj-$(CONFIG_CHECK_SIGNATURE) += check_signature.o
87cae2ed9aSIngo Molnarobj-$(CONFIG_DEBUG_LOCKING_API_SELFTESTS) += locking-selftest.o
88d61931d8SBorislav Petkov
89031e3601SZhichang Yuanobj-y += logic_pio.o
90031e3601SZhichang Yuan
91702a28b1SRandy Dunlapobj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o
92d61931d8SBorislav Petkov
935db53f3eSJoern Engelobj-$(CONFIG_BTREE) += btree.o
94a88cc108SChris Wilsonobj-$(CONFIG_INTERVAL_TREE) += interval_tree.o
953cb98950SDavid Howellsobj-$(CONFIG_ASSOCIATIVE_ARRAY) += assoc_array.o
9639c715b7SIngo Molnarobj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o
97199a9afcSDave Jonesobj-$(CONFIG_DEBUG_LIST) += list_debug.o
983ac7fe5aSThomas Gleixnerobj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o
991da177e4SLinus Torvalds
1001da177e4SLinus Torvaldsifneq ($(CONFIG_HAVE_DEC_LOCK),y)
1011da177e4SLinus Torvalds  lib-y += dec_and_lock.o
1021da177e4SLinus Torvaldsendif
1031da177e4SLinus Torvalds
104a5cfc1ecSAkinobu Mitaobj-$(CONFIG_BITREVERSE) += bitrev.o
1058759ef32SOskar Schirmerobj-$(CONFIG_RATIONAL)	+= rational.o
1061da177e4SLinus Torvaldsobj-$(CONFIG_CRC_CCITT)	+= crc-ccitt.o
1077657ec1fSEvgeniy Polyakovobj-$(CONFIG_CRC16)	+= crc16.o
108f11f594eSMartin K. Petersenobj-$(CONFIG_CRC_T10DIF)+= crc-t10dif.o
1093e7cbae7SIvo van Doornobj-$(CONFIG_CRC_ITU_T)	+= crc-itu-t.o
1101da177e4SLinus Torvaldsobj-$(CONFIG_CRC32)	+= crc32.o
1115fb7f874SGeert Uytterhoevenobj-$(CONFIG_CRC32_SELFTEST)	+= crc32test.o
1120cbaa448SJeremy Kerrobj-$(CONFIG_CRC4)	+= crc4.o
113ad241528SJan Nikitenkoobj-$(CONFIG_CRC7)	+= crc7.o
1141da177e4SLinus Torvaldsobj-$(CONFIG_LIBCRC32C)	+= libcrc32c.o
1157150962dSArend van Sprielobj-$(CONFIG_CRC8)	+= crc8.o
1165d240522SNick Terrellobj-$(CONFIG_XXHASH)	+= xxhash.o
117f14f75b8SJes Sorensenobj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o
1181da177e4SLinus Torvalds
1192da572c9SDan Streetmanobj-$(CONFIG_842_COMPRESS) += 842/
1202da572c9SDan Streetmanobj-$(CONFIG_842_DECOMPRESS) += 842/
1211da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/
1221da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/
1231da177e4SLinus Torvaldsobj-$(CONFIG_REED_SOLOMON) += reed_solomon/
124437aa565SIvan Djelicobj-$(CONFIG_BCH) += bch.o
12564c70b1cSRichard Purdieobj-$(CONFIG_LZO_COMPRESS) += lzo/
12664c70b1cSRichard Purdieobj-$(CONFIG_LZO_DECOMPRESS) += lzo/
127c72ac7a1SChanho Minobj-$(CONFIG_LZ4_COMPRESS) += lz4/
128c72ac7a1SChanho Minobj-$(CONFIG_LZ4HC_COMPRESS) += lz4/
129e76e1fdfSKyungsik Leeobj-$(CONFIG_LZ4_DECOMPRESS) += lz4/
13073f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_COMPRESS) += zstd/
13173f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_DECOMPRESS) += zstd/
13224fa0402SLasse Collinobj-$(CONFIG_XZ_DEC) += xz/
133f5e70d0fSDavid Woodhouseobj-$(CONFIG_RAID6_PQ) += raid6/
1341da177e4SLinus Torvalds
135889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o
136889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o
137889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o
1383ebe1243SLasse Collinlib-$(CONFIG_DECOMPRESS_XZ) += decompress_unxz.o
139cacb246fSAlbin Tonnerrelib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o
140e76e1fdfSKyungsik Leelib-$(CONFIG_DECOMPRESS_LZ4) += decompress_unlz4.o
141c8531ab3SH. Peter Anvin
14265df877aSDavid S. Millerobj-$(CONFIG_TEXTSEARCH) += textsearch.o
143df3fb93aSThomas Grafobj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o
1448082e4edSPablo Neira Ayusoobj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o
1456408f79cSThomas Grafobj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o
1463cbc5640SRavikiran G Thirumalaiobj-$(CONFIG_SMP) += percpu_counter.o
147e65e1fc2SAl Viroobj-$(CONFIG_AUDIT_GENERIC) += audit.o
1484b588411SAKASHI Takahiroobj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o
1492de4ff7bSThomas Graf
1506c654b5fSJohn W. Linvilleobj-$(CONFIG_SWIOTLB) += swiotlb.o
15110b88a4bSSowmini Varadhanobj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o iommu-common.o
1526ff1cb35SAkinobu Mitaobj-$(CONFIG_FAULT_INJECTION) += fault-inject.o
1538d438288SAkinobu Mitaobj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o
154048b9c35SAkinobu Mitaobj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o
15502fff96aSNikolay Aleksandrovobj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o
1569579f5bdSAkinobu Mitaobj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o
157d526e85fSBenjamin Herrenschmidtobj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \
158d526e85fSBenjamin Herrenschmidt	of-reconfig-notifier-error-inject.o
159540adea3SMasami Hiramatsuobj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o
1606c654b5fSJohn W. Linville
1617664c5a1SJeremy Fitzhardingelib-$(CONFIG_GENERIC_BUG) += bug.o
1627664c5a1SJeremy Fitzhardinge
163bbc69863SRoland McGrathobj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o
164bbc69863SRoland McGrath
165e9d376f0SJason Baronobj-$(CONFIG_DYNAMIC_DEBUG) += dynamic_debug.o
166346e15beSJason Baron
167e9cc8bddSGeert Uytterhoevenobj-$(CONFIG_NLATTR) += nlattr.o
1681da177e4SLinus Torvalds
169b411b363SPhilipp Reisnerobj-$(CONFIG_LRU_CACHE) += lru_cache.o
170b411b363SPhilipp Reisner
171f2f45e5fSJoerg Roedelobj-$(CONFIG_DMA_API_DEBUG) += dma-debug.o
172f2f45e5fSJoerg Roedel
17326a28fa4SArnd Bergmannobj-$(CONFIG_GENERIC_CSUM) += checksum.o
17426a28fa4SArnd Bergmann
17509d4e0edSPaul Mackerrasobj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o
17609d4e0edSPaul Mackerras
17786a89380SLuca Barbieriobj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o
17886a89380SLuca Barbieri
179c39649c3SBen Hutchingsobj-$(CONFIG_CPU_RMAP) += cpu_rmap.o
180c39649c3SBen Hutchings
18110f8113eSArend van Sprielobj-$(CONFIG_CORDIC) += cordic.o
18210f8113eSArend van Spriel
18375957ba3STom Herbertobj-$(CONFIG_DQL) += dynamic_queue_limits.o
18475957ba3STom Herbert
185b0125085SGeorge Spelvinobj-$(CONFIG_GLOB) += glob.o
186ba95b045SGeert Uytterhoevenobj-$(CONFIG_GLOB_SELFTEST) += globtest.o
187b0125085SGeorge Spelvin
188d9c46b18SDmitry Kasatkinobj-$(CONFIG_MPILIB) += mpi/
1895e8898e9SDmitry Kasatkinobj-$(CONFIG_SIGNATURE) += digsig.o
190d9c46b18SDmitry Kasatkin
191f5948701SChris Metcalflib-$(CONFIG_CLZ_TAB) += clz_tab.o
192c6df4b17SDavid Miller
1939c1c21a0SAneesh Vobj-$(CONFIG_DDR) += jedec_ddr_data.o
1949c1c21a0SAneesh V
1952922585bSDavid S. Millerobj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o
196a08c5356SLinus Torvaldsobj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o
1972922585bSDavid S. Miller
1984cd5773aSAndy Shevchenkoobj-$(CONFIG_GENERIC_NET_UTILS) += net_utils.o
1994cd5773aSAndy Shevchenko
200f8bcbe62SRobert Jarzmikobj-$(CONFIG_SG_SPLIT) += sg_split.o
2019b1d6c89SMing Linobj-$(CONFIG_SG_POOL) += sg_pool.o
2024ccf4beaSWolfram Sangobj-$(CONFIG_STMP_DEVICE) += stmp_device.o
203511cbce2SChristoph Hellwigobj-$(CONFIG_IRQ_POLL) += irq_poll.o
2044ccf4beaSWolfram Sang
205cd11016eSAlexander Potapenkoobj-$(CONFIG_STACKDEPOT) += stackdepot.o
206cd11016eSAlexander PotapenkoKASAN_SANITIZE_stackdepot.o := n
20765deb8afSAlexander PotapenkoKCOV_INSTRUMENT_stackdepot.o := n
208cd11016eSAlexander Potapenko
209adaf5687SMark Salterlibfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o \
210adaf5687SMark Salter	       fdt_empty_tree.o
211ab253839SDavid Daney$(foreach file, $(libfdt_files), \
212ab253839SDavid Daney	$(eval CFLAGS_$(file) = -I$(src)/../scripts/dtc/libfdt))
213ab253839SDavid Daneylib-$(CONFIG_LIBFDT) += $(libfdt_files)
214ab253839SDavid Daney
215910a742dSMichel Lespinasseobj-$(CONFIG_RBTREE_TEST) += rbtree_test.o
216fff3fd8aSMichel Lespinasseobj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o
217fff3fd8aSMichel Lespinasse
218623fd807SGreg Thelenobj-$(CONFIG_PERCPU_TEST) += percpu_test.o
219623fd807SGreg Thelen
22042d5ec27SDavid Howellsobj-$(CONFIG_ASN1) += asn1_decoder.o
22142d5ec27SDavid Howells
222ee89bd6bSGeert Uytterhoevenobj-$(CONFIG_FONT_SUPPORT) += fonts/
223ee89bd6bSGeert Uytterhoeven
224cf4a7207SChris Wilsonobj-$(CONFIG_PRIME_NUMBERS) += prime_numbers.o
225cf4a7207SChris Wilson
2261da177e4SLinus Torvaldshostprogs-y	:= gen_crc32table
2271da177e4SLinus Torvaldsclean-files	:= crc32table.h
2281da177e4SLinus Torvalds
2291da177e4SLinus Torvalds$(obj)/crc32.o: $(obj)/crc32table.h
2301da177e4SLinus Torvalds
2311da177e4SLinus Torvaldsquiet_cmd_crc32 = GEN     $@
2321da177e4SLinus Torvalds      cmd_crc32 = $< > $@
2331da177e4SLinus Torvalds
2341da177e4SLinus Torvalds$(obj)/crc32table.h: $(obj)/gen_crc32table
2351da177e4SLinus Torvalds	$(call cmd,crc32)
236a77ad6eaSDavid Howells
237a77ad6eaSDavid Howells#
238a77ad6eaSDavid Howells# Build a fast OID lookip registry from include/linux/oid_registry.h
239a77ad6eaSDavid Howells#
240a77ad6eaSDavid Howellsobj-$(CONFIG_OID_REGISTRY) += oid_registry.o
241a77ad6eaSDavid Howells
242527897ccSTim Gardner$(obj)/oid_registry.o: $(obj)/oid_registry_data.c
243a77ad6eaSDavid Howells
244a77ad6eaSDavid Howells$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \
245a77ad6eaSDavid Howells			    $(src)/build_OID_registry
246a77ad6eaSDavid Howells	$(call cmd,build_OID_registry)
247a77ad6eaSDavid Howells
248a77ad6eaSDavid Howellsquiet_cmd_build_OID_registry = GEN     $@
249a77ad6eaSDavid Howells      cmd_build_OID_registry = perl $(srctree)/$(src)/build_OID_registry $< $@
250a77ad6eaSDavid Howells
251a77ad6eaSDavid Howellsclean-files	+= oid_registry_data.c
2520635eb8aSMatthew Garrett
2530635eb8aSMatthew Garrettobj-$(CONFIG_UCS2_STRING) += ucs2_string.o
254c6d30853SAndrey Ryabininobj-$(CONFIG_UBSAN) += ubsan.o
255c6d30853SAndrey Ryabinin
256c6d30853SAndrey RyabininUBSAN_SANITIZE_ubsan.o := n
25788459642SOmar Sandoval
25888459642SOmar Sandovalobj-$(CONFIG_SBITMAP) += sbitmap.o
25944091d29SJiri Pirko
26044091d29SJiri Pirkoobj-$(CONFIG_PARMAN) += parman.o
261b35cd988SPalmer Dabbelt
262b35cd988SPalmer Dabbelt# GCC library routines
263b35cd988SPalmer Dabbeltobj-$(CONFIG_GENERIC_ASHLDI3) += ashldi3.o
264b35cd988SPalmer Dabbeltobj-$(CONFIG_GENERIC_ASHRDI3) += ashrdi3.o
265b35cd988SPalmer Dabbeltobj-$(CONFIG_GENERIC_LSHRDI3) += lshrdi3.o
266b35cd988SPalmer Dabbeltobj-$(CONFIG_GENERIC_MULDI3) += muldi3.o
267b35cd988SPalmer Dabbeltobj-$(CONFIG_GENERIC_CMPDI2) += cmpdi2.o
268b35cd988SPalmer Dabbeltobj-$(CONFIG_GENERIC_UCMPDI2) += ucmpdi2.o
269