Kconfig 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266
  1. #
  2. # Serial device configuration
  3. #
  4. # $Id: Kconfig,v 1.11 2004/03/11 18:08:04 lethal Exp $
  5. #
  6. menu "Serial drivers"
  7. depends on HAS_IOMEM
  8. #
  9. # The new 8250/16550 serial drivers
  10. config SERIAL_8250
  11. tristate "8250/16550 and compatible serial support"
  12. depends on (BROKEN || !SPARC)
  13. select SERIAL_CORE
  14. ---help---
  15. This selects whether you want to include the driver for the standard
  16. serial ports. The standard answer is Y. People who might say N
  17. here are those that are setting up dedicated Ethernet WWW/FTP
  18. servers, or users that have one of the various bus mice instead of a
  19. serial mouse and don't intend to use their machine's standard serial
  20. port for anything. (Note that the Cyclades and Stallion multi
  21. serial port drivers do not need this driver built in for them to
  22. work.)
  23. To compile this driver as a module, choose M here: the
  24. module will be called 8250.
  25. [WARNING: Do not compile this driver as a module if you are using
  26. non-standard serial ports, since the configuration information will
  27. be lost when the driver is unloaded. This limitation may be lifted
  28. in the future.]
  29. BTW1: If you have a mouseman serial mouse which is not recognized by
  30. the X window system, try running gpm first.
  31. BTW2: If you intend to use a software modem (also called Winmodem)
  32. under Linux, forget it. These modems are crippled and require
  33. proprietary drivers which are only available under Windows.
  34. Most people will say Y or M here, so that they can use serial mice,
  35. modems and similar devices connecting to the standard serial ports.
  36. config SERIAL_8250_CONSOLE
  37. bool "Console on 8250/16550 and compatible serial port"
  38. depends on SERIAL_8250=y
  39. select SERIAL_CORE_CONSOLE
  40. ---help---
  41. If you say Y here, it will be possible to use a serial port as the
  42. system console (the system console is the device which receives all
  43. kernel messages and warnings and which allows logins in single user
  44. mode). This could be useful if some terminal or printer is connected
  45. to that serial port.
  46. Even if you say Y here, the currently visible virtual console
  47. (/dev/tty0) will still be used as the system console by default, but
  48. you can alter that using a kernel command line option such as
  49. "console=ttyS1". (Try "man bootparam" or see the documentation of
  50. your boot loader (grub or lilo or loadlin) about how to pass options
  51. to the kernel at boot time.)
  52. If you don't have a VGA card installed and you say Y here, the
  53. kernel will automatically use the first serial line, /dev/ttyS0, as
  54. system console.
  55. you can set that using a kernel command line option such as
  56. "console=uart8250,io,0x3f8,9600n8"
  57. "console=uart8250,mmio,0xff5e0000,115200n8".
  58. and it will switch to normal serial console when correponding port is
  59. ready.
  60. "earlycon=uart8250,io,0x3f8,9600n8"
  61. "earlycon=uart8250,mmio,0xff5e0000,115200n8".
  62. it will not only setup early console.
  63. If unsure, say N.
  64. config FIX_EARLYCON_MEM
  65. bool
  66. depends on X86
  67. default y
  68. config SERIAL_8250_GSC
  69. tristate
  70. depends on SERIAL_8250 && GSC
  71. default SERIAL_8250
  72. config SERIAL_8250_PCI
  73. tristate "8250/16550 PCI device support" if EMBEDDED
  74. depends on SERIAL_8250 && PCI
  75. default SERIAL_8250
  76. help
  77. Say Y here if you have PCI serial ports.
  78. To compile this driver as a module, choose M here: the module
  79. will be called 8250_pci.
  80. config SERIAL_8250_PNP
  81. tristate "8250/16550 PNP device support" if EMBEDDED
  82. depends on SERIAL_8250 && PNP
  83. default SERIAL_8250
  84. help
  85. Say Y here if you have serial ports described by PNPBIOS or ACPI.
  86. These are typically ports built into the system board.
  87. To compile this driver as a module, choose M here: the module
  88. will be called 8250_pnp.
  89. config SERIAL_8250_HP300
  90. tristate
  91. depends on SERIAL_8250 && HP300
  92. default SERIAL_8250
  93. config SERIAL_8250_CS
  94. tristate "8250/16550 PCMCIA device support"
  95. depends on PCMCIA && SERIAL_8250
  96. ---help---
  97. Say Y here to enable support for 16-bit PCMCIA serial devices,
  98. including serial port cards, modems, and the modem functions of
  99. multi-function Ethernet/modem cards. (PCMCIA- or PC-cards are
  100. credit-card size devices often used with laptops.)
  101. To compile this driver as a module, choose M here: the
  102. module will be called serial_cs.
  103. If unsure, say N.
  104. config SERIAL_8250_NR_UARTS
  105. int "Maximum number of 8250/16550 serial ports"
  106. depends on SERIAL_8250
  107. default "4"
  108. help
  109. Set this to the number of serial ports you want the driver
  110. to support. This includes any ports discovered via ACPI or
  111. PCI enumeration and any ports that may be added at run-time
  112. via hot-plug, or any ISA multi-port serial cards.
  113. config SERIAL_8250_RUNTIME_UARTS
  114. int "Number of 8250/16550 serial ports to register at runtime"
  115. depends on SERIAL_8250
  116. range 0 SERIAL_8250_NR_UARTS
  117. default "4"
  118. help
  119. Set this to the maximum number of serial ports you want
  120. the kernel to register at boot time. This can be overridden
  121. with the module parameter "nr_uarts", or boot-time parameter
  122. 8250.nr_uarts
  123. config SERIAL_8250_EXTENDED
  124. bool "Extended 8250/16550 serial driver options"
  125. depends on SERIAL_8250
  126. help
  127. If you wish to use any non-standard features of the standard "dumb"
  128. driver, say Y here. This includes HUB6 support, shared serial
  129. interrupts, special multiport support, support for more than the
  130. four COM 1/2/3/4 boards, etc.
  131. Note that the answer to this question won't directly affect the
  132. kernel: saying N will just cause the configurator to skip all
  133. the questions about serial driver options. If unsure, say N.
  134. config SERIAL_8250_MANY_PORTS
  135. bool "Support more than 4 legacy serial ports"
  136. depends on SERIAL_8250_EXTENDED && !IA64
  137. help
  138. Say Y here if you have dumb serial boards other than the four
  139. standard COM 1/2/3/4 ports. This may happen if you have an AST
  140. FourPort, Accent Async, Boca (read the Boca mini-HOWTO, available
  141. from <http://www.tldp.org/docs.html#howto>), or other custom
  142. serial port hardware which acts similar to standard serial port
  143. hardware. If you only use the standard COM 1/2/3/4 ports, you can
  144. say N here to save some memory. You can also say Y if you have an
  145. "intelligent" multiport card such as Cyclades, Digiboards, etc.
  146. #
  147. # Multi-port serial cards
  148. #
  149. config SERIAL_8250_FOURPORT
  150. tristate "Support Fourport cards"
  151. depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS
  152. help
  153. Say Y here if you have an AST FourPort serial board.
  154. To compile this driver as a module, choose M here: the module
  155. will be called 8250_fourport.
  156. config SERIAL_8250_ACCENT
  157. tristate "Support Accent cards"
  158. depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS
  159. help
  160. Say Y here if you have an Accent Async serial board.
  161. To compile this driver as a module, choose M here: the module
  162. will be called 8250_accent.
  163. config SERIAL_8250_BOCA
  164. tristate "Support Boca cards"
  165. depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS
  166. help
  167. Say Y here if you have a Boca serial board. Please read the Boca
  168. mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>
  169. To compile this driver as a module, choose M here: the module
  170. will be called 8250_boca.
  171. config SERIAL_8250_EXAR_ST16C554
  172. tristate "Support Exar ST16C554/554D Quad UART"
  173. depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS
  174. help
  175. The Uplogix Envoy TU301 uses this Exar Quad UART. If you are
  176. tinkering with your Envoy TU301, or have a machine with this UART,
  177. say Y here.
  178. To compile this driver as a module, choose M here: the module
  179. will be called 8250_exar_st16c554.
  180. config SERIAL_8250_HUB6
  181. tristate "Support Hub6 cards"
  182. depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS
  183. help
  184. Say Y here if you have a HUB6 serial board.
  185. To compile this driver as a module, choose M here: the module
  186. will be called 8250_hub6.
  187. config SERIAL_8250_SHARE_IRQ
  188. bool "Support for sharing serial interrupts"
  189. depends on SERIAL_8250_EXTENDED
  190. help
  191. Some serial boards have hardware support which allows multiple dumb
  192. serial ports on the same board to share a single IRQ. To enable
  193. support for this in the serial driver, say Y here.
  194. config SERIAL_8250_DETECT_IRQ
  195. bool "Autodetect IRQ on standard ports (unsafe)"
  196. depends on SERIAL_8250_EXTENDED
  197. help
  198. Say Y here if you want the kernel to try to guess which IRQ
  199. to use for your serial port.
  200. This is considered unsafe; it is far better to configure the IRQ in
  201. a boot script using the setserial command.
  202. If unsure, say N.
  203. config SERIAL_8250_RSA
  204. bool "Support RSA serial ports"
  205. depends on SERIAL_8250_EXTENDED
  206. help
  207. ::: To be written :::
  208. config SERIAL_8250_MCA
  209. tristate "Support 8250-type ports on MCA buses"
  210. depends on SERIAL_8250 != n && MCA
  211. help
  212. Say Y here if you have a MCA serial ports.
  213. To compile this driver as a module, choose M here: the module
  214. will be called 8250_mca.
  215. config SERIAL_8250_ACORN
  216. tristate "Acorn expansion card serial port support"
  217. depends on ARCH_ACORN && SERIAL_8250
  218. help
  219. If you have an Atomwide Serial card or Serial Port card for an Acorn
  220. system, say Y to this option. The driver can handle 1, 2, or 3 port
  221. cards. If unsure, say N.
  222. config SERIAL_8250_AU1X00
  223. bool "AU1X00 serial port support"
  224. depends on SERIAL_8250 != n && SOC_AU1X00
  225. help
  226. If you have an Au1x00 board and want to use the serial port, say Y
  227. to this option. The driver can handle 1 or 2 serial ports.
  228. If unsure, say N.
  229. config SERIAL_8250_RM9K
  230. bool "Support for MIPS RM9xxx integrated serial port"
  231. depends on SERIAL_8250 != n && SERIAL_RM9000
  232. select SERIAL_8250_SHARE_IRQ
  233. help
  234. Selecting this option will add support for the integrated serial
  235. port hardware found on MIPS RM9122 and similar processors.
  236. If unsure, say N.
  237. comment "Non-8250 serial port support"
  238. config SERIAL_AMBA_PL010
  239. tristate "ARM AMBA PL010 serial port support"
  240. depends on ARM_AMBA && (BROKEN || !ARCH_VERSATILE)
  241. select SERIAL_CORE
  242. help
  243. This selects the ARM(R) AMBA(R) PrimeCell PL010 UART. If you have
  244. an Integrator/AP or Integrator/PP2 platform, or if you have a
  245. Cirrus Logic EP93xx CPU, say Y or M here.
  246. If unsure, say N.
  247. config SERIAL_AMBA_PL010_CONSOLE
  248. bool "Support for console on AMBA serial port"
  249. depends on SERIAL_AMBA_PL010=y
  250. select SERIAL_CORE_CONSOLE
  251. ---help---
  252. Say Y here if you wish to use an AMBA PrimeCell UART as the system
  253. console (the system console is the device which receives all kernel
  254. messages and warnings and which allows logins in single user mode).
  255. Even if you say Y here, the currently visible framebuffer console
  256. (/dev/tty0) will still be used as the system console by default, but
  257. you can alter that using a kernel command line option such as
  258. "console=ttyAM0". (Try "man bootparam" or see the documentation of
  259. your boot loader (lilo or loadlin) about how to pass options to the
  260. kernel at boot time.)
  261. config SERIAL_AMBA_PL011
  262. tristate "ARM AMBA PL011 serial port support"
  263. depends on ARM_AMBA
  264. select SERIAL_CORE
  265. help
  266. This selects the ARM(R) AMBA(R) PrimeCell PL011 UART. If you have
  267. an Integrator/PP2, Integrator/CP or Versatile platform, say Y or M
  268. here.
  269. If unsure, say N.
  270. config SERIAL_AMBA_PL011_CONSOLE
  271. bool "Support for console on AMBA serial port"
  272. depends on SERIAL_AMBA_PL011=y
  273. select SERIAL_CORE_CONSOLE
  274. ---help---
  275. Say Y here if you wish to use an AMBA PrimeCell UART as the system
  276. console (the system console is the device which receives all kernel
  277. messages and warnings and which allows logins in single user mode).
  278. Even if you say Y here, the currently visible framebuffer console
  279. (/dev/tty0) will still be used as the system console by default, but
  280. you can alter that using a kernel command line option such as
  281. "console=ttyAMA0". (Try "man bootparam" or see the documentation of
  282. your boot loader (lilo or loadlin) about how to pass options to the
  283. kernel at boot time.)
  284. config SERIAL_SB1250_DUART
  285. tristate "BCM1xxx on-chip DUART serial support"
  286. depends on SIBYTE_SB1xxx_SOC=y
  287. select SERIAL_CORE
  288. default y
  289. ---help---
  290. Support for the asynchronous serial interface (DUART) included in
  291. the BCM1250 and derived System-On-a-Chip (SOC) devices. Note that
  292. the letter D in DUART stands for "dual", which is how the device
  293. is implemented. Depending on the SOC configuration there may be
  294. one or more DUARTs available of which all are handled.
  295. If unsure, say Y. To compile this driver as a module, choose M here:
  296. the module will be called sb1250-duart.
  297. config SERIAL_SB1250_DUART_CONSOLE
  298. bool "Support for console on a BCM1xxx DUART serial port"
  299. depends on SERIAL_SB1250_DUART=y
  300. select SERIAL_CORE_CONSOLE
  301. default y
  302. ---help---
  303. If you say Y here, it will be possible to use a serial port as the
  304. system console (the system console is the device which receives all
  305. kernel messages and warnings and which allows logins in single user
  306. mode).
  307. If unsure, say Y.
  308. config SERIAL_ATMEL
  309. bool "AT91 / AT32 on-chip serial port support"
  310. depends on (ARM && ARCH_AT91) || AVR32
  311. select SERIAL_CORE
  312. help
  313. This enables the driver for the on-chip UARTs of the Atmel
  314. AT91 and AT32 processors.
  315. config SERIAL_ATMEL_CONSOLE
  316. bool "Support for console on AT91 / AT32 serial port"
  317. depends on SERIAL_ATMEL=y
  318. select SERIAL_CORE_CONSOLE
  319. help
  320. Say Y here if you wish to use an on-chip UART on a Atmel
  321. AT91 or AT32 processor as the system console (the system
  322. console is the device which receives all kernel messages and
  323. warnings and which allows logins in single user mode).
  324. config SERIAL_ATMEL_TTYAT
  325. bool "Install as device ttyATn instead of ttySn"
  326. depends on SERIAL_ATMEL=y
  327. help
  328. Say Y here if you wish to have the internal AT91 / AT32 UARTs
  329. appear as /dev/ttyATn (major 204, minor starting at 154)
  330. instead of the normal /dev/ttySn (major 4, minor starting at
  331. 64). This is necessary if you also want other UARTs, such as
  332. external 8250/16C550 compatible UARTs.
  333. The ttySn nodes are legally reserved for the 8250 serial driver
  334. but are often misused by other serial drivers.
  335. To use this, you should create suitable ttyATn device nodes in
  336. /dev/, and pass "console=ttyATn" to the kernel.
  337. Say Y if you have an external 8250/16C550 UART. If unsure, say N.
  338. config SERIAL_KS8695
  339. bool "Micrel KS8695 (Centaur) serial port support"
  340. depends on ARCH_KS8695
  341. select SERIAL_CORE
  342. help
  343. This selects the Micrel Centaur KS8695 UART. Say Y here.
  344. config SERIAL_KS8695_CONSOLE
  345. bool "Support for console on KS8695 (Centaur) serial port"
  346. depends on SERIAL_KS8695=y
  347. select SERIAL_CORE_CONSOLE
  348. help
  349. Say Y here if you wish to use a KS8695 (Centaur) UART as the
  350. system console (the system console is the device which
  351. receives all kernel messages and warnings and which allows
  352. logins in single user mode).
  353. config SERIAL_CLPS711X
  354. tristate "CLPS711X serial port support"
  355. depends on ARM && ARCH_CLPS711X
  356. select SERIAL_CORE
  357. help
  358. ::: To be written :::
  359. config SERIAL_CLPS711X_CONSOLE
  360. bool "Support for console on CLPS711X serial port"
  361. depends on SERIAL_CLPS711X=y
  362. select SERIAL_CORE_CONSOLE
  363. help
  364. Even if you say Y here, the currently visible virtual console
  365. (/dev/tty0) will still be used as the system console by default, but
  366. you can alter that using a kernel command line option such as
  367. "console=ttyCL1". (Try "man bootparam" or see the documentation of
  368. your boot loader (lilo or loadlin) about how to pass options to the
  369. kernel at boot time.)
  370. config SERIAL_S3C2410
  371. tristate "Samsung S3C2410/S3C2440/S3C2442/S3C2412 Serial port support"
  372. depends on ARM && ARCH_S3C2410
  373. select SERIAL_CORE
  374. help
  375. Support for the on-chip UARTs on the Samsung S3C24XX series CPUs,
  376. providing /dev/ttySAC0, 1 and 2 (note, some machines may not
  377. provide all of these ports, depending on how the serial port
  378. pins are configured.
  379. Currently this driver supports the UARTS on the S3C2410, S3C2440,
  380. S3C2442, S3C2412 and S3C2413 CPUs.
  381. config SERIAL_S3C2410_CONSOLE
  382. bool "Support for console on S3C2410 serial port"
  383. depends on SERIAL_S3C2410=y
  384. select SERIAL_CORE_CONSOLE
  385. help
  386. Allow selection of the S3C24XX on-board serial ports for use as
  387. an virtual console.
  388. Even if you say Y here, the currently visible virtual console
  389. (/dev/tty0) will still be used as the system console by default, but
  390. you can alter that using a kernel command line option such as
  391. "console=ttySACx". (Try "man bootparam" or see the documentation of
  392. your boot loader about how to pass options to the kernel at
  393. boot time.)
  394. config SERIAL_DZ
  395. bool "DECstation DZ serial driver"
  396. depends on MACH_DECSTATION && 32BIT
  397. select SERIAL_CORE
  398. help
  399. DZ11-family serial controllers for VAXstations, including the
  400. DC7085, M7814, and M7819.
  401. config SERIAL_DZ_CONSOLE
  402. bool "Support console on DECstation DZ serial driver"
  403. depends on SERIAL_DZ=y
  404. select SERIAL_CORE_CONSOLE
  405. help
  406. If you say Y here, it will be possible to use a serial port as the
  407. system console (the system console is the device which receives all
  408. kernel messages and warnings and which allows logins in single user
  409. mode). Note that the firmware uses ttyS0 as the serial console on
  410. the Maxine and ttyS2 on the others.
  411. If unsure, say Y.
  412. config SERIAL_ZS
  413. tristate "DECstation Z85C30 serial support"
  414. depends on MACH_DECSTATION
  415. select SERIAL_CORE
  416. default y
  417. ---help---
  418. Support for the Zilog 85C350 serial communications controller used
  419. for serial ports in newer DECstation systems. These include the
  420. DECsystem 5900 and all models of the DECstation and DECsystem 5000
  421. systems except from model 200.
  422. If unsure, say Y. To compile this driver as a module, choose M here:
  423. the module will be called zs.
  424. config SERIAL_ZS_CONSOLE
  425. bool "Support for console on a DECstation Z85C30 serial port"
  426. depends on SERIAL_ZS=y
  427. select SERIAL_CORE_CONSOLE
  428. default y
  429. ---help---
  430. If you say Y here, it will be possible to use a serial port as the
  431. system console (the system console is the device which receives all
  432. kernel messages and warnings and which allows logins in single user
  433. mode).
  434. Note that the firmware uses ttyS1 as the serial console on the
  435. Maxine and ttyS3 on the others using this driver.
  436. If unsure, say Y.
  437. config SERIAL_21285
  438. tristate "DC21285 serial port support"
  439. depends on ARM && FOOTBRIDGE
  440. select SERIAL_CORE
  441. help
  442. If you have a machine based on a 21285 (Footbridge) StrongARM(R)/
  443. PCI bridge you can enable its onboard serial port by enabling this
  444. option.
  445. config SERIAL_21285_CONSOLE
  446. bool "Console on DC21285 serial port"
  447. depends on SERIAL_21285=y
  448. select SERIAL_CORE_CONSOLE
  449. help
  450. If you have enabled the serial port on the 21285 footbridge you can
  451. make it the console by answering Y to this option.
  452. Even if you say Y here, the currently visible virtual console
  453. (/dev/tty0) will still be used as the system console by default, but
  454. you can alter that using a kernel command line option such as
  455. "console=ttyFB". (Try "man bootparam" or see the documentation of
  456. your boot loader (lilo or loadlin) about how to pass options to the
  457. kernel at boot time.)
  458. config SERIAL_MPSC
  459. bool "Marvell MPSC serial port support"
  460. depends on PPC32 && MV64X60
  461. select SERIAL_CORE
  462. help
  463. Say Y here if you want to use the Marvell MPSC serial controller.
  464. config SERIAL_MPSC_CONSOLE
  465. bool "Support for console on Marvell MPSC serial port"
  466. depends on SERIAL_MPSC
  467. select SERIAL_CORE_CONSOLE
  468. help
  469. Say Y here if you want to support a serial console on a Marvell MPSC.
  470. config SERIAL_PXA
  471. bool "PXA serial port support"
  472. depends on ARM && ARCH_PXA
  473. select SERIAL_CORE
  474. help
  475. If you have a machine based on an Intel XScale PXA2xx CPU you
  476. can enable its onboard serial ports by enabling this option.
  477. config SERIAL_PXA_CONSOLE
  478. bool "Console on PXA serial port"
  479. depends on SERIAL_PXA
  480. select SERIAL_CORE_CONSOLE
  481. help
  482. If you have enabled the serial port on the Intel XScale PXA
  483. CPU you can make it the console by answering Y to this option.
  484. Even if you say Y here, the currently visible virtual console
  485. (/dev/tty0) will still be used as the system console by default, but
  486. you can alter that using a kernel command line option such as
  487. "console=ttySA0". (Try "man bootparam" or see the documentation of
  488. your boot loader (lilo or loadlin) about how to pass options to the
  489. kernel at boot time.)
  490. config SERIAL_SA1100
  491. bool "SA1100 serial port support"
  492. depends on ARM && ARCH_SA1100
  493. select SERIAL_CORE
  494. help
  495. If you have a machine based on a SA1100/SA1110 StrongARM(R) CPU you
  496. can enable its onboard serial port by enabling this option.
  497. Please read <file:Documentation/arm/SA1100/serial_UART> for further
  498. info.
  499. config SERIAL_SA1100_CONSOLE
  500. bool "Console on SA1100 serial port"
  501. depends on SERIAL_SA1100
  502. select SERIAL_CORE_CONSOLE
  503. help
  504. If you have enabled the serial port on the SA1100/SA1110 StrongARM
  505. CPU you can make it the console by answering Y to this option.
  506. Even if you say Y here, the currently visible virtual console
  507. (/dev/tty0) will still be used as the system console by default, but
  508. you can alter that using a kernel command line option such as
  509. "console=ttySA0". (Try "man bootparam" or see the documentation of
  510. your boot loader (lilo or loadlin) about how to pass options to the
  511. kernel at boot time.)
  512. config SERIAL_BFIN
  513. tristate "Blackfin serial port support"
  514. depends on BFIN
  515. select SERIAL_CORE
  516. select SERIAL_BFIN_UART0 if (BF531 || BF532 || BF533 || BF561)
  517. help
  518. Add support for the built-in UARTs on the Blackfin.
  519. To compile this driver as a module, choose M here: the
  520. module will be called bfin_5xx.
  521. config SERIAL_BFIN_CONSOLE
  522. bool "Console on Blackfin serial port"
  523. depends on SERIAL_BFIN
  524. select SERIAL_CORE_CONSOLE
  525. choice
  526. prompt "UART Mode"
  527. depends on SERIAL_BFIN
  528. default SERIAL_BFIN_DMA
  529. help
  530. This driver supports the built-in serial ports of the Blackfin family
  531. of CPUs
  532. config SERIAL_BFIN_DMA
  533. bool "DMA mode"
  534. depends on DMA_UNCACHED_1M && !KGDB_UART
  535. help
  536. This driver works under DMA mode. If this option is selected, the
  537. blackfin simple dma driver is also enabled.
  538. config SERIAL_BFIN_PIO
  539. bool "PIO mode"
  540. help
  541. This driver works under PIO mode.
  542. endchoice
  543. config SERIAL_BFIN_UART0
  544. bool "Enable UART0"
  545. depends on SERIAL_BFIN
  546. help
  547. Enable UART0
  548. config BFIN_UART0_CTSRTS
  549. bool "Enable UART0 hardware flow control"
  550. depends on SERIAL_BFIN_UART0
  551. help
  552. Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
  553. signal.
  554. config UART0_CTS_PIN
  555. int "UART0 CTS pin"
  556. depends on BFIN_UART0_CTSRTS
  557. default 23
  558. help
  559. The default pin is GPIO_GP7.
  560. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  561. config UART0_RTS_PIN
  562. int "UART0 RTS pin"
  563. depends on BFIN_UART0_CTSRTS
  564. default 22
  565. help
  566. The default pin is GPIO_GP6.
  567. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  568. config SERIAL_BFIN_UART1
  569. bool "Enable UART1"
  570. depends on SERIAL_BFIN && (BF534 || BF536 || BF537 || BF54x)
  571. help
  572. Enable UART1
  573. config BFIN_UART1_CTSRTS
  574. bool "Enable UART1 hardware flow control"
  575. depends on SERIAL_BFIN_UART1
  576. help
  577. Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
  578. signal.
  579. config UART1_CTS_PIN
  580. int "UART1 CTS pin"
  581. depends on BFIN_UART1_CTSRTS && (BF53x || BF561)
  582. default -1
  583. help
  584. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  585. config UART1_RTS_PIN
  586. int "UART1 RTS pin"
  587. depends on BFIN_UART1_CTSRTS && (BF53x || BF561)
  588. default -1
  589. help
  590. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  591. config SERIAL_BFIN_UART2
  592. bool "Enable UART2"
  593. depends on SERIAL_BFIN && (BF54x)
  594. help
  595. Enable UART2
  596. config BFIN_UART2_CTSRTS
  597. bool "Enable UART2 hardware flow control"
  598. depends on SERIAL_BFIN_UART2
  599. help
  600. Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
  601. signal.
  602. config UART2_CTS_PIN
  603. int "UART2 CTS pin"
  604. depends on BFIN_UART2_CTSRTS
  605. default -1
  606. help
  607. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  608. config UART2_RTS_PIN
  609. int "UART2 RTS pin"
  610. depends on BFIN_UART2_CTSRTS
  611. default -1
  612. help
  613. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  614. config SERIAL_BFIN_UART3
  615. bool "Enable UART3"
  616. depends on SERIAL_BFIN && (BF54x)
  617. help
  618. Enable UART3
  619. config BFIN_UART3_CTSRTS
  620. bool "Enable UART3 hardware flow control"
  621. depends on SERIAL_BFIN_UART3
  622. help
  623. Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
  624. signal.
  625. config SERIAL_IMX
  626. bool "IMX serial port support"
  627. depends on ARM && ARCH_IMX
  628. select SERIAL_CORE
  629. help
  630. If you have a machine based on a Motorola IMX CPU you
  631. can enable its onboard serial port by enabling this option.
  632. config SERIAL_IMX_CONSOLE
  633. bool "Console on IMX serial port"
  634. depends on SERIAL_IMX
  635. select SERIAL_CORE_CONSOLE
  636. help
  637. If you have enabled the serial port on the Motorola IMX
  638. CPU you can make it the console by answering Y to this option.
  639. Even if you say Y here, the currently visible virtual console
  640. (/dev/tty0) will still be used as the system console by default, but
  641. you can alter that using a kernel command line option such as
  642. "console=ttySA0". (Try "man bootparam" or see the documentation of
  643. your boot loader (lilo or loadlin) about how to pass options to the
  644. kernel at boot time.)
  645. config SERIAL_UARTLITE
  646. tristate "Xilinx uartlite serial port support"
  647. depends on PPC32
  648. select SERIAL_CORE
  649. help
  650. Say Y here if you want to use the Xilinx uartlite serial controller.
  651. To compile this driver as a module, choose M here: the
  652. module will be called uartlite.ko.
  653. config SERIAL_UARTLITE_CONSOLE
  654. bool "Support for console on Xilinx uartlite serial port"
  655. depends on SERIAL_UARTLITE=y
  656. select SERIAL_CORE_CONSOLE
  657. help
  658. Say Y here if you wish to use a Xilinx uartlite as the system
  659. console (the system console is the device which receives all kernel
  660. messages and warnings and which allows logins in single user mode).
  661. config SERIAL_SUNCORE
  662. bool
  663. depends on SPARC
  664. select SERIAL_CORE
  665. select SERIAL_CORE_CONSOLE
  666. default y
  667. config SERIAL_SUNZILOG
  668. tristate "Sun Zilog8530 serial support"
  669. depends on SPARC
  670. help
  671. This driver supports the Zilog8530 serial ports found on many Sparc
  672. systems. Say Y or M if you want to be able to these serial ports.
  673. config SERIAL_SUNZILOG_CONSOLE
  674. bool "Console on Sun Zilog8530 serial port"
  675. depends on SERIAL_SUNZILOG=y
  676. help
  677. If you would like to be able to use the Zilog8530 serial port
  678. on your Sparc system as the console, you can do so by answering
  679. Y to this option.
  680. config SERIAL_SUNSU
  681. tristate "Sun SU serial support"
  682. depends on SPARC && PCI
  683. help
  684. This driver supports the 8250 serial ports that run the keyboard and
  685. mouse on (PCI) UltraSPARC systems. Say Y or M if you want to be able
  686. to these serial ports.
  687. config SERIAL_SUNSU_CONSOLE
  688. bool "Console on Sun SU serial port"
  689. depends on SERIAL_SUNSU=y
  690. help
  691. If you would like to be able to use the SU serial port
  692. on your Sparc system as the console, you can do so by answering
  693. Y to this option.
  694. config SERIAL_MUX
  695. tristate "Serial MUX support"
  696. depends on GSC
  697. select SERIAL_CORE
  698. default y
  699. ---help---
  700. Saying Y here will enable the hardware MUX serial driver for
  701. the Nova, K class systems and D class with a 'remote control card'.
  702. The hardware MUX is not 8250/16550 compatible therefore the
  703. /dev/ttyB0 device is shared between the Serial MUX and the PDC
  704. software console. The following steps need to be completed to use
  705. the Serial MUX:
  706. 1. create the device entry (mknod /dev/ttyB0 c 11 0)
  707. 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
  708. 3. Add device ttyB0 to /etc/securetty (if you want to log on as
  709. root on this console.)
  710. 4. Change the kernel command console parameter to: console=ttyB0
  711. config SERIAL_MUX_CONSOLE
  712. bool "Support for console on serial MUX"
  713. depends on SERIAL_MUX
  714. select SERIAL_CORE_CONSOLE
  715. default y
  716. config PDC_CONSOLE
  717. bool "PDC software console support"
  718. depends on PARISC && !SERIAL_MUX && VT
  719. default n
  720. help
  721. Saying Y here will enable the software based PDC console to be
  722. used as the system console. This is useful for machines in
  723. which the hardware based console has not been written yet. The
  724. following steps must be competed to use the PDC console:
  725. 1. create the device entry (mknod /dev/ttyB0 c 11 0)
  726. 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
  727. 3. Add device ttyB0 to /etc/securetty (if you want to log on as
  728. root on this console.)
  729. 4. Change the kernel command console parameter to: console=ttyB0
  730. config SERIAL_SUNSAB
  731. tristate "Sun Siemens SAB82532 serial support"
  732. depends on SPARC && PCI
  733. help
  734. This driver supports the Siemens SAB82532 DUSCC serial ports on newer
  735. (PCI) UltraSPARC systems. Say Y or M if you want to be able to these
  736. serial ports.
  737. config SERIAL_SUNSAB_CONSOLE
  738. bool "Console on Sun Siemens SAB82532 serial port"
  739. depends on SERIAL_SUNSAB=y
  740. help
  741. If you would like to be able to use the SAB82532 serial port
  742. on your Sparc system as the console, you can do so by answering
  743. Y to this option.
  744. config SERIAL_SUNHV
  745. bool "Sun4v Hypervisor Console support"
  746. depends on SPARC64
  747. help
  748. This driver supports the console device found on SUN4V Sparc
  749. systems. Say Y if you want to be able to use this device.
  750. config SERIAL_IP22_ZILOG
  751. tristate "IP22 Zilog8530 serial support"
  752. depends on SGI_IP22
  753. select SERIAL_CORE
  754. help
  755. This driver supports the Zilog8530 serial ports found on SGI IP22
  756. systems. Say Y or M if you want to be able to these serial ports.
  757. config SERIAL_IP22_ZILOG_CONSOLE
  758. bool "Console on IP22 Zilog8530 serial port"
  759. depends on SERIAL_IP22_ZILOG=y
  760. select SERIAL_CORE_CONSOLE
  761. config V850E_UART
  762. bool "NEC V850E on-chip UART support"
  763. depends on V850E_MA1 || V850E_ME2 || V850E_TEG || V850E2_ANNA || V850E_AS85EP1
  764. select SERIAL_CORE
  765. default y
  766. config V850E_UARTB
  767. bool
  768. depends on V850E_UART && V850E_ME2
  769. default y
  770. config V850E_UART_CONSOLE
  771. bool "Use NEC V850E on-chip UART for console"
  772. depends on V850E_UART
  773. select SERIAL_CORE_CONSOLE
  774. config SERIAL_SH_SCI
  775. tristate "SuperH SCI(F) serial port support"
  776. depends on SUPERH || H8300
  777. select SERIAL_CORE
  778. config SERIAL_SH_SCI_NR_UARTS
  779. int "Maximum number of SCI(F) serial ports"
  780. depends on SERIAL_SH_SCI
  781. default "2"
  782. config SERIAL_SH_SCI_CONSOLE
  783. bool "Support for console on SuperH SCI(F)"
  784. depends on SERIAL_SH_SCI=y
  785. select SERIAL_CORE_CONSOLE
  786. config SERIAL_PNX8XXX
  787. bool "Enable PNX8XXX SoCs' UART Support"
  788. depends on MIPS && SOC_PNX8550
  789. select SERIAL_CORE
  790. help
  791. If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330
  792. and you want to use serial ports, say Y. Otherwise, say N.
  793. config SERIAL_PNX8XXX_CONSOLE
  794. bool "Enable PNX8XX0 serial console"
  795. depends on SERIAL_PNX8XXX
  796. select SERIAL_CORE_CONSOLE
  797. help
  798. If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330
  799. and you want to use serial console, say Y. Otherwise, say N.
  800. config SERIAL_CORE
  801. tristate
  802. config SERIAL_CORE_CONSOLE
  803. bool
  804. config SERIAL_68328
  805. bool "68328 serial support"
  806. depends on M68328 || M68EZ328 || M68VZ328
  807. help
  808. This driver supports the built-in serial port of the Motorola 68328
  809. (standard, EZ and VZ varieties).
  810. config SERIAL_68328_RTS_CTS
  811. bool "Support RTS/CTS on 68328 serial port"
  812. depends on SERIAL_68328
  813. config SERIAL_COLDFIRE
  814. bool "ColdFire serial support"
  815. depends on COLDFIRE
  816. help
  817. This driver supports the built-in serial ports of the Motorola ColdFire
  818. family of CPUs.
  819. config SERIAL_68360_SMC
  820. bool "68360 SMC uart support"
  821. depends on M68360
  822. help
  823. This driver supports the SMC serial ports of the Motorola 68360 CPU.
  824. config SERIAL_68360_SCC
  825. bool "68360 SCC uart support"
  826. depends on M68360
  827. help
  828. This driver supports the SCC serial ports of the Motorola 68360 CPU.
  829. config SERIAL_68360
  830. bool
  831. depends on SERIAL_68360_SMC || SERIAL_68360_SCC
  832. default y
  833. config SERIAL_PMACZILOG
  834. tristate "PowerMac z85c30 ESCC support"
  835. depends on PPC_OF && PPC_PMAC
  836. select SERIAL_CORE
  837. help
  838. This driver supports the Zilog z85C30 serial ports found on
  839. PowerMac machines.
  840. Say Y or M if you want to be able to these serial ports.
  841. config SERIAL_PMACZILOG_CONSOLE
  842. bool "Console on PowerMac z85c30 serial port"
  843. depends on SERIAL_PMACZILOG=y
  844. select SERIAL_CORE_CONSOLE
  845. help
  846. If you would like to be able to use the z85c30 serial port
  847. on your PowerMac as the console, you can do so by answering
  848. Y to this option.
  849. config SERIAL_LH7A40X
  850. tristate "Sharp LH7A40X embedded UART support"
  851. depends on ARM && ARCH_LH7A40X
  852. select SERIAL_CORE
  853. help
  854. This enables support for the three on-board UARTs of the
  855. Sharp LH7A40X series CPUs. Choose Y or M.
  856. config SERIAL_LH7A40X_CONSOLE
  857. bool "Support for console on Sharp LH7A40X serial port"
  858. depends on SERIAL_LH7A40X=y
  859. select SERIAL_CORE_CONSOLE
  860. help
  861. Say Y here if you wish to use one of the serial ports as the
  862. system console--the system console is the device which
  863. receives all kernel messages and warnings and which allows
  864. logins in single user mode.
  865. Even if you say Y here, the currently visible framebuffer console
  866. (/dev/tty0) will still be used as the default system console, but
  867. you can alter that using a kernel command line, for example
  868. "console=ttyAM1".
  869. config SERIAL_CPM
  870. tristate "CPM SCC/SMC serial port support"
  871. depends on CPM2 || 8xx
  872. select SERIAL_CORE
  873. help
  874. This driver supports the SCC and SMC serial ports on Motorola
  875. embedded PowerPC that contain a CPM1 (8xx) or CPM2 (8xxx)
  876. config SERIAL_CPM_CONSOLE
  877. bool "Support for console on CPM SCC/SMC serial port"
  878. depends on SERIAL_CPM=y
  879. select SERIAL_CORE_CONSOLE
  880. help
  881. Say Y here if you wish to use a SCC or SMC CPM UART as the system
  882. console (the system console is the device which receives all kernel
  883. messages and warnings and which allows logins in single user mode).
  884. Even if you say Y here, the currently visible framebuffer console
  885. (/dev/tty0) will still be used as the system console by default, but
  886. you can alter that using a kernel command line option such as
  887. "console=ttyCPM0". (Try "man bootparam" or see the documentation of
  888. your boot loader (lilo or loadlin) about how to pass options to the
  889. kernel at boot time.)
  890. config SERIAL_CPM_SCC1
  891. bool "Support for SCC1 serial port"
  892. depends on SERIAL_CPM=y
  893. help
  894. Select this option to use SCC1 as a serial port
  895. config SERIAL_CPM_SCC2
  896. bool "Support for SCC2 serial port"
  897. depends on SERIAL_CPM=y
  898. help
  899. Select this option to use SCC2 as a serial port
  900. config SERIAL_CPM_SCC3
  901. bool "Support for SCC3 serial port"
  902. depends on SERIAL_CPM=y
  903. help
  904. Select this option to use SCC3 as a serial port
  905. config SERIAL_CPM_SCC4
  906. bool "Support for SCC4 serial port"
  907. depends on SERIAL_CPM=y
  908. help
  909. Select this option to use SCC4 as a serial port
  910. config SERIAL_CPM_SMC1
  911. bool "Support for SMC1 serial port"
  912. depends on SERIAL_CPM=y
  913. help
  914. Select this option to use SMC1 as a serial port
  915. config SERIAL_CPM_SMC2
  916. bool "Support for SMC2 serial port"
  917. depends on SERIAL_CPM=y
  918. help
  919. Select this option to use SMC2 as a serial port
  920. config SERIAL_SGI_L1_CONSOLE
  921. bool "SGI Altix L1 serial console support"
  922. depends on IA64_GENERIC || IA64_SGI_SN2
  923. select SERIAL_CORE
  924. select SERIAL_CORE_CONSOLE
  925. help
  926. If you have an SGI Altix and you would like to use the system
  927. controller serial port as your console (you want this!),
  928. say Y. Otherwise, say N.
  929. config SERIAL_MPC52xx
  930. tristate "Freescale MPC52xx family PSC serial support"
  931. depends on PPC_MPC52xx
  932. select SERIAL_CORE
  933. help
  934. This drivers support the MPC52xx PSC serial ports. If you would
  935. like to use them, you must answer Y or M to this option. Not that
  936. for use as console, it must be included in kernel and not as a
  937. module.
  938. config SERIAL_MPC52xx_CONSOLE
  939. bool "Console on a Freescale MPC52xx family PSC serial port"
  940. depends on SERIAL_MPC52xx=y
  941. select SERIAL_CORE_CONSOLE
  942. help
  943. Select this options if you'd like to use one of the PSC serial port
  944. of the Freescale MPC52xx family as a console.
  945. config SERIAL_MPC52xx_CONSOLE_BAUD
  946. int "Freescale MPC52xx family PSC serial port baud"
  947. depends on SERIAL_MPC52xx_CONSOLE=y
  948. default "9600"
  949. help
  950. Select the MPC52xx console baud rate.
  951. This value is only used if the bootloader doesn't pass in the
  952. console baudrate
  953. config SERIAL_ICOM
  954. tristate "IBM Multiport Serial Adapter"
  955. depends on PCI && (PPC_ISERIES || PPC_PSERIES)
  956. select SERIAL_CORE
  957. select FW_LOADER
  958. help
  959. This driver is for a family of multiport serial adapters
  960. including 2 port RVX, 2 port internal modem, 4 port internal
  961. modem and a split 1 port RVX and 1 port internal modem.
  962. This driver can also be built as a module. If so, the module
  963. will be called icom.
  964. config SERIAL_M32R_SIO
  965. bool "M32R SIO I/F"
  966. depends on M32R
  967. default y
  968. select SERIAL_CORE
  969. help
  970. Say Y here if you want to use the M32R serial controller.
  971. config SERIAL_M32R_SIO_CONSOLE
  972. bool "use SIO console"
  973. depends on SERIAL_M32R_SIO=y
  974. select SERIAL_CORE_CONSOLE
  975. help
  976. Say Y here if you want to support a serial console.
  977. If you use an M3T-M32700UT or an OPSPUT platform,
  978. please say also y for SERIAL_M32R_PLDSIO.
  979. config SERIAL_M32R_PLDSIO
  980. bool "M32R SIO I/F on a PLD"
  981. depends on SERIAL_M32R_SIO=y && (PLAT_OPSPUT || PLAT_USRV || PLAT_M32700UT)
  982. default n
  983. help
  984. Say Y here if you want to use the M32R serial controller
  985. on a PLD (Programmable Logic Device).
  986. If you use an M3T-M32700UT or an OPSPUT platform,
  987. please say Y.
  988. config SERIAL_TXX9
  989. bool "TMPTX39XX/49XX SIO support"
  990. depends on HAS_TXX9_SERIAL
  991. select SERIAL_CORE
  992. default y
  993. config HAS_TXX9_SERIAL
  994. bool
  995. config SERIAL_TXX9_NR_UARTS
  996. int "Maximum number of TMPTX39XX/49XX SIO ports"
  997. depends on SERIAL_TXX9
  998. default "6"
  999. config SERIAL_TXX9_CONSOLE
  1000. bool "TMPTX39XX/49XX SIO Console support"
  1001. depends on SERIAL_TXX9=y
  1002. select SERIAL_CORE_CONSOLE
  1003. config SERIAL_TXX9_STDSERIAL
  1004. bool "TX39XX/49XX SIO act as standard serial"
  1005. depends on !SERIAL_8250 && SERIAL_TXX9
  1006. config SERIAL_VR41XX
  1007. tristate "NEC VR4100 series Serial Interface Unit support"
  1008. depends on CPU_VR41XX
  1009. select SERIAL_CORE
  1010. help
  1011. If you have a NEC VR4100 series processor and you want to use
  1012. Serial Interface Unit(SIU) or Debug Serial Interface Unit(DSIU)
  1013. (not include VR4111/VR4121 DSIU), say Y. Otherwise, say N.
  1014. config SERIAL_VR41XX_CONSOLE
  1015. bool "Enable NEC VR4100 series Serial Interface Unit console"
  1016. depends on SERIAL_VR41XX
  1017. select SERIAL_CORE_CONSOLE
  1018. help
  1019. If you have a NEC VR4100 series processor and you want to use
  1020. a console on a serial port, say Y. Otherwise, say N.
  1021. config SERIAL_JSM
  1022. tristate "Digi International NEO PCI Support"
  1023. depends on PCI
  1024. select SERIAL_CORE
  1025. help
  1026. This is a driver for Digi International's Neo series
  1027. of cards which provide multiple serial ports. You would need
  1028. something like this to connect more than two modems to your Linux
  1029. box, for instance in order to become a dial-in server. This driver
  1030. supports PCI boards only.
  1031. If you have a card like this, say Y here, otherwise say N.
  1032. To compile this driver as a module, choose M here: the
  1033. module will be called jsm.
  1034. config SERIAL_SGI_IOC4
  1035. tristate "SGI IOC4 controller serial support"
  1036. depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC4
  1037. select SERIAL_CORE
  1038. help
  1039. If you have an SGI Altix with an IOC4 based Base IO card
  1040. and wish to use the serial ports on this card, say Y.
  1041. Otherwise, say N.
  1042. config SERIAL_SGI_IOC3
  1043. tristate "SGI Altix IOC3 serial support"
  1044. depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC3
  1045. select SERIAL_CORE
  1046. help
  1047. If you have an SGI Altix with an IOC3 serial card,
  1048. say Y or M. Otherwise, say N.
  1049. config SERIAL_NETX
  1050. bool "NetX serial port support"
  1051. depends on ARM && ARCH_NETX
  1052. select SERIAL_CORE
  1053. help
  1054. If you have a machine based on a Hilscher NetX SoC you
  1055. can enable its onboard serial port by enabling this option.
  1056. To compile this driver as a module, choose M here: the
  1057. module will be called netx-serial.
  1058. config SERIAL_NETX_CONSOLE
  1059. bool "Console on NetX serial port"
  1060. depends on SERIAL_NETX
  1061. select SERIAL_CORE_CONSOLE
  1062. help
  1063. If you have enabled the serial port on the Motorola IMX
  1064. CPU you can make it the console by answering Y to this option.
  1065. config SERIAL_OF_PLATFORM
  1066. tristate "Serial port on Open Firmware platform bus"
  1067. depends on PPC_OF
  1068. depends on SERIAL_8250
  1069. help
  1070. If you have a PowerPC based system that has serial ports
  1071. on a platform specific bus, you should enable this option.
  1072. Currently, only 8250 compatible ports are supported, but
  1073. others can easily be added.
  1074. endmenu