uda.c revision 1.44 1 /* $NetBSD: uda.c,v 1.44 2002/09/27 02:24:31 thorpej Exp $ */
2 /*
3 * Copyright (c) 1996 Ludd, University of Lule}, Sweden.
4 * Copyright (c) 1988 Regents of the University of California.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Chris Torek.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)uda.c 7.32 (Berkeley) 2/13/91
39 */
40
41 /*
42 * UDA50 disk device driver
43 */
44
45 #include <sys/cdefs.h>
46 __KERNEL_RCSID(0, "$NetBSD: uda.c,v 1.44 2002/09/27 02:24:31 thorpej Exp $");
47
48 #include <sys/param.h>
49 #include <sys/kernel.h>
50 #include <sys/systm.h>
51 #include <sys/device.h>
52 #include <sys/buf.h>
53 #include <sys/malloc.h>
54
55 #include <machine/bus.h>
56 #include <machine/sid.h>
57
58 #include <dev/qbus/ubavar.h>
59
60 #include <dev/mscp/mscp.h>
61 #include <dev/mscp/mscpreg.h>
62 #include <dev/mscp/mscpvar.h>
63
64 #include "ioconf.h"
65
66 /*
67 * Software status, per controller.
68 */
69 struct uda_softc {
70 struct device sc_dev; /* Autoconfig info */
71 struct evcnt sc_intrcnt; /* Interrupt counting */
72 struct uba_unit sc_unit; /* Struct common for UBA to communicate */
73 struct ubinfo sc_ui;
74 bus_dma_tag_t sc_dmat;
75 bus_space_tag_t sc_iot;
76 bus_space_handle_t sc_iph;
77 bus_space_handle_t sc_sah;
78 struct mscp_softc *sc_softc; /* MSCP info (per mscpvar.h) */
79 int sc_inq;
80 };
81
82 static int udamatch(struct device *, struct cfdata *, void *);
83 static void udaattach(struct device *, struct device *, void *);
84 static void udareset(struct device *);
85 static void udaintr(void *);
86 static int udaready(struct uba_unit *);
87 static void udactlrdone(struct device *);
88 static int udaprint(void *, const char *);
89 static void udasaerror(struct device *, int);
90 static void udago(struct device *, struct mscp_xi *);
91
92 struct cfattach mtc_ca = {
93 sizeof(struct uda_softc), udamatch, udaattach
94 };
95
96 struct cfattach uda_ca = {
97 sizeof(struct uda_softc), udamatch, udaattach
98 };
99
100 /*
101 * More driver definitions, for generic MSCP code.
102 */
103 struct mscp_ctlr uda_mscp_ctlr = {
104 udactlrdone,
105 udago,
106 udasaerror,
107 };
108
109 int
110 udaprint(void *aux, const char *name)
111 {
112 if (name)
113 printf("%s: mscpbus", name);
114 return UNCONF;
115 }
116
117 /*
118 * Poke at a supposed UDA50 to see if it is there.
119 */
120 int
121 udamatch(struct device *parent, struct cfdata *cf, void *aux)
122 {
123 struct uba_attach_args *ua = aux;
124 struct mscp_softc mi; /* Nice hack */
125 struct uba_softc *ubasc;
126 int tries;
127
128 /* Get an interrupt vector. */
129 ubasc = (void *)parent;
130
131 mi.mi_iot = ua->ua_iot;
132 mi.mi_iph = ua->ua_ioh;
133 mi.mi_sah = ua->ua_ioh + 2;
134 mi.mi_swh = ua->ua_ioh + 2;
135
136 /*
137 * Initialise the controller (partially). The UDA50 programmer's
138 * manual states that if initialisation fails, it should be retried
139 * at least once, but after a second failure the port should be
140 * considered `down'; it also mentions that the controller should
141 * initialise within ten seconds. Or so I hear; I have not seen
142 * this manual myself.
143 */
144 tries = 0;
145 again:
146
147 bus_space_write_2(mi.mi_iot, mi.mi_iph, 0, 0); /* Start init */
148 if (mscp_waitstep(&mi, MP_STEP1, MP_STEP1) == 0)
149 return 0; /* Nothing here... */
150
151 bus_space_write_2(mi.mi_iot, mi.mi_sah, 0,
152 MP_ERR | (NCMDL2 << 11) | (NRSPL2 << 8) | MP_IE |
153 ((ubasc->uh_lastiv - 4) >> 2));
154
155 if (mscp_waitstep(&mi, MP_STEP2, MP_STEP2) == 0) {
156 printf("udaprobe: init step2 no change. sa=%x\n",
157 bus_space_read_2(mi.mi_iot, mi.mi_sah, 0));
158 goto bad;
159 }
160
161 /* should have interrupted by now */
162 return 1;
163 bad:
164 if (++tries < 2)
165 goto again;
166 return 0;
167 }
168
169 void
170 udaattach(struct device *parent, struct device *self, void *aux)
171 {
172 struct uda_softc *sc = (void *)self;
173 struct uba_attach_args *ua = aux;
174 struct uba_softc *uh = (void *)parent;
175 struct mscp_attach_args ma;
176 int error;
177
178 printf("\n");
179
180 uh->uh_lastiv -= 4; /* remove dynamic interrupt vector */
181
182 uba_intr_establish(ua->ua_icookie, ua->ua_cvec,
183 udaintr, sc, &sc->sc_intrcnt);
184 uba_reset_establish(udareset, &sc->sc_dev);
185 evcnt_attach_dynamic(&sc->sc_intrcnt, EVCNT_TYPE_INTR, ua->ua_evcnt,
186 sc->sc_dev.dv_xname, "intr");
187
188 sc->sc_iot = ua->ua_iot;
189 sc->sc_iph = ua->ua_ioh;
190 sc->sc_sah = ua->ua_ioh + 2;
191 sc->sc_dmat = ua->ua_dmat;
192
193 /*
194 * Fill in the uba_unit struct, so we can communicate with the uba.
195 */
196 sc->sc_unit.uu_softc = sc; /* Backpointer to softc */
197 sc->sc_unit.uu_ready = udaready;/* go routine called from adapter */
198 sc->sc_unit.uu_keepbdp = vax_cputype == VAX_750 ? 1 : 0;
199
200 /*
201 * Map the communication area and command and
202 * response packets into Unibus space.
203 */
204 sc->sc_ui.ui_size = sizeof(struct mscp_pack);
205 if ((error = ubmemalloc((void *)parent, &sc->sc_ui, UBA_CANTWAIT)))
206 return printf("ubmemalloc failed: %d\n", error);
207
208 bzero(sc->sc_ui.ui_vaddr, sizeof (struct mscp_pack));
209
210 /*
211 * The only thing that differ UDA's and Tape ctlr's is
212 * their vcid. Beacuse there are no way to determine which
213 * ctlr type it is, we check what is generated and later
214 * set the correct vcid.
215 */
216 ma.ma_type = (strcmp(self->dv_cfdata->cf_name, "mtc") ?
217 MSCPBUS_DISK : MSCPBUS_TAPE);
218
219 ma.ma_mc = &uda_mscp_ctlr;
220 ma.ma_type |= MSCPBUS_UDA;
221 ma.ma_uda = (struct mscp_pack *)sc->sc_ui.ui_vaddr;
222 ma.ma_softc = &sc->sc_softc;
223 ma.ma_iot = sc->sc_iot;
224 ma.ma_iph = sc->sc_iph;
225 ma.ma_sah = sc->sc_sah;
226 ma.ma_swh = sc->sc_sah;
227 ma.ma_dmat = sc->sc_dmat;
228 ma.ma_dmam = sc->sc_ui.ui_dmam;
229 ma.ma_ivec = uh->uh_lastiv;
230 ma.ma_ctlrnr = (ua->ua_iaddr == 0172150 ? 0 : 1); /* XXX */
231 ma.ma_adapnr = uh->uh_nr;
232 config_found(&sc->sc_dev, &ma, udaprint);
233 }
234
235 /*
236 * Start a transfer if there are free resources available, otherwise
237 * let it go in udaready, forget it for now.
238 * Called from mscp routines.
239 */
240 void
241 udago(struct device *usc, struct mscp_xi *mxi)
242 {
243 struct uda_softc *sc = (void *)usc;
244 struct uba_unit *uu;
245 struct buf *bp = mxi->mxi_bp;
246 int err;
247
248 /*
249 * If we already have transfers queued, don't try to load
250 * the map again.
251 */
252 if (sc->sc_inq == 0) {
253 err = bus_dmamap_load(sc->sc_dmat, mxi->mxi_dmam,
254 bp->b_data, bp->b_bcount,
255 (bp->b_flags & B_PHYS ? bp->b_proc : 0), BUS_DMA_NOWAIT);
256 if (err == 0) {
257 mscp_dgo(sc->sc_softc, mxi);
258 return;
259 }
260 }
261 uu = malloc(sizeof(struct uba_unit), M_DEVBUF, M_NOWAIT);
262 if (uu == 0)
263 panic("udago: no mem");
264 uu->uu_ready = udaready;
265 uu->uu_softc = sc;
266 uu->uu_ref = mxi;
267 uba_enqueue(uu);
268 sc->sc_inq++;
269 }
270
271 /*
272 * Called if we have been blocked for resources, and resources
273 * have been freed again. Return 1 if we could start all
274 * transfers again, 0 if we still are waiting.
275 * Called from uba resource free routines.
276 */
277 int
278 udaready(struct uba_unit *uu)
279 {
280 struct uda_softc *sc = uu->uu_softc;
281 struct mscp_xi *mxi = uu->uu_ref;
282 struct buf *bp = mxi->mxi_bp;
283 int err;
284
285 err = bus_dmamap_load(sc->sc_dmat, mxi->mxi_dmam, bp->b_data,
286 bp->b_bcount, (bp->b_flags & B_PHYS ? bp->b_proc : 0),
287 BUS_DMA_NOWAIT);
288
289 if (err)
290 return 0;
291 mscp_dgo(sc->sc_softc, mxi);
292 sc->sc_inq--;
293 free(uu, M_DEVBUF);
294 return 1;
295 }
296
297 static struct saerr {
298 int code; /* error code (including UDA_ERR) */
299 char *desc; /* what it means: Efoo => foo error */
300 } saerr[] = {
301 { 0100001, "Eunibus packet read" },
302 { 0100002, "Eunibus packet write" },
303 { 0100003, "EUDA ROM and RAM parity" },
304 { 0100004, "EUDA RAM parity" },
305 { 0100005, "EUDA ROM parity" },
306 { 0100006, "Eunibus ring read" },
307 { 0100007, "Eunibus ring write" },
308 { 0100010, " unibus interrupt master failure" },
309 { 0100011, "Ehost access timeout" },
310 { 0100012, " host exceeded command limit" },
311 { 0100013, " unibus bus master failure" },
312 { 0100014, " DM XFC fatal error" },
313 { 0100015, " hardware timeout of instruction loop" },
314 { 0100016, " invalid virtual circuit id" },
315 { 0100017, "Eunibus interrupt write" },
316 { 0104000, "Efatal sequence" },
317 { 0104040, " D proc ALU" },
318 { 0104041, "ED proc control ROM parity" },
319 { 0105102, "ED proc w/no BD#2 or RAM parity" },
320 { 0105105, "ED proc RAM buffer" },
321 { 0105152, "ED proc SDI" },
322 { 0105153, "ED proc write mode wrap serdes" },
323 { 0105154, "ED proc read mode serdes, RSGEN & ECC" },
324 { 0106040, "EU proc ALU" },
325 { 0106041, "EU proc control reg" },
326 { 0106042, " U proc DFAIL/cntl ROM parity/BD #1 test CNT" },
327 { 0106047, " U proc const PROM err w/D proc running SDI test" },
328 { 0106055, " unexpected trap" },
329 { 0106071, "EU proc const PROM" },
330 { 0106072, "EU proc control ROM parity" },
331 { 0106200, "Estep 1 data" },
332 { 0107103, "EU proc RAM parity" },
333 { 0107107, "EU proc RAM buffer" },
334 { 0107115, " test count wrong (BD 12)" },
335 { 0112300, "Estep 2" },
336 { 0122240, "ENPR" },
337 { 0122300, "Estep 3" },
338 { 0142300, "Estep 4" },
339 { 0, " unknown error code" }
340 };
341
342 /*
343 * If the error bit was set in the controller status register, gripe,
344 * then (optionally) reset the controller and requeue pending transfers.
345 */
346 void
347 udasaerror(struct device *usc, int doreset)
348 {
349 struct uda_softc *sc = (void *)usc;
350 int code = bus_space_read_2(sc->sc_iot, sc->sc_sah, 0);
351 struct saerr *e;
352
353 if ((code & MP_ERR) == 0)
354 return;
355 for (e = saerr; e->code; e++)
356 if (e->code == code)
357 break;
358 printf("%s: controller error, sa=0%o (%s%s)\n",
359 sc->sc_dev.dv_xname, code, e->desc + 1,
360 *e->desc == 'E' ? " error" : "");
361 #if 0 /* XXX we just avoid panic when autoconfig non-existent KFQSA devices */
362 if (doreset) {
363 mscp_requeue(sc->sc_softc);
364 /* (void) udainit(sc); XXX */
365 }
366 #endif
367 }
368
369 /*
370 * Interrupt routine. Depending on the state of the controller,
371 * continue initialisation, or acknowledge command and response
372 * interrupts, and process responses.
373 */
374 static void
375 udaintr(void *arg)
376 {
377 struct uda_softc *sc = arg;
378 struct uba_softc *uh;
379
380 /* ctlr fatal error */
381 if (bus_space_read_2(sc->sc_iot, sc->sc_sah, 0) & MP_ERR) {
382 udasaerror(&sc->sc_dev, 1);
383 return;
384 }
385 /*
386 * Handle buffer purge requests.
387 * XXX - should be done in bus_dma_sync().
388 */
389 uh = (void *)sc->sc_dev.dv_parent;
390 #ifdef notyet
391 if (ud->mp_ca.ca_bdp) {
392 if (uh->uh_ubapurge)
393 (*uh->uh_ubapurge)(uh, ud->mp_ca.ca_bdp);
394 /* signal purge complete */
395 bus_space_write_2(sc->sc_iot, sc->sc_sah, 0, 0);
396 }
397 #endif
398
399 mscp_intr(sc->sc_softc);
400 }
401
402 /*
403 * A Unibus reset has occurred on UBA uban. Reinitialise the controller(s)
404 * on that Unibus, and requeue outstanding I/O.
405 */
406 static void
407 udareset(struct device *dev)
408 {
409 struct uda_softc *sc = (void *)dev;
410 /*
411 * Our BDP (if any) is gone; our command (if any) is
412 * flushed; the device is no longer mapped; and the
413 * UDA50 is not yet initialised.
414 */
415 if (sc->sc_unit.uu_bdp) {
416 /* printf("<%d>", UBAI_BDP(sc->sc_unit.uu_bdp)); */
417 sc->sc_unit.uu_bdp = 0;
418 }
419
420 /* reset queues and requeue pending transfers */
421 mscp_requeue(sc->sc_softc);
422
423 /*
424 * If it fails to initialise we will notice later and
425 * try again (and again...). Do not call udastart()
426 * here; it will be done after the controller finishes
427 * initialisation.
428 */
429 /* XXX if (udainit(sc)) */
430 printf(" (hung)");
431 }
432
433 void
434 udactlrdone(struct device *usc)
435 {
436 struct uda_softc *sc = (void *)usc;
437 int s;
438
439 s = spluba();
440 uba_done((struct uba_softc *)sc->sc_dev.dv_parent);
441 splx(s);
442 }
443