diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2012-08-06 11:42:32 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-16 15:12:25 -0400 |
commit | f65444187a66bf54af32a10902877dd0326456d1 (patch) | |
tree | 9458139d0c7dd538d68cf6fa02e5ad4542162d83 /drivers/tty/serial/Kconfig | |
parent | 9574f36fb801035f6ab0fbb1b53ce2c12c17d100 (diff) |
serial: New serial driver MAX310X
This driver is a replacement for a MAX3107 driver with a lot of
improvements and new features.
The main differences from the old version:
- Using the regmap.
- Using devm_XXX-related functions.
- The use of threaded IRQ with IRQF_ONESHOT flag allows the driver to
the hardware that supports only level IRQ.
- Improved error handling of serial port, improved FIFO handling,
improved hardware & software flow control.
- Advanced flags allows turn on RS-485 mode (Auto direction control).
- Ability to load multiple instances of drivers.
- Added support for MAX3108.
- GPIO support.
- Driver is quite ready for adding I2C support and support other ICs
with compatible registers set (MAX3109, MAX14830).
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/Kconfig')
-rw-r--r-- | drivers/tty/serial/Kconfig | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig index 00207865ec55..7b3d9de938e0 100644 --- a/drivers/tty/serial/Kconfig +++ b/drivers/tty/serial/Kconfig | |||
@@ -257,12 +257,19 @@ config SERIAL_MAX3100 | |||
257 | help | 257 | help |
258 | MAX3100 chip support | 258 | MAX3100 chip support |
259 | 259 | ||
260 | config SERIAL_MAX3107 | 260 | config SERIAL_MAX310X |
261 | tristate "MAX3107 support" | 261 | bool "MAX310X support" |
262 | depends on SPI | 262 | depends on SPI |
263 | select SERIAL_CORE | 263 | select SERIAL_CORE |
264 | select REGMAP_SPI if SPI | ||
265 | default n | ||
264 | help | 266 | help |
265 | MAX3107 chip support | 267 | This selects support for an advanced UART from Maxim (Dallas). |
268 | Supported ICs are MAX3107, MAX3108. | ||
269 | Each IC contains 128 words each of receive and transmit FIFO | ||
270 | that can be controlled through I2C or high-speed SPI. | ||
271 | |||
272 | Say Y here if you want to support this ICs. | ||
266 | 273 | ||
267 | config SERIAL_DZ | 274 | config SERIAL_DZ |
268 | bool "DECstation DZ serial driver" | 275 | bool "DECstation DZ serial driver" |