2 * Generic Macintosh NCR5380 driver
6 * derived in part from:
9 * Generic Generic NCR5380 driver
11 * Copyright 1995, Russell King
15 * For more information, please consult
18 * SCSI Protocol Controller
21 * NCR Microelectronics
22 * 1635 Aeroplaza Drive
23 * Colorado Springs, CO 80916
29 * $Log: mac_NCR5380.c,v $
32 #include <linux/types.h>
33 #include <linux/stddef.h>
34 #include <linux/ctype.h>
35 #include <linux/delay.h>
37 #include <linux/module.h>
38 #include <linux/signal.h>
39 #include <linux/ioport.h>
40 #include <linux/init.h>
41 #include <linux/blkdev.h>
42 #include <linux/interrupt.h>
47 #include <asm/macintosh.h>
48 #include <asm/macints.h>
49 #include <asm/mac_via.h>
52 #include <scsi/scsi_host.h>
55 /* These control the behaviour of the generic 5380 core */
62 #define NDEBUG (NDEBUG_INTR | NDEBUG_PSEUDO_DMA | NDEBUG_ARBITRATION | NDEBUG_SELECTION | NDEBUG_RESELECTION)
64 #define NDEBUG (NDEBUG_ABORT)
70 extern void via_scsi_clear(void);
73 static void mac_scsi_reset_boot(struct Scsi_Host *instance);
76 static int setup_called = 0;
77 static int setup_can_queue = -1;
78 static int setup_cmd_per_lun = -1;
79 static int setup_sg_tablesize = -1;
80 static int setup_use_pdma = -1;
82 static int setup_use_tagged_queuing = -1;
84 static int setup_hostid = -1;
86 /* Time (in jiffies) to wait after a reset; the SCSI standard calls for 250ms,
87 * we usually do 0.5s to be on the safe side. But Toshiba CD-ROMs once more
88 * need ten times the standard value... */
92 #define AFTER_RESET_DELAY (5*HZ/2)
94 #define AFTER_RESET_DELAY (HZ/2)
97 static volatile unsigned char *mac_scsi_regp = NULL;
98 static volatile unsigned char *mac_scsi_drq = NULL;
99 static volatile unsigned char *mac_scsi_nodrq = NULL;
103 * NCR 5380 register access functions
108 #define CTRL(p,v) (*ctrl = (v))
110 static char macscsi_read(struct Scsi_Host *instance, int reg)
112 int iobase = instance->io_port;
114 int *ctrl = &((struct NCR5380_hostdata *)instance->hostdata)->ctrl;
117 i = in_8(iobase + (reg<<4));
123 static void macscsi_write(struct Scsi_Host *instance, int reg, int value)
125 int iobase = instance->io_port;
126 int *ctrl = &((struct NCR5380_hostdata *)instance->hostdata)->ctrl;
129 out_8(iobase + (reg<<4), value);
135 static __inline__ char macscsi_read(struct Scsi_Host *instance, int reg)
137 return in_8(instance->io_port + (reg<<4));
140 static __inline__ void macscsi_write(struct Scsi_Host *instance, int reg, int value)
142 out_8(instance->io_port + (reg<<4), value);
148 * Function : mac_scsi_setup(char *str)
150 * Purpose : booter command line initialization of the overrides array,
152 * Inputs : str - comma delimited list of options
156 static int __init mac_scsi_setup(char *str) {
160 (void)get_options( str, ARRAY_SIZE(ints), ints);
162 if (setup_called++ || ints[0] < 1 || ints[0] > 6) {
163 printk(KERN_WARNING "scsi: <mac5380>"
164 " Usage: mac5380=<can_queue>[,<cmd_per_lun>,<sg_tablesize>,<hostid>,<use_tags>,<use_pdma>]\n");
165 printk(KERN_ALERT "scsi: <mac5380> Bad Penguin parameters?\n");
171 /* no limits on this, just > 0 */
172 setup_can_queue = ints[1];
176 setup_cmd_per_lun = ints[2];
180 setup_sg_tablesize = ints[3];
181 /* Must be <= SG_ALL (255) */
182 if (setup_sg_tablesize > SG_ALL)
183 setup_sg_tablesize = SG_ALL;
187 /* Must be between 0 and 7 */
188 if (ints[4] >= 0 && ints[4] <= 7)
189 setup_hostid = ints[4];
190 else if (ints[4] > 7)
191 printk(KERN_WARNING "mac_scsi_setup: invalid host ID %d !\n", ints[4] );
196 setup_use_tagged_queuing = !!ints[5];
201 setup_use_pdma = ints[6];
206 setup_use_pdma = ints[5];
208 #endif /* SUPPORT_TAGS */
210 #endif /* DRIVER_SETUP */
214 __setup("mac5380=", mac_scsi_setup);
217 * Function : int macscsi_detect(struct scsi_host_template * tpnt)
219 * Purpose : initializes mac NCR5380 driver based on the
220 * command line / compile time port and irq definitions.
222 * Inputs : tpnt - template for this SCSI adapter.
224 * Returns : 1 if a host adapter was found, 0 if not.
228 int __init macscsi_detect(struct scsi_host_template * tpnt)
230 static int called = 0;
232 struct Scsi_Host *instance;
234 if (!MACH_IS_MAC || called)
237 if (macintosh_config->scsi_type != MAC_SCSI_OLD)
240 /* setup variables */
242 (setup_can_queue > 0) ? setup_can_queue : CAN_QUEUE;
244 (setup_cmd_per_lun > 0) ? setup_cmd_per_lun : CMD_PER_LUN;
246 (setup_sg_tablesize >= 0) ? setup_sg_tablesize : SG_TABLESIZE;
248 if (setup_hostid >= 0)
249 tpnt->this_id = setup_hostid;
251 /* use 7 as default */
256 if (setup_use_tagged_queuing < 0)
257 setup_use_tagged_queuing = USE_TAGGED_QUEUING;
260 /* Once we support multiple 5380s (e.g. DuoDock) we'll do
261 something different here */
262 instance = scsi_register (tpnt, sizeof(struct NCR5380_hostdata));
264 if (macintosh_config->ident == MAC_MODEL_IIFX) {
265 mac_scsi_regp = via1+0x8000;
266 mac_scsi_drq = via1+0xE000;
267 mac_scsi_nodrq = via1+0xC000;
268 /* The IIFX should be able to do true DMA, but pseudo-dma doesn't work */
269 flags = FLAG_NO_PSEUDO_DMA;
271 mac_scsi_regp = via1+0x10000;
272 mac_scsi_drq = via1+0x6000;
273 mac_scsi_nodrq = via1+0x12000;
276 if (! setup_use_pdma)
277 flags = FLAG_NO_PSEUDO_DMA;
279 instance->io_port = (unsigned long) mac_scsi_regp;
280 instance->irq = IRQ_MAC_SCSI;
283 mac_scsi_reset_boot(instance);
286 NCR5380_init(instance, flags);
288 instance->n_io_port = 255;
290 ((struct NCR5380_hostdata *)instance->hostdata)->ctrl = 0;
292 if (instance->irq != SCSI_IRQ_NONE)
293 if (request_irq(instance->irq, NCR5380_intr, 0, "ncr5380", instance)) {
294 printk(KERN_WARNING "scsi%d: IRQ%d not free, interrupts disabled\n",
295 instance->host_no, instance->irq);
296 instance->irq = SCSI_IRQ_NONE;
299 printk(KERN_INFO "scsi%d: generic 5380 at port %lX irq", instance->host_no, instance->io_port);
300 if (instance->irq == SCSI_IRQ_NONE)
301 printk (KERN_INFO "s disabled");
303 printk (KERN_INFO " %d", instance->irq);
304 printk(KERN_INFO " options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d",
305 instance->can_queue, instance->cmd_per_lun, MACSCSI_PUBLIC_RELEASE);
306 printk(KERN_INFO "\nscsi%d:", instance->host_no);
307 NCR5380_print_options(instance);
313 int macscsi_release (struct Scsi_Host *shpnt)
315 if (shpnt->irq != SCSI_IRQ_NONE)
316 free_irq(shpnt->irq, shpnt);
324 * Our 'bus reset on boot' function
327 static void mac_scsi_reset_boot(struct Scsi_Host *instance)
331 NCR5380_local_declare();
332 NCR5380_setup(instance);
335 * Do a SCSI reset to clean up the bus during initialization. No messing
336 * with the queues, interrupts, or locks necessary here.
339 printk(KERN_INFO "Macintosh SCSI: resetting the SCSI bus..." );
342 NCR5380_write( TARGET_COMMAND_REG,
343 PHASE_SR_TO_TCR( NCR5380_read(STATUS_REG) ));
346 NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST );
347 /* The min. reset hold time is 25us, so 40us should be enough */
349 /* reset RST and interrupt */
350 NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE );
351 NCR5380_read( RESET_PARITY_INTERRUPT_REG );
353 for( end = jiffies + AFTER_RESET_DELAY; time_before(jiffies, end); )
356 printk(KERN_INFO " done\n" );
360 const char * macscsi_info (struct Scsi_Host *spnt) {
365 Pseudo-DMA: (Ove Edlund)
366 The code attempts to catch bus errors that occur if one for example
367 "trips over the cable".
368 XXX: Since bus errors in the PDMA routines never happen on my
369 computer, the bus error code is untested.
370 If the code works as intended, a bus error results in Pseudo-DMA
371 beeing disabled, meaning that the driver switches to slow handshake.
372 If bus errors are NOT extremely rare, this has to be changed.
375 #define CP_IO_TO_MEM(s,d,len) \
376 __asm__ __volatile__ \
379 " move.w %1,%%d0\n" \
384 " 1: move.b (%0),(%1)+\n" \
385 " 2: dbf %%d0,1b\n" \
386 " move.w %2,%%d0\n" \
389 " 3: move.l (%0),(%1)+\n" \
390 "31: move.l (%0),(%1)+\n" \
391 "32: move.l (%0),(%1)+\n" \
392 "33: move.l (%0),(%1)+\n" \
393 "34: move.l (%0),(%1)+\n" \
394 "35: move.l (%0),(%1)+\n" \
395 "36: move.l (%0),(%1)+\n" \
396 "37: move.l (%0),(%1)+\n" \
397 " 4: dbf %%d0,3b\n" \
398 " move.w %2,%%d0\n" \
402 " 5: move.l (%0),(%1)+\n" \
403 " 6: dbf %%d0,5b\n" \
406 " 7: move.b (%0),(%1)+\n" \
408 " moveq.l #0, %2\n" \
410 ".section .fixup,\"ax\"\n" \
412 "90: moveq.l #1, %2\n" \
415 ".section __ex_table,\"a\"\n" \
429 : "=a"(s), "=a"(d), "=d"(len) \
430 : "0"(s), "1"(d), "2"(len) \
434 static int macscsi_pread (struct Scsi_Host *instance,
435 unsigned char *dst, int len)
438 volatile unsigned char *s;
440 NCR5380_local_declare();
441 NCR5380_setup(instance);
443 s = mac_scsi_drq+0x60;
446 /* These conditions are derived from MacOS */
448 while (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ)
449 && !(NCR5380_read(STATUS_REG) & SR_REQ))
451 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ)
452 && (NCR5380_read(BUS_AND_STATUS_REG) & BASR_PHASE_MATCH)) {
453 printk(KERN_ERR "Error in macscsi_pread\n");
457 CP_IO_TO_MEM(s, d, len);
460 printk(KERN_NOTICE "Bus error in macscsi_pread\n");
468 #define CP_MEM_TO_IO(s,d,len) \
469 __asm__ __volatile__ \
472 " move.w %0,%%d0\n" \
477 " 1: move.b (%0)+,(%1)\n" \
478 " 2: dbf %%d0,1b\n" \
479 " move.w %2,%%d0\n" \
482 " 3: move.l (%0)+,(%1)\n" \
483 "31: move.l (%0)+,(%1)\n" \
484 "32: move.l (%0)+,(%1)\n" \
485 "33: move.l (%0)+,(%1)\n" \
486 "34: move.l (%0)+,(%1)\n" \
487 "35: move.l (%0)+,(%1)\n" \
488 "36: move.l (%0)+,(%1)\n" \
489 "37: move.l (%0)+,(%1)\n" \
490 " 4: dbf %%d0,3b\n" \
491 " move.w %2,%%d0\n" \
495 " 5: move.l (%0)+,(%1)\n" \
496 " 6: dbf %%d0,5b\n" \
499 " 7: move.b (%0)+,(%1)\n" \
501 " moveq.l #0, %2\n" \
503 ".section .fixup,\"ax\"\n" \
505 "90: moveq.l #1, %2\n" \
508 ".section __ex_table,\"a\"\n" \
522 : "=a"(s), "=a"(d), "=d"(len) \
523 : "0"(s), "1"(d), "2"(len) \
526 static int macscsi_pwrite (struct Scsi_Host *instance,
527 unsigned char *src, int len)
530 volatile unsigned char *d;
532 NCR5380_local_declare();
533 NCR5380_setup(instance);
538 /* These conditions are derived from MacOS */
540 while (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ)
541 && (!(NCR5380_read(STATUS_REG) & SR_REQ)
542 || (NCR5380_read(BUS_AND_STATUS_REG) & BASR_PHASE_MATCH)))
544 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ)) {
545 printk(KERN_ERR "Error in macscsi_pwrite\n");
549 CP_MEM_TO_IO(s, d, len);
552 printk(KERN_NOTICE "Bus error in macscsi_pwrite\n");
562 static struct scsi_host_template driver_template = {
563 .proc_name = "Mac5380",
564 .show_info = macscsi_show_info,
565 .write_info = macscsi_write_info,
566 .name = "Macintosh NCR5380 SCSI",
567 .detect = macscsi_detect,
568 .release = macscsi_release,
569 .info = macscsi_info,
570 .queuecommand = macscsi_queue_command,
571 .eh_abort_handler = macscsi_abort,
572 .eh_bus_reset_handler = macscsi_bus_reset,
573 .can_queue = CAN_QUEUE,
575 .sg_tablesize = SG_ALL,
576 .cmd_per_lun = CMD_PER_LUN,
577 .use_clustering = DISABLE_CLUSTERING
581 #include "scsi_module.c"