uba_sbi.c revision 1.12.18.3 1 /* $NetBSD: uba_sbi.c,v 1.12.18.3 2002/11/10 15:41:37 he Exp $ */
2 /*
3 * Copyright (c) 1996 Jonathan Stone.
4 * Copyright (c) 1994, 1996 Ludd, University of Lule}, Sweden.
5 * Copyright (c) 1982, 1986 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)uba.c 7.10 (Berkeley) 12/16/90
37 * @(#)autoconf.c 7.20 (Berkeley) 5/9/91
38 */
39
40 #include <sys/param.h>
41 #include <sys/device.h>
42 #include <sys/systm.h>
43 #include <sys/kernel.h>
44
45 #define _VAX_BUS_DMA_PRIVATE
46 #include <machine/bus.h>
47 #include <machine/mtpr.h>
48 #include <machine/nexus.h>
49 #include <machine/cpu.h>
50 #include <machine/sgmap.h>
51 #include <machine/scb.h>
52
53 #include <dev/qbus/ubavar.h>
54
55 #include <vax/uba/uba_common.h>
56
57 #include "locators.h"
58 #include "ioconf.h"
59
60 /* Some SBI-specific defines */
61 #define UBASIZE (UBAPAGES * VAX_NBPG)
62 #define UMEMA8600(i) (0x20100000+(i)*0x40000)
63 #define UMEMB8600(i) (0x22100000+(i)*0x40000)
64
65 /*
66 * Some status registers.
67 */
68 #define UBACNFGR_UBIC 0x00010000 /* unibus init complete */
69 #define UBACNFGR_BITS \
70 "\40\40PARFLT\37WSQFLT\36URDFLT\35ISQFLT\34MXTFLT\33XMTFLT\30ADPDN\27ADPUP\23UBINIT\22UBPDN\21UBIC"
71
72 #define UBACR_IFS 0x00000040 /* interrupt field switch */
73 #define UBACR_BRIE 0x00000020 /* BR interrupt enable */
74 #define UBACR_USEFIE 0x00000010 /* UNIBUS to SBI error field IE */
75 #define UBACR_SUEFIE 0x00000008 /* SBI to UNIBUS error field IE */
76 #define UBACR_ADINIT 0x00000001 /* adapter init */
77
78 #define UBADPR_BNE 0x80000000 /* buffer not empty - purge */
79
80 #define UBABRRVR_DIV 0x0000ffff /* device interrupt vector field */
81
82 #define UBASR_BITS \
83 "\20\13RDTO\12RDS\11CRD\10CXTER\7CXTMO\6DPPE\5IVMR\4MRPF\3LEB\2UBSTO\1UBSSYNTO"
84
85 char ubasr_bits[] = UBASR_BITS;
86
87 /*
88 * The DW780 are directly connected to the SBI on 11/780 and 8600.
89 */
90 static int dw780_match(struct device *, struct cfdata *, void *);
91 static void dw780_attach(struct device *, struct device *, void *);
92 static void dw780_init(struct uba_softc*);
93 static void dw780_beforescan(struct uba_softc *);
94 static void dw780_afterscan(struct uba_softc *);
95 static int dw780_errchk(struct uba_softc *);
96 static void uba_dw780int(void *);
97 static void ubaerror(struct uba_softc *, int *, int *);
98 #ifdef notyet
99 static void dw780_purge(struct uba_softc *, int);
100 #endif
101
102 struct cfattach uba_sbi_ca = {
103 sizeof(struct uba_vsoftc), dw780_match, dw780_attach
104 };
105
106 static struct evcnt strayint = EVCNT_INITIALIZER(EVCNT_TYPE_INTR, NULL, "uba","stray intr");
107 static int strayinit = 0;
108
109 extern struct vax_bus_space vax_mem_bus_space;
110
111 int
112 dw780_match(struct device *parent, struct cfdata *cf, void *aux)
113 {
114 struct sbi_attach_args *sa = (struct sbi_attach_args *)aux;
115
116 if (cf->cf_loc[SBICF_TR] != sa->sa_nexnum &&
117 cf->cf_loc[SBICF_TR] != SBICF_TR_DEFAULT)
118 return 0;
119 /*
120 * The uba type is actually only telling where the uba
121 * space is in nexus space.
122 */
123 if ((sa->sa_type & ~3) != NEX_UBA0)
124 return 0;
125
126 return 1;
127 }
128
129 void
130 dw780_attach(struct device *parent, struct device *self, void *aux)
131 {
132 struct uba_vsoftc *sc = (void *)self;
133 struct sbi_attach_args *sa = aux;
134 int ubaddr = sa->sa_type & 3;
135 int i;
136
137 printf(": DW780\n");
138 /*
139 * Fill in bus specific data.
140 */
141 sc->uv_sc.uh_ubainit = dw780_init;
142 #ifdef notyet
143 sc->uv_sc.uh_ubapurge = dw780_purge;
144 #endif
145 sc->uv_sc.uh_beforescan = dw780_beforescan;
146 sc->uv_sc.uh_afterscan = dw780_afterscan;
147 sc->uv_sc.uh_errchk = dw780_errchk;
148 sc->uv_sc.uh_iot = &vax_mem_bus_space;
149 sc->uv_sc.uh_dmat = &sc->uv_dmat;
150 sc->uv_uba = (void *)sa->sa_ioh;
151 sc->uh_ibase = VAX_NBPG + ubaddr * VAX_NBPG;
152 sc->uv_sc.uh_type = UBA_UBA;
153
154 if (strayinit++ == 0) evcnt_attach_static(&strayint); /* Setup stray
155 interrupt
156 counter. */
157
158 /*
159 * Set up dispatch vectors for DW780.
160 */
161 for (i = 0x14; i < 0x18; i++)
162 scb_vecalloc(vecnum(0, i, sa->sa_nexnum), uba_dw780int,
163 sc, SCB_ISTACK, &sc->uv_sc.uh_intrcnt);
164 evcnt_attach_dynamic(&sc->uv_sc.uh_intrcnt, EVCNT_TYPE_INTR, NULL,
165 sc->uv_sc.uh_dev.dv_xname, "intr");
166
167 /*
168 * Fill in variables used by the sgmap system.
169 */
170 sc->uv_size = UBASIZE; /* Size in bytes of Unibus space */
171
172 uba_dma_init(sc);
173 uba_attach(&sc->uv_sc, (sa->sa_sbinum ? UMEMB8600(ubaddr) :
174 UMEMA8600(ubaddr)) + (UBAPAGES * VAX_NBPG));
175 }
176
177 void
178 dw780_beforescan(struct uba_softc *sc)
179 {
180 struct uba_vsoftc *vc = (void *)sc;
181 volatile int *hej = &vc->uv_uba->uba_sr;
182
183 *hej = *hej;
184 vc->uv_uba->uba_cr = UBACR_IFS|UBACR_BRIE;
185 }
186
187 void
188 dw780_afterscan(struct uba_softc *sc)
189 {
190 struct uba_vsoftc *vc = (void *)sc;
191
192 vc->uv_uba->uba_cr = UBACR_IFS | UBACR_BRIE |
193 UBACR_USEFIE | UBACR_SUEFIE |
194 (vc->uv_uba->uba_cr & 0x7c000000);
195 }
196
197
198 int
199 dw780_errchk(struct uba_softc *sc)
200 {
201 struct uba_vsoftc *vc = (void *)sc;
202 volatile int *hej = &vc->uv_uba->uba_sr;
203
204 if (*hej) {
205 *hej = *hej;
206 return 1;
207 }
208 return 0;
209 }
210
211 void
212 uba_dw780int(void *arg)
213 {
214 extern void scb_stray(void *);
215 struct uba_vsoftc *vc = arg;
216 struct uba_regs *ur = vc->uv_uba;
217 struct ivec_dsp *ivec;
218 struct evcnt *uvec;
219 int br, vec;
220
221 br = mfpr(PR_IPL);
222 uvec = &vc->uv_sc.uh_intrcnt;
223 vec = ur->uba_brrvr[br - 0x14];
224 if (vec <= 0) {
225 ubaerror(&vc->uv_sc, &br, &vec);
226 if (vec == 0)
227 return;
228 }
229
230 uvec->ev_count--; /* This interrupt should not be counted against
231 the uba. */
232 ivec = &scb_vec[(vc->uh_ibase + vec)/4];
233 if (cold && *ivec->hoppaddr == scb_stray) {
234 scb_fake(vec + vc->uh_ibase, br);
235 } else {
236 if (*ivec->hoppaddr == scb_stray)
237 strayint.ev_count++; /* Count against stray int */
238 else
239 ivec->ev->ev_count++; /* Count against device */
240 (*ivec->hoppaddr)(ivec->pushlarg);
241 }
242 }
243
244 void
245 dw780_init(struct uba_softc *sc)
246 {
247 struct uba_vsoftc *vc = (void *)sc;
248
249 vc->uv_uba->uba_cr = UBACR_ADINIT;
250 vc->uv_uba->uba_cr = UBACR_IFS|UBACR_BRIE|UBACR_USEFIE|UBACR_SUEFIE;
251 while ((vc->uv_uba->uba_cnfgr & UBACNFGR_UBIC) == 0)
252 ;
253 }
254
255 #ifdef notyet
256 void
257 dw780_purge(sc, bdp)
258 struct uba_softc *sc;
259 int bdp;
260 {
261 struct uba_vsoftc *vc = (void *)sc;
262
263 vc->uv_uba->uba_dpr[bdp] |= UBADPR_BNE;
264 }
265 #endif
266
267 int ubawedgecnt = 10;
268 int ubacrazy = 500;
269 int zvcnt_max = 5000; /* in 8 sec */
270 int ubaerrcnt;
271 /*
272 * This routine is called by the locore code to process a UBA
273 * error on an 11/780 or 8600. The arguments are passed
274 * on the stack, and value-result (through some trickery).
275 * In particular, the uvec argument is used for further
276 * uba processing so the result aspect of it is very important.
277 */
278 /*ARGSUSED*/
279 void
280 ubaerror(struct uba_softc *uh, int *ipl, int *uvec)
281 {
282 struct uba_vsoftc *vc = (void *)uh;
283 struct uba_regs *uba = vc->uv_uba;
284 int sr, s;
285 char sbuf[256], sbuf2[256];
286
287 if (*uvec == 0) {
288 /*
289 * Declare dt as unsigned so that negative values
290 * are handled as >8 below, in case time was set back.
291 */
292 u_long dt = time.tv_sec - vc->uh_zvtime;
293
294 vc->uh_zvtotal++;
295 if (dt > 8) {
296 vc->uh_zvtime = time.tv_sec;
297 vc->uh_zvcnt = 0;
298 }
299 if (++vc->uh_zvcnt > zvcnt_max) {
300 printf("%s: too many zero vectors (%d in <%d sec)\n",
301 vc->uv_sc.uh_dev.dv_xname, vc->uh_zvcnt, (int)dt + 1);
302
303 bitmask_snprintf(uba->uba_cnfgr&(~0xff), UBACNFGR_BITS,
304 sbuf, sizeof(sbuf));
305 printf("\tIPL 0x%x\n\tcnfgr: %s Adapter Code: 0x%x\n",
306 *ipl, sbuf, uba->uba_cnfgr&0xff);
307
308 bitmask_snprintf(uba->uba_sr, ubasr_bits, sbuf, sizeof(sbuf));
309 printf("\tsr: %s\n\tdcr: %x (MIC %sOK)\n",
310 sbuf, uba->uba_dcr,
311 (uba->uba_dcr&0x8000000)?"":"NOT ");
312
313 ubareset(&vc->uv_sc);
314 }
315 return;
316 }
317 if (uba->uba_cnfgr & NEX_CFGFLT) {
318 bitmask_snprintf(uba->uba_sr, ubasr_bits, sbuf, sizeof(sbuf));
319 bitmask_snprintf(uba->uba_cnfgr, NEXFLT_BITS, sbuf2, sizeof(sbuf2));
320 printf("%s: sbi fault sr=%s cnfgr=%s\n",
321 vc->uv_sc.uh_dev.dv_xname, sbuf, sbuf2);
322 ubareset(&vc->uv_sc);
323 *uvec = 0;
324 return;
325 }
326 sr = uba->uba_sr;
327 s = spluba();
328 bitmask_snprintf(uba->uba_sr, ubasr_bits, sbuf, sizeof(sbuf));
329 printf("%s: uba error sr=%s fmer=%x fubar=%o\n", vc->uv_sc.uh_dev.dv_xname,
330 sbuf, uba->uba_fmer, 4*uba->uba_fubar);
331 splx(s);
332 uba->uba_sr = sr;
333 *uvec &= UBABRRVR_DIV;
334 if (++ubaerrcnt % ubawedgecnt == 0) {
335 if (ubaerrcnt > ubacrazy)
336 panic("uba crazy");
337 printf("ERROR LIMIT ");
338 ubareset(&vc->uv_sc);
339 *uvec = 0;
340 }
341 }
342