cia_pci.c revision 1.26 1 1.26 thorpej /* $NetBSD: cia_pci.c,v 1.26 2002/05/15 16:57:42 thorpej Exp $ */
2 1.1 cgd
3 1.1 cgd /*
4 1.2 cgd * Copyright (c) 1995, 1996 Carnegie-Mellon University.
5 1.1 cgd * All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Author: Chris G. Demetriou
8 1.1 cgd *
9 1.1 cgd * Permission to use, copy, modify and distribute this software and
10 1.1 cgd * its documentation is hereby granted, provided that both the copyright
11 1.1 cgd * notice and this permission notice appear in all copies of the
12 1.1 cgd * software, derivative works or modified versions, and any portions
13 1.1 cgd * thereof, and that both notices appear in supporting documentation.
14 1.1 cgd *
15 1.1 cgd * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
16 1.1 cgd * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
17 1.1 cgd * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
18 1.1 cgd *
19 1.1 cgd * Carnegie Mellon requests users of this software to return to
20 1.1 cgd *
21 1.1 cgd * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
22 1.1 cgd * School of Computer Science
23 1.1 cgd * Carnegie Mellon University
24 1.1 cgd * Pittsburgh PA 15213-3890
25 1.1 cgd *
26 1.1 cgd * any improvements or extensions that they make and grant Carnegie the
27 1.1 cgd * rights to redistribute these changes.
28 1.1 cgd */
29 1.10 cgd
30 1.11 cgd #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
31 1.11 cgd
32 1.26 thorpej __KERNEL_RCSID(0, "$NetBSD: cia_pci.c,v 1.26 2002/05/15 16:57:42 thorpej Exp $");
33 1.1 cgd
34 1.1 cgd #include <sys/param.h>
35 1.1 cgd #include <sys/systm.h>
36 1.1 cgd #include <sys/kernel.h>
37 1.1 cgd #include <sys/device.h>
38 1.25 mrg
39 1.25 mrg #include <uvm/uvm_extern.h>
40 1.1 cgd
41 1.1 cgd #include <dev/pci/pcireg.h>
42 1.1 cgd #include <dev/pci/pcivar.h>
43 1.1 cgd #include <alpha/pci/ciareg.h>
44 1.1 cgd #include <alpha/pci/ciavar.h>
45 1.1 cgd
46 1.2 cgd void cia_attach_hook __P((struct device *, struct device *,
47 1.2 cgd struct pcibus_attach_args *));
48 1.2 cgd int cia_bus_maxdevs __P((void *, int));
49 1.2 cgd pcitag_t cia_make_tag __P((void *, int, int, int));
50 1.2 cgd void cia_decompose_tag __P((void *, pcitag_t, int *, int *,
51 1.2 cgd int *));
52 1.2 cgd pcireg_t cia_conf_read __P((void *, pcitag_t, int));
53 1.2 cgd void cia_conf_write __P((void *, pcitag_t, int, pcireg_t));
54 1.1 cgd
55 1.2 cgd void
56 1.2 cgd cia_pci_init(pc, v)
57 1.2 cgd pci_chipset_tag_t pc;
58 1.2 cgd void *v;
59 1.2 cgd {
60 1.2 cgd
61 1.2 cgd pc->pc_conf_v = v;
62 1.2 cgd pc->pc_attach_hook = cia_attach_hook;
63 1.2 cgd pc->pc_bus_maxdevs = cia_bus_maxdevs;
64 1.2 cgd pc->pc_make_tag = cia_make_tag;
65 1.2 cgd pc->pc_decompose_tag = cia_decompose_tag;
66 1.2 cgd pc->pc_conf_read = cia_conf_read;
67 1.2 cgd pc->pc_conf_write = cia_conf_write;
68 1.2 cgd }
69 1.2 cgd
70 1.2 cgd void
71 1.2 cgd cia_attach_hook(parent, self, pba)
72 1.2 cgd struct device *parent, *self;
73 1.2 cgd struct pcibus_attach_args *pba;
74 1.2 cgd {
75 1.2 cgd }
76 1.2 cgd
77 1.2 cgd int
78 1.2 cgd cia_bus_maxdevs(cpv, busno)
79 1.2 cgd void *cpv;
80 1.2 cgd int busno;
81 1.2 cgd {
82 1.2 cgd
83 1.2 cgd return 32;
84 1.2 cgd }
85 1.2 cgd
86 1.2 cgd pcitag_t
87 1.2 cgd cia_make_tag(cpv, b, d, f)
88 1.2 cgd void *cpv;
89 1.2 cgd int b, d, f;
90 1.2 cgd {
91 1.2 cgd
92 1.2 cgd return (b << 16) | (d << 11) | (f << 8);
93 1.2 cgd }
94 1.2 cgd
95 1.2 cgd void
96 1.2 cgd cia_decompose_tag(cpv, tag, bp, dp, fp)
97 1.2 cgd void *cpv;
98 1.2 cgd pcitag_t tag;
99 1.2 cgd int *bp, *dp, *fp;
100 1.2 cgd {
101 1.2 cgd
102 1.2 cgd if (bp != NULL)
103 1.2 cgd *bp = (tag >> 16) & 0xff;
104 1.2 cgd if (dp != NULL)
105 1.2 cgd *dp = (tag >> 11) & 0x1f;
106 1.2 cgd if (fp != NULL)
107 1.2 cgd *fp = (tag >> 8) & 0x7;
108 1.2 cgd }
109 1.2 cgd
110 1.2 cgd pcireg_t
111 1.1 cgd cia_conf_read(cpv, tag, offset)
112 1.1 cgd void *cpv;
113 1.2 cgd pcitag_t tag;
114 1.2 cgd int offset;
115 1.1 cgd {
116 1.2 cgd struct cia_config *ccp = cpv;
117 1.2 cgd pcireg_t *datap, data;
118 1.1 cgd int s, secondary, ba;
119 1.19 thorpej u_int32_t old_cfg, errbits;
120 1.1 cgd
121 1.18 cjs #ifdef __GNUC__
122 1.6 cgd s = 0; /* XXX gcc -Wuninitialized */
123 1.19 thorpej old_cfg = 0; /* XXX gcc -Wuninitialized */
124 1.6 cgd #endif
125 1.6 cgd
126 1.7 cgd /*
127 1.14 thorpej * Some (apparently-common) revisions of EB164 and AlphaStation
128 1.17 thorpej * firmware do the Wrong thing with PCI master and target aborts,
129 1.17 thorpej * which are caused by accesing the configuration space of devices
130 1.17 thorpej * that don't exist (for example).
131 1.7 cgd *
132 1.14 thorpej * To work around this, we clear the CIA error register's PCI
133 1.17 thorpej * master and target abort bits before touching PCI configuration
134 1.17 thorpej * space and check it afterwards. If it indicates a master or target
135 1.17 thorpej * abort, the device wasn't there so we return 0xffffffff.
136 1.7 cgd */
137 1.17 thorpej REGVAL(CIA_CSR_CIA_ERR) = CIA_ERR_RCVD_MAS_ABT|CIA_ERR_RCVD_TAR_ABT;
138 1.14 thorpej alpha_mb();
139 1.14 thorpej alpha_pal_draina();
140 1.7 cgd
141 1.2 cgd /* secondary if bus # != 0 */
142 1.26 thorpej pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0);
143 1.1 cgd if (secondary) {
144 1.1 cgd s = splhigh();
145 1.19 thorpej old_cfg = REGVAL(CIA_CSR_CFG);
146 1.3 cgd alpha_mb();
147 1.19 thorpej REGVAL(CIA_CSR_CFG) = old_cfg | 0x1;
148 1.3 cgd alpha_mb();
149 1.1 cgd }
150 1.1 cgd
151 1.22 thorpej /*
152 1.22 thorpej * We just inline the BWX support, since this is the only
153 1.22 thorpej * difference between BWX and swiz for config space.
154 1.22 thorpej */
155 1.23 thorpej if (ccp->cc_flags & CCF_PCI_USE_BWX) {
156 1.22 thorpej if (secondary) {
157 1.22 thorpej datap =
158 1.22 thorpej (pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_EV56_BWCONF1 |
159 1.22 thorpej tag | (offset & ~0x03));
160 1.22 thorpej } else {
161 1.22 thorpej datap =
162 1.22 thorpej (pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_EV56_BWCONF0 |
163 1.22 thorpej tag | (offset & ~0x03));
164 1.22 thorpej }
165 1.22 thorpej } else {
166 1.22 thorpej datap = (pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_PCI_CONF |
167 1.22 thorpej tag << 5UL | /* XXX */
168 1.22 thorpej (offset & ~0x03) << 5 | /* XXX */
169 1.22 thorpej 0 << 5 | /* XXX */
170 1.22 thorpej 0x3 << 3); /* XXX */
171 1.22 thorpej }
172 1.2 cgd data = (pcireg_t)-1;
173 1.24 ross alpha_mb();
174 1.1 cgd if (!(ba = badaddr(datap, sizeof *datap)))
175 1.1 cgd data = *datap;
176 1.24 ross alpha_mb();
177 1.24 ross alpha_mb();
178 1.1 cgd
179 1.1 cgd if (secondary) {
180 1.3 cgd alpha_mb();
181 1.19 thorpej REGVAL(CIA_CSR_CFG) = old_cfg;
182 1.3 cgd alpha_mb();
183 1.1 cgd splx(s);
184 1.1 cgd }
185 1.7 cgd
186 1.14 thorpej alpha_pal_draina();
187 1.16 thorpej alpha_mb();
188 1.16 thorpej errbits = REGVAL(CIA_CSR_CIA_ERR);
189 1.17 thorpej if (errbits & (CIA_ERR_RCVD_MAS_ABT|CIA_ERR_RCVD_TAR_ABT)) {
190 1.14 thorpej ba = 1;
191 1.14 thorpej data = 0xffffffff;
192 1.16 thorpej }
193 1.16 thorpej
194 1.16 thorpej if (errbits) {
195 1.16 thorpej REGVAL(CIA_CSR_CIA_ERR) = errbits;
196 1.16 thorpej alpha_mb();
197 1.16 thorpej alpha_pal_draina();
198 1.7 cgd }
199 1.1 cgd
200 1.1 cgd #if 0
201 1.5 christos printf("cia_conf_read: tag 0x%lx, reg 0x%lx -> %x @ %p%s\n", tag, reg,
202 1.1 cgd data, datap, ba ? " (badaddr)" : "");
203 1.1 cgd #endif
204 1.1 cgd
205 1.1 cgd return data;
206 1.1 cgd }
207 1.1 cgd
208 1.1 cgd void
209 1.1 cgd cia_conf_write(cpv, tag, offset, data)
210 1.1 cgd void *cpv;
211 1.2 cgd pcitag_t tag;
212 1.2 cgd int offset;
213 1.2 cgd pcireg_t data;
214 1.1 cgd {
215 1.2 cgd struct cia_config *ccp = cpv;
216 1.2 cgd pcireg_t *datap;
217 1.1 cgd int s, secondary;
218 1.20 thorpej u_int32_t old_cfg;
219 1.6 cgd
220 1.18 cjs #ifdef __GNUC__
221 1.6 cgd s = 0; /* XXX gcc -Wuninitialized */
222 1.20 thorpej old_cfg = 0; /* XXX gcc -Wuninitialized */
223 1.6 cgd #endif
224 1.1 cgd
225 1.2 cgd /* secondary if bus # != 0 */
226 1.26 thorpej pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0);
227 1.1 cgd if (secondary) {
228 1.1 cgd s = splhigh();
229 1.20 thorpej old_cfg = REGVAL(CIA_CSR_CFG);
230 1.3 cgd alpha_mb();
231 1.20 thorpej REGVAL(CIA_CSR_CFG) = old_cfg | 0x1;
232 1.3 cgd alpha_mb();
233 1.1 cgd }
234 1.1 cgd
235 1.22 thorpej /*
236 1.22 thorpej * We just inline the BWX support, since this is the only
237 1.22 thorpej * difference between BWX and swiz for config space.
238 1.22 thorpej */
239 1.23 thorpej if (ccp->cc_flags & CCF_PCI_USE_BWX) {
240 1.22 thorpej if (secondary) {
241 1.22 thorpej datap =
242 1.22 thorpej (pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_EV56_BWCONF1 |
243 1.22 thorpej tag | (offset & ~0x03));
244 1.22 thorpej } else {
245 1.22 thorpej datap =
246 1.22 thorpej (pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_EV56_BWCONF0 |
247 1.22 thorpej tag | (offset & ~0x03));
248 1.22 thorpej }
249 1.22 thorpej } else {
250 1.22 thorpej datap = (pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_PCI_CONF |
251 1.22 thorpej tag << 5UL | /* XXX */
252 1.22 thorpej (offset & ~0x03) << 5 | /* XXX */
253 1.22 thorpej 0 << 5 | /* XXX */
254 1.22 thorpej 0x3 << 3); /* XXX */
255 1.22 thorpej }
256 1.24 ross alpha_mb();
257 1.1 cgd *datap = data;
258 1.24 ross alpha_mb();
259 1.24 ross alpha_mb();
260 1.1 cgd
261 1.1 cgd if (secondary) {
262 1.3 cgd alpha_mb();
263 1.21 thorpej REGVAL(CIA_CSR_CFG) = old_cfg;
264 1.3 cgd alpha_mb();
265 1.1 cgd splx(s);
266 1.1 cgd }
267 1.1 cgd
268 1.1 cgd #if 0
269 1.5 christos printf("cia_conf_write: tag 0x%lx, reg 0x%lx -> 0x%x @ %p\n", tag,
270 1.1 cgd reg, data, datap);
271 1.1 cgd #endif
272 1.1 cgd }
273