Bluetooth: Increase write data limit in l2cap connection.
[platform/kernel/linux-rpi.git] / drivers / char / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2 #
3 # Character device configuration
4 #
5
6 menu "Character devices"
7
8 source "drivers/char/broadcom/Kconfig"
9
10 source "drivers/tty/Kconfig"
11
12 config TTY_PRINTK
13         tristate "TTY driver to output user messages via printk"
14         depends on EXPERT && TTY
15         default n
16         help
17           If you say Y here, the support for writing user messages (i.e.
18           console messages) via printk is available.
19
20           The feature is useful to inline user messages with kernel
21           messages.
22           In order to use this feature, you should output user messages
23           to /dev/ttyprintk or redirect console to this TTY.
24
25           If unsure, say N.
26
27 config TTY_PRINTK_LEVEL
28         depends on TTY_PRINTK
29         int "ttyprintk log level (1-7)"
30         range 1 7
31         default "6"
32         help
33           Printk log level to use for ttyprintk messages.
34
35 config PRINTER
36         tristate "Parallel printer support"
37         depends on PARPORT
38         help
39           If you intend to attach a printer to the parallel port of your Linux
40           box (as opposed to using a serial printer; if the connector at the
41           printer has 9 or 25 holes ["female"], then it's serial), say Y.
42           Also read the Printing-HOWTO, available from
43           <https://www.tldp.org/docs.html#howto>.
44
45           It is possible to share one parallel port among several devices
46           (e.g. printer and ZIP drive) and it is safe to compile the
47           corresponding drivers into the kernel.
48
49           To compile this driver as a module, choose M here and read
50           <file:Documentation/admin-guide/parport.rst>.  The module will be called lp.
51
52           If you have several parallel ports, you can specify which ports to
53           use with the "lp" kernel command line option.  (Try "man bootparam"
54           or see the documentation of your boot loader (lilo or loadlin) about
55           how to pass options to the kernel at boot time.)  The syntax of the
56           "lp" command line option can be found in <file:drivers/char/lp.c>.
57
58           If you have more than 8 printers, you need to increase the LP_NO
59           macro in lp.c and the PARPORT_MAX macro in parport.h.
60
61 config LP_CONSOLE
62         bool "Support for console on line printer"
63         depends on PRINTER
64         help
65           If you want kernel messages to be printed out as they occur, you
66           can have a console on the printer. This option adds support for
67           doing that; to actually get it to happen you need to pass the
68           option "console=lp0" to the kernel at boot time.
69
70           If the printer is out of paper (or off, or unplugged, or too
71           busy..) the kernel will stall until the printer is ready again.
72           By defining CONSOLE_LP_STRICT to 0 (at your own risk) you
73           can make the kernel continue when this happens,
74           but it'll lose the kernel messages.
75
76           If unsure, say N.
77
78 config PPDEV
79         tristate "Support for user-space parallel port device drivers"
80         depends on PARPORT
81         help
82           Saying Y to this adds support for /dev/parport device nodes.  This
83           is needed for programs that want portable access to the parallel
84           port, for instance deviceid (which displays Plug-and-Play device
85           IDs).
86
87           This is the parallel port equivalent of SCSI generic support (sg).
88           It is safe to say N to this -- it is not needed for normal printing
89           or parallel port CD-ROM/disk support.
90
91           To compile this driver as a module, choose M here: the
92           module will be called ppdev.
93
94           If unsure, say N.
95
96 config VIRTIO_CONSOLE
97         tristate "Virtio console"
98         depends on TTY
99         select HVC_DRIVER
100         select VIRTIO
101         help
102           Virtio console for use with hypervisors.
103
104           Also serves as a general-purpose serial device for data
105           transfer between the guest and host.  Character devices at
106           /dev/vportNpn will be created when corresponding ports are
107           found, where N is the device number and n is the port number
108           within that device.  If specified by the host, a sysfs
109           attribute called 'name' will be populated with a name for
110           the port which can be used by udev scripts to create a
111           symlink to the device.
112
113 config IBM_BSR
114         tristate "IBM POWER Barrier Synchronization Register support"
115         depends on PPC_PSERIES
116         help
117           This devices exposes a hardware mechanism for fast synchronization
118           of threads across a large system which avoids bouncing a cacheline
119           between several cores on a system
120
121 config POWERNV_OP_PANEL
122         tristate "IBM POWERNV Operator Panel Display support"
123         depends on PPC_POWERNV
124         default m
125         help
126           If you say Y here, a special character device node, /dev/op_panel,
127           will be created which exposes the operator panel display on IBM
128           Power Systems machines with FSPs.
129
130           If you don't require access to the operator panel display from user
131           space, say N.
132
133           If unsure, say M here to build it as a module called powernv-op-panel.
134
135 source "drivers/char/ipmi/Kconfig"
136
137 config DS1620
138         tristate "NetWinder thermometer support"
139         depends on ARCH_NETWINDER
140         help
141           Say Y here to include support for the thermal management hardware
142           found in the NetWinder. This driver allows the user to control the
143           temperature set points and to read the current temperature.
144
145           It is also possible to say M here to build it as a module (ds1620)
146           It is recommended to be used on a NetWinder, but it is not a
147           necessity.
148
149 config NWBUTTON
150         tristate "NetWinder Button"
151         depends on ARCH_NETWINDER
152         help
153           If you say Y here and create a character device node /dev/nwbutton
154           with major and minor numbers 10 and 158 ("man mknod"), then every
155           time the orange button is pressed a number of times, the number of
156           times the button was pressed will be written to that device.
157
158           This is most useful for applications, as yet unwritten, which
159           perform actions based on how many times the button is pressed in a
160           row.
161
162           Do not hold the button down for too long, as the driver does not
163           alter the behaviour of the hardware reset circuitry attached to the
164           button; it will still execute a hard reset if the button is held
165           down for longer than approximately five seconds.
166
167           To compile this driver as a module, choose M here: the
168           module will be called nwbutton.
169
170           Most people will answer Y to this question and "Reboot Using Button"
171           below to be able to initiate a system shutdown from the button.
172
173 config NWBUTTON_REBOOT
174         bool "Reboot Using Button"
175         depends on NWBUTTON
176         help
177           If you say Y here, then you will be able to initiate a system
178           shutdown and reboot by pressing the orange button a number of times.
179           The number of presses to initiate the shutdown is two by default,
180           but this can be altered by modifying the value of NUM_PRESSES_REBOOT
181           in nwbutton.h and recompiling the driver or, if you compile the
182           driver as a module, you can specify the number of presses at load
183           time with "insmod button reboot_count=<something>".
184
185 config NWFLASH
186         tristate "NetWinder flash support"
187         depends on ARCH_NETWINDER
188         help
189           If you say Y here and create a character device /dev/flash with
190           major 10 and minor 160 you can manipulate the flash ROM containing
191           the NetWinder firmware. Be careful as accidentally overwriting the
192           flash contents can render your computer unbootable. On no account
193           allow random users access to this device. :-)
194
195           To compile this driver as a module, choose M here: the
196           module will be called nwflash.
197
198           If you're not sure, say N.
199
200 source "drivers/char/hw_random/Kconfig"
201
202 config DTLK
203         tristate "Double Talk PC internal speech card support"
204         depends on ISA
205         help
206           This driver is for the DoubleTalk PC, a speech synthesizer
207           manufactured by RC Systems (<https://www.rcsys.com/>).  It is also
208           called the `internal DoubleTalk'.
209
210           To compile this driver as a module, choose M here: the
211           module will be called dtlk.
212
213 config XILINX_HWICAP
214         tristate "Xilinx HWICAP Support"
215         depends on MICROBLAZE
216         help
217           This option enables support for Xilinx Internal Configuration
218           Access Port (ICAP) driver.  The ICAP is used on Xilinx Virtex
219           FPGA platforms to partially reconfigure the FPGA at runtime.
220
221           If unsure, say N.
222
223 config APPLICOM
224         tristate "Applicom intelligent fieldbus card support"
225         depends on PCI
226         help
227           This driver provides the kernel-side support for the intelligent
228           fieldbus cards made by Applicom International. More information
229           about these cards can be found on the WWW at the address
230           <https://www.applicom-int.com/>, or by email from David Woodhouse
231           <dwmw2@infradead.org>.
232
233           To compile this driver as a module, choose M here: the
234           module will be called applicom.
235
236           If unsure, say N.
237
238 config SONYPI
239         tristate "Sony Vaio Programmable I/O Control Device support"
240         depends on X86_32 && PCI && INPUT
241         help
242           This driver enables access to the Sony Programmable I/O Control
243           Device which can be found in many (all ?) Sony Vaio laptops.
244
245           If you have one of those laptops, read
246           <file:Documentation/admin-guide/laptops/sonypi.rst>, and say Y or M here.
247
248           To compile this driver as a module, choose M here: the
249           module will be called sonypi.
250
251 config GPIO_TB0219
252         tristate "TANBAC TB0219 GPIO support"
253         depends on TANBAC_TB022X
254         select GPIO_VR41XX
255
256 source "drivers/char/pcmcia/Kconfig"
257
258 config MWAVE
259         tristate "ACP Modem (Mwave) support"
260         depends on X86 && TTY
261         select SERIAL_8250
262         help
263           The ACP modem (Mwave) for Linux is a WinModem. It is composed of a
264           kernel driver and a user level application. Together these components
265           support direct attachment to public switched telephone networks (PSTNs)
266           and support selected world wide countries.
267
268           This version of the ACP Modem driver supports the IBM Thinkpad 600E,
269           600, and 770 that include on board ACP modem hardware.
270
271           The modem also supports the standard communications port interface
272           (ttySx) and is compatible with the Hayes AT Command Set.
273
274           The user level application needed to use this driver can be found at
275           the IBM Linux Technology Center (LTC) web site:
276           <http://www.ibm.com/linux/ltc/>.
277
278           If you own one of the above IBM Thinkpads which has the Mwave chipset
279           in it, say Y.
280
281           To compile this driver as a module, choose M here: the
282           module will be called mwave.
283
284 config SCx200_GPIO
285         tristate "NatSemi SCx200 GPIO Support"
286         depends on SCx200
287         select NSC_GPIO
288         help
289           Give userspace access to the GPIO pins on the National
290           Semiconductor SCx200 processors.
291
292           If compiled as a module, it will be called scx200_gpio.
293
294 config PC8736x_GPIO
295         tristate "NatSemi PC8736x GPIO Support"
296         depends on X86_32 && !UML
297         default SCx200_GPIO     # mostly N
298         select NSC_GPIO         # needed for support routines
299         help
300           Give userspace access to the GPIO pins on the National
301           Semiconductor PC-8736x (x=[03456]) SuperIO chip.  The chip
302           has multiple functional units, inc several managed by
303           hwmon/pc87360 driver.  Tested with PC-87366
304
305           If compiled as a module, it will be called pc8736x_gpio.
306
307 config NSC_GPIO
308         tristate "NatSemi Base GPIO Support"
309         depends on X86_32
310         # selected by SCx200_GPIO and PC8736x_GPIO
311         # what about 2 selectors differing: m != y
312         help
313           Common support used (and needed) by scx200_gpio and
314           pc8736x_gpio drivers.  If those drivers are built as
315           modules, this one will be too, named nsc_gpio
316
317 config DEVMEM
318         bool "/dev/mem virtual device support"
319         default y
320         help
321           Say Y here if you want to support the /dev/mem device.
322           The /dev/mem device is used to access areas of physical
323           memory.
324           When in doubt, say "Y".
325
326 config NVRAM
327         tristate "/dev/nvram support"
328         depends on X86 || HAVE_ARCH_NVRAM_OPS
329         default M68K || PPC
330         help
331           If you say Y here and create a character special file /dev/nvram
332           with major number 10 and minor number 144 using mknod ("man mknod"),
333           you get read and write access to the non-volatile memory.
334
335           /dev/nvram may be used to view settings in NVRAM or to change them
336           (with some utility). It could also be used to frequently
337           save a few bits of very important data that may not be lost over
338           power-off and for which writing to disk is too insecure. Note
339           however that most NVRAM space in a PC belongs to the BIOS and you
340           should NEVER idly tamper with it. See Ralf Brown's interrupt list
341           for a guide to the use of CMOS bytes by your BIOS.
342
343           This memory is conventionally called "NVRAM" on PowerPC machines,
344           "CMOS RAM" on PCs, "NVRAM" on Ataris and "PRAM" on Macintoshes.
345
346           To compile this driver as a module, choose M here: the
347           module will be called nvram.
348
349 config DEVPORT
350         bool "/dev/port character device"
351         depends on ISA || PCI
352         default y
353         help
354           Say Y here if you want to support the /dev/port device. The /dev/port
355           device is similar to /dev/mem, but for I/O ports.
356
357 config HPET
358         bool "HPET - High Precision Event Timer" if (X86 || IA64)
359         default n
360         depends on ACPI
361         help
362           If you say Y here, you will have a miscdevice named "/dev/hpet/".  Each
363           open selects one of the timers supported by the HPET.  The timers are
364           non-periodic and/or periodic.
365
366 config HPET_MMAP
367         bool "Allow mmap of HPET"
368         default y
369         depends on HPET
370         help
371           If you say Y here, user applications will be able to mmap
372           the HPET registers.
373
374 config HPET_MMAP_DEFAULT
375         bool "Enable HPET MMAP access by default"
376         default y
377         depends on HPET_MMAP
378         help
379           In some hardware implementations, the page containing HPET
380           registers may also contain other things that shouldn't be
381           exposed to the user.  This option selects the default (if
382           kernel parameter hpet_mmap is not set) user access to the
383           registers for applications that require it.
384
385 config HANGCHECK_TIMER
386         tristate "Hangcheck timer"
387         depends on X86 || IA64 || PPC64 || S390
388         help
389           The hangcheck-timer module detects when the system has gone
390           out to lunch past a certain margin.  It can reboot the system
391           or merely print a warning.
392
393 config UV_MMTIMER
394         tristate "UV_MMTIMER Memory mapped RTC for SGI UV"
395         depends on X86_UV
396         default m
397         help
398           The uv_mmtimer device allows direct userspace access to the
399           UV system timer.
400
401 source "drivers/char/tpm/Kconfig"
402
403 config TELCLOCK
404         tristate "Telecom clock driver for ATCA SBC"
405         depends on X86
406         default n
407         help
408           The telecom clock device is specific to the MPCBL0010 and MPCBL0050
409           ATCA computers and allows direct userspace access to the
410           configuration of the telecom clock configuration settings.  This
411           device is used for hardware synchronization across the ATCA backplane
412           fabric.  Upon loading, the driver exports a sysfs directory,
413           /sys/devices/platform/telco_clock, with a number of files for
414           controlling the behavior of this hardware.
415
416 source "drivers/s390/char/Kconfig"
417
418 source "drivers/char/xillybus/Kconfig"
419
420 config ADI
421         tristate "SPARC Privileged ADI driver"
422         depends on SPARC64
423         default m
424         help
425           SPARC M7 and newer processors utilize ADI (Application Data
426           Integrity) to version and protect memory.  This driver provides
427           read/write access to the ADI versions for privileged processes.
428           This feature is also known as MCD (Memory Corruption Detection)
429           and SSM (Silicon Secured Memory).  Intended consumers of this
430           driver include crash and makedumpfile.
431
432 config RANDOM_TRUST_CPU
433         bool "Initialize RNG using CPU RNG instructions"
434         default y
435         depends on ARCH_RANDOM
436         help
437           Initialize the RNG using random numbers supplied by the CPU's
438           RNG instructions (e.g. RDRAND), if supported and available. These
439           random numbers are never used directly, but are rather hashed into
440           the main input pool, and this happens regardless of whether or not
441           this option is enabled. Instead, this option controls whether the
442           they are credited and hence can initialize the RNG. Additionally,
443           other sources of randomness are always used, regardless of this
444           setting.  Enabling this implies trusting that the CPU can supply high
445           quality and non-backdoored random numbers.
446
447           Say Y here unless you have reason to mistrust your CPU or believe
448           its RNG facilities may be faulty. This may also be configured at
449           boot time with "random.trust_cpu=on/off".
450
451 config RANDOM_TRUST_BOOTLOADER
452         bool "Initialize RNG using bootloader-supplied seed"
453         default y
454         help
455           Initialize the RNG using a seed supplied by the bootloader or boot
456           environment (e.g. EFI or a bootloader-generated device tree). This
457           seed is not used directly, but is rather hashed into the main input
458           pool, and this happens regardless of whether or not this option is
459           enabled. Instead, this option controls whether the seed is credited
460           and hence can initialize the RNG. Additionally, other sources of
461           randomness are always used, regardless of this setting. Enabling
462           this implies trusting that the bootloader can supply high quality and
463           non-backdoored seeds.
464
465           Say Y here unless you have reason to mistrust your bootloader or
466           believe its RNG facilities may be faulty. This may also be configured
467           at boot time with "random.trust_bootloader=on/off".
468
469 endmenu