The patch titled serial: UART driver changes for Cavium OCTEON has been removed from the -mm tree. Its filename was serial-uart-driver-changes-for-cavium-octeon.patch This patch was dropped because an updated version will be merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: serial: UART driver changes for Cavium OCTEON From: David Daney <ddaney@xxxxxxxxxxxxxxxxxx> Cavium UART implementation won't work with the standard 8250 driver as-is. Define a new uart_config (PORT_OCTEON) and use it to enable special handling required by the OCTEON's serial port. Two new bug types are defined. Signed-off-by: Tomaso Paoletti <tpaoletti@xxxxxxxxxxxxxxxxxx> Signed-off-by: David Daney <ddaney@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/serial/8250.c | 10 +++++++++- drivers/serial/8250.h | 1 + include/linux/serial_core.h | 3 ++- 3 files changed, 12 insertions(+), 2 deletions(-) diff -puN drivers/serial/8250.c~serial-uart-driver-changes-for-cavium-octeon drivers/serial/8250.c --- a/drivers/serial/8250.c~serial-uart-driver-changes-for-cavium-octeon +++ a/drivers/serial/8250.c @@ -279,6 +279,14 @@ static const struct serial8250_config ua .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, .flags = UART_CAP_FIFO, }, + [PORT_OCTEON] = { + .name = "OCTEON", + .fifo_size = 64, + .tx_loadsz = 64, + .bugs = UART_BUG_TIMEOUT, + .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, + .flags = UART_CAP_FIFO, + }, }; #if defined (CONFIG_SERIAL_8250_AU1X00) @@ -1714,7 +1722,7 @@ static void serial8250_timeout(unsigned unsigned int iir; iir = serial_in(up, UART_IIR); - if (!(iir & UART_IIR_NO_INT)) + if (!(iir & UART_IIR_NO_INT) || (up->bugs & UART_BUG_TIMEOUT)) serial8250_handle_port(up); mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout)); } diff -puN drivers/serial/8250.h~serial-uart-driver-changes-for-cavium-octeon drivers/serial/8250.h --- a/drivers/serial/8250.h~serial-uart-driver-changes-for-cavium-octeon +++ a/drivers/serial/8250.h @@ -49,6 +49,7 @@ struct serial8250_config { #define UART_BUG_TXEN (1 << 1) /* UART has buggy TX IIR status */ #define UART_BUG_NOMSR (1 << 2) /* UART has buggy MSR status bits (Au1x00) */ #define UART_BUG_THRE (1 << 3) /* UART has buggy THRE reassertion */ +#define UART_BUG_TIMEOUT (1 << 4) /* UART should always handle timeout */ #define PROBE_RSA (1 << 0) #define PROBE_ANY (~0) diff -puN include/linux/serial_core.h~serial-uart-driver-changes-for-cavium-octeon include/linux/serial_core.h --- a/include/linux/serial_core.h~serial-uart-driver-changes-for-cavium-octeon +++ a/include/linux/serial_core.h @@ -40,7 +40,8 @@ #define PORT_NS16550A 14 #define PORT_XSCALE 15 #define PORT_RM9000 16 /* PMC-Sierra RM9xxx internal UART */ -#define PORT_MAX_8250 16 /* max port ID */ +#define PORT_OCTEON 17 /* Cavium OCTEON internal UART */ +#define PORT_MAX_8250 17 /* max port ID */ /* * ARM specific type numbers. These are not currently guaranteed _ Patches currently in -mm which might be from ddaney@xxxxxxxxxxxxxxxxxx are serial-uart-driver-changes-for-cavium-octeon.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html