xref: /freebsd/sys/dev/pci/pcivar.h (revision 77b7cdf1999ee965ad494fddd184b18f532ac91a)
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$
27  *
28  */
29 
30 #ifndef _PCIVAR_H_
31 #define _PCIVAR_H_
32 
33 #include <sys/queue.h>
34 
35 /* some PCI bus constants */
36 
37 #define PCI_BUSMAX	255	/* highest supported bus number */
38 #define PCI_SLOTMAX	31	/* highest supported slot number */
39 #define PCI_FUNCMAX	7	/* highest supported function number */
40 #define PCI_REGMAX	255	/* highest supported config register addr. */
41 
42 #define PCI_MAXMAPS_0	6	/* max. no. of memory/port maps */
43 #define PCI_MAXMAPS_1	2	/* max. no. of maps for PCI to PCI bridge */
44 #define PCI_MAXMAPS_2	1	/* max. no. of maps for CardBus bridge */
45 
46 /* pci_addr_t covers this system's PCI bus address space: 32 or 64 bit */
47 
48 #ifdef PCI_A64
49 typedef u_int64_t pci_addr_t;	/* u_int64_t for system with 64bit addresses */
50 #else
51 typedef u_int32_t pci_addr_t;	/* u_int64_t for system with 64bit addresses */
52 #endif
53 
54 /* config header information common to all header types */
55 
56 typedef struct pcicfg {
57     struct device *dev;		/* device which owns this */
58 
59     u_int16_t	subvendor;	/* card vendor ID */
60     u_int16_t	subdevice;	/* card device ID, assigned by card vendor */
61     u_int16_t	vendor;		/* chip vendor ID */
62     u_int16_t	device;		/* chip device ID, assigned by chip vendor */
63 
64     u_int16_t	cmdreg;		/* disable/enable chip and PCI options */
65     u_int16_t	statreg;	/* supported PCI features and error state */
66 
67     u_int8_t	baseclass;	/* chip PCI class */
68     u_int8_t	subclass;	/* chip PCI subclass */
69     u_int8_t	progif;		/* chip PCI programming interface */
70     u_int8_t	revid;		/* chip revision ID */
71 
72     u_int8_t	hdrtype;	/* chip config header type */
73     u_int8_t	cachelnsz;	/* cache line size in 4byte units */
74     u_int8_t	intpin;		/* PCI interrupt pin */
75     u_int8_t	intline;	/* interrupt line (IRQ for PC arch) */
76 
77     u_int8_t	mingnt;		/* min. useful bus grant time in 250ns units */
78     u_int8_t	maxlat;		/* max. tolerated bus grant latency in 250ns */
79     u_int8_t	lattimer;	/* latency timer in units of 30ns bus cycles */
80 
81     u_int8_t	mfdev;		/* multi-function device (from hdrtype reg) */
82     u_int8_t	nummaps;	/* actual number of PCI maps used */
83 
84     u_int8_t	bus;		/* config space bus address */
85     u_int8_t	slot;		/* config space slot address */
86     u_int8_t	func;		/* config space function number */
87 
88     u_int16_t	pp_cap;		/* PCI power management capabilities */
89     u_int8_t	pp_status;	/* config space address of PCI power status reg */
90     u_int8_t	pp_pmcsr;	/* config space address of PMCSR reg */
91     u_int8_t	pp_data;	/* config space address of PCI power data reg */
92 
93 } pcicfgregs;
94 
95 /* additional type 1 device config header information (PCI to PCI bridge) */
96 
97 #ifdef PCI_A64
98 #define PCI_PPBMEMBASE(h,l)  ((((pci_addr_t)(h) << 32) + ((l)<<16)) & ~0xfffff)
99 #define PCI_PPBMEMLIMIT(h,l) ((((pci_addr_t)(h) << 32) + ((l)<<16)) | 0xfffff)
100 #else
101 #define PCI_PPBMEMBASE(h,l)  (((l)<<16) & ~0xfffff)
102 #define PCI_PPBMEMLIMIT(h,l) (((l)<<16) | 0xfffff)
103 #endif /* PCI_A64 */
104 
105 #define PCI_PPBIOBASE(h,l)   ((((h)<<16) + ((l)<<8)) & ~0xfff)
106 #define PCI_PPBIOLIMIT(h,l)  ((((h)<<16) + ((l)<<8)) | 0xfff)
107 
108 typedef struct {
109     pci_addr_t	pmembase;	/* base address of prefetchable memory */
110     pci_addr_t	pmemlimit;	/* topmost address of prefetchable memory */
111     u_int32_t	membase;	/* base address of memory window */
112     u_int32_t	memlimit;	/* topmost address of memory window */
113     u_int32_t	iobase;		/* base address of port window */
114     u_int32_t	iolimit;	/* topmost address of port window */
115     u_int16_t	secstat;	/* secondary bus status register */
116     u_int16_t	bridgectl;	/* bridge control register */
117     u_int8_t	seclat;		/* CardBus latency timer */
118 } pcih1cfgregs;
119 
120 /* additional type 2 device config header information (CardBus bridge) */
121 
122 typedef struct {
123     u_int32_t	membase0;	/* base address of memory window */
124     u_int32_t	memlimit0;	/* topmost address of memory window */
125     u_int32_t	membase1;	/* base address of memory window */
126     u_int32_t	memlimit1;	/* topmost address of memory window */
127     u_int32_t	iobase0;	/* base address of port window */
128     u_int32_t	iolimit0;	/* topmost address of port window */
129     u_int32_t	iobase1;	/* base address of port window */
130     u_int32_t	iolimit1;	/* topmost address of port window */
131     u_int32_t	pccardif;	/* PC Card 16bit IF legacy more base addr. */
132     u_int16_t	secstat;	/* secondary bus status register */
133     u_int16_t	bridgectl;	/* bridge control register */
134     u_int8_t	seclat;		/* CardBus latency timer */
135 } pcih2cfgregs;
136 
137 extern u_int32_t pci_numdevs;
138 
139 /* Only if the prerequisites are present */
140 #if defined(_SYS_BUS_H_) && defined(_SYS_PCIIO_H_)
141 struct pci_devinfo {
142         STAILQ_ENTRY(pci_devinfo) pci_links;
143 	struct resource_list resources;
144 	pcicfgregs		cfg;
145 	struct pci_conf		conf;
146 };
147 #endif
148 
149 #ifdef __alpha__
150 vm_offset_t pci_cvt_to_dense (vm_offset_t);
151 vm_offset_t pci_cvt_to_bwx (vm_offset_t);
152 #endif /* __alpha__ */
153 
154 #ifdef _SYS_BUS_H_
155 
156 #include "pci_if.h"
157 
158 /*
159  * Define pci-specific resource flags for accessing memory via dense
160  * or bwx memory spaces. These flags are ignored on i386.
161  */
162 #define PCI_RF_DENSE	0x10000
163 #define PCI_RF_BWX	0x20000
164 
165 enum pci_device_ivars {
166     PCI_IVAR_SUBVENDOR,
167     PCI_IVAR_SUBDEVICE,
168     PCI_IVAR_VENDOR,
169     PCI_IVAR_DEVICE,
170     PCI_IVAR_DEVID,
171     PCI_IVAR_CLASS,
172     PCI_IVAR_SUBCLASS,
173     PCI_IVAR_PROGIF,
174     PCI_IVAR_REVID,
175     PCI_IVAR_INTPIN,
176     PCI_IVAR_IRQ,
177     PCI_IVAR_BUS,
178     PCI_IVAR_SLOT,
179     PCI_IVAR_FUNCTION,
180     PCI_IVAR_ETHADDR,
181 };
182 
183 /*
184  * Simplified accessors for pci devices
185  */
186 #define PCI_ACCESSOR(var, ivar, type)					\
187 	__BUS_ACCESSOR(pci, var, PCI, ivar, type)
188 
189 PCI_ACCESSOR(subvendor,		SUBVENDOR,	u_int16_t)
190 PCI_ACCESSOR(subdevice,		SUBDEVICE,	u_int16_t)
191 PCI_ACCESSOR(vendor,		VENDOR,		u_int16_t)
192 PCI_ACCESSOR(device,		DEVICE,		u_int16_t)
193 PCI_ACCESSOR(devid,		DEVID,		u_int32_t)
194 PCI_ACCESSOR(class,		CLASS,		u_int8_t)
195 PCI_ACCESSOR(subclass,		SUBCLASS,	u_int8_t)
196 PCI_ACCESSOR(progif,		PROGIF,		u_int8_t)
197 PCI_ACCESSOR(revid,		REVID,		u_int8_t)
198 PCI_ACCESSOR(intpin,		INTPIN,		u_int8_t)
199 PCI_ACCESSOR(irq,		IRQ,		u_int8_t)
200 PCI_ACCESSOR(bus,		BUS,		u_int8_t)
201 PCI_ACCESSOR(slot,		SLOT,		u_int8_t)
202 PCI_ACCESSOR(function,		FUNCTION,	u_int8_t)
203 PCI_ACCESSOR(ether,		ETHADDR,	u_int8_t *)
204 
205 #undef PCI_ACCESSOR
206 
207 /*
208  * Operations on configuration space.
209  */
210 static __inline u_int32_t
211 pci_read_config(device_t dev, int reg, int width)
212 {
213     return PCI_READ_CONFIG(device_get_parent(dev), dev, reg, width);
214 }
215 
216 static __inline void
217 pci_write_config(device_t dev, int reg, u_int32_t val, int width)
218 {
219     PCI_WRITE_CONFIG(device_get_parent(dev), dev, reg, val, width);
220 }
221 
222 /*
223  * Ivars for pci bridges.
224  */
225 
226 /*typedef enum pci_device_ivars pcib_device_ivars;*/
227 enum pcib_device_ivars {
228 	PCIB_IVAR_BUS
229 };
230 
231 #define PCIB_ACCESSOR(var, ivar, type)					 \
232     __BUS_ACCESSOR(pcib, var, PCIB, ivar, type)
233 
234 PCIB_ACCESSOR(bus,		BUS,		u_int32_t)
235 
236 #undef PCIB_ACCESSOR
237 
238 /*
239  * PCI interrupt validation.  Invalid interrupt values such as 0 or 128
240  * on i386 or other platforms should be mapped out in the MD pcireadconf
241  * code and not here, since the only MI invalid IRQ is 255.
242  */
243 #define PCI_INVALID_IRQ		255
244 #define PCI_INTERRUPT_VALID(x)	((x) != PCI_INVALID_IRQ)
245 
246 /*
247  * Convenience functions.
248  *
249  * These should be used in preference to manually manipulating
250  * configuration space.
251  */
252 static __inline int
253 pci_enable_busmaster(device_t dev)
254 {
255     return(PCI_ENABLE_BUSMASTER(device_get_parent(dev), dev));
256 }
257 
258 static __inline int
259 pci_disable_busmaster(device_t dev)
260 {
261     return(PCI_DISABLE_BUSMASTER(device_get_parent(dev), dev));
262 }
263 
264 static __inline int
265 pci_enable_io(device_t dev, int space)
266 {
267     return(PCI_ENABLE_IO(device_get_parent(dev), dev, space));
268 }
269 
270 static __inline int
271 pci_disable_io(device_t dev, int space)
272 {
273     return(PCI_DISABLE_IO(device_get_parent(dev), dev, space));
274 }
275 
276 /*
277  * PCI power states are as defined by ACPI:
278  *
279  * D0	State in which device is on and running.  It is receiving full
280  *	power from the system and delivering full functionality to the user.
281  * D1	Class-specific low-power state in which device context may or may not
282  *	be lost.  Buses in D1 cannot do anything to the bus that would force
283  *	devices on that bus to loose context.
284  * D2	Class-specific low-power state in which device context may or may
285  *	not be lost.  Attains greater power savings than D1.  Buses in D2
286  *	can cause devices on that bus to loose some context.  Devices in D2
287  *	must be prepared for the bus to be in D2 or higher.
288  * D3	State in which the device is off and not running.  Device context is
289  *	lost.  Power can be removed from the device.
290  */
291 #define PCI_POWERSTATE_D0	0
292 #define PCI_POWERSTATE_D1	1
293 #define PCI_POWERSTATE_D2	2
294 #define PCI_POWERSTATE_D3	3
295 #define PCI_POWERSTATE_UNKNOWN	-1
296 
297 static __inline int
298 pci_set_powerstate(device_t dev, int state)
299 {
300     return PCI_SET_POWERSTATE(device_get_parent(dev), dev, state);
301 }
302 
303 static __inline int
304 pci_get_powerstate(device_t dev)
305 {
306     return PCI_GET_POWERSTATE(device_get_parent(dev), dev);
307 }
308 
309 device_t pci_find_bsf(u_int8_t, u_int8_t, u_int8_t);
310 device_t pci_find_device(u_int16_t, u_int16_t);
311 #endif	/* _SYS_BUS_H_ */
312 
313 /*
314  * cdev switch for control device, initialised in generic PCI code
315  */
316 extern struct cdevsw pcicdev;
317 
318 /*
319  * List of all PCI devices, generation count for the list.
320  */
321 STAILQ_HEAD(devlist, pci_devinfo);
322 
323 extern struct devlist	pci_devq;
324 extern u_int32_t	pci_generation;
325 
326 #endif /* _PCIVAR_H_ */
327