xref: /dragonfly/sys/bus/pci/pcivar.h (revision f9602a12)
1 /*-
2  * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice unmodified, this list of conditions, and the following
10  *    disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/dev/pci/pcivar.h,v 1.80.2.1.4.1 2009/04/15 03:14:26 kensmith Exp $
27  */
28 
29 #ifndef _PCIVAR_H_
30 #define	_PCIVAR_H_
31 
32 #ifndef _SYS_QUEUE_H_
33 #include <sys/queue.h>
34 #endif
35 
36 /* some PCI bus constants */
37 
38 #define	PCI_DOMAINMAX	65535	/* highest supported domain number */
39 #define	PCI_BUSMAX	255	/* highest supported bus number */
40 #define	PCI_SLOTMAX	31	/* highest supported slot number */
41 #define	PCI_FUNCMAX	7	/* highest supported function number */
42 #define	PCI_REGMAX	255	/* highest supported config register addr. */
43 
44 #define	PCI_MAXMAPS_0	6	/* max. no. of memory/port maps */
45 #define	PCI_MAXMAPS_1	2	/* max. no. of maps for PCI to PCI bridge */
46 #define	PCI_MAXMAPS_2	1	/* max. no. of maps for CardBus bridge */
47 
48 typedef uint64_t pci_addr_t;
49 
50 /* Interesting values for PCI power management */
51 struct pcicfg_pp {
52     uint16_t	pp_cap;		/* PCI power management capabilities */
53     uint8_t	pp_status;	/* config space address of PCI power status reg */
54     uint8_t	pp_pmcsr;	/* config space address of PMCSR reg */
55     uint8_t	pp_data;	/* config space address of PCI power data reg */
56 };
57 
58 struct vpd_readonly {
59     char	keyword[2];
60     char	*value;
61 };
62 
63 struct vpd_write {
64     char	keyword[2];
65     char	*value;
66     int 	start;
67     int 	len;
68 };
69 
70 struct pcicfg_vpd {
71     uint8_t	vpd_reg;	/* base register, + 2 for addr, + 4 data */
72     char	vpd_cached;
73     char	*vpd_ident;	/* string identifier */
74     int 	vpd_rocnt;
75     struct vpd_readonly *vpd_ros;
76     int 	vpd_wcnt;
77     struct vpd_write *vpd_w;
78 };
79 
80 /* Interesting values for PCI MSI */
81 struct pcicfg_msi {
82     uint16_t	msi_ctrl;	/* Message Control */
83     uint8_t	msi_location;	/* Offset of MSI capability registers. */
84     uint8_t	msi_msgnum;	/* Number of messages */
85     int		msi_alloc;	/* Number of allocated messages. */
86     uint64_t	msi_addr;	/* Contents of address register. */
87     uint16_t	msi_data;	/* Contents of data register. */
88     u_int	msi_handlers;
89 };
90 
91 /* Interesting values for PCI MSI-X */
92 struct msix_vector {
93     TAILQ_ENTRY(msix_vector) mv_link;
94     uint64_t	mv_address;	/* Contents of address register. */
95     uint32_t	mv_data;	/* Contents of data register. */
96     int		mv_rid;
97 };
98 TAILQ_HEAD(msix_vectorlist, msix_vector);
99 
100 struct pcicfg_msix {
101     uint16_t	msix_ctrl;	/* Message Control */
102     uint16_t	msix_msgnum;	/* Number of messages */
103     uint8_t	msix_location;	/* Offset of MSI-X capability registers. */
104     uint8_t	msix_table_bar;	/* BAR containing vector table. */
105     uint8_t	msix_pba_bar;	/* BAR containing PBA. */
106     uint32_t	msix_table_offset;
107     uint32_t	msix_pba_offset;
108     int		msix_alloc;	/* Number of allocated vectors. */
109     struct resource *msix_table_res;	/* Resource containing vector table. */
110     struct resource *msix_pba_res;	/* Resource containing PBA. */
111     struct msix_vectorlist msix_vectors;
112 };
113 
114 /* Interesting values for HyperTransport */
115 struct pcicfg_ht {
116     uint8_t	ht_slave;	/* Non-zero if device is an HT slave. */
117     uint8_t	ht_msimap;	/* Offset of MSI mapping cap registers. */
118     uint16_t	ht_msictrl;	/* MSI mapping control */
119     uint64_t	ht_msiaddr;	/* MSI mapping base address */
120 };
121 
122 /* Interesting values for PCI Express capability */
123 struct pcicfg_expr {
124     uint8_t	expr_ptr;	/* capability ptr */
125     uint16_t	expr_cap;	/* capabilities */
126     uint32_t	expr_slotcap;	/* slot capabilities */
127 };
128 
129 /* Interesting values for PCI-X */
130 struct pcicfg_pcix {
131     uint8_t	pcix_ptr;
132 };
133 
134 /* config header information common to all header types */
135 typedef struct pcicfg {
136     struct device *dev;		/* device which owns this */
137 
138     uint32_t	bar[PCI_MAXMAPS_0]; /* BARs */
139     uint32_t	bios;		/* BIOS mapping */
140 
141     uint16_t	subvendor;	/* card vendor ID */
142     uint16_t	subdevice;	/* card device ID, assigned by card vendor */
143     uint16_t	vendor;		/* chip vendor ID */
144     uint16_t	device;		/* chip device ID, assigned by chip vendor */
145 
146     uint16_t	cmdreg;		/* disable/enable chip and PCI options */
147     uint16_t	statreg;	/* supported PCI features and error state */
148 
149     uint8_t	baseclass;	/* chip PCI class */
150     uint8_t	subclass;	/* chip PCI subclass */
151     uint8_t	progif;		/* chip PCI programming interface */
152     uint8_t	revid;		/* chip revision ID */
153 
154     uint8_t	hdrtype;	/* chip config header type */
155     uint8_t	cachelnsz;	/* cache line size in 4byte units */
156     uint8_t	intpin;		/* PCI interrupt pin */
157     uint8_t	intline;	/* interrupt line (IRQ for PC arch) */
158 
159     uint8_t	mingnt;		/* min. useful bus grant time in 250ns units */
160     uint8_t	maxlat;		/* max. tolerated bus grant latency in 250ns */
161     uint8_t	lattimer;	/* latency timer in units of 30ns bus cycles */
162 
163     uint8_t	mfdev;		/* multi-function device (from hdrtype reg) */
164     uint8_t	nummaps;	/* actual number of PCI maps used */
165 
166     uint32_t	domain;		/* PCI domain */
167     uint8_t	bus;		/* config space bus address */
168     uint8_t	slot;		/* config space slot address */
169     uint8_t	func;		/* config space function number */
170 
171 #ifdef COMPAT_OLDPCI
172     uint8_t	secondarybus;	/* bus on secondary side of bridge, if any */
173 #else
174     uint8_t	dummy;
175 #endif
176 
177     struct pcicfg_pp pp;	/* pci power management */
178     struct pcicfg_vpd vpd;	/* pci vital product data */
179     struct pcicfg_msi msi;	/* pci msi */
180     struct pcicfg_msix msix;	/* pci msi-x */
181     struct pcicfg_ht ht;	/* HyperTransport */
182     struct pcicfg_expr expr;	/* PCI Express */
183     struct pcicfg_pcix pcix;	/* PCI-X */
184 } pcicfgregs;
185 
186 /* additional type 1 device config header information (PCI to PCI bridge) */
187 
188 #define	PCI_PPBMEMBASE(h,l)  ((((pci_addr_t)(h) << 32) + ((l)<<16)) & ~0xfffff)
189 #define	PCI_PPBMEMLIMIT(h,l) ((((pci_addr_t)(h) << 32) + ((l)<<16)) | 0xfffff)
190 #define	PCI_PPBIOBASE(h,l)   ((((h)<<16) + ((l)<<8)) & ~0xfff)
191 #define	PCI_PPBIOLIMIT(h,l)  ((((h)<<16) + ((l)<<8)) | 0xfff)
192 
193 typedef struct {
194     pci_addr_t	pmembase;	/* base address of prefetchable memory */
195     pci_addr_t	pmemlimit;	/* topmost address of prefetchable memory */
196     uint32_t	membase;	/* base address of memory window */
197     uint32_t	memlimit;	/* topmost address of memory window */
198     uint32_t	iobase;		/* base address of port window */
199     uint32_t	iolimit;	/* topmost address of port window */
200     uint16_t	secstat;	/* secondary bus status register */
201     uint16_t	bridgectl;	/* bridge control register */
202     uint8_t	seclat;		/* CardBus latency timer */
203 } pcih1cfgregs;
204 
205 /* additional type 2 device config header information (CardBus bridge) */
206 
207 typedef struct {
208     uint32_t	membase0;	/* base address of memory window */
209     uint32_t	memlimit0;	/* topmost address of memory window */
210     uint32_t	membase1;	/* base address of memory window */
211     uint32_t	memlimit1;	/* topmost address of memory window */
212     uint32_t	iobase0;	/* base address of port window */
213     uint32_t	iolimit0;	/* topmost address of port window */
214     uint32_t	iobase1;	/* base address of port window */
215     uint32_t	iolimit1;	/* topmost address of port window */
216     uint32_t	pccardif;	/* PC Card 16bit IF legacy more base addr. */
217     uint16_t	secstat;	/* secondary bus status register */
218     uint16_t	bridgectl;	/* bridge control register */
219     uint8_t	seclat;		/* CardBus latency timer */
220 } pcih2cfgregs;
221 
222 extern uint32_t pci_numdevs;
223 
224 /* Only if the prerequisites are present */
225 #if defined(_SYS_BUS_H_) && defined(_SYS_PCIIO_H_)
226 struct pci_devinfo {
227         STAILQ_ENTRY(pci_devinfo) pci_links;
228 	struct resource_list resources;
229 	pcicfgregs		cfg;
230 	struct pci_conf		conf;
231 };
232 #endif
233 
234 #ifdef _SYS_BUS_H_
235 
236 #include "pci_if.h"
237 
238 /*
239  * Define pci-specific resource flags for accessing memory via dense
240  * or bwx memory spaces.
241  */
242 #define	PCI_RF_DENSE	0x10000
243 #define	PCI_RF_BWX	0x20000
244 
245 enum pci_device_ivars {
246     PCI_IVAR_SUBVENDOR,
247     PCI_IVAR_SUBDEVICE,
248     PCI_IVAR_VENDOR,
249     PCI_IVAR_DEVICE,
250     PCI_IVAR_DEVID,
251     PCI_IVAR_CLASS,
252     PCI_IVAR_SUBCLASS,
253     PCI_IVAR_PROGIF,
254     PCI_IVAR_REVID,
255     PCI_IVAR_INTPIN,
256     PCI_IVAR_IRQ,
257     PCI_IVAR_DOMAIN,
258     PCI_IVAR_BUS,
259     PCI_IVAR_SLOT,
260     PCI_IVAR_FUNCTION,
261     PCI_IVAR_ETHADDR,
262     PCI_IVAR_CMDREG,
263     PCI_IVAR_CACHELNSZ,
264     PCI_IVAR_MINGNT,
265     PCI_IVAR_MAXLAT,
266     PCI_IVAR_LATTIMER,
267     PCI_IVAR_PCIXCAP_PTR,
268     PCI_IVAR_PCIECAP_PTR,
269     PCI_IVAR_VPDCAP_PTR
270 };
271 
272 /*
273  * Simplified accessors for pci devices
274  */
275 #define	PCI_ACCESSOR(var, ivar, type)					\
276 	__BUS_ACCESSOR(pci, var, PCI, ivar, type)
277 
278 PCI_ACCESSOR(subvendor,		SUBVENDOR,	uint16_t)
279 PCI_ACCESSOR(subdevice,		SUBDEVICE,	uint16_t)
280 PCI_ACCESSOR(vendor,		VENDOR,		uint16_t)
281 PCI_ACCESSOR(device,		DEVICE,		uint16_t)
282 PCI_ACCESSOR(devid,		DEVID,		uint32_t)
283 PCI_ACCESSOR(class,		CLASS,		uint8_t)
284 PCI_ACCESSOR(subclass,		SUBCLASS,	uint8_t)
285 PCI_ACCESSOR(progif,		PROGIF,		uint8_t)
286 PCI_ACCESSOR(revid,		REVID,		uint8_t)
287 PCI_ACCESSOR(intpin,		INTPIN,		uint8_t)
288 PCI_ACCESSOR(irq,		IRQ,		uint8_t)
289 PCI_ACCESSOR(domain,		DOMAIN,		uint32_t)
290 PCI_ACCESSOR(bus,		BUS,		uint8_t)
291 PCI_ACCESSOR(slot,		SLOT,		uint8_t)
292 PCI_ACCESSOR(function,		FUNCTION,	uint8_t)
293 PCI_ACCESSOR(ether,		ETHADDR,	uint8_t *)
294 PCI_ACCESSOR(cmdreg,		CMDREG,		uint8_t)
295 PCI_ACCESSOR(cachelnsz,		CACHELNSZ,	uint8_t)
296 PCI_ACCESSOR(mingnt,		MINGNT,		uint8_t)
297 PCI_ACCESSOR(maxlat,		MAXLAT,		uint8_t)
298 PCI_ACCESSOR(lattimer,		LATTIMER,	uint8_t)
299 PCI_ACCESSOR(pcixcap_ptr,	PCIXCAP_PTR,	uint8_t)
300 PCI_ACCESSOR(pciecap_ptr,	PCIECAP_PTR,	uint8_t)
301 PCI_ACCESSOR(vpdcap_ptr,	VPDCAP_PTR,	uint8_t)
302 
303 #undef PCI_ACCESSOR
304 
305 /*
306  * Operations on configuration space.
307  */
308 static __inline uint32_t
309 pci_read_config(device_t dev, int reg, int width)
310 {
311     return PCI_READ_CONFIG(device_get_parent(dev), dev, reg, width);
312 }
313 
314 static __inline void
315 pci_write_config(device_t dev, int reg, uint32_t val, int width)
316 {
317     PCI_WRITE_CONFIG(device_get_parent(dev), dev, reg, val, width);
318 }
319 
320 /*
321  * Ivars for pci bridges.
322  */
323 
324 /*typedef enum pci_device_ivars pcib_device_ivars;*/
325 enum pcib_device_ivars {
326 	PCIB_IVAR_DOMAIN,
327 	PCIB_IVAR_BUS
328 };
329 
330 #define	PCIB_ACCESSOR(var, ivar, type)					 \
331     __BUS_ACCESSOR(pcib, var, PCIB, ivar, type)
332 
333 PCIB_ACCESSOR(domain,		DOMAIN,		uint32_t)
334 PCIB_ACCESSOR(bus,		BUS,		uint32_t)
335 
336 #undef PCIB_ACCESSOR
337 
338 /*
339  * PCI interrupt validation.  Invalid interrupt values such as 0 or 128
340  * should be mapped out in the MD pcireadconf code and not here, since
341  * the only MI invalid IRQ is 255.
342  */
343 #define	PCI_INVALID_IRQ		255
344 #define	PCI_INTERRUPT_VALID(x)	((x) != PCI_INVALID_IRQ)
345 
346 /*
347  * Convenience functions.
348  *
349  * These should be used in preference to manually manipulating
350  * configuration space.
351  */
352 static __inline int
353 pci_enable_busmaster(device_t dev)
354 {
355     return(PCI_ENABLE_BUSMASTER(device_get_parent(dev), dev));
356 }
357 
358 static __inline int
359 pci_disable_busmaster(device_t dev)
360 {
361     return(PCI_DISABLE_BUSMASTER(device_get_parent(dev), dev));
362 }
363 
364 static __inline int
365 pci_enable_io(device_t dev, int space)
366 {
367     return(PCI_ENABLE_IO(device_get_parent(dev), dev, space));
368 }
369 
370 static __inline int
371 pci_disable_io(device_t dev, int space)
372 {
373     return(PCI_DISABLE_IO(device_get_parent(dev), dev, space));
374 }
375 
376 static __inline int
377 pci_get_vpd_ident(device_t dev, const char **identptr)
378 {
379     return(PCI_GET_VPD_IDENT(device_get_parent(dev), dev, identptr));
380 }
381 
382 static __inline int
383 pci_get_vpd_readonly(device_t dev, const char *kw, const char **identptr)
384 {
385     return(PCI_GET_VPD_READONLY(device_get_parent(dev), dev, kw, identptr));
386 }
387 
388 /*
389  * Check if the address range falls within the VGA defined address range(s)
390  */
391 static __inline int
392 pci_is_vga_ioport_range(u_long start, u_long end)
393 {
394 
395 	return (((start >= 0x3b0 && end <= 0x3bb) ||
396 	    (start >= 0x3c0 && end <= 0x3df)) ? 1 : 0);
397 }
398 
399 static __inline int
400 pci_is_vga_memory_range(u_long start, u_long end)
401 {
402 
403 	return ((start >= 0xa0000 && end <= 0xbffff) ? 1 : 0);
404 }
405 
406 int pcie_slot_implemented(device_t);
407 void pcie_set_max_readrq(device_t, uint16_t);
408 uint16_t pcie_get_max_readrq(device_t);
409 
410 /*
411  * PCI power states are as defined by ACPI:
412  *
413  * D0	State in which device is on and running.  It is receiving full
414  *	power from the system and delivering full functionality to the user.
415  * D1	Class-specific low-power state in which device context may or may not
416  *	be lost.  Buses in D1 cannot do anything to the bus that would force
417  *	devices on that bus to lose context.
418  * D2	Class-specific low-power state in which device context may or may
419  *	not be lost.  Attains greater power savings than D1.  Buses in D2
420  *	can cause devices on that bus to lose some context.  Devices in D2
421  *	must be prepared for the bus to be in D2 or higher.
422  * D3	State in which the device is off and not running.  Device context is
423  *	lost.  Power can be removed from the device.
424  */
425 #define	PCI_POWERSTATE_D0	0
426 #define	PCI_POWERSTATE_D1	1
427 #define	PCI_POWERSTATE_D2	2
428 #define	PCI_POWERSTATE_D3	3
429 #define	PCI_POWERSTATE_UNKNOWN	-1
430 
431 static __inline int
432 pci_set_powerstate(device_t dev, int state)
433 {
434     return PCI_SET_POWERSTATE(device_get_parent(dev), dev, state);
435 }
436 
437 static __inline int
438 pci_get_powerstate(device_t dev)
439 {
440     return PCI_GET_POWERSTATE(device_get_parent(dev), dev);
441 }
442 
443 static __inline int
444 pci_find_extcap(device_t dev, int capability, int *capreg)
445 {
446     return PCI_FIND_EXTCAP(device_get_parent(dev), dev, capability, capreg);
447 }
448 
449 static __inline int
450 pci_is_pcie(device_t dev)
451 {
452 	return (pci_get_pciecap_ptr(dev) != 0);
453 }
454 
455 static __inline int
456 pci_is_pcix(device_t dev)
457 {
458 	return (pci_get_pcixcap_ptr(dev) != 0);
459 }
460 
461 static __inline int
462 pci_alloc_msi(device_t dev, int *rid, int count, int cpuid)
463 {
464     return (PCI_ALLOC_MSI(device_get_parent(dev), dev, rid, count, cpuid));
465 }
466 
467 static __inline int
468 pci_release_msi(device_t dev)
469 {
470     return (PCI_RELEASE_MSI(device_get_parent(dev), dev));
471 }
472 
473 static __inline int
474 pci_alloc_msix_vector(device_t dev, u_int vector, int *rid, int cpuid)
475 {
476     return (PCI_ALLOC_MSIX_VECTOR(device_get_parent(dev), dev, vector, rid,
477         cpuid));
478 }
479 
480 static __inline int
481 pci_release_msix_vector(device_t dev, int rid)
482 {
483 	return PCI_RELEASE_MSIX_VECTOR(device_get_parent(dev), dev, rid);
484 }
485 
486 static __inline int
487 pci_msi_count(device_t dev)
488 {
489     return (PCI_MSI_COUNT(device_get_parent(dev), dev));
490 }
491 
492 static __inline int
493 pci_msix_count(device_t dev)
494 {
495     return (PCI_MSIX_COUNT(device_get_parent(dev), dev));
496 }
497 
498 device_t pci_find_bsf(uint8_t, uint8_t, uint8_t);
499 device_t pci_find_dbsf(uint32_t, uint8_t, uint8_t, uint8_t);
500 device_t pci_find_device(uint16_t, uint16_t);
501 device_t pci_find_class(uint8_t class, uint8_t subclass);
502 #if defined(_SYS_BUS_H_) && defined(_SYS_PCIIO_H_)
503 device_t pci_iterate_class(struct pci_devinfo **dinfop,
504 			uint8_t class, uint8_t subclass);
505 #endif
506 
507 /* Can be used by drivers to manage the MSI-X table. */
508 int	pci_pending_msix_vector(device_t dev, u_int index);
509 int	pci_setup_msix(device_t dev);
510 void	pci_teardown_msix(device_t dev);
511 void	pci_enable_msix(device_t dev);
512 void	pci_disable_msix(device_t dev);
513 
514 int	pci_msi_device_blacklisted(device_t dev);
515 
516 void	pci_ht_map_msi(device_t dev, uint64_t addr);
517 
518 void	pci_restore_state(device_t dev);
519 void	pci_save_state(device_t dev);
520 
521 /* Returns PCI_INTR_TYPE_ */
522 int	pci_alloc_1intr(device_t dev, int msi_enable, int *rid, u_int *flags);
523 
524 #define PCI_INTR_TYPE_LEGACY	0
525 #define PCI_INTR_TYPE_MSI	1
526 #define PCI_INTR_TYPE_MSIX	2	/* not yet */
527 
528 #endif	/* _SYS_BUS_H_ */
529 
530 /*
531  * device operations for control device, initialised in generic PCI code
532  */
533 extern struct dev_ops pci_ops;
534 
535 /*
536  * List of all PCI devices, generation count for the list.
537  */
538 STAILQ_HEAD(devlist, pci_devinfo);
539 
540 extern struct devlist	pci_devq;
541 extern uint32_t	pci_generation;
542 
543 /* for compatibility to FreeBSD-2.2 and 3.x versions of PCI code */
544 
545 #if defined(_KERNEL) && !defined(KLD_MODULE)
546 #include "opt_compat_oldpci.h"
547 #endif
548 
549 #ifdef COMPAT_OLDPCI
550 /* all this is going some day */
551 
552 typedef pcicfgregs *pcici_t;
553 typedef unsigned pcidi_t;
554 typedef void pci_inthand_t(void *arg);
555 
556 #define pci_max_burst_len (3)
557 
558 /* just copied from old PCI code for now ... */
559 
560 struct pci_device {
561     char*    pd_name;
562     const char*  (*pd_probe ) (pcici_t tag, pcidi_t type);
563     void   (*pd_attach) (pcici_t tag, int     unit);
564     u_long  *pd_count;
565     int    (*pd_shutdown) (int, int);
566 };
567 
568 typedef u_int pci_port_t;
569 
570 u_long pci_conf_read (pcici_t tag, u_long reg);
571 void pci_conf_write (pcici_t tag, u_long reg, u_long data);
572 int pci_map_port (pcici_t tag, u_long reg, pci_port_t* pa);
573 int pci_map_mem (pcici_t tag, u_long reg, vm_offset_t* va, vm_offset_t* pa);
574 int pci_map_int (pcici_t tag, pci_inthand_t *handler, void *arg);
575 int pci_map_int_right(pcici_t cfg, pci_inthand_t *handler, void *arg,
576 		      u_int flags);
577 int pci_unmap_int (pcici_t tag);
578 
579 void pci_cfgwrite (pcicfgregs *cfg, int reg, int data, int bytes);
580 
581 pcici_t pci_get_parent_from_tag(pcici_t tag);
582 int     pci_get_bus_from_tag(pcici_t tag);
583 
584 pcicfgregs *pci_devlist_get_parent(pcicfgregs *cfg);
585 
586 struct module;
587 int compat_pci_handler (struct module *, int, void *);
588 #define COMPAT_PCI_DRIVER(name, pcidata)				\
589 static moduledata_t name##_mod = {					\
590 	#name,								\
591 	compat_pci_handler,						\
592 	&pcidata							\
593 };									\
594 DECLARE_MODULE(name, name##_mod, SI_SUB_DRIVERS, SI_ORDER_ANY)
595 
596 #endif /* COMPAT_OLDPCI */
597 
598 #define	VGA_PCI_BIOS_SHADOW_ADDR	0xC0000
599 #define	VGA_PCI_BIOS_SHADOW_SIZE	131072
600 
601 int	vga_pci_is_boot_display(device_t dev);
602 void *	vga_pci_map_bios(device_t dev, size_t *size);
603 void	vga_pci_unmap_bios(device_t dev, void *bios);
604 
605 #endif /* _PCIVAR_H_ */
606