asc.c revision 1.21 1 1.21 tsutsui /* $NetBSD: asc.c,v 1.21 2008/04/13 04:55:52 tsutsui Exp $ */
2 1.1 wdk /*-
3 1.1 wdk * Copyright (c) 2000 The NetBSD Foundation, Inc.
4 1.1 wdk * All rights reserved.
5 1.1 wdk *
6 1.1 wdk * This code is derived from software contributed to The NetBSD Foundation
7 1.1 wdk * by Wayne Knowles
8 1.1 wdk *
9 1.1 wdk * Redistribution and use in source and binary forms, with or without
10 1.1 wdk * modification, are permitted provided that the following conditions
11 1.1 wdk * are met:
12 1.1 wdk * 1. Redistributions of source code must retain the above copyright
13 1.1 wdk * notice, this list of conditions and the following disclaimer.
14 1.1 wdk * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 wdk * notice, this list of conditions and the following disclaimer in the
16 1.1 wdk * documentation and/or other materials provided with the distribution.
17 1.1 wdk * 3. All advertising materials mentioning features or use of this software
18 1.1 wdk * must display the following acknowledgement:
19 1.1 wdk * This product includes software developed by the NetBSD
20 1.1 wdk * Foundation, Inc. and its contributors.
21 1.1 wdk * 4. Neither the name of The NetBSD Foundation nor the names of its
22 1.1 wdk * contributors may be used to endorse or promote products derived
23 1.1 wdk * from this software without specific prior written permission.
24 1.1 wdk *
25 1.1 wdk * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 1.1 wdk * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 wdk * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 wdk * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29 1.1 wdk * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 wdk * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 wdk * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 wdk * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 wdk * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 wdk * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 wdk * POSSIBILITY OF SUCH DAMAGE.
36 1.1 wdk */
37 1.15 lukem
38 1.15 lukem #include <sys/cdefs.h>
39 1.21 tsutsui __KERNEL_RCSID(0, "$NetBSD: asc.c,v 1.21 2008/04/13 04:55:52 tsutsui Exp $");
40 1.1 wdk
41 1.1 wdk #include <sys/types.h>
42 1.1 wdk #include <sys/param.h>
43 1.1 wdk #include <sys/systm.h>
44 1.1 wdk #include <sys/kernel.h>
45 1.1 wdk #include <sys/errno.h>
46 1.1 wdk #include <sys/device.h>
47 1.1 wdk #include <sys/buf.h>
48 1.1 wdk #include <sys/malloc.h>
49 1.1 wdk
50 1.13 thorpej #include <uvm/uvm_extern.h>
51 1.13 thorpej
52 1.1 wdk #include <dev/scsipi/scsi_all.h>
53 1.1 wdk #include <dev/scsipi/scsipi_all.h>
54 1.1 wdk #include <dev/scsipi/scsiconf.h>
55 1.1 wdk #include <dev/scsipi/scsi_message.h>
56 1.1 wdk
57 1.1 wdk #include <machine/cpu.h>
58 1.1 wdk #include <machine/autoconf.h>
59 1.1 wdk #include <machine/mainboard.h>
60 1.1 wdk #include <machine/bus.h>
61 1.1 wdk
62 1.1 wdk #include <mipsco/obio/rambo.h>
63 1.1 wdk
64 1.1 wdk #include <dev/ic/ncr53c9xreg.h>
65 1.1 wdk #include <dev/ic/ncr53c9xvar.h>
66 1.1 wdk
67 1.1 wdk struct asc_softc {
68 1.1 wdk struct ncr53c9x_softc sc_ncr53c9x; /* glue to MI code */
69 1.1 wdk struct evcnt sc_intrcnt; /* Interrupt counter */
70 1.1 wdk bus_space_tag_t sc_bst;
71 1.1 wdk bus_space_handle_t sc_bsh; /* NCR 53c94 registers */
72 1.1 wdk bus_space_handle_t dm_bsh; /* RAMBO registers */
73 1.1 wdk bus_dma_tag_t sc_dmat;
74 1.1 wdk bus_dmamap_t sc_dmamap;
75 1.21 tsutsui uint8_t **sc_dmaaddr;
76 1.1 wdk size_t *sc_dmalen;
77 1.1 wdk size_t sc_dmasize;
78 1.1 wdk int sc_flags;
79 1.1 wdk #define DMA_IDLE 0x0
80 1.1 wdk #define DMA_PULLUP 0x1
81 1.1 wdk #define DMA_ACTIVE 0x2
82 1.1 wdk #define DMA_MAPLOADED 0x4
83 1.21 tsutsui uint32_t dm_mode;
84 1.1 wdk int dm_curseg;
85 1.1 wdk };
86 1.1 wdk
87 1.21 tsutsui static int ascmatch(device_t, cfdata_t, void *);
88 1.21 tsutsui static void ascattach(device_t, device_t, void *);
89 1.1 wdk
90 1.21 tsutsui CFATTACH_DECL_NEW(asc, sizeof(struct asc_softc),
91 1.12 thorpej ascmatch, ascattach, NULL, NULL);
92 1.1 wdk
93 1.1 wdk /*
94 1.1 wdk * Functions and the switch for the MI code.
95 1.1 wdk */
96 1.21 tsutsui static uint8_t asc_read_reg(struct ncr53c9x_softc *, int);
97 1.21 tsutsui static void asc_write_reg(struct ncr53c9x_softc *, int, uint8_t);
98 1.21 tsutsui static int asc_dma_isintr(struct ncr53c9x_softc *);
99 1.21 tsutsui static void asc_dma_reset(struct ncr53c9x_softc *);
100 1.21 tsutsui static int asc_dma_intr(struct ncr53c9x_softc *);
101 1.21 tsutsui static int asc_dma_setup(struct ncr53c9x_softc *, uint8_t **,
102 1.6 matt size_t *, int, size_t *);
103 1.21 tsutsui static void asc_dma_go(struct ncr53c9x_softc *);
104 1.21 tsutsui static void asc_dma_stop(struct ncr53c9x_softc *);
105 1.21 tsutsui static int asc_dma_isactive(struct ncr53c9x_softc *);
106 1.1 wdk
107 1.1 wdk static struct ncr53c9x_glue asc_glue = {
108 1.1 wdk asc_read_reg,
109 1.1 wdk asc_write_reg,
110 1.1 wdk asc_dma_isintr,
111 1.1 wdk asc_dma_reset,
112 1.1 wdk asc_dma_intr,
113 1.1 wdk asc_dma_setup,
114 1.1 wdk asc_dma_go,
115 1.1 wdk asc_dma_stop,
116 1.1 wdk asc_dma_isactive,
117 1.1 wdk NULL, /* gl_clear_latched_intr */
118 1.1 wdk };
119 1.1 wdk
120 1.21 tsutsui static int asc_intr(void *);
121 1.3 wdk
122 1.21 tsutsui #define MAX_SCSI_XFER (64 * 1024)
123 1.1 wdk #define MAX_DMA_SZ MAX_SCSI_XFER
124 1.21 tsutsui #define DMA_SEGS (MAX_DMA_SZ / PAGE_SIZE)
125 1.1 wdk
126 1.1 wdk static int
127 1.21 tsutsui ascmatch(device_t parent, cfdata_t cf, void *aux)
128 1.1 wdk {
129 1.21 tsutsui
130 1.1 wdk return 1;
131 1.1 wdk }
132 1.1 wdk
133 1.1 wdk static void
134 1.21 tsutsui ascattach(device_t parent, device_t self, void *aux)
135 1.1 wdk {
136 1.21 tsutsui struct asc_softc *esc = device_private(self);
137 1.21 tsutsui struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
138 1.1 wdk struct confargs *ca = aux;
139 1.1 wdk
140 1.1 wdk /*
141 1.1 wdk * Set up glue for MI code early; we use some of it here.
142 1.1 wdk */
143 1.21 tsutsui sc->sc_dev = self;
144 1.1 wdk sc->sc_glue = &asc_glue;
145 1.1 wdk
146 1.1 wdk esc->sc_bst = ca->ca_bustag;
147 1.1 wdk esc->sc_dmat = ca->ca_dmatag;
148 1.1 wdk
149 1.1 wdk if (bus_space_map(ca->ca_bustag, ca->ca_addr,
150 1.21 tsutsui 16 * 4, /* sizeof (ncr53c9xreg) */
151 1.21 tsutsui BUS_SPACE_MAP_LINEAR,
152 1.21 tsutsui &esc->sc_bsh) != 0) {
153 1.21 tsutsui aprint_error(": cannot map registers\n");
154 1.1 wdk return;
155 1.1 wdk }
156 1.1 wdk
157 1.1 wdk if (bus_space_map(ca->ca_bustag, RAMBO_BASE, sizeof(struct rambo_ch),
158 1.21 tsutsui BUS_SPACE_MAP_LINEAR, &esc->dm_bsh) != 0) {
159 1.21 tsutsui aprint_error(": cannot map DMA registers\n");
160 1.1 wdk return;
161 1.1 wdk }
162 1.1 wdk
163 1.1 wdk if (bus_dmamap_create(esc->sc_dmat, MAX_DMA_SZ,
164 1.21 tsutsui DMA_SEGS, MAX_DMA_SZ, RB_BOUNDRY, BUS_DMA_WAITOK,
165 1.21 tsutsui &esc->sc_dmamap) != 0) {
166 1.21 tsutsui aprint_error(": failed to create dmamap\n");
167 1.1 wdk return;
168 1.1 wdk }
169 1.1 wdk
170 1.1 wdk evcnt_attach_dynamic(&esc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
171 1.21 tsutsui device_xname(self), "intr");
172 1.1 wdk
173 1.1 wdk esc->sc_flags = DMA_IDLE;
174 1.1 wdk asc_dma_reset(sc);
175 1.1 wdk
176 1.1 wdk /* Other settings */
177 1.1 wdk sc->sc_id = 7;
178 1.1 wdk sc->sc_freq = 24; /* 24 MHz clock */
179 1.1 wdk
180 1.1 wdk /*
181 1.1 wdk * Setup for genuine NCR 53C94 SCSI Controller
182 1.1 wdk */
183 1.1 wdk
184 1.1 wdk sc->sc_cfg1 = sc->sc_id | NCRCFG1_PARENB;
185 1.7 wdk sc->sc_cfg2 = NCRCFG2_SCSI2 | NCRCFG2_FE;
186 1.7 wdk sc->sc_cfg3 = NCRCFG3_CDB | NCRCFG3_QTE | NCRCFG3_FSCSI;
187 1.1 wdk sc->sc_rev = NCR_VARIANT_NCR53C94;
188 1.1 wdk
189 1.1 wdk sc->sc_minsync = (1000 / sc->sc_freq) * 5 / 4;
190 1.1 wdk sc->sc_maxxfer = MAX_SCSI_XFER;
191 1.1 wdk
192 1.1 wdk #ifdef OLDNCR
193 1.21 tsutsui if (NCR_READ_REG(sc, NCR_CFG3) == 0) {
194 1.21 tsutsui aprint_normal(" [old revision]");
195 1.1 wdk sc->sc_cfg2 = 0;
196 1.1 wdk sc->sc_cfg3 = 0;
197 1.1 wdk sc->sc_minsync = 0;
198 1.1 wdk }
199 1.1 wdk #endif
200 1.1 wdk
201 1.9 bouyer sc->sc_adapter.adapt_minphys = minphys;
202 1.9 bouyer sc->sc_adapter.adapt_request = ncr53c9x_scsipi_request;
203 1.9 bouyer ncr53c9x_attach(sc);
204 1.1 wdk
205 1.3 wdk bus_intr_establish(esc->sc_bst, SYS_INTR_SCSI, 0, 0, asc_intr, esc);
206 1.1 wdk }
207 1.1 wdk
208 1.1 wdk /*
209 1.1 wdk * Glue functions.
210 1.1 wdk */
211 1.1 wdk
212 1.21 tsutsui static uint8_t
213 1.6 matt asc_read_reg(struct ncr53c9x_softc *sc, int reg)
214 1.1 wdk {
215 1.1 wdk struct asc_softc *esc = (struct asc_softc *)sc;
216 1.1 wdk
217 1.1 wdk return bus_space_read_1(esc->sc_bst, esc->sc_bsh, reg * 4 + 3);
218 1.1 wdk }
219 1.1 wdk
220 1.6 matt static void
221 1.21 tsutsui asc_write_reg(struct ncr53c9x_softc *sc, int reg, uint8_t val)
222 1.1 wdk {
223 1.1 wdk struct asc_softc *esc = (struct asc_softc *)sc;
224 1.1 wdk
225 1.1 wdk bus_space_write_1(esc->sc_bst, esc->sc_bsh, reg * 4 + 3, val);
226 1.1 wdk }
227 1.1 wdk
228 1.6 matt static void
229 1.6 matt dma_status(struct ncr53c9x_softc *sc)
230 1.1 wdk {
231 1.1 wdk struct asc_softc *esc = (struct asc_softc *)sc;
232 1.1 wdk int count;
233 1.1 wdk int stat;
234 1.1 wdk void *addr;
235 1.21 tsutsui uint32_t tc;
236 1.1 wdk
237 1.21 tsutsui tc = (asc_read_reg(sc, NCR_TCM) << 8) + asc_read_reg(sc, NCR_TCL);
238 1.1 wdk count = bus_space_read_2(esc->sc_bst, esc->dm_bsh, RAMBO_BLKCNT);
239 1.1 wdk stat = bus_space_read_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE);
240 1.21 tsutsui addr = (void *)bus_space_read_4(esc->sc_bst, esc->dm_bsh, RAMBO_CADDR);
241 1.1 wdk
242 1.4 wdk printf("rambo status: cnt=%x addr=%p stat=%08x tc=%04x "
243 1.21 tsutsui "ncr_stat=0x%02x ncr_fifo=0x%02x\n",
244 1.21 tsutsui count, addr, stat, tc,
245 1.21 tsutsui asc_read_reg(sc, NCR_STAT),
246 1.21 tsutsui asc_read_reg(sc, NCR_FFLAG));
247 1.4 wdk }
248 1.4 wdk
249 1.17 perry static inline void
250 1.6 matt check_fifo(struct asc_softc *esc)
251 1.4 wdk {
252 1.21 tsutsui int i = 100;
253 1.4 wdk
254 1.4 wdk while (i && !(bus_space_read_4(esc->sc_bst, esc->dm_bsh,
255 1.21 tsutsui RAMBO_MODE) & RB_FIFO_EMPTY)) {
256 1.21 tsutsui DELAY(1);
257 1.21 tsutsui i--;
258 1.4 wdk }
259 1.4 wdk
260 1.21 tsutsui if (i == 0) {
261 1.4 wdk dma_status((void *)esc);
262 1.4 wdk panic("fifo didn't flush");
263 1.4 wdk }
264 1.1 wdk }
265 1.1 wdk
266 1.6 matt static int
267 1.6 matt asc_dma_isintr(struct ncr53c9x_softc *sc)
268 1.1 wdk {
269 1.21 tsutsui
270 1.1 wdk return NCR_READ_REG(sc, NCR_STAT) & NCRSTAT_INT;
271 1.1 wdk }
272 1.1 wdk
273 1.6 matt static void
274 1.6 matt asc_dma_reset(struct ncr53c9x_softc *sc)
275 1.1 wdk {
276 1.1 wdk struct asc_softc *esc = (struct asc_softc *)sc;
277 1.1 wdk
278 1.1 wdk bus_space_write_2(esc->sc_bst, esc->dm_bsh, RAMBO_BLKCNT, 0);
279 1.1 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE,
280 1.21 tsutsui RB_CLRFIFO|RB_CLRERROR);
281 1.1 wdk DELAY(10);
282 1.1 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE, 0);
283 1.1 wdk
284 1.1 wdk if (esc->sc_flags & DMA_MAPLOADED)
285 1.1 wdk bus_dmamap_unload(esc->sc_dmat, esc->sc_dmamap);
286 1.1 wdk
287 1.1 wdk esc->sc_flags = DMA_IDLE;
288 1.1 wdk }
289 1.1 wdk
290 1.1 wdk /*
291 1.1 wdk * Setup a DMA transfer
292 1.1 wdk */
293 1.1 wdk
294 1.1 wdk static int
295 1.21 tsutsui asc_dma_setup(struct ncr53c9x_softc *sc, uint8_t **addr, size_t *len,
296 1.21 tsutsui int datain, size_t *dmasize)
297 1.1 wdk {
298 1.1 wdk struct asc_softc *esc = (struct asc_softc *)sc;
299 1.1 wdk paddr_t paddr;
300 1.1 wdk size_t count, blocks;
301 1.1 wdk int prime, err;
302 1.1 wdk
303 1.1 wdk #ifdef DIAGNOSTIC
304 1.1 wdk if (esc->sc_flags & DMA_ACTIVE) {
305 1.1 wdk dma_status(sc);
306 1.1 wdk panic("DMA active");
307 1.1 wdk }
308 1.1 wdk #endif
309 1.1 wdk
310 1.1 wdk esc->sc_dmaaddr = addr;
311 1.1 wdk esc->sc_dmalen = len;
312 1.1 wdk esc->sc_dmasize = *dmasize;
313 1.1 wdk esc->sc_flags = datain ? DMA_PULLUP : 0;
314 1.1 wdk
315 1.1 wdk NCR_DMA(("asc_dma_setup va=%p len=%d datain=%d count=%d\n",
316 1.21 tsutsui *addr, *len, datain, esc->sc_dmasize));
317 1.1 wdk
318 1.5 wdk if (esc->sc_dmasize == 0)
319 1.5 wdk return 0;
320 1.5 wdk
321 1.1 wdk /* have dmamap for the transfering addresses */
322 1.21 tsutsui if ((err = bus_dmamap_load(esc->sc_dmat, esc->sc_dmamap,
323 1.21 tsutsui *esc->sc_dmaaddr, esc->sc_dmasize, NULL /* kernel address */, BUS_DMA_NOWAIT)) != 0)
324 1.21 tsutsui panic("%s: bus_dmamap_load err=%d",
325 1.21 tsutsui device_xname(sc->sc_dev), err);
326 1.1 wdk
327 1.1 wdk esc->sc_flags |= DMA_MAPLOADED;
328 1.1 wdk
329 1.1 wdk paddr = esc->sc_dmamap->dm_segs[0].ds_addr;
330 1.1 wdk count = esc->sc_dmamap->dm_segs[0].ds_len;
331 1.21 tsutsui prime = (uint32_t)paddr & 0x3f;
332 1.7 wdk blocks = (prime + count + 63) >> 6;
333 1.1 wdk
334 1.21 tsutsui esc->dm_mode = datain ? RB_DMA_WR : RB_DMA_RD;
335 1.7 wdk
336 1.7 wdk /* Set transfer direction and disable DMA */
337 1.7 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE, esc->dm_mode);
338 1.1 wdk
339 1.1 wdk /* Load DMA transfer address */
340 1.21 tsutsui bus_space_write_4(esc->sc_bst, esc->dm_bsh, RAMBO_LADDR, paddr & ~0x3f);
341 1.1 wdk
342 1.7 wdk /* Load number of blocks to DMA (1 block = 64 bytes) */
343 1.7 wdk bus_space_write_2(esc->sc_bst, esc->dm_bsh, RAMBO_BLKCNT, blocks);
344 1.1 wdk
345 1.1 wdk /* If non block-aligned transfer prime FIFO manually */
346 1.1 wdk if (prime) {
347 1.7 wdk /* Enable DMA to prime the FIFO buffer */
348 1.7 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh,
349 1.21 tsutsui RAMBO_MODE, esc->dm_mode | RB_DMA_ENABLE);
350 1.7 wdk
351 1.1 wdk if (esc->sc_flags & DMA_PULLUP) {
352 1.5 wdk /* Read from NCR 53c94 controller*/
353 1.21 tsutsui uint16_t *p;
354 1.4 wdk
355 1.21 tsutsui p = (uint16_t *)((uint32_t)*esc->sc_dmaaddr & ~0x3f);
356 1.5 wdk bus_space_write_multi_2(esc->sc_bst, esc->dm_bsh,
357 1.21 tsutsui RAMBO_FIFO, p, prime>>1);
358 1.7 wdk } else
359 1.7 wdk /* Write to NCR 53C94 controller */
360 1.1 wdk while (prime > 0) {
361 1.21 tsutsui (void)bus_space_read_2(esc->sc_bst, esc->dm_bsh,
362 1.21 tsutsui RAMBO_FIFO);
363 1.1 wdk prime -= 2;
364 1.1 wdk }
365 1.7 wdk /* Leave DMA disabled while we setup NCR controller */
366 1.7 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE,
367 1.21 tsutsui esc->dm_mode);
368 1.1 wdk }
369 1.10 wdk
370 1.10 wdk bus_dmamap_sync(esc->sc_dmat, esc->sc_dmamap, 0, esc->sc_dmasize,
371 1.21 tsutsui datain ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
372 1.7 wdk
373 1.1 wdk esc->dm_curseg = 0;
374 1.7 wdk esc->dm_mode |= RB_DMA_ENABLE;
375 1.7 wdk if (esc->sc_dmamap->dm_nsegs > 1)
376 1.7 wdk esc->dm_mode |= RB_INT_ENABLE; /* Requires DMA chaining */
377 1.7 wdk
378 1.1 wdk return 0;
379 1.1 wdk }
380 1.1 wdk
381 1.6 matt static void
382 1.6 matt asc_dma_go(struct ncr53c9x_softc *sc)
383 1.1 wdk {
384 1.1 wdk struct asc_softc *esc = (struct asc_softc *)sc;
385 1.1 wdk
386 1.7 wdk /* Start DMA */
387 1.7 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE, esc->dm_mode);
388 1.7 wdk
389 1.1 wdk esc->sc_flags |= DMA_ACTIVE;
390 1.1 wdk }
391 1.1 wdk
392 1.6 matt static int
393 1.6 matt asc_dma_intr(struct ncr53c9x_softc *sc)
394 1.1 wdk {
395 1.1 wdk struct asc_softc *esc = (struct asc_softc *)sc;
396 1.1 wdk
397 1.1 wdk size_t resid, len;
398 1.1 wdk int trans;
399 1.21 tsutsui uint32_t status;
400 1.1 wdk u_int tcl, tcm;
401 1.1 wdk
402 1.1 wdk #ifdef DIAGNOSTIC
403 1.21 tsutsui if ((esc->sc_flags & DMA_ACTIVE) == 0) {
404 1.1 wdk dma_status(sc);
405 1.1 wdk panic("DMA not active");
406 1.1 wdk }
407 1.1 wdk #endif
408 1.1 wdk
409 1.5 wdk resid = 0;
410 1.21 tsutsui if ((esc->sc_flags & DMA_PULLUP) == 0 &&
411 1.5 wdk (resid = (NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF)) != 0) {
412 1.1 wdk NCR_DMA(("asc_intr: empty FIFO of %d ", resid));
413 1.1 wdk DELAY(10);
414 1.1 wdk }
415 1.4 wdk
416 1.5 wdk resid += (tcl = NCR_READ_REG(sc, NCR_TCL)) +
417 1.21 tsutsui ((tcm = NCR_READ_REG(sc, NCR_TCM)) << 8);
418 1.5 wdk
419 1.5 wdk if (esc->sc_dmasize == 0) { /* Transfer pad operation */
420 1.5 wdk NCR_DMA(("asc_intr: discard %d bytes\n", resid));
421 1.5 wdk return 0;
422 1.5 wdk }
423 1.5 wdk
424 1.1 wdk trans = esc->sc_dmasize - resid;
425 1.1 wdk if (trans < 0) { /* transferred < 0 ? */
426 1.21 tsutsui printf("%s: xfer (%d) > req (%d)\n",
427 1.21 tsutsui __func__, trans, esc->sc_dmasize);
428 1.1 wdk trans = esc->sc_dmasize;
429 1.1 wdk }
430 1.1 wdk
431 1.1 wdk NCR_DMA(("asc_intr: tcl=%d, tcm=%d; trans=%d, resid=%d\n",
432 1.21 tsutsui tcl, tcm, trans, resid));
433 1.1 wdk
434 1.1 wdk status = bus_space_read_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE);
435 1.1 wdk
436 1.21 tsutsui if ((status & RB_FIFO_EMPTY) == 0) { /* Data left in RAMBO FIFO */
437 1.21 tsutsui if ((esc->sc_flags & DMA_PULLUP) != 0) { /* SCSI Read */
438 1.1 wdk paddr_t ptr;
439 1.21 tsutsui uint16_t *p;
440 1.1 wdk
441 1.4 wdk resid = status & 0x1f;
442 1.4 wdk
443 1.1 wdk /* take the address of block to fixed up */
444 1.1 wdk ptr = bus_space_read_4(esc->sc_bst, esc->dm_bsh,
445 1.21 tsutsui RAMBO_CADDR);
446 1.1 wdk /* find the starting address of fractional data */
447 1.21 tsutsui p = (uint16_t *)MIPS_PHYS_TO_KSEG0(ptr + (resid << 1));
448 1.1 wdk
449 1.5 wdk /* duplicate trailing data to FIFO for force flush */
450 1.1 wdk len = RB_BLK_CNT - resid;
451 1.5 wdk bus_space_write_multi_2(esc->sc_bst, esc->dm_bsh,
452 1.21 tsutsui RAMBO_FIFO, p, len);
453 1.4 wdk check_fifo(esc);
454 1.1 wdk } else { /* SCSI Write */
455 1.1 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh,
456 1.21 tsutsui RAMBO_MODE, 0);
457 1.4 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh,
458 1.21 tsutsui RAMBO_MODE, RB_CLRFIFO);
459 1.1 wdk }
460 1.1 wdk }
461 1.1 wdk
462 1.4 wdk bus_space_write_2(esc->sc_bst, esc->dm_bsh, RAMBO_BLKCNT, 0);
463 1.4 wdk
464 1.1 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE, 0);
465 1.1 wdk
466 1.1 wdk bus_dmamap_sync(esc->sc_dmat, esc->sc_dmamap,
467 1.21 tsutsui 0, esc->sc_dmasize,
468 1.21 tsutsui (esc->sc_flags & DMA_PULLUP) != 0 ?
469 1.21 tsutsui BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
470 1.1 wdk bus_dmamap_unload(esc->sc_dmat, esc->sc_dmamap);
471 1.4 wdk
472 1.21 tsutsui *esc->sc_dmaaddr += trans;
473 1.1 wdk *esc->sc_dmalen -= trans;
474 1.1 wdk
475 1.1 wdk esc->sc_flags = DMA_IDLE;
476 1.1 wdk
477 1.1 wdk return 0;
478 1.1 wdk }
479 1.1 wdk
480 1.1 wdk
481 1.6 matt static void
482 1.6 matt asc_dma_stop(struct ncr53c9x_softc *sc)
483 1.1 wdk {
484 1.1 wdk struct asc_softc *esc = (struct asc_softc *)sc;
485 1.1 wdk
486 1.1 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE, 0);
487 1.21 tsutsui if ((esc->sc_flags & DMA_MAPLOADED) != 0)
488 1.1 wdk bus_dmamap_unload(esc->sc_dmat, esc->sc_dmamap);
489 1.1 wdk esc->sc_flags = DMA_IDLE;
490 1.1 wdk }
491 1.1 wdk
492 1.6 matt static int
493 1.6 matt asc_dma_isactive(struct ncr53c9x_softc *sc)
494 1.1 wdk {
495 1.1 wdk struct asc_softc *esc = (struct asc_softc *)sc;
496 1.21 tsutsui return (esc->sc_flags & DMA_ACTIVE) != 0 ? 1 : 0;
497 1.1 wdk }
498 1.1 wdk
499 1.6 matt static void
500 1.6 matt rambo_dma_chain(struct asc_softc *esc)
501 1.1 wdk {
502 1.1 wdk int seg;
503 1.1 wdk size_t count, blocks;
504 1.1 wdk paddr_t paddr;
505 1.1 wdk
506 1.1 wdk seg = ++esc->dm_curseg;
507 1.1 wdk
508 1.1 wdk #ifdef DIAGNOSTIC
509 1.21 tsutsui if ((esc->sc_flags & DMA_ACTIVE) == 0 || seg > esc->sc_dmamap->dm_nsegs)
510 1.1 wdk panic("Unexpected DMA chaining intr");
511 1.4 wdk
512 1.4 wdk /* Interrupt can only occur at terminal count, but double check */
513 1.4 wdk if (bus_space_read_2(esc->sc_bst, esc->dm_bsh, RAMBO_BLKCNT)) {
514 1.4 wdk dma_status((void *)esc);
515 1.4 wdk panic("rambo blkcnt != 0");
516 1.4 wdk }
517 1.1 wdk #endif
518 1.1 wdk
519 1.1 wdk paddr = esc->sc_dmamap->dm_segs[seg].ds_addr;
520 1.1 wdk count = esc->sc_dmamap->dm_segs[seg].ds_len;
521 1.1 wdk blocks = (count + 63) >> 6;
522 1.1 wdk
523 1.1 wdk /* Disable DMA interrupt if last segment */
524 1.21 tsutsui if (seg + 1 > esc->sc_dmamap->dm_nsegs) {
525 1.1 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh,
526 1.21 tsutsui RAMBO_MODE, esc->dm_mode & ~RB_INT_ENABLE);
527 1.1 wdk }
528 1.1 wdk
529 1.1 wdk /* Load transfer address for next DMA chain */
530 1.1 wdk bus_space_write_4(esc->sc_bst, esc->dm_bsh, RAMBO_LADDR, paddr);
531 1.1 wdk
532 1.1 wdk /* DMA restarts when we enter a new block count */
533 1.1 wdk bus_space_write_2(esc->sc_bst, esc->dm_bsh, RAMBO_BLKCNT, blocks);
534 1.1 wdk }
535 1.1 wdk
536 1.6 matt static int
537 1.6 matt asc_intr(void *arg)
538 1.1 wdk {
539 1.21 tsutsui uint32_t dma_stat;
540 1.3 wdk struct asc_softc *esc = arg;
541 1.21 tsutsui struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
542 1.3 wdk
543 1.3 wdk esc->sc_intrcnt.ev_count++;
544 1.3 wdk
545 1.3 wdk /* Check for RAMBO DMA Interrupt */
546 1.3 wdk dma_stat = bus_space_read_4(esc->sc_bst, esc->dm_bsh, RAMBO_MODE);
547 1.21 tsutsui if ((dma_stat & RB_INTR_PEND) != 0) {
548 1.3 wdk rambo_dma_chain(esc);
549 1.4 wdk }
550 1.4 wdk /* Check for NCR 53c94 interrupt */
551 1.4 wdk if (NCR_READ_REG(sc, NCR_STAT) & NCRSTAT_INT) {
552 1.4 wdk ncr53c9x_intr(sc);
553 1.3 wdk }
554 1.3 wdk return 0;
555 1.1 wdk }
556