11da177e4SLinus Torvalds# 21da177e4SLinus Torvalds# Character device configuration 31da177e4SLinus Torvalds# 41da177e4SLinus Torvalds 51da177e4SLinus Torvaldsmenu "Character devices" 61da177e4SLinus Torvalds 71da177e4SLinus Torvaldsconfig VT 81da177e4SLinus Torvalds bool "Virtual terminal" if EMBEDDED 9abf3ea1bSMartin Schwidefsky depends on !S390 101da177e4SLinus Torvalds select INPUT 111da177e4SLinus Torvalds default y if !VIOCONS 121da177e4SLinus Torvalds ---help--- 131da177e4SLinus Torvalds If you say Y here, you will get support for terminal devices with 141da177e4SLinus Torvalds display and keyboard devices. These are called "virtual" because you 151da177e4SLinus Torvalds can run several virtual terminals (also called virtual consoles) on 161da177e4SLinus Torvalds one physical terminal. This is rather useful, for example one 171da177e4SLinus Torvalds virtual terminal can collect system messages and warnings, another 181da177e4SLinus Torvalds one can be used for a text-mode user session, and a third could run 191da177e4SLinus Torvalds an X session, all in parallel. Switching between virtual terminals 201da177e4SLinus Torvalds is done with certain key combinations, usually Alt-<function key>. 211da177e4SLinus Torvalds 221da177e4SLinus Torvalds The setterm command ("man setterm") can be used to change the 231da177e4SLinus Torvalds properties (such as colors or beeping) of a virtual terminal. The 241da177e4SLinus Torvalds man page console_codes(4) ("man console_codes") contains the special 251da177e4SLinus Torvalds character sequences that can be used to change those properties 261da177e4SLinus Torvalds directly. The fonts used on virtual terminals can be changed with 271da177e4SLinus Torvalds the setfont ("man setfont") command and the key bindings are defined 281da177e4SLinus Torvalds with the loadkeys ("man loadkeys") command. 291da177e4SLinus Torvalds 301da177e4SLinus Torvalds You need at least one virtual terminal device in order to make use 311da177e4SLinus Torvalds of your keyboard and monitor. Therefore, only people configuring an 321da177e4SLinus Torvalds embedded system would want to say N here in order to save some 331da177e4SLinus Torvalds memory; the only way to log into such a system is then via a serial 341da177e4SLinus Torvalds or network connection. 351da177e4SLinus Torvalds 361da177e4SLinus Torvalds If unsure, say Y, or else you won't be able to do much with your new 371da177e4SLinus Torvalds shiny Linux system :-) 381da177e4SLinus Torvalds 391da177e4SLinus Torvaldsconfig VT_CONSOLE 401da177e4SLinus Torvalds bool "Support for console on virtual terminal" if EMBEDDED 411da177e4SLinus Torvalds depends on VT 421da177e4SLinus Torvalds default y 431da177e4SLinus Torvalds ---help--- 441da177e4SLinus Torvalds The system console is the device which receives all kernel messages 451da177e4SLinus Torvalds and warnings and which allows logins in single user mode. If you 461da177e4SLinus Torvalds answer Y here, a virtual terminal (the device used to interact with 471da177e4SLinus Torvalds a physical terminal) can be used as system console. This is the most 481da177e4SLinus Torvalds common mode of operations, so you should say Y here unless you want 491da177e4SLinus Torvalds the kernel messages be output only to a serial port (in which case 501da177e4SLinus Torvalds you should say Y to "Console on serial port", below). 511da177e4SLinus Torvalds 521da177e4SLinus Torvalds If you do say Y here, by default the currently visible virtual 531da177e4SLinus Torvalds terminal (/dev/tty0) will be used as system console. You can change 541da177e4SLinus Torvalds that with a kernel command line option such as "console=tty3" which 551da177e4SLinus Torvalds would use the third virtual terminal as system console. (Try "man 561da177e4SLinus Torvalds bootparam" or see the documentation of your boot loader (lilo or 571da177e4SLinus Torvalds loadlin) about how to pass options to the kernel at boot time.) 581da177e4SLinus Torvalds 591da177e4SLinus Torvalds If unsure, say Y. 601da177e4SLinus Torvalds 611da177e4SLinus Torvaldsconfig HW_CONSOLE 621da177e4SLinus Torvalds bool 631da177e4SLinus Torvalds depends on VT && !S390 && !UML 641da177e4SLinus Torvalds default y 651da177e4SLinus Torvalds 6613ae6645SAntonino A. Daplasconfig VT_HW_CONSOLE_BINDING 6713ae6645SAntonino A. Daplas bool "Support for binding and unbinding console drivers" 6813ae6645SAntonino A. Daplas depends on HW_CONSOLE 6913ae6645SAntonino A. Daplas default n 7013ae6645SAntonino A. Daplas ---help--- 7113ae6645SAntonino A. Daplas The virtual terminal is the device that interacts with the physical 7213ae6645SAntonino A. Daplas terminal through console drivers. On these systems, at least one 7313ae6645SAntonino A. Daplas console driver is loaded. In other configurations, additional console 7413ae6645SAntonino A. Daplas drivers may be enabled, such as the framebuffer console. If more than 7513ae6645SAntonino A. Daplas 1 console driver is enabled, setting this to 'y' will allow you to 7613ae6645SAntonino A. Daplas select the console driver that will serve as the backend for the 7713ae6645SAntonino A. Daplas virtual terminals. 7813ae6645SAntonino A. Daplas 7913ae6645SAntonino A. Daplas See <file:Documentation/console/console.txt> for more 8013ae6645SAntonino A. Daplas information. For framebuffer console users, please refer to 8113ae6645SAntonino A. Daplas <file:Documentation/fb/fbcon.txt>. 8213ae6645SAntonino A. Daplas 83b781ecb6SArjan van de Venconfig DEVKMEM 84b781ecb6SArjan van de Ven bool "/dev/kmem virtual device support" 85b781ecb6SArjan van de Ven default y 86b781ecb6SArjan van de Ven help 87b781ecb6SArjan van de Ven Say Y here if you want to support the /dev/kmem device. The 88b781ecb6SArjan van de Ven /dev/kmem device is rarely used, but can be used for certain 89b781ecb6SArjan van de Ven kind of kernel debugging operations. 90b781ecb6SArjan van de Ven When in doubt, say "N". 91b781ecb6SArjan van de Ven 921da177e4SLinus Torvaldsconfig SERIAL_NONSTANDARD 931da177e4SLinus Torvalds bool "Non-standard serial port support" 94eeca7a36SMartin Schwidefsky depends on HAS_IOMEM 951da177e4SLinus Torvalds ---help--- 961da177e4SLinus Torvalds Say Y here if you have any non-standard serial boards -- boards 971da177e4SLinus Torvalds which aren't supported using the standard "dumb" serial driver. 981da177e4SLinus Torvalds This includes intelligent serial boards such as Cyclades, 991da177e4SLinus Torvalds Digiboards, etc. These are usually used for systems that need many 1001da177e4SLinus Torvalds serial ports because they serve many terminals or dial-in 1011da177e4SLinus Torvalds connections. 1021da177e4SLinus Torvalds 1031da177e4SLinus Torvalds Note that the answer to this question won't directly affect the 1041da177e4SLinus Torvalds kernel: saying N will just cause the configurator to skip all 1051da177e4SLinus Torvalds the questions about non-standard serial boards. 1061da177e4SLinus Torvalds 1071da177e4SLinus Torvalds Most people can say N here. 1081da177e4SLinus Torvalds 1091da177e4SLinus Torvaldsconfig COMPUTONE 1101da177e4SLinus Torvalds tristate "Computone IntelliPort Plus serial support" 1113b4709a6SAl Viro depends on SERIAL_NONSTANDARD && (ISA || EISA || PCI) 1121da177e4SLinus Torvalds ---help--- 1131da177e4SLinus Torvalds This driver supports the entire family of Intelliport II/Plus 1141da177e4SLinus Torvalds controllers with the exception of the MicroChannel controllers and 1151da177e4SLinus Torvalds products previous to the Intelliport II. These are multiport cards, 1161da177e4SLinus Torvalds which give you many serial ports. You would need something like this 1171da177e4SLinus Torvalds to connect more than two modems to your Linux box, for instance in 1181da177e4SLinus Torvalds order to become a dial-in server. If you have a card like that, say 1191da177e4SLinus Torvalds Y here and read <file:Documentation/computone.txt>. 1201da177e4SLinus Torvalds 12133dda515SRoland.Kletzing To compile this driver as module, choose M here: the 12233dda515SRoland.Kletzing module will be called ip2. 1231da177e4SLinus Torvalds 1241da177e4SLinus Torvaldsconfig ROCKETPORT 1251da177e4SLinus Torvalds tristate "Comtrol RocketPort support" 12627d41718SAl Viro depends on SERIAL_NONSTANDARD && (ISA || EISA || PCI) 1271da177e4SLinus Torvalds help 1281da177e4SLinus Torvalds This driver supports Comtrol RocketPort and RocketModem PCI boards. 1291da177e4SLinus Torvalds These boards provide 2, 4, 8, 16, or 32 high-speed serial ports or 1301da177e4SLinus Torvalds modems. For information about the RocketPort/RocketModem boards 1311da177e4SLinus Torvalds and this driver read <file:Documentation/rocket.txt>. 1321da177e4SLinus Torvalds 1331da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 1341da177e4SLinus Torvalds module will be called rocket. 1351da177e4SLinus Torvalds 1361da177e4SLinus Torvalds If you want to compile this driver into the kernel, say Y here. If 1371da177e4SLinus Torvalds you don't have a Comtrol RocketPort/RocketModem card installed, say N. 1381da177e4SLinus Torvalds 1391da177e4SLinus Torvaldsconfig CYCLADES 1401da177e4SLinus Torvalds tristate "Cyclades async mux support" 141cff9494fSJiri Slaby depends on SERIAL_NONSTANDARD && (PCI || ISA) 142ee2077d9SJiri Slaby select FW_LOADER 1431da177e4SLinus Torvalds ---help--- 1441da177e4SLinus Torvalds This driver supports Cyclades Z and Y multiserial boards. 1451da177e4SLinus Torvalds You would need something like this to connect more than two modems to 1461da177e4SLinus Torvalds your Linux box, for instance in order to become a dial-in server. 1471da177e4SLinus Torvalds 1481da177e4SLinus Torvalds For information about the Cyclades-Z card, read 149889c94a1SJohann Felix Soden <file:Documentation/README.cycladesZ>. 1501da177e4SLinus Torvalds 1511da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 1521da177e4SLinus Torvalds module will be called cyclades. 1531da177e4SLinus Torvalds 1541da177e4SLinus Torvalds If you haven't heard about it, it's safe to say N. 1551da177e4SLinus Torvalds 1561da177e4SLinus Torvaldsconfig CYZ_INTR 1571da177e4SLinus Torvalds bool "Cyclades-Z interrupt mode operation (EXPERIMENTAL)" 1581da177e4SLinus Torvalds depends on EXPERIMENTAL && CYCLADES 1591da177e4SLinus Torvalds help 1601da177e4SLinus Torvalds The Cyclades-Z family of multiport cards allows 2 (two) driver op 1611da177e4SLinus Torvalds modes: polling and interrupt. In polling mode, the driver will check 1621da177e4SLinus Torvalds the status of the Cyclades-Z ports every certain amount of time 1631da177e4SLinus Torvalds (which is called polling cycle and is configurable). In interrupt 1641da177e4SLinus Torvalds mode, it will use an interrupt line (IRQ) in order to check the 1651da177e4SLinus Torvalds status of the Cyclades-Z ports. The default op mode is polling. If 1661da177e4SLinus Torvalds unsure, say N. 1671da177e4SLinus Torvalds 1681da177e4SLinus Torvaldsconfig DIGIEPCA 1691da177e4SLinus Torvalds tristate "Digiboard Intelligent Async Support" 170dcbf1280SAlan Cox depends on SERIAL_NONSTANDARD && (ISA || EISA || PCI) 1711da177e4SLinus Torvalds ---help--- 1721da177e4SLinus Torvalds This is a driver for Digi International's Xx, Xeve, and Xem series 1731da177e4SLinus Torvalds of cards which provide multiple serial ports. You would need 1741da177e4SLinus Torvalds something like this to connect more than two modems to your Linux 1751da177e4SLinus Torvalds box, for instance in order to become a dial-in server. This driver 1761da177e4SLinus Torvalds supports the original PC (ISA) boards as well as PCI, and EISA. If 1771da177e4SLinus Torvalds you have a card like this, say Y here and read the file 1781da177e4SLinus Torvalds <file:Documentation/digiepca.txt>. 1791da177e4SLinus Torvalds 1801da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 1811da177e4SLinus Torvalds module will be called epca. 1821da177e4SLinus Torvalds 1831da177e4SLinus Torvaldsconfig ESPSERIAL 1841da177e4SLinus Torvalds tristate "Hayes ESP serial port support" 18533f0f88fSAlan Cox depends on SERIAL_NONSTANDARD && ISA && ISA_DMA_API 1861da177e4SLinus Torvalds help 1871da177e4SLinus Torvalds This is a driver which supports Hayes ESP serial ports. Both single 1881da177e4SLinus Torvalds port cards and multiport cards are supported. Make sure to read 1891da177e4SLinus Torvalds <file:Documentation/hayes-esp.txt>. 1901da177e4SLinus Torvalds 1911da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 1921da177e4SLinus Torvalds module will be called esp. 1931da177e4SLinus Torvalds 1941da177e4SLinus Torvalds If unsure, say N. 1951da177e4SLinus Torvalds 1961da177e4SLinus Torvaldsconfig MOXA_INTELLIO 1971da177e4SLinus Torvalds tristate "Moxa Intellio support" 1988a023674SAl Viro depends on SERIAL_NONSTANDARD && (ISA || EISA || PCI) 1994920916fSJiri Slaby select FW_LOADER 2001da177e4SLinus Torvalds help 2011da177e4SLinus Torvalds Say Y here if you have a Moxa Intellio multiport serial card. 2021da177e4SLinus Torvalds 2031da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 2041da177e4SLinus Torvalds module will be called moxa. 2051da177e4SLinus Torvalds 2061da177e4SLinus Torvaldsconfig MOXA_SMARTIO 20798c47ea2SJiri Slaby tristate "Moxa SmartIO support v. 2.0" 208fb0c9295SJiri Slaby depends on SERIAL_NONSTANDARD && (PCI || EISA || ISA) 209037ad48bSJiri Slaby help 210037ad48bSJiri Slaby Say Y here if you have a Moxa SmartIO multiport serial card and/or 211037ad48bSJiri Slaby want to help develop a new version of this driver. 212037ad48bSJiri Slaby 213037ad48bSJiri Slaby This is upgraded (1.9.1) driver from original Moxa drivers with 214037ad48bSJiri Slaby changes finally resulting in PCI probing. 215037ad48bSJiri Slaby 216037ad48bSJiri Slaby This driver can also be built as a module. The module will be called 2171c45607aSJiri Slaby mxser. If you want to do that, say M here. 218037ad48bSJiri Slaby 2191da177e4SLinus Torvaldsconfig ISI 2201da177e4SLinus Torvalds tristate "Multi-Tech multiport card support (EXPERIMENTAL)" 2216d889724SAlan Cox depends on SERIAL_NONSTANDARD && PCI 2225ff2a7e2Smaximilian attems select FW_LOADER 2231da177e4SLinus Torvalds help 2241da177e4SLinus Torvalds This is a driver for the Multi-Tech cards which provide several 2251da177e4SLinus Torvalds serial ports. The driver is experimental and can currently only be 2261da177e4SLinus Torvalds built as a module. The module will be called isicom. 2271da177e4SLinus Torvalds If you want to do that, choose M here. 2281da177e4SLinus Torvalds 2291da177e4SLinus Torvaldsconfig SYNCLINK 2301da177e4SLinus Torvalds tristate "Microgate SyncLink card support" 231a5532606SAl Viro depends on SERIAL_NONSTANDARD && PCI && ISA_DMA_API 2321da177e4SLinus Torvalds help 2331da177e4SLinus Torvalds Provides support for the SyncLink ISA and PCI multiprotocol serial 2341da177e4SLinus Torvalds adapters. These adapters support asynchronous and HDLC bit 2351da177e4SLinus Torvalds synchronous communication up to 10Mbps (PCI adapter). 2361da177e4SLinus Torvalds 2371da177e4SLinus Torvalds This driver can only be built as a module ( = code which can be 2381da177e4SLinus Torvalds inserted in and removed from the running kernel whenever you want). 2391da177e4SLinus Torvalds The module will be called synclink. If you want to do that, say M 2401da177e4SLinus Torvalds here. 2411da177e4SLinus Torvalds 2421da177e4SLinus Torvaldsconfig SYNCLINKMP 2431da177e4SLinus Torvalds tristate "SyncLink Multiport support" 2448a023674SAl Viro depends on SERIAL_NONSTANDARD && PCI 2451da177e4SLinus Torvalds help 2461da177e4SLinus Torvalds Enable support for the SyncLink Multiport (2 or 4 ports) 2471da177e4SLinus Torvalds serial adapter, running asynchronous and HDLC communications up 2481da177e4SLinus Torvalds to 2.048Mbps. Each ports is independently selectable for 2491da177e4SLinus Torvalds RS-232, V.35, RS-449, RS-530, and X.21 2501da177e4SLinus Torvalds 2511da177e4SLinus Torvalds This driver may be built as a module ( = code which can be 2521da177e4SLinus Torvalds inserted in and removed from the running kernel whenever you want). 2531da177e4SLinus Torvalds The module will be called synclinkmp. If you want to do that, say M 2541da177e4SLinus Torvalds here. 2551da177e4SLinus Torvalds 256705b6c7bSPaul Fulghumconfig SYNCLINK_GT 257705b6c7bSPaul Fulghum tristate "SyncLink GT/AC support" 2588ef9cf31SAl Viro depends on SERIAL_NONSTANDARD && PCI 259705b6c7bSPaul Fulghum help 260705b6c7bSPaul Fulghum Support for SyncLink GT and SyncLink AC families of 261705b6c7bSPaul Fulghum synchronous and asynchronous serial adapters 262705b6c7bSPaul Fulghum manufactured by Microgate Systems, Ltd. (www.microgate.com) 263705b6c7bSPaul Fulghum 2641da177e4SLinus Torvaldsconfig N_HDLC 2651da177e4SLinus Torvalds tristate "HDLC line discipline support" 2661da177e4SLinus Torvalds depends on SERIAL_NONSTANDARD 2671da177e4SLinus Torvalds help 2681da177e4SLinus Torvalds Allows synchronous HDLC communications with tty device drivers that 2691da177e4SLinus Torvalds support synchronous HDLC such as the Microgate SyncLink adapter. 2701da177e4SLinus Torvalds 2711da177e4SLinus Torvalds This driver can only be built as a module ( = code which can be 2721da177e4SLinus Torvalds inserted in and removed from the running kernel whenever you want). 2731da177e4SLinus Torvalds The module will be called n_hdlc. If you want to do that, say M 2741da177e4SLinus Torvalds here. 2751da177e4SLinus Torvalds 2761da177e4SLinus Torvaldsconfig RISCOM8 2771da177e4SLinus Torvalds tristate "SDL RISCom/8 card support" 278*781cff5cSAlan Cox depends on SERIAL_NONSTANDARD 2791da177e4SLinus Torvalds help 2801da177e4SLinus Torvalds This is a driver for the SDL Communications RISCom/8 multiport card, 2811da177e4SLinus Torvalds which gives you many serial ports. You would need something like 2821da177e4SLinus Torvalds this to connect more than two modems to your Linux box, for instance 2831da177e4SLinus Torvalds in order to become a dial-in server. If you have a card like that, 2841da177e4SLinus Torvalds say Y here and read the file <file:Documentation/riscom8.txt>. 2851da177e4SLinus Torvalds 2861da177e4SLinus Torvalds Also it's possible to say M here and compile this driver as kernel 2871da177e4SLinus Torvalds loadable module; the module will be called riscom8. 2881da177e4SLinus Torvalds 2891da177e4SLinus Torvaldsconfig SPECIALIX 2901da177e4SLinus Torvalds tristate "Specialix IO8+ card support" 291abbe629aSAlan Cox depends on SERIAL_NONSTANDARD && BROKEN 2921da177e4SLinus Torvalds help 2931da177e4SLinus Torvalds This is a driver for the Specialix IO8+ multiport card (both the 2941da177e4SLinus Torvalds ISA and the PCI version) which gives you many serial ports. You 2951da177e4SLinus Torvalds would need something like this to connect more than two modems to 2961da177e4SLinus Torvalds your Linux box, for instance in order to become a dial-in server. 2971da177e4SLinus Torvalds 2981da177e4SLinus Torvalds If you have a card like that, say Y here and read the file 2991da177e4SLinus Torvalds <file:Documentation/specialix.txt>. Also it's possible to say M here 3001da177e4SLinus Torvalds and compile this driver as kernel loadable module which will be 3011da177e4SLinus Torvalds called specialix. 3021da177e4SLinus Torvalds 3031da177e4SLinus Torvaldsconfig SX 3041da177e4SLinus Torvalds tristate "Specialix SX (and SI) card support" 3053468a33eSJiri Slaby depends on SERIAL_NONSTANDARD && (PCI || EISA || ISA) 3061da177e4SLinus Torvalds help 3071da177e4SLinus Torvalds This is a driver for the SX and SI multiport serial cards. 3081da177e4SLinus Torvalds Please read the file <file:Documentation/sx.txt> for details. 3091da177e4SLinus Torvalds 3101da177e4SLinus Torvalds This driver can only be built as a module ( = code which can be 3111da177e4SLinus Torvalds inserted in and removed from the running kernel whenever you want). 3121da177e4SLinus Torvalds The module will be called sx. If you want to do that, say M here. 3131da177e4SLinus Torvalds 3141da177e4SLinus Torvaldsconfig RIO 3151da177e4SLinus Torvalds tristate "Specialix RIO system support" 316655fdeabSAlan Cox depends on SERIAL_NONSTANDARD 3171da177e4SLinus Torvalds help 3181da177e4SLinus Torvalds This is a driver for the Specialix RIO, a smart serial card which 3191da177e4SLinus Torvalds drives an outboard box that can support up to 128 ports. Product 3201da177e4SLinus Torvalds information is at <http://www.perle.com/support/documentation.html#multiport>. 3211da177e4SLinus Torvalds There are both ISA and PCI versions. 3221da177e4SLinus Torvalds 3231da177e4SLinus Torvaldsconfig RIO_OLDPCI 3241da177e4SLinus Torvalds bool "Support really old RIO/PCI cards" 3251da177e4SLinus Torvalds depends on RIO 3261da177e4SLinus Torvalds help 3271da177e4SLinus Torvalds Older RIO PCI cards need some initialization-time configuration to 3281da177e4SLinus Torvalds determine the IRQ and some control addresses. If you have a RIO and 3291da177e4SLinus Torvalds this doesn't seem to work, try setting this to Y. 3301da177e4SLinus Torvalds 3311da177e4SLinus Torvaldsconfig STALDRV 3321da177e4SLinus Torvalds bool "Stallion multiport serial support" 3331da177e4SLinus Torvalds depends on SERIAL_NONSTANDARD 3341da177e4SLinus Torvalds help 3351da177e4SLinus Torvalds Stallion cards give you many serial ports. You would need something 3361da177e4SLinus Torvalds like this to connect more than two modems to your Linux box, for 3371da177e4SLinus Torvalds instance in order to become a dial-in server. If you say Y here, 3381da177e4SLinus Torvalds you will be asked for your specific card model in the next 3391da177e4SLinus Torvalds questions. Make sure to read <file:Documentation/stallion.txt> in 3401da177e4SLinus Torvalds this case. If you have never heard about all this, it's safe to 3411da177e4SLinus Torvalds say N. 3421da177e4SLinus Torvalds 3431da177e4SLinus Torvaldsconfig STALLION 3441da177e4SLinus Torvalds tristate "Stallion EasyIO or EC8/32 support" 34527d41718SAl Viro depends on STALDRV && BROKEN_ON_SMP && (ISA || EISA || PCI) 3461da177e4SLinus Torvalds help 3471da177e4SLinus Torvalds If you have an EasyIO or EasyConnection 8/32 multiport Stallion 3481da177e4SLinus Torvalds card, then this is for you; say Y. Make sure to read 3491da177e4SLinus Torvalds <file:Documentation/stallion.txt>. 3501da177e4SLinus Torvalds 3511da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 3521da177e4SLinus Torvalds module will be called stallion. 3531da177e4SLinus Torvalds 3541da177e4SLinus Torvaldsconfig ISTALLION 3551da177e4SLinus Torvalds tristate "Stallion EC8/64, ONboard, Brumby support" 35627d41718SAl Viro depends on STALDRV && BROKEN_ON_SMP && (ISA || EISA || PCI) 3571da177e4SLinus Torvalds help 3581da177e4SLinus Torvalds If you have an EasyConnection 8/64, ONboard, Brumby or Stallion 3591da177e4SLinus Torvalds serial multiport card, say Y here. Make sure to read 3601da177e4SLinus Torvalds <file:Documentation/stallion.txt>. 3611da177e4SLinus Torvalds 3621da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 3631da177e4SLinus Torvalds module will be called istallion. 3641da177e4SLinus Torvalds 36520fd1e3bSFrank Seidelconfig NOZOMI 36620fd1e3bSFrank Seidel tristate "HSDPA Broadband Wireless Data Card - Globe Trotter" 36720fd1e3bSFrank Seidel depends on PCI && EXPERIMENTAL 36820fd1e3bSFrank Seidel help 36920fd1e3bSFrank Seidel If you have a HSDPA driver Broadband Wireless Data Card - 37020fd1e3bSFrank Seidel Globe Trotter PCMCIA card, say Y here. 37120fd1e3bSFrank Seidel 37220fd1e3bSFrank Seidel To compile this driver as a module, choose M here, the module 37320fd1e3bSFrank Seidel will be called nozomi. 37420fd1e3bSFrank Seidel 3751da177e4SLinus Torvaldsconfig A2232 3761da177e4SLinus Torvalds tristate "Commodore A2232 serial support (EXPERIMENTAL)" 3771da177e4SLinus Torvalds depends on EXPERIMENTAL && ZORRO && BROKEN_ON_SMP 3781da177e4SLinus Torvalds ---help--- 3791da177e4SLinus Torvalds This option supports the 2232 7-port serial card shipped with the 3801da177e4SLinus Torvalds Amiga 2000 and other Zorro-bus machines, dating from 1989. At 3811da177e4SLinus Torvalds a max of 19,200 bps, the ports are served by a 6551 ACIA UART chip 3821da177e4SLinus Torvalds each, plus a 8520 CIA, and a master 6502 CPU and buffer as well. The 3831da177e4SLinus Torvalds ports were connected with 8 pin DIN connectors on the card bracket, 3841da177e4SLinus Torvalds for which 8 pin to DB25 adapters were supplied. The card also had 3851da177e4SLinus Torvalds jumpers internally to toggle various pinning configurations. 3861da177e4SLinus Torvalds 3871da177e4SLinus Torvalds This driver can be built as a module; but then "generic_serial" 3881da177e4SLinus Torvalds will also be built as a module. This has to be loaded before 3891da177e4SLinus Torvalds "ser_a2232". If you want to do this, answer M here. 3901da177e4SLinus Torvalds 3911da177e4SLinus Torvaldsconfig SGI_SNSC 3921da177e4SLinus Torvalds bool "SGI Altix system controller communication support" 3931da177e4SLinus Torvalds depends on (IA64_SGI_SN2 || IA64_GENERIC) 3941da177e4SLinus Torvalds help 3951da177e4SLinus Torvalds If you have an SGI Altix and you want to enable system 3961da177e4SLinus Torvalds controller communication from user space (you want this!), 3971da177e4SLinus Torvalds say Y. Otherwise, say N. 3981da177e4SLinus Torvalds 399e1e19747SBruce Losureconfig SGI_TIOCX 400e1e19747SBruce Losure bool "SGI TIO CX driver support" 401e1e19747SBruce Losure depends on (IA64_SGI_SN2 || IA64_GENERIC) 402e1e19747SBruce Losure help 403e1e19747SBruce Losure If you have an SGI Altix and you have fpga devices attached 404e1e19747SBruce Losure to your TIO, say Y here, otherwise say N. 405e1e19747SBruce Losure 406e1e19747SBruce Losureconfig SGI_MBCS 407e1e19747SBruce Losure tristate "SGI FPGA Core Services driver support" 408ae40aae9SBruce Losure depends on SGI_TIOCX 409e1e19747SBruce Losure help 410e1e19747SBruce Losure If you have an SGI Altix with an attached SABrick 411e1e19747SBruce Losure say Y or M here, otherwise say N. 412e1e19747SBruce Losure 4131da177e4SLinus Torvaldssource "drivers/serial/Kconfig" 4141da177e4SLinus Torvalds 4151da177e4SLinus Torvaldsconfig UNIX98_PTYS 4161da177e4SLinus Torvalds bool "Unix98 PTY support" if EMBEDDED 4171da177e4SLinus Torvalds default y 4181da177e4SLinus Torvalds ---help--- 4191da177e4SLinus Torvalds A pseudo terminal (PTY) is a software device consisting of two 4201da177e4SLinus Torvalds halves: a master and a slave. The slave device behaves identical to 4211da177e4SLinus Torvalds a physical terminal; the master device is used by a process to 4221da177e4SLinus Torvalds read data from and write data to the slave, thereby emulating a 4231da177e4SLinus Torvalds terminal. Typical programs for the master side are telnet servers 4241da177e4SLinus Torvalds and xterms. 4251da177e4SLinus Torvalds 4261da177e4SLinus Torvalds Linux has traditionally used the BSD-like names /dev/ptyxx for 4271da177e4SLinus Torvalds masters and /dev/ttyxx for slaves of pseudo terminals. This scheme 4281da177e4SLinus Torvalds has a number of problems. The GNU C library glibc 2.1 and later, 4291da177e4SLinus Torvalds however, supports the Unix98 naming standard: in order to acquire a 4301da177e4SLinus Torvalds pseudo terminal, a process opens /dev/ptmx; the number of the pseudo 4311da177e4SLinus Torvalds terminal is then made available to the process and the pseudo 4321da177e4SLinus Torvalds terminal slave can be accessed as /dev/pts/<number>. What was 4331da177e4SLinus Torvalds traditionally /dev/ttyp2 will then be /dev/pts/2, for example. 4341da177e4SLinus Torvalds 4351da177e4SLinus Torvalds All modern Linux systems use the Unix98 ptys. Say Y unless 4361da177e4SLinus Torvalds you're on an embedded system and want to conserve memory. 4371da177e4SLinus Torvalds 4381da177e4SLinus Torvaldsconfig LEGACY_PTYS 4391da177e4SLinus Torvalds bool "Legacy (BSD) PTY support" 4401da177e4SLinus Torvalds default y 4411da177e4SLinus Torvalds ---help--- 4421da177e4SLinus Torvalds A pseudo terminal (PTY) is a software device consisting of two 4431da177e4SLinus Torvalds halves: a master and a slave. The slave device behaves identical to 4441da177e4SLinus Torvalds a physical terminal; the master device is used by a process to 4451da177e4SLinus Torvalds read data from and write data to the slave, thereby emulating a 4461da177e4SLinus Torvalds terminal. Typical programs for the master side are telnet servers 4471da177e4SLinus Torvalds and xterms. 4481da177e4SLinus Torvalds 4491da177e4SLinus Torvalds Linux has traditionally used the BSD-like names /dev/ptyxx 4501da177e4SLinus Torvalds for masters and /dev/ttyxx for slaves of pseudo 4511da177e4SLinus Torvalds terminals. This scheme has a number of problems, including 4521da177e4SLinus Torvalds security. This option enables these legacy devices; on most 4531da177e4SLinus Torvalds systems, it is safe to say N. 4541da177e4SLinus Torvalds 4551da177e4SLinus Torvalds 4561da177e4SLinus Torvaldsconfig LEGACY_PTY_COUNT 4571da177e4SLinus Torvalds int "Maximum number of legacy PTY in use" 4581da177e4SLinus Torvalds depends on LEGACY_PTYS 459345ee839SKay Sievers range 0 256 4601da177e4SLinus Torvalds default "256" 4611da177e4SLinus Torvalds ---help--- 4621da177e4SLinus Torvalds The maximum number of legacy PTYs that can be used at any one time. 4631da177e4SLinus Torvalds The default is 256, and should be more than enough. Embedded 4641da177e4SLinus Torvalds systems may want to reduce this to save memory. 4651da177e4SLinus Torvalds 4661da177e4SLinus Torvalds When not in use, each legacy PTY occupies 12 bytes on 32-bit 4671da177e4SLinus Torvalds architectures and 24 bytes on 64-bit architectures. 4681da177e4SLinus Torvalds 469a45b8395SBenjamin Herrenschmidtconfig BRIQ_PANEL 470a45b8395SBenjamin Herrenschmidt tristate 'Total Impact briQ front panel driver' 4712818c5deSPaul Mackerras depends on PPC_CHRP 472a45b8395SBenjamin Herrenschmidt ---help--- 473a45b8395SBenjamin Herrenschmidt The briQ is a small footprint CHRP computer with a frontpanel VFD, a 474a45b8395SBenjamin Herrenschmidt tristate led and two switches. It is the size of a CDROM drive. 475a45b8395SBenjamin Herrenschmidt 476a45b8395SBenjamin Herrenschmidt If you have such one and want anything showing on the VFD then you 477a45b8395SBenjamin Herrenschmidt must answer Y here. 478a45b8395SBenjamin Herrenschmidt 479a45b8395SBenjamin Herrenschmidt To compile this driver as a module, choose M here: the 480a45b8395SBenjamin Herrenschmidt module will be called briq_panel. 481a45b8395SBenjamin Herrenschmidt 482a45b8395SBenjamin Herrenschmidt It's safe to say N here. 483a45b8395SBenjamin Herrenschmidt 4842dc63a84SMike Frysingerconfig BFIN_OTP 4852dc63a84SMike Frysinger tristate "Blackfin On-Chip OTP Memory Support" 4862dc63a84SMike Frysinger depends on BLACKFIN && (BF52x || BF54x) 4872dc63a84SMike Frysinger default y 4882dc63a84SMike Frysinger help 4892dc63a84SMike Frysinger If you say Y here, you will get support for a character device 4902dc63a84SMike Frysinger interface into the One Time Programmable memory pages that are 4912dc63a84SMike Frysinger stored on the Blackfin processor. This will not get you access 4922dc63a84SMike Frysinger to the secure memory pages however. You will need to write your 4932dc63a84SMike Frysinger own secure code and reader for that. 4942dc63a84SMike Frysinger 4952dc63a84SMike Frysinger To compile this driver as a module, choose M here: the module 4962dc63a84SMike Frysinger will be called bfin-otp. 4972dc63a84SMike Frysinger 4982dc63a84SMike Frysinger If unsure, it is safe to say Y. 4992dc63a84SMike Frysinger 5002dc63a84SMike Frysingerconfig BFIN_OTP_WRITE_ENABLE 5012dc63a84SMike Frysinger bool "Enable writing support of OTP pages" 5022dc63a84SMike Frysinger depends on BFIN_OTP 5032dc63a84SMike Frysinger default n 5042dc63a84SMike Frysinger help 5052dc63a84SMike Frysinger If you say Y here, you will enable support for writing of the 5062dc63a84SMike Frysinger OTP pages. This is dangerous by nature as you can only program 5072dc63a84SMike Frysinger the pages once, so only enable this option when you actually 5082dc63a84SMike Frysinger need it so as to not inadvertently clobber data. 5092dc63a84SMike Frysinger 5102dc63a84SMike Frysinger If unsure, say N. 5112dc63a84SMike Frysinger 5121da177e4SLinus Torvaldsconfig PRINTER 5131da177e4SLinus Torvalds tristate "Parallel printer support" 5141da177e4SLinus Torvalds depends on PARPORT 5151da177e4SLinus Torvalds ---help--- 5161da177e4SLinus Torvalds If you intend to attach a printer to the parallel port of your Linux 5171da177e4SLinus Torvalds box (as opposed to using a serial printer; if the connector at the 5181da177e4SLinus Torvalds printer has 9 or 25 holes ["female"], then it's serial), say Y. 5191da177e4SLinus Torvalds Also read the Printing-HOWTO, available from 5201da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 5211da177e4SLinus Torvalds 5221da177e4SLinus Torvalds It is possible to share one parallel port among several devices 5231da177e4SLinus Torvalds (e.g. printer and ZIP drive) and it is safe to compile the 5241da177e4SLinus Torvalds corresponding drivers into the kernel. 5251da177e4SLinus Torvalds 5261da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 5271da177e4SLinus Torvalds <file:Documentation/parport.txt>. The module will be called lp. 5281da177e4SLinus Torvalds 5291da177e4SLinus Torvalds If you have several parallel ports, you can specify which ports to 5301da177e4SLinus Torvalds use with the "lp" kernel command line option. (Try "man bootparam" 5311da177e4SLinus Torvalds or see the documentation of your boot loader (lilo or loadlin) about 5321da177e4SLinus Torvalds how to pass options to the kernel at boot time.) The syntax of the 5331da177e4SLinus Torvalds "lp" command line option can be found in <file:drivers/char/lp.c>. 5341da177e4SLinus Torvalds 5351da177e4SLinus Torvalds If you have more than 8 printers, you need to increase the LP_NO 5361da177e4SLinus Torvalds macro in lp.c and the PARPORT_MAX macro in parport.h. 5371da177e4SLinus Torvalds 5381da177e4SLinus Torvaldsconfig LP_CONSOLE 5391da177e4SLinus Torvalds bool "Support for console on line printer" 5401da177e4SLinus Torvalds depends on PRINTER 5411da177e4SLinus Torvalds ---help--- 5421da177e4SLinus Torvalds If you want kernel messages to be printed out as they occur, you 5431da177e4SLinus Torvalds can have a console on the printer. This option adds support for 5441da177e4SLinus Torvalds doing that; to actually get it to happen you need to pass the 5451da177e4SLinus Torvalds option "console=lp0" to the kernel at boot time. 5461da177e4SLinus Torvalds 5471da177e4SLinus Torvalds If the printer is out of paper (or off, or unplugged, or too 5481da177e4SLinus Torvalds busy..) the kernel will stall until the printer is ready again. 5491da177e4SLinus Torvalds By defining CONSOLE_LP_STRICT to 0 (at your own risk) you 5501da177e4SLinus Torvalds can make the kernel continue when this happens, 5511da177e4SLinus Torvalds but it'll lose the kernel messages. 5521da177e4SLinus Torvalds 5531da177e4SLinus Torvalds If unsure, say N. 5541da177e4SLinus Torvalds 5551da177e4SLinus Torvaldsconfig PPDEV 5561da177e4SLinus Torvalds tristate "Support for user-space parallel port device drivers" 5571da177e4SLinus Torvalds depends on PARPORT 5581da177e4SLinus Torvalds ---help--- 5591da177e4SLinus Torvalds Saying Y to this adds support for /dev/parport device nodes. This 5601da177e4SLinus Torvalds is needed for programs that want portable access to the parallel 5611da177e4SLinus Torvalds port, for instance deviceid (which displays Plug-and-Play device 5621da177e4SLinus Torvalds IDs). 5631da177e4SLinus Torvalds 5641da177e4SLinus Torvalds This is the parallel port equivalent of SCSI generic support (sg). 5651da177e4SLinus Torvalds It is safe to say N to this -- it is not needed for normal printing 5661da177e4SLinus Torvalds or parallel port CD-ROM/disk support. 5671da177e4SLinus Torvalds 5681da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 5691da177e4SLinus Torvalds module will be called ppdev. 5701da177e4SLinus Torvalds 5711da177e4SLinus Torvalds If unsure, say N. 5721da177e4SLinus Torvalds 57345d607edSRyan S. Arnoldconfig HVC_DRIVER 57445d607edSRyan S. Arnold bool 57545d607edSRyan S. Arnold help 5763e6c6f63SRusty Russell Generic "hypervisor virtual console" infrastructure for various 5772d1df815SRusty Russell hypervisors (pSeries, iSeries, Xen, lguest). 57845d607edSRyan S. Arnold It will automatically be selected if one of the back-end console drivers 57945d607edSRyan S. Arnold is selected. 58045d607edSRyan S. Arnold 58145d607edSRyan S. Arnold 5821da177e4SLinus Torvaldsconfig HVC_CONSOLE 5831da177e4SLinus Torvalds bool "pSeries Hypervisor Virtual Console support" 5841da177e4SLinus Torvalds depends on PPC_PSERIES 58545d607edSRyan S. Arnold select HVC_DRIVER 5861da177e4SLinus Torvalds help 5871da177e4SLinus Torvalds pSeries machines when partitioned support a hypervisor virtual 5881da177e4SLinus Torvalds console. This driver allows each pSeries partition to have a console 5891da177e4SLinus Torvalds which is accessed via the HMC. 5901da177e4SLinus Torvalds 5918bff05b0SStephen Rothwellconfig HVC_ISERIES 5928bff05b0SStephen Rothwell bool "iSeries Hypervisor Virtual Console support" 593b15f792fSStephen Rothwell depends on PPC_ISERIES 594b15f792fSStephen Rothwell default y 5958bff05b0SStephen Rothwell select HVC_DRIVER 5968bff05b0SStephen Rothwell help 5978bff05b0SStephen Rothwell iSeries machines support a hypervisor virtual console. 5988bff05b0SStephen Rothwell 599f4d1749eSArnd Bergmannconfig HVC_RTAS 600f4d1749eSArnd Bergmann bool "IBM RTAS Console support" 601f4d1749eSArnd Bergmann depends on PPC_RTAS 602f4d1749eSArnd Bergmann select HVC_DRIVER 603f4d1749eSArnd Bergmann help 604f4d1749eSArnd Bergmann IBM Console device driver which makes use of RTAS 605f4d1749eSArnd Bergmann 6063cdc20e5SIshizaki Kouconfig HVC_BEAT 6073cdc20e5SIshizaki Kou bool "Toshiba's Beat Hypervisor Console support" 6083cdc20e5SIshizaki Kou depends on PPC_CELLEB 6093cdc20e5SIshizaki Kou select HVC_DRIVER 6103cdc20e5SIshizaki Kou help 6113cdc20e5SIshizaki Kou Toshiba's Cell Reference Set Beat Console device driver 6123cdc20e5SIshizaki Kou 613b536b4b9SJeremy Fitzhardingeconfig HVC_XEN 614b536b4b9SJeremy Fitzhardinge bool "Xen Hypervisor Console support" 615b536b4b9SJeremy Fitzhardinge depends on XEN 616b536b4b9SJeremy Fitzhardinge select HVC_DRIVER 617b536b4b9SJeremy Fitzhardinge default y 618b536b4b9SJeremy Fitzhardinge help 619b536b4b9SJeremy Fitzhardinge Xen virtual console device driver 620b536b4b9SJeremy Fitzhardinge 62131610434SRusty Russellconfig VIRTIO_CONSOLE 62231610434SRusty Russell bool 62331610434SRusty Russell select HVC_DRIVER 62431610434SRusty Russell 6251da177e4SLinus Torvaldsconfig HVCS 6261da177e4SLinus Torvalds tristate "IBM Hypervisor Virtual Console Server support" 6271da177e4SLinus Torvalds depends on PPC_PSERIES 6281da177e4SLinus Torvalds help 6291da177e4SLinus Torvalds Partitionable IBM Power5 ppc64 machines allow hosting of 6301da177e4SLinus Torvalds firmware virtual consoles from one Linux partition by 6311da177e4SLinus Torvalds another Linux partition. This driver allows console data 6321da177e4SLinus Torvalds from Linux partitions to be accessed through TTY device 6331da177e4SLinus Torvalds interfaces in the device tree of a Linux partition running 6341da177e4SLinus Torvalds this driver. 6351da177e4SLinus Torvalds 6361da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 6371da177e4SLinus Torvalds module will be called hvcs.ko. Additionally, this module 6381da177e4SLinus Torvalds will depend on arch specific APIs exported from hvcserver.ko 6391da177e4SLinus Torvalds which will also be compiled when this driver is built as a 6401da177e4SLinus Torvalds module. 6411da177e4SLinus Torvalds 642fe9e8d53SSonny Raoconfig IBM_BSR 643fe9e8d53SSonny Rao tristate "IBM POWER Barrier Synchronization Register support" 644fe9e8d53SSonny Rao depends on PPC_PSERIES 645fe9e8d53SSonny Rao help 646fe9e8d53SSonny Rao This devices exposes a hardware mechanism for fast synchronization 647fe9e8d53SSonny Rao of threads across a large system which avoids bouncing a cacheline 648fe9e8d53SSonny Rao between several cores on a system 649fe9e8d53SSonny Rao 6501da177e4SLinus Torvaldssource "drivers/char/ipmi/Kconfig" 6511da177e4SLinus Torvalds 6521da177e4SLinus Torvaldsconfig DS1620 6531da177e4SLinus Torvalds tristate "NetWinder thermometer support" 6541da177e4SLinus Torvalds depends on ARCH_NETWINDER 6551da177e4SLinus Torvalds help 6561da177e4SLinus Torvalds Say Y here to include support for the thermal management hardware 6571da177e4SLinus Torvalds found in the NetWinder. This driver allows the user to control the 6581da177e4SLinus Torvalds temperature set points and to read the current temperature. 6591da177e4SLinus Torvalds 6601da177e4SLinus Torvalds It is also possible to say M here to build it as a module (ds1620) 6611da177e4SLinus Torvalds It is recommended to be used on a NetWinder, but it is not a 6621da177e4SLinus Torvalds necessity. 6631da177e4SLinus Torvalds 6641da177e4SLinus Torvaldsconfig NWBUTTON 6651da177e4SLinus Torvalds tristate "NetWinder Button" 6661da177e4SLinus Torvalds depends on ARCH_NETWINDER 6671da177e4SLinus Torvalds ---help--- 6681da177e4SLinus Torvalds If you say Y here and create a character device node /dev/nwbutton 6691da177e4SLinus Torvalds with major and minor numbers 10 and 158 ("man mknod"), then every 6701da177e4SLinus Torvalds time the orange button is pressed a number of times, the number of 6711da177e4SLinus Torvalds times the button was pressed will be written to that device. 6721da177e4SLinus Torvalds 6731da177e4SLinus Torvalds This is most useful for applications, as yet unwritten, which 6741da177e4SLinus Torvalds perform actions based on how many times the button is pressed in a 6751da177e4SLinus Torvalds row. 6761da177e4SLinus Torvalds 6771da177e4SLinus Torvalds Do not hold the button down for too long, as the driver does not 6781da177e4SLinus Torvalds alter the behaviour of the hardware reset circuitry attached to the 6791da177e4SLinus Torvalds button; it will still execute a hard reset if the button is held 6801da177e4SLinus Torvalds down for longer than approximately five seconds. 6811da177e4SLinus Torvalds 6821da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 6831da177e4SLinus Torvalds module will be called nwbutton. 6841da177e4SLinus Torvalds 6851da177e4SLinus Torvalds Most people will answer Y to this question and "Reboot Using Button" 6861da177e4SLinus Torvalds below to be able to initiate a system shutdown from the button. 6871da177e4SLinus Torvalds 6881da177e4SLinus Torvaldsconfig NWBUTTON_REBOOT 6891da177e4SLinus Torvalds bool "Reboot Using Button" 6901da177e4SLinus Torvalds depends on NWBUTTON 6911da177e4SLinus Torvalds help 6921da177e4SLinus Torvalds If you say Y here, then you will be able to initiate a system 6931da177e4SLinus Torvalds shutdown and reboot by pressing the orange button a number of times. 6941da177e4SLinus Torvalds The number of presses to initiate the shutdown is two by default, 6951da177e4SLinus Torvalds but this can be altered by modifying the value of NUM_PRESSES_REBOOT 6961da177e4SLinus Torvalds in nwbutton.h and recompiling the driver or, if you compile the 6971da177e4SLinus Torvalds driver as a module, you can specify the number of presses at load 6981da177e4SLinus Torvalds time with "insmod button reboot_count=<something>". 6991da177e4SLinus Torvalds 7001da177e4SLinus Torvaldsconfig NWFLASH 7011da177e4SLinus Torvalds tristate "NetWinder flash support" 7021da177e4SLinus Torvalds depends on ARCH_NETWINDER 7031da177e4SLinus Torvalds ---help--- 7041da177e4SLinus Torvalds If you say Y here and create a character device /dev/flash with 7051da177e4SLinus Torvalds major 10 and minor 160 you can manipulate the flash ROM containing 7061da177e4SLinus Torvalds the NetWinder firmware. Be careful as accidentally overwriting the 7071da177e4SLinus Torvalds flash contents can render your computer unbootable. On no account 7081da177e4SLinus Torvalds allow random users access to this device. :-) 7091da177e4SLinus Torvalds 7101da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 7111da177e4SLinus Torvalds module will be called nwflash. 7121da177e4SLinus Torvalds 7131da177e4SLinus Torvalds If you're not sure, say N. 7141da177e4SLinus Torvalds 715844dd05fSMichael Bueschsource "drivers/char/hw_random/Kconfig" 716844dd05fSMichael Buesch 7171da177e4SLinus Torvaldsconfig NVRAM 7181da177e4SLinus Torvalds tristate "/dev/nvram support" 7190d078f6fSBrian Gerst depends on ATARI || X86 || ARM || GENERIC_NVRAM 7201da177e4SLinus Torvalds ---help--- 7211da177e4SLinus Torvalds If you say Y here and create a character special file /dev/nvram 7221da177e4SLinus Torvalds with major number 10 and minor number 144 using mknod ("man mknod"), 7231da177e4SLinus Torvalds you get read and write access to the extra bytes of non-volatile 7241da177e4SLinus Torvalds memory in the real time clock (RTC), which is contained in every PC 7251da177e4SLinus Torvalds and most Ataris. The actual number of bytes varies, depending on the 7261da177e4SLinus Torvalds nvram in the system, but is usually 114 (128-14 for the RTC). 7271da177e4SLinus Torvalds 7281da177e4SLinus Torvalds This memory is conventionally called "CMOS RAM" on PCs and "NVRAM" 7291da177e4SLinus Torvalds on Ataris. /dev/nvram may be used to view settings there, or to 7301da177e4SLinus Torvalds change them (with some utility). It could also be used to frequently 7311da177e4SLinus Torvalds save a few bits of very important data that may not be lost over 7321da177e4SLinus Torvalds power-off and for which writing to disk is too insecure. Note 7331da177e4SLinus Torvalds however that most NVRAM space in a PC belongs to the BIOS and you 7341da177e4SLinus Torvalds should NEVER idly tamper with it. See Ralf Brown's interrupt list 7351da177e4SLinus Torvalds for a guide to the use of CMOS bytes by your BIOS. 7361da177e4SLinus Torvalds 7371da177e4SLinus Torvalds On Atari machines, /dev/nvram is always configured and does not need 7381da177e4SLinus Torvalds to be selected. 7391da177e4SLinus Torvalds 7401da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 7411da177e4SLinus Torvalds module will be called nvram. 7421da177e4SLinus Torvalds 743c7500900SDavid Brownell# 744c7500900SDavid Brownell# These legacy RTC drivers just cause too many conflicts with the generic 745c7500900SDavid Brownell# RTC framework ... let's not even try to coexist any more. 746c7500900SDavid Brownell# 747c7500900SDavid Brownellif RTC_LIB=n 748c7500900SDavid Brownell 7491da177e4SLinus Torvaldsconfig RTC 750e6d2bb2bSDavid Brownell tristate "Enhanced Real Time Clock Support (legacy PC RTC driver)" 751c7500900SDavid Brownell depends on !PPC && !PARISC && !IA64 && !M68K && !SPARC && !FRV \ 752c7500900SDavid Brownell && !ARM && !SUPERH && !S390 && !AVR32 7531da177e4SLinus Torvalds ---help--- 7541da177e4SLinus Torvalds If you say Y here and create a character special file /dev/rtc with 7551da177e4SLinus Torvalds major number 10 and minor number 135 using mknod ("man mknod"), you 7561da177e4SLinus Torvalds will get access to the real time clock (or hardware clock) built 7571da177e4SLinus Torvalds into your computer. 7581da177e4SLinus Torvalds 7591da177e4SLinus Torvalds Every PC has such a clock built in. It can be used to generate 7601da177e4SLinus Torvalds signals from as low as 1Hz up to 8192Hz, and can also be used 7611da177e4SLinus Torvalds as a 24 hour alarm. It reports status information via the file 7621da177e4SLinus Torvalds /proc/driver/rtc and its behaviour is set by various ioctls on 7631da177e4SLinus Torvalds /dev/rtc. 7641da177e4SLinus Torvalds 7651da177e4SLinus Torvalds If you run Linux on a multiprocessor machine and said Y to 7661da177e4SLinus Torvalds "Symmetric Multi Processing" above, you should say Y here to read 7671da177e4SLinus Torvalds and set the RTC in an SMP compatible fashion. 7681da177e4SLinus Torvalds 7691da177e4SLinus Torvalds If you think you have a use for such a device (such as periodic data 7701da177e4SLinus Torvalds sampling), then say Y here, and read <file:Documentation/rtc.txt> 7711da177e4SLinus Torvalds for details. 7721da177e4SLinus Torvalds 7731da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 7741da177e4SLinus Torvalds module will be called rtc. 7751da177e4SLinus Torvalds 7762240598cSAl Viroconfig JS_RTC 7772240598cSAl Viro tristate "Enhanced Real Time Clock Support" 7782240598cSAl Viro depends on SPARC32 && PCI 7792240598cSAl Viro ---help--- 7802240598cSAl Viro If you say Y here and create a character special file /dev/rtc with 7812240598cSAl Viro major number 10 and minor number 135 using mknod ("man mknod"), you 7822240598cSAl Viro will get access to the real time clock (or hardware clock) built 7832240598cSAl Viro into your computer. 7842240598cSAl Viro 7852240598cSAl Viro Every PC has such a clock built in. It can be used to generate 7862240598cSAl Viro signals from as low as 1Hz up to 8192Hz, and can also be used 7872240598cSAl Viro as a 24 hour alarm. It reports status information via the file 7882240598cSAl Viro /proc/driver/rtc and its behaviour is set by various ioctls on 7892240598cSAl Viro /dev/rtc. 7902240598cSAl Viro 7912240598cSAl Viro If you think you have a use for such a device (such as periodic data 7922240598cSAl Viro sampling), then say Y here, and read <file:Documentation/rtc.txt> 7932240598cSAl Viro for details. 7942240598cSAl Viro 7952240598cSAl Viro To compile this driver as a module, choose M here: the 7962240598cSAl Viro module will be called js-rtc. 7972240598cSAl Viro 7981da177e4SLinus Torvaldsconfig SGI_DS1286 7991da177e4SLinus Torvalds tristate "SGI DS1286 RTC support" 800f5d3f30dSThomas Bogendoerfer depends on SGI_HAS_DS1286 8011da177e4SLinus Torvalds help 8021da177e4SLinus Torvalds If you say Y here and create a character special file /dev/rtc with 8031da177e4SLinus Torvalds major number 10 and minor number 135 using mknod ("man mknod"), you 8041da177e4SLinus Torvalds will get access to the real time clock built into your computer. 8051da177e4SLinus Torvalds Every SGI has such a clock built in. It reports status information 8061da177e4SLinus Torvalds via the file /proc/rtc and its behaviour is set by various ioctls on 8071da177e4SLinus Torvalds /dev/rtc. 8081da177e4SLinus Torvalds 8091da177e4SLinus Torvaldsconfig SGI_IP27_RTC 8101da177e4SLinus Torvalds bool "SGI M48T35 RTC support" 8111da177e4SLinus Torvalds depends on SGI_IP27 8121da177e4SLinus Torvalds help 8131da177e4SLinus Torvalds If you say Y here and create a character special file /dev/rtc with 8141da177e4SLinus Torvalds major number 10 and minor number 135 using mknod ("man mknod"), you 8151da177e4SLinus Torvalds will get access to the real time clock built into your computer. 8161da177e4SLinus Torvalds Every SGI has such a clock built in. It reports status information 8171da177e4SLinus Torvalds via the file /proc/rtc and its behaviour is set by various ioctls on 8181da177e4SLinus Torvalds /dev/rtc. 8191da177e4SLinus Torvalds 8201da177e4SLinus Torvaldsconfig GEN_RTC 8211da177e4SLinus Torvalds tristate "Generic /dev/rtc emulation" 822cc65d90fSAdrian Bunk depends on RTC!=y && !IA64 && !ARM && !M32R && !MIPS && !SPARC && !FRV && !S390 && !SUPERH && !AVR32 8231da177e4SLinus Torvalds ---help--- 8241da177e4SLinus Torvalds If you say Y here and create a character special file /dev/rtc with 8251da177e4SLinus Torvalds major number 10 and minor number 135 using mknod ("man mknod"), you 8261da177e4SLinus Torvalds will get access to the real time clock (or hardware clock) built 8271da177e4SLinus Torvalds into your computer. 8281da177e4SLinus Torvalds 8291da177e4SLinus Torvalds It reports status information via the file /proc/driver/rtc and its 8301da177e4SLinus Torvalds behaviour is set by various ioctls on /dev/rtc. If you enable the 8311da177e4SLinus Torvalds "extended RTC operation" below it will also provide an emulation 8321da177e4SLinus Torvalds for RTC_UIE which is required by some programs and may improve 8331da177e4SLinus Torvalds precision in some cases. 8341da177e4SLinus Torvalds 8351da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 8361da177e4SLinus Torvalds module will be called genrtc. 8371da177e4SLinus Torvalds 8381da177e4SLinus Torvaldsconfig GEN_RTC_X 8391da177e4SLinus Torvalds bool "Extended RTC operation" 8401da177e4SLinus Torvalds depends on GEN_RTC 8411da177e4SLinus Torvalds help 8421da177e4SLinus Torvalds Provides an emulation for RTC_UIE which is required by some programs 8431da177e4SLinus Torvalds and may improve precision of the generic RTC support in some cases. 8441da177e4SLinus Torvalds 8451da177e4SLinus Torvaldsconfig EFI_RTC 8461da177e4SLinus Torvalds bool "EFI Real Time Clock Services" 8471da177e4SLinus Torvalds depends on IA64 8481da177e4SLinus Torvalds 8491da177e4SLinus Torvaldsconfig DS1302 8501da177e4SLinus Torvalds tristate "DS1302 RTC support" 8511da177e4SLinus Torvalds depends on M32R && (PLAT_M32700UT || PLAT_OPSPUT) 8521da177e4SLinus Torvalds help 8531da177e4SLinus Torvalds If you say Y here and create a character special file /dev/rtc with 8541da177e4SLinus Torvalds major number 121 and minor number 0 using mknod ("man mknod"), you 8551da177e4SLinus Torvalds will get access to the real time clock (or hardware clock) built 8561da177e4SLinus Torvalds into your computer. 8571da177e4SLinus Torvalds 858c7500900SDavid Brownellendif # RTC_LIB 859c7500900SDavid Brownell 8601da177e4SLinus Torvaldsconfig COBALT_LCD 8611da177e4SLinus Torvalds bool "Support for Cobalt LCD" 8621da177e4SLinus Torvalds depends on MIPS_COBALT 8631da177e4SLinus Torvalds help 8641da177e4SLinus Torvalds This option enables support for the LCD display and buttons found 8651da177e4SLinus Torvalds on Cobalt systems through a misc device. 8661da177e4SLinus Torvalds 8671da177e4SLinus Torvaldsconfig DTLK 8681da177e4SLinus Torvalds tristate "Double Talk PC internal speech card support" 869eeca7a36SMartin Schwidefsky depends on ISA 8701da177e4SLinus Torvalds help 8711da177e4SLinus Torvalds This driver is for the DoubleTalk PC, a speech synthesizer 8721da177e4SLinus Torvalds manufactured by RC Systems (<http://www.rcsys.com/>). It is also 8731da177e4SLinus Torvalds called the `internal DoubleTalk'. 8741da177e4SLinus Torvalds 8751da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 8761da177e4SLinus Torvalds module will be called dtlk. 8771da177e4SLinus Torvalds 878ef141a0bSStephen Neuendorfferconfig XILINX_HWICAP 879ef141a0bSStephen Neuendorffer tristate "Xilinx HWICAP Support" 880ef141a0bSStephen Neuendorffer depends on XILINX_VIRTEX 881ef141a0bSStephen Neuendorffer help 882ef141a0bSStephen Neuendorffer This option enables support for Xilinx Internal Configuration 883ef141a0bSStephen Neuendorffer Access Port (ICAP) driver. The ICAP is used on Xilinx Virtex 884ef141a0bSStephen Neuendorffer FPGA platforms to partially reconfigure the FPGA at runtime. 885ef141a0bSStephen Neuendorffer 886ef141a0bSStephen Neuendorffer If unsure, say N. 887ef141a0bSStephen Neuendorffer 8881da177e4SLinus Torvaldsconfig R3964 8891da177e4SLinus Torvalds tristate "Siemens R3964 line discipline" 8901da177e4SLinus Torvalds ---help--- 8911da177e4SLinus Torvalds This driver allows synchronous communication with devices using the 8921da177e4SLinus Torvalds Siemens R3964 packet protocol. Unless you are dealing with special 8931da177e4SLinus Torvalds hardware like PLCs, you are unlikely to need this. 8941da177e4SLinus Torvalds 8951da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 8961da177e4SLinus Torvalds module will be called n_r3964. 8971da177e4SLinus Torvalds 8981da177e4SLinus Torvalds If unsure, say N. 8991da177e4SLinus Torvalds 9001da177e4SLinus Torvaldsconfig APPLICOM 9011da177e4SLinus Torvalds tristate "Applicom intelligent fieldbus card support" 9021da177e4SLinus Torvalds depends on PCI 9031da177e4SLinus Torvalds ---help--- 9041da177e4SLinus Torvalds This driver provides the kernel-side support for the intelligent 9051da177e4SLinus Torvalds fieldbus cards made by Applicom International. More information 9061da177e4SLinus Torvalds about these cards can be found on the WWW at the address 9071da177e4SLinus Torvalds <http://www.applicom-int.com/>, or by email from David Woodhouse 9081da177e4SLinus Torvalds <dwmw2@infradead.org>. 9091da177e4SLinus Torvalds 9101da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 9111da177e4SLinus Torvalds module will be called applicom. 9121da177e4SLinus Torvalds 9131da177e4SLinus Torvalds If unsure, say N. 9141da177e4SLinus Torvalds 9151da177e4SLinus Torvaldsconfig SONYPI 9161da177e4SLinus Torvalds tristate "Sony Vaio Programmable I/O Control Device support (EXPERIMENTAL)" 9171da177e4SLinus Torvalds depends on EXPERIMENTAL && X86 && PCI && INPUT && !64BIT 9181da177e4SLinus Torvalds ---help--- 9191da177e4SLinus Torvalds This driver enables access to the Sony Programmable I/O Control 9201da177e4SLinus Torvalds Device which can be found in many (all ?) Sony Vaio laptops. 9211da177e4SLinus Torvalds 9221da177e4SLinus Torvalds If you have one of those laptops, read 923018a651aSCarlos Corbacho <file:Documentation/laptops/sonypi.txt>, and say Y or M here. 9241da177e4SLinus Torvalds 9251da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 9261da177e4SLinus Torvalds module will be called sonypi. 9271da177e4SLinus Torvalds 92809762516SYoichi Yuasaconfig GPIO_TB0219 92909762516SYoichi Yuasa tristate "TANBAC TB0219 GPIO support" 930bef1f402SRobert P. J. Day depends on TANBAC_TB022X 931584e1236SYoichi Yuasa select GPIO_VR41XX 9321da177e4SLinus Torvalds 9331da177e4SLinus Torvaldssource "drivers/char/pcmcia/Kconfig" 9341da177e4SLinus Torvalds 9351da177e4SLinus Torvaldsconfig MWAVE 9361da177e4SLinus Torvalds tristate "ACP Modem (Mwave) support" 9371da177e4SLinus Torvalds depends on X86 9381da177e4SLinus Torvalds select SERIAL_8250 9391da177e4SLinus Torvalds ---help--- 9401da177e4SLinus Torvalds The ACP modem (Mwave) for Linux is a WinModem. It is composed of a 9411da177e4SLinus Torvalds kernel driver and a user level application. Together these components 9421da177e4SLinus Torvalds support direct attachment to public switched telephone networks (PSTNs) 9431da177e4SLinus Torvalds and support selected world wide countries. 9441da177e4SLinus Torvalds 9451da177e4SLinus Torvalds This version of the ACP Modem driver supports the IBM Thinkpad 600E, 9461da177e4SLinus Torvalds 600, and 770 that include on board ACP modem hardware. 9471da177e4SLinus Torvalds 9481da177e4SLinus Torvalds The modem also supports the standard communications port interface 9491da177e4SLinus Torvalds (ttySx) and is compatible with the Hayes AT Command Set. 9501da177e4SLinus Torvalds 9511da177e4SLinus Torvalds The user level application needed to use this driver can be found at 9521da177e4SLinus Torvalds the IBM Linux Technology Center (LTC) web site: 9531da177e4SLinus Torvalds <http://www.ibm.com/linux/ltc/>. 9541da177e4SLinus Torvalds 9551da177e4SLinus Torvalds If you own one of the above IBM Thinkpads which has the Mwave chipset 9561da177e4SLinus Torvalds in it, say Y. 9571da177e4SLinus Torvalds 9581da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 9591da177e4SLinus Torvalds module will be called mwave. 9601da177e4SLinus Torvalds 9611da177e4SLinus Torvaldsconfig SCx200_GPIO 9621da177e4SLinus Torvalds tristate "NatSemi SCx200 GPIO Support" 9631da177e4SLinus Torvalds depends on SCx200 9647a8e2a5eSJim Cromie select NSC_GPIO 9651da177e4SLinus Torvalds help 9661da177e4SLinus Torvalds Give userspace access to the GPIO pins on the National 9671da177e4SLinus Torvalds Semiconductor SCx200 processors. 9681da177e4SLinus Torvalds 9691da177e4SLinus Torvalds If compiled as a module, it will be called scx200_gpio. 9701da177e4SLinus Torvalds 9717a8e2a5eSJim Cromieconfig PC8736x_GPIO 9727a8e2a5eSJim Cromie tristate "NatSemi PC8736x GPIO Support" 9737a8e2a5eSJim Cromie depends on X86 9747a8e2a5eSJim Cromie default SCx200_GPIO # mostly N 9757a8e2a5eSJim Cromie select NSC_GPIO # needed for support routines 9767a8e2a5eSJim Cromie help 9777a8e2a5eSJim Cromie Give userspace access to the GPIO pins on the National 9787a8e2a5eSJim Cromie Semiconductor PC-8736x (x=[03456]) SuperIO chip. The chip 9797a8e2a5eSJim Cromie has multiple functional units, inc several managed by 9807a8e2a5eSJim Cromie hwmon/pc87360 driver. Tested with PC-87366 9817a8e2a5eSJim Cromie 9827a8e2a5eSJim Cromie If compiled as a module, it will be called pc8736x_gpio. 9837a8e2a5eSJim Cromie 9847a8e2a5eSJim Cromieconfig NSC_GPIO 9857a8e2a5eSJim Cromie tristate "NatSemi Base GPIO Support" 986699352c3SDave Jones depends on X86_32 9877a8e2a5eSJim Cromie # selected by SCx200_GPIO and PC8736x_GPIO 9887a8e2a5eSJim Cromie # what about 2 selectors differing: m != y 9897a8e2a5eSJim Cromie help 9907a8e2a5eSJim Cromie Common support used (and needed) by scx200_gpio and 9917a8e2a5eSJim Cromie pc8736x_gpio drivers. If those drivers are built as 9927a8e2a5eSJim Cromie modules, this one will be too, named nsc_gpio 9937a8e2a5eSJim Cromie 994e329113cSBen Gardnerconfig CS5535_GPIO 995e329113cSBen Gardner tristate "AMD CS5535/CS5536 GPIO (Geode Companion Device)" 996e329113cSBen Gardner depends on X86_32 997e329113cSBen Gardner help 998e329113cSBen Gardner Give userspace access to the GPIO pins on the AMD CS5535 and 999e329113cSBen Gardner CS5536 Geode companion devices. 1000e329113cSBen Gardner 1001e329113cSBen Gardner If compiled as a module, it will be called cs5535_gpio. 1002e329113cSBen Gardner 1003e400bae9SYoichi Yuasaconfig GPIO_VR41XX 1004e400bae9SYoichi Yuasa tristate "NEC VR4100 series General-purpose I/O Unit support" 1005e400bae9SYoichi Yuasa depends on CPU_VR41XX 1006e400bae9SYoichi Yuasa 10071da177e4SLinus Torvaldsconfig RAW_DRIVER 1008abd4aa5aSDave Jones tristate "RAW driver (/dev/raw/rawN)" 10099361401eSDavid Howells depends on BLOCK 10101da177e4SLinus Torvalds help 10111da177e4SLinus Torvalds The raw driver permits block devices to be bound to /dev/raw/rawN. 10121da177e4SLinus Torvalds Once bound, I/O against /dev/raw/rawN uses efficient zero-copy I/O. 10131da177e4SLinus Torvalds See the raw(8) manpage for more details. 10141da177e4SLinus Torvalds 1015abd4aa5aSDave Jones Applications should preferably open the device (eg /dev/hda1) 10161da177e4SLinus Torvalds with the O_DIRECT flag. 10171da177e4SLinus Torvalds 10180de502aaSAndrew Mortonconfig MAX_RAW_DEVS 10190de502aaSAndrew Morton int "Maximum number of RAW devices to support (1-8192)" 10200de502aaSAndrew Morton depends on RAW_DRIVER 10210de502aaSAndrew Morton default "256" 10220de502aaSAndrew Morton help 10230de502aaSAndrew Morton The maximum number of RAW devices that are supported. 10240de502aaSAndrew Morton Default is 256. Increase this number in case you need lots of 10250de502aaSAndrew Morton raw devices. 10260de502aaSAndrew Morton 10271da177e4SLinus Torvaldsconfig HPET 10281da177e4SLinus Torvalds bool "HPET - High Precision Event Timer" if (X86 || IA64) 10291da177e4SLinus Torvalds default n 10301da177e4SLinus Torvalds depends on ACPI 10311da177e4SLinus Torvalds help 10321da177e4SLinus Torvalds If you say Y here, you will have a miscdevice named "/dev/hpet/". Each 10331da177e4SLinus Torvalds open selects one of the timers supported by the HPET. The timers are 10343cb2fcccSMatt LaPlante non-periodic and/or periodic. 10351da177e4SLinus Torvalds 10361da177e4SLinus Torvaldsconfig HPET_RTC_IRQ 1037e6d2bb2bSDavid Brownell bool 1038e6d2bb2bSDavid Brownell default HPET_EMULATE_RTC 1039e6d2bb2bSDavid Brownell depends on RTC && HPET 10401da177e4SLinus Torvalds help 10411da177e4SLinus Torvalds If you say Y here, you will disable RTC_IRQ in drivers/char/rtc.c. It 10421da177e4SLinus Torvalds is assumed the platform called hpet_alloc with the RTC IRQ values for 10431da177e4SLinus Torvalds the HPET timers. 10441da177e4SLinus Torvalds 10451da177e4SLinus Torvaldsconfig HPET_MMAP 10461da177e4SLinus Torvalds bool "Allow mmap of HPET" 10471da177e4SLinus Torvalds default y 10481da177e4SLinus Torvalds depends on HPET 10491da177e4SLinus Torvalds help 10501da177e4SLinus Torvalds If you say Y here, user applications will be able to mmap 10511da177e4SLinus Torvalds the HPET registers. 10521da177e4SLinus Torvalds 10531da177e4SLinus Torvalds In some hardware implementations, the page containing HPET 10541da177e4SLinus Torvalds registers may also contain other things that shouldn't be 10551da177e4SLinus Torvalds exposed to the user. If this applies to your hardware, 10561da177e4SLinus Torvalds say N here. 10571da177e4SLinus Torvalds 10581da177e4SLinus Torvaldsconfig HANGCHECK_TIMER 10591da177e4SLinus Torvalds tristate "Hangcheck timer" 1060abf3ea1bSMartin Schwidefsky depends on X86 || IA64 || PPC64 || S390 10611da177e4SLinus Torvalds help 10621da177e4SLinus Torvalds The hangcheck-timer module detects when the system has gone 10631da177e4SLinus Torvalds out to lunch past a certain margin. It can reboot the system 10641da177e4SLinus Torvalds or merely print a warning. 10651da177e4SLinus Torvalds 10661da177e4SLinus Torvaldsconfig MMTIMER 10671da177e4SLinus Torvalds tristate "MMTIMER Memory mapped RTC for SGI Altix" 10681da177e4SLinus Torvalds depends on IA64_GENERIC || IA64_SGI_SN2 10691da177e4SLinus Torvalds default y 10701da177e4SLinus Torvalds help 10711da177e4SLinus Torvalds The mmtimer device allows direct userspace access to the 10721da177e4SLinus Torvalds Altix system timer. 10731da177e4SLinus Torvalds 10741da177e4SLinus Torvaldssource "drivers/char/tpm/Kconfig" 10751da177e4SLinus Torvalds 10761a80ba88SMark Grossconfig TELCLOCK 107703154a27SMark Gross tristate "Telecom clock driver for ATCA SBC" 10784d99bfacSGeert Uytterhoeven depends on EXPERIMENTAL && X86 10791a80ba88SMark Gross default n 10801a80ba88SMark Gross help 108103154a27SMark Gross The telecom clock device is specific to the MPCBL0010 and MPCBL0050 108203154a27SMark Gross ATCA computers and allows direct userspace access to the 108303154a27SMark Gross configuration of the telecom clock configuration settings. This 108403154a27SMark Gross device is used for hardware synchronization across the ATCA backplane 108503154a27SMark Gross fabric. Upon loading, the driver exports a sysfs directory, 108603154a27SMark Gross /sys/devices/platform/telco_clock, with a number of files for 108703154a27SMark Gross controlling the behavior of this hardware. 10881a80ba88SMark Gross 10894f911d64SRussell Kingconfig DEVPORT 10904f911d64SRussell King bool 10914f911d64SRussell King depends on !M68K 10924f911d64SRussell King depends on ISA || PCI 10934f911d64SRussell King default y 10944f911d64SRussell King 109561d48c2cSMartin Schwidefskysource "drivers/s390/char/Kconfig" 109661d48c2cSMartin Schwidefsky 10971da177e4SLinus Torvaldsendmenu 10981da177e4SLinus Torvalds 1099