1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only 21da177e4SLinus Torvalds# 31da177e4SLinus Torvalds# Library configuration 41da177e4SLinus Torvalds# 51da177e4SLinus Torvalds 64370aa4aSLai Jiangshanconfig BINARY_PRINTF 74370aa4aSLai Jiangshan def_bool n 84370aa4aSLai Jiangshan 91da177e4SLinus Torvaldsmenu "Library routines" 101da177e4SLinus Torvalds 11f5e70d0fSDavid Woodhouseconfig RAID6_PQ 12f5e70d0fSDavid Woodhouse tristate 13f5e70d0fSDavid Woodhouse 14be85f93aSDaniel Verkampconfig RAID6_PQ_BENCHMARK 15be85f93aSDaniel Verkamp bool "Automatically choose fastest RAID6 PQ functions" 16be85f93aSDaniel Verkamp depends on RAID6_PQ 17be85f93aSDaniel Verkamp default y 18be85f93aSDaniel Verkamp help 19be85f93aSDaniel Verkamp Benchmark all available RAID6 PQ functions on init and choose the 20be85f93aSDaniel Verkamp fastest one. 21be85f93aSDaniel Verkamp 22d2218d4eSMatti Vaittinenconfig LINEAR_RANGES 23d2218d4eSMatti Vaittinen tristate 24d2218d4eSMatti Vaittinen 25554aae35SVladimir Olteanconfig PACKING 26554aae35SVladimir Oltean bool "Generic bitfield packing and unpacking" 27554aae35SVladimir Oltean default n 28554aae35SVladimir Oltean help 29554aae35SVladimir Oltean This option provides the packing() helper function, which permits 30554aae35SVladimir Oltean converting bitfields between a CPU-usable representation and a 31554aae35SVladimir Oltean memory representation that can have any combination of these quirks: 32554aae35SVladimir Oltean - Is little endian (bytes are reversed within a 32-bit group) 33554aae35SVladimir Oltean - The least-significant 32-bit word comes first (within a 64-bit 34554aae35SVladimir Oltean group) 35554aae35SVladimir Oltean - The most significant bit of a byte is at its right (bit 0 of a 36554aae35SVladimir Oltean register description is numerically 2^7). 37554aae35SVladimir Oltean Drivers may use these helpers to match the bit indices as described 38554aae35SVladimir Oltean in the data sheets of the peripherals they are in control of. 39554aae35SVladimir Oltean 40554aae35SVladimir Oltean When in doubt, say N. 41554aae35SVladimir Oltean 42a5cfc1ecSAkinobu Mitaconfig BITREVERSE 43a5cfc1ecSAkinobu Mita tristate 44a5cfc1ecSAkinobu Mita 45556d2f05SYalin Wangconfig HAVE_ARCH_BITREVERSE 46841c0090SChristoph Jaeger bool 47556d2f05SYalin Wang default n 48556d2f05SYalin Wang help 499e522c0dSAndrew Morton This option enables the use of hardware bit-reversal instructions on 509e522c0dSAndrew Morton architectures which support such operations. 51556d2f05SYalin Wang 52e6226997SArnd Bergmannconfig ARCH_HAS_STRNCPY_FROM_USER 532922585bSDavid S. Miller bool 542922585bSDavid S. Miller 55e6226997SArnd Bergmannconfig ARCH_HAS_STRNLEN_USER 56a08c5356SLinus Torvalds bool 57a08c5356SLinus Torvalds 58e6226997SArnd Bergmannconfig GENERIC_STRNCPY_FROM_USER 59e6226997SArnd Bergmann def_bool !ARCH_HAS_STRNCPY_FROM_USER 60e6226997SArnd Bergmann 61e6226997SArnd Bergmannconfig GENERIC_STRNLEN_USER 62e6226997SArnd Bergmann def_bool !ARCH_HAS_STRNLEN_USER 63e6226997SArnd Bergmann 644cd5773aSAndy Shevchenkoconfig GENERIC_NET_UTILS 654cd5773aSAndy Shevchenko bool 664cd5773aSAndy Shevchenko 672c64e9cbSAndy Shevchenkosource "lib/math/Kconfig" 682c64e9cbSAndy Shevchenko 69b923650bSMichael S. Tsirkinconfig NO_GENERIC_PCI_IOPORT_MAP 70b923650bSMichael S. Tsirkin bool 71b923650bSMichael S. Tsirkin 7266eab4dfSMichael S. Tsirkinconfig GENERIC_PCI_IOMAP 7366eab4dfSMichael S. Tsirkin bool 7466eab4dfSMichael S. Tsirkin 754673ca8eSMichael S. Tsirkinconfig GENERIC_IOMAP 764673ca8eSMichael S. Tsirkin bool 7766eab4dfSMichael S. Tsirkin select GENERIC_PCI_IOMAP 784673ca8eSMichael S. Tsirkin 794ccf4beaSWolfram Sangconfig STMP_DEVICE 804ccf4beaSWolfram Sang bool 814ccf4beaSWolfram Sang 82bc08b449SLinus Torvaldsconfig ARCH_USE_CMPXCHG_LOCKREF 83bc08b449SLinus Torvalds bool 84bc08b449SLinus Torvalds 8572d93104SLinus Torvaldsconfig ARCH_HAS_FAST_MULTIPLIER 8672d93104SLinus Torvalds bool 8772d93104SLinus Torvalds 882ce0d7f9SMark Brownconfig ARCH_USE_SYM_ANNOTATIONS 892ce0d7f9SMark Brown bool 902ce0d7f9SMark Brown 91031e3601SZhichang Yuanconfig INDIRECT_PIO 92031e3601SZhichang Yuan bool "Access I/O in non-MMIO mode" 93031e3601SZhichang Yuan depends on ARM64 94031e3601SZhichang Yuan help 95031e3601SZhichang Yuan On some platforms where no separate I/O space exists, there are I/O 96031e3601SZhichang Yuan hosts which can not be accessed in MMIO mode. Using the logical PIO 97031e3601SZhichang Yuan mechanism, the host-local I/O resource can be mapped into system 98031e3601SZhichang Yuan logic PIO space shared with MMIO hosts, such as PCI/PCIe, then the 99031e3601SZhichang Yuan system can access the I/O devices with the mapped-logic PIO through 100031e3601SZhichang Yuan I/O accessors. 101031e3601SZhichang Yuan 102031e3601SZhichang Yuan This way has relatively little I/O performance cost. Please make 103031e3601SZhichang Yuan sure your devices really need this configure item enabled. 104031e3601SZhichang Yuan 105031e3601SZhichang Yuan When in doubt, say N. 106031e3601SZhichang Yuan 107ca2e3342SJohannes Bergconfig INDIRECT_IOMEM 108ca2e3342SJohannes Berg bool 109ca2e3342SJohannes Berg help 110ca2e3342SJohannes Berg This is selected by other options/architectures to provide the 111ca2e3342SJohannes Berg emulated iomem accessors. 112ca2e3342SJohannes Berg 113ca2e3342SJohannes Bergconfig INDIRECT_IOMEM_FALLBACK 114ca2e3342SJohannes Berg bool 115ca2e3342SJohannes Berg depends on INDIRECT_IOMEM 116ca2e3342SJohannes Berg help 117ca2e3342SJohannes Berg If INDIRECT_IOMEM is selected, this enables falling back to plain 118ca2e3342SJohannes Berg mmio accesses when the IO memory address is not a registered 119ca2e3342SJohannes Berg emulated region. 120ca2e3342SJohannes Berg 121e56e1898SJustin M. Forbessource "lib/crypto/Kconfig" 122e56e1898SJustin M. Forbes 123*abfed87eSJason A. Donenfeldconfig LIB_MEMNEQ 124*abfed87eSJason A. Donenfeld bool 125*abfed87eSJason A. Donenfeld 1261da177e4SLinus Torvaldsconfig CRC_CCITT 1271da177e4SLinus Torvalds tristate "CRC-CCITT functions" 1281da177e4SLinus Torvalds help 1291da177e4SLinus Torvalds This option is provided for the case where no in-kernel-tree 1301da177e4SLinus Torvalds modules require CRC-CCITT functions, but a module built outside 1311da177e4SLinus Torvalds the kernel tree does. Such modules that use library CRC-CCITT 1321da177e4SLinus Torvalds functions require M here. 1331da177e4SLinus Torvalds 1347657ec1fSEvgeniy Polyakovconfig CRC16 1357657ec1fSEvgeniy Polyakov tristate "CRC16 functions" 1367657ec1fSEvgeniy Polyakov help 1377657ec1fSEvgeniy Polyakov This option is provided for the case where no in-kernel-tree 1387657ec1fSEvgeniy Polyakov modules require CRC16 functions, but a module built outside 1397657ec1fSEvgeniy Polyakov the kernel tree does. Such modules that use library CRC16 1407657ec1fSEvgeniy Polyakov functions require M here. 1417657ec1fSEvgeniy Polyakov 142f11f594eSMartin K. Petersenconfig CRC_T10DIF 143f11f594eSMartin K. Petersen tristate "CRC calculation for the T10 Data Integrity Field" 14468411521SHerbert Xu select CRYPTO 14568411521SHerbert Xu select CRYPTO_CRCT10DIF 146f11f594eSMartin K. Petersen help 147f11f594eSMartin K. Petersen This option is only needed if a module that's not in the 148f11f594eSMartin K. Petersen kernel tree needs to calculate CRC checks for use with the 149f11f594eSMartin K. Petersen SCSI data integrity subsystem. 150f11f594eSMartin K. Petersen 151f3813f4bSKeith Buschconfig CRC64_ROCKSOFT 152f3813f4bSKeith Busch tristate "CRC calculation for the Rocksoft model CRC64" 153f3813f4bSKeith Busch select CRC64 154f3813f4bSKeith Busch select CRYPTO 155f3813f4bSKeith Busch select CRYPTO_CRC64_ROCKSOFT 156f3813f4bSKeith Busch help 157f3813f4bSKeith Busch This option provides a CRC64 API to a registered crypto driver. 158f3813f4bSKeith Busch This is used with the block layer's data integrity subsystem. 159f3813f4bSKeith Busch 1603e7cbae7SIvo van Doornconfig CRC_ITU_T 1613e7cbae7SIvo van Doorn tristate "CRC ITU-T V.41 functions" 1623e7cbae7SIvo van Doorn help 1633e7cbae7SIvo van Doorn This option is provided for the case where no in-kernel-tree 1643e7cbae7SIvo van Doorn modules require CRC ITU-T V.41 functions, but a module built outside 1653e7cbae7SIvo van Doorn the kernel tree does. Such modules that use library CRC ITU-T V.41 1663e7cbae7SIvo van Doorn functions require M here. 1673e7cbae7SIvo van Doorn 1681da177e4SLinus Torvaldsconfig CRC32 16946c5801eSDarrick J. Wong tristate "CRC32/CRC32c functions" 1701da177e4SLinus Torvalds default y 171906d66dfSAkinobu Mita select BITREVERSE 1721da177e4SLinus Torvalds help 1731da177e4SLinus Torvalds This option is provided for the case where no in-kernel-tree 17446c5801eSDarrick J. Wong modules require CRC32/CRC32c functions, but a module built outside 17546c5801eSDarrick J. Wong the kernel tree does. Such modules that use library CRC32/CRC32c 17646c5801eSDarrick J. Wong functions require M here. 1771da177e4SLinus Torvalds 1783863ef31SBob Pearsonconfig CRC32_SELFTEST 1795fb7f874SGeert Uytterhoeven tristate "CRC32 perform self test on init" 1803863ef31SBob Pearson depends on CRC32 1813863ef31SBob Pearson help 1823863ef31SBob Pearson This option enables the CRC32 library functions to perform a 1833863ef31SBob Pearson self test on initialization. The self test computes crc32_le 1843863ef31SBob Pearson and crc32_be over byte strings with random alignment and length 1853863ef31SBob Pearson and computes the total elapsed time and number of bytes processed. 1863863ef31SBob Pearson 1875cde7656SDarrick J. Wongchoice 1885cde7656SDarrick J. Wong prompt "CRC32 implementation" 1895cde7656SDarrick J. Wong depends on CRC32 1905cde7656SDarrick J. Wong default CRC32_SLICEBY8 19182edb4baSDarrick J. Wong help 19282edb4baSDarrick J. Wong This option allows a kernel builder to override the default choice 19382edb4baSDarrick J. Wong of CRC32 algorithm. Choose the default ("slice by 8") unless you 19482edb4baSDarrick J. Wong know that you need one of the others. 1955cde7656SDarrick J. Wong 1965cde7656SDarrick J. Wongconfig CRC32_SLICEBY8 1975cde7656SDarrick J. Wong bool "Slice by 8 bytes" 1985cde7656SDarrick J. Wong help 1995cde7656SDarrick J. Wong Calculate checksum 8 bytes at a time with a clever slicing algorithm. 2005cde7656SDarrick J. Wong This is the fastest algorithm, but comes with a 8KiB lookup table. 2015cde7656SDarrick J. Wong Most modern processors have enough cache to hold this table without 2025cde7656SDarrick J. Wong thrashing the cache. 2035cde7656SDarrick J. Wong 2045cde7656SDarrick J. Wong This is the default implementation choice. Choose this one unless 2055cde7656SDarrick J. Wong you have a good reason not to. 2065cde7656SDarrick J. Wong 2075cde7656SDarrick J. Wongconfig CRC32_SLICEBY4 2085cde7656SDarrick J. Wong bool "Slice by 4 bytes" 2095cde7656SDarrick J. Wong help 2105cde7656SDarrick J. Wong Calculate checksum 4 bytes at a time with a clever slicing algorithm. 2115cde7656SDarrick J. Wong This is a bit slower than slice by 8, but has a smaller 4KiB lookup 2125cde7656SDarrick J. Wong table. 2135cde7656SDarrick J. Wong 2145cde7656SDarrick J. Wong Only choose this option if you know what you are doing. 2155cde7656SDarrick J. Wong 2165cde7656SDarrick J. Wongconfig CRC32_SARWATE 2175cde7656SDarrick J. Wong bool "Sarwate's Algorithm (one byte at a time)" 2185cde7656SDarrick J. Wong help 2195cde7656SDarrick J. Wong Calculate checksum a byte at a time using Sarwate's algorithm. This 2205cde7656SDarrick J. Wong is not particularly fast, but has a small 256 byte lookup table. 2215cde7656SDarrick J. Wong 2225cde7656SDarrick J. Wong Only choose this option if you know what you are doing. 2235cde7656SDarrick J. Wong 2245cde7656SDarrick J. Wongconfig CRC32_BIT 2255cde7656SDarrick J. Wong bool "Classic Algorithm (one bit at a time)" 2265cde7656SDarrick J. Wong help 2275cde7656SDarrick J. Wong Calculate checksum one bit at a time. This is VERY slow, but has 2285cde7656SDarrick J. Wong no lookup table. This is provided as a debugging option. 2295cde7656SDarrick J. Wong 2305cde7656SDarrick J. Wong Only choose this option if you are debugging crc32. 2315cde7656SDarrick J. Wong 2325cde7656SDarrick J. Wongendchoice 2335cde7656SDarrick J. Wong 234feba04fdSColy Liconfig CRC64 235feba04fdSColy Li tristate "CRC64 functions" 236feba04fdSColy Li help 237feba04fdSColy Li This option is provided for the case where no in-kernel-tree 238feba04fdSColy Li modules require CRC64 functions, but a module built outside 239feba04fdSColy Li the kernel tree does. Such modules that use library CRC64 240feba04fdSColy Li functions require M here. 241feba04fdSColy Li 2420cbaa448SJeremy Kerrconfig CRC4 2430cbaa448SJeremy Kerr tristate "CRC4 functions" 2440cbaa448SJeremy Kerr help 2450cbaa448SJeremy Kerr This option is provided for the case where no in-kernel-tree 2460cbaa448SJeremy Kerr modules require CRC4 functions, but a module built outside 2470cbaa448SJeremy Kerr the kernel tree does. Such modules that use library CRC4 2480cbaa448SJeremy Kerr functions require M here. 2490cbaa448SJeremy Kerr 250ad241528SJan Nikitenkoconfig CRC7 251ad241528SJan Nikitenko tristate "CRC7 functions" 252ad241528SJan Nikitenko help 253ad241528SJan Nikitenko This option is provided for the case where no in-kernel-tree 254ad241528SJan Nikitenko modules require CRC7 functions, but a module built outside 255ad241528SJan Nikitenko the kernel tree does. Such modules that use library CRC7 256ad241528SJan Nikitenko functions require M here. 257ad241528SJan Nikitenko 2581da177e4SLinus Torvaldsconfig LIBCRC32C 2591da177e4SLinus Torvalds tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check" 26093027354SHerbert Xu select CRYPTO 26169c35efcSHerbert Xu select CRYPTO_CRC32C 2621da177e4SLinus Torvalds help 2631da177e4SLinus Torvalds This option is provided for the case where no in-kernel-tree 2641da177e4SLinus Torvalds modules require CRC32c functions, but a module built outside the 2651da177e4SLinus Torvalds kernel tree does. Such modules that use library CRC32c functions 2661da177e4SLinus Torvalds require M here. See Castagnoli93. 2671da177e4SLinus Torvalds Module will be libcrc32c. 2681da177e4SLinus Torvalds 2697150962dSArend van Sprielconfig CRC8 2707150962dSArend van Spriel tristate "CRC8 function" 2717150962dSArend van Spriel help 2727150962dSArend van Spriel This option provides CRC8 function. Drivers may select this 2737150962dSArend van Spriel when they need to do cyclic redundancy check according CRC8 2747150962dSArend van Spriel algorithm. Module will be called crc8. 2757150962dSArend van Spriel 2765d240522SNick Terrellconfig XXHASH 2775d240522SNick Terrell tristate 2785d240522SNick Terrell 279e65e1fc2SAl Viroconfig AUDIT_GENERIC 280e65e1fc2SAl Viro bool 281e65e1fc2SAl Viro depends on AUDIT && !AUDIT_ARCH 282e65e1fc2SAl Viro default y 283e65e1fc2SAl Viro 2844b588411SAKASHI Takahiroconfig AUDIT_ARCH_COMPAT_GENERIC 2854b588411SAKASHI Takahiro bool 2864b588411SAKASHI Takahiro default n 2874b588411SAKASHI Takahiro 2884b588411SAKASHI Takahiroconfig AUDIT_COMPAT_GENERIC 2894b588411SAKASHI Takahiro bool 2904b588411SAKASHI Takahiro depends on AUDIT_GENERIC && AUDIT_ARCH_COMPAT_GENERIC && COMPAT 2914b588411SAKASHI Takahiro default y 2924b588411SAKASHI Takahiro 293a6a9c0f1SDaniel Borkmannconfig RANDOM32_SELFTEST 294a6a9c0f1SDaniel Borkmann bool "PRNG perform self test on init" 295a6a9c0f1SDaniel Borkmann help 296a6a9c0f1SDaniel Borkmann This option enables the 32 bit PRNG library functions to perform a 297a6a9c0f1SDaniel Borkmann self test on initialization. 298a6a9c0f1SDaniel Borkmann 2991da177e4SLinus Torvalds# 3001da177e4SLinus Torvalds# compression support is select'ed if needed 3011da177e4SLinus Torvalds# 3022da572c9SDan Streetmanconfig 842_COMPRESS 3035b571677SArnd Bergmann select CRC32 3042da572c9SDan Streetman tristate 3052da572c9SDan Streetman 3062da572c9SDan Streetmanconfig 842_DECOMPRESS 3075b571677SArnd Bergmann select CRC32 3082da572c9SDan Streetman tristate 3092da572c9SDan Streetman 3101da177e4SLinus Torvaldsconfig ZLIB_INFLATE 3111da177e4SLinus Torvalds tristate 3121da177e4SLinus Torvalds 3131da177e4SLinus Torvaldsconfig ZLIB_DEFLATE 3141da177e4SLinus Torvalds tristate 3151fd4e5c3SAndrew Morton select BITREVERSE 3161da177e4SLinus Torvalds 317aa5b395bSMikhail Zaslonkoconfig ZLIB_DFLTCC 318aa5b395bSMikhail Zaslonko def_bool y 319aa5b395bSMikhail Zaslonko depends on S390 320aa5b395bSMikhail Zaslonko prompt "Enable s390x DEFLATE CONVERSION CALL support for kernel zlib" 321aa5b395bSMikhail Zaslonko help 322aa5b395bSMikhail Zaslonko Enable s390x hardware support for zlib in the kernel. 323aa5b395bSMikhail Zaslonko 32464c70b1cSRichard Purdieconfig LZO_COMPRESS 32564c70b1cSRichard Purdie tristate 32664c70b1cSRichard Purdie 32764c70b1cSRichard Purdieconfig LZO_DECOMPRESS 32864c70b1cSRichard Purdie tristate 32964c70b1cSRichard Purdie 330c72ac7a1SChanho Minconfig LZ4_COMPRESS 331c72ac7a1SChanho Min tristate 332c72ac7a1SChanho Min 333c72ac7a1SChanho Minconfig LZ4HC_COMPRESS 334c72ac7a1SChanho Min tristate 335c72ac7a1SChanho Min 336e76e1fdfSKyungsik Leeconfig LZ4_DECOMPRESS 337e76e1fdfSKyungsik Lee tristate 338e76e1fdfSKyungsik Lee 33973f3d1b4SNick Terrellconfig ZSTD_COMPRESS 34073f3d1b4SNick Terrell select XXHASH 34173f3d1b4SNick Terrell tristate 34273f3d1b4SNick Terrell 34373f3d1b4SNick Terrellconfig ZSTD_DECOMPRESS 34473f3d1b4SNick Terrell select XXHASH 34573f3d1b4SNick Terrell tristate 34673f3d1b4SNick Terrell 34724fa0402SLasse Collinsource "lib/xz/Kconfig" 34824fa0402SLasse Collin 3491da177e4SLinus Torvalds# 350c8531ab3SH. Peter Anvin# These all provide a common interface (hence the apparent duplication with 351c8531ab3SH. Peter Anvin# ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.) 352c8531ab3SH. Peter Anvin# 353c8531ab3SH. Peter Anvinconfig DECOMPRESS_GZIP 3547856a16eSH. Peter Anvin select ZLIB_INFLATE 355c8531ab3SH. Peter Anvin tristate 356c8531ab3SH. Peter Anvin 357c8531ab3SH. Peter Anvinconfig DECOMPRESS_BZIP2 358c8531ab3SH. Peter Anvin tristate 359c8531ab3SH. Peter Anvin 360c8531ab3SH. Peter Anvinconfig DECOMPRESS_LZMA 361c8531ab3SH. Peter Anvin tristate 362c8531ab3SH. Peter Anvin 3633ebe1243SLasse Collinconfig DECOMPRESS_XZ 3643ebe1243SLasse Collin select XZ_DEC 3653ebe1243SLasse Collin tristate 3663ebe1243SLasse Collin 367cacb246fSAlbin Tonnerreconfig DECOMPRESS_LZO 368cacb246fSAlbin Tonnerre select LZO_DECOMPRESS 369cacb246fSAlbin Tonnerre tristate 370cacb246fSAlbin Tonnerre 371e76e1fdfSKyungsik Leeconfig DECOMPRESS_LZ4 372e76e1fdfSKyungsik Lee select LZ4_DECOMPRESS 373e76e1fdfSKyungsik Lee tristate 374e76e1fdfSKyungsik Lee 3754963bb2bSNick Terrellconfig DECOMPRESS_ZSTD 3764963bb2bSNick Terrell select ZSTD_DECOMPRESS 3774963bb2bSNick Terrell tristate 3784963bb2bSNick Terrell 379c8531ab3SH. Peter Anvin# 380f14f75b8SJes Sorensen# Generic allocator support is selected if needed 381f14f75b8SJes Sorensen# 382f14f75b8SJes Sorensenconfig GENERIC_ALLOCATOR 3836341e62bSChristoph Jaeger bool 384f14f75b8SJes Sorensen 385f14f75b8SJes Sorensen# 3861da177e4SLinus Torvalds# reed solomon support is select'ed if needed 3871da177e4SLinus Torvalds# 3881da177e4SLinus Torvaldsconfig REED_SOLOMON 3891da177e4SLinus Torvalds tristate 3901da177e4SLinus Torvalds 3911da177e4SLinus Torvaldsconfig REED_SOLOMON_ENC8 3926341e62bSChristoph Jaeger bool 3931da177e4SLinus Torvalds 3941da177e4SLinus Torvaldsconfig REED_SOLOMON_DEC8 3956341e62bSChristoph Jaeger bool 3961da177e4SLinus Torvalds 3971da177e4SLinus Torvaldsconfig REED_SOLOMON_ENC16 3986341e62bSChristoph Jaeger bool 3991da177e4SLinus Torvalds 4001da177e4SLinus Torvaldsconfig REED_SOLOMON_DEC16 4016341e62bSChristoph Jaeger bool 4021da177e4SLinus Torvalds 403f7704347SDavid S. Miller# 404437aa565SIvan Djelic# BCH support is selected if needed 405437aa565SIvan Djelic# 406437aa565SIvan Djelicconfig BCH 407437aa565SIvan Djelic tristate 408437aa565SIvan Djelic 409437aa565SIvan Djelicconfig BCH_CONST_PARAMS 4106341e62bSChristoph Jaeger bool 411437aa565SIvan Djelic help 412437aa565SIvan Djelic Drivers may select this option to force specific constant 413437aa565SIvan Djelic values for parameters 'm' (Galois field order) and 't' 414437aa565SIvan Djelic (error correction capability). Those specific values must 415437aa565SIvan Djelic be set by declaring default values for symbols BCH_CONST_M 416437aa565SIvan Djelic and BCH_CONST_T. 417437aa565SIvan Djelic Doing so will enable extra compiler optimizations, 418437aa565SIvan Djelic improving encoding and decoding performance up to 2x for 419437aa565SIvan Djelic usual (m,t) values (typically such that m*t < 200). 420437aa565SIvan Djelic When this option is selected, the BCH library supports 421437aa565SIvan Djelic only a single (m,t) configuration. This is mainly useful 422437aa565SIvan Djelic for NAND flash board drivers requiring known, fixed BCH 423437aa565SIvan Djelic parameters. 424437aa565SIvan Djelic 425437aa565SIvan Djelicconfig BCH_CONST_M 426437aa565SIvan Djelic int 427437aa565SIvan Djelic range 5 15 428437aa565SIvan Djelic help 429437aa565SIvan Djelic Constant value for Galois field order 'm'. If 'k' is the 430437aa565SIvan Djelic number of data bits to protect, 'm' should be chosen such 431437aa565SIvan Djelic that (k + m*t) <= 2**m - 1. 432437aa565SIvan Djelic Drivers should declare a default value for this symbol if 433437aa565SIvan Djelic they select option BCH_CONST_PARAMS. 434437aa565SIvan Djelic 435437aa565SIvan Djelicconfig BCH_CONST_T 436437aa565SIvan Djelic int 437437aa565SIvan Djelic help 438437aa565SIvan Djelic Constant value for error correction capability in bits 't'. 439437aa565SIvan Djelic Drivers should declare a default value for this symbol if 440437aa565SIvan Djelic they select option BCH_CONST_PARAMS. 441437aa565SIvan Djelic 442437aa565SIvan Djelic# 443f7704347SDavid S. Miller# Textsearch support is select'ed if needed 444f7704347SDavid S. Miller# 4452de4ff7bSThomas Grafconfig TEXTSEARCH 4466341e62bSChristoph Jaeger bool 4471da177e4SLinus Torvalds 448df3fb93aSThomas Grafconfig TEXTSEARCH_KMP 449f7704347SDavid S. Miller tristate 450df3fb93aSThomas Graf 4518082e4edSPablo Neira Ayusoconfig TEXTSEARCH_BM 45229cb9f9cSDavid S. Miller tristate 4538082e4edSPablo Neira Ayuso 4546408f79cSThomas Grafconfig TEXTSEARCH_FSM 455f7704347SDavid S. Miller tristate 4566408f79cSThomas Graf 4575db53f3eSJoern Engelconfig BTREE 4586341e62bSChristoph Jaeger bool 4595db53f3eSJoern Engel 460a88cc108SChris Wilsonconfig INTERVAL_TREE 4616341e62bSChristoph Jaeger bool 462a88cc108SChris Wilson help 463a88cc108SChris Wilson Simple, embeddable, interval-tree. Can find the start of an 464a88cc108SChris Wilson overlapping range in log(n) time and then iterate over all 465a88cc108SChris Wilson overlapping nodes. The algorithm is implemented as an 466a88cc108SChris Wilson augmented rbtree. 467a88cc108SChris Wilson 468a88cc108SChris Wilson See: 469a88cc108SChris Wilson 47014bbe3e3SMatthew Wilcox (Oracle) Documentation/core-api/rbtree.rst 471a88cc108SChris Wilson 472a88cc108SChris Wilson for more information. 473a88cc108SChris Wilson 47402c02bf1SMatthew Wilcoxconfig XARRAY_MULTI 47557578c2eSMatthew Wilcox bool 47602c02bf1SMatthew Wilcox help 47702c02bf1SMatthew Wilcox Support entries which occupy multiple consecutive indices in the 47802c02bf1SMatthew Wilcox XArray. 47957578c2eSMatthew Wilcox 4803cb98950SDavid Howellsconfig ASSOCIATIVE_ARRAY 4813cb98950SDavid Howells bool 4823cb98950SDavid Howells help 4833cb98950SDavid Howells Generic associative array. Can be searched and iterated over whilst 4843cb98950SDavid Howells it is being modified. It is also reasonably quick to search and 4853cb98950SDavid Howells modify. The algorithms are non-recursive, and the trees are highly 4863cb98950SDavid Howells capacious. 4873cb98950SDavid Howells 4883cb98950SDavid Howells See: 4893cb98950SDavid Howells 4905fb94e9cSMauro Carvalho Chehab Documentation/core-api/assoc_array.rst 4913cb98950SDavid Howells 4923cb98950SDavid Howells for more information. 4933cb98950SDavid Howells 4945ea81769SAl Viroconfig HAS_IOMEM 4956341e62bSChristoph Jaeger bool 4965ea81769SAl Viro depends on !NO_IOMEM 4975ea81769SAl Viro default y 4985ea81769SAl Viro 499ce816fa8SUwe Kleine-Königconfig HAS_IOPORT_MAP 5006341e62bSChristoph Jaeger bool 501ce816fa8SUwe Kleine-König depends on HAS_IOMEM && !NO_IOPORT_MAP 502ee36c2bfSAl Viro default y 503ee36c2bfSAl Viro 504cf65a0f6SChristoph Hellwigsource "kernel/dma/Kconfig" 505411f0f3eSHeiko Carstens 506e80a0af4SBart Van Asscheconfig SGL_ALLOC 507e80a0af4SBart Van Assche bool 508e80a0af4SBart Van Assche default n 509e80a0af4SBart Van Assche 510a4ce5a48SChristoph Hellwigconfig IOMMU_HELPER 511a4ce5a48SChristoph Hellwig bool 512a4ce5a48SChristoph Hellwig 513928923c7SGeert Uytterhoevenconfig CHECK_SIGNATURE 514928923c7SGeert Uytterhoeven bool 515928923c7SGeert Uytterhoeven 516aab46da0SRusty Russellconfig CPUMASK_OFFSTACK 517aab46da0SRusty Russell bool "Force CPU masks off stack" if DEBUG_PER_CPU_MAPS 518aab46da0SRusty Russell help 519aab46da0SRusty Russell Use dynamic allocation for cpumask_var_t, instead of putting 520aab46da0SRusty Russell them on the stack. This is a bit more expensive, but avoids 521aab46da0SRusty Russell stack overflow. 522aab46da0SRusty Russell 523c39649c3SBen Hutchingsconfig CPU_RMAP 524c39649c3SBen Hutchings bool 525c39649c3SBen Hutchings depends on SMP 526c39649c3SBen Hutchings 52775957ba3STom Herbertconfig DQL 52875957ba3STom Herbert bool 52975957ba3STom Herbert 530b0125085SGeorge Spelvinconfig GLOB 531b0125085SGeorge Spelvin bool 532b0125085SGeorge Spelvin# This actually supports modular compilation, but the module overhead 533b0125085SGeorge Spelvin# is ridiculous for the amount of code involved. Until an out-of-tree 534b0125085SGeorge Spelvin# driver asks for it, we'll just link it directly it into the kernel 535b0125085SGeorge Spelvin# when required. Since we're ignoring out-of-tree users, there's also 536b0125085SGeorge Spelvin# no need bother prompting for a manual decision: 537b0125085SGeorge Spelvin# prompt "glob_match() function" 538b0125085SGeorge Spelvin help 539b0125085SGeorge Spelvin This option provides a glob_match function for performing 540b0125085SGeorge Spelvin simple text pattern matching. It originated in the ATA code 541b0125085SGeorge Spelvin to blacklist particular drive models, but other device drivers 542b0125085SGeorge Spelvin may need similar functionality. 543b0125085SGeorge Spelvin 544b0125085SGeorge Spelvin All drivers in the Linux kernel tree that require this function 545b0125085SGeorge Spelvin should automatically select this option. Say N unless you 546b0125085SGeorge Spelvin are compiling an out-of tree driver which tells you that it 547b0125085SGeorge Spelvin depends on this. 548b0125085SGeorge Spelvin 5495f9be824SGeorge Spelvinconfig GLOB_SELFTEST 550ba95b045SGeert Uytterhoeven tristate "glob self-test on init" 5515f9be824SGeorge Spelvin depends on GLOB 5525f9be824SGeorge Spelvin help 5535f9be824SGeorge Spelvin This option enables a simple self-test of the glob_match 5545f9be824SGeorge Spelvin function on startup. It is primarily useful for people 5555f9be824SGeorge Spelvin working on the code to ensure they haven't introduced any 5565f9be824SGeorge Spelvin regressions. 5575f9be824SGeorge Spelvin 5585f9be824SGeorge Spelvin It only adds a little bit of code and slows kernel boot (or 5595f9be824SGeorge Spelvin module load) by a small amount, so you're welcome to play with 5605f9be824SGeorge Spelvin it, but you probably don't need it. 5615f9be824SGeorge Spelvin 562e9cc8bddSGeert Uytterhoeven# 563e9cc8bddSGeert Uytterhoeven# Netlink attribute parsing support is select'ed if needed 564e9cc8bddSGeert Uytterhoeven# 565e9cc8bddSGeert Uytterhoevenconfig NLATTR 566e9cc8bddSGeert Uytterhoeven bool 567e9cc8bddSGeert Uytterhoeven 56809d4e0edSPaul Mackerras# 56909d4e0edSPaul Mackerras# Generic 64-bit atomic support is selected if needed 57009d4e0edSPaul Mackerras# 57109d4e0edSPaul Mackerrasconfig GENERIC_ATOMIC64 57209d4e0edSPaul Mackerras bool 57309d4e0edSPaul Mackerras 574b411b363SPhilipp Reisnerconfig LRU_CACHE 575b411b363SPhilipp Reisner tristate 576b411b363SPhilipp Reisner 577c6df4b17SDavid Millerconfig CLZ_TAB 578c6df4b17SDavid Miller bool 579c6df4b17SDavid Miller 580511cbce2SChristoph Hellwigconfig IRQ_POLL 581511cbce2SChristoph Hellwig bool "IRQ polling library" 582511cbce2SChristoph Hellwig help 583511cbce2SChristoph Hellwig Helper library to poll interrupt mitigation using polling. 584511cbce2SChristoph Hellwig 585d9c46b18SDmitry Kasatkinconfig MPILIB 5862e5f094bSDmitry Kasatkin tristate 587c6df4b17SDavid Miller select CLZ_TAB 588d9c46b18SDmitry Kasatkin help 589d9c46b18SDmitry Kasatkin Multiprecision maths library from GnuPG. 590d9c46b18SDmitry Kasatkin It is used to implement RSA digital signature verification, 591d9c46b18SDmitry Kasatkin which is used by IMA/EVM digital signature extension. 592d9c46b18SDmitry Kasatkin 5935e8898e9SDmitry Kasatkinconfig SIGNATURE 5942e5f094bSDmitry Kasatkin tristate 5950d1f64f6SDmitry Kasatkin depends on KEYS 5960d1f64f6SDmitry Kasatkin select CRYPTO 597be440ec7SDmitry Kasatkin select CRYPTO_SHA1 598051dbb91SDmitry Kasatkin select MPILIB 599051dbb91SDmitry Kasatkin help 600051dbb91SDmitry Kasatkin Digital signature verification. Currently only RSA is supported. 601051dbb91SDmitry Kasatkin Implementation is done using GnuPG MPI library 602051dbb91SDmitry Kasatkin 6034f75da36STal Gilboaconfig DIMLIB 604424adc32SUwe Kleine-König bool 6054f75da36STal Gilboa help 6064f75da36STal Gilboa Dynamic Interrupt Moderation library. 607991ad2b2SRandy Dunlap Implements an algorithm for dynamically changing CQ moderation values 6084f75da36STal Gilboa according to run time performance. 6094f75da36STal Gilboa 610ab253839SDavid Daney# 611ab253839SDavid Daney# libfdt files, only selected if needed. 612ab253839SDavid Daney# 613ab253839SDavid Daneyconfig LIBFDT 614ab253839SDavid Daney bool 615ab253839SDavid Daney 616a77ad6eaSDavid Howellsconfig OID_REGISTRY 617a77ad6eaSDavid Howells tristate 618a77ad6eaSDavid Howells help 619a77ad6eaSDavid Howells Enable fast lookup object identifier registry. 620a77ad6eaSDavid Howells 6210635eb8aSMatthew Garrettconfig UCS2_STRING 6220635eb8aSMatthew Garrett tristate 6230635eb8aSMatthew Garrett 62400b26474SVincenzo Frascino# 62500b26474SVincenzo Frascino# generic vdso 62600b26474SVincenzo Frascino# 62700b26474SVincenzo Frascinosource "lib/vdso/Kconfig" 62800b26474SVincenzo Frascino 629ee89bd6bSGeert Uytterhoevensource "lib/fonts/Kconfig" 630ee89bd6bSGeert Uytterhoeven 631f8bcbe62SRobert Jarzmikconfig SG_SPLIT 632f8bcbe62SRobert Jarzmik def_bool n 633f8bcbe62SRobert Jarzmik help 6347f7e92f7SGeert Uytterhoeven Provides a helper to split scatterlists into chunks, each chunk being 6357f7e92f7SGeert Uytterhoeven a scatterlist. This should be selected by a driver or an API which 6367f7e92f7SGeert Uytterhoeven whishes to split a scatterlist amongst multiple DMA channels. 637f8bcbe62SRobert Jarzmik 6389b1d6c89SMing Linconfig SG_POOL 6399b1d6c89SMing Lin def_bool n 6409b1d6c89SMing Lin help 6419b1d6c89SMing Lin Provides a helper to allocate chained scatterlists. This should be 6429b1d6c89SMing Lin selected by a driver or an API which whishes to allocate chained 6439b1d6c89SMing Lin scatterlist. 6449b1d6c89SMing Lin 645308c09f1SLaura Abbott# 646308c09f1SLaura Abbott# sg chaining option 647308c09f1SLaura Abbott# 648308c09f1SLaura Abbott 6497c703e54SChristoph Hellwigconfig ARCH_NO_SG_CHAIN 650308c09f1SLaura Abbott def_bool n 651308c09f1SLaura Abbott 65261031952SRoss Zwislerconfig ARCH_HAS_PMEM_API 65361031952SRoss Zwisler bool 65461031952SRoss Zwisler 65533dd7075SDan Williamsconfig MEMREGION 65633dd7075SDan Williams bool 65733dd7075SDan Williams 6589ffc1d19SDan Williamsconfig ARCH_HAS_MEMREMAP_COMPAT_ALIGN 6599ffc1d19SDan Williams bool 6609ffc1d19SDan Williams 661bd79f947SChristoph Hellwig# use memcpy to implement user copies for nommu architectures 662bd79f947SChristoph Hellwigconfig UACCESS_MEMCPY 663bd79f947SChristoph Hellwig bool 664bd79f947SChristoph Hellwig 6650aed55afSDan Williamsconfig ARCH_HAS_UACCESS_FLUSHCACHE 6660aed55afSDan Williams bool 6670aed55afSDan Williams 668ec6347bbSDan Williams# arch has a concept of a recoverable synchronous exception due to a 669ec6347bbSDan Williams# memory-read error like x86 machine-check or ARM data-abort, and 670ec6347bbSDan Williams# implements copy_mc_to_{user,kernel} to abort and report 671ec6347bbSDan Williams# 'bytes-transferred' if that exception fires when accessing the source 672ec6347bbSDan Williams# buffer. 673ec6347bbSDan Williamsconfig ARCH_HAS_COPY_MC 674522239b4SDan Williams bool 675522239b4SDan Williams 676214d8ca6SThomas Gleixner# Temporary. Goes away when all archs are cleaned up 677214d8ca6SThomas Gleixnerconfig ARCH_STACKWALK 678214d8ca6SThomas Gleixner bool 679214d8ca6SThomas Gleixner 680cd11016eSAlexander Potapenkoconfig STACKDEPOT 681cd11016eSAlexander Potapenko bool 682cd11016eSAlexander Potapenko select STACKTRACE 683cd11016eSAlexander Potapenko 6842dba5eb1SVlastimil Babkaconfig STACKDEPOT_ALWAYS_INIT 6852dba5eb1SVlastimil Babka bool 6862dba5eb1SVlastimil Babka select STACKDEPOT 6872dba5eb1SVlastimil Babka 688d2620936SYogesh Lalconfig STACK_HASH_ORDER 689d2620936SYogesh Lal int "stack depot hash size (12 => 4KB, 20 => 1024KB)" 690d2620936SYogesh Lal range 12 20 691d2620936SYogesh Lal default 20 692d2620936SYogesh Lal depends on STACKDEPOT 693d2620936SYogesh Lal help 694d2620936SYogesh Lal Select the hash size as a power of 2 for the stackdepot hash table. 695d2620936SYogesh Lal Choose a lower value to reduce the memory impact. 696d2620936SYogesh Lal 6974e66934eSEric Dumazetconfig REF_TRACKER 6984e66934eSEric Dumazet bool 6994e66934eSEric Dumazet depends on STACKTRACE_SUPPORT 7004e66934eSEric Dumazet select STACKDEPOT 7014e66934eSEric Dumazet 70288459642SOmar Sandovalconfig SBITMAP 70388459642SOmar Sandoval bool 70488459642SOmar Sandoval 70544091d29SJiri Pirkoconfig PARMAN 7069d25af69SGeert Uytterhoeven tristate "parman" if COMPILE_TEST 70744091d29SJiri Pirko 7083dfdecc6SRandy Dunlapconfig OBJAGG 7093dfdecc6SRandy Dunlap tristate "objagg" if COMPILE_TEST 7103dfdecc6SRandy Dunlap 7112de4ff7bSThomas Grafendmenu 712b35cd988SPalmer Dabbelt 71380b0ca98SChristoph Hellwigconfig GENERIC_IOREMAP 71480b0ca98SChristoph Hellwig bool 71580b0ca98SChristoph Hellwig 716e3d59805SMatt Redfearnconfig GENERIC_LIB_ASHLDI3 717b35cd988SPalmer Dabbelt bool 718b35cd988SPalmer Dabbelt 719e3d59805SMatt Redfearnconfig GENERIC_LIB_ASHRDI3 720b35cd988SPalmer Dabbelt bool 721b35cd988SPalmer Dabbelt 722e3d59805SMatt Redfearnconfig GENERIC_LIB_LSHRDI3 723b35cd988SPalmer Dabbelt bool 724b35cd988SPalmer Dabbelt 725e3d59805SMatt Redfearnconfig GENERIC_LIB_MULDI3 726b35cd988SPalmer Dabbelt bool 727b35cd988SPalmer Dabbelt 728e3d59805SMatt Redfearnconfig GENERIC_LIB_CMPDI2 729b35cd988SPalmer Dabbelt bool 730b35cd988SPalmer Dabbelt 731e3d59805SMatt Redfearnconfig GENERIC_LIB_UCMPDI2 732b35cd988SPalmer Dabbelt bool 733b8265621SJacob Keller 734527701edSPalmer Dabbeltconfig GENERIC_LIB_DEVMEM_IS_ALLOWED 735527701edSPalmer Dabbelt bool 736527701edSPalmer Dabbelt 737b8265621SJacob Kellerconfig PLDMFW 738b8265621SJacob Keller bool 739b8265621SJacob Keller default n 740b0706762SJames Bottomley 741b0706762SJames Bottomleyconfig ASN1_ENCODER 742b0706762SJames Bottomley tristate 743cd705ea8SMichael Walle 744cd705ea8SMichael Walleconfig POLYNOMIAL 745cd705ea8SMichael Walle tristate 746