Skip to content

Commit 06c3423

Browse files
jiaqingz-intelgregkh
authored andcommitted
serial: 8250_pci: add support for ASIX AX99100
commit 0b32216557ce3b2a468d1282d99b428bf72ff532 upstream. Each of the 4 PCI functions on ASIX AX99100 PCIe to Multi I/O Controller can be configured as a single-port serial port controller. The subvendor id is 0x1000 when configured as serial port and MSI interrupts are supported. Signed-off-by: Jiaqing Zhao <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Tomita Moeko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 0264d6b commit 06c3423

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ static const struct pci_device_id pci_use_msi[] = {
6666
0xA000, 0x1000) },
6767
{ PCI_DEVICE_SUB(PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9922,
6868
0xA000, 0x1000) },
69+
{ PCI_DEVICE_SUB(PCI_VENDOR_ID_ASIX, PCI_DEVICE_ID_ASIX_AX99100,
70+
0xA000, 0x1000) },
6971
{ PCI_DEVICE_SUB(PCI_VENDOR_ID_HP_3PAR, PCI_DEVICE_ID_HPE_PCI_SERIAL,
7072
PCI_ANY_ID, PCI_ANY_ID) },
7173
{ }
@@ -5890,6 +5892,14 @@ static const struct pci_device_id serial_pci_tbl[] = {
58905892
{ PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865,
58915893
0xA000, 0x3004,
58925894
0, 0, pbn_b0_bt_4_115200 },
5895+
5896+
/*
5897+
* ASIX AX99100 PCIe to Multi I/O Controller
5898+
*/
5899+
{ PCI_VENDOR_ID_ASIX, PCI_DEVICE_ID_ASIX_AX99100,
5900+
0xA000, 0x1000,
5901+
0, 0, pbn_b0_1_115200 },
5902+
58935903
/* Intel CE4100 */
58945904
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_CE4100_UART,
58955905
PCI_ANY_ID, PCI_ANY_ID, 0, 0,

0 commit comments

Comments
 (0)