diff options
author | Sonic Zhang <sonic.zhang@analog.com> | 2010-03-09 12:25:33 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-21 12:34:27 -0400 |
commit | 1f7d1c85df5b63359e7f7e3fbd1509c1cdd6414f (patch) | |
tree | a25db974be00d82156479e705a6ced9f8f84b0e3 /drivers/serial/Kconfig | |
parent | b59588aae8356caf52b653a7c448c3fffdd27628 (diff) |
serial: bfin_sport_uart: add support for CTS/RTS via GPIOs
Some people need flow control on their ports, so now boards can support
that via any GPIOs.
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/serial/Kconfig')
-rw-r--r-- | drivers/serial/Kconfig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 302836a80693..63258305c057 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig | |||
@@ -1443,24 +1443,48 @@ config SERIAL_BFIN_SPORT0_UART | |||
1443 | help | 1443 | help |
1444 | Enable UART over SPORT0 | 1444 | Enable UART over SPORT0 |
1445 | 1445 | ||
1446 | config SERIAL_BFIN_SPORT0_UART_CTSRTS | ||
1447 | bool "Enable UART over SPORT0 hardware flow control" | ||
1448 | depends on SERIAL_BFIN_SPORT0_UART | ||
1449 | help | ||
1450 | Enable hardware flow control in the driver. | ||
1451 | |||
1446 | config SERIAL_BFIN_SPORT1_UART | 1452 | config SERIAL_BFIN_SPORT1_UART |
1447 | bool "Enable UART over SPORT1" | 1453 | bool "Enable UART over SPORT1" |
1448 | depends on SERIAL_BFIN_SPORT | 1454 | depends on SERIAL_BFIN_SPORT |
1449 | help | 1455 | help |
1450 | Enable UART over SPORT1 | 1456 | Enable UART over SPORT1 |
1451 | 1457 | ||
1458 | config SERIAL_BFIN_SPORT1_UART_CTSRTS | ||
1459 | bool "Enable UART over SPORT1 hardware flow control" | ||
1460 | depends on SERIAL_BFIN_SPORT1_UART | ||
1461 | help | ||
1462 | Enable hardware flow control in the driver. | ||
1463 | |||
1452 | config SERIAL_BFIN_SPORT2_UART | 1464 | config SERIAL_BFIN_SPORT2_UART |
1453 | bool "Enable UART over SPORT2" | 1465 | bool "Enable UART over SPORT2" |
1454 | depends on SERIAL_BFIN_SPORT && (BF54x || BF538 || BF539) | 1466 | depends on SERIAL_BFIN_SPORT && (BF54x || BF538 || BF539) |
1455 | help | 1467 | help |
1456 | Enable UART over SPORT2 | 1468 | Enable UART over SPORT2 |
1457 | 1469 | ||
1470 | config SERIAL_BFIN_SPORT2_UART_CTSRTS | ||
1471 | bool "Enable UART over SPORT2 hardware flow control" | ||
1472 | depends on SERIAL_BFIN_SPORT2_UART | ||
1473 | help | ||
1474 | Enable hardware flow control in the driver. | ||
1475 | |||
1458 | config SERIAL_BFIN_SPORT3_UART | 1476 | config SERIAL_BFIN_SPORT3_UART |
1459 | bool "Enable UART over SPORT3" | 1477 | bool "Enable UART over SPORT3" |
1460 | depends on SERIAL_BFIN_SPORT && (BF54x || BF538 || BF539) | 1478 | depends on SERIAL_BFIN_SPORT && (BF54x || BF538 || BF539) |
1461 | help | 1479 | help |
1462 | Enable UART over SPORT3 | 1480 | Enable UART over SPORT3 |
1463 | 1481 | ||
1482 | config SERIAL_BFIN_SPORT3_UART_CTSRTS | ||
1483 | bool "Enable UART over SPORT3 hardware flow control" | ||
1484 | depends on SERIAL_BFIN_SPORT3_UART | ||
1485 | help | ||
1486 | Enable hardware flow control in the driver. | ||
1487 | |||
1464 | config SERIAL_TIMBERDALE | 1488 | config SERIAL_TIMBERDALE |
1465 | tristate "Support for timberdale UART" | 1489 | tristate "Support for timberdale UART" |
1466 | select SERIAL_CORE | 1490 | select SERIAL_CORE |