Hi Russel,
In the last couple of years, Exar Corporation has introduced new UART
products, with additional features:
16L580 - 16 Byte FIFO with EFR
16L2550/52/ & 16V2550/52 - 16 Byte FIFO with EFR (2 channel UARTs)
All these devices have uniquw device ids.
16L580 has Device ID = 0x01; Both 16L2550/52 and 16V2550/52 has Device
IDs = 0x02
Due to existing logic in the serial driver's 8250.c, the above products
default to 16650V2 UART type (32 byte FIFO UART), causing some potential
problems. In this regard, please verify this patch, which fixes those
issues.
--- /usr/src/linux-2.6.13-15/drivers/serial/8250_orig.c 2006-03-07
10:48:22.000000000 -0800
+++ /usr/src/linux-2.6.13-15/drivers/serial/8250.c 2006-03-07
11:12:37.000000000 -0800
@@ -191,6 +191,13 @@ static const struct serial8250_config ua
.fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
.flags = UART_CAP_FIFO,
},
+ [PORT_16580] = {
+ .name = "XR16580",
+ .fifo_size = 16,
+ .tx_loadsz = 16,
+ .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
+ .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
+ },
[PORT_CIRRUS] = {
.name = "Cirrus",
.fifo_size = 1,
@@ -590,9 +597,20 @@ static void autoconfig_has_efr(struct ua
up->port.type = PORT_16850;
return;
}
+
+ /*
+ * 0x01 - XR16L580
+ * 0x02 - XR16L2550/52 and XR16V2550/52
+ * All the above UARTs have 16 byte FIFO with EFR
+ * and are of UART type PORT_16580
+ */
+ if (id2 == 0x01 || id2 == 0x02) {
+ up->port.type = PORT_16580;
+ return;
+ }
/*
- * It wasn't an XR16C850.
+ * It wasn't an XR16C850 or XR16L580 or XR16x2550/52.
*
* We distinguish between the '654 and the '650 by counting
* how many bytes are in the FIFO. I'm using this for now,
Thanks and regards,
Ravi Reddy...
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]