3 * Low-level SCSI driver for sym53c416 chip.
4 * Copyright (C) 1998 Lieven Willems (lw_linux@hotmail.com)
8 * Marcelo Tosatti <marcelo@conectiva.com.br> : Added io_request_lock locking
9 * Alan Cox <alan@lxorguk.ukuu.org.uk> : Cleaned up code formatting
10 * Fixed an irq locking bug
11 * Added ISAPnP support
12 * Bjoern A. Zeeb <bzeeb@zabbadoz.net> : Initial irq locking updates
13 * Added another card with ISAPnP support
15 * LILO command line usage: sym53c416=<PORTBASE>[,<IRQ>]
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the
19 * Free Software Foundation; either version 2, or (at your option) any
22 * This program is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * General Public License for more details.
29 #include <linux/module.h>
30 #include <linux/kernel.h>
31 #include <linux/types.h>
32 #include <linux/init.h>
33 #include <linux/string.h>
34 #include <linux/ioport.h>
35 #include <linux/interrupt.h>
36 #include <linux/delay.h>
37 #include <linux/proc_fs.h>
38 #include <linux/spinlock.h>
41 #include <linux/blkdev.h>
42 #include <linux/isapnp.h>
44 #include <scsi/scsi_host.h>
45 #include "sym53c416.h"
47 #define VERSION_STRING "Version 1.0.0-ac"
49 #define TC_LOW 0x00 /* Transfer counter low */
50 #define TC_MID 0x01 /* Transfer counter mid */
51 #define SCSI_FIFO 0x02 /* SCSI FIFO register */
52 #define COMMAND_REG 0x03 /* Command Register */
53 #define STATUS_REG 0x04 /* Status Register (READ) */
54 #define DEST_BUS_ID 0x04 /* Destination Bus ID (WRITE) */
55 #define INT_REG 0x05 /* Interrupt Register (READ) */
56 #define TOM 0x05 /* Time out multiplier (WRITE) */
57 #define STP 0x06 /* Synchronous Transfer period */
58 #define SYNC_OFFSET 0x07 /* Synchronous Offset */
59 #define CONF_REG_1 0x08 /* Configuration register 1 */
60 #define CONF_REG_2 0x0B /* Configuration register 2 */
61 #define CONF_REG_3 0x0C /* Configuration register 3 */
62 #define CONF_REG_4 0x0D /* Configuration register 4 */
63 #define TC_HIGH 0x0E /* Transfer counter high */
64 #define PIO_FIFO_1 0x10 /* PIO FIFO register 1 */
65 #define PIO_FIFO_2 0x11 /* PIO FIFO register 2 */
66 #define PIO_FIFO_3 0x12 /* PIO FIFO register 3 */
67 #define PIO_FIFO_4 0x13 /* PIO FIFO register 4 */
68 #define PIO_FIFO_CNT 0x14 /* PIO FIFO count */
69 #define PIO_INT_REG 0x15 /* PIO interrupt register */
70 #define CONF_REG_5 0x16 /* Configuration register 5 */
71 #define FEATURE_EN 0x1D /* Feature Enable register */
73 /* Configuration register 1 entries: */
74 /* Bits 2-0: SCSI ID of host adapter */
75 #define SCM 0x80 /* Slow Cable Mode */
76 #define SRID 0x40 /* SCSI Reset Interrupt Disable */
77 #define PTM 0x20 /* Parity Test Mode */
78 #define EPC 0x10 /* Enable Parity Checking */
79 #define CTME 0x08 /* Special Test Mode */
81 /* Configuration register 2 entries: */
82 #define FE 0x40 /* Features Enable */
83 #define SCSI2 0x08 /* SCSI 2 Enable */
84 #define TBPA 0x04 /* Target Bad Parity Abort */
86 /* Configuration register 3 entries: */
87 #define IDMRC 0x80 /* ID Message Reserved Check */
88 #define QTE 0x40 /* Queue Tag Enable */
89 #define CDB10 0x20 /* Command Descriptor Block 10 */
90 #define FSCSI 0x10 /* FastSCSI */
91 #define FCLK 0x08 /* FastClock */
93 /* Configuration register 4 entries: */
94 #define RBS 0x08 /* Register bank select */
95 #define EAN 0x04 /* Enable Active Negotiation */
97 /* Configuration register 5 entries: */
98 #define LPSR 0x80 /* Lower Power SCSI Reset */
99 #define IE 0x20 /* Interrupt Enable */
100 #define LPM 0x02 /* Low Power Mode */
101 #define WSE0 0x01 /* 0WS Enable */
103 /* Interrupt register entries: */
104 #define SRST 0x80 /* SCSI Reset */
105 #define ILCMD 0x40 /* Illegal Command */
106 #define DIS 0x20 /* Disconnect */
107 #define BS 0x10 /* Bus Service */
108 #define FC 0x08 /* Function Complete */
109 #define RESEL 0x04 /* Reselected */
110 #define SI 0x03 /* Selection Interrupt */
112 /* Status Register Entries: */
113 #define SCI 0x80 /* SCSI Core Int */
114 #define GE 0x40 /* Gross Error */
115 #define PE 0x20 /* Parity Error */
116 #define TC 0x10 /* Terminal Count */
117 #define VGC 0x08 /* Valid Group Code */
118 #define PHBITS 0x07 /* Phase bits */
120 /* PIO Interrupt Register Entries: */
121 #define SCI 0x80 /* SCSI Core Int */
122 #define PFI 0x40 /* PIO FIFO Interrupt */
123 #define FULL 0x20 /* PIO FIFO Full */
124 #define EMPTY 0x10 /* PIO FIFO Empty */
125 #define CE 0x08 /* Collision Error */
126 #define OUE 0x04 /* Overflow / Underflow error */
127 #define FIE 0x02 /* Full Interrupt Enable */
128 #define EIE 0x01 /* Empty Interrupt Enable */
130 /* SYM53C416 SCSI phases (lower 3 bits of SYM53C416_STATUS_REG) */
131 #define PHASE_DATA_OUT 0x00
132 #define PHASE_DATA_IN 0x01
133 #define PHASE_COMMAND 0x02
134 #define PHASE_STATUS 0x03
135 #define PHASE_RESERVED_1 0x04
136 #define PHASE_RESERVED_2 0x05
137 #define PHASE_MESSAGE_OUT 0x06
138 #define PHASE_MESSAGE_IN 0x07
140 /* SYM53C416 core commands */
142 #define FLUSH_FIFO 0x01
143 #define RESET_CHIP 0x02
144 #define RESET_SCSI_BUS 0x03
145 #define DISABLE_SEL_RESEL 0x45
146 #define RESEL_SEQ 0x40
147 #define SEL_WITHOUT_ATN_SEQ 0x41
148 #define SEL_WITH_ATN_SEQ 0x42
149 #define SEL_WITH_ATN_AND_STOP_SEQ 0x43
150 #define ENABLE_SEL_RESEL 0x44
151 #define SEL_WITH_ATN3_SEQ 0x46
152 #define RESEL3_SEQ 0x47
154 #define SND_STAT 0x21
155 #define SND_DATA 0x22
156 #define DISCONNECT_SEQ 0x23
157 #define TERMINATE_SEQ 0x24
158 #define TARGET_COMM_COMPLETE_SEQ 0x25
160 #define RECV_MSG_SEQ 0x28
161 #define RECV_CMD 0x29
162 #define RECV_DATA 0x2A
163 #define RECV_CMD_SEQ 0x2B
164 #define TARGET_ABORT_PIO 0x04
165 #define TRANSFER_INFORMATION 0x10
166 #define INIT_COMM_COMPLETE_SEQ 0x11
167 #define MSG_ACCEPTED 0x12
168 #define TRANSFER_PAD 0x18
170 #define RESET_ATN 0x1B
173 #define PIO_MODE 0x80
175 #define IO_RANGE 0x20 /* 0x00 - 0x1F */
176 #define ID "sym53c416" /* Attention: copied to the sym53c416.h */
177 #define PIO_SIZE 128 /* Size of PIO fifo is 128 bytes */
179 #define READ_TIMEOUT 150
180 #define WRITE_TIMEOUT 150
184 #define sym53c416_base sym53c416
185 #define sym53c416_base_1 sym53c416_1
186 #define sym53c416_base_2 sym53c416_2
187 #define sym53c416_base_3 sym53c416_3
189 static unsigned int sym53c416_base
[2];
190 static unsigned int sym53c416_base_1
[2];
191 static unsigned int sym53c416_base_2
[2];
192 static unsigned int sym53c416_base_3
[2];
198 #define SG_ADDRESS(buffer) ((char *) sg_virt((buffer)))
218 static host hosts
[MAXHOSTS
] = {
219 {0, 0, SYM53C416_SCSI_ID
},
220 {0, 0, SYM53C416_SCSI_ID
},
221 {0, 0, SYM53C416_SCSI_ID
},
222 {0, 0, SYM53C416_SCSI_ID
}
225 static int host_index
= 0;
226 static char info
[120];
227 static Scsi_Cmnd
*current_command
= NULL
;
228 static int fastpio
= 1;
230 static int probeaddrs
[] = {0x200, 0x220, 0x240, 0};
232 static void sym53c416_set_transfer_counter(int base
, unsigned int len
)
234 /* Program Transfer Counter */
235 outb(len
& 0x0000FF, base
+ TC_LOW
);
236 outb((len
& 0x00FF00) >> 8, base
+ TC_MID
);
237 outb((len
& 0xFF0000) >> 16, base
+ TC_HIGH
);
240 static DEFINE_SPINLOCK(sym53c416_lock
);
242 /* Returns the number of bytes read */
243 static __inline__
unsigned int sym53c416_read(int base
, unsigned char *buffer
, unsigned int len
)
245 unsigned int orig_len
= len
;
246 unsigned long flags
= 0;
247 unsigned int bytes_left
;
249 int timeout
= READ_TIMEOUT
;
252 spin_lock_irqsave(&sym53c416_lock
, flags
);
253 while(len
&& timeout
)
255 bytes_left
= inb(base
+ PIO_FIFO_CNT
); /* Number of bytes in the PIO FIFO */
256 if(fastpio
&& bytes_left
> 3)
258 insl(base
+ PIO_FIFO_1
, buffer
, bytes_left
>> 2);
259 buffer
+= bytes_left
& 0xFC;
260 len
-= bytes_left
& 0xFC;
262 else if(bytes_left
> 0)
265 for(; bytes_left
> 0; bytes_left
--)
266 *(buffer
++) = inb(base
+ PIO_FIFO_1
);
270 i
= jiffies
+ timeout
;
271 spin_unlock_irqrestore(&sym53c416_lock
, flags
);
272 while(time_before(jiffies
, i
) && (inb(base
+ PIO_INT_REG
) & EMPTY
) && timeout
)
273 if(inb(base
+ PIO_INT_REG
) & SCI
)
275 spin_lock_irqsave(&sym53c416_lock
, flags
);
276 if(inb(base
+ PIO_INT_REG
) & EMPTY
)
280 spin_unlock_irqrestore(&sym53c416_lock
, flags
);
281 return orig_len
- len
;
284 /* Returns the number of bytes written */
285 static __inline__
unsigned int sym53c416_write(int base
, unsigned char *buffer
, unsigned int len
)
287 unsigned int orig_len
= len
;
288 unsigned long flags
= 0;
289 unsigned int bufferfree
;
291 unsigned int timeout
= WRITE_TIMEOUT
;
294 spin_lock_irqsave(&sym53c416_lock
, flags
);
295 while(len
&& timeout
)
297 bufferfree
= PIO_SIZE
- inb(base
+ PIO_FIFO_CNT
);
300 if(fastpio
&& bufferfree
> 3)
302 outsl(base
+ PIO_FIFO_1
, buffer
, bufferfree
>> 2);
303 buffer
+= bufferfree
& 0xFC;
304 len
-= bufferfree
& 0xFC;
306 else if(bufferfree
> 0)
309 for(; bufferfree
> 0; bufferfree
--)
310 outb(*(buffer
++), base
+ PIO_FIFO_1
);
314 i
= jiffies
+ timeout
;
315 spin_unlock_irqrestore(&sym53c416_lock
, flags
);
316 while(time_before(jiffies
, i
) && (inb(base
+ PIO_INT_REG
) & FULL
) && timeout
)
318 spin_lock_irqsave(&sym53c416_lock
, flags
);
319 if(inb(base
+ PIO_INT_REG
) & FULL
)
323 spin_unlock_irqrestore(&sym53c416_lock
, flags
);
324 return orig_len
- len
;
327 static irqreturn_t
sym53c416_intr_handle(int irq
, void *dev_id
)
329 struct Scsi_Host
*dev
= dev_id
;
330 int base
= dev
->io_port
;
332 unsigned long flags
= 0;
333 unsigned char status_reg
, pio_int_reg
, int_reg
;
334 struct scatterlist
*sg
;
335 unsigned int tot_trans
= 0;
337 spin_lock_irqsave(dev
->host_lock
,flags
);
338 status_reg
= inb(base
+ STATUS_REG
);
339 pio_int_reg
= inb(base
+ PIO_INT_REG
);
340 int_reg
= inb(base
+ INT_REG
);
341 spin_unlock_irqrestore(dev
->host_lock
, flags
);
343 /* First, we handle error conditions */
344 if(int_reg
& SCI
) /* SCSI Reset */
346 printk(KERN_DEBUG
"sym53c416: Reset received\n");
347 current_command
->SCp
.phase
= idle
;
348 current_command
->result
= DID_RESET
<< 16;
349 spin_lock_irqsave(dev
->host_lock
, flags
);
350 current_command
->scsi_done(current_command
);
351 spin_unlock_irqrestore(dev
->host_lock
, flags
);
354 if(int_reg
& ILCMD
) /* Illegal Command */
356 printk(KERN_WARNING
"sym53c416: Illegal Command: 0x%02x.\n", inb(base
+ COMMAND_REG
));
357 current_command
->SCp
.phase
= idle
;
358 current_command
->result
= DID_ERROR
<< 16;
359 spin_lock_irqsave(dev
->host_lock
, flags
);
360 current_command
->scsi_done(current_command
);
361 spin_unlock_irqrestore(dev
->host_lock
, flags
);
364 if(status_reg
& GE
) /* Gross Error */
366 printk(KERN_WARNING
"sym53c416: Controller reports gross error.\n");
367 current_command
->SCp
.phase
= idle
;
368 current_command
->result
= DID_ERROR
<< 16;
369 spin_lock_irqsave(dev
->host_lock
, flags
);
370 current_command
->scsi_done(current_command
);
371 spin_unlock_irqrestore(dev
->host_lock
, flags
);
374 if(status_reg
& PE
) /* Parity Error */
376 printk(KERN_WARNING
"sym53c416:SCSI parity error.\n");
377 current_command
->SCp
.phase
= idle
;
378 current_command
->result
= DID_PARITY
<< 16;
379 spin_lock_irqsave(dev
->host_lock
, flags
);
380 current_command
->scsi_done(current_command
);
381 spin_unlock_irqrestore(dev
->host_lock
, flags
);
384 if(pio_int_reg
& (CE
| OUE
))
386 printk(KERN_WARNING
"sym53c416: PIO interrupt error.\n");
387 current_command
->SCp
.phase
= idle
;
388 current_command
->result
= DID_ERROR
<< 16;
389 spin_lock_irqsave(dev
->host_lock
, flags
);
390 current_command
->scsi_done(current_command
);
391 spin_unlock_irqrestore(dev
->host_lock
, flags
);
394 if(int_reg
& DIS
) /* Disconnect */
396 if(current_command
->SCp
.phase
!= message_in
)
397 current_command
->result
= DID_NO_CONNECT
<< 16;
399 current_command
->result
= (current_command
->SCp
.Status
& 0xFF) | ((current_command
->SCp
.Message
& 0xFF) << 8) | (DID_OK
<< 16);
400 current_command
->SCp
.phase
= idle
;
401 spin_lock_irqsave(dev
->host_lock
, flags
);
402 current_command
->scsi_done(current_command
);
403 spin_unlock_irqrestore(dev
->host_lock
, flags
);
406 /* Now we handle SCSI phases */
408 switch(status_reg
& PHBITS
) /* Filter SCSI phase out of status reg */
414 current_command
->SCp
.phase
= data_out
;
415 outb(FLUSH_FIFO
, base
+ COMMAND_REG
);
416 sym53c416_set_transfer_counter(base
,
417 scsi_bufflen(current_command
));
418 outb(TRANSFER_INFORMATION
| PIO_MODE
, base
+ COMMAND_REG
);
420 scsi_for_each_sg(current_command
,
421 sg
, scsi_sg_count(current_command
), i
) {
422 tot_trans
+= sym53c416_write(base
,
426 if(tot_trans
< current_command
->underflow
)
427 printk(KERN_WARNING
"sym53c416: Underflow, wrote %d bytes, request for %d bytes.\n", tot_trans
, current_command
->underflow
);
436 current_command
->SCp
.phase
= data_in
;
437 outb(FLUSH_FIFO
, base
+ COMMAND_REG
);
438 sym53c416_set_transfer_counter(base
,
439 scsi_bufflen(current_command
));
441 outb(TRANSFER_INFORMATION
| PIO_MODE
, base
+ COMMAND_REG
);
443 scsi_for_each_sg(current_command
,
444 sg
, scsi_sg_count(current_command
), i
) {
445 tot_trans
+= sym53c416_read(base
,
449 if(tot_trans
< current_command
->underflow
)
450 printk(KERN_WARNING
"sym53c416: Underflow, read %d bytes, request for %d bytes.\n", tot_trans
, current_command
->underflow
);
457 current_command
->SCp
.phase
= command_ph
;
458 printk(KERN_ERR
"sym53c416: Unknown interrupt in command phase.\n");
464 current_command
->SCp
.phase
= status_ph
;
465 outb(FLUSH_FIFO
, base
+ COMMAND_REG
);
466 outb(INIT_COMM_COMPLETE_SEQ
, base
+ COMMAND_REG
);
470 case PHASE_RESERVED_1
:
471 case PHASE_RESERVED_2
:
473 printk(KERN_ERR
"sym53c416: Reserved phase occurred.\n");
477 case PHASE_MESSAGE_OUT
:
479 current_command
->SCp
.phase
= message_out
;
480 outb(SET_ATN
, base
+ COMMAND_REG
);
481 outb(MSG_ACCEPTED
, base
+ COMMAND_REG
);
485 case PHASE_MESSAGE_IN
:
487 current_command
->SCp
.phase
= message_in
;
488 current_command
->SCp
.Status
= inb(base
+ SCSI_FIFO
);
489 current_command
->SCp
.Message
= inb(base
+ SCSI_FIFO
);
490 if(current_command
->SCp
.Message
== SAVE_POINTERS
|| current_command
->SCp
.Message
== DISCONNECT
)
491 outb(SET_ATN
, base
+ COMMAND_REG
);
492 outb(MSG_ACCEPTED
, base
+ COMMAND_REG
);
500 static void sym53c416_init(int base
, int scsi_id
)
502 outb(RESET_CHIP
, base
+ COMMAND_REG
);
503 outb(NOOP
, base
+ COMMAND_REG
);
504 outb(0x99, base
+ TOM
); /* Time out of 250 ms */
505 outb(0x05, base
+ STP
);
506 outb(0x00, base
+ SYNC_OFFSET
);
507 outb(EPC
| scsi_id
, base
+ CONF_REG_1
);
508 outb(FE
| SCSI2
| TBPA
, base
+ CONF_REG_2
);
509 outb(IDMRC
| QTE
| CDB10
| FSCSI
| FCLK
, base
+ CONF_REG_3
);
510 outb(0x83 | EAN
, base
+ CONF_REG_4
);
511 outb(IE
| WSE0
, base
+ CONF_REG_5
);
512 outb(0, base
+ FEATURE_EN
);
515 static int sym53c416_probeirq(int base
, int scsi_id
)
520 /* Clear interrupt register */
522 /* Start probing for irq's */
523 irqs
= probe_irq_on();
525 sym53c416_init(base
, scsi_id
);
526 /* Cause interrupt */
527 outb(NOOP
, base
+ COMMAND_REG
);
528 outb(ILLEGAL
, base
+ COMMAND_REG
);
529 outb(0x07, base
+ DEST_BUS_ID
);
530 outb(0x00, base
+ DEST_BUS_ID
);
531 /* Wait for interrupt to occur */
533 while(time_before(jiffies
, i
) && !(inb(base
+ STATUS_REG
) & SCI
))
535 if(time_before_eq(i
, jiffies
)) /* timed out */
537 /* Get occurred irq */
538 irq
= probe_irq_off(irqs
);
539 sym53c416_init(base
, scsi_id
);
543 /* Setup: sym53c416=base,irq */
544 void sym53c416_setup(char *str
, int *ints
)
548 if(host_index
>= MAXHOSTS
)
550 printk(KERN_WARNING
"sym53c416: Too many hosts defined\n");
553 if(ints
[0] < 1 || ints
[0] > 2)
555 printk(KERN_ERR
"sym53c416: Wrong number of parameters:\n");
556 printk(KERN_ERR
"sym53c416: usage: sym53c416=<base>[,<irq>]\n");
559 for(i
= 0; i
< host_index
&& i
>= 0; i
++)
560 if(hosts
[i
].base
== ints
[1])
564 hosts
[host_index
].base
= ints
[1];
565 hosts
[host_index
].irq
= (ints
[0] == 2)? ints
[2] : 0;
570 static int sym53c416_test(int base
)
572 outb(RESET_CHIP
, base
+ COMMAND_REG
);
573 outb(NOOP
, base
+ COMMAND_REG
);
574 if(inb(base
+ COMMAND_REG
) != NOOP
)
576 if(!inb(base
+ TC_HIGH
) || inb(base
+ TC_HIGH
) == 0xFF)
578 if((inb(base
+ PIO_INT_REG
) & (FULL
| EMPTY
| CE
| OUE
| FIE
| EIE
)) != EMPTY
)
584 static struct isapnp_device_id id_table
[] = {
585 { ISAPNP_ANY_ID
, ISAPNP_ANY_ID
,
586 ISAPNP_VENDOR('S','L','I'), ISAPNP_FUNCTION(0x4161), 0 },
587 { ISAPNP_ANY_ID
, ISAPNP_ANY_ID
,
588 ISAPNP_VENDOR('S','L','I'), ISAPNP_FUNCTION(0x4163), 0 },
589 { ISAPNP_DEVICE_SINGLE_END
}
592 MODULE_DEVICE_TABLE(isapnp
, id_table
);
594 static void sym53c416_probe(void)
596 int *base
= probeaddrs
;
600 for(; *base
; base
++) {
601 if (request_region(*base
, IO_RANGE
, ID
)) {
602 if (sym53c416_test(*base
)) {
604 sym53c416_setup(NULL
, ints
);
606 release_region(*base
, IO_RANGE
);
611 int __init
sym53c416_detect(struct scsi_host_template
*tpnt
)
614 struct Scsi_Host
* shpnt
= NULL
;
617 struct pnp_dev
*idev
= NULL
;
623 if(sym53c416_base
[0])
625 ints
[1] = sym53c416_base
[0];
626 ints
[2] = sym53c416_base
[1];
627 sym53c416_setup(NULL
, ints
);
629 if(sym53c416_base_1
[0])
631 ints
[1] = sym53c416_base_1
[0];
632 ints
[2] = sym53c416_base_1
[1];
633 sym53c416_setup(NULL
, ints
);
635 if(sym53c416_base_2
[0])
637 ints
[1] = sym53c416_base_2
[0];
638 ints
[2] = sym53c416_base_2
[1];
639 sym53c416_setup(NULL
, ints
);
641 if(sym53c416_base_3
[0])
643 ints
[1] = sym53c416_base_3
[0];
644 ints
[2] = sym53c416_base_3
[1];
645 sym53c416_setup(NULL
, ints
);
648 printk(KERN_INFO
"sym53c416.c: %s\n", VERSION_STRING
);
650 for (i
=0; id_table
[i
].vendor
!= 0; i
++) {
651 while((idev
=pnp_find_dev(NULL
, id_table
[i
].vendor
,
652 id_table
[i
].function
, idev
))!=NULL
)
656 if(pnp_device_attach(idev
)<0)
658 printk(KERN_WARNING
"sym53c416: unable to attach PnP device.\n");
661 if(pnp_activate_dev(idev
) < 0)
663 printk(KERN_WARNING
"sym53c416: unable to activate PnP device.\n");
664 pnp_device_detach(idev
);
670 i
[1] = pnp_port_start(idev
, 0);
671 i
[2] = pnp_irq(idev
, 0);
673 printk(KERN_INFO
"sym53c416: ISAPnP card found and configured at 0x%X, IRQ %d.\n",
675 sym53c416_setup(NULL
, i
);
680 /* Now we register and set up each host adapter found... */
681 for(count
= 0, i
= 0; i
< host_index
; i
++) {
682 if (!request_region(hosts
[i
].base
, IO_RANGE
, ID
))
684 if (!sym53c416_test(hosts
[i
].base
)) {
685 printk(KERN_WARNING
"No sym53c416 found at address 0x%03x\n", hosts
[i
].base
);
686 goto fail_release_region
;
689 /* We don't have an irq yet, so we should probe for one */
691 hosts
[i
].irq
= sym53c416_probeirq(hosts
[i
].base
, hosts
[i
].scsi_id
);
693 goto fail_release_region
;
695 shpnt
= scsi_register(tpnt
, 0);
697 goto fail_release_region
;
698 /* Request for specified IRQ */
699 if (request_irq(hosts
[i
].irq
, sym53c416_intr_handle
, 0, ID
, shpnt
))
702 spin_lock_irqsave(&sym53c416_lock
, flags
);
703 shpnt
->unique_id
= hosts
[i
].base
;
704 shpnt
->io_port
= hosts
[i
].base
;
705 shpnt
->n_io_port
= IO_RANGE
;
706 shpnt
->irq
= hosts
[i
].irq
;
707 shpnt
->this_id
= hosts
[i
].scsi_id
;
708 sym53c416_init(hosts
[i
].base
, hosts
[i
].scsi_id
);
710 spin_unlock_irqrestore(&sym53c416_lock
, flags
);
714 scsi_unregister(shpnt
);
716 release_region(hosts
[i
].base
, IO_RANGE
);
721 const char *sym53c416_info(struct Scsi_Host
*SChost
)
724 int base
= SChost
->io_port
;
725 int irq
= SChost
->irq
;
727 int rev
= inb(base
+ TC_HIGH
);
729 for(i
= 0; i
< host_index
; i
++)
730 if(hosts
[i
].base
== base
)
731 scsi_id
= hosts
[i
].scsi_id
;
732 sprintf(info
, "Symbios Logic 53c416 (rev. %d) at 0x%03x, irq %d, SCSI-ID %d, %s pio", rev
, base
, irq
, scsi_id
, (fastpio
)? "fast" : "slow");
736 static int sym53c416_queuecommand_lck(Scsi_Cmnd
*SCpnt
, void (*done
)(Scsi_Cmnd
*))
739 unsigned long flags
= 0;
742 /* Store base register as we can have more than one controller in the system */
743 base
= SCpnt
->device
->host
->io_port
;
744 current_command
= SCpnt
; /* set current command */
745 current_command
->scsi_done
= done
; /* set ptr to done function */
746 current_command
->SCp
.phase
= command_ph
; /* currect phase is the command phase */
747 current_command
->SCp
.Status
= 0;
748 current_command
->SCp
.Message
= 0;
750 spin_lock_irqsave(&sym53c416_lock
, flags
);
751 outb(scmd_id(SCpnt
), base
+ DEST_BUS_ID
); /* Set scsi id target */
752 outb(FLUSH_FIFO
, base
+ COMMAND_REG
); /* Flush SCSI and PIO FIFO's */
753 /* Write SCSI command into the SCSI fifo */
754 for(i
= 0; i
< SCpnt
->cmd_len
; i
++)
755 outb(SCpnt
->cmnd
[i
], base
+ SCSI_FIFO
);
756 /* Start selection sequence */
757 outb(SEL_WITHOUT_ATN_SEQ
, base
+ COMMAND_REG
);
758 /* Now an interrupt will be generated which we will catch in out interrupt routine */
759 spin_unlock_irqrestore(&sym53c416_lock
, flags
);
763 DEF_SCSI_QCMD(sym53c416_queuecommand
)
765 static int sym53c416_host_reset(Scsi_Cmnd
*SCpnt
)
772 spin_lock_irqsave(&sym53c416_lock
, flags
);
774 /* printk("sym53c416_reset\n"); */
775 base
= SCpnt
->device
->host
->io_port
;
776 /* search scsi_id - fixme, we shouldn't need to iterate for this! */
777 for(i
= 0; i
< host_index
&& scsi_id
== -1; i
++)
778 if(hosts
[i
].base
== base
)
779 scsi_id
= hosts
[i
].scsi_id
;
780 outb(RESET_CHIP
, base
+ COMMAND_REG
);
781 outb(NOOP
| PIO_MODE
, base
+ COMMAND_REG
);
782 outb(RESET_SCSI_BUS
, base
+ COMMAND_REG
);
783 sym53c416_init(base
, scsi_id
);
785 spin_unlock_irqrestore(&sym53c416_lock
, flags
);
789 static int sym53c416_release(struct Scsi_Host
*shost
)
792 free_irq(shost
->irq
, shost
);
793 if (shost
->io_port
&& shost
->n_io_port
)
794 release_region(shost
->io_port
, shost
->n_io_port
);
798 static int sym53c416_bios_param(struct scsi_device
*sdev
,
799 struct block_device
*dev
,
800 sector_t capacity
, int *ip
)
805 ip
[0] = 64; /* heads */
806 ip
[1] = 32; /* sectors */
807 if((ip
[2] = size
>> 11) > 1024) /* cylinders, test for big disk */
809 ip
[0] = 255; /* heads */
810 ip
[1] = 63; /* sectors */
811 ip
[2] = size
/ (255 * 63); /* cylinders */
816 /* Loadable module support */
819 MODULE_AUTHOR("Lieven Willems");
820 MODULE_LICENSE("GPL");
822 module_param_array(sym53c416
, uint
, NULL
, 0);
823 module_param_array(sym53c416_1
, uint
, NULL
, 0);
824 module_param_array(sym53c416_2
, uint
, NULL
, 0);
825 module_param_array(sym53c416_3
, uint
, NULL
, 0);
829 static struct scsi_host_template driver_template
= {
830 .proc_name
= "sym53c416",
831 .name
= "Symbios Logic 53c416",
832 .detect
= sym53c416_detect
,
833 .info
= sym53c416_info
,
834 .queuecommand
= sym53c416_queuecommand
,
835 .eh_host_reset_handler
=sym53c416_host_reset
,
836 .release
= sym53c416_release
,
837 .bios_param
= sym53c416_bios_param
,
839 .this_id
= SYM53C416_SCSI_ID
,
842 .unchecked_isa_dma
= 1,
843 .use_clustering
= ENABLE_CLUSTERING
,
845 #include "scsi_module.c"