Kconfig 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236
  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_21285
  413. tristate "DC21285 serial port support"
  414. depends on ARM && FOOTBRIDGE
  415. select SERIAL_CORE
  416. help
  417. If you have a machine based on a 21285 (Footbridge) StrongARM(R)/
  418. PCI bridge you can enable its onboard serial port by enabling this
  419. option.
  420. config SERIAL_21285_CONSOLE
  421. bool "Console on DC21285 serial port"
  422. depends on SERIAL_21285=y
  423. select SERIAL_CORE_CONSOLE
  424. help
  425. If you have enabled the serial port on the 21285 footbridge you can
  426. make it the console by answering Y to this option.
  427. Even if you say Y here, the currently visible virtual console
  428. (/dev/tty0) will still be used as the system console by default, but
  429. you can alter that using a kernel command line option such as
  430. "console=ttyFB". (Try "man bootparam" or see the documentation of
  431. your boot loader (lilo or loadlin) about how to pass options to the
  432. kernel at boot time.)
  433. config SERIAL_MPSC
  434. bool "Marvell MPSC serial port support"
  435. depends on PPC32 && MV64X60
  436. select SERIAL_CORE
  437. help
  438. Say Y here if you want to use the Marvell MPSC serial controller.
  439. config SERIAL_MPSC_CONSOLE
  440. bool "Support for console on Marvell MPSC serial port"
  441. depends on SERIAL_MPSC
  442. select SERIAL_CORE_CONSOLE
  443. help
  444. Say Y here if you want to support a serial console on a Marvell MPSC.
  445. config SERIAL_PXA
  446. bool "PXA serial port support"
  447. depends on ARM && ARCH_PXA
  448. select SERIAL_CORE
  449. help
  450. If you have a machine based on an Intel XScale PXA2xx CPU you
  451. can enable its onboard serial ports by enabling this option.
  452. config SERIAL_PXA_CONSOLE
  453. bool "Console on PXA serial port"
  454. depends on SERIAL_PXA
  455. select SERIAL_CORE_CONSOLE
  456. help
  457. If you have enabled the serial port on the Intel XScale PXA
  458. CPU you can make it the console by answering Y to this option.
  459. Even if you say Y here, the currently visible virtual console
  460. (/dev/tty0) will still be used as the system console by default, but
  461. you can alter that using a kernel command line option such as
  462. "console=ttySA0". (Try "man bootparam" or see the documentation of
  463. your boot loader (lilo or loadlin) about how to pass options to the
  464. kernel at boot time.)
  465. config SERIAL_SA1100
  466. bool "SA1100 serial port support"
  467. depends on ARM && ARCH_SA1100
  468. select SERIAL_CORE
  469. help
  470. If you have a machine based on a SA1100/SA1110 StrongARM(R) CPU you
  471. can enable its onboard serial port by enabling this option.
  472. Please read <file:Documentation/arm/SA1100/serial_UART> for further
  473. info.
  474. config SERIAL_SA1100_CONSOLE
  475. bool "Console on SA1100 serial port"
  476. depends on SERIAL_SA1100
  477. select SERIAL_CORE_CONSOLE
  478. help
  479. If you have enabled the serial port on the SA1100/SA1110 StrongARM
  480. CPU you can make it the console by answering Y to this option.
  481. Even if you say Y here, the currently visible virtual console
  482. (/dev/tty0) will still be used as the system console by default, but
  483. you can alter that using a kernel command line option such as
  484. "console=ttySA0". (Try "man bootparam" or see the documentation of
  485. your boot loader (lilo or loadlin) about how to pass options to the
  486. kernel at boot time.)
  487. config SERIAL_BFIN
  488. tristate "Blackfin serial port support"
  489. depends on BFIN
  490. select SERIAL_CORE
  491. select SERIAL_BFIN_UART0 if (BF531 || BF532 || BF533 || BF561)
  492. help
  493. Add support for the built-in UARTs on the Blackfin.
  494. To compile this driver as a module, choose M here: the
  495. module will be called bfin_5xx.
  496. config SERIAL_BFIN_CONSOLE
  497. bool "Console on Blackfin serial port"
  498. depends on SERIAL_BFIN
  499. select SERIAL_CORE_CONSOLE
  500. choice
  501. prompt "UART Mode"
  502. depends on SERIAL_BFIN
  503. default SERIAL_BFIN_DMA
  504. help
  505. This driver supports the built-in serial ports of the Blackfin family
  506. of CPUs
  507. config SERIAL_BFIN_DMA
  508. bool "DMA mode"
  509. depends on DMA_UNCACHED_1M && !KGDB_UART
  510. help
  511. This driver works under DMA mode. If this option is selected, the
  512. blackfin simple dma driver is also enabled.
  513. config SERIAL_BFIN_PIO
  514. bool "PIO mode"
  515. help
  516. This driver works under PIO mode.
  517. endchoice
  518. config SERIAL_BFIN_UART0
  519. bool "Enable UART0"
  520. depends on SERIAL_BFIN
  521. help
  522. Enable UART0
  523. config BFIN_UART0_CTSRTS
  524. bool "Enable UART0 hardware flow control"
  525. depends on SERIAL_BFIN_UART0
  526. help
  527. Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
  528. signal.
  529. config UART0_CTS_PIN
  530. int "UART0 CTS pin"
  531. depends on BFIN_UART0_CTSRTS
  532. default 23
  533. help
  534. The default pin is GPIO_GP7.
  535. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  536. config UART0_RTS_PIN
  537. int "UART0 RTS pin"
  538. depends on BFIN_UART0_CTSRTS
  539. default 22
  540. help
  541. The default pin is GPIO_GP6.
  542. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  543. config SERIAL_BFIN_UART1
  544. bool "Enable UART1"
  545. depends on SERIAL_BFIN && (BF534 || BF536 || BF537 || BF54x)
  546. help
  547. Enable UART1
  548. config BFIN_UART1_CTSRTS
  549. bool "Enable UART1 hardware flow control"
  550. depends on SERIAL_BFIN_UART1
  551. help
  552. Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
  553. signal.
  554. config UART1_CTS_PIN
  555. int "UART1 CTS pin"
  556. depends on BFIN_UART1_CTSRTS && (BF53x || BF561)
  557. default -1
  558. help
  559. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  560. config UART1_RTS_PIN
  561. int "UART1 RTS pin"
  562. depends on BFIN_UART1_CTSRTS && (BF53x || BF561)
  563. default -1
  564. help
  565. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  566. config SERIAL_BFIN_UART2
  567. bool "Enable UART2"
  568. depends on SERIAL_BFIN && (BF54x)
  569. help
  570. Enable UART2
  571. config BFIN_UART2_CTSRTS
  572. bool "Enable UART2 hardware flow control"
  573. depends on SERIAL_BFIN_UART2
  574. help
  575. Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
  576. signal.
  577. config UART2_CTS_PIN
  578. int "UART2 CTS pin"
  579. depends on BFIN_UART2_CTSRTS
  580. default -1
  581. help
  582. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  583. config UART2_RTS_PIN
  584. int "UART2 RTS pin"
  585. depends on BFIN_UART2_CTSRTS
  586. default -1
  587. help
  588. Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
  589. config SERIAL_BFIN_UART3
  590. bool "Enable UART3"
  591. depends on SERIAL_BFIN && (BF54x)
  592. help
  593. Enable UART3
  594. config BFIN_UART3_CTSRTS
  595. bool "Enable UART3 hardware flow control"
  596. depends on SERIAL_BFIN_UART3
  597. help
  598. Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
  599. signal.
  600. config SERIAL_IMX
  601. bool "IMX serial port support"
  602. depends on ARM && ARCH_IMX
  603. select SERIAL_CORE
  604. help
  605. If you have a machine based on a Motorola IMX CPU you
  606. can enable its onboard serial port by enabling this option.
  607. config SERIAL_IMX_CONSOLE
  608. bool "Console on IMX serial port"
  609. depends on SERIAL_IMX
  610. select SERIAL_CORE_CONSOLE
  611. help
  612. If you have enabled the serial port on the Motorola IMX
  613. CPU you can make it the console by answering Y to this option.
  614. Even if you say Y here, the currently visible virtual console
  615. (/dev/tty0) will still be used as the system console by default, but
  616. you can alter that using a kernel command line option such as
  617. "console=ttySA0". (Try "man bootparam" or see the documentation of
  618. your boot loader (lilo or loadlin) about how to pass options to the
  619. kernel at boot time.)
  620. config SERIAL_UARTLITE
  621. tristate "Xilinx uartlite serial port support"
  622. depends on PPC32
  623. select SERIAL_CORE
  624. help
  625. Say Y here if you want to use the Xilinx uartlite serial controller.
  626. To compile this driver as a module, choose M here: the
  627. module will be called uartlite.ko.
  628. config SERIAL_UARTLITE_CONSOLE
  629. bool "Support for console on Xilinx uartlite serial port"
  630. depends on SERIAL_UARTLITE=y
  631. select SERIAL_CORE_CONSOLE
  632. help
  633. Say Y here if you wish to use a Xilinx uartlite as the system
  634. console (the system console is the device which receives all kernel
  635. messages and warnings and which allows logins in single user mode).
  636. config SERIAL_SUNCORE
  637. bool
  638. depends on SPARC
  639. select SERIAL_CORE
  640. select SERIAL_CORE_CONSOLE
  641. default y
  642. config SERIAL_SUNZILOG
  643. tristate "Sun Zilog8530 serial support"
  644. depends on SPARC
  645. help
  646. This driver supports the Zilog8530 serial ports found on many Sparc
  647. systems. Say Y or M if you want to be able to these serial ports.
  648. config SERIAL_SUNZILOG_CONSOLE
  649. bool "Console on Sun Zilog8530 serial port"
  650. depends on SERIAL_SUNZILOG=y
  651. help
  652. If you would like to be able to use the Zilog8530 serial port
  653. on your Sparc system as the console, you can do so by answering
  654. Y to this option.
  655. config SERIAL_SUNSU
  656. tristate "Sun SU serial support"
  657. depends on SPARC && PCI
  658. help
  659. This driver supports the 8250 serial ports that run the keyboard and
  660. mouse on (PCI) UltraSPARC systems. Say Y or M if you want to be able
  661. to these serial ports.
  662. config SERIAL_SUNSU_CONSOLE
  663. bool "Console on Sun SU serial port"
  664. depends on SERIAL_SUNSU=y
  665. help
  666. If you would like to be able to use the SU serial port
  667. on your Sparc system as the console, you can do so by answering
  668. Y to this option.
  669. config SERIAL_MUX
  670. tristate "Serial MUX support"
  671. depends on GSC
  672. select SERIAL_CORE
  673. default y
  674. ---help---
  675. Saying Y here will enable the hardware MUX serial driver for
  676. the Nova, K class systems and D class with a 'remote control card'.
  677. The hardware MUX is not 8250/16550 compatible therefore the
  678. /dev/ttyB0 device is shared between the Serial MUX and the PDC
  679. software console. The following steps need to be completed to use
  680. the Serial MUX:
  681. 1. create the device entry (mknod /dev/ttyB0 c 11 0)
  682. 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
  683. 3. Add device ttyB0 to /etc/securetty (if you want to log on as
  684. root on this console.)
  685. 4. Change the kernel command console parameter to: console=ttyB0
  686. config SERIAL_MUX_CONSOLE
  687. bool "Support for console on serial MUX"
  688. depends on SERIAL_MUX
  689. select SERIAL_CORE_CONSOLE
  690. default y
  691. config PDC_CONSOLE
  692. bool "PDC software console support"
  693. depends on PARISC && !SERIAL_MUX && VT
  694. default n
  695. help
  696. Saying Y here will enable the software based PDC console to be
  697. used as the system console. This is useful for machines in
  698. which the hardware based console has not been written yet. The
  699. following steps must be competed to use the PDC console:
  700. 1. create the device entry (mknod /dev/ttyB0 c 11 0)
  701. 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
  702. 3. Add device ttyB0 to /etc/securetty (if you want to log on as
  703. root on this console.)
  704. 4. Change the kernel command console parameter to: console=ttyB0
  705. config SERIAL_SUNSAB
  706. tristate "Sun Siemens SAB82532 serial support"
  707. depends on SPARC && PCI
  708. help
  709. This driver supports the Siemens SAB82532 DUSCC serial ports on newer
  710. (PCI) UltraSPARC systems. Say Y or M if you want to be able to these
  711. serial ports.
  712. config SERIAL_SUNSAB_CONSOLE
  713. bool "Console on Sun Siemens SAB82532 serial port"
  714. depends on SERIAL_SUNSAB=y
  715. help
  716. If you would like to be able to use the SAB82532 serial port
  717. on your Sparc system as the console, you can do so by answering
  718. Y to this option.
  719. config SERIAL_SUNHV
  720. bool "Sun4v Hypervisor Console support"
  721. depends on SPARC64
  722. help
  723. This driver supports the console device found on SUN4V Sparc
  724. systems. Say Y if you want to be able to use this device.
  725. config SERIAL_IP22_ZILOG
  726. tristate "IP22 Zilog8530 serial support"
  727. depends on SGI_IP22
  728. select SERIAL_CORE
  729. help
  730. This driver supports the Zilog8530 serial ports found on SGI IP22
  731. systems. Say Y or M if you want to be able to these serial ports.
  732. config SERIAL_IP22_ZILOG_CONSOLE
  733. bool "Console on IP22 Zilog8530 serial port"
  734. depends on SERIAL_IP22_ZILOG=y
  735. select SERIAL_CORE_CONSOLE
  736. config V850E_UART
  737. bool "NEC V850E on-chip UART support"
  738. depends on V850E_MA1 || V850E_ME2 || V850E_TEG || V850E2_ANNA || V850E_AS85EP1
  739. select SERIAL_CORE
  740. default y
  741. config V850E_UARTB
  742. bool
  743. depends on V850E_UART && V850E_ME2
  744. default y
  745. config V850E_UART_CONSOLE
  746. bool "Use NEC V850E on-chip UART for console"
  747. depends on V850E_UART
  748. select SERIAL_CORE_CONSOLE
  749. config SERIAL_SH_SCI
  750. tristate "SuperH SCI(F) serial port support"
  751. depends on SUPERH || H8300
  752. select SERIAL_CORE
  753. config SERIAL_SH_SCI_NR_UARTS
  754. int "Maximum number of SCI(F) serial ports"
  755. depends on SERIAL_SH_SCI
  756. default "2"
  757. config SERIAL_SH_SCI_CONSOLE
  758. bool "Support for console on SuperH SCI(F)"
  759. depends on SERIAL_SH_SCI=y
  760. select SERIAL_CORE_CONSOLE
  761. config SERIAL_PNX8XXX
  762. bool "Enable PNX8XXX SoCs' UART Support"
  763. depends on MIPS && SOC_PNX8550
  764. select SERIAL_CORE
  765. help
  766. If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330
  767. and you want to use serial ports, say Y. Otherwise, say N.
  768. config SERIAL_PNX8XXX_CONSOLE
  769. bool "Enable PNX8XX0 serial console"
  770. depends on SERIAL_PNX8XXX
  771. select SERIAL_CORE_CONSOLE
  772. help
  773. If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330
  774. and you want to use serial console, say Y. Otherwise, say N.
  775. config SERIAL_CORE
  776. tristate
  777. config SERIAL_CORE_CONSOLE
  778. bool
  779. config SERIAL_68328
  780. bool "68328 serial support"
  781. depends on M68328 || M68EZ328 || M68VZ328
  782. help
  783. This driver supports the built-in serial port of the Motorola 68328
  784. (standard, EZ and VZ varieties).
  785. config SERIAL_68328_RTS_CTS
  786. bool "Support RTS/CTS on 68328 serial port"
  787. depends on SERIAL_68328
  788. config SERIAL_COLDFIRE
  789. bool "ColdFire serial support"
  790. depends on COLDFIRE
  791. help
  792. This driver supports the built-in serial ports of the Motorola ColdFire
  793. family of CPUs.
  794. config SERIAL_68360_SMC
  795. bool "68360 SMC uart support"
  796. depends on M68360
  797. help
  798. This driver supports the SMC serial ports of the Motorola 68360 CPU.
  799. config SERIAL_68360_SCC
  800. bool "68360 SCC uart support"
  801. depends on M68360
  802. help
  803. This driver supports the SCC serial ports of the Motorola 68360 CPU.
  804. config SERIAL_68360
  805. bool
  806. depends on SERIAL_68360_SMC || SERIAL_68360_SCC
  807. default y
  808. config SERIAL_PMACZILOG
  809. tristate "PowerMac z85c30 ESCC support"
  810. depends on PPC_OF && PPC_PMAC
  811. select SERIAL_CORE
  812. help
  813. This driver supports the Zilog z85C30 serial ports found on
  814. PowerMac machines.
  815. Say Y or M if you want to be able to these serial ports.
  816. config SERIAL_PMACZILOG_CONSOLE
  817. bool "Console on PowerMac z85c30 serial port"
  818. depends on SERIAL_PMACZILOG=y
  819. select SERIAL_CORE_CONSOLE
  820. help
  821. If you would like to be able to use the z85c30 serial port
  822. on your PowerMac as the console, you can do so by answering
  823. Y to this option.
  824. config SERIAL_LH7A40X
  825. tristate "Sharp LH7A40X embedded UART support"
  826. depends on ARM && ARCH_LH7A40X
  827. select SERIAL_CORE
  828. help
  829. This enables support for the three on-board UARTs of the
  830. Sharp LH7A40X series CPUs. Choose Y or M.
  831. config SERIAL_LH7A40X_CONSOLE
  832. bool "Support for console on Sharp LH7A40X serial port"
  833. depends on SERIAL_LH7A40X=y
  834. select SERIAL_CORE_CONSOLE
  835. help
  836. Say Y here if you wish to use one of the serial ports as the
  837. system console--the system console is the device which
  838. receives all kernel messages and warnings and which allows
  839. logins in single user mode.
  840. Even if you say Y here, the currently visible framebuffer console
  841. (/dev/tty0) will still be used as the default system console, but
  842. you can alter that using a kernel command line, for example
  843. "console=ttyAM1".
  844. config SERIAL_CPM
  845. tristate "CPM SCC/SMC serial port support"
  846. depends on CPM2 || 8xx
  847. select SERIAL_CORE
  848. help
  849. This driver supports the SCC and SMC serial ports on Motorola
  850. embedded PowerPC that contain a CPM1 (8xx) or CPM2 (8xxx)
  851. config SERIAL_CPM_CONSOLE
  852. bool "Support for console on CPM SCC/SMC serial port"
  853. depends on SERIAL_CPM=y
  854. select SERIAL_CORE_CONSOLE
  855. help
  856. Say Y here if you wish to use a SCC or SMC CPM UART as the system
  857. console (the system console is the device which receives all kernel
  858. messages and warnings and which allows logins in single user mode).
  859. Even if you say Y here, the currently visible framebuffer console
  860. (/dev/tty0) will still be used as the system console by default, but
  861. you can alter that using a kernel command line option such as
  862. "console=ttyCPM0". (Try "man bootparam" or see the documentation of
  863. your boot loader (lilo or loadlin) about how to pass options to the
  864. kernel at boot time.)
  865. config SERIAL_CPM_SCC1
  866. bool "Support for SCC1 serial port"
  867. depends on SERIAL_CPM=y
  868. help
  869. Select this option to use SCC1 as a serial port
  870. config SERIAL_CPM_SCC2
  871. bool "Support for SCC2 serial port"
  872. depends on SERIAL_CPM=y
  873. help
  874. Select this option to use SCC2 as a serial port
  875. config SERIAL_CPM_SCC3
  876. bool "Support for SCC3 serial port"
  877. depends on SERIAL_CPM=y
  878. help
  879. Select this option to use SCC3 as a serial port
  880. config SERIAL_CPM_SCC4
  881. bool "Support for SCC4 serial port"
  882. depends on SERIAL_CPM=y
  883. help
  884. Select this option to use SCC4 as a serial port
  885. config SERIAL_CPM_SMC1
  886. bool "Support for SMC1 serial port"
  887. depends on SERIAL_CPM=y
  888. help
  889. Select this option to use SMC1 as a serial port
  890. config SERIAL_CPM_SMC2
  891. bool "Support for SMC2 serial port"
  892. depends on SERIAL_CPM=y
  893. help
  894. Select this option to use SMC2 as a serial port
  895. config SERIAL_SGI_L1_CONSOLE
  896. bool "SGI Altix L1 serial console support"
  897. depends on IA64_GENERIC || IA64_SGI_SN2
  898. select SERIAL_CORE
  899. select SERIAL_CORE_CONSOLE
  900. help
  901. If you have an SGI Altix and you would like to use the system
  902. controller serial port as your console (you want this!),
  903. say Y. Otherwise, say N.
  904. config SERIAL_MPC52xx
  905. tristate "Freescale MPC52xx family PSC serial support"
  906. depends on PPC_MPC52xx
  907. select SERIAL_CORE
  908. help
  909. This drivers support the MPC52xx PSC serial ports. If you would
  910. like to use them, you must answer Y or M to this option. Not that
  911. for use as console, it must be included in kernel and not as a
  912. module.
  913. config SERIAL_MPC52xx_CONSOLE
  914. bool "Console on a Freescale MPC52xx family PSC serial port"
  915. depends on SERIAL_MPC52xx=y
  916. select SERIAL_CORE_CONSOLE
  917. help
  918. Select this options if you'd like to use one of the PSC serial port
  919. of the Freescale MPC52xx family as a console.
  920. config SERIAL_MPC52xx_CONSOLE_BAUD
  921. int "Freescale MPC52xx family PSC serial port baud"
  922. depends on SERIAL_MPC52xx_CONSOLE=y
  923. default "9600"
  924. help
  925. Select the MPC52xx console baud rate.
  926. This value is only used if the bootloader doesn't pass in the
  927. console baudrate
  928. config SERIAL_ICOM
  929. tristate "IBM Multiport Serial Adapter"
  930. depends on PCI && (PPC_ISERIES || PPC_PSERIES)
  931. select SERIAL_CORE
  932. select FW_LOADER
  933. help
  934. This driver is for a family of multiport serial adapters
  935. including 2 port RVX, 2 port internal modem, 4 port internal
  936. modem and a split 1 port RVX and 1 port internal modem.
  937. This driver can also be built as a module. If so, the module
  938. will be called icom.
  939. config SERIAL_M32R_SIO
  940. bool "M32R SIO I/F"
  941. depends on M32R
  942. default y
  943. select SERIAL_CORE
  944. help
  945. Say Y here if you want to use the M32R serial controller.
  946. config SERIAL_M32R_SIO_CONSOLE
  947. bool "use SIO console"
  948. depends on SERIAL_M32R_SIO=y
  949. select SERIAL_CORE_CONSOLE
  950. help
  951. Say Y here if you want to support a serial console.
  952. If you use an M3T-M32700UT or an OPSPUT platform,
  953. please say also y for SERIAL_M32R_PLDSIO.
  954. config SERIAL_M32R_PLDSIO
  955. bool "M32R SIO I/F on a PLD"
  956. depends on SERIAL_M32R_SIO=y && (PLAT_OPSPUT || PLAT_USRV || PLAT_M32700UT)
  957. default n
  958. help
  959. Say Y here if you want to use the M32R serial controller
  960. on a PLD (Programmable Logic Device).
  961. If you use an M3T-M32700UT or an OPSPUT platform,
  962. please say Y.
  963. config SERIAL_TXX9
  964. bool "TMPTX39XX/49XX SIO support"
  965. depends on HAS_TXX9_SERIAL
  966. select SERIAL_CORE
  967. default y
  968. config HAS_TXX9_SERIAL
  969. bool
  970. config SERIAL_TXX9_NR_UARTS
  971. int "Maximum number of TMPTX39XX/49XX SIO ports"
  972. depends on SERIAL_TXX9
  973. default "6"
  974. config SERIAL_TXX9_CONSOLE
  975. bool "TMPTX39XX/49XX SIO Console support"
  976. depends on SERIAL_TXX9=y
  977. select SERIAL_CORE_CONSOLE
  978. config SERIAL_TXX9_STDSERIAL
  979. bool "TX39XX/49XX SIO act as standard serial"
  980. depends on !SERIAL_8250 && SERIAL_TXX9
  981. config SERIAL_VR41XX
  982. tristate "NEC VR4100 series Serial Interface Unit support"
  983. depends on CPU_VR41XX
  984. select SERIAL_CORE
  985. help
  986. If you have a NEC VR4100 series processor and you want to use
  987. Serial Interface Unit(SIU) or Debug Serial Interface Unit(DSIU)
  988. (not include VR4111/VR4121 DSIU), say Y. Otherwise, say N.
  989. config SERIAL_VR41XX_CONSOLE
  990. bool "Enable NEC VR4100 series Serial Interface Unit console"
  991. depends on SERIAL_VR41XX
  992. select SERIAL_CORE_CONSOLE
  993. help
  994. If you have a NEC VR4100 series processor and you want to use
  995. a console on a serial port, say Y. Otherwise, say N.
  996. config SERIAL_JSM
  997. tristate "Digi International NEO PCI Support"
  998. depends on PCI
  999. select SERIAL_CORE
  1000. help
  1001. This is a driver for Digi International's Neo series
  1002. of cards which provide multiple serial ports. You would need
  1003. something like this to connect more than two modems to your Linux
  1004. box, for instance in order to become a dial-in server. This driver
  1005. supports PCI boards only.
  1006. If you have a card like this, say Y here, otherwise say N.
  1007. To compile this driver as a module, choose M here: the
  1008. module will be called jsm.
  1009. config SERIAL_SGI_IOC4
  1010. tristate "SGI IOC4 controller serial support"
  1011. depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC4
  1012. select SERIAL_CORE
  1013. help
  1014. If you have an SGI Altix with an IOC4 based Base IO card
  1015. and wish to use the serial ports on this card, say Y.
  1016. Otherwise, say N.
  1017. config SERIAL_SGI_IOC3
  1018. tristate "SGI Altix IOC3 serial support"
  1019. depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC3
  1020. select SERIAL_CORE
  1021. help
  1022. If you have an SGI Altix with an IOC3 serial card,
  1023. say Y or M. Otherwise, say N.
  1024. config SERIAL_NETX
  1025. bool "NetX serial port support"
  1026. depends on ARM && ARCH_NETX
  1027. select SERIAL_CORE
  1028. help
  1029. If you have a machine based on a Hilscher NetX SoC you
  1030. can enable its onboard serial port by enabling this option.
  1031. To compile this driver as a module, choose M here: the
  1032. module will be called netx-serial.
  1033. config SERIAL_NETX_CONSOLE
  1034. bool "Console on NetX serial port"
  1035. depends on SERIAL_NETX
  1036. select SERIAL_CORE_CONSOLE
  1037. help
  1038. If you have enabled the serial port on the Motorola IMX
  1039. CPU you can make it the console by answering Y to this option.
  1040. config SERIAL_OF_PLATFORM
  1041. tristate "Serial port on Open Firmware platform bus"
  1042. depends on PPC_OF
  1043. depends on SERIAL_8250
  1044. help
  1045. If you have a PowerPC based system that has serial ports
  1046. on a platform specific bus, you should enable this option.
  1047. Currently, only 8250 compatible ports are supported, but
  1048. others can easily be added.
  1049. endmenu