2 * Driver for Adaptec AHA-1542 SCSI host adapters
4 * Copyright (C) 1992 Tommy Thorn
5 * Copyright (C) 1993, 1994, 1995 Eric Youngdale
6 * Copyright (C) 2015 Ondrej Zary
9 #include <linux/module.h>
10 #include <linux/interrupt.h>
11 #include <linux/kernel.h>
12 #include <linux/types.h>
13 #include <linux/string.h>
14 #include <linux/delay.h>
15 #include <linux/init.h>
16 #include <linux/spinlock.h>
17 #include <linux/isa.h>
18 #include <linux/pnp.h>
19 #include <linux/slab.h>
22 #include <scsi/scsi_cmnd.h>
23 #include <scsi/scsi_device.h>
24 #include <scsi/scsi_host.h>
29 static bool isapnp
= 1;
30 module_param(isapnp
, bool, 0);
31 MODULE_PARM_DESC(isapnp
, "enable PnP support (default=1)");
33 static int io
[MAXBOARDS
] = { 0x330, 0x334, 0, 0 };
34 module_param_array(io
, int, NULL
, 0);
35 MODULE_PARM_DESC(io
, "base IO address of controller (0x130,0x134,0x230,0x234,0x330,0x334, default=0x330,0x334)");
37 /* time AHA spends on the AT-bus during data transfer */
38 static int bus_on
[MAXBOARDS
] = { -1, -1, -1, -1 }; /* power-on default: 11us */
39 module_param_array(bus_on
, int, NULL
, 0);
40 MODULE_PARM_DESC(bus_on
, "bus on time [us] (2-15, default=-1 [HW default: 11])");
42 /* time AHA spends off the bus (not to monopolize it) during data transfer */
43 static int bus_off
[MAXBOARDS
] = { -1, -1, -1, -1 }; /* power-on default: 4us */
44 module_param_array(bus_off
, int, NULL
, 0);
45 MODULE_PARM_DESC(bus_off
, "bus off time [us] (1-64, default=-1 [HW default: 4])");
47 /* default is jumper selected (J1 on 1542A), factory default = 5 MB/s */
48 static int dma_speed
[MAXBOARDS
] = { -1, -1, -1, -1 };
49 module_param_array(dma_speed
, int, NULL
, 0);
50 MODULE_PARM_DESC(dma_speed
, "DMA speed [MB/s] (5,6,7,8,10, default=-1 [by jumper])");
52 #define BIOS_TRANSLATION_6432 1 /* Default case these days */
53 #define BIOS_TRANSLATION_25563 2 /* Big disk case */
55 struct aha1542_hostdata
{
56 /* This will effectively start both of them at the first mailbox */
57 int bios_translation
; /* Mapping bios uses - for compatibility */
58 int aha1542_last_mbi_used
;
59 int aha1542_last_mbo_used
;
60 struct scsi_cmnd
*int_cmds
[AHA1542_MAILBOXES
];
61 struct mailbox mb
[2 * AHA1542_MAILBOXES
];
62 struct ccb ccb
[AHA1542_MAILBOXES
];
65 static inline void aha1542_intr_reset(u16 base
)
67 outb(IRST
, CONTROL(base
));
70 static inline bool wait_mask(u16 port
, u8 mask
, u8 allof
, u8 noneof
, int timeout
)
80 u8 bits
= inb(port
) & mask
;
81 if ((bits
& allof
) == allof
&& ((bits
& noneof
) == 0))
92 static int aha1542_outb(unsigned int base
, u8 val
)
94 if (!wait_mask(STATUS(base
), CDF
, 0, CDF
, 0))
96 outb(val
, DATA(base
));
101 static int aha1542_out(unsigned int base
, u8
*buf
, int len
)
104 if (!wait_mask(STATUS(base
), CDF
, 0, CDF
, 0))
106 outb(*buf
++, DATA(base
));
108 if (!wait_mask(INTRFLAGS(base
), INTRMASK
, HACC
, 0, 0))
114 /* Only used at boot time, so we do not need to worry about latency as much
117 static int aha1542_in(unsigned int base
, u8
*buf
, int len
, int timeout
)
120 if (!wait_mask(STATUS(base
), DF
, DF
, 0, timeout
))
122 *buf
++ = inb(DATA(base
));
127 static int makecode(unsigned hosterr
, unsigned scsierr
)
131 case 0xa: /* Linked command complete without error and linked normally */
132 case 0xb: /* Linked command complete without error, interrupt generated */
136 case 0x11: /* Selection time out-The initiator selection or target
137 reselection was not complete within the SCSI Time out period */
138 hosterr
= DID_TIME_OUT
;
141 case 0x12: /* Data overrun/underrun-The target attempted to transfer more data
142 than was allocated by the Data Length field or the sum of the
143 Scatter / Gather Data Length fields. */
145 case 0x13: /* Unexpected bus free-The target dropped the SCSI BSY at an unexpected time. */
147 case 0x15: /* MBO command was not 00, 01 or 02-The first byte of the CB was
148 invalid. This usually indicates a software failure. */
150 case 0x16: /* Invalid CCB Operation Code-The first byte of the CCB was invalid.
151 This usually indicates a software failure. */
153 case 0x17: /* Linked CCB does not have the same LUN-A subsequent CCB of a set
154 of linked CCB's does not specify the same logical unit number as
156 case 0x18: /* Invalid Target Direction received from Host-The direction of a
157 Target Mode CCB was invalid. */
159 case 0x19: /* Duplicate CCB Received in Target Mode-More than once CCB was
160 received to service data transfer between the same target LUN
161 and initiator SCSI ID in the same direction. */
163 case 0x1a: /* Invalid CCB or Segment List Parameter-A segment list with a zero
164 length segment or invalid segment list boundaries was received.
165 A CCB parameter was invalid. */
167 printk("Aha1542: %x %x\n", hosterr
, scsierr
);
169 hosterr
= DID_ERROR
; /* Couldn't find any better */
172 case 0x14: /* Target bus phase sequence failure-An invalid bus phase or bus
173 phase sequence was requested by the target. The host adapter
174 will generate a SCSI Reset Condition, notifying the host with
179 printk(KERN_ERR
"aha1542: makecode: unknown hoststatus %x\n", hosterr
);
182 return scsierr
| (hosterr
<< 16);
185 static int aha1542_test_port(struct Scsi_Host
*sh
)
187 u8 inquiry_result
[4];
190 /* Quick and dirty test for presence of the card. */
191 if (inb(STATUS(sh
->io_port
)) == 0xff)
194 /* Reset the adapter. I ought to make a hard reset, but it's not really necessary */
196 /* In case some other card was probing here, reset interrupts */
197 aha1542_intr_reset(sh
->io_port
); /* reset interrupts, so they don't block */
199 outb(SRST
| IRST
/*|SCRST */ , CONTROL(sh
->io_port
));
201 mdelay(20); /* Wait a little bit for things to settle down. */
203 /* Expect INIT and IDLE, any of the others are bad */
204 if (!wait_mask(STATUS(sh
->io_port
), STATMASK
, INIT
| IDLE
, STST
| DIAGF
| INVDCMD
| DF
| CDF
, 0))
207 /* Shouldn't have generated any interrupts during reset */
208 if (inb(INTRFLAGS(sh
->io_port
)) & INTRMASK
)
211 /* Perform a host adapter inquiry instead so we do not need to set
212 up the mailboxes ahead of time */
214 aha1542_outb(sh
->io_port
, CMD_INQUIRY
);
216 for (i
= 0; i
< 4; i
++) {
217 if (!wait_mask(STATUS(sh
->io_port
), DF
, DF
, 0, 0))
219 inquiry_result
[i
] = inb(DATA(sh
->io_port
));
222 /* Reading port should reset DF */
223 if (inb(STATUS(sh
->io_port
)) & DF
)
226 /* When HACC, command is completed, and we're though testing */
227 if (!wait_mask(INTRFLAGS(sh
->io_port
), HACC
, HACC
, 0, 0))
230 /* Clear interrupts */
231 outb(IRST
, CONTROL(sh
->io_port
));
236 static irqreturn_t
aha1542_interrupt(int irq
, void *dev_id
)
238 struct Scsi_Host
*sh
= dev_id
;
239 struct aha1542_hostdata
*aha1542
= shost_priv(sh
);
240 void (*my_done
)(struct scsi_cmnd
*) = NULL
;
241 int errstatus
, mbi
, mbo
, mbistatus
;
244 struct scsi_cmnd
*tmp_cmd
;
246 struct mailbox
*mb
= aha1542
->mb
;
247 struct ccb
*ccb
= aha1542
->ccb
;
251 flag
= inb(INTRFLAGS(sh
->io_port
));
252 shost_printk(KERN_DEBUG
, sh
, "aha1542_intr_handle: ");
253 if (!(flag
& ANYINTR
))
254 printk("no interrupt?");
263 printk("status %02x\n", inb(STATUS(sh
->io_port
)));
268 spin_lock_irqsave(sh
->host_lock
, flags
);
270 flag
= inb(INTRFLAGS(sh
->io_port
));
272 /* Check for unusual interrupts. If any of these happen, we should
273 probably do something special, but for now just printing a message
274 is sufficient. A SCSI reset detected is something that we really
275 need to deal with in some way. */
284 aha1542_intr_reset(sh
->io_port
);
286 mbi
= aha1542
->aha1542_last_mbi_used
+ 1;
287 if (mbi
>= 2 * AHA1542_MAILBOXES
)
288 mbi
= AHA1542_MAILBOXES
;
291 if (mb
[mbi
].status
!= 0)
294 if (mbi
>= 2 * AHA1542_MAILBOXES
)
295 mbi
= AHA1542_MAILBOXES
;
296 } while (mbi
!= aha1542
->aha1542_last_mbi_used
);
298 if (mb
[mbi
].status
== 0) {
299 spin_unlock_irqrestore(sh
->host_lock
, flags
);
300 /* Hmm, no mail. Must have read it the last time around */
301 if (!number_serviced
)
302 shost_printk(KERN_WARNING
, sh
, "interrupt received, but no mail.\n");
306 mbo
= (scsi2int(mb
[mbi
].ccbptr
) - (isa_virt_to_bus(&ccb
[0]))) / sizeof(struct ccb
);
307 mbistatus
= mb
[mbi
].status
;
309 aha1542
->aha1542_last_mbi_used
= mbi
;
312 if (ccb
[mbo
].tarstat
| ccb
[mbo
].hastat
)
313 shost_printk(KERN_DEBUG
, sh
, "aha1542_command: returning %x (status %d)\n",
314 ccb
[mbo
].tarstat
+ ((int) ccb
[mbo
].hastat
<< 16), mb
[mbi
].status
);
318 continue; /* Aborted command not found */
321 shost_printk(KERN_DEBUG
, sh
, "...done %d %d\n", mbo
, mbi
);
324 tmp_cmd
= aha1542
->int_cmds
[mbo
];
326 if (!tmp_cmd
|| !tmp_cmd
->scsi_done
) {
327 spin_unlock_irqrestore(sh
->host_lock
, flags
);
328 shost_printk(KERN_WARNING
, sh
, "Unexpected interrupt\n");
329 shost_printk(KERN_WARNING
, sh
, "tarstat=%x, hastat=%x idlun=%x ccb#=%d\n", ccb
[mbo
].tarstat
,
330 ccb
[mbo
].hastat
, ccb
[mbo
].idlun
, mbo
);
333 my_done
= tmp_cmd
->scsi_done
;
334 kfree(tmp_cmd
->host_scribble
);
335 tmp_cmd
->host_scribble
= NULL
;
336 /* Fetch the sense data, and tuck it away, in the required slot. The
337 Adaptec automatically fetches it, and there is no guarantee that
338 we will still have it in the cdb when we come back */
339 if (ccb
[mbo
].tarstat
== 2)
340 memcpy(tmp_cmd
->sense_buffer
, &ccb
[mbo
].cdb
[ccb
[mbo
].cdblen
],
341 SCSI_SENSE_BUFFERSIZE
);
344 /* is there mail :-) */
346 /* more error checking left out here */
348 /* This is surely wrong, but I don't know what's right */
349 errstatus
= makecode(ccb
[mbo
].hastat
, ccb
[mbo
].tarstat
);
355 shost_printk(KERN_DEBUG
, sh
, "(aha1542 error:%x %x %x) ", errstatus
,
356 ccb
[mbo
].hastat
, ccb
[mbo
].tarstat
);
357 if (ccb
[mbo
].tarstat
== 2)
358 print_hex_dump_bytes("sense: ", DUMP_PREFIX_NONE
, &ccb
[mbo
].cdb
[ccb
[mbo
].cdblen
], 12);
360 printk("aha1542_intr_handle: returning %6x\n", errstatus
);
362 tmp_cmd
->result
= errstatus
;
363 aha1542
->int_cmds
[mbo
] = NULL
; /* This effectively frees up the mailbox slot, as
364 far as queuecommand is concerned */
370 static int aha1542_queuecommand(struct Scsi_Host
*sh
, struct scsi_cmnd
*cmd
)
372 struct aha1542_hostdata
*aha1542
= shost_priv(sh
);
374 u8 target
= cmd
->device
->id
;
375 u8 lun
= cmd
->device
->lun
;
377 int bufflen
= scsi_bufflen(cmd
);
379 struct mailbox
*mb
= aha1542
->mb
;
380 struct ccb
*ccb
= aha1542
->ccb
;
383 if (*cmd
->cmnd
== REQUEST_SENSE
) {
384 /* Don't do the command - we have the sense data already */
392 if (*cmd
->cmnd
== READ_10
|| *cmd
->cmnd
== WRITE_10
)
393 i
= xscsi2int(cmd
->cmnd
+ 2);
394 else if (*cmd
->cmnd
== READ_6
|| *cmd
->cmnd
== WRITE_6
)
395 i
= scsi2int(cmd
->cmnd
+ 2);
396 shost_printk(KERN_DEBUG
, sh
, "aha1542_queuecommand: dev %d cmd %02x pos %d len %d",
397 target
, *cmd
->cmnd
, i
, bufflen
);
398 print_hex_dump_bytes("command: ", DUMP_PREFIX_NONE
, cmd
->cmnd
, cmd
->cmd_len
);
401 if (bufflen
) { /* allocate memory before taking host_lock */
402 sg_count
= scsi_sg_count(cmd
);
403 cptr
= kmalloc(sizeof(*cptr
) * sg_count
, GFP_KERNEL
| GFP_DMA
);
405 return SCSI_MLQUEUE_HOST_BUSY
;
408 /* Use the outgoing mailboxes in a round-robin fashion, because this
409 is how the host adapter will scan for them */
411 spin_lock_irqsave(sh
->host_lock
, flags
);
412 mbo
= aha1542
->aha1542_last_mbo_used
+ 1;
413 if (mbo
>= AHA1542_MAILBOXES
)
417 if (mb
[mbo
].status
== 0 && aha1542
->int_cmds
[mbo
] == NULL
)
420 if (mbo
>= AHA1542_MAILBOXES
)
422 } while (mbo
!= aha1542
->aha1542_last_mbo_used
);
424 if (mb
[mbo
].status
|| aha1542
->int_cmds
[mbo
])
425 panic("Unable to find empty mailbox for aha1542.\n");
427 aha1542
->int_cmds
[mbo
] = cmd
; /* This will effectively prevent someone else from
428 screwing with this cdb. */
430 aha1542
->aha1542_last_mbo_used
= mbo
;
433 shost_printk(KERN_DEBUG
, sh
, "Sending command (%d %p)...", mbo
, cmd
->scsi_done
);
436 any2scsi(mb
[mbo
].ccbptr
, isa_virt_to_bus(&ccb
[mbo
])); /* This gets trashed for some reason */
438 memset(&ccb
[mbo
], 0, sizeof(struct ccb
));
440 ccb
[mbo
].cdblen
= cmd
->cmd_len
;
443 if (*cmd
->cmnd
== READ_10
|| *cmd
->cmnd
== READ_6
)
445 else if (*cmd
->cmnd
== WRITE_10
|| *cmd
->cmnd
== WRITE_6
)
448 memcpy(ccb
[mbo
].cdb
, cmd
->cmnd
, ccb
[mbo
].cdblen
);
451 struct scatterlist
*sg
;
454 ccb
[mbo
].op
= 2; /* SCSI Initiator Command w/scatter-gather */
455 cmd
->host_scribble
= (void *)cptr
;
456 scsi_for_each_sg(cmd
, sg
, sg_count
, i
) {
457 any2scsi(cptr
[i
].dataptr
, isa_page_to_bus(sg_page(sg
))
459 any2scsi(cptr
[i
].datalen
, sg
->length
);
461 any2scsi(ccb
[mbo
].datalen
, sg_count
* sizeof(struct chain
));
462 any2scsi(ccb
[mbo
].dataptr
, isa_virt_to_bus(cptr
));
464 shost_printk(KERN_DEBUG
, sh
, "cptr %p: ", cptr
);
465 print_hex_dump_bytes("cptr: ", DUMP_PREFIX_NONE
, cptr
, 18);
468 ccb
[mbo
].op
= 0; /* SCSI Initiator Command */
469 cmd
->host_scribble
= NULL
;
470 any2scsi(ccb
[mbo
].datalen
, 0);
471 any2scsi(ccb
[mbo
].dataptr
, 0);
473 ccb
[mbo
].idlun
= (target
& 7) << 5 | direction
| (lun
& 7); /*SCSI Target Id */
474 ccb
[mbo
].rsalen
= 16;
475 ccb
[mbo
].linkptr
[0] = ccb
[mbo
].linkptr
[1] = ccb
[mbo
].linkptr
[2] = 0;
476 ccb
[mbo
].commlinkid
= 0;
479 print_hex_dump_bytes("sending: ", DUMP_PREFIX_NONE
, &ccb
[mbo
], sizeof(ccb
[mbo
]) - 10);
480 printk("aha1542_queuecommand: now waiting for interrupt ");
483 aha1542_outb(cmd
->device
->host
->io_port
, CMD_START_SCSI
);
484 spin_unlock_irqrestore(sh
->host_lock
, flags
);
489 /* Initialize mailboxes */
490 static void setup_mailboxes(struct Scsi_Host
*sh
)
492 struct aha1542_hostdata
*aha1542
= shost_priv(sh
);
494 struct mailbox
*mb
= aha1542
->mb
;
495 struct ccb
*ccb
= aha1542
->ccb
;
497 u8 mb_cmd
[5] = { CMD_MBINIT
, AHA1542_MAILBOXES
, 0, 0, 0};
499 for (i
= 0; i
< AHA1542_MAILBOXES
; i
++) {
500 mb
[i
].status
= mb
[AHA1542_MAILBOXES
+ i
].status
= 0;
501 any2scsi(mb
[i
].ccbptr
, isa_virt_to_bus(&ccb
[i
]));
503 aha1542_intr_reset(sh
->io_port
); /* reset interrupts, so they don't block */
504 any2scsi((mb_cmd
+ 2), isa_virt_to_bus(mb
));
505 if (aha1542_out(sh
->io_port
, mb_cmd
, 5))
506 shost_printk(KERN_ERR
, sh
, "failed setting up mailboxes\n");
507 aha1542_intr_reset(sh
->io_port
);
510 static int aha1542_getconfig(struct Scsi_Host
*sh
)
512 u8 inquiry_result
[3];
514 i
= inb(STATUS(sh
->io_port
));
516 i
= inb(DATA(sh
->io_port
));
518 aha1542_outb(sh
->io_port
, CMD_RETCONF
);
519 aha1542_in(sh
->io_port
, inquiry_result
, 3, 0);
520 if (!wait_mask(INTRFLAGS(sh
->io_port
), INTRMASK
, HACC
, 0, 0))
521 shost_printk(KERN_ERR
, sh
, "error querying board settings\n");
522 aha1542_intr_reset(sh
->io_port
);
523 switch (inquiry_result
[0]) {
537 /* This means that the adapter, although Adaptec 1542 compatible, doesn't use a DMA channel.
538 Currently only aware of the BusLogic BT-445S VL-Bus adapter which needs this. */
539 sh
->dma_channel
= 0xFF;
542 shost_printk(KERN_ERR
, sh
, "Unable to determine DMA channel.\n");
545 switch (inquiry_result
[1]) {
565 shost_printk(KERN_ERR
, sh
, "Unable to determine IRQ level.\n");
568 sh
->this_id
= inquiry_result
[2] & 7;
572 /* This function should only be called for 1542C boards - we can detect
573 the special firmware settings and unlock the board */
575 static int aha1542_mbenable(struct Scsi_Host
*sh
)
577 static u8 mbenable_cmd
[3];
578 static u8 mbenable_result
[2];
581 retval
= BIOS_TRANSLATION_6432
;
583 aha1542_outb(sh
->io_port
, CMD_EXTBIOS
);
584 if (aha1542_in(sh
->io_port
, mbenable_result
, 2, 100))
586 if (!wait_mask(INTRFLAGS(sh
->io_port
), INTRMASK
, HACC
, 0, 100))
588 aha1542_intr_reset(sh
->io_port
);
590 if ((mbenable_result
[0] & 0x08) || mbenable_result
[1]) {
591 mbenable_cmd
[0] = CMD_MBENABLE
;
593 mbenable_cmd
[2] = mbenable_result
[1];
595 if ((mbenable_result
[0] & 0x08) && (mbenable_result
[1] & 0x03))
596 retval
= BIOS_TRANSLATION_25563
;
598 if (aha1542_out(sh
->io_port
, mbenable_cmd
, 3))
603 shost_printk(KERN_ERR
, sh
, "Mailbox init failed\n");
605 aha1542_intr_reset(sh
->io_port
);
609 /* Query the board to find out if it is a 1542 or a 1740, or whatever. */
610 static int aha1542_query(struct Scsi_Host
*sh
)
612 struct aha1542_hostdata
*aha1542
= shost_priv(sh
);
613 u8 inquiry_result
[4];
615 i
= inb(STATUS(sh
->io_port
));
617 i
= inb(DATA(sh
->io_port
));
619 aha1542_outb(sh
->io_port
, CMD_INQUIRY
);
620 aha1542_in(sh
->io_port
, inquiry_result
, 4, 0);
621 if (!wait_mask(INTRFLAGS(sh
->io_port
), INTRMASK
, HACC
, 0, 0))
622 shost_printk(KERN_ERR
, sh
, "error querying card type\n");
623 aha1542_intr_reset(sh
->io_port
);
625 aha1542
->bios_translation
= BIOS_TRANSLATION_6432
; /* Default case */
627 /* For an AHA1740 series board, we ignore the board since there is a
628 hardware bug which can lead to wrong blocks being returned if the board
629 is operating in the 1542 emulation mode. Since there is an extended mode
630 driver, we simply ignore the board and let the 1740 driver pick it up.
633 if (inquiry_result
[0] == 0x43) {
634 shost_printk(KERN_INFO
, sh
, "Emulation mode not supported for AHA-1740 hardware, use aha1740 driver instead.\n");
638 /* Always call this - boards that do not support extended bios translation
639 will ignore the command, and we will set the proper default */
641 aha1542
->bios_translation
= aha1542_mbenable(sh
);
646 static u8
dma_speed_hw(int dma_speed
)
661 return 0xff; /* invalid */
664 /* Set the Bus on/off-times as not to ruin floppy performance */
665 static void aha1542_set_bus_times(struct Scsi_Host
*sh
, int bus_on
, int bus_off
, int dma_speed
)
668 u8 oncmd
[] = { CMD_BUSON_TIME
, clamp(bus_on
, 2, 15) };
670 aha1542_intr_reset(sh
->io_port
);
671 if (aha1542_out(sh
->io_port
, oncmd
, 2))
676 u8 offcmd
[] = { CMD_BUSOFF_TIME
, clamp(bus_off
, 1, 64) };
678 aha1542_intr_reset(sh
->io_port
);
679 if (aha1542_out(sh
->io_port
, offcmd
, 2))
683 if (dma_speed_hw(dma_speed
) != 0xff) {
684 u8 dmacmd
[] = { CMD_DMASPEED
, dma_speed_hw(dma_speed
) };
686 aha1542_intr_reset(sh
->io_port
);
687 if (aha1542_out(sh
->io_port
, dmacmd
, 2))
690 aha1542_intr_reset(sh
->io_port
);
693 shost_printk(KERN_ERR
, sh
, "setting bus on/off-time failed\n");
694 aha1542_intr_reset(sh
->io_port
);
697 /* return non-zero on detection */
698 static struct Scsi_Host
*aha1542_hw_init(struct scsi_host_template
*tpnt
, struct device
*pdev
, int indx
)
700 unsigned int base_io
= io
[indx
];
701 struct Scsi_Host
*sh
;
702 struct aha1542_hostdata
*aha1542
;
703 char dma_info
[] = "no DMA";
708 if (!request_region(base_io
, AHA1542_REGION_SIZE
, "aha1542"))
711 sh
= scsi_host_alloc(tpnt
, sizeof(struct aha1542_hostdata
));
714 aha1542
= shost_priv(sh
);
716 sh
->unique_id
= base_io
;
717 sh
->io_port
= base_io
;
718 sh
->n_io_port
= AHA1542_REGION_SIZE
;
719 aha1542
->aha1542_last_mbi_used
= 2 * AHA1542_MAILBOXES
- 1;
720 aha1542
->aha1542_last_mbo_used
= AHA1542_MAILBOXES
- 1;
722 if (!aha1542_test_port(sh
))
725 aha1542_set_bus_times(sh
, bus_on
[indx
], bus_off
[indx
], dma_speed
[indx
]);
726 if (aha1542_query(sh
))
728 if (aha1542_getconfig(sh
) == -1)
731 if (sh
->dma_channel
!= 0xFF)
732 snprintf(dma_info
, sizeof(dma_info
), "DMA %d", sh
->dma_channel
);
733 shost_printk(KERN_INFO
, sh
, "Adaptec AHA-1542 (SCSI-ID %d) at IO 0x%x, IRQ %d, %s\n",
734 sh
->this_id
, base_io
, sh
->irq
, dma_info
);
735 if (aha1542
->bios_translation
== BIOS_TRANSLATION_25563
)
736 shost_printk(KERN_INFO
, sh
, "Using extended bios translation\n");
740 if (request_irq(sh
->irq
, aha1542_interrupt
, 0, "aha1542", sh
)) {
741 shost_printk(KERN_ERR
, sh
, "Unable to allocate IRQ.\n");
744 if (sh
->dma_channel
!= 0xFF) {
745 if (request_dma(sh
->dma_channel
, "aha1542")) {
746 shost_printk(KERN_ERR
, sh
, "Unable to allocate DMA channel.\n");
749 if (sh
->dma_channel
== 0 || sh
->dma_channel
>= 5) {
750 set_dma_mode(sh
->dma_channel
, DMA_MODE_CASCADE
);
751 enable_dma(sh
->dma_channel
);
755 if (scsi_add_host(sh
, pdev
))
762 if (sh
->dma_channel
!= 0xff)
763 free_dma(sh
->dma_channel
);
765 free_irq(sh
->irq
, sh
);
769 release_region(base_io
, AHA1542_REGION_SIZE
);
774 static int aha1542_release(struct Scsi_Host
*sh
)
776 scsi_remove_host(sh
);
777 if (sh
->dma_channel
!= 0xff)
778 free_dma(sh
->dma_channel
);
780 free_irq(sh
->irq
, sh
);
781 if (sh
->io_port
&& sh
->n_io_port
)
782 release_region(sh
->io_port
, sh
->n_io_port
);
789 * This is a device reset. This is handled by sending a special command
792 static int aha1542_dev_reset(struct scsi_cmnd
*cmd
)
794 struct Scsi_Host
*sh
= cmd
->device
->host
;
795 struct aha1542_hostdata
*aha1542
= shost_priv(sh
);
797 struct mailbox
*mb
= aha1542
->mb
;
798 u8 target
= cmd
->device
->id
;
799 u8 lun
= cmd
->device
->lun
;
801 struct ccb
*ccb
= aha1542
->ccb
;
803 spin_lock_irqsave(sh
->host_lock
, flags
);
804 mbo
= aha1542
->aha1542_last_mbo_used
+ 1;
805 if (mbo
>= AHA1542_MAILBOXES
)
809 if (mb
[mbo
].status
== 0 && aha1542
->int_cmds
[mbo
] == NULL
)
812 if (mbo
>= AHA1542_MAILBOXES
)
814 } while (mbo
!= aha1542
->aha1542_last_mbo_used
);
816 if (mb
[mbo
].status
|| aha1542
->int_cmds
[mbo
])
817 panic("Unable to find empty mailbox for aha1542.\n");
819 aha1542
->int_cmds
[mbo
] = cmd
; /* This will effectively
820 prevent someone else from
821 screwing with this cdb. */
823 aha1542
->aha1542_last_mbo_used
= mbo
;
825 any2scsi(mb
[mbo
].ccbptr
, isa_virt_to_bus(&ccb
[mbo
])); /* This gets trashed for some reason */
827 memset(&ccb
[mbo
], 0, sizeof(struct ccb
));
829 ccb
[mbo
].op
= 0x81; /* BUS DEVICE RESET */
831 ccb
[mbo
].idlun
= (target
& 7) << 5 | (lun
& 7); /*SCSI Target Id */
833 ccb
[mbo
].linkptr
[0] = ccb
[mbo
].linkptr
[1] = ccb
[mbo
].linkptr
[2] = 0;
834 ccb
[mbo
].commlinkid
= 0;
837 * Now tell the 1542 to flush all pending commands for this
840 aha1542_outb(sh
->io_port
, CMD_START_SCSI
);
841 spin_unlock_irqrestore(sh
->host_lock
, flags
);
843 scmd_printk(KERN_WARNING
, cmd
,
844 "Trying device reset for target\n");
849 static int aha1542_reset(struct scsi_cmnd
*cmd
, u8 reset_cmd
)
851 struct Scsi_Host
*sh
= cmd
->device
->host
;
852 struct aha1542_hostdata
*aha1542
= shost_priv(sh
);
856 spin_lock_irqsave(sh
->host_lock
, flags
);
858 * This does a scsi reset for all devices on the bus.
859 * In principle, we could also reset the 1542 - should
860 * we do this? Try this first, and we can add that later
861 * if it turns out to be useful.
863 outb(reset_cmd
, CONTROL(cmd
->device
->host
->io_port
));
865 if (!wait_mask(STATUS(cmd
->device
->host
->io_port
),
866 STATMASK
, IDLE
, STST
| DIAGF
| INVDCMD
| DF
| CDF
, 0)) {
867 spin_unlock_irqrestore(sh
->host_lock
, flags
);
872 * We need to do this too before the 1542 can interact with
873 * us again after host reset.
875 if (reset_cmd
& HRST
)
876 setup_mailboxes(cmd
->device
->host
);
879 * Now try to pick up the pieces. For all pending commands,
880 * free any internal data structures, and basically clear things
881 * out. We do not try and restart any commands or anything -
882 * the strategy handler takes care of that crap.
884 shost_printk(KERN_WARNING
, cmd
->device
->host
, "Sent BUS RESET to scsi host %d\n", cmd
->device
->host
->host_no
);
886 for (i
= 0; i
< AHA1542_MAILBOXES
; i
++) {
887 if (aha1542
->int_cmds
[i
] != NULL
) {
888 struct scsi_cmnd
*tmp_cmd
;
889 tmp_cmd
= aha1542
->int_cmds
[i
];
891 if (tmp_cmd
->device
->soft_reset
) {
893 * If this device implements the soft reset option,
894 * then it is still holding onto the command, and
895 * may yet complete it. In this case, we don't
900 kfree(tmp_cmd
->host_scribble
);
901 tmp_cmd
->host_scribble
= NULL
;
902 aha1542
->int_cmds
[i
] = NULL
;
903 aha1542
->mb
[i
].status
= 0;
907 spin_unlock_irqrestore(sh
->host_lock
, flags
);
911 static int aha1542_bus_reset(struct scsi_cmnd
*cmd
)
913 return aha1542_reset(cmd
, SCRST
);
916 static int aha1542_host_reset(struct scsi_cmnd
*cmd
)
918 return aha1542_reset(cmd
, HRST
| SCRST
);
921 static int aha1542_biosparam(struct scsi_device
*sdev
,
922 struct block_device
*bdev
, sector_t capacity
, int geom
[])
924 struct aha1542_hostdata
*aha1542
= shost_priv(sdev
->host
);
926 if (capacity
>= 0x200000 &&
927 aha1542
->bios_translation
== BIOS_TRANSLATION_25563
) {
928 /* Please verify that this is the same as what DOS returns */
929 geom
[0] = 255; /* heads */
930 geom
[1] = 63; /* sectors */
932 geom
[0] = 64; /* heads */
933 geom
[1] = 32; /* sectors */
935 geom
[2] = sector_div(capacity
, geom
[0] * geom
[1]); /* cylinders */
939 MODULE_LICENSE("GPL");
941 static struct scsi_host_template driver_template
= {
942 .module
= THIS_MODULE
,
943 .proc_name
= "aha1542",
944 .name
= "Adaptec 1542",
945 .queuecommand
= aha1542_queuecommand
,
946 .eh_device_reset_handler
= aha1542_dev_reset
,
947 .eh_bus_reset_handler
= aha1542_bus_reset
,
948 .eh_host_reset_handler
= aha1542_host_reset
,
949 .bios_param
= aha1542_biosparam
,
950 .can_queue
= AHA1542_MAILBOXES
,
953 .unchecked_isa_dma
= 1,
954 .use_clustering
= ENABLE_CLUSTERING
,
957 static int aha1542_isa_match(struct device
*pdev
, unsigned int ndev
)
959 struct Scsi_Host
*sh
= aha1542_hw_init(&driver_template
, pdev
, ndev
);
964 dev_set_drvdata(pdev
, sh
);
968 static int aha1542_isa_remove(struct device
*pdev
,
971 aha1542_release(dev_get_drvdata(pdev
));
972 dev_set_drvdata(pdev
, NULL
);
976 static struct isa_driver aha1542_isa_driver
= {
977 .match
= aha1542_isa_match
,
978 .remove
= aha1542_isa_remove
,
983 static int isa_registered
;
986 static struct pnp_device_id aha1542_pnp_ids
[] = {
990 MODULE_DEVICE_TABLE(pnp
, aha1542_pnp_ids
);
992 static int aha1542_pnp_probe(struct pnp_dev
*pdev
, const struct pnp_device_id
*id
)
995 struct Scsi_Host
*sh
;
997 for (indx
= 0; indx
< ARRAY_SIZE(io
); indx
++) {
1001 if (pnp_activate_dev(pdev
) < 0)
1004 io
[indx
] = pnp_port_start(pdev
, 0);
1006 /* The card can be queried for its DMA, we have
1007 the DMA set up that is enough */
1009 dev_info(&pdev
->dev
, "ISAPnP found an AHA1535 at I/O 0x%03X", io
[indx
]);
1012 sh
= aha1542_hw_init(&driver_template
, &pdev
->dev
, indx
);
1016 pnp_set_drvdata(pdev
, sh
);
1020 static void aha1542_pnp_remove(struct pnp_dev
*pdev
)
1022 aha1542_release(pnp_get_drvdata(pdev
));
1023 pnp_set_drvdata(pdev
, NULL
);
1026 static struct pnp_driver aha1542_pnp_driver
= {
1028 .id_table
= aha1542_pnp_ids
,
1029 .probe
= aha1542_pnp_probe
,
1030 .remove
= aha1542_pnp_remove
,
1032 static int pnp_registered
;
1033 #endif /* CONFIG_PNP */
1035 static int __init
aha1542_init(void)
1041 ret
= pnp_register_driver(&aha1542_pnp_driver
);
1046 ret
= isa_register_driver(&aha1542_isa_driver
, MAXBOARDS
);
1060 static void __exit
aha1542_exit(void)
1064 pnp_unregister_driver(&aha1542_pnp_driver
);
1067 isa_unregister_driver(&aha1542_isa_driver
);
1070 module_init(aha1542_init
);
1071 module_exit(aha1542_exit
);