Bluetooth: Fix IPSP connection callback event issue.
[platform/kernel/linux-amlogic.git] / lib / Kconfig
1 #
2 # Library configuration
3 #
4
5 config BINARY_PRINTF
6         def_bool n
7
8 menu "Library routines"
9
10 config RAID6_PQ
11         tristate
12
13 config RAID6_PQ_BENCHMARK
14         bool "Automatically choose fastest RAID6 PQ functions"
15         depends on RAID6_PQ
16         default y
17         help
18           Benchmark all available RAID6 PQ functions on init and choose the
19           fastest one.
20
21 config BITREVERSE
22         tristate
23
24 config HAVE_ARCH_BITREVERSE
25         bool
26         default n
27         depends on BITREVERSE
28         help
29           This option enables the use of hardware bit-reversal instructions on
30           architectures which support such operations.
31
32 config RATIONAL
33         bool
34
35 config GENERIC_STRNCPY_FROM_USER
36         bool
37
38 config GENERIC_STRNLEN_USER
39         bool
40
41 config GENERIC_NET_UTILS
42         bool
43
44 config GENERIC_FIND_FIRST_BIT
45         bool
46
47 config NO_GENERIC_PCI_IOPORT_MAP
48         bool
49
50 config GENERIC_PCI_IOMAP
51         bool
52
53 config GENERIC_IOMAP
54         bool
55         select GENERIC_PCI_IOMAP
56
57 config GENERIC_IO
58         bool
59         default n
60
61 config STMP_DEVICE
62         bool
63
64 config ARCH_USE_CMPXCHG_LOCKREF
65         bool
66
67 config ARCH_HAS_FAST_MULTIPLIER
68         bool
69
70 config CRC_CCITT
71         tristate "CRC-CCITT functions"
72         help
73           This option is provided for the case where no in-kernel-tree
74           modules require CRC-CCITT functions, but a module built outside
75           the kernel tree does. Such modules that use library CRC-CCITT
76           functions require M here.
77
78 config CRC16
79         tristate "CRC16 functions"
80         help
81           This option is provided for the case where no in-kernel-tree
82           modules require CRC16 functions, but a module built outside
83           the kernel tree does. Such modules that use library CRC16
84           functions require M here.
85
86 config CRC_T10DIF
87         tristate "CRC calculation for the T10 Data Integrity Field"
88         select CRYPTO
89         select CRYPTO_CRCT10DIF
90         help
91           This option is only needed if a module that's not in the
92           kernel tree needs to calculate CRC checks for use with the
93           SCSI data integrity subsystem.
94
95 config CRC_ITU_T
96         tristate "CRC ITU-T V.41 functions"
97         help
98           This option is provided for the case where no in-kernel-tree
99           modules require CRC ITU-T V.41 functions, but a module built outside
100           the kernel tree does. Such modules that use library CRC ITU-T V.41
101           functions require M here.
102
103 config CRC32
104         tristate "CRC32/CRC32c functions"
105         default y
106         select BITREVERSE
107         help
108           This option is provided for the case where no in-kernel-tree
109           modules require CRC32/CRC32c functions, but a module built outside
110           the kernel tree does. Such modules that use library CRC32/CRC32c
111           functions require M here.
112
113 config CRC32_SELFTEST
114         bool "CRC32 perform self test on init"
115         default n
116         depends on CRC32
117         help
118           This option enables the CRC32 library functions to perform a
119           self test on initialization. The self test computes crc32_le
120           and crc32_be over byte strings with random alignment and length
121           and computes the total elapsed time and number of bytes processed.
122
123 choice
124         prompt "CRC32 implementation"
125         depends on CRC32
126         default CRC32_SLICEBY8
127         help
128           This option allows a kernel builder to override the default choice
129           of CRC32 algorithm.  Choose the default ("slice by 8") unless you
130           know that you need one of the others.
131
132 config CRC32_SLICEBY8
133         bool "Slice by 8 bytes"
134         help
135           Calculate checksum 8 bytes at a time with a clever slicing algorithm.
136           This is the fastest algorithm, but comes with a 8KiB lookup table.
137           Most modern processors have enough cache to hold this table without
138           thrashing the cache.
139
140           This is the default implementation choice.  Choose this one unless
141           you have a good reason not to.
142
143 config CRC32_SLICEBY4
144         bool "Slice by 4 bytes"
145         help
146           Calculate checksum 4 bytes at a time with a clever slicing algorithm.
147           This is a bit slower than slice by 8, but has a smaller 4KiB lookup
148           table.
149
150           Only choose this option if you know what you are doing.
151
152 config CRC32_SARWATE
153         bool "Sarwate's Algorithm (one byte at a time)"
154         help
155           Calculate checksum a byte at a time using Sarwate's algorithm.  This
156           is not particularly fast, but has a small 256 byte lookup table.
157
158           Only choose this option if you know what you are doing.
159
160 config CRC32_BIT
161         bool "Classic Algorithm (one bit at a time)"
162         help
163           Calculate checksum one bit at a time.  This is VERY slow, but has
164           no lookup table.  This is provided as a debugging option.
165
166           Only choose this option if you are debugging crc32.
167
168 endchoice
169
170 config CRC7
171         tristate "CRC7 functions"
172         help
173           This option is provided for the case where no in-kernel-tree
174           modules require CRC7 functions, but a module built outside
175           the kernel tree does. Such modules that use library CRC7
176           functions require M here.
177
178 config LIBCRC32C
179         tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
180         select CRYPTO
181         select CRYPTO_CRC32C
182         help
183           This option is provided for the case where no in-kernel-tree
184           modules require CRC32c functions, but a module built outside the
185           kernel tree does. Such modules that use library CRC32c functions
186           require M here.  See Castagnoli93.
187           Module will be libcrc32c.
188
189 config CRC8
190         tristate "CRC8 function"
191         help
192           This option provides CRC8 function. Drivers may select this
193           when they need to do cyclic redundancy check according CRC8
194           algorithm. Module will be called crc8.
195
196 config XXHASH
197         tristate
198
199 config AUDIT_GENERIC
200         bool
201         depends on AUDIT && !AUDIT_ARCH
202         default y
203
204 config AUDIT_ARCH_COMPAT_GENERIC
205         bool
206         default n
207
208 config AUDIT_COMPAT_GENERIC
209         bool
210         depends on AUDIT_GENERIC && AUDIT_ARCH_COMPAT_GENERIC && COMPAT
211         default y
212
213 config RANDOM32_SELFTEST
214         bool "PRNG perform self test on init"
215         default n
216         help
217           This option enables the 32 bit PRNG library functions to perform a
218           self test on initialization.
219
220 #
221 # compression support is select'ed if needed
222 #
223 config 842_COMPRESS
224         select CRC32
225         tristate
226
227 config 842_DECOMPRESS
228         select CRC32
229         tristate
230
231 config ZLIB_INFLATE
232         tristate
233
234 config ZLIB_DEFLATE
235         tristate
236         select BITREVERSE
237
238 config LZO_COMPRESS
239         tristate
240
241 config LZO_DECOMPRESS
242         tristate
243
244 config LZ4_COMPRESS
245         tristate
246
247 config LZ4HC_COMPRESS
248         tristate
249
250 config LZ4_DECOMPRESS
251         tristate
252
253 config ZSTD_COMPRESS
254         select XXHASH
255         tristate
256
257 config ZSTD_DECOMPRESS
258         select XXHASH
259         tristate
260
261 source "lib/xz/Kconfig"
262
263 #
264 # These all provide a common interface (hence the apparent duplication with
265 # ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.)
266 #
267 config DECOMPRESS_GZIP
268         select ZLIB_INFLATE
269         tristate
270
271 config DECOMPRESS_BZIP2
272         tristate
273
274 config DECOMPRESS_LZMA
275         tristate
276
277 config DECOMPRESS_XZ
278         select XZ_DEC
279         tristate
280
281 config DECOMPRESS_LZO
282         select LZO_DECOMPRESS
283         tristate
284
285 config DECOMPRESS_LZ4
286         select LZ4_DECOMPRESS
287         tristate
288
289 #
290 # Generic allocator support is selected if needed
291 #
292 config GENERIC_ALLOCATOR
293         bool
294
295 #
296 # reed solomon support is select'ed if needed
297 #
298 config REED_SOLOMON
299         tristate
300         
301 config REED_SOLOMON_ENC8
302         bool
303
304 config REED_SOLOMON_DEC8
305         bool
306
307 config REED_SOLOMON_ENC16
308         bool
309
310 config REED_SOLOMON_DEC16
311         bool
312
313 #
314 # BCH support is selected if needed
315 #
316 config BCH
317         tristate
318
319 config BCH_CONST_PARAMS
320         bool
321         help
322           Drivers may select this option to force specific constant
323           values for parameters 'm' (Galois field order) and 't'
324           (error correction capability). Those specific values must
325           be set by declaring default values for symbols BCH_CONST_M
326           and BCH_CONST_T.
327           Doing so will enable extra compiler optimizations,
328           improving encoding and decoding performance up to 2x for
329           usual (m,t) values (typically such that m*t < 200).
330           When this option is selected, the BCH library supports
331           only a single (m,t) configuration. This is mainly useful
332           for NAND flash board drivers requiring known, fixed BCH
333           parameters.
334
335 config BCH_CONST_M
336         int
337         range 5 15
338         help
339           Constant value for Galois field order 'm'. If 'k' is the
340           number of data bits to protect, 'm' should be chosen such
341           that (k + m*t) <= 2**m - 1.
342           Drivers should declare a default value for this symbol if
343           they select option BCH_CONST_PARAMS.
344
345 config BCH_CONST_T
346         int
347         help
348           Constant value for error correction capability in bits 't'.
349           Drivers should declare a default value for this symbol if
350           they select option BCH_CONST_PARAMS.
351
352 #
353 # Textsearch support is select'ed if needed
354 #
355 config TEXTSEARCH
356         bool
357
358 config TEXTSEARCH_KMP
359         tristate
360
361 config TEXTSEARCH_BM
362         tristate
363
364 config TEXTSEARCH_FSM
365         tristate
366
367 config BTREE
368         bool
369
370 config INTERVAL_TREE
371         bool
372         help
373           Simple, embeddable, interval-tree. Can find the start of an
374           overlapping range in log(n) time and then iterate over all
375           overlapping nodes. The algorithm is implemented as an
376           augmented rbtree.
377
378           See:
379
380                 Documentation/rbtree.txt
381
382           for more information.
383
384 config RADIX_TREE_MULTIORDER
385         bool
386
387 config ASSOCIATIVE_ARRAY
388         bool
389         help
390           Generic associative array.  Can be searched and iterated over whilst
391           it is being modified.  It is also reasonably quick to search and
392           modify.  The algorithms are non-recursive, and the trees are highly
393           capacious.
394
395           See:
396
397                 Documentation/assoc_array.txt
398
399           for more information.
400
401 config HAS_IOMEM
402         bool
403         depends on !NO_IOMEM
404         select GENERIC_IO
405         default y
406
407 config HAS_IOPORT_MAP
408         bool
409         depends on HAS_IOMEM && !NO_IOPORT_MAP
410         default y
411
412 config HAS_DMA
413         bool
414         depends on !NO_DMA
415         default y
416
417 config CHECK_SIGNATURE
418         bool
419
420 config CPUMASK_OFFSTACK
421         bool "Force CPU masks off stack" if DEBUG_PER_CPU_MAPS
422         help
423           Use dynamic allocation for cpumask_var_t, instead of putting
424           them on the stack.  This is a bit more expensive, but avoids
425           stack overflow.
426
427 config CPU_RMAP
428         bool
429         depends on SMP
430
431 config DQL
432         bool
433
434 config GLOB
435         bool
436 #       This actually supports modular compilation, but the module overhead
437 #       is ridiculous for the amount of code involved.  Until an out-of-tree
438 #       driver asks for it, we'll just link it directly it into the kernel
439 #       when required.  Since we're ignoring out-of-tree users, there's also
440 #       no need bother prompting for a manual decision:
441 #       prompt "glob_match() function"
442         help
443           This option provides a glob_match function for performing
444           simple text pattern matching.  It originated in the ATA code
445           to blacklist particular drive models, but other device drivers
446           may need similar functionality.
447
448           All drivers in the Linux kernel tree that require this function
449           should automatically select this option.  Say N unless you
450           are compiling an out-of tree driver which tells you that it
451           depends on this.
452
453 config GLOB_SELFTEST
454         bool "glob self-test on init"
455         default n
456         depends on GLOB
457         help
458           This option enables a simple self-test of the glob_match
459           function on startup.  It is primarily useful for people
460           working on the code to ensure they haven't introduced any
461           regressions.
462
463           It only adds a little bit of code and slows kernel boot (or
464           module load) by a small amount, so you're welcome to play with
465           it, but you probably don't need it.
466
467 #
468 # Netlink attribute parsing support is select'ed if needed
469 #
470 config NLATTR
471         bool
472
473 #
474 # Generic 64-bit atomic support is selected if needed
475 #
476 config GENERIC_ATOMIC64
477        bool
478
479 config LRU_CACHE
480         tristate
481
482 config CLZ_TAB
483         bool
484
485 config CORDIC
486         tristate "CORDIC algorithm"
487         help
488           This option provides an implementation of the CORDIC algorithm;
489           calculations are in fixed point. Module will be called cordic.
490
491 config DDR
492         bool "JEDEC DDR data"
493         help
494           Data from JEDEC specs for DDR SDRAM memories,
495           particularly the AC timing parameters and addressing
496           information. This data is useful for drivers handling
497           DDR SDRAM controllers.
498
499 config IRQ_POLL
500         bool "IRQ polling library"
501         help
502           Helper library to poll interrupt mitigation using polling.
503
504 config MPILIB
505         tristate
506         select CLZ_TAB
507         help
508           Multiprecision maths library from GnuPG.
509           It is used to implement RSA digital signature verification,
510           which is used by IMA/EVM digital signature extension.
511
512 config SIGNATURE
513         tristate
514         depends on KEYS
515         select CRYPTO
516         select CRYPTO_SHA1
517         select MPILIB
518         help
519           Digital signature verification. Currently only RSA is supported.
520           Implementation is done using GnuPG MPI library
521
522 #
523 # libfdt files, only selected if needed.
524 #
525 config LIBFDT
526         bool
527
528 config OID_REGISTRY
529         tristate
530         help
531           Enable fast lookup object identifier registry.
532
533 config UCS2_STRING
534         tristate
535
536 source "lib/fonts/Kconfig"
537
538 config SG_SPLIT
539         def_bool n
540         help
541          Provides a helper to split scatterlists into chunks, each chunk being
542          a scatterlist. This should be selected by a driver or an API which
543          whishes to split a scatterlist amongst multiple DMA channels.
544
545 config SG_POOL
546         def_bool n
547         help
548          Provides a helper to allocate chained scatterlists. This should be
549          selected by a driver or an API which whishes to allocate chained
550          scatterlist.
551
552 #
553 # sg chaining option
554 #
555
556 config ARCH_HAS_SG_CHAIN
557         def_bool n
558
559 config ARCH_HAS_PMEM_API
560         bool
561
562 config ARCH_HAS_MMIO_FLUSH
563         bool
564
565 config STACKDEPOT
566         bool
567         select STACKTRACE
568
569 config SBITMAP
570         bool
571
572 endmenu