Kconfig 51 KB

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