Skip to content

Commit 0afb84c

Browse files
Cameron Williamsgregkh
authored andcommitted
tty: 8250: Add support for additional Brainboxes PX cards
commit 9604884 upstream. 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 9878818 commit 0afb84c

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
@@ -5188,6 +5188,13 @@ static const struct pci_device_id serial_pci_tbl[] = {
51885188
PCI_ANY_ID, PCI_ANY_ID,
51895189
0, 0,
51905190
pbn_oxsemi_4_15625000 },
5191+
/*
5192+
* Brainboxes PX-275/279
5193+
*/
5194+
{ PCI_VENDOR_ID_INTASHIELD, 0x0E41,
5195+
PCI_ANY_ID, PCI_ANY_ID,
5196+
0, 0,
5197+
pbn_b2_8_115200 },
51915198
/*
51925199
* Brainboxes PX-310
51935200
*/
@@ -5234,17 +5241,39 @@ static const struct pci_device_id serial_pci_tbl[] = {
52345241
PCI_ANY_ID, PCI_ANY_ID,
52355242
0, 0,
52365243
pbn_oxsemi_4_15625000 },
5244+
/*
5245+
* Brainboxes PX-475
5246+
*/
5247+
{ PCI_VENDOR_ID_INTASHIELD, 0x401D,
5248+
PCI_ANY_ID, PCI_ANY_ID,
5249+
0, 0,
5250+
pbn_oxsemi_1_15625000 },
52375251
/*
52385252
* Brainboxes PX-803/PX-857
52395253
*/
52405254
{ PCI_VENDOR_ID_INTASHIELD, 0x4009,
52415255
PCI_ANY_ID, PCI_ANY_ID,
52425256
0, 0,
52435257
pbn_b0_2_115200 },
5258+
{ PCI_VENDOR_ID_INTASHIELD, 0x4018,
5259+
PCI_ANY_ID, PCI_ANY_ID,
5260+
0, 0,
5261+
pbn_oxsemi_2_15625000 },
52445262
{ PCI_VENDOR_ID_INTASHIELD, 0x401E,
52455263
PCI_ANY_ID, PCI_ANY_ID,
52465264
0, 0,
52475265
pbn_oxsemi_2_15625000 },
5266+
/*
5267+
* Brainboxes PX-820
5268+
*/
5269+
{ PCI_VENDOR_ID_INTASHIELD, 0x4002,
5270+
PCI_ANY_ID, PCI_ANY_ID,
5271+
0, 0,
5272+
pbn_b0_4_115200 },
5273+
{ PCI_VENDOR_ID_INTASHIELD, 0x4013,
5274+
PCI_ANY_ID, PCI_ANY_ID,
5275+
0, 0,
5276+
pbn_oxsemi_4_15625000 },
52485277
/*
52495278
* Brainboxes PX-846
52505279
*/

0 commit comments

Comments
 (0)