pcivar.h revision 1.15 1 /* $NetBSD: pcivar.h,v 1.15 1996/03/28 02:16:23 cgd Exp $ */
2
3 /*
4 * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
5 * Copyright (c) 1994 Charles Hannum. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Charles Hannum.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33 #ifndef _DEV_PCI_PCIVAR_H_
34 #define _DEV_PCI_PCIVAR_H_
35
36 /*
37 * Definitions for PCI autoconfiguration.
38 *
39 * This file describes types and functions which are used for PCI
40 * configuration. Some of this information is machine-specific, and is
41 * provided by pci_machdep.h.
42 */
43
44 #include <machine/bus.h>
45 #include <dev/pci/pcireg.h>
46
47 /*
48 * Structures and definitions needed by the machine-dependent header.
49 */
50 typedef u_int32_t pcireg_t; /* configuration space register XXX */
51 struct pcibus_attach_args;
52
53 /*
54 * Machine-dependent definitions.
55 */
56 #if (alpha + i386 != 1)
57 ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE.
58 #endif
59 #if alpha
60 #include <alpha/pci/pci_machdep.h>
61 #endif
62 #if i386
63 #include <i386/pci/pci_machdep.h>
64 #endif
65
66 /*
67 * PCI bus attach arguments.
68 */
69 struct pcibus_attach_args {
70 char *pba_busname; /* XXX should be common */
71 bus_chipset_tag_t pba_bc; /* XXX should be common */
72 pci_chipset_tag_t pba_pc;
73
74 int pba_bus; /* PCI bus number */
75
76 /*
77 * Interrupt swizzling information. These fields
78 * are only used by secondary busses.
79 */
80 u_int pba_intrswiz; /* how to swizzle pins */
81 pcitag_t pba_intrtag; /* intr. appears to come from here */
82 };
83
84 /*
85 * PCI device attach arguments.
86 */
87 struct pci_attach_args {
88 bus_chipset_tag_t pa_bc;
89 pci_chipset_tag_t pa_pc;
90
91 u_int pa_device;
92 u_int pa_function;
93 pcitag_t pa_tag;
94 pcireg_t pa_id, pa_class;
95
96 /*
97 * Interrupt information.
98 *
99 * "Intrline" is used on systems whose firmware puts
100 * the right routing data into the line register in
101 * configuration space. The rest are used on systems
102 * that do not.
103 */
104 u_int pa_intrswiz; /* how to swizzle pins if ppb */
105 pcitag_t pa_intrtag; /* intr. appears to come from here */
106 pci_intr_pin_t pa_intrpin; /* intr. appears on this pin */
107 pci_intr_line_t pa_intrline; /* intr. routing information */
108 };
109
110 /*
111 * Locators devices that attach to 'pcibus', as specified to config.
112 */
113 #define pcibuscf_bus cf_loc[0]
114 #define PCIBUS_UNK_BUS -1 /* wildcarded 'bus' */
115
116 /*
117 * Locators for PCI devices, as specified to config.
118 */
119 #define pcicf_dev cf_loc[0]
120 #define PCI_UNK_DEV -1 /* wildcarded 'dev' */
121
122 #define pcicf_function cf_loc[1]
123 #define PCI_UNK_FUNCTION -1 /* wildcarded 'function' */
124
125 /*
126 * Configuration space access and utility functions. (Note that most,
127 * e.g. make_tag, conf_read, conf_write are declared by pci_machdep.h.)
128 */
129 int pci_io_find __P((pci_chipset_tag_t, pcitag_t, int, bus_io_addr_t *,
130 bus_io_size_t *));
131 int pci_mem_find __P((pci_chipset_tag_t, pcitag_t, int, bus_mem_addr_t *,
132 bus_mem_size_t *, int *));
133
134 /*
135 * Helper functions for autoconfiguration.
136 */
137 void pci_devinfo __P((pcireg_t, pcireg_t, int, char *));
138
139 #endif /* _DEV_PCI_PCIVAR_H_ */
140