Skip to content

Commit 27bd86d

Browse files
Cameron Williamsgregkh
authored andcommitted
tty: serial: 8250: Add Brainboxes XC devices
commit 5c7e289 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 54f9a8d commit 27bd86d

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
@@ -2687,6 +2687,22 @@ static struct pci_serial_quirk pci_serial_quirks[] = {
26872687
.init = pci_oxsemi_tornado_init,
26882688
.setup = pci_oxsemi_tornado_setup,
26892689
},
2690+
{
2691+
.vendor = PCI_VENDOR_ID_INTASHIELD,
2692+
.device = 0x4026,
2693+
.subvendor = PCI_ANY_ID,
2694+
.subdevice = PCI_ANY_ID,
2695+
.init = pci_oxsemi_tornado_init,
2696+
.setup = pci_oxsemi_tornado_setup,
2697+
},
2698+
{
2699+
.vendor = PCI_VENDOR_ID_INTASHIELD,
2700+
.device = 0x4021,
2701+
.subvendor = PCI_ANY_ID,
2702+
.subdevice = PCI_ANY_ID,
2703+
.init = pci_oxsemi_tornado_init,
2704+
.setup = pci_oxsemi_tornado_setup,
2705+
},
26902706
{
26912707
.vendor = PCI_VENDOR_ID_INTEL,
26922708
.device = 0x8811,
@@ -5575,6 +5591,20 @@ static const struct pci_device_id serial_pci_tbl[] = {
55755591
PCI_ANY_ID, PCI_ANY_ID,
55765592
0, 0,
55775593
pbn_oxsemi_1_15625000 },
5594+
/*
5595+
* Brainboxes XC-235
5596+
*/
5597+
{ PCI_VENDOR_ID_INTASHIELD, 0x4026,
5598+
PCI_ANY_ID, PCI_ANY_ID,
5599+
0, 0,
5600+
pbn_oxsemi_1_15625000 },
5601+
/*
5602+
* Brainboxes XC-475
5603+
*/
5604+
{ PCI_VENDOR_ID_INTASHIELD, 0x4021,
5605+
PCI_ANY_ID, PCI_ANY_ID,
5606+
0, 0,
5607+
pbn_oxsemi_1_15625000 },
55785608

55795609
/*
55805610
* Perle PCI-RAS cards

0 commit comments

Comments
 (0)