19 #define PCI_VENDOR_ID 0x00 22 #define PCI_DEVICE_ID 0x02 25 #define PCI_COMMAND 0x04 26 #define PCI_COMMAND_IO 0x0001 27 #define PCI_COMMAND_MEM 0x0002 28 #define PCI_COMMAND_MASTER 0x0004 29 #define PCI_COMMAND_INVALIDATE 0x0010 30 #define PCI_COMMAND_PARITY 0x0040 31 #define PCI_COMMAND_SERR 0x0100 32 #define PCI_COMMAND_INTX_DISABLE 0x0400 35 #define PCI_STATUS 0x06 36 #define PCI_STATUS_CAP_LIST 0x0010 37 #define PCI_STATUS_PARITY 0x0100 38 #define PCI_STATUS_REC_TARGET_ABORT 0x1000 39 #define PCI_STATUS_REC_MASTER_ABORT 0x2000 40 #define PCI_STATUS_SIG_SYSTEM_ERROR 0x4000 41 #define PCI_STATUS_DETECTED_PARITY 0x8000 44 #define PCI_REVISION 0x08 47 #define PCI_CACHE_LINE_SIZE 0x0c 50 #define PCI_LATENCY_TIMER 0x0d 53 #define PCI_HEADER_TYPE 0x0e 54 #define PCI_HEADER_TYPE_NORMAL 0x00 55 #define PCI_HEADER_TYPE_BRIDGE 0x01 56 #define PCI_HEADER_TYPE_CARDBUS 0x02 57 #define PCI_HEADER_TYPE_MASK 0x7f 58 #define PCI_HEADER_TYPE_MULTI 0x80 61 #define PCI_BASE_ADDRESS(n) ( 0x10 + ( 4 * (n) ) ) 62 #define PCI_BASE_ADDRESS_0 PCI_BASE_ADDRESS ( 0 ) 63 #define PCI_BASE_ADDRESS_1 PCI_BASE_ADDRESS ( 1 ) 64 #define PCI_BASE_ADDRESS_2 PCI_BASE_ADDRESS ( 2 ) 65 #define PCI_BASE_ADDRESS_3 PCI_BASE_ADDRESS ( 3 ) 66 #define PCI_BASE_ADDRESS_4 PCI_BASE_ADDRESS ( 4 ) 67 #define PCI_BASE_ADDRESS_5 PCI_BASE_ADDRESS ( 5 ) 68 #define PCI_BASE_ADDRESS_SPACE_IO 0x00000001UL 69 #define PCI_BASE_ADDRESS_IO_MASK 0x00000003UL 70 #define PCI_BASE_ADDRESS_MEM_TYPE_64 0x00000004UL 71 #define PCI_BASE_ADDRESS_MEM_TYPE_MASK 0x00000006UL 72 #define PCI_BASE_ADDRESS_MEM_MASK 0x0000000fUL 75 #define PCI_SUBSYSTEM_VENDOR_ID 0x2c 78 #define PCI_SUBSYSTEM_ID 0x2e 81 #define PCI_ROM_ADDRESS 0x30 84 #define PCI_CAPABILITY_LIST 0x34 87 #define PCI_CB_CAPABILITY_LIST 0x14 90 #define PCI_INTERRUPT_LINE 0x3c 93 #define PCI_CAP_ID 0x00 94 #define PCI_CAP_ID_PM 0x01 95 #define PCI_CAP_ID_VPD 0x03 96 #define PCI_CAP_ID_VNDR 0x09 97 #define PCI_CAP_ID_EXP 0x10 98 #define PCI_CAP_ID_MSIX 0x11 99 #define PCI_CAP_ID_EA 0x14 102 #define PCI_CAP_NEXT 0x01 105 #define PCI_PM_CTRL 0x04 106 #define PCI_PM_CTRL_STATE_MASK 0x0003 107 #define PCI_PM_CTRL_PME_ENABLE 0x0100 108 #define PCI_PM_CTRL_PME_STATUS 0x8000 111 #define PCI_EXP_DEVCTL 0x08 112 #define PCI_EXP_DEVCTL_FLR 0x8000 115 #define PCI_MSIX_CTRL 0x02 116 #define PCI_MSIX_CTRL_ENABLE 0x8000 117 #define PCI_MSIX_CTRL_MASK 0x4000 118 #define PCI_MSIX_CTRL_SIZE(x) ( (x) & 0x07ff ) 119 #define PCI_MSIX_DESC_TABLE 0x04 120 #define PCI_MSIX_DESC_PBA 0x08 121 #define PCI_MSIX_DESC_BIR(x) ( (x) & 0x00000007 ) 122 #define PCI_MSIX_DESC_OFFSET(x) ( (x) & 0xfffffff8 ) 125 #define PCI_ERR_UNCOR_STATUS 0x04 128 #define PCI_CLASS_NETWORK 0x02 131 #define PCI_CLASS_BRIDGE 0x06 132 #define PCI_CLASS_BRIDGE_PCI 0x04 135 #define PCI_CLASS_SERIAL 0x0c 136 #define PCI_CLASS_SERIAL_USB 0x03 137 #define PCI_CLASS_SERIAL_USB_UHCI 0x00 138 #define PCI_CLASS_SERIAL_USB_OHCI 0x10 139 #define PCI_CLASS_SERIAL_USB_EHCI 0x20 140 #define PCI_CLASS_SERIAL_USB_XHCI 0x30 143 #define PCI_PRIMARY 0x18 146 #define PCI_SECONDARY 0x19 149 #define PCI_SUBORDINATE 0x1a 152 #define PCI_MEM_BASE 0x20 153 #define PCI_MEM_LIMIT 0x22 154 #define PCI_MEM_MASK 0x000f 162 #define PCI_CLASS( base, sub, progif ) \ 163 ( ( ( (base) & 0xff ) << 16 ) | ( ( (sub) & 0xff ) << 8 ) | \ 164 ( ( (progif) & 0xff) << 0 ) ) 167 #define PCI_EXP_FLR_DELAY_MS 100 182 #define PCI_ANY_ID 0xffff 198 #define PCI_CLASS_ID( base, sub, progif ) { \ 199 .class = PCI_CLASS ( base, sub, progif ), \ 200 .mask = ( ( ( ( (base) == PCI_ANY_ID ) ? 0x00 : 0xff ) << 16 ) | \ 201 ( ( ( (sub) == PCI_ANY_ID ) ? 0x00 : 0xff ) << 8 ) | \ 202 ( ( ( (progif) == PCI_ANY_ID ) ? 0x00 : 0xff ) << 0 ) ), \ 270 #define PCI_DRIVERS __table ( struct pci_driver, "pci_drivers" ) 273 #define __pci_driver __table_entry ( PCI_DRIVERS, 01 ) 276 #define __pci_driver_fallback __table_entry ( PCI_DRIVERS, 02 ) 278 #define PCI_SEG( busdevfn ) ( ( (busdevfn) >> 16 ) & 0xffff ) 279 #define PCI_BUS( busdevfn ) ( ( (busdevfn) >> 8 ) & 0xff ) 280 #define PCI_SLOT( busdevfn ) ( ( (busdevfn) >> 3 ) & 0x1f ) 281 #define PCI_FUNC( busdevfn ) ( ( (busdevfn) >> 0 ) & 0x07 ) 282 #define PCI_FIRST_FUNC( busdevfn ) ( (busdevfn) & ~0x07 ) 283 #define PCI_LAST_FUNC( busdevfn ) ( (busdevfn) | 0x07 ) 285 #define PCI_BASE_CLASS( class ) ( (class) >> 16 ) 286 #define PCI_SUB_CLASS( class ) ( ( (class) >> 8 ) & 0xff ) 287 #define PCI_PROG_INTF( class ) ( (class) & 0xff ) 297 #define PCI_ID( _vendor, _device, _name, _description, _data ) { \ 301 .driver_data = _data \ 303 #define PCI_ROM( _vendor, _device, _name, _description, _data ) \ 304 PCI_ID( _vendor, _device, _name, _description, _data ) 307 #define PCI_FMT "%04x:%02x:%02x.%x" 310 #define PCI_ARGS( pci ) \ 311 PCI_SEG ( (pci)->busdevfn ), PCI_BUS ( (pci)->busdevfn ), \ 312 PCI_SLOT ( (pci)->busdevfn ), PCI_FUNC ( (pci)->busdevfn ) unsigned long membase
Memory base.
uint8_t irq
Interrupt number.
struct pci_class_id class
PCI class ID.
struct dma_device dma
DMA device.
struct pci_driver * driver
Driver for this device.
static unsigned int unsigned int reg
void(* remove)(struct pci_device *pci)
Remove device.
int pci_probe(struct pci_device *pci)
Probe a PCI device.
unsigned long ioaddr
I/O address.
unsigned int id_count
Number of entries in PCI ID table.
unsigned long driver_data
Arbitrary driver data.
struct pci_device_id * ids
PCI ID table.
static void pci_set_driver(struct pci_device *pci, struct pci_driver *driver, struct pci_device_id *id)
Set PCI driver.
int pci_find_driver(struct pci_device *pci)
Find driver for PCI device.
void pci_remove(struct pci_device *pci)
Remove a PCI device.
struct device dev
Generic device.
int pci_find_next_capability(struct pci_device *pci, int pos, int capability)
Look for another PCI capability.
static void pci_set_drvdata(struct pci_device *pci, void *priv)
Set PCI driver-private data.
uint16_t busdevfn
PCI bus:dev.fn address.
void * priv
Driver-private data.
uint16_t device
Device ID.
u16 capability
Capability flags.
const char * driver_name
Driver name.
uint8_t id
Request identifier.
uint8_t hdrtype
Header type.
int pci_find_next(struct pci_device *pci, uint32_t *busdevfn)
Find next device on PCI bus.
A PCI device ID list entry.
uint16_t vendor
Vendor ID.
void pci_reset(struct pci_device *pci, unsigned int exp)
Perform PCI Express function-level reset (FLR)
static void * pci_get_drvdata(struct pci_device *pci)
Get PCI driver-private data.
uint16_t vendor
PCI vendor ID.
uint32_t busdevfn
Segment, bus, device, and function (bus:dev.fn) number.
uint16_t device
PCI device ID.
static struct tlan_private * priv
int(* probe)(struct pci_device *pci)
Probe device.
struct pci_device_id * id
Driver device ID.
int pci_read_config(struct pci_device *pci)
Read PCI device configuration.
static void pci_init(struct pci_device *pci, unsigned int busdevfn)
Initialise PCI device.
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
unsigned long pci_bar_start(struct pci_device *pci, unsigned int reg)
Find the start of a PCI BAR.
int pci_find_capability(struct pci_device *pci, int capability)
Look for a PCI capability.
unsigned long pci_bar_size(struct pci_device *pci, unsigned int reg)
Find the size of a PCI BAR.
void adjust_pci_device(struct pci_device *pci)
Enable PCI device.