1 /* $NetBSD: cbsc.c,v 1.29 2009/10/21 23:53:38 snj Exp $ */
4 * Copyright (c) 1997 Michael L. Hitch
5 * Copyright (c) 1982, 1990 The Regents of the University of California.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: cbsc.c,v 1.29 2009/10/21 23:53:38 snj Exp $");
37 #include <sys/types.h>
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/kernel.h>
41 #include <sys/errno.h>
42 #include <sys/ioctl.h>
43 #include <sys/device.h>
46 #include <sys/queue.h>
48 #include <uvm/uvm_extern.h>
50 #include <dev/scsipi/scsi_all.h>
51 #include <dev/scsipi/scsipi_all.h>
52 #include <dev/scsipi/scsiconf.h>
53 #include <dev/scsipi/scsi_message.h>
55 #include <machine/cpu.h>
56 #include <machine/param.h>
58 #include <dev/ic/ncr53c9xreg.h>
59 #include <dev/ic/ncr53c9xvar.h>
61 #include <amiga/amiga/isr.h>
62 #include <amiga/dev/cbscvar.h>
63 #include <amiga/dev/zbusvar.h>
66 #define badaddr(a) badaddr_read(a, 2, NULL)
69 int cbscmatch(device_t
, cfdata_t
, void *);
70 void cbscattach(device_t
, device_t
, void *);
72 /* Linkup to the rest of the kernel */
73 CFATTACH_DECL_NEW(cbsc
, sizeof(struct cbsc_softc
),
74 cbscmatch
, cbscattach
, NULL
, NULL
);
77 * Functions and the switch for the MI code.
79 uint8_t cbsc_read_reg(struct ncr53c9x_softc
*, int);
80 void cbsc_write_reg(struct ncr53c9x_softc
*, int, uint8_t);
81 int cbsc_dma_isintr(struct ncr53c9x_softc
*);
82 void cbsc_dma_reset(struct ncr53c9x_softc
*);
83 int cbsc_dma_intr(struct ncr53c9x_softc
*);
84 int cbsc_dma_setup(struct ncr53c9x_softc
*, uint8_t **,
85 size_t *, int, size_t *);
86 void cbsc_dma_go(struct ncr53c9x_softc
*);
87 void cbsc_dma_stop(struct ncr53c9x_softc
*);
88 int cbsc_dma_isactive(struct ncr53c9x_softc
*);
90 struct ncr53c9x_glue cbsc_glue
= {
103 /* Maximum DMA transfer length to reduce impact on high-speed serial input */
104 u_long cbsc_max_dma
= 1024;
105 extern int ser_open_speed
;
107 u_long cbsc_cnt_pio
= 0; /* number of PIO transfers */
108 u_long cbsc_cnt_dma
= 0; /* number of DMA transfers */
109 u_long cbsc_cnt_dma2
= 0; /* number of DMA transfers broken up */
110 u_long cbsc_cnt_dma3
= 0; /* number of pages combined */
119 int cbsc_trace_ptr
= 0;
120 int cbsc_trace_enable
= 1;
121 void cbsc_dump(void);
125 * if we are a Phase5 CyberSCSI [mark I?]
128 cbscmatch(device_t parent
, cfdata_t cf
, void *aux
)
130 struct zbus_args
*zap
;
131 volatile uint8_t *regs
;
134 if (zap
->manid
!= 0x2140)
135 return 0; /* It's not Phase5 */
136 if (zap
->prodid
!= 12 && zap
->prodid
!= 11)
137 return 0; /* Not CyberStorm MKI SCSI */
138 if (zap
->prodid
== 11 && iszthreepa(zap
->pa
))
139 return 0; /* Fastlane Z3! */
140 regs
= &((volatile uint8_t *)zap
->va
)[0xf400];
141 if (badaddr((void *)__UNVOLATILE(regs
)))
143 regs
[NCR_CFG1
* 4] = 0;
144 regs
[NCR_CFG1
* 4] = NCRCFG1_PARENB
| 7;
146 if (regs
[NCR_CFG1
* 4] != (NCRCFG1_PARENB
| 7))
152 * Attach this instance, and then all the sub-devices
155 cbscattach(device_t parent
, device_t self
, void *aux
)
157 struct cbsc_softc
*csc
= device_private(self
);
158 struct ncr53c9x_softc
*sc
= &csc
->sc_ncr53c9x
;
159 struct zbus_args
*zap
;
160 extern u_long scsi_nosync
;
161 extern int shift_nosync
;
162 extern int ncr53c9x_debug
;
165 * Set up the glue for MI code early; we use some of it here.
168 sc
->sc_glue
= &cbsc_glue
;
174 csc
->sc_reg
= &((volatile uint8_t *)zap
->va
)[0xf400];
175 csc
->sc_dmabase
= &csc
->sc_reg
[0x400];
177 sc
->sc_freq
= 40; /* Clocked at 40 MHz */
179 aprint_normal(": address %p", csc
->sc_reg
);
184 * It is necessary to try to load the 2nd config register here,
185 * to find out what rev the FAS chip is, else the ncr53c9x_reset
186 * will not set up the defaults correctly.
188 sc
->sc_cfg1
= sc
->sc_id
| NCRCFG1_PARENB
;
189 sc
->sc_cfg2
= NCRCFG2_SCSI2
| NCRCFG2_FE
;
190 sc
->sc_cfg3
= 0x08 /*FCLK*/ | NCRESPCFG3_FSCSI
| NCRESPCFG3_CDB
;
191 sc
->sc_rev
= NCR_VARIANT_FAS216
;
194 * This is the value used to start sync negotiations
195 * Note that the NCR register "SYNCTP" is programmed
196 * in "clocks per byte", and has a minimum value of 4.
197 * The SCSI period used in negotiation is one-fourth
198 * of the time (in nanoseconds) needed to transfer one byte.
199 * Since the chip's clock is given in MHz, we have the following
200 * formula: 4 * period = (1000 / freq) * 4
202 sc
->sc_minsync
= 1000 / sc
->sc_freq
;
205 * get flags from -I argument and set cf_flags.
206 * NOTE: low 8 bits are to disable disconnect, and the next
207 * 8 bits are to disable sync.
209 device_cfdata(self
)->cf_flags
|= (scsi_nosync
>> shift_nosync
)
213 /* Use next 16 bits of -I argument to set ncr53c9x_debug flags */
214 ncr53c9x_debug
|= (scsi_nosync
>> shift_nosync
) & 0xffff;
218 if (((scsi_nosync
>> shift_nosync
) & 0xff00) == 0xff00)
222 /* Really no limit, but since we want to fit into the TCR... */
223 sc
->sc_maxxfer
= 64 * 1024;
226 * Configure interrupts.
228 csc
->sc_isr
.isr_intr
= ncr53c9x_intr
;
229 csc
->sc_isr
.isr_arg
= sc
;
230 csc
->sc_isr
.isr_ipl
= 2;
231 add_isr(&csc
->sc_isr
);
234 * Now try to attach all the sub-devices
236 sc
->sc_adapter
.adapt_request
= ncr53c9x_scsipi_request
;
237 sc
->sc_adapter
.adapt_minphys
= minphys
;
246 cbsc_read_reg(struct ncr53c9x_softc
*sc
, int reg
)
248 struct cbsc_softc
*csc
= (struct cbsc_softc
*)sc
;
250 return csc
->sc_reg
[reg
* 4];
254 cbsc_write_reg(struct ncr53c9x_softc
*sc
, int reg
, uint8_t val
)
256 struct cbsc_softc
*csc
= (struct cbsc_softc
*)sc
;
259 csc
->sc_reg
[reg
* 4] = v
;
261 if (cbsc_trace_enable
/* && sc->sc_nexus && sc->sc_nexus->xs->xs_control & XS_CTL_POLL*/ &&
262 reg
== NCR_CMD
/* && csc->sc_active*/) {
263 cbsc_trace
[(cbsc_trace_ptr
- 1) & 127].yy
= v
;
264 /* printf(" cmd %x", v);*/
270 cbsc_dma_isintr(struct ncr53c9x_softc
*sc
)
272 struct cbsc_softc
*csc
= (struct cbsc_softc
*)sc
;
274 if ((csc
->sc_reg
[NCR_STAT
* 4] & NCRSTAT_INT
) == 0)
277 if (sc
->sc_state
== NCR_CONNECTED
)
278 csc
->sc_portbits
|= CBSC_PB_LED
;
280 csc
->sc_portbits
&= ~CBSC_PB_LED
;
281 csc
->sc_reg
[0x802] = csc
->sc_portbits
;
283 if ((csc
->sc_reg
[0x802] & CBSC_HB_CREQ
) == 0)
286 if (/*sc->sc_nexus && sc->sc_nexus->xs->xs_control & XS_CTL_POLL &&*/ cbsc_trace_enable
) {
287 cbsc_trace
[cbsc_trace_ptr
].status
= csc
->sc_reg
[NCR_STAT
* 4];
288 cbsc_trace
[cbsc_trace_ptr
].xx
= csc
->sc_reg
[NCR_CMD
* 4];
289 cbsc_trace
[cbsc_trace_ptr
].yy
= csc
->sc_active
;
290 cbsc_trace_ptr
= (cbsc_trace_ptr
+ 1) & 127;
297 cbsc_dma_reset(struct ncr53c9x_softc
*sc
)
299 struct cbsc_softc
*csc
= (struct cbsc_softc
*)sc
;
305 cbsc_dma_intr(struct ncr53c9x_softc
*sc
)
307 register struct cbsc_softc
*csc
= (struct cbsc_softc
*)sc
;
310 NCR_DMA(("cbsc_dma_intr: cnt %d int %x stat %x fifo %d ",
311 csc
->sc_dmasize
, sc
->sc_espintr
, sc
->sc_espstat
,
312 csc
->sc_reg
[NCR_FFLAG
* 4] & NCRFIFO_FF
));
313 if (csc
->sc_active
== 0) {
314 printf("cbsc_intr--inactive DMA\n");
318 /* update sc_dmaaddr and sc_pdmalen */
319 cnt
= csc
->sc_reg
[NCR_TCL
* 4];
320 cnt
+= csc
->sc_reg
[NCR_TCM
* 4] << 8;
321 cnt
+= csc
->sc_reg
[NCR_TCH
* 4] << 16;
322 if (!csc
->sc_datain
) {
323 cnt
+= csc
->sc_reg
[NCR_FFLAG
* 4] & NCRFIFO_FF
;
324 csc
->sc_reg
[NCR_CMD
* 4] = NCRCMD_FLUSH
;
326 cnt
= csc
->sc_dmasize
- cnt
; /* number of bytes transferred */
327 NCR_DMA(("DMA xferred %d\n", cnt
));
328 if (csc
->sc_xfr_align
) {
329 memcpy(*csc
->sc_dmaaddr
, csc
->sc_alignbuf
, cnt
);
330 csc
->sc_xfr_align
= 0;
332 *csc
->sc_dmaaddr
+= cnt
;
333 *csc
->sc_pdmalen
-= cnt
;
339 cbsc_dma_setup(struct ncr53c9x_softc
*sc
, uint8_t **addr
, size_t *len
,
340 int datain
, size_t *dmasize
)
342 struct cbsc_softc
*csc
= (struct cbsc_softc
*)sc
;
347 csc
->sc_dmaaddr
= addr
;
348 csc
->sc_pdmalen
= len
;
349 csc
->sc_datain
= datain
;
350 csc
->sc_dmasize
= *dmasize
;
352 * DMA can be nasty for high-speed serial input, so limit the
353 * size of this DMA operation if the serial port is running at
354 * a high speed (higher than 19200 for now - should be adjusted
355 * based on CPU type and speed?).
356 * XXX - add serial speed check XXX
358 if (ser_open_speed
> 19200 && cbsc_max_dma
!= 0 &&
359 csc
->sc_dmasize
> cbsc_max_dma
)
360 csc
->sc_dmasize
= cbsc_max_dma
;
361 ptr
= *addr
; /* Kernel virtual address */
362 pa
= kvtop(ptr
); /* Physical address of DMA */
363 xfer
= min(csc
->sc_dmasize
, PAGE_SIZE
- (pa
& (PAGE_SIZE
- 1)));
364 csc
->sc_xfr_align
= 0;
366 * If output and unaligned, stuff odd byte into FIFO
368 if (datain
== 0 && (int)ptr
& 1) {
369 NCR_DMA(("cbsc_dma_setup: align byte written to fifo\n"));
371 xfer
--; /* XXXX CHECK THIS !!!! XXXX */
372 csc
->sc_reg
[NCR_FIFO
* 4] = *ptr
++;
375 * If unaligned address, read unaligned bytes into alignment buffer
377 else if ((int)ptr
& 1) {
378 pa
= kvtop((void *)&csc
->sc_alignbuf
);
379 xfer
= csc
->sc_dmasize
= min(xfer
, sizeof(csc
->sc_alignbuf
));
380 NCR_DMA(("cbsc_dma_setup: align read by %d bytes\n", xfer
));
381 csc
->sc_xfr_align
= 1;
383 ++cbsc_cnt_dma
; /* number of DMA operations */
385 while (xfer
< csc
->sc_dmasize
) {
386 if ((pa
+ xfer
) != kvtop(*addr
+ xfer
))
388 if ((csc
->sc_dmasize
- xfer
) < PAGE_SIZE
)
389 xfer
= csc
->sc_dmasize
;
397 csc
->sc_dmasize
= xfer
;
398 *dmasize
= csc
->sc_dmasize
;
400 #if defined(M68040) || defined(M68060)
401 if (mmutype
== MMU_68040
) {
402 if (csc
->sc_xfr_align
) {
403 dma_cachectl(csc
->sc_alignbuf
,
404 sizeof(csc
->sc_alignbuf
));
407 dma_cachectl(*csc
->sc_dmaaddr
, csc
->sc_dmasize
);
415 csc
->sc_dmabase
[0] = (uint8_t)(pa
>> 24);
416 csc
->sc_dmabase
[2] = (uint8_t)(pa
>> 16);
417 csc
->sc_dmabase
[4] = (uint8_t)(pa
>> 8);
418 csc
->sc_dmabase
[6] = (uint8_t)(pa
);
420 csc
->sc_portbits
&= ~CBSC_PB_WRITE
;
422 csc
->sc_portbits
|= CBSC_PB_WRITE
;
423 csc
->sc_reg
[0x802] = csc
->sc_portbits
;
429 cbsc_dma_go(struct ncr53c9x_softc
*sc
)
434 cbsc_dma_stop(struct ncr53c9x_softc
*sc
)
439 cbsc_dma_isactive(struct ncr53c9x_softc
*sc
)
441 struct cbsc_softc
*csc
= (struct cbsc_softc
*)sc
;
443 return csc
->sc_active
;
453 printf("cbsc_trace dump: ptr %x\n", cbsc_trace_ptr
);
455 if (cbsc_trace
[i
].hardbits
== 0) {
459 printf("%02x%02x%02x%02x(", cbsc_trace
[i
].hardbits
,
460 cbsc_trace
[i
].status
, cbsc_trace
[i
].xx
, cbsc_trace
[i
].yy
);
461 if (cbsc_trace
[i
].status
& NCRSTAT_INT
)
463 if (cbsc_trace
[i
].status
& NCRSTAT_TC
)
465 switch(cbsc_trace
[i
].status
& NCRSTAT_PHASE
) {
467 printf("dataout"); break;
469 printf("datain"); break;
471 printf("cmdout"); break;
473 printf("status"); break;
475 printf("msgout"); break;
477 printf("msgin"); break;
479 printf("phase%d?", cbsc_trace
[i
].status
& NCRSTAT_PHASE
);
483 } while (i
!= cbsc_trace_ptr
);