]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - lib/Kconfig
proc: remove PDE_DATA() completely
[thirdparty/kernel/stable.git] / lib / Kconfig
CommitLineData
ec8f24b7 1# SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2#
3# Library configuration
4#
5
4370aa4a
LJ
6config BINARY_PRINTF
7 def_bool n
8
1da177e4
LT
9menu "Library routines"
10
f5e70d0f
DW
11config RAID6_PQ
12 tristate
13
be85f93a
DV
14config RAID6_PQ_BENCHMARK
15 bool "Automatically choose fastest RAID6 PQ functions"
16 depends on RAID6_PQ
17 default y
18 help
19 Benchmark all available RAID6 PQ functions on init and choose the
20 fastest one.
21
d2218d4e
MV
22config LINEAR_RANGES
23 tristate
24
554aae35
VO
25config PACKING
26 bool "Generic bitfield packing and unpacking"
27 default n
28 help
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
34 group)
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.
39
40 When in doubt, say N.
41
a5cfc1ec
AM
42config BITREVERSE
43 tristate
44
556d2f05 45config HAVE_ARCH_BITREVERSE
841c0090 46 bool
556d2f05
YW
47 default n
48 depends on BITREVERSE
49 help
9e522c0d
AM
50 This option enables the use of hardware bit-reversal instructions on
51 architectures which support such operations.
556d2f05 52
e6226997 53config ARCH_HAS_STRNCPY_FROM_USER
2922585b
DM
54 bool
55
e6226997 56config ARCH_HAS_STRNLEN_USER
a08c5356
LT
57 bool
58
e6226997
AB
59config GENERIC_STRNCPY_FROM_USER
60 def_bool !ARCH_HAS_STRNCPY_FROM_USER
61
62config GENERIC_STRNLEN_USER
63 def_bool !ARCH_HAS_STRNLEN_USER
64
4cd5773a
AS
65config GENERIC_NET_UTILS
66 bool
67
19870def 68config GENERIC_FIND_FIRST_BIT
9ba16087 69 bool
19870def 70
2c64e9cb
AS
71source "lib/math/Kconfig"
72
b923650b
MT
73config NO_GENERIC_PCI_IOPORT_MAP
74 bool
75
66eab4df
MT
76config GENERIC_PCI_IOMAP
77 bool
78
4673ca8e
MT
79config GENERIC_IOMAP
80 bool
66eab4df 81 select GENERIC_PCI_IOMAP
4673ca8e 82
4ccf4bea
WS
83config STMP_DEVICE
84 bool
22b361d1 85
bc08b449
LT
86config ARCH_USE_CMPXCHG_LOCKREF
87 bool
88
72d93104
LT
89config ARCH_HAS_FAST_MULTIPLIER
90 bool
91
2ce0d7f9
MB
92config ARCH_USE_SYM_ANNOTATIONS
93 bool
94
031e3601
ZY
95config INDIRECT_PIO
96 bool "Access I/O in non-MMIO mode"
97 depends on ARM64
98 help
99 On some platforms where no separate I/O space exists, there are I/O
100 hosts which can not be accessed in MMIO mode. Using the logical PIO
101 mechanism, the host-local I/O resource can be mapped into system
102 logic PIO space shared with MMIO hosts, such as PCI/PCIe, then the
103 system can access the I/O devices with the mapped-logic PIO through
104 I/O accessors.
105
106 This way has relatively little I/O performance cost. Please make
107 sure your devices really need this configure item enabled.
108
109 When in doubt, say N.
110
ca2e3342
JB
111config INDIRECT_IOMEM
112 bool
113 help
114 This is selected by other options/architectures to provide the
115 emulated iomem accessors.
116
117config INDIRECT_IOMEM_FALLBACK
118 bool
119 depends on INDIRECT_IOMEM
120 help
121 If INDIRECT_IOMEM is selected, this enables falling back to plain
122 mmio accesses when the IO memory address is not a registered
123 emulated region.
124
e56e1898
JF
125source "lib/crypto/Kconfig"
126
1da177e4
LT
127config CRC_CCITT
128 tristate "CRC-CCITT functions"
129 help
130 This option is provided for the case where no in-kernel-tree
131 modules require CRC-CCITT functions, but a module built outside
132 the kernel tree does. Such modules that use library CRC-CCITT
133 functions require M here.
134
7657ec1f
EP
135config CRC16
136 tristate "CRC16 functions"
137 help
138 This option is provided for the case where no in-kernel-tree
139 modules require CRC16 functions, but a module built outside
140 the kernel tree does. Such modules that use library CRC16
141 functions require M here.
142
f11f594e
MP
143config CRC_T10DIF
144 tristate "CRC calculation for the T10 Data Integrity Field"
68411521
HX
145 select CRYPTO
146 select CRYPTO_CRCT10DIF
f11f594e
MP
147 help
148 This option is only needed if a module that's not in the
149 kernel tree needs to calculate CRC checks for use with the
150 SCSI data integrity subsystem.
151
3e7cbae7
ID
152config CRC_ITU_T
153 tristate "CRC ITU-T V.41 functions"
154 help
155 This option is provided for the case where no in-kernel-tree
156 modules require CRC ITU-T V.41 functions, but a module built outside
157 the kernel tree does. Such modules that use library CRC ITU-T V.41
158 functions require M here.
159
1da177e4 160config CRC32
46c5801e 161 tristate "CRC32/CRC32c functions"
1da177e4 162 default y
906d66df 163 select BITREVERSE
1da177e4
LT
164 help
165 This option is provided for the case where no in-kernel-tree
46c5801e
DW
166 modules require CRC32/CRC32c functions, but a module built outside
167 the kernel tree does. Such modules that use library CRC32/CRC32c
168 functions require M here.
1da177e4 169
3863ef31 170config CRC32_SELFTEST
5fb7f874 171 tristate "CRC32 perform self test on init"
3863ef31
BP
172 depends on CRC32
173 help
174 This option enables the CRC32 library functions to perform a
175 self test on initialization. The self test computes crc32_le
176 and crc32_be over byte strings with random alignment and length
177 and computes the total elapsed time and number of bytes processed.
178
5cde7656
DW
179choice
180 prompt "CRC32 implementation"
181 depends on CRC32
182 default CRC32_SLICEBY8
82edb4ba
DW
183 help
184 This option allows a kernel builder to override the default choice
185 of CRC32 algorithm. Choose the default ("slice by 8") unless you
186 know that you need one of the others.
5cde7656
DW
187
188config CRC32_SLICEBY8
189 bool "Slice by 8 bytes"
190 help
191 Calculate checksum 8 bytes at a time with a clever slicing algorithm.
192 This is the fastest algorithm, but comes with a 8KiB lookup table.
193 Most modern processors have enough cache to hold this table without
194 thrashing the cache.
195
196 This is the default implementation choice. Choose this one unless
197 you have a good reason not to.
198
199config CRC32_SLICEBY4
200 bool "Slice by 4 bytes"
201 help
202 Calculate checksum 4 bytes at a time with a clever slicing algorithm.
203 This is a bit slower than slice by 8, but has a smaller 4KiB lookup
204 table.
205
206 Only choose this option if you know what you are doing.
207
208config CRC32_SARWATE
209 bool "Sarwate's Algorithm (one byte at a time)"
210 help
211 Calculate checksum a byte at a time using Sarwate's algorithm. This
212 is not particularly fast, but has a small 256 byte lookup table.
213
214 Only choose this option if you know what you are doing.
215
216config CRC32_BIT
217 bool "Classic Algorithm (one bit at a time)"
218 help
219 Calculate checksum one bit at a time. This is VERY slow, but has
220 no lookup table. This is provided as a debugging option.
221
222 Only choose this option if you are debugging crc32.
223
224endchoice
225
feba04fd
CL
226config CRC64
227 tristate "CRC64 functions"
228 help
229 This option is provided for the case where no in-kernel-tree
230 modules require CRC64 functions, but a module built outside
231 the kernel tree does. Such modules that use library CRC64
232 functions require M here.
233
0cbaa448
JK
234config CRC4
235 tristate "CRC4 functions"
236 help
237 This option is provided for the case where no in-kernel-tree
238 modules require CRC4 functions, but a module built outside
239 the kernel tree does. Such modules that use library CRC4
240 functions require M here.
241
ad241528
JN
242config CRC7
243 tristate "CRC7 functions"
244 help
245 This option is provided for the case where no in-kernel-tree
246 modules require CRC7 functions, but a module built outside
247 the kernel tree does. Such modules that use library CRC7
248 functions require M here.
249
1da177e4
LT
250config LIBCRC32C
251 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
93027354 252 select CRYPTO
69c35efc 253 select CRYPTO_CRC32C
1da177e4
LT
254 help
255 This option is provided for the case where no in-kernel-tree
256 modules require CRC32c functions, but a module built outside the
257 kernel tree does. Such modules that use library CRC32c functions
258 require M here. See Castagnoli93.
259 Module will be libcrc32c.
260
7150962d
AS
261config CRC8
262 tristate "CRC8 function"
263 help
264 This option provides CRC8 function. Drivers may select this
265 when they need to do cyclic redundancy check according CRC8
266 algorithm. Module will be called crc8.
267
5d240522
NT
268config XXHASH
269 tristate
270
e65e1fc2
AV
271config AUDIT_GENERIC
272 bool
273 depends on AUDIT && !AUDIT_ARCH
274 default y
275
4b588411
AT
276config AUDIT_ARCH_COMPAT_GENERIC
277 bool
278 default n
279
280config AUDIT_COMPAT_GENERIC
281 bool
282 depends on AUDIT_GENERIC && AUDIT_ARCH_COMPAT_GENERIC && COMPAT
283 default y
284
a6a9c0f1
DB
285config RANDOM32_SELFTEST
286 bool "PRNG perform self test on init"
a6a9c0f1
DB
287 help
288 This option enables the 32 bit PRNG library functions to perform a
289 self test on initialization.
290
1da177e4
LT
291#
292# compression support is select'ed if needed
293#
2da572c9 294config 842_COMPRESS
5b571677 295 select CRC32
2da572c9
DS
296 tristate
297
298config 842_DECOMPRESS
5b571677 299 select CRC32
2da572c9
DS
300 tristate
301
1da177e4
LT
302config ZLIB_INFLATE
303 tristate
304
305config ZLIB_DEFLATE
306 tristate
1fd4e5c3 307 select BITREVERSE
1da177e4 308
aa5b395b
MZ
309config ZLIB_DFLTCC
310 def_bool y
311 depends on S390
312 prompt "Enable s390x DEFLATE CONVERSION CALL support for kernel zlib"
313 help
314 Enable s390x hardware support for zlib in the kernel.
315
64c70b1c
RP
316config LZO_COMPRESS
317 tristate
318
319config LZO_DECOMPRESS
320 tristate
321
c72ac7a1
CM
322config LZ4_COMPRESS
323 tristate
324
325config LZ4HC_COMPRESS
326 tristate
327
e76e1fdf
KL
328config LZ4_DECOMPRESS
329 tristate
330
73f3d1b4
NT
331config ZSTD_COMPRESS
332 select XXHASH
333 tristate
334
335config ZSTD_DECOMPRESS
336 select XXHASH
337 tristate
338
24fa0402
LC
339source "lib/xz/Kconfig"
340
c8531ab3
PA
341#
342# These all provide a common interface (hence the apparent duplication with
343# ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.)
344#
345config DECOMPRESS_GZIP
7856a16e 346 select ZLIB_INFLATE
c8531ab3
PA
347 tristate
348
349config DECOMPRESS_BZIP2
350 tristate
351
352config DECOMPRESS_LZMA
353 tristate
354
3ebe1243
LC
355config DECOMPRESS_XZ
356 select XZ_DEC
357 tristate
358
cacb246f
AT
359config DECOMPRESS_LZO
360 select LZO_DECOMPRESS
361 tristate
362
e76e1fdf
KL
363config DECOMPRESS_LZ4
364 select LZ4_DECOMPRESS
365 tristate
366
4963bb2b
NT
367config DECOMPRESS_ZSTD
368 select ZSTD_DECOMPRESS
369 tristate
370
f14f75b8
JS
371#
372# Generic allocator support is selected if needed
373#
374config GENERIC_ALLOCATOR
6341e62b 375 bool
f14f75b8 376
1da177e4
LT
377#
378# reed solomon support is select'ed if needed
379#
380config REED_SOLOMON
381 tristate
382
383config REED_SOLOMON_ENC8
6341e62b 384 bool
1da177e4
LT
385
386config REED_SOLOMON_DEC8
6341e62b 387 bool
1da177e4
LT
388
389config REED_SOLOMON_ENC16
6341e62b 390 bool
1da177e4
LT
391
392config REED_SOLOMON_DEC16
6341e62b 393 bool
1da177e4 394
437aa565
ID
395#
396# BCH support is selected if needed
397#
398config BCH
399 tristate
400
401config BCH_CONST_PARAMS
6341e62b 402 bool
437aa565
ID
403 help
404 Drivers may select this option to force specific constant
405 values for parameters 'm' (Galois field order) and 't'
406 (error correction capability). Those specific values must
407 be set by declaring default values for symbols BCH_CONST_M
408 and BCH_CONST_T.
409 Doing so will enable extra compiler optimizations,
410 improving encoding and decoding performance up to 2x for
411 usual (m,t) values (typically such that m*t < 200).
412 When this option is selected, the BCH library supports
413 only a single (m,t) configuration. This is mainly useful
414 for NAND flash board drivers requiring known, fixed BCH
415 parameters.
416
417config BCH_CONST_M
418 int
419 range 5 15
420 help
421 Constant value for Galois field order 'm'. If 'k' is the
422 number of data bits to protect, 'm' should be chosen such
423 that (k + m*t) <= 2**m - 1.
424 Drivers should declare a default value for this symbol if
425 they select option BCH_CONST_PARAMS.
426
427config BCH_CONST_T
428 int
429 help
430 Constant value for error correction capability in bits 't'.
431 Drivers should declare a default value for this symbol if
432 they select option BCH_CONST_PARAMS.
433
f7704347
DM
434#
435# Textsearch support is select'ed if needed
436#
2de4ff7b 437config TEXTSEARCH
6341e62b 438 bool
1da177e4 439
df3fb93a 440config TEXTSEARCH_KMP
f7704347 441 tristate
df3fb93a 442
8082e4ed 443config TEXTSEARCH_BM
29cb9f9c 444 tristate
8082e4ed 445
6408f79c 446config TEXTSEARCH_FSM
f7704347 447 tristate
6408f79c 448
5db53f3e 449config BTREE
6341e62b 450 bool
5db53f3e 451
a88cc108 452config INTERVAL_TREE
6341e62b 453 bool
a88cc108
CW
454 help
455 Simple, embeddable, interval-tree. Can find the start of an
456 overlapping range in log(n) time and then iterate over all
457 overlapping nodes. The algorithm is implemented as an
458 augmented rbtree.
459
460 See:
461
14bbe3e3 462 Documentation/core-api/rbtree.rst
a88cc108
CW
463
464 for more information.
465
02c02bf1 466config XARRAY_MULTI
57578c2e 467 bool
02c02bf1
MW
468 help
469 Support entries which occupy multiple consecutive indices in the
470 XArray.
57578c2e 471
3cb98950
DH
472config ASSOCIATIVE_ARRAY
473 bool
474 help
475 Generic associative array. Can be searched and iterated over whilst
476 it is being modified. It is also reasonably quick to search and
477 modify. The algorithms are non-recursive, and the trees are highly
478 capacious.
479
480 See:
481
5fb94e9c 482 Documentation/core-api/assoc_array.rst
3cb98950
DH
483
484 for more information.
485
5ea81769 486config HAS_IOMEM
6341e62b 487 bool
5ea81769
AV
488 depends on !NO_IOMEM
489 default y
490
ce816fa8 491config HAS_IOPORT_MAP
6341e62b 492 bool
ce816fa8 493 depends on HAS_IOMEM && !NO_IOPORT_MAP
ee36c2bf
AV
494 default y
495
cf65a0f6 496source "kernel/dma/Kconfig"
411f0f3e 497
e80a0af4
BVA
498config SGL_ALLOC
499 bool
500 default n
501
a4ce5a48
CH
502config IOMMU_HELPER
503 bool
504
928923c7
GU
505config CHECK_SIGNATURE
506 bool
507
aab46da0
RR
508config CPUMASK_OFFSTACK
509 bool "Force CPU masks off stack" if DEBUG_PER_CPU_MAPS
510 help
511 Use dynamic allocation for cpumask_var_t, instead of putting
512 them on the stack. This is a bit more expensive, but avoids
513 stack overflow.
514
c39649c3
BH
515config CPU_RMAP
516 bool
517 depends on SMP
518
75957ba3
TH
519config DQL
520 bool
521
b0125085
GS
522config GLOB
523 bool
524# This actually supports modular compilation, but the module overhead
525# is ridiculous for the amount of code involved. Until an out-of-tree
526# driver asks for it, we'll just link it directly it into the kernel
527# when required. Since we're ignoring out-of-tree users, there's also
528# no need bother prompting for a manual decision:
529# prompt "glob_match() function"
530 help
531 This option provides a glob_match function for performing
532 simple text pattern matching. It originated in the ATA code
533 to blacklist particular drive models, but other device drivers
534 may need similar functionality.
535
536 All drivers in the Linux kernel tree that require this function
537 should automatically select this option. Say N unless you
538 are compiling an out-of tree driver which tells you that it
539 depends on this.
540
5f9be824 541config GLOB_SELFTEST
ba95b045 542 tristate "glob self-test on init"
5f9be824
GS
543 depends on GLOB
544 help
545 This option enables a simple self-test of the glob_match
546 function on startup. It is primarily useful for people
547 working on the code to ensure they haven't introduced any
548 regressions.
549
550 It only adds a little bit of code and slows kernel boot (or
551 module load) by a small amount, so you're welcome to play with
552 it, but you probably don't need it.
553
e9cc8bdd
GU
554#
555# Netlink attribute parsing support is select'ed if needed
556#
557config NLATTR
558 bool
559
09d4e0ed
PM
560#
561# Generic 64-bit atomic support is selected if needed
562#
563config GENERIC_ATOMIC64
564 bool
565
b411b363
PR
566config LRU_CACHE
567 tristate
568
c6df4b17
DM
569config CLZ_TAB
570 bool
571
511cbce2
CH
572config IRQ_POLL
573 bool "IRQ polling library"
574 help
575 Helper library to poll interrupt mitigation using polling.
576
d9c46b18 577config MPILIB
2e5f094b 578 tristate
c6df4b17 579 select CLZ_TAB
d9c46b18
DK
580 help
581 Multiprecision maths library from GnuPG.
582 It is used to implement RSA digital signature verification,
583 which is used by IMA/EVM digital signature extension.
584
5e8898e9 585config SIGNATURE
2e5f094b 586 tristate
0d1f64f6
DK
587 depends on KEYS
588 select CRYPTO
be440ec7 589 select CRYPTO_SHA1
051dbb91
DK
590 select MPILIB
591 help
592 Digital signature verification. Currently only RSA is supported.
593 Implementation is done using GnuPG MPI library
594
4f75da36 595config DIMLIB
424adc32 596 bool
4f75da36
TG
597 help
598 Dynamic Interrupt Moderation library.
991ad2b2 599 Implements an algorithm for dynamically changing CQ moderation values
4f75da36
TG
600 according to run time performance.
601
ab253839
DD
602#
603# libfdt files, only selected if needed.
604#
605config LIBFDT
606 bool
607
a77ad6ea
DH
608config OID_REGISTRY
609 tristate
610 help
611 Enable fast lookup object identifier registry.
612
0635eb8a 613config UCS2_STRING
68d4b3df 614 tristate
0635eb8a 615
00b26474
VF
616#
617# generic vdso
618#
619source "lib/vdso/Kconfig"
620
ee89bd6b
GU
621source "lib/fonts/Kconfig"
622
f8bcbe62
RJ
623config SG_SPLIT
624 def_bool n
625 help
7f7e92f7
GU
626 Provides a helper to split scatterlists into chunks, each chunk being
627 a scatterlist. This should be selected by a driver or an API which
628 whishes to split a scatterlist amongst multiple DMA channels.
f8bcbe62 629
9b1d6c89
ML
630config SG_POOL
631 def_bool n
632 help
633 Provides a helper to allocate chained scatterlists. This should be
634 selected by a driver or an API which whishes to allocate chained
635 scatterlist.
636
308c09f1
LA
637#
638# sg chaining option
639#
640
7c703e54 641config ARCH_NO_SG_CHAIN
308c09f1
LA
642 def_bool n
643
61031952
RZ
644config ARCH_HAS_PMEM_API
645 bool
646
33dd7075
DW
647config MEMREGION
648 bool
649
9ffc1d19
DW
650config ARCH_HAS_MEMREMAP_COMPAT_ALIGN
651 bool
652
bd79f947
CH
653# use memcpy to implement user copies for nommu architectures
654config UACCESS_MEMCPY
655 bool
656
0aed55af
DW
657config ARCH_HAS_UACCESS_FLUSHCACHE
658 bool
659
ec6347bb
DW
660# arch has a concept of a recoverable synchronous exception due to a
661# memory-read error like x86 machine-check or ARM data-abort, and
662# implements copy_mc_to_{user,kernel} to abort and report
663# 'bytes-transferred' if that exception fires when accessing the source
664# buffer.
665config ARCH_HAS_COPY_MC
522239b4
DW
666 bool
667
214d8ca6
TG
668# Temporary. Goes away when all archs are cleaned up
669config ARCH_STACKWALK
670 bool
671
cd11016e
AP
672config STACKDEPOT
673 bool
674 select STACKTRACE
675
d2620936
YL
676config STACK_HASH_ORDER
677 int "stack depot hash size (12 => 4KB, 20 => 1024KB)"
678 range 12 20
679 default 20
680 depends on STACKDEPOT
681 help
682 Select the hash size as a power of 2 for the stackdepot hash table.
683 Choose a lower value to reduce the memory impact.
684
4e66934e
ED
685config REF_TRACKER
686 bool
687 depends on STACKTRACE_SUPPORT
688 select STACKDEPOT
689
88459642
OS
690config SBITMAP
691 bool
692
44091d29 693config PARMAN
9d25af69 694 tristate "parman" if COMPILE_TEST
44091d29 695
3dfdecc6
RD
696config OBJAGG
697 tristate "objagg" if COMPILE_TEST
698
2de4ff7b 699endmenu
b35cd988 700
80b0ca98
CH
701config GENERIC_IOREMAP
702 bool
703
e3d59805 704config GENERIC_LIB_ASHLDI3
b35cd988
PD
705 bool
706
e3d59805 707config GENERIC_LIB_ASHRDI3
b35cd988
PD
708 bool
709
e3d59805 710config GENERIC_LIB_LSHRDI3
b35cd988
PD
711 bool
712
e3d59805 713config GENERIC_LIB_MULDI3
b35cd988
PD
714 bool
715
e3d59805 716config GENERIC_LIB_CMPDI2
b35cd988
PD
717 bool
718
e3d59805 719config GENERIC_LIB_UCMPDI2
b35cd988 720 bool
b8265621 721
527701ed
PD
722config GENERIC_LIB_DEVMEM_IS_ALLOWED
723 bool
724
b8265621
JK
725config PLDMFW
726 bool
727 default n
b0706762
JB
728
729config ASN1_ENCODER
730 tristate