blob: 273b5492fbcf865e3aa06018d7e4a5b6a1c37b71 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Character device configuration
3#
4
5menu "Character devices"
6
Greg Kroah-Hartmanbdcffc52011-02-22 15:41:47 -08007source "drivers/tty/Kconfig"
Antonino A. Daplas13ae6642006-06-26 00:27:12 -07008
Rob Ward73f07182014-12-07 15:40:33 +00009config 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
Arjan van de Venb781ecb2008-04-29 00:58:34 -070018config 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070027config 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
Bruce Losuree1e19742005-04-25 13:09:41 -070035config 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"
Bruce Losureae40aae2005-04-04 13:23:00 -070044 depends on SGI_TIOCX
Bruce Losuree1e19742005-04-25 13:09:41 -070045 help
46 If you have an SGI Altix with an attached SABrick
47 say Y or M here, otherwise say N.
48
Greg Kroah-Hartmanab4382d2011-01-13 12:10:18 -080049source "drivers/tty/serial/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Samo Pogacnik24b4b672010-08-25 20:44:07 +020051config TTY_PRINTK
Takashi Iwaib24313a2014-04-02 14:45:22 +020052 tristate "TTY driver to output user messages via printk"
Joe Millenbach4f73bc42013-01-17 22:44:22 -080053 depends on EXPERT && TTY
Samo Pogacnik24b4b672010-08-25 20:44:07 +020054 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
Mike Frysinger2dc63a82008-04-25 08:04:56 +080066config BFIN_OTP
67 tristate "Blackfin On-Chip OTP Memory Support"
Mike Frysingerf69b2d72009-11-20 19:09:56 +000068 depends on BLACKFIN && (BF51x || BF52x || BF54x)
Mike Frysinger2dc63a82008-04-25 08:04:56 +080069 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070094config 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
Greg Kroah-Hartmanbdcffc52011-02-22 15:41:47 -0800155source "drivers/tty/hvc/Kconfig"
Mike Frysinger5427bcf2011-02-04 20:45:49 -0500156
Rusty Russell31610432007-10-22 11:03:39 +1000157config VIRTIO_CONSOLE
Christian Borntraeger7721c492008-07-25 12:06:06 -0500158 tristate "Virtio console"
Joe Millenbach4f73bc42013-01-17 22:44:22 -0800159 depends on VIRTIO && TTY
Rusty Russell31610432007-10-22 11:03:39 +1000160 select HVC_DRIVER
Christian Borntraeger7721c492008-07-25 12:06:06 -0500161 help
162 Virtio console for use with lguest and other hypervisors.
163
Amit Shahfb08bd22009-12-21 21:36:04 +0530164 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.
Rusty Russell31610432007-10-22 11:03:39 +1000172
Sonny Raofe9e8d52008-07-08 15:45:11 +1000173config 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181source "drivers/char/ipmi/Kconfig"
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183config DS1620
184 tristate "NetWinder thermometer support"
185 depends on ARCH_NETWINDER
186 help
187 Say Y here to include support for the thermal management hardware
188 found in the NetWinder. This driver allows the user to control the
189 temperature set points and to read the current temperature.
190
191 It is also possible to say M here to build it as a module (ds1620)
192 It is recommended to be used on a NetWinder, but it is not a
193 necessity.
194
195config NWBUTTON
196 tristate "NetWinder Button"
197 depends on ARCH_NETWINDER
198 ---help---
199 If you say Y here and create a character device node /dev/nwbutton
200 with major and minor numbers 10 and 158 ("man mknod"), then every
201 time the orange button is pressed a number of times, the number of
202 times the button was pressed will be written to that device.
203
204 This is most useful for applications, as yet unwritten, which
205 perform actions based on how many times the button is pressed in a
206 row.
207
208 Do not hold the button down for too long, as the driver does not
209 alter the behaviour of the hardware reset circuitry attached to the
210 button; it will still execute a hard reset if the button is held
211 down for longer than approximately five seconds.
212
213 To compile this driver as a module, choose M here: the
214 module will be called nwbutton.
215
216 Most people will answer Y to this question and "Reboot Using Button"
217 below to be able to initiate a system shutdown from the button.
218
219config NWBUTTON_REBOOT
220 bool "Reboot Using Button"
221 depends on NWBUTTON
222 help
223 If you say Y here, then you will be able to initiate a system
224 shutdown and reboot by pressing the orange button a number of times.
225 The number of presses to initiate the shutdown is two by default,
226 but this can be altered by modifying the value of NUM_PRESSES_REBOOT
227 in nwbutton.h and recompiling the driver or, if you compile the
228 driver as a module, you can specify the number of presses at load
229 time with "insmod button reboot_count=<something>".
230
231config NWFLASH
232 tristate "NetWinder flash support"
233 depends on ARCH_NETWINDER
234 ---help---
235 If you say Y here and create a character device /dev/flash with
236 major 10 and minor 160 you can manipulate the flash ROM containing
237 the NetWinder firmware. Be careful as accidentally overwriting the
238 flash contents can render your computer unbootable. On no account
239 allow random users access to this device. :-)
240
241 To compile this driver as a module, choose M here: the
242 module will be called nwflash.
243
244 If you're not sure, say N.
245
Michael Buesch844dd052006-06-26 00:24:59 -0700246source "drivers/char/hw_random/Kconfig"
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248config NVRAM
249 tristate "/dev/nvram support"
Uwe Kleine-König807a96c2009-01-31 01:21:59 +0100250 depends on ATARI || X86 || (ARM && RTC_DRV_CMOS) || GENERIC_NVRAM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 ---help---
252 If you say Y here and create a character special file /dev/nvram
253 with major number 10 and minor number 144 using mknod ("man mknod"),
254 you get read and write access to the extra bytes of non-volatile
255 memory in the real time clock (RTC), which is contained in every PC
256 and most Ataris. The actual number of bytes varies, depending on the
257 nvram in the system, but is usually 114 (128-14 for the RTC).
258
259 This memory is conventionally called "CMOS RAM" on PCs and "NVRAM"
260 on Ataris. /dev/nvram may be used to view settings there, or to
261 change them (with some utility). It could also be used to frequently
262 save a few bits of very important data that may not be lost over
263 power-off and for which writing to disk is too insecure. Note
264 however that most NVRAM space in a PC belongs to the BIOS and you
265 should NEVER idly tamper with it. See Ralf Brown's interrupt list
266 for a guide to the use of CMOS bytes by your BIOS.
267
268 On Atari machines, /dev/nvram is always configured and does not need
269 to be selected.
270
271 To compile this driver as a module, choose M here: the
272 module will be called nvram.
273
David Brownellc7500902008-04-28 02:11:52 -0700274#
275# These legacy RTC drivers just cause too many conflicts with the generic
276# RTC framework ... let's not even try to coexist any more.
277#
278if RTC_LIB=n
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280config RTC
David Brownelle6d2bb22008-06-12 15:21:55 -0700281 tristate "Enhanced Real Time Clock Support (legacy PC RTC driver)"
Arnd Bergmann5ee98ab2016-06-01 16:46:22 +0200282 depends on ALPHA || (MIPS && MACH_LOONGSON64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 ---help---
284 If you say Y here and create a character special file /dev/rtc with
285 major number 10 and minor number 135 using mknod ("man mknod"), you
286 will get access to the real time clock (or hardware clock) built
287 into your computer.
288
289 Every PC has such a clock built in. It can be used to generate
290 signals from as low as 1Hz up to 8192Hz, and can also be used
291 as a 24 hour alarm. It reports status information via the file
292 /proc/driver/rtc and its behaviour is set by various ioctls on
293 /dev/rtc.
294
295 If you run Linux on a multiprocessor machine and said Y to
296 "Symmetric Multi Processing" above, you should say Y here to read
297 and set the RTC in an SMP compatible fashion.
298
299 If you think you have a use for such a device (such as periodic data
300 sampling), then say Y here, and read <file:Documentation/rtc.txt>
301 for details.
302
303 To compile this driver as a module, choose M here: the
304 module will be called rtc.
305
Al Viro22405982007-07-22 00:37:48 -0700306config JS_RTC
307 tristate "Enhanced Real Time Clock Support"
308 depends on SPARC32 && PCI
309 ---help---
310 If you say Y here and create a character special file /dev/rtc with
311 major number 10 and minor number 135 using mknod ("man mknod"), you
312 will get access to the real time clock (or hardware clock) built
313 into your computer.
314
315 Every PC has such a clock built in. It can be used to generate
316 signals from as low as 1Hz up to 8192Hz, and can also be used
317 as a 24 hour alarm. It reports status information via the file
318 /proc/driver/rtc and its behaviour is set by various ioctls on
319 /dev/rtc.
320
321 If you think you have a use for such a device (such as periodic data
322 sampling), then say Y here, and read <file:Documentation/rtc.txt>
323 for details.
324
325 To compile this driver as a module, choose M here: the
326 module will be called js-rtc.
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328config EFI_RTC
329 bool "EFI Real Time Clock Services"
330 depends on IA64
331
332config DS1302
333 tristate "DS1302 RTC support"
334 depends on M32R && (PLAT_M32700UT || PLAT_OPSPUT)
335 help
336 If you say Y here and create a character special file /dev/rtc with
337 major number 121 and minor number 0 using mknod ("man mknod"), you
338 will get access to the real time clock (or hardware clock) built
339 into your computer.
340
David Brownellc7500902008-04-28 02:11:52 -0700341endif # RTC_LIB
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343config DTLK
344 tristate "Double Talk PC internal speech card support"
Martin Schwidefskyeeca7a32007-05-10 15:45:56 +0200345 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 help
347 This driver is for the DoubleTalk PC, a speech synthesizer
348 manufactured by RC Systems (<http://www.rcsys.com/>). It is also
349 called the `internal DoubleTalk'.
350
351 To compile this driver as a module, choose M here: the
352 module will be called dtlk.
353
Stephen Neuendorfferef141a02008-02-06 04:24:09 +1100354config XILINX_HWICAP
355 tristate "Xilinx HWICAP Support"
Michal Simek6fa612b2009-05-11 15:49:12 +0200356 depends on XILINX_VIRTEX || MICROBLAZE
Stephen Neuendorfferef141a02008-02-06 04:24:09 +1100357 help
358 This option enables support for Xilinx Internal Configuration
359 Access Port (ICAP) driver. The ICAP is used on Xilinx Virtex
360 FPGA platforms to partially reconfigure the FPGA at runtime.
361
362 If unsure, say N.
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364config R3964
365 tristate "Siemens R3964 line discipline"
Joe Millenbach4f73bc42013-01-17 22:44:22 -0800366 depends on TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 ---help---
368 This driver allows synchronous communication with devices using the
369 Siemens R3964 packet protocol. Unless you are dealing with special
370 hardware like PLCs, you are unlikely to need this.
371
372 To compile this driver as a module, choose M here: the
373 module will be called n_r3964.
374
375 If unsure, say N.
376
377config APPLICOM
378 tristate "Applicom intelligent fieldbus card support"
379 depends on PCI
380 ---help---
381 This driver provides the kernel-side support for the intelligent
382 fieldbus cards made by Applicom International. More information
383 about these cards can be found on the WWW at the address
384 <http://www.applicom-int.com/>, or by email from David Woodhouse
385 <dwmw2@infradead.org>.
386
387 To compile this driver as a module, choose M here: the
388 module will be called applicom.
389
390 If unsure, say N.
391
392config SONYPI
Greg Kroah-Hartman65929212012-09-18 16:14:53 +0100393 tristate "Sony Vaio Programmable I/O Control Device support"
Jean Delvare57dcf022014-03-31 15:15:36 +0200394 depends on X86_32 && PCI && INPUT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 ---help---
396 This driver enables access to the Sony Programmable I/O Control
397 Device which can be found in many (all ?) Sony Vaio laptops.
398
399 If you have one of those laptops, read
Carlos Corbacho018a6512008-02-09 01:32:19 +0000400 <file:Documentation/laptops/sonypi.txt>, and say Y or M here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 To compile this driver as a module, choose M here: the
403 module will be called sonypi.
404
Yoichi Yuasa09762512007-05-06 14:51:58 -0700405config GPIO_TB0219
406 tristate "TANBAC TB0219 GPIO support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100407 depends on TANBAC_TB022X
Yoichi Yuasa584e1232006-06-25 05:49:11 -0700408 select GPIO_VR41XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410source "drivers/char/pcmcia/Kconfig"
411
412config MWAVE
413 tristate "ACP Modem (Mwave) support"
Joe Millenbach4f73bc42013-01-17 22:44:22 -0800414 depends on X86 && TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 select SERIAL_8250
416 ---help---
417 The ACP modem (Mwave) for Linux is a WinModem. It is composed of a
418 kernel driver and a user level application. Together these components
419 support direct attachment to public switched telephone networks (PSTNs)
420 and support selected world wide countries.
421
422 This version of the ACP Modem driver supports the IBM Thinkpad 600E,
423 600, and 770 that include on board ACP modem hardware.
424
425 The modem also supports the standard communications port interface
426 (ttySx) and is compatible with the Hayes AT Command Set.
427
428 The user level application needed to use this driver can be found at
429 the IBM Linux Technology Center (LTC) web site:
430 <http://www.ibm.com/linux/ltc/>.
431
432 If you own one of the above IBM Thinkpads which has the Mwave chipset
433 in it, say Y.
434
435 To compile this driver as a module, choose M here: the
436 module will be called mwave.
437
438config SCx200_GPIO
439 tristate "NatSemi SCx200 GPIO Support"
440 depends on SCx200
Jim Cromie7a8e2a52006-06-27 02:54:27 -0700441 select NSC_GPIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 help
443 Give userspace access to the GPIO pins on the National
444 Semiconductor SCx200 processors.
445
446 If compiled as a module, it will be called scx200_gpio.
447
Jim Cromie7a8e2a52006-06-27 02:54:27 -0700448config PC8736x_GPIO
449 tristate "NatSemi PC8736x GPIO Support"
Al Viro33694652011-08-18 20:11:59 +0100450 depends on X86_32 && !UML
Jim Cromie7a8e2a52006-06-27 02:54:27 -0700451 default SCx200_GPIO # mostly N
452 select NSC_GPIO # needed for support routines
453 help
454 Give userspace access to the GPIO pins on the National
455 Semiconductor PC-8736x (x=[03456]) SuperIO chip. The chip
456 has multiple functional units, inc several managed by
457 hwmon/pc87360 driver. Tested with PC-87366
458
459 If compiled as a module, it will be called pc8736x_gpio.
460
461config NSC_GPIO
462 tristate "NatSemi Base GPIO Support"
Dave Jones699352c2006-06-29 02:24:32 -0700463 depends on X86_32
Jim Cromie7a8e2a52006-06-27 02:54:27 -0700464 # selected by SCx200_GPIO and PC8736x_GPIO
465 # what about 2 selectors differing: m != y
466 help
467 Common support used (and needed) by scx200_gpio and
468 pc8736x_gpio drivers. If those drivers are built as
469 modules, this one will be too, named nsc_gpio
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471config RAW_DRIVER
Dave Jonesabd4aa52007-07-15 23:40:49 -0700472 tristate "RAW driver (/dev/raw/rawN)"
David Howells93614012006-09-30 20:45:40 +0200473 depends on BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 help
Dave Jonesabd4aa52007-07-15 23:40:49 -0700475 The raw driver permits block devices to be bound to /dev/raw/rawN.
476 Once bound, I/O against /dev/raw/rawN uses efficient zero-copy I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 See the raw(8) manpage for more details.
478
Dave Jonesabd4aa52007-07-15 23:40:49 -0700479 Applications should preferably open the device (eg /dev/hda1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 with the O_DIRECT flag.
481
Andrew Morton0de502a2005-12-12 00:37:41 -0800482config MAX_RAW_DEVS
Jan Kara0078bff2011-04-29 00:24:29 +0200483 int "Maximum number of RAW devices to support (1-65536)"
Andrew Morton0de502a2005-12-12 00:37:41 -0800484 depends on RAW_DRIVER
Paul Bolle71434792014-02-04 23:23:40 +0100485 range 1 65536
Andrew Morton0de502a2005-12-12 00:37:41 -0800486 default "256"
487 help
488 The maximum number of RAW devices that are supported.
489 Default is 256. Increase this number in case you need lots of
490 raw devices.
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492config HPET
493 bool "HPET - High Precision Event Timer" if (X86 || IA64)
494 default n
495 depends on ACPI
496 help
497 If you say Y here, you will have a miscdevice named "/dev/hpet/". Each
498 open selects one of the timers supported by the HPET. The timers are
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +0100499 non-periodic and/or periodic.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501config HPET_MMAP
502 bool "Allow mmap of HPET"
503 default y
504 depends on HPET
505 help
506 If you say Y here, user applications will be able to mmap
507 the HPET registers.
508
Prarit Bhargava3d035f52013-11-12 15:08:33 -0800509config HPET_MMAP_DEFAULT
510 bool "Enable HPET MMAP access by default"
511 default y
512 depends on HPET_MMAP
513 help
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 In some hardware implementations, the page containing HPET
515 registers may also contain other things that shouldn't be
Prarit Bhargava3d035f52013-11-12 15:08:33 -0800516 exposed to the user. This option selects the default (if
517 kernel parameter hpet_mmap is not set) user access to the
518 registers for applications that require it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520config HANGCHECK_TIMER
521 tristate "Hangcheck timer"
Martin Schwidefskyabf3ea12007-05-10 15:45:59 +0200522 depends on X86 || IA64 || PPC64 || S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 help
524 The hangcheck-timer module detects when the system has gone
525 out to lunch past a certain margin. It can reboot the system
526 or merely print a warning.
527
528config MMTIMER
529 tristate "MMTIMER Memory mapped RTC for SGI Altix"
530 depends on IA64_GENERIC || IA64_SGI_SN2
531 default y
532 help
533 The mmtimer device allows direct userspace access to the
534 Altix system timer.
535
Dimitri Sivanichfbd8ae12009-09-23 15:57:15 -0700536config UV_MMTIMER
537 tristate "UV_MMTIMER Memory mapped RTC for SGI UV"
538 depends on X86_UV
539 default m
540 help
541 The uv_mmtimer device allows direct userspace access to the
542 UV system timer.
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544source "drivers/char/tpm/Kconfig"
545
Mark Gross1a80ba82005-10-30 15:02:55 -0800546config TELCLOCK
Mark Gross03154a22007-03-06 13:58:45 -0800547 tristate "Telecom clock driver for ATCA SBC"
Greg Kroah-Hartman65929212012-09-18 16:14:53 +0100548 depends on X86
Mark Gross1a80ba82005-10-30 15:02:55 -0800549 default n
550 help
Mark Gross03154a22007-03-06 13:58:45 -0800551 The telecom clock device is specific to the MPCBL0010 and MPCBL0050
552 ATCA computers and allows direct userspace access to the
553 configuration of the telecom clock configuration settings. This
554 device is used for hardware synchronization across the ATCA backplane
555 fabric. Upon loading, the driver exports a sysfs directory,
556 /sys/devices/platform/telco_clock, with a number of files for
557 controlling the behavior of this hardware.
Mark Gross1a80ba82005-10-30 15:02:55 -0800558
Russell King4f911d62007-05-08 00:28:17 -0700559config DEVPORT
560 bool
Russell King4f911d62007-05-08 00:28:17 -0700561 depends on ISA || PCI
562 default y
563
Martin Schwidefsky61d48c22007-05-10 15:46:00 +0200564source "drivers/s390/char/Kconfig"
565
Chris Metcalfdbcb4a12011-06-10 13:07:48 -0400566config TILE_SROM
567 bool "Character-device access via hypervisor to the Tilera SPI ROM"
568 depends on TILE
569 default y
570 ---help---
571 This device provides character-level read-write access
572 to the SROM, typically via the "0", "1", and "2" devices
573 in /dev/srom/. The Tilera hypervisor makes the flash
574 device appear much like a simple EEPROM, and knows
575 how to partition a single ROM for multiple purposes.
576
Eli Billauer70519242014-09-09 09:36:04 +0300577source "drivers/char/xillybus/Kconfig"
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579endmenu
580