Kconfig 45 KB

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