lkml.org 
[lkml]   [2019]   [Mar]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.0 151/238] serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 chip use the pci_pericom_setup()
    Date
    5.0-stable review patch.  If anyone has any objections, please let me know.

    ------------------

    From: Jay Dolan <jay.dolan@accesio.com>

    commit 78d3820b9bd39028727c6aab7297b63c093db343 upstream.

    The four port Pericom chips have the fourth port at the wrong address.
    Make use of quirk to fix it.

    Fixes: c8d192428f52 ("serial: 8250: added acces i/o products quad and octal serial cards")
    Cc: stable <stable@vger.kernel.org>
    Signed-off-by: Jay Dolan <jay.dolan@accesio.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

    ---
    drivers/tty/serial/8250/8250_pci.c | 105 +++++++++++++++++++++++++++++++++++++
    1 file changed, 105 insertions(+)

    --- a/drivers/tty/serial/8250/8250_pci.c
    +++ b/drivers/tty/serial/8250/8250_pci.c
    @@ -2027,6 +2027,111 @@ static struct pci_serial_quirk pci_seria
    .setup = pci_default_setup,
    .exit = pci_plx9050_exit,
    },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_PCIE_COM_4SDB,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_MPCIE_COM_4S,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_PCIE_COM232_4DB,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_MPCIE_COM232_4,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_PCIE_COM_4SMDB,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_MPCIE_COM_4SM,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_MPCIE_ICM422_4,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_MPCIE_ICM485_4,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_DEVICE_ID_ACCESIO_PCIE_ICM_4S,
    + .device = PCI_DEVICE_ID_ACCESIO_PCIE_ICM232_4,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_MPCIE_ICM232_4,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_PCIE_COM422_4,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_PCIE_COM485_4,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_PCIE_COM232_4,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_PCIE_COM_4SM,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    + {
    + .vendor = PCI_VENDOR_ID_ACCESIO,
    + .device = PCI_DEVICE_ID_ACCESIO_PCIE_ICM_4SM,
    + .subvendor = PCI_ANY_ID,
    + .subdevice = PCI_ANY_ID,
    + .setup = pci_pericom_setup,
    + },
    /*
    * SBS Technologies, Inc., PMC-OCTALPRO 232
    */

    \
     
     \ /
      Last update: 2019-03-22 13:39    [W:4.079 / U:0.236 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site