blob: f48cd688f4c06f4e73da6e8f6c7d7e10b8e8f15d [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
Robert Love1fcada32008-04-29 16:44:10 -04009config DEVMEM
10 bool "Memory device driver"
11 default y
12 help
13 The memory driver provides two character devices, mem and kmem, which
14 provide access to the system's memory. The mem device is a view of
15 physical memory, and each byte in the device corresponds to the
16 matching physical address. The kmem device is the same as mem, but
17 the addresses correspond to the kernel's virtual address space rather
18 than physical memory. These devices are standard parts of a Linux
19 system and most users should say Y here. You might say N if very
20 security conscience or memory is tight.
21
Arjan van de Venb781ecb2008-04-29 00:58:34 -070022config DEVKMEM
23 bool "/dev/kmem virtual device support"
24 default y
25 help
26 Say Y here if you want to support the /dev/kmem device. The
27 /dev/kmem device is rarely used, but can be used for certain
28 kind of kernel debugging operations.
29 When in doubt, say "N".
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031config STALDRV
32 bool "Stallion multiport serial support"
33 depends on SERIAL_NONSTANDARD
34 help
35 Stallion cards give you many serial ports. You would need something
36 like this to connect more than two modems to your Linux box, for
37 instance in order to become a dial-in server. If you say Y here,
38 you will be asked for your specific card model in the next
Randy Dunlap31c00fc2008-11-13 21:33:24 +000039 questions. Make sure to read <file:Documentation/serial/stallion.txt>
40 in this case. If you have never heard about all this, it's safe to
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 say N.
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043config SGI_SNSC
44 bool "SGI Altix system controller communication support"
45 depends on (IA64_SGI_SN2 || IA64_GENERIC)
46 help
47 If you have an SGI Altix and you want to enable system
48 controller communication from user space (you want this!),
49 say Y. Otherwise, say N.
50
Bruce Losuree1e19742005-04-25 13:09:41 -070051config SGI_TIOCX
52 bool "SGI TIO CX driver support"
53 depends on (IA64_SGI_SN2 || IA64_GENERIC)
54 help
55 If you have an SGI Altix and you have fpga devices attached
56 to your TIO, say Y here, otherwise say N.
57
58config SGI_MBCS
59 tristate "SGI FPGA Core Services driver support"
Bruce Losureae40aae2005-04-04 13:23:00 -070060 depends on SGI_TIOCX
Bruce Losuree1e19742005-04-25 13:09:41 -070061 help
62 If you have an SGI Altix with an attached SABrick
63 say Y or M here, otherwise say N.
64
Greg Kroah-Hartmanab4382d2011-01-13 12:10:18 -080065source "drivers/tty/serial/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Samo Pogacnik24b4b672010-08-25 20:44:07 +020067config TTY_PRINTK
68 bool "TTY driver to output user messages via printk"
David Rientjes6a108a12011-01-20 14:44:16 -080069 depends on EXPERT
Samo Pogacnik24b4b672010-08-25 20:44:07 +020070 default n
71 ---help---
72 If you say Y here, the support for writing user messages (i.e.
73 console messages) via printk is available.
74
75 The feature is useful to inline user messages with kernel
76 messages.
77 In order to use this feature, you should output user messages
78 to /dev/ttyprintk or redirect console to this TTY.
79
80 If unsure, say N.
81
Mike Frysinger2dc63a82008-04-25 08:04:56 +080082config BFIN_OTP
83 tristate "Blackfin On-Chip OTP Memory Support"
Mike Frysingerf69b2d72009-11-20 19:09:56 +000084 depends on BLACKFIN && (BF51x || BF52x || BF54x)
Mike Frysinger2dc63a82008-04-25 08:04:56 +080085 default y
86 help
87 If you say Y here, you will get support for a character device
88 interface into the One Time Programmable memory pages that are
89 stored on the Blackfin processor. This will not get you access
90 to the secure memory pages however. You will need to write your
91 own secure code and reader for that.
92
93 To compile this driver as a module, choose M here: the module
94 will be called bfin-otp.
95
96 If unsure, it is safe to say Y.
97
98config BFIN_OTP_WRITE_ENABLE
99 bool "Enable writing support of OTP pages"
100 depends on BFIN_OTP
101 default n
102 help
103 If you say Y here, you will enable support for writing of the
104 OTP pages. This is dangerous by nature as you can only program
105 the pages once, so only enable this option when you actually
106 need it so as to not inadvertently clobber data.
107
108 If unsure, say N.
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110config PRINTER
111 tristate "Parallel printer support"
112 depends on PARPORT
113 ---help---
114 If you intend to attach a printer to the parallel port of your Linux
115 box (as opposed to using a serial printer; if the connector at the
116 printer has 9 or 25 holes ["female"], then it's serial), say Y.
117 Also read the Printing-HOWTO, available from
118 <http://www.tldp.org/docs.html#howto>.
119
120 It is possible to share one parallel port among several devices
121 (e.g. printer and ZIP drive) and it is safe to compile the
122 corresponding drivers into the kernel.
123
124 To compile this driver as a module, choose M here and read
125 <file:Documentation/parport.txt>. The module will be called lp.
126
127 If you have several parallel ports, you can specify which ports to
128 use with the "lp" kernel command line option. (Try "man bootparam"
129 or see the documentation of your boot loader (lilo or loadlin) about
130 how to pass options to the kernel at boot time.) The syntax of the
131 "lp" command line option can be found in <file:drivers/char/lp.c>.
132
133 If you have more than 8 printers, you need to increase the LP_NO
134 macro in lp.c and the PARPORT_MAX macro in parport.h.
135
136config LP_CONSOLE
137 bool "Support for console on line printer"
138 depends on PRINTER
139 ---help---
140 If you want kernel messages to be printed out as they occur, you
141 can have a console on the printer. This option adds support for
142 doing that; to actually get it to happen you need to pass the
143 option "console=lp0" to the kernel at boot time.
144
145 If the printer is out of paper (or off, or unplugged, or too
146 busy..) the kernel will stall until the printer is ready again.
147 By defining CONSOLE_LP_STRICT to 0 (at your own risk) you
148 can make the kernel continue when this happens,
149 but it'll lose the kernel messages.
150
151 If unsure, say N.
152
153config PPDEV
154 tristate "Support for user-space parallel port device drivers"
155 depends on PARPORT
156 ---help---
157 Saying Y to this adds support for /dev/parport device nodes. This
158 is needed for programs that want portable access to the parallel
159 port, for instance deviceid (which displays Plug-and-Play device
160 IDs).
161
162 This is the parallel port equivalent of SCSI generic support (sg).
163 It is safe to say N to this -- it is not needed for normal printing
164 or parallel port CD-ROM/disk support.
165
166 To compile this driver as a module, choose M here: the
167 module will be called ppdev.
168
169 If unsure, say N.
170
Greg Kroah-Hartmanbdcffc52011-02-22 15:41:47 -0800171source "drivers/tty/hvc/Kconfig"
Mike Frysinger5427bcf2011-02-04 20:45:49 -0500172
Rusty Russell31610432007-10-22 11:03:39 +1000173config VIRTIO_CONSOLE
Christian Borntraeger7721c492008-07-25 12:06:06 -0500174 tristate "Virtio console"
175 depends on VIRTIO
Rusty Russell31610432007-10-22 11:03:39 +1000176 select HVC_DRIVER
Christian Borntraeger7721c492008-07-25 12:06:06 -0500177 help
178 Virtio console for use with lguest and other hypervisors.
179
Amit Shahfb08bd22009-12-21 21:36:04 +0530180 Also serves as a general-purpose serial device for data
181 transfer between the guest and host. Character devices at
182 /dev/vportNpn will be created when corresponding ports are
183 found, where N is the device number and n is the port number
184 within that device. If specified by the host, a sysfs
185 attribute called 'name' will be populated with a name for
186 the port which can be used by udev scripts to create a
187 symlink to the device.
Rusty Russell31610432007-10-22 11:03:39 +1000188
Sonny Raofe9e8d52008-07-08 15:45:11 +1000189config IBM_BSR
190 tristate "IBM POWER Barrier Synchronization Register support"
191 depends on PPC_PSERIES
192 help
193 This devices exposes a hardware mechanism for fast synchronization
194 of threads across a large system which avoids bouncing a cacheline
195 between several cores on a system
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197source "drivers/char/ipmi/Kconfig"
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199config DS1620
200 tristate "NetWinder thermometer support"
201 depends on ARCH_NETWINDER
202 help
203 Say Y here to include support for the thermal management hardware
204 found in the NetWinder. This driver allows the user to control the
205 temperature set points and to read the current temperature.
206
207 It is also possible to say M here to build it as a module (ds1620)
208 It is recommended to be used on a NetWinder, but it is not a
209 necessity.
210
211config NWBUTTON
212 tristate "NetWinder Button"
213 depends on ARCH_NETWINDER
214 ---help---
215 If you say Y here and create a character device node /dev/nwbutton
216 with major and minor numbers 10 and 158 ("man mknod"), then every
217 time the orange button is pressed a number of times, the number of
218 times the button was pressed will be written to that device.
219
220 This is most useful for applications, as yet unwritten, which
221 perform actions based on how many times the button is pressed in a
222 row.
223
224 Do not hold the button down for too long, as the driver does not
225 alter the behaviour of the hardware reset circuitry attached to the
226 button; it will still execute a hard reset if the button is held
227 down for longer than approximately five seconds.
228
229 To compile this driver as a module, choose M here: the
230 module will be called nwbutton.
231
232 Most people will answer Y to this question and "Reboot Using Button"
233 below to be able to initiate a system shutdown from the button.
234
235config NWBUTTON_REBOOT
236 bool "Reboot Using Button"
237 depends on NWBUTTON
238 help
239 If you say Y here, then you will be able to initiate a system
240 shutdown and reboot by pressing the orange button a number of times.
241 The number of presses to initiate the shutdown is two by default,
242 but this can be altered by modifying the value of NUM_PRESSES_REBOOT
243 in nwbutton.h and recompiling the driver or, if you compile the
244 driver as a module, you can specify the number of presses at load
245 time with "insmod button reboot_count=<something>".
246
247config NWFLASH
248 tristate "NetWinder flash support"
249 depends on ARCH_NETWINDER
250 ---help---
251 If you say Y here and create a character device /dev/flash with
252 major 10 and minor 160 you can manipulate the flash ROM containing
253 the NetWinder firmware. Be careful as accidentally overwriting the
254 flash contents can render your computer unbootable. On no account
255 allow random users access to this device. :-)
256
257 To compile this driver as a module, choose M here: the
258 module will be called nwflash.
259
260 If you're not sure, say N.
261
Michael Buesch844dd052006-06-26 00:24:59 -0700262source "drivers/char/hw_random/Kconfig"
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264config NVRAM
265 tristate "/dev/nvram support"
Uwe Kleine-König807a96c2009-01-31 01:21:59 +0100266 depends on ATARI || X86 || (ARM && RTC_DRV_CMOS) || GENERIC_NVRAM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 ---help---
268 If you say Y here and create a character special file /dev/nvram
269 with major number 10 and minor number 144 using mknod ("man mknod"),
270 you get read and write access to the extra bytes of non-volatile
271 memory in the real time clock (RTC), which is contained in every PC
272 and most Ataris. The actual number of bytes varies, depending on the
273 nvram in the system, but is usually 114 (128-14 for the RTC).
274
275 This memory is conventionally called "CMOS RAM" on PCs and "NVRAM"
276 on Ataris. /dev/nvram may be used to view settings there, or to
277 change them (with some utility). It could also be used to frequently
278 save a few bits of very important data that may not be lost over
279 power-off and for which writing to disk is too insecure. Note
280 however that most NVRAM space in a PC belongs to the BIOS and you
281 should NEVER idly tamper with it. See Ralf Brown's interrupt list
282 for a guide to the use of CMOS bytes by your BIOS.
283
284 On Atari machines, /dev/nvram is always configured and does not need
285 to be selected.
286
287 To compile this driver as a module, choose M here: the
288 module will be called nvram.
289
David Brownellc7500902008-04-28 02:11:52 -0700290#
291# These legacy RTC drivers just cause too many conflicts with the generic
292# RTC framework ... let's not even try to coexist any more.
293#
294if RTC_LIB=n
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296config RTC
David Brownelle6d2bb22008-06-12 15:21:55 -0700297 tristate "Enhanced Real Time Clock Support (legacy PC RTC driver)"
David Brownellc7500902008-04-28 02:11:52 -0700298 depends on !PPC && !PARISC && !IA64 && !M68K && !SPARC && !FRV \
Al Viro33694652011-08-18 20:11:59 +0100299 && !ARM && !SUPERH && !S390 && !AVR32 && !BLACKFIN && !UML
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 ---help---
301 If you say Y here and create a character special file /dev/rtc with
302 major number 10 and minor number 135 using mknod ("man mknod"), you
303 will get access to the real time clock (or hardware clock) built
304 into your computer.
305
306 Every PC has such a clock built in. It can be used to generate
307 signals from as low as 1Hz up to 8192Hz, and can also be used
308 as a 24 hour alarm. It reports status information via the file
309 /proc/driver/rtc and its behaviour is set by various ioctls on
310 /dev/rtc.
311
312 If you run Linux on a multiprocessor machine and said Y to
313 "Symmetric Multi Processing" above, you should say Y here to read
314 and set the RTC in an SMP compatible fashion.
315
316 If you think you have a use for such a device (such as periodic data
317 sampling), then say Y here, and read <file:Documentation/rtc.txt>
318 for details.
319
320 To compile this driver as a module, choose M here: the
321 module will be called rtc.
322
Al Viro22405982007-07-22 00:37:48 -0700323config JS_RTC
324 tristate "Enhanced Real Time Clock Support"
325 depends on SPARC32 && PCI
326 ---help---
327 If you say Y here and create a character special file /dev/rtc with
328 major number 10 and minor number 135 using mknod ("man mknod"), you
329 will get access to the real time clock (or hardware clock) built
330 into your computer.
331
332 Every PC has such a clock built in. It can be used to generate
333 signals from as low as 1Hz up to 8192Hz, and can also be used
334 as a 24 hour alarm. It reports status information via the file
335 /proc/driver/rtc and its behaviour is set by various ioctls on
336 /dev/rtc.
337
338 If you think you have a use for such a device (such as periodic data
339 sampling), then say Y here, and read <file:Documentation/rtc.txt>
340 for details.
341
342 To compile this driver as a module, choose M here: the
343 module will be called js-rtc.
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345config GEN_RTC
346 tristate "Generic /dev/rtc emulation"
Al Viro33694652011-08-18 20:11:59 +0100347 depends on RTC!=y && !IA64 && !ARM && !M32R && !MIPS && !SPARC && !FRV && !S390 && !SUPERH && !AVR32 && !BLACKFIN && !UML
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 ---help---
349 If you say Y here and create a character special file /dev/rtc with
350 major number 10 and minor number 135 using mknod ("man mknod"), you
351 will get access to the real time clock (or hardware clock) built
352 into your computer.
353
354 It reports status information via the file /proc/driver/rtc and its
355 behaviour is set by various ioctls on /dev/rtc. If you enable the
356 "extended RTC operation" below it will also provide an emulation
357 for RTC_UIE which is required by some programs and may improve
358 precision in some cases.
359
360 To compile this driver as a module, choose M here: the
361 module will be called genrtc.
362
363config GEN_RTC_X
364 bool "Extended RTC operation"
365 depends on GEN_RTC
366 help
367 Provides an emulation for RTC_UIE which is required by some programs
368 and may improve precision of the generic RTC support in some cases.
369
370config EFI_RTC
371 bool "EFI Real Time Clock Services"
372 depends on IA64
373
374config DS1302
375 tristate "DS1302 RTC support"
376 depends on M32R && (PLAT_M32700UT || PLAT_OPSPUT)
377 help
378 If you say Y here and create a character special file /dev/rtc with
379 major number 121 and minor number 0 using mknod ("man mknod"), you
380 will get access to the real time clock (or hardware clock) built
381 into your computer.
382
David Brownellc7500902008-04-28 02:11:52 -0700383endif # RTC_LIB
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385config DTLK
386 tristate "Double Talk PC internal speech card support"
Martin Schwidefskyeeca7a32007-05-10 15:45:56 +0200387 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 help
389 This driver is for the DoubleTalk PC, a speech synthesizer
390 manufactured by RC Systems (<http://www.rcsys.com/>). It is also
391 called the `internal DoubleTalk'.
392
393 To compile this driver as a module, choose M here: the
394 module will be called dtlk.
395
Stephen Neuendorfferef141a02008-02-06 04:24:09 +1100396config XILINX_HWICAP
397 tristate "Xilinx HWICAP Support"
Michal Simek6fa612b2009-05-11 15:49:12 +0200398 depends on XILINX_VIRTEX || MICROBLAZE
Stephen Neuendorfferef141a02008-02-06 04:24:09 +1100399 help
400 This option enables support for Xilinx Internal Configuration
401 Access Port (ICAP) driver. The ICAP is used on Xilinx Virtex
402 FPGA platforms to partially reconfigure the FPGA at runtime.
403
404 If unsure, say N.
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406config R3964
407 tristate "Siemens R3964 line discipline"
408 ---help---
409 This driver allows synchronous communication with devices using the
410 Siemens R3964 packet protocol. Unless you are dealing with special
411 hardware like PLCs, you are unlikely to need this.
412
413 To compile this driver as a module, choose M here: the
414 module will be called n_r3964.
415
416 If unsure, say N.
417
418config APPLICOM
419 tristate "Applicom intelligent fieldbus card support"
420 depends on PCI
421 ---help---
422 This driver provides the kernel-side support for the intelligent
423 fieldbus cards made by Applicom International. More information
424 about these cards can be found on the WWW at the address
425 <http://www.applicom-int.com/>, or by email from David Woodhouse
426 <dwmw2@infradead.org>.
427
428 To compile this driver as a module, choose M here: the
429 module will be called applicom.
430
431 If unsure, say N.
432
433config SONYPI
434 tristate "Sony Vaio Programmable I/O Control Device support (EXPERIMENTAL)"
435 depends on EXPERIMENTAL && X86 && PCI && INPUT && !64BIT
436 ---help---
437 This driver enables access to the Sony Programmable I/O Control
438 Device which can be found in many (all ?) Sony Vaio laptops.
439
440 If you have one of those laptops, read
Carlos Corbacho018a6512008-02-09 01:32:19 +0000441 <file:Documentation/laptops/sonypi.txt>, and say Y or M here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 To compile this driver as a module, choose M here: the
444 module will be called sonypi.
445
Yoichi Yuasa09762512007-05-06 14:51:58 -0700446config GPIO_TB0219
447 tristate "TANBAC TB0219 GPIO support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100448 depends on TANBAC_TB022X
Yoichi Yuasa584e1232006-06-25 05:49:11 -0700449 select GPIO_VR41XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451source "drivers/char/pcmcia/Kconfig"
452
453config MWAVE
454 tristate "ACP Modem (Mwave) support"
455 depends on X86
456 select SERIAL_8250
457 ---help---
458 The ACP modem (Mwave) for Linux is a WinModem. It is composed of a
459 kernel driver and a user level application. Together these components
460 support direct attachment to public switched telephone networks (PSTNs)
461 and support selected world wide countries.
462
463 This version of the ACP Modem driver supports the IBM Thinkpad 600E,
464 600, and 770 that include on board ACP modem hardware.
465
466 The modem also supports the standard communications port interface
467 (ttySx) and is compatible with the Hayes AT Command Set.
468
469 The user level application needed to use this driver can be found at
470 the IBM Linux Technology Center (LTC) web site:
471 <http://www.ibm.com/linux/ltc/>.
472
473 If you own one of the above IBM Thinkpads which has the Mwave chipset
474 in it, say Y.
475
476 To compile this driver as a module, choose M here: the
477 module will be called mwave.
478
479config SCx200_GPIO
480 tristate "NatSemi SCx200 GPIO Support"
481 depends on SCx200
Jim Cromie7a8e2a52006-06-27 02:54:27 -0700482 select NSC_GPIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 help
484 Give userspace access to the GPIO pins on the National
485 Semiconductor SCx200 processors.
486
487 If compiled as a module, it will be called scx200_gpio.
488
Jim Cromie7a8e2a52006-06-27 02:54:27 -0700489config PC8736x_GPIO
490 tristate "NatSemi PC8736x GPIO Support"
Al Viro33694652011-08-18 20:11:59 +0100491 depends on X86_32 && !UML
Jim Cromie7a8e2a52006-06-27 02:54:27 -0700492 default SCx200_GPIO # mostly N
493 select NSC_GPIO # needed for support routines
494 help
495 Give userspace access to the GPIO pins on the National
496 Semiconductor PC-8736x (x=[03456]) SuperIO chip. The chip
497 has multiple functional units, inc several managed by
498 hwmon/pc87360 driver. Tested with PC-87366
499
500 If compiled as a module, it will be called pc8736x_gpio.
501
502config NSC_GPIO
503 tristate "NatSemi Base GPIO Support"
Dave Jones699352c2006-06-29 02:24:32 -0700504 depends on X86_32
Jim Cromie7a8e2a52006-06-27 02:54:27 -0700505 # selected by SCx200_GPIO and PC8736x_GPIO
506 # what about 2 selectors differing: m != y
507 help
508 Common support used (and needed) by scx200_gpio and
509 pc8736x_gpio drivers. If those drivers are built as
510 modules, this one will be too, named nsc_gpio
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512config RAW_DRIVER
Dave Jonesabd4aa52007-07-15 23:40:49 -0700513 tristate "RAW driver (/dev/raw/rawN)"
David Howells93614012006-09-30 20:45:40 +0200514 depends on BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 help
Dave Jonesabd4aa52007-07-15 23:40:49 -0700516 The raw driver permits block devices to be bound to /dev/raw/rawN.
517 Once bound, I/O against /dev/raw/rawN uses efficient zero-copy I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 See the raw(8) manpage for more details.
519
Dave Jonesabd4aa52007-07-15 23:40:49 -0700520 Applications should preferably open the device (eg /dev/hda1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 with the O_DIRECT flag.
522
Andrew Morton0de502a2005-12-12 00:37:41 -0800523config MAX_RAW_DEVS
Jan Kara0078bff2011-04-29 00:24:29 +0200524 int "Maximum number of RAW devices to support (1-65536)"
Andrew Morton0de502a2005-12-12 00:37:41 -0800525 depends on RAW_DRIVER
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532config 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
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +0100539 non-periodic and/or periodic.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541config 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
549 In some hardware implementations, the page containing HPET
550 registers may also contain other things that shouldn't be
551 exposed to the user. If this applies to your hardware,
552 say N here.
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554config HANGCHECK_TIMER
555 tristate "Hangcheck timer"
Martin Schwidefskyabf3ea12007-05-10 15:45:59 +0200556 depends on X86 || IA64 || PPC64 || S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 help
558 The hangcheck-timer module detects when the system has gone
559 out to lunch past a certain margin. It can reboot the system
560 or merely print a warning.
561
562config MMTIMER
563 tristate "MMTIMER Memory mapped RTC for SGI Altix"
564 depends on IA64_GENERIC || IA64_SGI_SN2
565 default y
566 help
567 The mmtimer device allows direct userspace access to the
568 Altix system timer.
569
Dimitri Sivanichfbd8ae12009-09-23 15:57:15 -0700570config UV_MMTIMER
571 tristate "UV_MMTIMER Memory mapped RTC for SGI UV"
572 depends on X86_UV
573 default m
574 help
575 The uv_mmtimer device allows direct userspace access to the
576 UV system timer.
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578source "drivers/char/tpm/Kconfig"
579
Mark Gross1a80ba82005-10-30 15:02:55 -0800580config TELCLOCK
Mark Gross03154a22007-03-06 13:58:45 -0800581 tristate "Telecom clock driver for ATCA SBC"
Geert Uytterhoeven4d99bfa2006-10-16 19:59:43 +0200582 depends on EXPERIMENTAL && X86
Mark Gross1a80ba82005-10-30 15:02:55 -0800583 default n
584 help
Mark Gross03154a22007-03-06 13:58:45 -0800585 The telecom clock device is specific to the MPCBL0010 and MPCBL0050
586 ATCA computers and allows direct userspace access to the
587 configuration of the telecom clock configuration settings. This
588 device is used for hardware synchronization across the ATCA backplane
589 fabric. Upon loading, the driver exports a sysfs directory,
590 /sys/devices/platform/telco_clock, with a number of files for
591 controlling the behavior of this hardware.
Mark Gross1a80ba82005-10-30 15:02:55 -0800592
Russell King4f911d62007-05-08 00:28:17 -0700593config DEVPORT
594 bool
595 depends on !M68K
596 depends on ISA || PCI
597 default y
598
Arve Hjønnevåg8b6990f2007-12-01 18:34:14 -0800599config DCC_TTY
600 tristate "DCC tty driver"
601 depends on ARM
602
Martin Schwidefsky61d48c22007-05-10 15:46:00 +0200603source "drivers/s390/char/Kconfig"
604
Marco Stornelli56d611a2010-05-26 14:43:54 -0700605config RAMOOPS
606 tristate "Log panic/oops to a RAM buffer"
Heiko Carstensb7e5d1f2010-06-04 14:14:48 -0700607 depends on HAS_IOMEM
Marco Stornelli56d611a2010-05-26 14:43:54 -0700608 default n
609 help
610 This enables panic and oops messages to be logged to a circular
611 buffer in RAM where it can be read back at some later point.
612
Niranjana Vishwanathapura73210a12011-03-23 16:42:55 -0700613config MSM_SMD_PKT
614 bool "Enable device interface for some SMD packet ports"
615 default n
616 depends on MSM_SMD
617 help
618 Enables userspace clients to read and write to some packet SMD
619 ports via device interface for MSM chipset.
620
Chris Metcalfdbcb4a12011-06-10 13:07:48 -0400621config TILE_SROM
622 bool "Character-device access via hypervisor to the Tilera SPI ROM"
623 depends on TILE
624 default y
625 ---help---
626 This device provides character-level read-write access
627 to the SROM, typically via the "0", "1", and "2" devices
628 in /dev/srom/. The Tilera hypervisor makes the flash
629 device appear much like a simple EEPROM, and knows
630 how to partition a single ROM for multiple purposes.
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632endmenu
633