Kconfig 49 KB

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