mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 01:40:53 +07:00
[PATCH] serial: support for new board
Add support for the CPCI-ASIO4 quad port CompactPCI UART board from electronic system design gmbh. Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> Cc: Russell King <rmk@arm.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
482120084d
commit
a9cccd3437
@ -943,6 +943,7 @@ enum pci_board_num_t {
|
||||
|
||||
pbn_b2_1_115200,
|
||||
pbn_b2_2_115200,
|
||||
pbn_b2_4_115200,
|
||||
pbn_b2_8_115200,
|
||||
|
||||
pbn_b2_1_460800,
|
||||
@ -1256,6 +1257,12 @@ static struct pciserial_board pci_boards[] __devinitdata = {
|
||||
.base_baud = 115200,
|
||||
.uart_offset = 8,
|
||||
},
|
||||
[pbn_b2_4_115200] = {
|
||||
.flags = FL_BASE2,
|
||||
.num_ports = 4,
|
||||
.base_baud = 115200,
|
||||
.uart_offset = 8,
|
||||
},
|
||||
[pbn_b2_8_115200] = {
|
||||
.flags = FL_BASE2,
|
||||
.num_ports = 8,
|
||||
@ -1997,6 +2004,10 @@ static struct pci_device_id serial_pci_tbl[] = {
|
||||
{ PCI_VENDOR_ID_PANACOM, PCI_DEVICE_ID_PANACOM_DUALMODEM,
|
||||
PCI_ANY_ID, PCI_ANY_ID, 0, 0,
|
||||
pbn_panacom2 },
|
||||
{ PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9030,
|
||||
PCI_VENDOR_ID_ESDGMBH,
|
||||
PCI_DEVICE_ID_ESDGMBH_CPCIASIO4, 0, 0,
|
||||
pbn_b2_4_115200 },
|
||||
{ PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
|
||||
PCI_SUBVENDOR_ID_CHASE_PCIFAST,
|
||||
PCI_SUBDEVICE_ID_CHASE_PCIFAST4, 0, 0,
|
||||
|
@ -1697,6 +1697,8 @@
|
||||
#define PCI_VENDOR_ID_ELECTRONICDESIGNGMBH 0x12f8
|
||||
#define PCI_DEVICE_ID_LML_33R10 0x8a02
|
||||
|
||||
#define PCI_VENDOR_ID_ESDGMBH 0x12fe
|
||||
#define PCI_DEVICE_ID_ESDGMBH_CPCIASIO4 0x0111
|
||||
|
||||
#define PCI_VENDOR_ID_SIIG 0x131f
|
||||
#define PCI_SUBVENDOR_ID_SIIG 0x131f
|
||||
|
Loading…
Reference in New Issue
Block a user