Skip to content

Commit eb7cfa7

Browse files
Cameron Williamsgregkh
authored andcommitted
tty: serial: 8250: Add Brainboxes XC devices
commit 5c7e2896481a177bbda41d7850f05a9f5a8aee2b upstream. These ExpressCard devices use the OxPCIE chip and can be used with this driver. Signed-off-by: Cameron Williams <[email protected]> Cc: stable <[email protected]> Link: https://lore.kernel.org/r/DB7PR02MB3802907A9360F27F6CD67AAFC4D62@DB7PR02MB3802.eurprd02.prod.outlook.com Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent ded9ea3 commit eb7cfa7

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2596,6 +2596,22 @@ static struct pci_serial_quirk pci_serial_quirks[] = {
25962596
.init = pci_oxsemi_tornado_init,
25972597
.setup = pci_oxsemi_tornado_setup,
25982598
},
2599+
{
2600+
.vendor = PCI_VENDOR_ID_INTASHIELD,
2601+
.device = 0x4026,
2602+
.subvendor = PCI_ANY_ID,
2603+
.subdevice = PCI_ANY_ID,
2604+
.init = pci_oxsemi_tornado_init,
2605+
.setup = pci_oxsemi_tornado_setup,
2606+
},
2607+
{
2608+
.vendor = PCI_VENDOR_ID_INTASHIELD,
2609+
.device = 0x4021,
2610+
.subvendor = PCI_ANY_ID,
2611+
.subdevice = PCI_ANY_ID,
2612+
.init = pci_oxsemi_tornado_init,
2613+
.setup = pci_oxsemi_tornado_setup,
2614+
},
25992615
{
26002616
.vendor = PCI_VENDOR_ID_INTEL,
26012617
.device = 0x8811,
@@ -5489,6 +5505,20 @@ static const struct pci_device_id serial_pci_tbl[] = {
54895505
PCI_ANY_ID, PCI_ANY_ID,
54905506
0, 0,
54915507
pbn_oxsemi_1_15625000 },
5508+
/*
5509+
* Brainboxes XC-235
5510+
*/
5511+
{ PCI_VENDOR_ID_INTASHIELD, 0x4026,
5512+
PCI_ANY_ID, PCI_ANY_ID,
5513+
0, 0,
5514+
pbn_oxsemi_1_15625000 },
5515+
/*
5516+
* Brainboxes XC-475
5517+
*/
5518+
{ PCI_VENDOR_ID_INTASHIELD, 0x4021,
5519+
PCI_ANY_ID, PCI_ANY_ID,
5520+
0, 0,
5521+
pbn_oxsemi_1_15625000 },
54925522

54935523
/*
54945524
* Perle PCI-RAS cards

0 commit comments

Comments
 (0)