2 * Sun3 SCSI stuff by Erik Verbruggen (erik@bigmama.xtdnet.nl)
4 * Sun3 DMA routines added by Sam Creasey (sammy@sammy.net)
6 * Adapted from mac_scsinew.c:
9 * Generic Macintosh NCR5380 driver
11 * Copyright 1998, Michael Schmitz <mschmitz@lbl.gov>
13 * derived in part from:
16 * Generic Generic NCR5380 driver
18 * Copyright 1995, Russell King
22 * For more information, please consult
25 * SCSI Protocol Controller
28 * NCR Microelectronics
29 * 1635 Aeroplaza Drive
30 * Colorado Springs, CO 80916
37 * This is from mac_scsi.h, but hey, maybe this is useful for Sun3 too! :)
41 * PARITY - enable parity checking. Not supported.
43 * SCSI2 - enable support for SCSI-II tagged queueing. Untested.
45 * USLEEP - enable support for devices that don't disconnect. Untested.
49 * $Log: sun3_NCR5380.c,v $
54 #include <linux/types.h>
55 #include <linux/stddef.h>
56 #include <linux/ctype.h>
57 #include <linux/delay.h>
59 #include <linux/module.h>
60 #include <linux/signal.h>
61 #include <linux/ioport.h>
62 #include <linux/init.h>
63 #include <linux/blkdev.h>
67 #include <asm/sun3ints.h>
69 #include <asm/idprom.h>
70 #include <asm/machines.h>
74 #define NDEBUG_ABORT 0x00100000
75 #define NDEBUG_TAGS 0x00200000
76 #define NDEBUG_MERGING 0x00400000
83 #include <scsi/scsi_host.h>
84 #include "sun3_scsi.h"
86 static void NCR5380_print(struct Scsi_Host
*instance
);
91 /*#define RESET_BOOT */
95 * BUG can be used to trigger a strange code-size related hang on 2.1 kernels
102 /* #define SUPPORT_TAGS */
104 #define ENABLE_IRQ() enable_irq( IRQ_SUN3_SCSI );
107 static irqreturn_t
scsi_sun3_intr(int irq
, void *dummy
);
108 static inline unsigned char sun3scsi_read(int reg
);
109 static inline void sun3scsi_write(int reg
, int value
);
111 static int setup_can_queue
= -1;
112 module_param(setup_can_queue
, int, 0);
113 static int setup_cmd_per_lun
= -1;
114 module_param(setup_cmd_per_lun
, int, 0);
115 static int setup_sg_tablesize
= -1;
116 module_param(setup_sg_tablesize
, int, 0);
118 static int setup_use_tagged_queuing
= -1;
119 module_param(setup_use_tagged_queuing
, int, 0);
121 static int setup_hostid
= -1;
122 module_param(setup_hostid
, int, 0);
124 static struct scsi_cmnd
*sun3_dma_setup_done
= NULL
;
126 #define AFTER_RESET_DELAY (HZ/2)
128 /* ms to wait after hitting dma regs */
129 #define SUN3_DMA_DELAY 10
131 /* dvma buffer to allocate -- 32k should hopefully be more than sufficient */
132 #define SUN3_DVMA_BUFSIZE 0xe000
134 /* minimum number of bytes to do dma on */
135 #define SUN3_DMA_MINSIZE 128
137 static volatile unsigned char *sun3_scsi_regp
;
138 static volatile struct sun3_dma_regs
*dregs
;
140 static unsigned char *dmabuf
= NULL
; /* dma memory buffer */
142 static struct sun3_udc_regs
*udc_regs
= NULL
;
143 static unsigned char *sun3_dma_orig_addr
= NULL
;
144 static unsigned long sun3_dma_orig_count
= 0;
145 static int sun3_dma_active
= 0;
146 static unsigned long last_residual
= 0;
149 * NCR 5380 register access functions
152 static inline unsigned char sun3scsi_read(int reg
)
154 return( sun3_scsi_regp
[reg
] );
157 static inline void sun3scsi_write(int reg
, int value
)
159 sun3_scsi_regp
[reg
] = value
;
162 /* dma controller register access functions */
164 static inline unsigned short sun3_udc_read(unsigned char reg
)
168 dregs
->udc_addr
= UDC_CSR
;
169 udelay(SUN3_DMA_DELAY
);
170 ret
= dregs
->udc_data
;
171 udelay(SUN3_DMA_DELAY
);
176 static inline void sun3_udc_write(unsigned short val
, unsigned char reg
)
178 dregs
->udc_addr
= reg
;
179 udelay(SUN3_DMA_DELAY
);
180 dregs
->udc_data
= val
;
181 udelay(SUN3_DMA_DELAY
);
187 static struct Scsi_Host
*default_instance
;
190 * Function : int sun3scsi_detect(struct scsi_host_template * tpnt)
192 * Purpose : initializes mac NCR5380 driver based on the
193 * command line / compile time port and irq definitions.
195 * Inputs : tpnt - template for this SCSI adapter.
197 * Returns : 1 if a host adapter was found, 0 if not.
201 int __init
sun3scsi_detect(struct scsi_host_template
* tpnt
)
203 unsigned long ioaddr
;
204 static int called
= 0;
205 struct Scsi_Host
*instance
;
207 /* check that this machine has an onboard 5380 */
208 switch(idprom
->id_machtype
) {
209 case SM_SUN3
|SM_3_50
:
210 case SM_SUN3
|SM_3_60
:
220 tpnt
->proc_name
= "Sun3 5380 SCSI";
222 /* setup variables */
224 (setup_can_queue
> 0) ? setup_can_queue
: CAN_QUEUE
;
226 (setup_cmd_per_lun
> 0) ? setup_cmd_per_lun
: CMD_PER_LUN
;
228 (setup_sg_tablesize
>= 0) ? setup_sg_tablesize
: SG_TABLESIZE
;
230 if (setup_hostid
>= 0)
231 tpnt
->this_id
= setup_hostid
;
233 /* use 7 as default */
237 ioaddr
= (unsigned long)ioremap(IOBASE_SUN3_SCSI
, PAGE_SIZE
);
238 sun3_scsi_regp
= (unsigned char *)ioaddr
;
240 dregs
= (struct sun3_dma_regs
*)(((unsigned char *)ioaddr
) + 8);
242 if((udc_regs
= dvma_malloc(sizeof(struct sun3_udc_regs
)))
244 printk("SUN3 Scsi couldn't allocate DVMA memory!\n");
248 if((dmabuf
= dvma_malloc_align(SUN3_DVMA_BUFSIZE
, 0x10000)) == NULL
) {
249 printk("SUN3 Scsi couldn't allocate DVMA memory!\n");
254 if (setup_use_tagged_queuing
< 0)
255 setup_use_tagged_queuing
= USE_TAGGED_QUEUING
;
258 instance
= scsi_register (tpnt
, sizeof(struct NCR5380_hostdata
));
262 default_instance
= instance
;
264 instance
->io_port
= (unsigned long) ioaddr
;
265 instance
->irq
= IRQ_SUN3_SCSI
;
267 NCR5380_init(instance
, 0);
269 instance
->n_io_port
= 32;
271 ((struct NCR5380_hostdata
*)instance
->hostdata
)->ctrl
= 0;
273 if (request_irq(instance
->irq
, scsi_sun3_intr
,
274 0, "Sun3SCSI-5380", instance
)) {
276 printk("scsi%d: IRQ%d not free, interrupts disabled\n",
277 instance
->host_no
, instance
->irq
);
278 instance
->irq
= SCSI_IRQ_NONE
;
280 printk("scsi%d: IRQ%d not free, bailing out\n",
281 instance
->host_no
, instance
->irq
);
286 printk("scsi%d: Sun3 5380 at port %lX irq", instance
->host_no
, instance
->io_port
);
287 if (instance
->irq
== SCSI_IRQ_NONE
)
288 printk ("s disabled");
290 printk (" %d", instance
->irq
);
291 printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d",
292 instance
->can_queue
, instance
->cmd_per_lun
,
293 SUN3SCSI_PUBLIC_RELEASE
);
294 printk("\nscsi%d:", instance
->host_no
);
295 NCR5380_print_options(instance
);
299 udelay(SUN3_DMA_DELAY
);
300 dregs
->csr
= CSR_SCSI
| CSR_FIFO
| CSR_INTR
;
301 udelay(SUN3_DMA_DELAY
);
302 dregs
->fifo_count
= 0;
307 sun3_scsi_reset_boot(instance
);
313 int sun3scsi_release (struct Scsi_Host
*shpnt
)
315 if (shpnt
->irq
!= SCSI_IRQ_NONE
)
316 free_irq(shpnt
->irq
, shpnt
);
318 iounmap((void *)sun3_scsi_regp
);
326 * Our 'bus reset on boot' function
329 static void sun3_scsi_reset_boot(struct Scsi_Host
*instance
)
333 NCR5380_local_declare();
334 NCR5380_setup(instance
);
337 * Do a SCSI reset to clean up the bus during initialization. No
338 * messing with the queues, interrupts, or locks necessary here.
341 printk( "Sun3 SCSI: resetting the SCSI bus..." );
343 /* switch off SCSI IRQ - catch an interrupt without IRQ bit set else */
344 // sun3_disable_irq( IRQ_SUN3_SCSI );
347 NCR5380_write( TARGET_COMMAND_REG
,
348 PHASE_SR_TO_TCR( NCR5380_read(STATUS_REG
) ));
351 NCR5380_write( INITIATOR_COMMAND_REG
, ICR_BASE
| ICR_ASSERT_RST
);
353 /* The min. reset hold time is 25us, so 40us should be enough */
356 /* reset RST and interrupt */
357 NCR5380_write( INITIATOR_COMMAND_REG
, ICR_BASE
);
358 NCR5380_read( RESET_PARITY_INTERRUPT_REG
);
360 for( end
= jiffies
+ AFTER_RESET_DELAY
; time_before(jiffies
, end
); )
363 /* switch on SCSI IRQ again */
364 // sun3_enable_irq( IRQ_SUN3_SCSI );
370 const char * sun3scsi_info (struct Scsi_Host
*spnt
) {
374 // safe bits for the CSR
375 #define CSR_GOOD 0x060f
377 static irqreturn_t
scsi_sun3_intr(int irq
, void *dummy
)
379 unsigned short csr
= dregs
->csr
;
382 if(csr
& ~CSR_GOOD
) {
383 if(csr
& CSR_DMA_BUSERR
) {
384 printk("scsi%d: bus error in dma\n", default_instance
->host_no
);
387 if(csr
& CSR_DMA_CONFLICT
) {
388 printk("scsi%d: dma conflict\n", default_instance
->host_no
);
393 if(csr
& (CSR_SDB_INT
| CSR_DMA_INT
)) {
394 NCR5380_intr(irq
, dummy
);
398 return IRQ_RETVAL(handled
);
402 * Debug stuff - to be called on NMI, or sysrq key. Use at your own risk;
403 * reentering NCR5380_print_status seems to have ugly side effects
406 /* this doesn't seem to get used at all -- sam */
408 void sun3_sun3_debug (void)
411 NCR5380_local_declare();
413 if (default_instance
) {
414 local_irq_save(flags
);
415 NCR5380_print_status(default_instance
);
416 local_irq_restore(flags
);
422 /* sun3scsi_dma_setup() -- initialize the dma controller for a read/write */
423 static unsigned long sun3scsi_dma_setup(void *data
, unsigned long count
, int write_flag
)
427 memcpy(dmabuf
, data
, count
);
429 sun3_dma_orig_addr
= data
;
430 sun3_dma_orig_count
= count
;
435 if(sun3_dma_orig_addr
!= NULL
)
436 dvma_unmap(sun3_dma_orig_addr
);
438 // addr = sun3_dvma_page((unsigned long)data, (unsigned long)dmabuf);
439 addr
= (void *)dvma_map((unsigned long) data
, count
);
441 sun3_dma_orig_addr
= addr
;
442 sun3_dma_orig_count
= count
;
444 dregs
->fifo_count
= 0;
445 sun3_udc_write(UDC_RESET
, UDC_CSR
);
448 dregs
->csr
&= ~CSR_FIFO
;
449 dregs
->csr
|= CSR_FIFO
;
453 dregs
->csr
|= CSR_SEND
;
455 dregs
->csr
&= ~CSR_SEND
;
457 /* byte count for fifo */
458 dregs
->fifo_count
= count
;
460 sun3_udc_write(UDC_RESET
, UDC_CSR
);
463 dregs
->csr
&= ~CSR_FIFO
;
464 dregs
->csr
|= CSR_FIFO
;
466 if(dregs
->fifo_count
!= count
) {
467 printk("scsi%d: fifo_mismatch %04x not %04x\n",
468 default_instance
->host_no
, dregs
->fifo_count
,
469 (unsigned int) count
);
470 NCR5380_print(default_instance
);
475 udc_regs
->addr_hi
= ((dvma_vtob(dmabuf
) & 0xff0000) >> 8);
476 udc_regs
->addr_lo
= (dvma_vtob(dmabuf
) & 0xffff);
478 udc_regs
->addr_hi
= (((unsigned long)(addr
) & 0xff0000) >> 8);
479 udc_regs
->addr_lo
= ((unsigned long)(addr
) & 0xffff);
481 udc_regs
->count
= count
/2; /* count in words */
482 udc_regs
->mode_hi
= UDC_MODE_HIWORD
;
486 udc_regs
->mode_lo
= UDC_MODE_LSEND
;
487 udc_regs
->rsel
= UDC_RSEL_SEND
;
489 udc_regs
->mode_lo
= UDC_MODE_LRECV
;
490 udc_regs
->rsel
= UDC_RSEL_RECV
;
493 /* announce location of regs block */
494 sun3_udc_write(((dvma_vtob(udc_regs
) & 0xff0000) >> 8),
497 sun3_udc_write((dvma_vtob(udc_regs
) & 0xffff), UDC_CHN_LO
);
499 /* set dma master on */
500 sun3_udc_write(0xd, UDC_MODE
);
502 /* interrupt enable */
503 sun3_udc_write(UDC_INT_ENABLE
, UDC_CSR
);
509 static inline unsigned long sun3scsi_dma_count(struct Scsi_Host
*instance
)
511 unsigned short resid
;
513 dregs
->udc_addr
= 0x32;
514 udelay(SUN3_DMA_DELAY
);
515 resid
= dregs
->udc_data
;
516 udelay(SUN3_DMA_DELAY
);
519 return (unsigned long) resid
;
522 static inline unsigned long sun3scsi_dma_residual(struct Scsi_Host
*instance
)
524 return last_residual
;
527 static inline unsigned long sun3scsi_dma_xfer_len(unsigned long wanted
,
528 struct scsi_cmnd
*cmd
,
531 if (cmd
->request
->cmd_type
== REQ_TYPE_FS
)
537 static inline int sun3scsi_dma_start(unsigned long count
, unsigned char *data
)
540 sun3_udc_write(UDC_CHN_START
, UDC_CSR
);
545 /* clean up after our dma is done */
546 static int sun3scsi_dma_finish(int write_flag
)
548 unsigned short count
;
554 // check to empty the fifo on a read
556 int tmo
= 20000; /* .2 sec */
559 if(dregs
->csr
& CSR_FIFO_EMPTY
)
563 printk("sun3scsi: fifo failed to empty!\n");
572 count
= sun3scsi_dma_count(default_instance
);
575 /* if we've finished a read, copy out the data we read */
576 if(sun3_dma_orig_addr
) {
577 /* check for residual bytes after dma end */
578 if(count
&& (NCR5380_read(BUS_AND_STATUS_REG
) &
579 (BASR_PHASE_MATCH
| BASR_ACK
))) {
580 printk("scsi%d: sun3_scsi_finish: read overrun baby... ", default_instance
->host_no
);
581 printk("basr now %02x\n", NCR5380_read(BUS_AND_STATUS_REG
));
585 /* copy in what we dma'd no matter what */
586 memcpy(sun3_dma_orig_addr
, dmabuf
, sun3_dma_orig_count
);
587 sun3_dma_orig_addr
= NULL
;
592 fifo
= dregs
->fifo_count
;
593 last_residual
= fifo
;
595 /* empty bytes from the fifo which didn't make it */
596 if((!write_flag
) && (count
- fifo
) == 2) {
598 unsigned char *vaddr
;
600 data
= dregs
->fifo_data
;
601 vaddr
= (unsigned char *)dvma_btov(sun3_dma_orig_addr
);
603 vaddr
+= (sun3_dma_orig_count
- fifo
);
605 vaddr
[-2] = (data
& 0xff00) >> 8;
606 vaddr
[-1] = (data
& 0xff);
609 dvma_unmap(sun3_dma_orig_addr
);
610 sun3_dma_orig_addr
= NULL
;
612 sun3_udc_write(UDC_RESET
, UDC_CSR
);
613 dregs
->fifo_count
= 0;
614 dregs
->csr
&= ~CSR_SEND
;
617 dregs
->csr
&= ~CSR_FIFO
;
618 dregs
->csr
|= CSR_FIFO
;
620 sun3_dma_setup_done
= NULL
;
626 #include "sun3_NCR5380.c"
628 static struct scsi_host_template driver_template
= {
629 .name
= SUN3_SCSI_NAME
,
630 .detect
= sun3scsi_detect
,
631 .release
= sun3scsi_release
,
632 .info
= sun3scsi_info
,
633 .queuecommand
= sun3scsi_queue_command
,
634 .eh_abort_handler
= sun3scsi_abort
,
635 .eh_bus_reset_handler
= sun3scsi_bus_reset
,
636 .can_queue
= CAN_QUEUE
,
638 .sg_tablesize
= SG_TABLESIZE
,
639 .cmd_per_lun
= CMD_PER_LUN
,
640 .use_clustering
= DISABLE_CLUSTERING
644 #include "scsi_module.c"
646 MODULE_LICENSE("GPL");