| * Definitions for PCI support. |
| #define FL_BASE_MASK 0x0007 |
| #define FL_GET_BASE(x) (x & FL_BASE_MASK) |
| /* Use successive BARs (PCI base address registers), |
| else use offset into some specified BAR */ |
| #define FL_BASE_BARS 0x0008 |
| /* do not assign an irq */ |
| /* Use the Base address register size to cap number of ports */ |
| #define FL_REGION_SZ_CAP 0x0100 |
| unsigned int uart_offset; |
| unsigned int first_offset; |
| pciserial_init_ports(struct pci_dev *dev, const struct pciserial_board *board); |
| void pciserial_remove_ports(struct serial_private *priv); |
| void pciserial_suspend_ports(struct serial_private *priv); |
| void pciserial_resume_ports(struct serial_private *priv); |