Merge tag 'nfsd-4.8' of git://linux-nfs.org/~bfields/linux
[deliverable/linux.git] / drivers / char / Kconfig
CommitLineData
1da177e4
LT
1#
2# Character device configuration
3#
4
5menu "Character devices"
6
bdcffc5a 7source "drivers/tty/Kconfig"
13ae6645 8
73f0718e
RW
9config DEVMEM
10 bool "/dev/mem virtual device support"
11 default y
12 help
13 Say Y here if you want to support the /dev/mem device.
14 The /dev/mem device is used to access areas of physical
15 memory.
16 When in doubt, say "Y".
17
b781ecb6
AV
18config DEVKMEM
19 bool "/dev/kmem virtual device support"
20 default y
21 help
22 Say Y here if you want to support the /dev/kmem device. The
23 /dev/kmem device is rarely used, but can be used for certain
24 kind of kernel debugging operations.
25 When in doubt, say "N".
26
1da177e4
LT
27config SGI_SNSC
28 bool "SGI Altix system controller communication support"
29 depends on (IA64_SGI_SN2 || IA64_GENERIC)
30 help
31 If you have an SGI Altix and you want to enable system
32 controller communication from user space (you want this!),
33 say Y. Otherwise, say N.
34
e1e19747
BL
35config SGI_TIOCX
36 bool "SGI TIO CX driver support"
37 depends on (IA64_SGI_SN2 || IA64_GENERIC)
38 help
39 If you have an SGI Altix and you have fpga devices attached
40 to your TIO, say Y here, otherwise say N.
41
42config SGI_MBCS
43 tristate "SGI FPGA Core Services driver support"
ae40aae9 44 depends on SGI_TIOCX
e1e19747
BL
45 help
46 If you have an SGI Altix with an attached SABrick
47 say Y or M here, otherwise say N.
48
ab4382d2 49source "drivers/tty/serial/Kconfig"
1da177e4 50
24b4b67d 51config TTY_PRINTK
b24313a8 52 tristate "TTY driver to output user messages via printk"
4f73bc4d 53 depends on EXPERT && TTY
24b4b67d
SP
54 default n
55 ---help---
56 If you say Y here, the support for writing user messages (i.e.
57 console messages) via printk is available.
58
59 The feature is useful to inline user messages with kernel
60 messages.
61 In order to use this feature, you should output user messages
62 to /dev/ttyprintk or redirect console to this TTY.
63
64 If unsure, say N.
65
2dc63a84
MF
66config BFIN_OTP
67 tristate "Blackfin On-Chip OTP Memory Support"
f69b2d7e 68 depends on BLACKFIN && (BF51x || BF52x || BF54x)
2dc63a84
MF
69 default y
70 help
71 If you say Y here, you will get support for a character device
72 interface into the One Time Programmable memory pages that are
73 stored on the Blackfin processor. This will not get you access
74 to the secure memory pages however. You will need to write your
75 own secure code and reader for that.
76
77 To compile this driver as a module, choose M here: the module
78 will be called bfin-otp.
79
80 If unsure, it is safe to say Y.
81
82config BFIN_OTP_WRITE_ENABLE
83 bool "Enable writing support of OTP pages"
84 depends on BFIN_OTP
85 default n
86 help
87 If you say Y here, you will enable support for writing of the
88 OTP pages. This is dangerous by nature as you can only program
89 the pages once, so only enable this option when you actually
90 need it so as to not inadvertently clobber data.
91
92 If unsure, say N.
93
1da177e4
LT
94config PRINTER
95 tristate "Parallel printer support"
96 depends on PARPORT
97 ---help---
98 If you intend to attach a printer to the parallel port of your Linux
99 box (as opposed to using a serial printer; if the connector at the
100 printer has 9 or 25 holes ["female"], then it's serial), say Y.
101 Also read the Printing-HOWTO, available from
102 <http://www.tldp.org/docs.html#howto>.
103
104 It is possible to share one parallel port among several devices
105 (e.g. printer and ZIP drive) and it is safe to compile the
106 corresponding drivers into the kernel.
107
108 To compile this driver as a module, choose M here and read
109 <file:Documentation/parport.txt>. The module will be called lp.
110
111 If you have several parallel ports, you can specify which ports to
112 use with the "lp" kernel command line option. (Try "man bootparam"
113 or see the documentation of your boot loader (lilo or loadlin) about
114 how to pass options to the kernel at boot time.) The syntax of the
115 "lp" command line option can be found in <file:drivers/char/lp.c>.
116
117 If you have more than 8 printers, you need to increase the LP_NO
118 macro in lp.c and the PARPORT_MAX macro in parport.h.
119
120config LP_CONSOLE
121 bool "Support for console on line printer"
122 depends on PRINTER
123 ---help---
124 If you want kernel messages to be printed out as they occur, you
125 can have a console on the printer. This option adds support for
126 doing that; to actually get it to happen you need to pass the
127 option "console=lp0" to the kernel at boot time.
128
129 If the printer is out of paper (or off, or unplugged, or too
130 busy..) the kernel will stall until the printer is ready again.
131 By defining CONSOLE_LP_STRICT to 0 (at your own risk) you
132 can make the kernel continue when this happens,
133 but it'll lose the kernel messages.
134
135 If unsure, say N.
136
137config PPDEV
138 tristate "Support for user-space parallel port device drivers"
139 depends on PARPORT
140 ---help---
141 Saying Y to this adds support for /dev/parport device nodes. This
142 is needed for programs that want portable access to the parallel
143 port, for instance deviceid (which displays Plug-and-Play device
144 IDs).
145
146 This is the parallel port equivalent of SCSI generic support (sg).
147 It is safe to say N to this -- it is not needed for normal printing
148 or parallel port CD-ROM/disk support.
149
150 To compile this driver as a module, choose M here: the
151 module will be called ppdev.
152
153 If unsure, say N.
154
bdcffc5a 155source "drivers/tty/hvc/Kconfig"
5427bcf5 156
31610434 157config VIRTIO_CONSOLE
7721c494 158 tristate "Virtio console"
4f73bc4d 159 depends on VIRTIO && TTY
31610434 160 select HVC_DRIVER
7721c494
CB
161 help
162 Virtio console for use with lguest and other hypervisors.
163
fb08bd27
AS
164 Also serves as a general-purpose serial device for data
165 transfer between the guest and host. Character devices at
166 /dev/vportNpn will be created when corresponding ports are
167 found, where N is the device number and n is the port number
168 within that device. If specified by the host, a sysfs
169 attribute called 'name' will be populated with a name for
170 the port which can be used by udev scripts to create a
171 symlink to the device.
31610434 172
fe9e8d53
SR
173config IBM_BSR
174 tristate "IBM POWER Barrier Synchronization Register support"
175 depends on PPC_PSERIES
176 help
177 This devices exposes a hardware mechanism for fast synchronization
178 of threads across a large system which avoids bouncing a cacheline
179 between several cores on a system
180
43a1dd9b
SJS
181config POWERNV_OP_PANEL
182 tristate "IBM POWERNV Operator Panel Display support"
183 depends on PPC_POWERNV
184 default m
185 help
186 If you say Y here, a special character device node, /dev/op_panel,
187 will be created which exposes the operator panel display on IBM
188 Power Systems machines with FSPs.
189
190 If you don't require access to the operator panel display from user
191 space, say N.
192
193 If unsure, say M here to build it as a module called powernv-op-panel.
194
1da177e4
LT
195source "drivers/char/ipmi/Kconfig"
196
1da177e4
LT
197config DS1620
198 tristate "NetWinder thermometer support"
199 depends on ARCH_NETWINDER
200 help
201 Say Y here to include support for the thermal management hardware
202 found in the NetWinder. This driver allows the user to control the
203 temperature set points and to read the current temperature.
204
205 It is also possible to say M here to build it as a module (ds1620)
206 It is recommended to be used on a NetWinder, but it is not a
207 necessity.
208
209config NWBUTTON
210 tristate "NetWinder Button"
211 depends on ARCH_NETWINDER
212 ---help---
213 If you say Y here and create a character device node /dev/nwbutton
214 with major and minor numbers 10 and 158 ("man mknod"), then every
215 time the orange button is pressed a number of times, the number of
216 times the button was pressed will be written to that device.
217
218 This is most useful for applications, as yet unwritten, which
219 perform actions based on how many times the button is pressed in a
220 row.
221
222 Do not hold the button down for too long, as the driver does not
223 alter the behaviour of the hardware reset circuitry attached to the
224 button; it will still execute a hard reset if the button is held
225 down for longer than approximately five seconds.
226
227 To compile this driver as a module, choose M here: the
228 module will be called nwbutton.
229
230 Most people will answer Y to this question and "Reboot Using Button"
231 below to be able to initiate a system shutdown from the button.
232
233config NWBUTTON_REBOOT
234 bool "Reboot Using Button"
235 depends on NWBUTTON
236 help
237 If you say Y here, then you will be able to initiate a system
238 shutdown and reboot by pressing the orange button a number of times.
239 The number of presses to initiate the shutdown is two by default,
240 but this can be altered by modifying the value of NUM_PRESSES_REBOOT
241 in nwbutton.h and recompiling the driver or, if you compile the
242 driver as a module, you can specify the number of presses at load
243 time with "insmod button reboot_count=<something>".
244
245config NWFLASH
246 tristate "NetWinder flash support"
247 depends on ARCH_NETWINDER
248 ---help---
249 If you say Y here and create a character device /dev/flash with
250 major 10 and minor 160 you can manipulate the flash ROM containing
251 the NetWinder firmware. Be careful as accidentally overwriting the
252 flash contents can render your computer unbootable. On no account
253 allow random users access to this device. :-)
254
255 To compile this driver as a module, choose M here: the
256 module will be called nwflash.
257
258 If you're not sure, say N.
259
844dd05f
MB
260source "drivers/char/hw_random/Kconfig"
261
1da177e4
LT
262config NVRAM
263 tristate "/dev/nvram support"
807a96cd 264 depends on ATARI || X86 || (ARM && RTC_DRV_CMOS) || GENERIC_NVRAM
1da177e4
LT
265 ---help---
266 If you say Y here and create a character special file /dev/nvram
267 with major number 10 and minor number 144 using mknod ("man mknod"),
268 you get read and write access to the extra bytes of non-volatile
269 memory in the real time clock (RTC), which is contained in every PC
270 and most Ataris. The actual number of bytes varies, depending on the
271 nvram in the system, but is usually 114 (128-14 for the RTC).
272
273 This memory is conventionally called "CMOS RAM" on PCs and "NVRAM"
274 on Ataris. /dev/nvram may be used to view settings there, or to
275 change them (with some utility). It could also be used to frequently
276 save a few bits of very important data that may not be lost over
277 power-off and for which writing to disk is too insecure. Note
278 however that most NVRAM space in a PC belongs to the BIOS and you
279 should NEVER idly tamper with it. See Ralf Brown's interrupt list
280 for a guide to the use of CMOS bytes by your BIOS.
281
282 On Atari machines, /dev/nvram is always configured and does not need
283 to be selected.
284
285 To compile this driver as a module, choose M here: the
286 module will be called nvram.
287
c7500900
DB
288#
289# These legacy RTC drivers just cause too many conflicts with the generic
290# RTC framework ... let's not even try to coexist any more.
291#
292if RTC_LIB=n
293
1da177e4 294config RTC
e6d2bb2b 295 tristate "Enhanced Real Time Clock Support (legacy PC RTC driver)"
2fad6224 296 depends on ALPHA || (MIPS && MACH_LOONGSON64) || MN10300
1da177e4
LT
297 ---help---
298 If you say Y here and create a character special file /dev/rtc with
299 major number 10 and minor number 135 using mknod ("man mknod"), you
300 will get access to the real time clock (or hardware clock) built
301 into your computer.
302
303 Every PC has such a clock built in. It can be used to generate
304 signals from as low as 1Hz up to 8192Hz, and can also be used
305 as a 24 hour alarm. It reports status information via the file
306 /proc/driver/rtc and its behaviour is set by various ioctls on
307 /dev/rtc.
308
309 If you run Linux on a multiprocessor machine and said Y to
310 "Symmetric Multi Processing" above, you should say Y here to read
311 and set the RTC in an SMP compatible fashion.
312
313 If you think you have a use for such a device (such as periodic data
314 sampling), then say Y here, and read <file:Documentation/rtc.txt>
315 for details.
316
317 To compile this driver as a module, choose M here: the
318 module will be called rtc.
319
2240598c
AV
320config JS_RTC
321 tristate "Enhanced Real Time Clock Support"
322 depends on SPARC32 && PCI
323 ---help---
324 If you say Y here and create a character special file /dev/rtc with
325 major number 10 and minor number 135 using mknod ("man mknod"), you
326 will get access to the real time clock (or hardware clock) built
327 into your computer.
328
329 Every PC has such a clock built in. It can be used to generate
330 signals from as low as 1Hz up to 8192Hz, and can also be used
331 as a 24 hour alarm. It reports status information via the file
332 /proc/driver/rtc and its behaviour is set by various ioctls on
333 /dev/rtc.
334
335 If you think you have a use for such a device (such as periodic data
336 sampling), then say Y here, and read <file:Documentation/rtc.txt>
337 for details.
338
339 To compile this driver as a module, choose M here: the
340 module will be called js-rtc.
341
1da177e4
LT
342config GEN_RTC
343 tristate "Generic /dev/rtc emulation"
ba6ed7e1
AB
344 depends on RTC!=y
345 depends on ALPHA || M68K || MN10300 || PARISC || PPC || X86
1da177e4
LT
346 ---help---
347 If you say Y here and create a character special file /dev/rtc with
348 major number 10 and minor number 135 using mknod ("man mknod"), you
349 will get access to the real time clock (or hardware clock) built
350 into your computer.
351
352 It reports status information via the file /proc/driver/rtc and its
353 behaviour is set by various ioctls on /dev/rtc. If you enable the
354 "extended RTC operation" below it will also provide an emulation
355 for RTC_UIE which is required by some programs and may improve
356 precision in some cases.
357
358 To compile this driver as a module, choose M here: the
359 module will be called genrtc.
360
361config GEN_RTC_X
362 bool "Extended RTC operation"
363 depends on GEN_RTC
364 help
365 Provides an emulation for RTC_UIE which is required by some programs
366 and may improve precision of the generic RTC support in some cases.
367
368config EFI_RTC
369 bool "EFI Real Time Clock Services"
370 depends on IA64
371
372config DS1302
373 tristate "DS1302 RTC support"
374 depends on M32R && (PLAT_M32700UT || PLAT_OPSPUT)
375 help
376 If you say Y here and create a character special file /dev/rtc with
377 major number 121 and minor number 0 using mknod ("man mknod"), you
378 will get access to the real time clock (or hardware clock) built
379 into your computer.
380
c7500900
DB
381endif # RTC_LIB
382
1da177e4
LT
383config DTLK
384 tristate "Double Talk PC internal speech card support"
eeca7a36 385 depends on ISA
1da177e4
LT
386 help
387 This driver is for the DoubleTalk PC, a speech synthesizer
388 manufactured by RC Systems (<http://www.rcsys.com/>). It is also
389 called the `internal DoubleTalk'.
390
391 To compile this driver as a module, choose M here: the
392 module will be called dtlk.
393
ef141a0b
SN
394config XILINX_HWICAP
395 tristate "Xilinx HWICAP Support"
6fa612b5 396 depends on XILINX_VIRTEX || MICROBLAZE
ef141a0b
SN
397 help
398 This option enables support for Xilinx Internal Configuration
399 Access Port (ICAP) driver. The ICAP is used on Xilinx Virtex
400 FPGA platforms to partially reconfigure the FPGA at runtime.
401
402 If unsure, say N.
403
1da177e4
LT
404config R3964
405 tristate "Siemens R3964 line discipline"
4f73bc4d 406 depends on TTY
1da177e4
LT
407 ---help---
408 This driver allows synchronous communication with devices using the
409 Siemens R3964 packet protocol. Unless you are dealing with special
410 hardware like PLCs, you are unlikely to need this.
411
412 To compile this driver as a module, choose M here: the
413 module will be called n_r3964.
414
415 If unsure, say N.
416
417config APPLICOM
418 tristate "Applicom intelligent fieldbus card support"
419 depends on PCI
420 ---help---
421 This driver provides the kernel-side support for the intelligent
422 fieldbus cards made by Applicom International. More information
423 about these cards can be found on the WWW at the address
424 <http://www.applicom-int.com/>, or by email from David Woodhouse
425 <dwmw2@infradead.org>.
426
427 To compile this driver as a module, choose M here: the
428 module will be called applicom.
429
430 If unsure, say N.
431
432config SONYPI
65929215 433 tristate "Sony Vaio Programmable I/O Control Device support"
57dcf020 434 depends on X86_32 && PCI && INPUT
1da177e4
LT
435 ---help---
436 This driver enables access to the Sony Programmable I/O Control
437 Device which can be found in many (all ?) Sony Vaio laptops.
438
439 If you have one of those laptops, read
018a651a 440 <file:Documentation/laptops/sonypi.txt>, and say Y or M here.
1da177e4
LT
441
442 To compile this driver as a module, choose M here: the
443 module will be called sonypi.
444
09762516
YY
445config GPIO_TB0219
446 tristate "TANBAC TB0219 GPIO support"
bef1f402 447 depends on TANBAC_TB022X
584e1236 448 select GPIO_VR41XX
1da177e4 449
1da177e4
LT
450source "drivers/char/pcmcia/Kconfig"
451
452config MWAVE
453 tristate "ACP Modem (Mwave) support"
4f73bc4d 454 depends on X86 && TTY
1da177e4
LT
455 select SERIAL_8250
456 ---help---
457 The ACP modem (Mwave) for Linux is a WinModem. It is composed of a
458 kernel driver and a user level application. Together these components
459 support direct attachment to public switched telephone networks (PSTNs)
460 and support selected world wide countries.
461
462 This version of the ACP Modem driver supports the IBM Thinkpad 600E,
463 600, and 770 that include on board ACP modem hardware.
464
465 The modem also supports the standard communications port interface
466 (ttySx) and is compatible with the Hayes AT Command Set.
467
468 The user level application needed to use this driver can be found at
469 the IBM Linux Technology Center (LTC) web site:
470 <http://www.ibm.com/linux/ltc/>.
471
472 If you own one of the above IBM Thinkpads which has the Mwave chipset
473 in it, say Y.
474
475 To compile this driver as a module, choose M here: the
476 module will be called mwave.
477
478config SCx200_GPIO
479 tristate "NatSemi SCx200 GPIO Support"
480 depends on SCx200
7a8e2a5e 481 select NSC_GPIO
1da177e4
LT
482 help
483 Give userspace access to the GPIO pins on the National
484 Semiconductor SCx200 processors.
485
486 If compiled as a module, it will be called scx200_gpio.
487
7a8e2a5e
JC
488config PC8736x_GPIO
489 tristate "NatSemi PC8736x GPIO Support"
3369465e 490 depends on X86_32 && !UML
7a8e2a5e
JC
491 default SCx200_GPIO # mostly N
492 select NSC_GPIO # needed for support routines
493 help
494 Give userspace access to the GPIO pins on the National
495 Semiconductor PC-8736x (x=[03456]) SuperIO chip. The chip
496 has multiple functional units, inc several managed by
497 hwmon/pc87360 driver. Tested with PC-87366
498
499 If compiled as a module, it will be called pc8736x_gpio.
500
501config NSC_GPIO
502 tristate "NatSemi Base GPIO Support"
699352c3 503 depends on X86_32
7a8e2a5e
JC
504 # selected by SCx200_GPIO and PC8736x_GPIO
505 # what about 2 selectors differing: m != y
506 help
507 Common support used (and needed) by scx200_gpio and
508 pc8736x_gpio drivers. If those drivers are built as
509 modules, this one will be too, named nsc_gpio
510
1da177e4 511config RAW_DRIVER
abd4aa5a 512 tristate "RAW driver (/dev/raw/rawN)"
9361401e 513 depends on BLOCK
1da177e4 514 help
abd4aa5a
DJ
515 The raw driver permits block devices to be bound to /dev/raw/rawN.
516 Once bound, I/O against /dev/raw/rawN uses efficient zero-copy I/O.
1da177e4
LT
517 See the raw(8) manpage for more details.
518
abd4aa5a 519 Applications should preferably open the device (eg /dev/hda1)
1da177e4
LT
520 with the O_DIRECT flag.
521
0de502aa 522config MAX_RAW_DEVS
0078bff5 523 int "Maximum number of RAW devices to support (1-65536)"
0de502aa 524 depends on RAW_DRIVER
7143479a 525 range 1 65536
0de502aa
AM
526 default "256"
527 help
528 The maximum number of RAW devices that are supported.
529 Default is 256. Increase this number in case you need lots of
530 raw devices.
531
1da177e4
LT
532config HPET
533 bool "HPET - High Precision Event Timer" if (X86 || IA64)
534 default n
535 depends on ACPI
536 help
537 If you say Y here, you will have a miscdevice named "/dev/hpet/". Each
538 open selects one of the timers supported by the HPET. The timers are
3cb2fccc 539 non-periodic and/or periodic.
1da177e4 540
1da177e4
LT
541config HPET_MMAP
542 bool "Allow mmap of HPET"
543 default y
544 depends on HPET
545 help
546 If you say Y here, user applications will be able to mmap
547 the HPET registers.
548
3d035f58
PB
549config HPET_MMAP_DEFAULT
550 bool "Enable HPET MMAP access by default"
551 default y
552 depends on HPET_MMAP
553 help
1da177e4
LT
554 In some hardware implementations, the page containing HPET
555 registers may also contain other things that shouldn't be
3d035f58
PB
556 exposed to the user. This option selects the default (if
557 kernel parameter hpet_mmap is not set) user access to the
558 registers for applications that require it.
1da177e4 559
1da177e4
LT
560config HANGCHECK_TIMER
561 tristate "Hangcheck timer"
abf3ea1b 562 depends on X86 || IA64 || PPC64 || S390
1da177e4
LT
563 help
564 The hangcheck-timer module detects when the system has gone
565 out to lunch past a certain margin. It can reboot the system
566 or merely print a warning.
567
568config MMTIMER
569 tristate "MMTIMER Memory mapped RTC for SGI Altix"
570 depends on IA64_GENERIC || IA64_SGI_SN2
571 default y
572 help
573 The mmtimer device allows direct userspace access to the
574 Altix system timer.
575
fbd8ae10
DS
576config UV_MMTIMER
577 tristate "UV_MMTIMER Memory mapped RTC for SGI UV"
578 depends on X86_UV
579 default m
580 help
581 The uv_mmtimer device allows direct userspace access to the
582 UV system timer.
583
1da177e4
LT
584source "drivers/char/tpm/Kconfig"
585
1a80ba88 586config TELCLOCK
03154a27 587 tristate "Telecom clock driver for ATCA SBC"
65929215 588 depends on X86
1a80ba88
MG
589 default n
590 help
03154a27
MG
591 The telecom clock device is specific to the MPCBL0010 and MPCBL0050
592 ATCA computers and allows direct userspace access to the
593 configuration of the telecom clock configuration settings. This
594 device is used for hardware synchronization across the ATCA backplane
595 fabric. Upon loading, the driver exports a sysfs directory,
596 /sys/devices/platform/telco_clock, with a number of files for
597 controlling the behavior of this hardware.
1a80ba88 598
4f911d64
RK
599config DEVPORT
600 bool
4f911d64
RK
601 depends on ISA || PCI
602 default y
603
61d48c2c
MS
604source "drivers/s390/char/Kconfig"
605
dbcb4a1a
CM
606config TILE_SROM
607 bool "Character-device access via hypervisor to the Tilera SPI ROM"
608 depends on TILE
609 default y
610 ---help---
611 This device provides character-level read-write access
612 to the SROM, typically via the "0", "1", and "2" devices
613 in /dev/srom/. The Tilera hypervisor makes the flash
614 device appear much like a simple EEPROM, and knows
615 how to partition a single ROM for multiple purposes.
616
7051924f
EB
617source "drivers/char/xillybus/Kconfig"
618
1da177e4
LT
619endmenu
620
This page took 0.950889 seconds and 5 git commands to generate.