Skip to content

Commit 9604884

Browse files
Cameron Williamsgregkh
authored andcommitted
tty: 8250: Add support for additional Brainboxes PX cards
Add support for some more of the Brainboxes PX (PCIe) range of serial cards, namely PX-275/PX-279, PX-475 (serial port, not LPT), PX-820, PX-803/PX-857 (additional ID). Cc: stable@vger.kernel.org Signed-off-by: Cameron Williams <cang1@live.co.uk> Link: https://lore.kernel.org/r/DU0PR02MB78996BEC353FB346FC35444BC4DBA@DU0PR02MB7899.eurprd02.prod.outlook.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent ee61337 commit 9604884

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

drivers/tty/serial/8250/8250_pci.c

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5238,6 +5238,13 @@ static const struct pci_device_id serial_pci_tbl[] = {
52385238
PCI_ANY_ID, PCI_ANY_ID,
52395239
0, 0,
52405240
pbn_oxsemi_4_15625000 },
5241+
/*
5242+
* Brainboxes PX-275/279
5243+
*/
5244+
{ PCI_VENDOR_ID_INTASHIELD, 0x0E41,
5245+
PCI_ANY_ID, PCI_ANY_ID,
5246+
0, 0,
5247+
pbn_b2_8_115200 },
52415248
/*
52425249
* Brainboxes PX-310
52435250
*/
@@ -5284,17 +5291,39 @@ static const struct pci_device_id serial_pci_tbl[] = {
52845291
PCI_ANY_ID, PCI_ANY_ID,
52855292
0, 0,
52865293
pbn_oxsemi_4_15625000 },
5294+
/*
5295+
* Brainboxes PX-475
5296+
*/
5297+
{ PCI_VENDOR_ID_INTASHIELD, 0x401D,
5298+
PCI_ANY_ID, PCI_ANY_ID,
5299+
0, 0,
5300+
pbn_oxsemi_1_15625000 },
52875301
/*
52885302
* Brainboxes PX-803/PX-857
52895303
*/
52905304
{ PCI_VENDOR_ID_INTASHIELD, 0x4009,
52915305
PCI_ANY_ID, PCI_ANY_ID,
52925306
0, 0,
52935307
pbn_b0_2_115200 },
5308+
{ PCI_VENDOR_ID_INTASHIELD, 0x4018,
5309+
PCI_ANY_ID, PCI_ANY_ID,
5310+
0, 0,
5311+
pbn_oxsemi_2_15625000 },
52945312
{ PCI_VENDOR_ID_INTASHIELD, 0x401E,
52955313
PCI_ANY_ID, PCI_ANY_ID,
52965314
0, 0,
52975315
pbn_oxsemi_2_15625000 },
5316+
/*
5317+
* Brainboxes PX-820
5318+
*/
5319+
{ PCI_VENDOR_ID_INTASHIELD, 0x4002,
5320+
PCI_ANY_ID, PCI_ANY_ID,
5321+
0, 0,
5322+
pbn_b0_4_115200 },
5323+
{ PCI_VENDOR_ID_INTASHIELD, 0x4013,
5324+
PCI_ANY_ID, PCI_ANY_ID,
5325+
0, 0,
5326+
pbn_oxsemi_4_15625000 },
52985327
/*
52995328
* Brainboxes PX-846
53005329
*/

0 commit comments

Comments
 (0)