bzsc.c revision 1.16 1 1.16 bouyer /* $NetBSD: bzsc.c,v 1.16 1997/08/27 11:23:04 bouyer Exp $ */
2 1.7 veego
3 1.1 chopps /*
4 1.1 chopps * Copyright (c) 1995 Daniel Widenfalk
5 1.1 chopps * Copyright (c) 1994 Christian E. Hopps
6 1.1 chopps * Copyright (c) 1982, 1990 The Regents of the University of California.
7 1.1 chopps * All rights reserved.
8 1.1 chopps *
9 1.1 chopps * Redistribution and use in source and binary forms, with or without
10 1.1 chopps * modification, are permitted provided that the following conditions
11 1.1 chopps * are met:
12 1.1 chopps * 1. Redistributions of source code must retain the above copyright
13 1.1 chopps * notice, this list of conditions and the following disclaimer.
14 1.1 chopps * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 chopps * notice, this list of conditions and the following disclaimer in the
16 1.1 chopps * documentation and/or other materials provided with the distribution.
17 1.1 chopps * 3. All advertising materials mentioning features or use of this software
18 1.1 chopps * must display the following acknowledgement:
19 1.1 chopps * This product includes software developed by the University of
20 1.1 chopps * California, Berkeley and its contributors.
21 1.1 chopps * 4. Neither the name of the University nor the names of its contributors
22 1.1 chopps * may be used to endorse or promote products derived from this software
23 1.1 chopps * without specific prior written permission.
24 1.1 chopps *
25 1.1 chopps * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 1.1 chopps * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 1.1 chopps * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 1.1 chopps * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 1.1 chopps * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 1.1 chopps * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 1.1 chopps * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 1.1 chopps * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 1.1 chopps * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 1.1 chopps * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 1.1 chopps * SUCH DAMAGE.
36 1.1 chopps *
37 1.1 chopps * @(#)dma.c
38 1.1 chopps */
39 1.1 chopps
40 1.1 chopps #include <sys/param.h>
41 1.1 chopps #include <sys/systm.h>
42 1.1 chopps #include <sys/kernel.h>
43 1.1 chopps #include <sys/device.h>
44 1.16 bouyer #include <dev/scsipi/scsi_all.h>
45 1.16 bouyer #include <dev/scsipi/scsipi_all.h>
46 1.16 bouyer #include <dev/scsipi/scsiconf.h>
47 1.1 chopps #include <vm/vm.h>
48 1.1 chopps #include <vm/vm_kern.h>
49 1.1 chopps #include <vm/vm_page.h>
50 1.1 chopps #include <machine/pmap.h>
51 1.1 chopps #include <amiga/amiga/custom.h>
52 1.1 chopps #include <amiga/amiga/cc.h>
53 1.1 chopps #include <amiga/amiga/device.h>
54 1.1 chopps #include <amiga/amiga/isr.h>
55 1.1 chopps #include <amiga/dev/sfasreg.h>
56 1.1 chopps #include <amiga/dev/sfasvar.h>
57 1.1 chopps #include <amiga/dev/zbusvar.h>
58 1.1 chopps #include <amiga/dev/bzscreg.h>
59 1.1 chopps #include <amiga/dev/bzscvar.h>
60 1.1 chopps
61 1.1 chopps void bzscattach __P((struct device *, struct device *, void *));
62 1.14 veego int bzscmatch __P((struct device *, struct cfdata *, void *));
63 1.1 chopps
64 1.16 bouyer struct scsipi_adapter bzsc_scsiswitch = {
65 1.1 chopps sfas_scsicmd,
66 1.1 chopps sfas_minphys,
67 1.1 chopps 0, /* no lun support */
68 1.1 chopps 0, /* no lun support */
69 1.1 chopps };
70 1.1 chopps
71 1.16 bouyer struct scsipi_device bzsc_scsidev = {
72 1.1 chopps NULL, /* use default error handler */
73 1.1 chopps NULL, /* do not have a start functio */
74 1.1 chopps NULL, /* have no async handler */
75 1.1 chopps NULL, /* Use default done routine */
76 1.1 chopps };
77 1.1 chopps
78 1.6 thorpej struct cfattach bzsc_ca = {
79 1.6 thorpej sizeof(struct bzsc_softc), bzscmatch, bzscattach
80 1.6 thorpej };
81 1.1 chopps
82 1.6 thorpej struct cfdriver bzsc_cd = {
83 1.6 thorpej NULL, "bzsc", DV_DULL, NULL, 0
84 1.6 thorpej };
85 1.1 chopps
86 1.7 veego int bzsc_intr __P((void *));
87 1.7 veego void bzsc_set_dma_adr __P((struct sfas_softc *sc, vm_offset_t ptr, int mode));
88 1.7 veego void bzsc_set_dma_tc __P((struct sfas_softc *sc, unsigned int len));
89 1.7 veego int bzsc_setup_dma __P((struct sfas_softc *sc, vm_offset_t ptr, int len,
90 1.1 chopps int mode));
91 1.1 chopps int bzsc_build_dma_chain __P((struct sfas_softc *sc,
92 1.1 chopps struct sfas_dma_chain *chain, void *p, int l));
93 1.7 veego int bzsc_need_bump __P((struct sfas_softc *sc, vm_offset_t ptr, int len));
94 1.7 veego void bzsc_led_dummy __P((struct sfas_softc *sc, int mode));
95 1.1 chopps
96 1.1 chopps /*
97 1.1 chopps * if we are an Advanced Systems & Software FastlaneZ3
98 1.1 chopps */
99 1.7 veego int
100 1.14 veego bzscmatch(pdp, cfp, auxp)
101 1.7 veego struct device *pdp;
102 1.14 veego struct cfdata *cfp;
103 1.14 veego void *auxp;
104 1.1 chopps {
105 1.7 veego struct zbus_args *zap;
106 1.9 is vu_char *ta;
107 1.1 chopps
108 1.7 veego if (!is_a1200())
109 1.7 veego return(0);
110 1.1 chopps
111 1.7 veego zap = auxp;
112 1.9 is if (zap->manid != 0x2140 || zap->prodid != 11)
113 1.9 is return(0);
114 1.9 is
115 1.9 is ta = (vu_char *)(((char *)zap->va)+0x10010);
116 1.9 is if (badbaddr((caddr_t)ta))
117 1.9 is return(0);
118 1.9 is
119 1.9 is *ta = 0;
120 1.9 is *ta = 1;
121 1.9 is DELAY(5);
122 1.9 is if (*ta != 1)
123 1.9 is return(0);
124 1.1 chopps
125 1.9 is return(1);
126 1.1 chopps }
127 1.1 chopps
128 1.7 veego void
129 1.7 veego bzscattach(pdp, dp, auxp)
130 1.7 veego struct device *pdp;
131 1.7 veego struct device *dp;
132 1.7 veego void *auxp;
133 1.1 chopps {
134 1.1 chopps struct bzsc_softc *sc;
135 1.1 chopps struct zbus_args *zap;
136 1.1 chopps bzsc_regmap_p rp;
137 1.1 chopps vu_char *fas;
138 1.1 chopps
139 1.1 chopps zap = auxp;
140 1.1 chopps fas = (vu_char *)(((char *)zap->va)+0x10000);
141 1.1 chopps
142 1.1 chopps sc = (struct bzsc_softc *)dp;
143 1.1 chopps rp = &sc->sc_regmap;
144 1.1 chopps
145 1.1 chopps rp->FAS216.sfas_tc_low = &fas[0x00];
146 1.1 chopps rp->FAS216.sfas_tc_mid = &fas[0x02];
147 1.1 chopps rp->FAS216.sfas_fifo = &fas[0x04];
148 1.1 chopps rp->FAS216.sfas_command = &fas[0x06];
149 1.1 chopps rp->FAS216.sfas_dest_id = &fas[0x08];
150 1.1 chopps rp->FAS216.sfas_timeout = &fas[0x0A];
151 1.1 chopps rp->FAS216.sfas_syncper = &fas[0x0C];
152 1.1 chopps rp->FAS216.sfas_syncoff = &fas[0x0E];
153 1.1 chopps rp->FAS216.sfas_config1 = &fas[0x10];
154 1.1 chopps rp->FAS216.sfas_clkconv = &fas[0x12];
155 1.1 chopps rp->FAS216.sfas_test = &fas[0x14];
156 1.1 chopps rp->FAS216.sfas_config2 = &fas[0x16];
157 1.1 chopps rp->FAS216.sfas_config3 = &fas[0x18];
158 1.1 chopps rp->FAS216.sfas_tc_high = &fas[0x1C];
159 1.1 chopps rp->FAS216.sfas_fifo_bot = &fas[0x1E];
160 1.1 chopps rp->cclkaddr = &fas[0x21];
161 1.1 chopps rp->epowaddr = &fas[0x31];
162 1.1 chopps
163 1.1 chopps sc->sc_softc.sc_fas = (sfas_regmap_p)rp;
164 1.1 chopps sc->sc_softc.sc_spec = 0;
165 1.1 chopps
166 1.1 chopps sc->sc_softc.sc_led = bzsc_led_dummy;
167 1.1 chopps
168 1.1 chopps sc->sc_softc.sc_setup_dma = bzsc_setup_dma;
169 1.1 chopps sc->sc_softc.sc_build_dma_chain = bzsc_build_dma_chain;
170 1.1 chopps sc->sc_softc.sc_need_bump = bzsc_need_bump;
171 1.1 chopps
172 1.1 chopps sc->sc_softc.sc_clock_freq = 40; /* BlizzardII 1230 runs at 40MHz? */
173 1.1 chopps sc->sc_softc.sc_timeout = 250; /* Set default timeout to 250ms */
174 1.1 chopps sc->sc_softc.sc_config_flags = 0;
175 1.1 chopps sc->sc_softc.sc_host_id = 7;
176 1.1 chopps
177 1.1 chopps sc->sc_softc.sc_bump_sz = NBPG;
178 1.1 chopps sc->sc_softc.sc_bump_pa = 0x0;
179 1.1 chopps
180 1.1 chopps sfasinitialize((struct sfas_softc *)sc);
181 1.1 chopps
182 1.16 bouyer sc->sc_softc.sc_link.scsipi_scsi.channel = SCSI_CHANNEL_ONLY_ONE;
183 1.1 chopps sc->sc_softc.sc_link.adapter_softc = sc;
184 1.16 bouyer sc->sc_softc.sc_link.scsipi_scsi.adapter_target = sc->sc_softc.sc_host_id;
185 1.1 chopps sc->sc_softc.sc_link.adapter = &bzsc_scsiswitch;
186 1.1 chopps sc->sc_softc.sc_link.device = &bzsc_scsidev;
187 1.1 chopps sc->sc_softc.sc_link.openings = 1;
188 1.16 bouyer sc->sc_softc.sc_link.scsipi_scsi.max_target = 7;
189 1.16 bouyer sc->sc_softc.sc_link.type = BUS_SCSI;
190 1.1 chopps
191 1.13 christos printf("\n");
192 1.1 chopps
193 1.1 chopps sc->sc_softc.sc_isr.isr_intr = bzsc_intr;
194 1.1 chopps sc->sc_softc.sc_isr.isr_arg = &sc->sc_softc;
195 1.1 chopps sc->sc_softc.sc_isr.isr_ipl = 2;
196 1.1 chopps add_isr(&sc->sc_softc.sc_isr);
197 1.1 chopps
198 1.1 chopps /* attach all scsi units on us */
199 1.11 cgd config_found(dp, &sc->sc_softc.sc_link, scsiprint);
200 1.1 chopps }
201 1.1 chopps
202 1.7 veego int
203 1.7 veego bzsc_intr(arg)
204 1.7 veego void *arg;
205 1.1 chopps {
206 1.7 veego struct sfas_softc *dev = arg;
207 1.1 chopps bzsc_regmap_p rp;
208 1.1 chopps int quickints;
209 1.1 chopps
210 1.1 chopps rp = (bzsc_regmap_p)dev->sc_fas;
211 1.1 chopps
212 1.1 chopps if (!(*rp->FAS216.sfas_status & SFAS_STAT_INTERRUPT_PENDING))
213 1.1 chopps return(0);
214 1.1 chopps
215 1.1 chopps quickints = 16;
216 1.1 chopps do {
217 1.1 chopps dev->sc_status = *rp->FAS216.sfas_status;
218 1.1 chopps dev->sc_interrupt = *rp->FAS216.sfas_interrupt;
219 1.1 chopps
220 1.1 chopps if (dev->sc_interrupt & SFAS_INT_RESELECTED) {
221 1.1 chopps dev->sc_resel[0] = *rp->FAS216.sfas_fifo;
222 1.1 chopps dev->sc_resel[1] = *rp->FAS216.sfas_fifo;
223 1.1 chopps }
224 1.1 chopps sfasintr(dev);
225 1.1 chopps } while((*rp->FAS216.sfas_status & SFAS_STAT_INTERRUPT_PENDING) &&
226 1.1 chopps --quickints);
227 1.1 chopps
228 1.1 chopps return(1);
229 1.1 chopps }
230 1.1 chopps
231 1.1 chopps /* --------- */
232 1.7 veego void
233 1.7 veego bzsc_set_dma_adr(sc, ptr, mode)
234 1.7 veego struct sfas_softc *sc;
235 1.7 veego vm_offset_t ptr;
236 1.7 veego int mode;
237 1.1 chopps {
238 1.1 chopps bzsc_regmap_p rp;
239 1.1 chopps unsigned long p;
240 1.1 chopps
241 1.1 chopps rp = (bzsc_regmap_p)sc->sc_fas;
242 1.1 chopps
243 1.4 chopps p = ((unsigned long)ptr)>>1;
244 1.1 chopps
245 1.1 chopps if (mode == SFAS_DMA_WRITE)
246 1.1 chopps p |= BZSC_DMA_WRITE;
247 1.1 chopps else
248 1.2 chopps p |= BZSC_DMA_READ;
249 1.1 chopps
250 1.1 chopps *rp->epowaddr = (u_char)(p>>24) & 0xFF;
251 1.1 chopps *rp->cclkaddr = (u_char)(p>>16) & 0xFF;
252 1.1 chopps *rp->cclkaddr = (u_char)(p>> 8) & 0xFF;
253 1.1 chopps *rp->cclkaddr = (u_char)(p ) & 0xFF;
254 1.1 chopps }
255 1.1 chopps
256 1.1 chopps /* Set DMA transfer counter */
257 1.7 veego void
258 1.7 veego bzsc_set_dma_tc(sc, len)
259 1.7 veego struct sfas_softc *sc;
260 1.7 veego unsigned int len;
261 1.1 chopps {
262 1.1 chopps *sc->sc_fas->sfas_tc_low = len; len >>= 8;
263 1.1 chopps *sc->sc_fas->sfas_tc_mid = len; len >>= 8;
264 1.1 chopps *sc->sc_fas->sfas_tc_high = len;
265 1.1 chopps }
266 1.1 chopps
267 1.1 chopps /* Initialize DMA for transfer */
268 1.7 veego int
269 1.7 veego bzsc_setup_dma(sc, ptr, len, mode)
270 1.7 veego struct sfas_softc *sc;
271 1.7 veego vm_offset_t ptr;
272 1.7 veego int len;
273 1.7 veego int mode;
274 1.1 chopps {
275 1.1 chopps int retval;
276 1.1 chopps
277 1.1 chopps retval = 0;
278 1.1 chopps
279 1.1 chopps switch(mode) {
280 1.1 chopps case SFAS_DMA_READ:
281 1.1 chopps case SFAS_DMA_WRITE:
282 1.1 chopps bzsc_set_dma_adr(sc, ptr, mode);
283 1.1 chopps bzsc_set_dma_tc(sc, len);
284 1.1 chopps break;
285 1.1 chopps case SFAS_DMA_CLEAR:
286 1.1 chopps default:
287 1.1 chopps retval = (*sc->sc_fas->sfas_tc_high << 16) |
288 1.1 chopps (*sc->sc_fas->sfas_tc_mid << 8) |
289 1.1 chopps *sc->sc_fas->sfas_tc_low;
290 1.1 chopps
291 1.1 chopps bzsc_set_dma_tc(sc, 0);
292 1.1 chopps break;
293 1.1 chopps }
294 1.1 chopps
295 1.1 chopps return(retval);
296 1.1 chopps }
297 1.1 chopps
298 1.1 chopps /* Check if address and len is ok for DMA transfer */
299 1.7 veego int
300 1.7 veego bzsc_need_bump(sc, ptr, len)
301 1.7 veego struct sfas_softc *sc;
302 1.7 veego vm_offset_t ptr;
303 1.7 veego int len;
304 1.1 chopps {
305 1.1 chopps int p;
306 1.1 chopps
307 1.5 chopps p = (int)ptr & 0x03;
308 1.1 chopps
309 1.1 chopps if (p) {
310 1.1 chopps p = 4-p;
311 1.1 chopps
312 1.1 chopps if (len < 256)
313 1.1 chopps p = len;
314 1.1 chopps }
315 1.1 chopps
316 1.1 chopps return(p);
317 1.1 chopps }
318 1.1 chopps
319 1.1 chopps /* Interrupt driven routines */
320 1.7 veego int
321 1.7 veego bzsc_build_dma_chain(sc, chain, p, l)
322 1.7 veego struct sfas_softc *sc;
323 1.7 veego struct sfas_dma_chain *chain;
324 1.7 veego void *p;
325 1.7 veego int l;
326 1.1 chopps {
327 1.1 chopps int n;
328 1.1 chopps
329 1.1 chopps if (!l)
330 1.1 chopps return(0);
331 1.1 chopps
332 1.1 chopps #define set_link(n, p, l, f)\
333 1.1 chopps do { chain[n].ptr = (p); chain[n].len = (l); chain[n++].flg = (f); } while(0)
334 1.1 chopps
335 1.1 chopps n = 0;
336 1.1 chopps
337 1.1 chopps if (l < 512)
338 1.1 chopps set_link(n, (vm_offset_t)p, l, SFAS_CHAIN_BUMP);
339 1.1 chopps else if (
340 1.8 is #if defined(M68040) || defined(M68060)
341 1.3 chopps ((mmutype == MMU_68040) && ((vm_offset_t)p >= 0xFFFC0000)) &&
342 1.1 chopps #endif
343 1.1 chopps ((vm_offset_t)p >= 0xFF000000)) {
344 1.1 chopps int len;
345 1.1 chopps
346 1.1 chopps while(l) {
347 1.1 chopps len = ((l > sc->sc_bump_sz) ? sc->sc_bump_sz : l);
348 1.1 chopps
349 1.1 chopps set_link(n, (vm_offset_t)p, len, SFAS_CHAIN_BUMP);
350 1.1 chopps
351 1.1 chopps p += len;
352 1.1 chopps l -= len;
353 1.1 chopps }
354 1.1 chopps } else {
355 1.1 chopps char *ptr;
356 1.1 chopps vm_offset_t pa, lastpa;
357 1.7 veego int len, prelen, max_t;
358 1.1 chopps
359 1.1 chopps ptr = p;
360 1.1 chopps len = l;
361 1.1 chopps
362 1.1 chopps pa = kvtop(ptr);
363 1.1 chopps prelen = ((int)ptr & 0x03);
364 1.1 chopps
365 1.1 chopps if (prelen) {
366 1.1 chopps prelen = 4-prelen;
367 1.1 chopps set_link(n, (vm_offset_t)ptr, prelen, SFAS_CHAIN_BUMP);
368 1.1 chopps ptr += prelen;
369 1.1 chopps len -= prelen;
370 1.1 chopps }
371 1.1 chopps
372 1.1 chopps lastpa = 0;
373 1.1 chopps while(len > 3) {
374 1.1 chopps pa = kvtop(ptr);
375 1.1 chopps max_t = NBPG - (pa & PGOFSET);
376 1.1 chopps if (max_t > len)
377 1.1 chopps max_t = len;
378 1.1 chopps
379 1.1 chopps max_t &= ~3;
380 1.1 chopps
381 1.1 chopps if (lastpa == pa)
382 1.1 chopps sc->sc_chain[n-1].len += max_t;
383 1.1 chopps else
384 1.1 chopps set_link(n, pa, max_t, SFAS_CHAIN_DMA);
385 1.1 chopps
386 1.1 chopps lastpa = pa+max_t;
387 1.1 chopps
388 1.1 chopps ptr += max_t;
389 1.1 chopps len -= max_t;
390 1.1 chopps }
391 1.1 chopps
392 1.1 chopps if (len)
393 1.1 chopps set_link(n, (vm_offset_t)ptr, len, SFAS_CHAIN_BUMP);
394 1.1 chopps }
395 1.1 chopps
396 1.1 chopps return(n);
397 1.1 chopps }
398 1.1 chopps
399 1.1 chopps /* Turn on led */
400 1.7 veego void bzsc_led_dummy(sc, mode)
401 1.7 veego struct sfas_softc *sc;
402 1.7 veego int mode;
403 1.1 chopps {
404 1.1 chopps }
405