iPXE
pci.h
Go to the documentation of this file.
1#ifndef _IPXE_PCI_H
2#define _IPXE_PCI_H
3
4/** @file
5 *
6 * PCI bus
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11FILE_SECBOOT ( PERMITTED );
12
13#include <stdint.h>
14#include <ipxe/device.h>
15#include <ipxe/tables.h>
16#include <ipxe/dma.h>
17#include <ipxe/pci_io.h>
18
19/** PCI vendor ID */
20#define PCI_VENDOR_ID 0x00
21
22/** PCI device ID */
23#define PCI_DEVICE_ID 0x02
24
25/** PCI command */
26#define PCI_COMMAND 0x04
27#define PCI_COMMAND_IO 0x0001 /**< I/O space */
28#define PCI_COMMAND_MEM 0x0002 /**< Memory space */
29#define PCI_COMMAND_MASTER 0x0004 /**< Bus master */
30#define PCI_COMMAND_INVALIDATE 0x0010 /**< Mem. write & invalidate */
31#define PCI_COMMAND_PARITY 0x0040 /**< Parity error response */
32#define PCI_COMMAND_SERR 0x0100 /**< SERR# enable */
33#define PCI_COMMAND_INTX_DISABLE 0x0400 /**< Interrupt disable */
34
35/** PCI status */
36#define PCI_STATUS 0x06
37#define PCI_STATUS_CAP_LIST 0x0010 /**< Capabilities list */
38#define PCI_STATUS_PARITY 0x0100 /**< Master data parity error */
39#define PCI_STATUS_REC_TARGET_ABORT 0x1000 /**< Received target abort */
40#define PCI_STATUS_REC_MASTER_ABORT 0x2000 /**< Received master abort */
41#define PCI_STATUS_SIG_SYSTEM_ERROR 0x4000 /**< Signalled system error */
42#define PCI_STATUS_DETECTED_PARITY 0x8000 /**< Detected parity error */
43
44/** PCI revision */
45#define PCI_REVISION 0x08
46
47/** PCI cache line size */
48#define PCI_CACHE_LINE_SIZE 0x0c
49
50/** PCI latency timer */
51#define PCI_LATENCY_TIMER 0x0d
52
53/** PCI header type */
54#define PCI_HEADER_TYPE 0x0e
55#define PCI_HEADER_TYPE_NORMAL 0x00 /**< Normal header */
56#define PCI_HEADER_TYPE_BRIDGE 0x01 /**< PCI-to-PCI bridge header */
57#define PCI_HEADER_TYPE_CARDBUS 0x02 /**< CardBus header */
58#define PCI_HEADER_TYPE_MASK 0x7f /**< Header type mask */
59#define PCI_HEADER_TYPE_MULTI 0x80 /**< Multi-function device */
60
61/** PCI base address registers */
62#define PCI_BASE_ADDRESS(n) ( 0x10 + ( 4 * (n) ) )
63#define PCI_BASE_ADDRESS_0 PCI_BASE_ADDRESS ( 0 )
64#define PCI_BASE_ADDRESS_1 PCI_BASE_ADDRESS ( 1 )
65#define PCI_BASE_ADDRESS_2 PCI_BASE_ADDRESS ( 2 )
66#define PCI_BASE_ADDRESS_3 PCI_BASE_ADDRESS ( 3 )
67#define PCI_BASE_ADDRESS_4 PCI_BASE_ADDRESS ( 4 )
68#define PCI_BASE_ADDRESS_5 PCI_BASE_ADDRESS ( 5 )
69#define PCI_BASE_ADDRESS_SPACE_IO 0x00000001UL /**< I/O BAR */
70#define PCI_BASE_ADDRESS_IO_MASK 0x00000003UL /**< I/O BAR mask */
71#define PCI_BASE_ADDRESS_MEM_TYPE_64 0x00000004UL /**< 64-bit memory */
72#define PCI_BASE_ADDRESS_MEM_TYPE_MASK 0x00000006UL /**< Memory type mask */
73#define PCI_BASE_ADDRESS_MEM_MASK 0x0000000fUL /**< Memory BAR mask */
74
75/** PCI subsystem vendor ID */
76#define PCI_SUBSYSTEM_VENDOR_ID 0x2c
77
78/** PCI subsystem ID */
79#define PCI_SUBSYSTEM_ID 0x2e
80
81/** PCI expansion ROM base address */
82#define PCI_ROM_ADDRESS 0x30
83
84/** PCI capabilities pointer */
85#define PCI_CAPABILITY_LIST 0x34
86
87/** CardBus capabilities pointer */
88#define PCI_CB_CAPABILITY_LIST 0x14
89
90/** PCI interrupt line */
91#define PCI_INTERRUPT_LINE 0x3c
92
93/** Capability ID */
94#define PCI_CAP_ID 0x00
95#define PCI_CAP_ID_PM 0x01 /**< Power management */
96#define PCI_CAP_ID_VPD 0x03 /**< Vital product data */
97#define PCI_CAP_ID_VNDR 0x09 /**< Vendor-specific */
98#define PCI_CAP_ID_EXP 0x10 /**< PCI Express */
99#define PCI_CAP_ID_MSIX 0x11 /**< MSI-X */
100#define PCI_CAP_ID_EA 0x14 /**< Enhanced Allocation */
101
102/** Next capability */
103#define PCI_CAP_NEXT 0x01
104
105/** Capability length */
106#define PCI_CAP_LEN 0x02
107
108/** Power management control and status */
109#define PCI_PM_CTRL 0x04
110#define PCI_PM_CTRL_STATE_MASK 0x0003 /**< Current power state */
111#define PCI_PM_CTRL_PME_ENABLE 0x0100 /**< PME pin enable */
112#define PCI_PM_CTRL_PME_STATUS 0x8000 /**< PME pin status */
113
114/** PCI Express */
115#define PCI_EXP_DEVCTL 0x08
116#define PCI_EXP_DEVCTL_FLR 0x8000 /**< Function level reset */
117
118/** MSI-X interrupts */
119#define PCI_MSIX_CTRL 0x02
120#define PCI_MSIX_CTRL_ENABLE 0x8000 /**< Enable MSI-X */
121#define PCI_MSIX_CTRL_MASK 0x4000 /**< Mask all interrupts */
122#define PCI_MSIX_CTRL_SIZE(x) ( (x) & 0x07ff ) /**< Table size */
123#define PCI_MSIX_DESC_TABLE 0x04
124#define PCI_MSIX_DESC_PBA 0x08
125#define PCI_MSIX_DESC_BIR(x) ( (x) & 0x00000007 ) /**< BAR index */
126#define PCI_MSIX_DESC_OFFSET(x) ( (x) & 0xfffffff8 ) /**< BAR offset */
127
128/** Uncorrectable error status */
129#define PCI_ERR_UNCOR_STATUS 0x04
130
131/** Network controller */
132#define PCI_CLASS_NETWORK 0x02
133
134/** Bridge device */
135#define PCI_CLASS_BRIDGE 0x06
136#define PCI_CLASS_BRIDGE_PCI 0x04 /**< PCI-to-PCI bridge */
137
138/** Serial bus controller */
139#define PCI_CLASS_SERIAL 0x0c
140#define PCI_CLASS_SERIAL_USB 0x03 /**< USB controller */
141#define PCI_CLASS_SERIAL_USB_UHCI 0x00 /**< UHCI USB controller */
142#define PCI_CLASS_SERIAL_USB_OHCI 0x10 /**< OHCI USB controller */
143#define PCI_CLASS_SERIAL_USB_EHCI 0x20 /**< ECHI USB controller */
144#define PCI_CLASS_SERIAL_USB_XHCI 0x30 /**< xHCI USB controller */
145
146/** Primary bus number */
147#define PCI_PRIMARY 0x18
148
149/** Secondary bus number */
150#define PCI_SECONDARY 0x19
151
152/** Subordinate bus number */
153#define PCI_SUBORDINATE 0x1a
154
155/** Memory base and limit */
156#define PCI_MEM_BASE 0x20
157#define PCI_MEM_LIMIT 0x22
158#define PCI_MEM_MASK 0x000fUL
159#define PCI_PREFMEM_BASE 0x24
160#define PCI_PREFMEM_LIMIT 0x26
161#define PCI_PREFMEM_BASE_HI 0x28
162#define PCI_PREFMEM_LIMIT_HI 0x2c
163
164/** Construct PCI class
165 *
166 * @v base Base class (or PCI_ANY_ID)
167 * @v sub Subclass (or PCI_ANY_ID)
168 * @v progif Programming interface (or PCI_ANY_ID)
169 */
170#define PCI_CLASS( base, sub, progif ) \
171 ( ( ( (base) & 0xff ) << 16 ) | ( ( (sub) & 0xff ) << 8 ) | \
172 ( ( (progif) & 0xff) << 0 ) )
173
174/** PCI Express function level reset delay (in ms) */
175#define PCI_EXP_FLR_DELAY_MS 100
176
177/** A PCI device ID list entry */
179 /** Name */
180 const char *name;
181 /** PCI vendor ID */
183 /** PCI device ID */
185 /** Arbitrary driver data */
186 unsigned long driver_data;
187};
188
189/** Match-anything ID */
190#define PCI_ANY_ID 0xffff
191
192/** A PCI class ID */
194 /** Class */
195 uint32_t class;
196 /** Class mask */
198};
199
200/** Construct PCI class ID
201 *
202 * @v base Base class (or PCI_ANY_ID)
203 * @v sub Subclass (or PCI_ANY_ID)
204 * @v progif Programming interface (or PCI_ANY_ID)
205 */
206#define PCI_CLASS_ID( base, sub, progif ) { \
207 .class = PCI_CLASS ( base, sub, progif ), \
208 .mask = ( ( ( ( (base) == PCI_ANY_ID ) ? 0x00 : 0xff ) << 16 ) | \
209 ( ( ( (sub) == PCI_ANY_ID ) ? 0x00 : 0xff ) << 8 ) | \
210 ( ( ( (progif) == PCI_ANY_ID ) ? 0x00 : 0xff ) << 0 ) ), \
211 }
212
213/** A PCI device */
215 /** Generic device */
216 struct device dev;
217 /** DMA device */
219 /** Memory base
220 *
221 * This is the physical address of the first valid memory BAR.
222 */
223 unsigned long membase;
224 /**
225 * I/O address
226 *
227 * This is the physical address of the first valid I/O BAR.
228 */
229 unsigned long ioaddr;
230 /** Vendor ID */
232 /** Device ID */
234 /** Device class */
235 uint32_t class;
236 /** Interrupt number */
238 /** Header type */
240 /** Segment, bus, device, and function (bus:dev.fn) number */
242 /** Driver for this device */
244 /** Driver-private data
245 *
246 * Use pci_set_drvdata() and pci_get_drvdata() to access this
247 * field.
248 */
249 void *priv;
250 /** Driver device ID */
252};
253
254/** A PCI driver */
256 /** PCI ID table */
258 /** Number of entries in PCI ID table */
259 unsigned int id_count;
260 /** PCI class ID */
262 /**
263 * Probe device
264 *
265 * @v pci PCI device
266 * @ret rc Return status code
267 */
268 int ( * probe ) ( struct pci_device *pci );
269 /**
270 * Remove device
271 *
272 * @v pci PCI device
273 */
274 void ( * remove ) ( struct pci_device *pci );
275};
276
277/** PCI driver table */
278#define PCI_DRIVERS __table ( struct pci_driver, "pci_drivers" )
279
280/** Declare a PCI driver */
281#define __pci_driver __table_entry ( PCI_DRIVERS, 01 )
282
283/** Declare a fallback PCI driver */
284#define __pci_driver_fallback __table_entry ( PCI_DRIVERS, 02 )
285
286#define PCI_SEG( busdevfn ) ( ( (busdevfn) >> 16 ) & 0xffff )
287#define PCI_BUS( busdevfn ) ( ( (busdevfn) >> 8 ) & 0xff )
288#define PCI_SLOT( busdevfn ) ( ( (busdevfn) >> 3 ) & 0x1f )
289#define PCI_FUNC( busdevfn ) ( ( (busdevfn) >> 0 ) & 0x07 )
290#define PCI_FIRST_FUNC( busdevfn ) ( (busdevfn) & ~0x07 )
291#define PCI_LAST_FUNC( busdevfn ) ( (busdevfn) | 0x07 )
292
293#define PCI_BASE_CLASS( class ) ( (class) >> 16 )
294#define PCI_SUB_CLASS( class ) ( ( (class) >> 8 ) & 0xff )
295#define PCI_PROG_INTF( class ) ( (class) & 0xff )
296
297/*
298 * PCI_ROM is used to build up entries in a struct pci_id array. It
299 * is also parsed by parserom.pl to generate Makefile rules and files
300 * for rom-o-matic.
301 *
302 * PCI_ID can be used to generate entries without creating a
303 * corresponding ROM in the build process.
304 */
305#define PCI_ID( _vendor, _device, _name, _description, _data ) { \
306 .vendor = _vendor, \
307 .device = _device, \
308 .name = _name, \
309 .driver_data = _data \
310}
311#define PCI_ROM( _vendor, _device, _name, _description, _data ) \
312 PCI_ID( _vendor, _device, _name, _description, _data )
313
314/** PCI device debug message format */
315#define PCI_FMT "%04x:%02x:%02x.%x"
316
317/** PCI device debug message arguments */
318#define PCI_ARGS( pci ) \
319 PCI_SEG ( (pci)->busdevfn ), PCI_BUS ( (pci)->busdevfn ), \
320 PCI_SLOT ( (pci)->busdevfn ), PCI_FUNC ( (pci)->busdevfn )
321
322extern void adjust_pci_device ( struct pci_device *pci );
323extern int pci_bar_is_io ( struct pci_device *pci, unsigned int reg );
324extern unsigned long pci_bar_start ( struct pci_device *pci,
325 unsigned int reg );
326extern void pci_bar_set ( struct pci_device *pci, unsigned int reg,
327 unsigned long start );
328extern unsigned long pci_bar_size ( struct pci_device *pci, unsigned int reg );
329extern int pci_read_config ( struct pci_device *pci );
330extern int pci_find_next ( struct pci_device *pci, uint32_t *busdevfn );
331extern int pci_find_driver ( struct pci_device *pci );
332extern int pci_probe ( struct pci_device *pci );
333extern void pci_remove ( struct pci_device *pci );
334extern int pci_find_capability ( struct pci_device *pci, int capability );
335extern int pci_find_next_capability ( struct pci_device *pci,
336 int pos, int capability );
337extern void pci_reset ( struct pci_device *pci, unsigned int exp );
338
339/**
340 * Initialise PCI device
341 *
342 * @v pci PCI device
343 * @v busdevfn PCI bus:dev.fn address
344 */
345static inline void pci_init ( struct pci_device *pci, unsigned int busdevfn ) {
346 pci->busdevfn = busdevfn;
347}
348
349/**
350 * Set PCI driver
351 *
352 * @v pci PCI device
353 * @v driver PCI driver
354 * @v id PCI device ID
355 */
356static inline void pci_set_driver ( struct pci_device *pci,
357 struct pci_driver *driver,
358 struct pci_device_id *id ) {
359 pci->driver = driver;
360 pci->id = id;
361 pci->dev.driver_name = id->name;
362}
363
364/**
365 * Set PCI driver-private data
366 *
367 * @v pci PCI device
368 * @v priv Private data
369 */
370static inline void pci_set_drvdata ( struct pci_device *pci, void *priv ) {
371 pci->priv = priv;
372}
373
374/**
375 * Get PCI driver-private data
376 *
377 * @v pci PCI device
378 * @ret priv Private data
379 */
380static inline void * pci_get_drvdata ( struct pci_device *pci ) {
381 return pci->priv;
382}
383
384#endif /* _IPXE_PCI_H */
unsigned short uint16_t
Definition stdint.h:11
unsigned int uint32_t
Definition stdint.h:12
unsigned char uint8_t
Definition stdint.h:10
Device model.
uint8_t id
Request identifier.
Definition ena.h:1
uint16_t busdevfn
PCI bus:dev.fn address.
Definition ena.h:17
uint32_t start
Starting offset.
Definition netvsc.h:1
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:921
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:951
u16 capability
Capability flags.
Definition ieee80211.h:7
PCI I/O API.
DMA mappings.
static unsigned int unsigned int reg
Definition myson.h:162
void pci_reset(struct pci_device *pci, unsigned int exp)
Perform PCI Express function-level reset (FLR).
Definition pciextra.c:89
unsigned long pci_bar_size(struct pci_device *pci, unsigned int reg)
Get the size of a PCI BAR.
Definition pci.c:178
int pci_find_driver(struct pci_device *pci)
Find driver for PCI device.
Definition pci.c:400
int pci_find_next(struct pci_device *pci, uint32_t *busdevfn)
Find next device on PCI bus.
Definition pci.c:337
int pci_probe(struct pci_device *pci)
Probe a PCI device.
Definition pci.c:432
void pci_bar_set(struct pci_device *pci, unsigned int reg, unsigned long start)
Set the start of a PCI BAR.
Definition pci.c:129
static void pci_init(struct pci_device *pci, unsigned int busdevfn)
Initialise PCI device.
Definition pci.h:345
int pci_find_next_capability(struct pci_device *pci, int pos, int capability)
Look for another PCI capability.
Definition pciextra.c:76
int pci_bar_is_io(struct pci_device *pci, unsigned int reg)
Get PCI BAR type.
Definition pci.c:90
int pci_read_config(struct pci_device *pci)
Read PCI device configuration.
Definition pci.c:283
void pci_remove(struct pci_device *pci)
Remove a PCI device.
Definition pci.c:454
static void pci_set_drvdata(struct pci_device *pci, void *priv)
Set PCI driver-private data.
Definition pci.h:370
void adjust_pci_device(struct pci_device *pci)
Enable PCI device.
Definition pci.c:255
static void * pci_get_drvdata(struct pci_device *pci)
Get PCI driver-private data.
Definition pci.h:380
unsigned long pci_bar_start(struct pci_device *pci, unsigned int reg)
Find the start of a PCI BAR.
Definition pci.c:111
static void pci_set_driver(struct pci_device *pci, struct pci_driver *driver, struct pci_device_id *id)
Set PCI driver.
Definition pci.h:356
int pci_find_capability(struct pci_device *pci, int capability)
Look for a PCI capability.
Definition pciextra.c:39
const char * driver_name
Driver name.
Definition device.h:81
A DMA-capable device.
Definition dma.h:48
A PCI class ID.
Definition pci.h:193
uint32_t mask
Class mask.
Definition pci.h:197
A PCI device ID list entry.
Definition pci.h:178
unsigned long driver_data
Arbitrary driver data.
Definition pci.h:186
uint16_t vendor
PCI vendor ID.
Definition pci.h:182
const char * name
Name.
Definition pci.h:180
uint16_t device
PCI device ID.
Definition pci.h:184
A PCI device.
Definition pci.h:214
unsigned long ioaddr
I/O address.
Definition pci.h:229
uint32_t busdevfn
Segment, bus, device, and function (bus:dev.fn) number.
Definition pci.h:241
unsigned long membase
Memory base.
Definition pci.h:223
uint8_t hdrtype
Header type.
Definition pci.h:239
uint8_t irq
Interrupt number.
Definition pci.h:237
struct pci_driver * driver
Driver for this device.
Definition pci.h:243
struct device dev
Generic device.
Definition pci.h:216
struct pci_device_id * id
Driver device ID.
Definition pci.h:251
void * priv
Driver-private data.
Definition pci.h:249
uint16_t vendor
Vendor ID.
Definition pci.h:231
uint16_t device
Device ID.
Definition pci.h:233
struct dma_device dma
DMA device.
Definition pci.h:218
A PCI driver.
Definition pci.h:255
void(* remove)(struct pci_device *pci)
Remove device.
Definition pci.h:274
struct pci_class_id class
PCI class ID.
Definition pci.h:261
struct pci_device_id * ids
PCI ID table.
Definition pci.h:257
int(* probe)(struct pci_device *pci)
Probe device.
Definition pci.h:268
unsigned int id_count
Number of entries in PCI ID table.
Definition pci.h:259
Linker tables.
static struct tlan_private * priv
Definition tlan.c:225