Kconfig 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635
  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
  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 SERIAL_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 SERIAL_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. select SERIAL_EARLYCON
  240. help
  241. Allow selection of the S3C24XX on-board serial ports for use as
  242. an virtual console.
  243. Even if you say Y here, the currently visible virtual console
  244. (/dev/tty0) will still be used as the system console by default, but
  245. you can alter that using a kernel command line option such as
  246. "console=ttySACx". (Try "man bootparam" or see the documentation of
  247. your boot loader about how to pass options to the kernel at
  248. boot time.)
  249. config SERIAL_SIRFSOC
  250. tristate "SiRF SoC Platform Serial port support"
  251. depends on ARCH_SIRF
  252. select SERIAL_CORE
  253. help
  254. Support for the on-chip UART on the CSR SiRFprimaII series,
  255. providing /dev/ttySiRF0, 1 and 2 (note, some machines may not
  256. provide all of these ports, depending on how the serial port
  257. pins are configured).
  258. config SERIAL_SIRFSOC_CONSOLE
  259. bool "Support for console on SiRF SoC serial port"
  260. depends on SERIAL_SIRFSOC=y
  261. select SERIAL_CORE_CONSOLE
  262. help
  263. Even if you say Y here, the currently visible virtual console
  264. (/dev/tty0) will still be used as the system console by default, but
  265. you can alter that using a kernel command line option such as
  266. "console=ttySiRFx". (Try "man bootparam" or see the documentation of
  267. your boot loader about how to pass options to the kernel at
  268. boot time.)
  269. config SERIAL_TEGRA
  270. tristate "NVIDIA Tegra20/30 SoC serial controller"
  271. depends on ARCH_TEGRA && TEGRA20_APB_DMA
  272. select SERIAL_CORE
  273. help
  274. Support for the on-chip UARTs on the NVIDIA Tegra series SOCs
  275. providing /dev/ttyTHS0, 1, 2, 3 and 4 (note, some machines may not
  276. provide all of these ports, depending on how the serial port
  277. are enabled). This driver uses the APB DMA to achieve higher baudrate
  278. and better performance.
  279. config SERIAL_MAX3100
  280. tristate "MAX3100 support"
  281. depends on SPI
  282. select SERIAL_CORE
  283. help
  284. MAX3100 chip support
  285. config SERIAL_MAX310X
  286. tristate "MAX310X support"
  287. depends on SPI_MASTER
  288. select SERIAL_CORE
  289. select REGMAP_SPI if SPI_MASTER
  290. default n
  291. help
  292. This selects support for an advanced UART from Maxim (Dallas).
  293. Supported ICs are MAX3107, MAX3108, MAX3109, MAX14830.
  294. Each IC contains 128 words each of receive and transmit FIFO
  295. that can be controlled through I2C or high-speed SPI.
  296. Say Y here if you want to support this ICs.
  297. config SERIAL_DZ
  298. bool "DECstation DZ serial driver"
  299. depends on MACH_DECSTATION && 32BIT
  300. select SERIAL_CORE
  301. default y
  302. ---help---
  303. DZ11-family serial controllers for DECstations and VAXstations,
  304. including the DC7085, M7814, and M7819.
  305. config SERIAL_DZ_CONSOLE
  306. bool "Support console on DECstation DZ serial driver"
  307. depends on SERIAL_DZ=y
  308. select SERIAL_CORE_CONSOLE
  309. default y
  310. ---help---
  311. If you say Y here, it will be possible to use a serial port as the
  312. system console (the system console is the device which receives all
  313. kernel messages and warnings and which allows logins in single user
  314. mode).
  315. Note that the firmware uses ttyS3 as the serial console on
  316. DECstations that use this driver.
  317. If unsure, say Y.
  318. config SERIAL_ZS
  319. tristate "DECstation Z85C30 serial support"
  320. depends on MACH_DECSTATION
  321. select SERIAL_CORE
  322. default y
  323. ---help---
  324. Support for the Zilog 85C350 serial communications controller used
  325. for serial ports in newer DECstation systems. These include the
  326. DECsystem 5900 and all models of the DECstation and DECsystem 5000
  327. systems except from model 200.
  328. If unsure, say Y. To compile this driver as a module, choose M here:
  329. the module will be called zs.
  330. config SERIAL_ZS_CONSOLE
  331. bool "Support for console on a DECstation Z85C30 serial port"
  332. depends on SERIAL_ZS=y
  333. select SERIAL_CORE_CONSOLE
  334. default y
  335. ---help---
  336. If you say Y here, it will be possible to use a serial port as the
  337. system console (the system console is the device which receives all
  338. kernel messages and warnings and which allows logins in single user
  339. mode).
  340. Note that the firmware uses ttyS1 as the serial console on the
  341. Maxine and ttyS3 on the others using this driver.
  342. If unsure, say Y.
  343. config SERIAL_21285
  344. tristate "DC21285 serial port support"
  345. depends on FOOTBRIDGE
  346. select SERIAL_CORE
  347. help
  348. If you have a machine based on a 21285 (Footbridge) StrongARM(R)/
  349. PCI bridge you can enable its onboard serial port by enabling this
  350. option.
  351. config SERIAL_21285_CONSOLE
  352. bool "Console on DC21285 serial port"
  353. depends on SERIAL_21285=y
  354. select SERIAL_CORE_CONSOLE
  355. help
  356. If you have enabled the serial port on the 21285 footbridge you can
  357. make it the console by answering Y to this option.
  358. Even if you say Y here, the currently visible virtual console
  359. (/dev/tty0) will still be used as the system console by default, but
  360. you can alter that using a kernel command line option such as
  361. "console=ttyFB". (Try "man bootparam" or see the documentation of
  362. your boot loader (lilo or loadlin) about how to pass options to the
  363. kernel at boot time.)
  364. config SERIAL_MPSC
  365. bool "Marvell MPSC serial port support"
  366. depends on MV64X60
  367. select SERIAL_CORE
  368. help
  369. Say Y here if you want to use the Marvell MPSC serial controller.
  370. config SERIAL_MPSC_CONSOLE
  371. bool "Support for console on Marvell MPSC serial port"
  372. depends on SERIAL_MPSC
  373. select SERIAL_CORE_CONSOLE
  374. help
  375. Say Y here if you want to support a serial console on a Marvell MPSC.
  376. config SERIAL_PXA
  377. bool "PXA serial port support"
  378. depends on ARCH_PXA || ARCH_MMP
  379. select SERIAL_CORE
  380. help
  381. If you have a machine based on an Intel XScale PXA2xx CPU you
  382. can enable its onboard serial ports by enabling this option.
  383. config SERIAL_PXA_CONSOLE
  384. bool "Console on PXA serial port"
  385. depends on SERIAL_PXA
  386. select SERIAL_CORE_CONSOLE
  387. help
  388. If you have enabled the serial port on the Intel XScale PXA
  389. CPU you can make it the console by answering Y to this option.
  390. Even if you say Y here, the currently visible virtual console
  391. (/dev/tty0) will still be used as the system console by default, but
  392. you can alter that using a kernel command line option such as
  393. "console=ttySA0". (Try "man bootparam" or see the documentation of
  394. your boot loader (lilo or loadlin) about how to pass options to the
  395. kernel at boot time.)
  396. config SERIAL_SA1100
  397. bool "SA1100 serial port support"
  398. depends on ARCH_SA1100
  399. select SERIAL_CORE
  400. help
  401. If you have a machine based on a SA1100/SA1110 StrongARM(R) CPU you
  402. can enable its onboard serial port by enabling this option.
  403. Please read <file:Documentation/arm/SA1100/serial_UART> for further
  404. info.
  405. config SERIAL_SA1100_CONSOLE
  406. bool "Console on SA1100 serial port"
  407. depends on SERIAL_SA1100
  408. select SERIAL_CORE_CONSOLE
  409. help
  410. If you have enabled the serial port on the SA1100/SA1110 StrongARM
  411. CPU you can make it the console by answering Y to this option.
  412. Even if you say Y here, the currently visible virtual console
  413. (/dev/tty0) will still be used as the system console by default, but
  414. you can alter that using a kernel command line option such as
  415. "console=ttySA0". (Try "man bootparam" or see the documentation of
  416. your boot loader (lilo or loadlin) about how to pass options to the
  417. kernel at boot time.)
  418. config SERIAL_BFIN
  419. tristate "Blackfin serial port support"
  420. depends on BLACKFIN
  421. select SERIAL_CORE
  422. select SERIAL_BFIN_UART0 if (BF531 || BF532 || BF533 || BF561)
  423. help
  424. Add support for the built-in UARTs on the Blackfin.
  425. To compile this driver as a module, choose M here: the
  426. module is named bfin_uart.ko.
  427. config SERIAL_BFIN_CONSOLE
  428. bool "Console on Blackfin serial port"
  429. depends on SERIAL_BFIN=y
  430. select SERIAL_CORE_CONSOLE
  431. choice
  432. prompt "UART Mode"
  433. depends on SERIAL_BFIN
  434. default SERIAL_BFIN_DMA
  435. help
  436. This driver supports the built-in serial ports of the Blackfin family
  437. of CPUs
  438. config SERIAL_BFIN_DMA
  439. bool "DMA mode"
  440. depends on !DMA_UNCACHED_NONE && KGDB_SERIAL_CONSOLE=n
  441. help
  442. This driver works under DMA mode. If this option is selected, the
  443. blackfin simple dma driver is also enabled.
  444. config SERIAL_BFIN_PIO
  445. bool "PIO mode"
  446. help
  447. This driver works under PIO mode.
  448. endchoice
  449. config SERIAL_BFIN_UART0
  450. bool "Enable UART0"
  451. depends on SERIAL_BFIN
  452. help
  453. Enable UART0
  454. config BFIN_UART0_CTSRTS
  455. bool "Enable UART0 hardware flow control"
  456. depends on SERIAL_BFIN_UART0
  457. help
  458. Enable hardware flow control in the driver.
  459. config SERIAL_BFIN_UART1
  460. bool "Enable UART1"
  461. depends on SERIAL_BFIN && (!BF531 && !BF532 && !BF533 && !BF561)
  462. help
  463. Enable UART1
  464. config BFIN_UART1_CTSRTS
  465. bool "Enable UART1 hardware flow control"
  466. depends on SERIAL_BFIN_UART1
  467. help
  468. Enable hardware flow control in the driver.
  469. config SERIAL_BFIN_UART2
  470. bool "Enable UART2"
  471. depends on SERIAL_BFIN && (BF54x || BF538 || BF539)
  472. help
  473. Enable UART2
  474. config BFIN_UART2_CTSRTS
  475. bool "Enable UART2 hardware flow control"
  476. depends on SERIAL_BFIN_UART2
  477. help
  478. Enable hardware flow control in the driver.
  479. config SERIAL_BFIN_UART3
  480. bool "Enable UART3"
  481. depends on SERIAL_BFIN && (BF54x)
  482. help
  483. Enable UART3
  484. config BFIN_UART3_CTSRTS
  485. bool "Enable UART3 hardware flow control"
  486. depends on SERIAL_BFIN_UART3
  487. help
  488. Enable hardware flow control in the driver.
  489. config SERIAL_IMX
  490. tristate "IMX serial port support"
  491. depends on ARCH_MXC
  492. select SERIAL_CORE
  493. select RATIONAL
  494. help
  495. If you have a machine based on a Motorola IMX CPU you
  496. can enable its onboard serial port by enabling this option.
  497. config SERIAL_IMX_CONSOLE
  498. bool "Console on IMX serial port"
  499. depends on SERIAL_IMX=y
  500. select SERIAL_CORE_CONSOLE
  501. help
  502. If you have enabled the serial port on the Freescale IMX
  503. CPU you can make it the console by answering Y to this option.
  504. Even if you say Y here, the currently visible virtual console
  505. (/dev/tty0) will still be used as the system console by default, but
  506. you can alter that using a kernel command line option such as
  507. "console=ttymxc0". (Try "man bootparam" or see the documentation of
  508. your bootloader about how to pass options to the kernel at boot time.)
  509. config SERIAL_UARTLITE
  510. tristate "Xilinx uartlite serial port support"
  511. depends on HAS_IOMEM
  512. select SERIAL_CORE
  513. help
  514. Say Y here if you want to use the Xilinx uartlite serial controller.
  515. To compile this driver as a module, choose M here: the
  516. module will be called uartlite.
  517. config SERIAL_UARTLITE_CONSOLE
  518. bool "Support for console on Xilinx uartlite serial port"
  519. depends on SERIAL_UARTLITE=y
  520. select SERIAL_CORE_CONSOLE
  521. help
  522. Say Y here if you wish to use a Xilinx uartlite as the system
  523. console (the system console is the device which receives all kernel
  524. messages and warnings and which allows logins in single user mode).
  525. config SERIAL_SUNCORE
  526. bool
  527. depends on SPARC
  528. select SERIAL_CORE
  529. select SERIAL_CORE_CONSOLE
  530. default y
  531. config SERIAL_SUNZILOG
  532. tristate "Sun Zilog8530 serial support"
  533. depends on SPARC
  534. help
  535. This driver supports the Zilog8530 serial ports found on many Sparc
  536. systems. Say Y or M if you want to be able to these serial ports.
  537. config SERIAL_SUNZILOG_CONSOLE
  538. bool "Console on Sun Zilog8530 serial port"
  539. depends on SERIAL_SUNZILOG=y
  540. help
  541. If you would like to be able to use the Zilog8530 serial port
  542. on your Sparc system as the console, you can do so by answering
  543. Y to this option.
  544. config SERIAL_SUNSU
  545. tristate "Sun SU serial support"
  546. depends on SPARC && PCI
  547. help
  548. This driver supports the 8250 serial ports that run the keyboard and
  549. mouse on (PCI) UltraSPARC systems. Say Y or M if you want to be able
  550. to these serial ports.
  551. config SERIAL_SUNSU_CONSOLE
  552. bool "Console on Sun SU serial port"
  553. depends on SERIAL_SUNSU=y
  554. help
  555. If you would like to be able to use the SU serial port
  556. on your Sparc system as the console, you can do so by answering
  557. Y to this option.
  558. config SERIAL_MUX
  559. tristate "Serial MUX support"
  560. depends on GSC
  561. select SERIAL_CORE
  562. default y
  563. ---help---
  564. Saying Y here will enable the hardware MUX serial driver for
  565. the Nova, K class systems and D class with a 'remote control card'.
  566. The hardware MUX is not 8250/16550 compatible therefore the
  567. /dev/ttyB0 device is shared between the Serial MUX and the PDC
  568. software console. The following steps need to be completed to use
  569. the Serial MUX:
  570. 1. create the device entry (mknod /dev/ttyB0 c 11 0)
  571. 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
  572. 3. Add device ttyB0 to /etc/securetty (if you want to log on as
  573. root on this console.)
  574. 4. Change the kernel command console parameter to: console=ttyB0
  575. config SERIAL_MUX_CONSOLE
  576. bool "Support for console on serial MUX"
  577. depends on SERIAL_MUX=y
  578. select SERIAL_CORE_CONSOLE
  579. default y
  580. config PDC_CONSOLE
  581. bool "PDC software console support"
  582. depends on PARISC && !SERIAL_MUX && VT
  583. default n
  584. help
  585. Saying Y here will enable the software based PDC console to be
  586. used as the system console. This is useful for machines in
  587. which the hardware based console has not been written yet. The
  588. following steps must be completed to use the PDC console:
  589. 1. create the device entry (mknod /dev/ttyB0 c 11 0)
  590. 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
  591. 3. Add device ttyB0 to /etc/securetty (if you want to log on as
  592. root on this console.)
  593. 4. Change the kernel command console parameter to: console=ttyB0
  594. config SERIAL_SUNSAB
  595. tristate "Sun Siemens SAB82532 serial support"
  596. depends on SPARC && PCI
  597. help
  598. This driver supports the Siemens SAB82532 DUSCC serial ports on newer
  599. (PCI) UltraSPARC systems. Say Y or M if you want to be able to these
  600. serial ports.
  601. config SERIAL_SUNSAB_CONSOLE
  602. bool "Console on Sun Siemens SAB82532 serial port"
  603. depends on SERIAL_SUNSAB=y
  604. help
  605. If you would like to be able to use the SAB82532 serial port
  606. on your Sparc system as the console, you can do so by answering
  607. Y to this option.
  608. config SERIAL_SUNHV
  609. bool "Sun4v Hypervisor Console support"
  610. depends on SPARC64
  611. help
  612. This driver supports the console device found on SUN4V Sparc
  613. systems. Say Y if you want to be able to use this device.
  614. config SERIAL_IP22_ZILOG
  615. tristate "SGI Zilog8530 serial support"
  616. depends on SGI_HAS_ZILOG
  617. select SERIAL_CORE
  618. help
  619. This driver supports the Zilog8530 serial ports found on SGI
  620. systems. Say Y or M if you want to be able to these serial ports.
  621. config SERIAL_IP22_ZILOG_CONSOLE
  622. bool "Console on SGI Zilog8530 serial port"
  623. depends on SERIAL_IP22_ZILOG=y
  624. select SERIAL_CORE_CONSOLE
  625. config SERIAL_SH_SCI
  626. tristate "SuperH SCI(F) serial port support"
  627. depends on SUPERH || ARCH_SHMOBILE || H8300 || COMPILE_TEST
  628. select SERIAL_CORE
  629. config SERIAL_SH_SCI_NR_UARTS
  630. int "Maximum number of SCI(F) serial ports"
  631. depends on SERIAL_SH_SCI
  632. default "2"
  633. config SERIAL_SH_SCI_CONSOLE
  634. bool "Support for console on SuperH SCI(F)"
  635. depends on SERIAL_SH_SCI=y
  636. select SERIAL_CORE_CONSOLE
  637. config SERIAL_SH_SCI_DMA
  638. bool "DMA support"
  639. depends on SERIAL_SH_SCI && SH_DMAE
  640. config SERIAL_PNX8XXX
  641. bool "Enable PNX8XXX SoCs' UART Support"
  642. depends on SOC_PNX833X
  643. select SERIAL_CORE
  644. help
  645. If you have a MIPS-based Philips SoC such as PNX8330 and you want
  646. to use serial ports, say Y. Otherwise, say N.
  647. config SERIAL_PNX8XXX_CONSOLE
  648. bool "Enable PNX8XX0 serial console"
  649. depends on SERIAL_PNX8XXX
  650. select SERIAL_CORE_CONSOLE
  651. help
  652. If you have a MIPS-based Philips SoC such as PNX8330 and you want
  653. to use serial console, say Y. Otherwise, say N.
  654. config SERIAL_HS_LPC32XX
  655. tristate "LPC32XX high speed serial port support"
  656. depends on ARCH_LPC32XX && OF
  657. select SERIAL_CORE
  658. help
  659. Support for the LPC32XX high speed serial ports (up to 900kbps).
  660. Those are UARTs completely different from the Standard UARTs on the
  661. LPC32XX SoC.
  662. Choose M or Y here to build this driver.
  663. config SERIAL_HS_LPC32XX_CONSOLE
  664. bool "Enable LPC32XX high speed UART serial console"
  665. depends on SERIAL_HS_LPC32XX=y
  666. select SERIAL_CORE_CONSOLE
  667. help
  668. If you would like to be able to use one of the high speed serial
  669. ports on the LPC32XX as the console, you can do so by answering
  670. Y to this option.
  671. config SERIAL_CORE
  672. tristate
  673. config SERIAL_CORE_CONSOLE
  674. bool
  675. config CONSOLE_POLL
  676. bool
  677. config SERIAL_68328
  678. bool "68328 serial support"
  679. depends on M68328 || M68EZ328 || M68VZ328
  680. help
  681. This driver supports the built-in serial port of the Motorola 68328
  682. (standard, EZ and VZ varieties).
  683. config SERIAL_68328_RTS_CTS
  684. bool "Support RTS/CTS on 68328 serial port"
  685. depends on SERIAL_68328
  686. config SERIAL_MCF
  687. bool "Coldfire serial support"
  688. depends on COLDFIRE
  689. select SERIAL_CORE
  690. help
  691. This serial driver supports the Freescale Coldfire serial ports.
  692. config SERIAL_MCF_BAUDRATE
  693. int "Default baudrate for Coldfire serial ports"
  694. depends on SERIAL_MCF
  695. default 19200
  696. help
  697. This setting lets you define what the default baudrate is for the
  698. ColdFire serial ports. The usual default varies from board to board,
  699. and this setting is a way of catering for that.
  700. config SERIAL_MCF_CONSOLE
  701. bool "Coldfire serial console support"
  702. depends on SERIAL_MCF
  703. select SERIAL_CORE_CONSOLE
  704. help
  705. Enable a ColdFire internal serial port to be the system console.
  706. config SERIAL_PMACZILOG
  707. tristate "Mac or PowerMac z85c30 ESCC support"
  708. depends on (M68K && MAC) || PPC_PMAC
  709. select SERIAL_CORE
  710. help
  711. This driver supports the Zilog z85C30 serial ports found on
  712. (Power)Mac machines.
  713. Say Y or M if you want to be able to these serial ports.
  714. config SERIAL_PMACZILOG_TTYS
  715. bool "Use ttySn device nodes for Zilog z85c30"
  716. depends on SERIAL_PMACZILOG
  717. help
  718. The pmac_zilog driver for the z85C30 chip on many powermacs
  719. historically used the device numbers for /dev/ttySn. The
  720. 8250 serial port driver also uses these numbers, which means
  721. the two drivers being unable to coexist; you could not use
  722. both z85C30 and 8250 type ports at the same time.
  723. If this option is not selected, the pmac_zilog driver will
  724. use the device numbers allocated for /dev/ttyPZn. This allows
  725. the pmac_zilog and 8250 drivers to co-exist, but may cause
  726. existing userspace setups to break. Programs that need to
  727. access the built-in serial ports on powermacs will need to
  728. be reconfigured to use /dev/ttyPZn instead of /dev/ttySn.
  729. If you enable this option, any z85c30 ports in the system will
  730. be registered as ttyS0 onwards as in the past, and you will be
  731. unable to use the 8250 module for PCMCIA or other 16C550-style
  732. UARTs.
  733. Say N unless you need the z85c30 ports on your (Power)Mac
  734. to appear as /dev/ttySn.
  735. config SERIAL_PMACZILOG_CONSOLE
  736. bool "Console on Mac or PowerMac z85c30 serial port"
  737. depends on SERIAL_PMACZILOG=y
  738. select SERIAL_CORE_CONSOLE
  739. help
  740. If you would like to be able to use the z85c30 serial port
  741. on your (Power)Mac as the console, you can do so by answering
  742. Y to this option.
  743. config SERIAL_CPM
  744. tristate "CPM SCC/SMC serial port support"
  745. depends on CPM2 || CPM1
  746. select SERIAL_CORE
  747. help
  748. This driver supports the SCC and SMC serial ports on Motorola
  749. embedded PowerPC that contain a CPM1 (8xx) or CPM2 (8xxx)
  750. config SERIAL_CPM_CONSOLE
  751. bool "Support for console on CPM SCC/SMC serial port"
  752. depends on SERIAL_CPM=y
  753. select SERIAL_CORE_CONSOLE
  754. help
  755. Say Y here if you wish to use a SCC or SMC CPM UART as the system
  756. console (the system console is the device which receives all kernel
  757. messages and warnings and which allows logins in single user mode).
  758. Even if you say Y here, the currently visible framebuffer console
  759. (/dev/tty0) will still be used as the system console by default, but
  760. you can alter that using a kernel command line option such as
  761. "console=ttyCPM0". (Try "man bootparam" or see the documentation of
  762. your boot loader (lilo or loadlin) about how to pass options to the
  763. kernel at boot time.)
  764. config SERIAL_SGI_L1_CONSOLE
  765. bool "SGI Altix L1 serial console support"
  766. depends on IA64_GENERIC || IA64_SGI_SN2
  767. select SERIAL_CORE
  768. select SERIAL_CORE_CONSOLE
  769. help
  770. If you have an SGI Altix and you would like to use the system
  771. controller serial port as your console (you want this!),
  772. say Y. Otherwise, say N.
  773. config SERIAL_MPC52xx
  774. tristate "Freescale MPC52xx/MPC512x family PSC serial support"
  775. depends on PPC_MPC52xx || PPC_MPC512x
  776. select SERIAL_CORE
  777. help
  778. This driver supports MPC52xx and MPC512x PSC serial ports. If you would
  779. like to use them, you must answer Y or M to this option. Note that
  780. for use as console, it must be included in kernel and not as a
  781. module.
  782. config SERIAL_MPC52xx_CONSOLE
  783. bool "Console on a Freescale MPC52xx/MPC512x family PSC serial port"
  784. depends on SERIAL_MPC52xx=y
  785. select SERIAL_CORE_CONSOLE
  786. help
  787. Select this options if you'd like to use one of the PSC serial port
  788. of the Freescale MPC52xx family as a console.
  789. config SERIAL_MPC52xx_CONSOLE_BAUD
  790. int "Freescale MPC52xx/MPC512x family PSC serial port baud"
  791. depends on SERIAL_MPC52xx_CONSOLE=y
  792. default "9600"
  793. help
  794. Select the MPC52xx console baud rate.
  795. This value is only used if the bootloader doesn't pass in the
  796. console baudrate
  797. config SERIAL_ICOM
  798. tristate "IBM Multiport Serial Adapter"
  799. depends on PCI && PPC_PSERIES
  800. select SERIAL_CORE
  801. select FW_LOADER
  802. help
  803. This driver is for a family of multiport serial adapters
  804. including 2 port RVX, 2 port internal modem, 4 port internal
  805. modem and a split 1 port RVX and 1 port internal modem.
  806. This driver can also be built as a module. If so, the module
  807. will be called icom.
  808. config SERIAL_M32R_SIO
  809. bool "M32R SIO I/F"
  810. depends on M32R
  811. default y
  812. select SERIAL_CORE
  813. help
  814. Say Y here if you want to use the M32R serial controller.
  815. config SERIAL_M32R_SIO_CONSOLE
  816. bool "use SIO console"
  817. depends on SERIAL_M32R_SIO=y
  818. select SERIAL_CORE_CONSOLE
  819. help
  820. Say Y here if you want to support a serial console.
  821. If you use an M3T-M32700UT or an OPSPUT platform,
  822. please say also y for SERIAL_M32R_PLDSIO.
  823. config SERIAL_M32R_PLDSIO
  824. bool "M32R SIO I/F on a PLD"
  825. depends on SERIAL_M32R_SIO=y && (PLAT_OPSPUT || PLAT_USRV || PLAT_M32700UT)
  826. default n
  827. help
  828. Say Y here if you want to use the M32R serial controller
  829. on a PLD (Programmable Logic Device).
  830. If you use an M3T-M32700UT or an OPSPUT platform,
  831. please say Y.
  832. config SERIAL_TXX9
  833. bool "TMPTX39XX/49XX SIO support"
  834. depends on HAS_TXX9_SERIAL
  835. select SERIAL_CORE
  836. default y
  837. config HAS_TXX9_SERIAL
  838. bool
  839. config SERIAL_TXX9_NR_UARTS
  840. int "Maximum number of TMPTX39XX/49XX SIO ports"
  841. depends on SERIAL_TXX9
  842. default "6"
  843. config SERIAL_TXX9_CONSOLE
  844. bool "TMPTX39XX/49XX SIO Console support"
  845. depends on SERIAL_TXX9=y
  846. select SERIAL_CORE_CONSOLE
  847. config SERIAL_TXX9_STDSERIAL
  848. bool "TX39XX/49XX SIO act as standard serial"
  849. depends on !SERIAL_8250 && SERIAL_TXX9
  850. config SERIAL_VR41XX
  851. tristate "NEC VR4100 series Serial Interface Unit support"
  852. depends on CPU_VR41XX
  853. select SERIAL_CORE
  854. help
  855. If you have a NEC VR4100 series processor and you want to use
  856. Serial Interface Unit(SIU) or Debug Serial Interface Unit(DSIU)
  857. (not include VR4111/VR4121 DSIU), say Y. Otherwise, say N.
  858. config SERIAL_VR41XX_CONSOLE
  859. bool "Enable NEC VR4100 series Serial Interface Unit console"
  860. depends on SERIAL_VR41XX=y
  861. select SERIAL_CORE_CONSOLE
  862. help
  863. If you have a NEC VR4100 series processor and you want to use
  864. a console on a serial port, say Y. Otherwise, say N.
  865. config SERIAL_JSM
  866. tristate "Digi International NEO and Classic PCI Support"
  867. depends on PCI
  868. select SERIAL_CORE
  869. help
  870. This is a driver for Digi International's Neo and Classic series
  871. of cards which provide multiple serial ports. You would need
  872. something like this to connect more than two modems to your Linux
  873. box, for instance in order to become a dial-in server. This driver
  874. supports PCI boards only.
  875. If you have a card like this, say Y here, otherwise say N.
  876. To compile this driver as a module, choose M here: the
  877. module will be called jsm.
  878. config SERIAL_SGI_IOC4
  879. tristate "SGI IOC4 controller serial support"
  880. depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC4
  881. select SERIAL_CORE
  882. help
  883. If you have an SGI Altix with an IOC4 based Base IO card
  884. and wish to use the serial ports on this card, say Y.
  885. Otherwise, say N.
  886. config SERIAL_SGI_IOC3
  887. tristate "SGI Altix IOC3 serial support"
  888. depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC3
  889. select SERIAL_CORE
  890. help
  891. If you have an SGI Altix with an IOC3 serial card,
  892. say Y or M. Otherwise, say N.
  893. config SERIAL_MSM
  894. bool "MSM on-chip serial port support"
  895. depends on ARCH_QCOM
  896. select SERIAL_CORE
  897. config SERIAL_MSM_CONSOLE
  898. bool "MSM serial console support"
  899. depends on SERIAL_MSM=y
  900. select SERIAL_CORE_CONSOLE
  901. select SERIAL_EARLYCON
  902. config SERIAL_VT8500
  903. bool "VIA VT8500 on-chip serial port support"
  904. depends on ARCH_VT8500
  905. select SERIAL_CORE
  906. config SERIAL_VT8500_CONSOLE
  907. bool "VIA VT8500 serial console support"
  908. depends on SERIAL_VT8500=y
  909. select SERIAL_CORE_CONSOLE
  910. config SERIAL_ETRAXFS
  911. bool "ETRAX FS serial port support"
  912. depends on ETRAX_ARCH_V32 && OF
  913. select SERIAL_CORE
  914. select SERIAL_MCTRL_GPIO if GPIOLIB
  915. config SERIAL_ETRAXFS_CONSOLE
  916. bool "ETRAX FS serial console support"
  917. depends on SERIAL_ETRAXFS
  918. select SERIAL_CORE_CONSOLE
  919. config SERIAL_NETX
  920. tristate "NetX serial port support"
  921. depends on ARCH_NETX
  922. select SERIAL_CORE
  923. help
  924. If you have a machine based on a Hilscher NetX SoC you
  925. can enable its onboard serial port by enabling this option.
  926. To compile this driver as a module, choose M here: the
  927. module will be called netx-serial.
  928. config SERIAL_NETX_CONSOLE
  929. bool "Console on NetX serial port"
  930. depends on SERIAL_NETX=y
  931. select SERIAL_CORE_CONSOLE
  932. help
  933. If you have enabled the serial port on the Hilscher NetX SoC
  934. you can make it the console by answering Y to this option.
  935. config SERIAL_OF_PLATFORM
  936. tristate "Serial port on Open Firmware platform bus"
  937. depends on OF
  938. depends on SERIAL_8250 || SERIAL_OF_PLATFORM_NWPSERIAL
  939. help
  940. If you have a PowerPC based system that has serial ports
  941. on a platform specific bus, you should enable this option.
  942. Currently, only 8250 compatible ports are supported, but
  943. others can easily be added.
  944. config SERIAL_OMAP
  945. tristate "OMAP serial port support"
  946. depends on ARCH_OMAP2PLUS
  947. select SERIAL_CORE
  948. help
  949. If you have a machine based on an Texas Instruments OMAP CPU you
  950. can enable its onboard serial ports by enabling this option.
  951. By enabling this option you take advantage of dma feature available
  952. with the omap-serial driver. DMA support can be enabled from platform
  953. data.
  954. config SERIAL_OMAP_CONSOLE
  955. bool "Console on OMAP serial port"
  956. depends on SERIAL_OMAP=y
  957. select SERIAL_CORE_CONSOLE
  958. help
  959. Select this option if you would like to use omap serial port as
  960. console.
  961. Even if you say Y here, the currently visible virtual console
  962. (/dev/tty0) will still be used as the system console by default, but
  963. you can alter that using a kernel command line option such as
  964. "console=ttyOx". (Try "man bootparam" or see the documentation of
  965. your boot loader about how to pass options to the kernel at
  966. boot time.)
  967. config SERIAL_OF_PLATFORM_NWPSERIAL
  968. tristate "NWP serial port driver"
  969. depends on PPC_DCR
  970. select SERIAL_OF_PLATFORM
  971. select SERIAL_CORE_CONSOLE
  972. select SERIAL_CORE
  973. help
  974. This driver supports the cell network processor nwp serial
  975. device.
  976. config SERIAL_OF_PLATFORM_NWPSERIAL_CONSOLE
  977. bool "Console on NWP serial port"
  978. depends on SERIAL_OF_PLATFORM_NWPSERIAL=y
  979. select SERIAL_CORE_CONSOLE
  980. help
  981. Support for Console on the NWP serial ports.
  982. config SERIAL_LANTIQ
  983. bool "Lantiq serial driver"
  984. depends on LANTIQ
  985. select SERIAL_CORE
  986. select SERIAL_CORE_CONSOLE
  987. help
  988. Support for console and UART on Lantiq SoCs.
  989. config SERIAL_QE
  990. tristate "Freescale QUICC Engine serial port support"
  991. depends on QUICC_ENGINE
  992. select SERIAL_CORE
  993. select FW_LOADER
  994. default n
  995. help
  996. This driver supports the QE serial ports on Freescale embedded
  997. PowerPC that contain a QUICC Engine.
  998. config SERIAL_SCCNXP
  999. tristate "SCCNXP serial port support"
  1000. select SERIAL_CORE
  1001. help
  1002. This selects support for an advanced UART from NXP (Philips).
  1003. Supported ICs are SCC2681, SCC2691, SCC2692, SC28L91, SC28L92,
  1004. SC28L202, SCC68681 and SCC68692.
  1005. config SERIAL_SCCNXP_CONSOLE
  1006. bool "Console on SCCNXP serial port"
  1007. depends on SERIAL_SCCNXP=y
  1008. select SERIAL_CORE_CONSOLE
  1009. help
  1010. Support for console on SCCNXP serial ports.
  1011. config SERIAL_SC16IS7XX_CORE
  1012. tristate
  1013. config SERIAL_SC16IS7XX
  1014. tristate "SC16IS7xx serial support"
  1015. select SERIAL_CORE
  1016. depends on (SPI_MASTER && !I2C) || I2C
  1017. help
  1018. This selects support for SC16IS7xx serial ports.
  1019. Supported ICs are SC16IS740, SC16IS741, SC16IS750, SC16IS752,
  1020. SC16IS760 and SC16IS762. Select supported buses using options below.
  1021. config SERIAL_SC16IS7XX_I2C
  1022. bool "SC16IS7xx for I2C interface"
  1023. depends on SERIAL_SC16IS7XX
  1024. depends on I2C
  1025. select SERIAL_SC16IS7XX_CORE if SERIAL_SC16IS7XX
  1026. select REGMAP_I2C if I2C
  1027. default y
  1028. help
  1029. Enable SC16IS7xx driver on I2C bus,
  1030. If required say y, and say n to i2c if not required,
  1031. Enabled by default to support oldconfig.
  1032. You must select at least one bus for the driver to be built.
  1033. config SERIAL_SC16IS7XX_SPI
  1034. bool "SC16IS7xx for spi interface"
  1035. depends on SERIAL_SC16IS7XX
  1036. depends on SPI_MASTER
  1037. select SERIAL_SC16IS7XX_CORE if SERIAL_SC16IS7XX
  1038. select REGMAP_SPI if SPI_MASTER
  1039. help
  1040. Enable SC16IS7xx driver on SPI bus,
  1041. If required say y, and say n to spi if not required,
  1042. This is additional support to exsisting driver.
  1043. You must select at least one bus for the driver to be built.
  1044. config SERIAL_BFIN_SPORT
  1045. tristate "Blackfin SPORT emulate UART"
  1046. depends on BLACKFIN
  1047. select SERIAL_CORE
  1048. help
  1049. Enable SPORT emulate UART on Blackfin series.
  1050. To compile this driver as a module, choose M here: the
  1051. module will be called bfin_sport_uart.
  1052. config SERIAL_BFIN_SPORT_CONSOLE
  1053. bool "Console on Blackfin sport emulated uart"
  1054. depends on SERIAL_BFIN_SPORT=y
  1055. select SERIAL_CORE_CONSOLE
  1056. config SERIAL_BFIN_SPORT0_UART
  1057. bool "Enable UART over SPORT0"
  1058. depends on SERIAL_BFIN_SPORT && !(BF542 || BF544)
  1059. help
  1060. Enable UART over SPORT0
  1061. config SERIAL_BFIN_SPORT0_UART_CTSRTS
  1062. bool "Enable UART over SPORT0 hardware flow control"
  1063. depends on SERIAL_BFIN_SPORT0_UART
  1064. help
  1065. Enable hardware flow control in the driver.
  1066. config SERIAL_BFIN_SPORT1_UART
  1067. bool "Enable UART over SPORT1"
  1068. depends on SERIAL_BFIN_SPORT
  1069. help
  1070. Enable UART over SPORT1
  1071. config SERIAL_BFIN_SPORT1_UART_CTSRTS
  1072. bool "Enable UART over SPORT1 hardware flow control"
  1073. depends on SERIAL_BFIN_SPORT1_UART
  1074. help
  1075. Enable hardware flow control in the driver.
  1076. config SERIAL_BFIN_SPORT2_UART
  1077. bool "Enable UART over SPORT2"
  1078. depends on SERIAL_BFIN_SPORT && (BF54x || BF538 || BF539)
  1079. help
  1080. Enable UART over SPORT2
  1081. config SERIAL_BFIN_SPORT2_UART_CTSRTS
  1082. bool "Enable UART over SPORT2 hardware flow control"
  1083. depends on SERIAL_BFIN_SPORT2_UART
  1084. help
  1085. Enable hardware flow control in the driver.
  1086. config SERIAL_BFIN_SPORT3_UART
  1087. bool "Enable UART over SPORT3"
  1088. depends on SERIAL_BFIN_SPORT && (BF54x || BF538 || BF539)
  1089. help
  1090. Enable UART over SPORT3
  1091. config SERIAL_BFIN_SPORT3_UART_CTSRTS
  1092. bool "Enable UART over SPORT3 hardware flow control"
  1093. depends on SERIAL_BFIN_SPORT3_UART
  1094. help
  1095. Enable hardware flow control in the driver.
  1096. config SERIAL_TIMBERDALE
  1097. tristate "Support for timberdale UART"
  1098. select SERIAL_CORE
  1099. depends on X86_32 || COMPILE_TEST
  1100. ---help---
  1101. Add support for UART controller on timberdale.
  1102. config SERIAL_BCM63XX
  1103. tristate "Broadcom BCM63xx/BCM33xx UART support"
  1104. select SERIAL_CORE
  1105. depends on MIPS || ARM || COMPILE_TEST
  1106. help
  1107. This enables the driver for the onchip UART core found on
  1108. the following chipsets:
  1109. BCM33xx (cable modem)
  1110. BCM63xx/BCM63xxx (DSL)
  1111. BCM68xx (PON)
  1112. BCM7xxx (STB) - DOCSIS console
  1113. config SERIAL_BCM63XX_CONSOLE
  1114. bool "Console on BCM63xx serial port"
  1115. depends on SERIAL_BCM63XX=y
  1116. select SERIAL_CORE_CONSOLE
  1117. select SERIAL_EARLYCON
  1118. help
  1119. If you have enabled the serial port on the BCM63xx CPU
  1120. you can make it the console by answering Y to this option.
  1121. config SERIAL_GRLIB_GAISLER_APBUART
  1122. tristate "GRLIB APBUART serial support"
  1123. depends on OF && SPARC
  1124. select SERIAL_CORE
  1125. ---help---
  1126. Add support for the GRLIB APBUART serial port.
  1127. config SERIAL_GRLIB_GAISLER_APBUART_CONSOLE
  1128. bool "Console on GRLIB APBUART serial port"
  1129. depends on SERIAL_GRLIB_GAISLER_APBUART=y
  1130. select SERIAL_CORE_CONSOLE
  1131. help
  1132. Support for running a console on the GRLIB APBUART
  1133. config SERIAL_ALTERA_JTAGUART
  1134. tristate "Altera JTAG UART support"
  1135. select SERIAL_CORE
  1136. help
  1137. This driver supports the Altera JTAG UART port.
  1138. config SERIAL_ALTERA_JTAGUART_CONSOLE
  1139. bool "Altera JTAG UART console support"
  1140. depends on SERIAL_ALTERA_JTAGUART=y
  1141. select SERIAL_CORE_CONSOLE
  1142. help
  1143. Enable a Altera JTAG UART port to be the system console.
  1144. config SERIAL_ALTERA_JTAGUART_CONSOLE_BYPASS
  1145. bool "Bypass output when no connection"
  1146. depends on SERIAL_ALTERA_JTAGUART_CONSOLE
  1147. select SERIAL_CORE_CONSOLE
  1148. help
  1149. Bypass console output and keep going even if there is no
  1150. JTAG terminal connection with the host.
  1151. config SERIAL_ALTERA_UART
  1152. tristate "Altera UART support"
  1153. select SERIAL_CORE
  1154. help
  1155. This driver supports the Altera softcore UART port.
  1156. config SERIAL_ALTERA_UART_MAXPORTS
  1157. int "Maximum number of Altera UART ports"
  1158. depends on SERIAL_ALTERA_UART
  1159. default 4
  1160. help
  1161. This setting lets you define the maximum number of the Altera
  1162. UART ports. The usual default varies from board to board, and
  1163. this setting is a way of catering for that.
  1164. config SERIAL_ALTERA_UART_BAUDRATE
  1165. int "Default baudrate for Altera UART ports"
  1166. depends on SERIAL_ALTERA_UART
  1167. default 115200
  1168. help
  1169. This setting lets you define what the default baudrate is for the
  1170. Altera UART ports. The usual default varies from board to board,
  1171. and this setting is a way of catering for that.
  1172. config SERIAL_ALTERA_UART_CONSOLE
  1173. bool "Altera UART console support"
  1174. depends on SERIAL_ALTERA_UART=y
  1175. select SERIAL_CORE_CONSOLE
  1176. help
  1177. Enable a Altera UART port to be the system console.
  1178. config SERIAL_IFX6X60
  1179. tristate "SPI protocol driver for Infineon 6x60 modem (EXPERIMENTAL)"
  1180. depends on GPIOLIB || COMPILE_TEST
  1181. depends on SPI && HAS_DMA
  1182. help
  1183. Support for the IFX6x60 modem devices on Intel MID platforms.
  1184. config SERIAL_PCH_UART
  1185. tristate "Intel EG20T PCH/LAPIS Semicon IOH(ML7213/ML7223/ML7831) UART"
  1186. depends on PCI && (X86_32 || COMPILE_TEST)
  1187. select SERIAL_CORE
  1188. help
  1189. This driver is for PCH(Platform controller Hub) UART of Intel EG20T
  1190. which is an IOH(Input/Output Hub) for x86 embedded processor.
  1191. Enabling PCH_DMA, this PCH UART works as DMA mode.
  1192. This driver also can be used for LAPIS Semiconductor IOH(Input/
  1193. Output Hub), ML7213, ML7223 and ML7831.
  1194. ML7213 IOH is for IVI(In-Vehicle Infotainment) use, ML7223 IOH is
  1195. for MP(Media Phone) use and ML7831 IOH is for general purpose use.
  1196. ML7213/ML7223/ML7831 is companion chip for Intel Atom E6xx series.
  1197. ML7213/ML7223/ML7831 is completely compatible for Intel EG20T PCH.
  1198. config SERIAL_PCH_UART_CONSOLE
  1199. bool "Support for console on Intel EG20T PCH UART/OKI SEMICONDUCTOR ML7213 IOH"
  1200. depends on SERIAL_PCH_UART=y
  1201. select SERIAL_CORE_CONSOLE
  1202. help
  1203. Say Y here if you wish to use the PCH UART as the system console
  1204. (the system console is the device which receives all kernel messages and
  1205. warnings and which allows logins in single user mode).
  1206. config SERIAL_MXS_AUART
  1207. depends on ARCH_MXS
  1208. tristate "MXS AUART support"
  1209. select SERIAL_CORE
  1210. select SERIAL_MCTRL_GPIO if GPIOLIB
  1211. help
  1212. This driver supports the MXS Application UART (AUART) port.
  1213. config SERIAL_MXS_AUART_CONSOLE
  1214. bool "MXS AUART console support"
  1215. depends on SERIAL_MXS_AUART=y
  1216. select SERIAL_CORE_CONSOLE
  1217. help
  1218. Enable a MXS AUART port to be the system console.
  1219. config SERIAL_XILINX_PS_UART
  1220. tristate "Cadence (Xilinx Zynq) UART support"
  1221. depends on OF
  1222. select SERIAL_CORE
  1223. help
  1224. This driver supports the Cadence UART. It is found e.g. in Xilinx
  1225. Zynq.
  1226. config SERIAL_XILINX_PS_UART_CONSOLE
  1227. bool "Cadence UART console support"
  1228. depends on SERIAL_XILINX_PS_UART=y
  1229. select SERIAL_CORE_CONSOLE
  1230. select SERIAL_EARLYCON
  1231. help
  1232. Enable a Cadence UART port to be the system console.
  1233. config SERIAL_AR933X
  1234. tristate "AR933X serial port support"
  1235. depends on HAVE_CLK && SOC_AR933X
  1236. select SERIAL_CORE
  1237. help
  1238. If you have an Atheros AR933X SOC based board and want to use the
  1239. built-in UART of the SoC, say Y to this option.
  1240. To compile this driver as a module, choose M here: the
  1241. module will be called ar933x_uart.
  1242. config SERIAL_AR933X_CONSOLE
  1243. bool "Console on AR933X serial port"
  1244. depends on SERIAL_AR933X=y
  1245. select SERIAL_CORE_CONSOLE
  1246. help
  1247. Enable a built-in UART port of the AR933X to be the system console.
  1248. config SERIAL_AR933X_NR_UARTS
  1249. int "Maximum number of AR933X serial ports"
  1250. depends on SERIAL_AR933X
  1251. default "2"
  1252. help
  1253. Set this to the number of serial ports you want the driver
  1254. to support.
  1255. config SERIAL_EFM32_UART
  1256. tristate "EFM32 UART/USART port"
  1257. depends on ARM && (ARCH_EFM32 || COMPILE_TEST)
  1258. select SERIAL_CORE
  1259. help
  1260. This driver support the USART and UART ports on
  1261. Energy Micro's efm32 SoCs.
  1262. config SERIAL_EFM32_UART_CONSOLE
  1263. bool "EFM32 UART/USART console support"
  1264. depends on SERIAL_EFM32_UART=y
  1265. select SERIAL_CORE_CONSOLE
  1266. config SERIAL_TILEGX
  1267. tristate "TILE-Gx on-chip serial port support"
  1268. depends on TILEGX
  1269. select TILE_GXIO_UART
  1270. select SERIAL_CORE
  1271. ---help---
  1272. This device provides access to the on-chip UARTs on the TILE-Gx
  1273. processor.
  1274. config SERIAL_ARC
  1275. tristate "ARC UART driver support"
  1276. select SERIAL_CORE
  1277. help
  1278. Driver for on-chip UART for ARC(Synopsys) for the legacy
  1279. FPGA Boards (ML50x/ARCAngel4)
  1280. config SERIAL_ARC_CONSOLE
  1281. bool "Console on ARC UART"
  1282. depends on SERIAL_ARC=y
  1283. select SERIAL_CORE_CONSOLE
  1284. select SERIAL_EARLYCON
  1285. help
  1286. Enable system Console on ARC UART
  1287. config SERIAL_ARC_NR_PORTS
  1288. int "Number of ARC UART ports"
  1289. depends on SERIAL_ARC
  1290. range 1 3
  1291. default "1"
  1292. help
  1293. Set this to the number of serial ports you want the driver
  1294. to support.
  1295. config SERIAL_RP2
  1296. tristate "Comtrol RocketPort EXPRESS/INFINITY support"
  1297. depends on PCI
  1298. select SERIAL_CORE
  1299. help
  1300. This driver supports the Comtrol RocketPort EXPRESS and
  1301. RocketPort INFINITY families of PCI/PCIe multiport serial adapters.
  1302. These adapters use a "RocketPort 2" ASIC that is not compatible
  1303. with the original RocketPort driver (CONFIG_ROCKETPORT).
  1304. To compile this driver as a module, choose M here: the
  1305. module will be called rp2.
  1306. If you want to compile this driver into the kernel, say Y here. If
  1307. you don't have a suitable RocketPort card installed, say N.
  1308. config SERIAL_RP2_NR_UARTS
  1309. int "Maximum number of RocketPort EXPRESS/INFINITY ports"
  1310. depends on SERIAL_RP2
  1311. default "32"
  1312. help
  1313. If multiple cards are present, the default limit of 32 ports may
  1314. need to be increased.
  1315. config SERIAL_FSL_LPUART
  1316. tristate "Freescale lpuart serial port support"
  1317. depends on HAS_DMA
  1318. select SERIAL_CORE
  1319. help
  1320. Support for the on-chip lpuart on some Freescale SOCs.
  1321. config SERIAL_FSL_LPUART_CONSOLE
  1322. bool "Console on Freescale lpuart serial port"
  1323. depends on SERIAL_FSL_LPUART=y
  1324. select SERIAL_CORE_CONSOLE
  1325. help
  1326. If you have enabled the lpuart serial port on the Freescale SoCs,
  1327. you can make it the console by answering Y to this option.
  1328. config SERIAL_CONEXANT_DIGICOLOR
  1329. tristate "Conexant Digicolor CX92xxx USART serial port support"
  1330. depends on OF
  1331. select SERIAL_CORE
  1332. help
  1333. Support for the on-chip USART on Conexant Digicolor SoCs.
  1334. config SERIAL_CONEXANT_DIGICOLOR_CONSOLE
  1335. bool "Console on Conexant Digicolor serial port"
  1336. depends on SERIAL_CONEXANT_DIGICOLOR=y
  1337. select SERIAL_CORE_CONSOLE
  1338. help
  1339. If you have enabled the USART serial port on Conexant Digicolor
  1340. SoCs, you can make it the console by answering Y to this option.
  1341. config SERIAL_ST_ASC
  1342. tristate "ST ASC serial port support"
  1343. select SERIAL_CORE
  1344. depends on ARM || COMPILE_TEST
  1345. help
  1346. This driver is for the on-chip Asychronous Serial Controller on
  1347. STMicroelectronics STi SoCs.
  1348. ASC is embedded in ST COMMS IP block. It supports Rx & Tx functionality.
  1349. It support all industry standard baud rates.
  1350. If unsure, say N.
  1351. config SERIAL_ST_ASC_CONSOLE
  1352. bool "Support for console on ST ASC"
  1353. depends on SERIAL_ST_ASC=y
  1354. select SERIAL_CORE_CONSOLE
  1355. config SERIAL_MEN_Z135
  1356. tristate "MEN 16z135 Support"
  1357. select SERIAL_CORE
  1358. depends on MCB
  1359. help
  1360. Say yes here to enable support for the MEN 16z135 High Speed UART IP-Core
  1361. on a MCB carrier.
  1362. This driver can also be build as a module. If so, the module will be called
  1363. men_z135_uart.ko
  1364. config SERIAL_SPRD
  1365. tristate "Support for Spreadtrum serial"
  1366. depends on ARCH_SPRD
  1367. select SERIAL_CORE
  1368. help
  1369. This enables the driver for the Spreadtrum's serial.
  1370. config SERIAL_SPRD_CONSOLE
  1371. bool "Spreadtrum UART console support"
  1372. depends on SERIAL_SPRD=y
  1373. select SERIAL_CORE_CONSOLE
  1374. select SERIAL_EARLYCON
  1375. help
  1376. Support for early debug console using Spreadtrum's serial. This enables
  1377. the console before standard serial driver is probed. This is enabled
  1378. with "earlycon" on the kernel command line. The console is
  1379. enabled when early_param is processed.
  1380. config SERIAL_STM32
  1381. tristate "STMicroelectronics STM32 serial port support"
  1382. select SERIAL_CORE
  1383. depends on ARM || COMPILE_TEST
  1384. help
  1385. This driver is for the on-chip Serial Controller on
  1386. STMicroelectronics STM32 MCUs.
  1387. USART supports Rx & Tx functionality.
  1388. It support all industry standard baud rates.
  1389. If unsure, say N.
  1390. config SERIAL_STM32_CONSOLE
  1391. bool "Support for console on STM32"
  1392. depends on SERIAL_STM32=y
  1393. select SERIAL_CORE_CONSOLE
  1394. endmenu
  1395. config SERIAL_MCTRL_GPIO
  1396. tristate
  1397. endif # TTY