diff options
author | Guainluca Anzolin <gianluca@sottospazio.it> | 2012-09-04 10:56:12 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-05 16:18:13 -0400 |
commit | 6971c635af27b1d18d409e337e70bae25d2fa8ec (patch) | |
tree | 40a7ebd4e57335d1afeb0b1615c6d3c4f9750853 /drivers/parport | |
parent | 9303ac158fcd5f69c032e06391a9a12d3ccb343e (diff) |
parport_serial: Add support for the WCH353 2S/1P multi-IO card
To allow parport_serial to handle the card the same PCI ids are blacklisted
in 8250_pci.c using the existing software blacklist mechanism.
The blacklist array is also renamed because it now covers this new use
case.
Since the two serial ports are auto-detected as XScale instead of 16550A
clones, we also add a quirk to 8250_pci.c to skip autodetection and set the
correct port type.
Signed-off-by: Gianluca Anzolin <gianluca@sottospazio.it>
[Fold in fixes for the uart_8250 change]
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/parport')
-rw-r--r-- | drivers/parport/parport_serial.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/parport/parport_serial.c b/drivers/parport/parport_serial.c index e9c32274df3f..1631eeaf440e 100644 --- a/drivers/parport/parport_serial.c +++ b/drivers/parport/parport_serial.c | |||
@@ -62,6 +62,7 @@ enum parport_pc_pci_cards { | |||
62 | timedia_9079a, | 62 | timedia_9079a, |
63 | timedia_9079b, | 63 | timedia_9079b, |
64 | timedia_9079c, | 64 | timedia_9079c, |
65 | wch_ch353_2s1p, | ||
65 | }; | 66 | }; |
66 | 67 | ||
67 | /* each element directly indexed from enum list, above */ | 68 | /* each element directly indexed from enum list, above */ |
@@ -145,6 +146,7 @@ static struct parport_pc_pci cards[] __devinitdata = { | |||
145 | /* timedia_9079a */ { 1, { { 2, 3 }, } }, | 146 | /* timedia_9079a */ { 1, { { 2, 3 }, } }, |
146 | /* timedia_9079b */ { 1, { { 2, 3 }, } }, | 147 | /* timedia_9079b */ { 1, { { 2, 3 }, } }, |
147 | /* timedia_9079c */ { 1, { { 2, 3 }, } }, | 148 | /* timedia_9079c */ { 1, { { 2, 3 }, } }, |
149 | /* wch_ch353_2s1p*/ { 1, { { 2, -1}, } }, | ||
148 | }; | 150 | }; |
149 | 151 | ||
150 | static struct pci_device_id parport_serial_pci_tbl[] = { | 152 | static struct pci_device_id parport_serial_pci_tbl[] = { |
@@ -243,7 +245,8 @@ static struct pci_device_id parport_serial_pci_tbl[] = { | |||
243 | { 0x1409, 0x7168, 0x1409, 0xb079, 0, 0, timedia_9079a }, | 245 | { 0x1409, 0x7168, 0x1409, 0xb079, 0, 0, timedia_9079a }, |
244 | { 0x1409, 0x7168, 0x1409, 0xc079, 0, 0, timedia_9079b }, | 246 | { 0x1409, 0x7168, 0x1409, 0xc079, 0, 0, timedia_9079b }, |
245 | { 0x1409, 0x7168, 0x1409, 0xd079, 0, 0, timedia_9079c }, | 247 | { 0x1409, 0x7168, 0x1409, 0xd079, 0, 0, timedia_9079c }, |
246 | 248 | /* WCH CARDS */ | |
249 | { 0x4348, 0x7053, 0x4348, 0x3253, 0, 0, wch_ch353_2s1p}, | ||
247 | { 0, } /* terminate list */ | 250 | { 0, } /* terminate list */ |
248 | }; | 251 | }; |
249 | MODULE_DEVICE_TABLE(pci,parport_serial_pci_tbl); | 252 | MODULE_DEVICE_TABLE(pci,parport_serial_pci_tbl); |
@@ -460,6 +463,12 @@ static struct pciserial_board pci_parport_serial_boards[] __devinitdata = { | |||
460 | .base_baud = 921600, | 463 | .base_baud = 921600, |
461 | .uart_offset = 8, | 464 | .uart_offset = 8, |
462 | }, | 465 | }, |
466 | [wch_ch353_2s1p] = { | ||
467 | .flags = FL_BASE0|FL_BASE_BARS, | ||
468 | .num_ports = 2, | ||
469 | .base_baud = 115200, | ||
470 | .uart_offset = 8, | ||
471 | }, | ||
463 | }; | 472 | }; |
464 | 473 | ||
465 | struct parport_serial_private { | 474 | struct parport_serial_private { |