1 # SPDX-License-Identifier: GPL-2.0-only
3 # Library configuration
9 menu "Library routines"
14 config RAID6_PQ_BENCHMARK
15 bool "Automatically choose fastest RAID6 PQ functions"
19 Benchmark all available RAID6 PQ functions on init and choose the
26 bool "Generic bitfield packing and unpacking"
29 This option provides the packing() helper function, which permits
30 converting bitfields between a CPU-usable representation and a
31 memory representation that can have any combination of these quirks:
32 - Is little endian (bytes are reversed within a 32-bit group)
33 - The least-significant 32-bit word comes first (within a 64-bit
35 - The most significant bit of a byte is at its right (bit 0 of a
36 register description is numerically 2^7).
37 Drivers may use these helpers to match the bit indices as described
38 in the data sheets of the peripherals they are in control of.
45 config HAVE_ARCH_BITREVERSE
50 This option enables the use of hardware bit-reversal instructions on
51 architectures which support such operations.
53 config ARCH_HAS_STRNCPY_FROM_USER
56 config ARCH_HAS_STRNLEN_USER
59 config GENERIC_STRNCPY_FROM_USER
60 def_bool !ARCH_HAS_STRNCPY_FROM_USER
62 config GENERIC_STRNLEN_USER
63 def_bool !ARCH_HAS_STRNLEN_USER
65 config GENERIC_NET_UTILS
68 source "lib/math/Kconfig"
70 config NO_GENERIC_PCI_IOPORT_MAP
73 config GENERIC_PCI_IOMAP
78 select GENERIC_PCI_IOMAP
83 config ARCH_USE_CMPXCHG_LOCKREF
86 config ARCH_HAS_FAST_MULTIPLIER
89 config ARCH_USE_SYM_ANNOTATIONS
93 bool "Access I/O in non-MMIO mode"
96 On some platforms where no separate I/O space exists, there are I/O
97 hosts which can not be accessed in MMIO mode. Using the logical PIO
98 mechanism, the host-local I/O resource can be mapped into system
99 logic PIO space shared with MMIO hosts, such as PCI/PCIe, then the
100 system can access the I/O devices with the mapped-logic PIO through
103 This way has relatively little I/O performance cost. Please make
104 sure your devices really need this configure item enabled.
106 When in doubt, say N.
108 config INDIRECT_IOMEM
111 This is selected by other options/architectures to provide the
112 emulated iomem accessors.
114 config INDIRECT_IOMEM_FALLBACK
116 depends on INDIRECT_IOMEM
118 If INDIRECT_IOMEM is selected, this enables falling back to plain
119 mmio accesses when the IO memory address is not a registered
123 tristate "CRC-CCITT functions"
125 This option is provided for the case where no in-kernel-tree
126 modules require CRC-CCITT functions, but a module built outside
127 the kernel tree does. Such modules that use library CRC-CCITT
128 functions require M here.
131 tristate "CRC16 functions"
133 This option is provided for the case where no in-kernel-tree
134 modules require CRC16 functions, but a module built outside
135 the kernel tree does. Such modules that use library CRC16
136 functions require M here.
139 tristate "CRC calculation for the T10 Data Integrity Field"
141 select CRYPTO_CRCT10DIF
143 This option is only needed if a module that's not in the
144 kernel tree needs to calculate CRC checks for use with the
145 SCSI data integrity subsystem.
148 tristate "CRC ITU-T V.41 functions"
150 This option is provided for the case where no in-kernel-tree
151 modules require CRC ITU-T V.41 functions, but a module built outside
152 the kernel tree does. Such modules that use library CRC ITU-T V.41
153 functions require M here.
156 tristate "CRC32/CRC32c functions"
160 This option is provided for the case where no in-kernel-tree
161 modules require CRC32/CRC32c functions, but a module built outside
162 the kernel tree does. Such modules that use library CRC32/CRC32c
163 functions require M here.
165 config CRC32_SELFTEST
166 tristate "CRC32 perform self test on init"
169 This option enables the CRC32 library functions to perform a
170 self test on initialization. The self test computes crc32_le
171 and crc32_be over byte strings with random alignment and length
172 and computes the total elapsed time and number of bytes processed.
175 prompt "CRC32 implementation"
177 default CRC32_SLICEBY8
179 This option allows a kernel builder to override the default choice
180 of CRC32 algorithm. Choose the default ("slice by 8") unless you
181 know that you need one of the others.
183 config CRC32_SLICEBY8
184 bool "Slice by 8 bytes"
186 Calculate checksum 8 bytes at a time with a clever slicing algorithm.
187 This is the fastest algorithm, but comes with a 8KiB lookup table.
188 Most modern processors have enough cache to hold this table without
191 This is the default implementation choice. Choose this one unless
192 you have a good reason not to.
194 config CRC32_SLICEBY4
195 bool "Slice by 4 bytes"
197 Calculate checksum 4 bytes at a time with a clever slicing algorithm.
198 This is a bit slower than slice by 8, but has a smaller 4KiB lookup
201 Only choose this option if you know what you are doing.
204 bool "Sarwate's Algorithm (one byte at a time)"
206 Calculate checksum a byte at a time using Sarwate's algorithm. This
207 is not particularly fast, but has a small 256 byte lookup table.
209 Only choose this option if you know what you are doing.
212 bool "Classic Algorithm (one bit at a time)"
214 Calculate checksum one bit at a time. This is VERY slow, but has
215 no lookup table. This is provided as a debugging option.
217 Only choose this option if you are debugging crc32.
222 tristate "CRC64 functions"
224 This option is provided for the case where no in-kernel-tree
225 modules require CRC64 functions, but a module built outside
226 the kernel tree does. Such modules that use library CRC64
227 functions require M here.
230 tristate "CRC4 functions"
232 This option is provided for the case where no in-kernel-tree
233 modules require CRC4 functions, but a module built outside
234 the kernel tree does. Such modules that use library CRC4
235 functions require M here.
238 tristate "CRC7 functions"
240 This option is provided for the case where no in-kernel-tree
241 modules require CRC7 functions, but a module built outside
242 the kernel tree does. Such modules that use library CRC7
243 functions require M here.
246 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
250 This option is provided for the case where no in-kernel-tree
251 modules require CRC32c functions, but a module built outside the
252 kernel tree does. Such modules that use library CRC32c functions
253 require M here. See Castagnoli93.
254 Module will be libcrc32c.
257 tristate "CRC8 function"
259 This option provides CRC8 function. Drivers may select this
260 when they need to do cyclic redundancy check according CRC8
261 algorithm. Module will be called crc8.
268 depends on AUDIT && !AUDIT_ARCH
271 config AUDIT_ARCH_COMPAT_GENERIC
275 config AUDIT_COMPAT_GENERIC
277 depends on AUDIT_GENERIC && AUDIT_ARCH_COMPAT_GENERIC && COMPAT
280 config RANDOM32_SELFTEST
281 bool "PRNG perform self test on init"
283 This option enables the 32 bit PRNG library functions to perform a
284 self test on initialization.
287 # compression support is select'ed if needed
293 config 842_DECOMPRESS
307 prompt "Enable s390x DEFLATE CONVERSION CALL support for kernel zlib"
309 Enable s390x hardware support for zlib in the kernel.
314 config LZO_DECOMPRESS
320 config LZ4HC_COMPRESS
323 config LZ4_DECOMPRESS
330 config ZSTD_DECOMPRESS
334 source "lib/xz/Kconfig"
337 # These all provide a common interface (hence the apparent duplication with
338 # ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.)
340 config DECOMPRESS_GZIP
344 config DECOMPRESS_BZIP2
347 config DECOMPRESS_LZMA
354 config DECOMPRESS_LZO
355 select LZO_DECOMPRESS
358 config DECOMPRESS_LZ4
359 select LZ4_DECOMPRESS
362 config DECOMPRESS_ZSTD
363 select ZSTD_DECOMPRESS
367 # Generic allocator support is selected if needed
369 config GENERIC_ALLOCATOR
373 # reed solomon support is select'ed if needed
378 config REED_SOLOMON_ENC8
381 config REED_SOLOMON_DEC8
384 config REED_SOLOMON_ENC16
387 config REED_SOLOMON_DEC16
391 # BCH support is selected if needed
396 config BCH_CONST_PARAMS
399 Drivers may select this option to force specific constant
400 values for parameters 'm' (Galois field order) and 't'
401 (error correction capability). Those specific values must
402 be set by declaring default values for symbols BCH_CONST_M
404 Doing so will enable extra compiler optimizations,
405 improving encoding and decoding performance up to 2x for
406 usual (m,t) values (typically such that m*t < 200).
407 When this option is selected, the BCH library supports
408 only a single (m,t) configuration. This is mainly useful
409 for NAND flash board drivers requiring known, fixed BCH
416 Constant value for Galois field order 'm'. If 'k' is the
417 number of data bits to protect, 'm' should be chosen such
418 that (k + m*t) <= 2**m - 1.
419 Drivers should declare a default value for this symbol if
420 they select option BCH_CONST_PARAMS.
425 Constant value for error correction capability in bits 't'.
426 Drivers should declare a default value for this symbol if
427 they select option BCH_CONST_PARAMS.
430 # Textsearch support is select'ed if needed
435 config TEXTSEARCH_KMP
441 config TEXTSEARCH_FSM
450 Simple, embeddable, interval-tree. Can find the start of an
451 overlapping range in log(n) time and then iterate over all
452 overlapping nodes. The algorithm is implemented as an
457 Documentation/core-api/rbtree.rst
459 for more information.
464 Support entries which occupy multiple consecutive indices in the
467 config ASSOCIATIVE_ARRAY
470 Generic associative array. Can be searched and iterated over whilst
471 it is being modified. It is also reasonably quick to search and
472 modify. The algorithms are non-recursive, and the trees are highly
477 Documentation/core-api/assoc_array.rst
479 for more information.
486 config HAS_IOPORT_MAP
488 depends on HAS_IOMEM && !NO_IOPORT_MAP
491 source "kernel/dma/Kconfig"
500 config CHECK_SIGNATURE
503 config CPUMASK_OFFSTACK
504 bool "Force CPU masks off stack" if DEBUG_PER_CPU_MAPS
506 Use dynamic allocation for cpumask_var_t, instead of putting
507 them on the stack. This is a bit more expensive, but avoids
519 # This actually supports modular compilation, but the module overhead
520 # is ridiculous for the amount of code involved. Until an out-of-tree
521 # driver asks for it, we'll just link it directly it into the kernel
522 # when required. Since we're ignoring out-of-tree users, there's also
523 # no need bother prompting for a manual decision:
524 # prompt "glob_match() function"
526 This option provides a glob_match function for performing
527 simple text pattern matching. It originated in the ATA code
528 to blacklist particular drive models, but other device drivers
529 may need similar functionality.
531 All drivers in the Linux kernel tree that require this function
532 should automatically select this option. Say N unless you
533 are compiling an out-of tree driver which tells you that it
537 tristate "glob self-test on init"
540 This option enables a simple self-test of the glob_match
541 function on startup. It is primarily useful for people
542 working on the code to ensure they haven't introduced any
545 It only adds a little bit of code and slows kernel boot (or
546 module load) by a small amount, so you're welcome to play with
547 it, but you probably don't need it.
550 # Netlink attribute parsing support is select'ed if needed
556 # Generic 64-bit atomic support is selected if needed
558 config GENERIC_ATOMIC64
568 bool "IRQ polling library"
570 Helper library to poll interrupt mitigation using polling.
576 Multiprecision maths library from GnuPG.
577 It is used to implement RSA digital signature verification,
578 which is used by IMA/EVM digital signature extension.
587 Digital signature verification. Currently only RSA is supported.
588 Implementation is done using GnuPG MPI library
593 Dynamic Interrupt Moderation library.
594 Implements an algorithm for dynamically changing CQ moderation values
595 according to run time performance.
598 # libfdt files, only selected if needed.
606 Enable fast lookup object identifier registry.
614 source "lib/vdso/Kconfig"
616 source "lib/fonts/Kconfig"
621 Provides a helper to split scatterlists into chunks, each chunk being
622 a scatterlist. This should be selected by a driver or an API which
623 whishes to split a scatterlist amongst multiple DMA channels.
628 Provides a helper to allocate chained scatterlists. This should be
629 selected by a driver or an API which whishes to allocate chained
636 config ARCH_NO_SG_CHAIN
639 config ARCH_HAS_PMEM_API
645 config ARCH_HAS_MEMREMAP_COMPAT_ALIGN
648 # use memcpy to implement user copies for nommu architectures
649 config UACCESS_MEMCPY
652 config ARCH_HAS_UACCESS_FLUSHCACHE
655 # arch has a concept of a recoverable synchronous exception due to a
656 # memory-read error like x86 machine-check or ARM data-abort, and
657 # implements copy_mc_to_{user,kernel} to abort and report
658 # 'bytes-transferred' if that exception fires when accessing the source
660 config ARCH_HAS_COPY_MC
663 # Temporary. Goes away when all archs are cleaned up
664 config ARCH_STACKWALK
671 config STACK_HASH_ORDER
672 int "stack depot hash size (12 => 4KB, 20 => 1024KB)"
675 depends on STACKDEPOT
677 Select the hash size as a power of 2 for the stackdepot hash table.
678 Choose a lower value to reduce the memory impact.
684 tristate "parman" if COMPILE_TEST
687 tristate "objagg" if COMPILE_TEST
691 config GENERIC_IOREMAP
694 config GENERIC_LIB_ASHLDI3
697 config GENERIC_LIB_ASHRDI3
700 config GENERIC_LIB_LSHRDI3
703 config GENERIC_LIB_MULDI3
706 config GENERIC_LIB_CMPDI2
709 config GENERIC_LIB_UCMPDI2
712 config GENERIC_LIB_DEVMEM_IS_ALLOWED