1 /* imm.c -- low level driver for the IOMEGA MatchMaker
2 * parallel port SCSI host adapter.
4 * (The IMM is the embedded controller in the ZIP Plus drive.)
6 * My unoffical company acronym list is 21 pages long:
7 * FLA: Four letter acronym with built in facility for
8 * future expansion to five letters.
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/blkdev.h>
15 #include <linux/parport.h>
16 #include <linux/workqueue.h>
17 #include <linux/delay.h>
20 #include <scsi/scsi.h>
21 #include <scsi/scsi_cmnd.h>
22 #include <scsi/scsi_device.h>
23 #include <scsi/scsi_host.h>
25 /* The following #define is to avoid a clash with hosts.c */
26 #define IMM_PROBE_SPP 0x0001
27 #define IMM_PROBE_PS2 0x0002
28 #define IMM_PROBE_ECR 0x0010
29 #define IMM_PROBE_EPP17 0x0100
30 #define IMM_PROBE_EPP19 0x0200
34 struct pardevice
*dev
; /* Parport device entry */
35 int base
; /* Actual port address */
36 int base_hi
; /* Hi Base address for ECP-ISA chipset */
37 int mode
; /* Transfer mode */
38 struct scsi_cmnd
*cur_cmd
; /* Current queued command */
39 struct delayed_work imm_tq
; /* Polling interrupt stuff */
40 unsigned long jstart
; /* Jiffies at start */
41 unsigned failed
:1; /* Failure flag */
42 unsigned dp
:1; /* Data phase present */
43 unsigned rd
:1; /* Read data in data phase */
44 unsigned wanted
:1; /* Parport sharing busy flag */
45 wait_queue_head_t
*waiting
;
46 struct Scsi_Host
*host
;
47 struct list_head list
;
50 static void imm_reset_pulse(unsigned int base
);
51 static int device_check(imm_struct
*dev
);
55 static inline imm_struct
*imm_dev(struct Scsi_Host
*host
)
57 return *(imm_struct
**)&host
->hostdata
;
60 static DEFINE_SPINLOCK(arbitration_lock
);
62 static void got_it(imm_struct
*dev
)
64 dev
->base
= dev
->dev
->port
->base
;
66 dev
->cur_cmd
->SCp
.phase
= 1;
68 wake_up(dev
->waiting
);
71 static void imm_wakeup(void *ref
)
73 imm_struct
*dev
= (imm_struct
*) ref
;
76 spin_lock_irqsave(&arbitration_lock
, flags
);
78 parport_claim(dev
->dev
);
82 spin_unlock_irqrestore(&arbitration_lock
, flags
);
85 static int imm_pb_claim(imm_struct
*dev
)
89 spin_lock_irqsave(&arbitration_lock
, flags
);
90 if (parport_claim(dev
->dev
) == 0) {
95 spin_unlock_irqrestore(&arbitration_lock
, flags
);
99 static void imm_pb_dismiss(imm_struct
*dev
)
103 spin_lock_irqsave(&arbitration_lock
, flags
);
104 wanted
= dev
->wanted
;
106 spin_unlock_irqrestore(&arbitration_lock
, flags
);
108 parport_release(dev
->dev
);
111 static inline void imm_pb_release(imm_struct
*dev
)
113 parport_release(dev
->dev
);
116 /* This is to give the imm driver a way to modify the timings (and other
117 * parameters) by writing to the /proc/scsi/imm/0 file.
118 * Very simple method really... (Too simple, no error checking :( )
119 * Reason: Kernel hackers HATE having to unload and reload modules for
121 * Also gives a method to use a script to obtain optimum timings (TODO)
123 static inline int imm_proc_write(imm_struct
*dev
, char *buffer
, int length
)
127 if ((length
> 5) && (strncmp(buffer
, "mode=", 5) == 0)) {
128 x
= simple_strtoul(buffer
+ 5, NULL
, 0);
132 printk("imm /proc: invalid variable\n");
136 static int imm_proc_info(struct Scsi_Host
*host
, char *buffer
, char **start
,
137 off_t offset
, int length
, int inout
)
139 imm_struct
*dev
= imm_dev(host
);
143 return imm_proc_write(dev
, buffer
, length
);
145 len
+= sprintf(buffer
+ len
, "Version : %s\n", IMM_VERSION
);
147 sprintf(buffer
+ len
, "Parport : %s\n",
148 dev
->dev
->port
->name
);
150 sprintf(buffer
+ len
, "Mode : %s\n",
151 IMM_MODE_STRING
[dev
->mode
]);
153 /* Request for beyond end of buffer */
157 *start
= buffer
+ offset
;
165 #define imm_fail(x,y) printk("imm: imm_fail(%i) from %s at line %d\n",\
166 y, __FUNCTION__, __LINE__); imm_fail_func(x,y);
168 imm_fail_func(imm_struct
*dev
, int error_code
)
171 imm_fail(imm_struct
*dev
, int error_code
)
174 /* If we fail a device then we trash status / message bytes */
176 dev
->cur_cmd
->result
= error_code
<< 16;
182 * Wait for the high bit to be set.
184 * In principle, this could be tied to an interrupt, but the adapter
185 * doesn't appear to be designed to support interrupts. We spin on
186 * the 0x80 ready bit.
188 static unsigned char imm_wait(imm_struct
*dev
)
191 unsigned short ppb
= dev
->base
;
202 while (!(r
& 0x80) && (k
));
205 * STR register (LPT base+1) to SCSI mapping:
208 * ===================================
216 * ==================================
218 * 0xc0 0x88 ZIP wants more data
219 * 0xd0 0x98 ZIP wants to send more data
220 * 0xe0 0xa8 ZIP is expecting SCSI command data
221 * 0xf0 0xb8 end of transfer, ZIP is sending status
227 /* Counter expired - Time out occurred */
228 imm_fail(dev
, DID_TIME_OUT
);
229 printk("imm timeout in imm_wait\n");
230 return 0; /* command timed out */
233 static int imm_negotiate(imm_struct
* tmp
)
236 * The following is supposedly the IEEE 1284-1994 negotiate
237 * sequence. I have yet to obtain a copy of the above standard
238 * so this is a bit of a guess...
240 * A fair chunk of this is based on the Linux parport implementation
243 * Return 0 if data available
244 * 1 if no data available
247 unsigned short base
= tmp
->base
;
248 unsigned char a
, mode
;
267 a
= (r_str(base
) & 0x20) ? 0 : 1;
275 ("IMM: IEEE1284 negotiate indicates no data available.\n");
276 imm_fail(tmp
, DID_ERROR
);
282 * Clear EPP timeout bit.
284 static inline void epp_reset(unsigned short ppb
)
290 w_str(ppb
, i
& 0xfe);
294 * Wait for empty ECP fifo (if we are in ECP fifo mode only)
296 static inline void ecp_sync(imm_struct
*dev
)
298 int i
, ppb_hi
= dev
->base_hi
;
303 if ((r_ecr(ppb_hi
) & 0xe0) == 0x60) { /* mode 011 == ECP fifo mode */
304 for (i
= 0; i
< 100; i
++) {
305 if (r_ecr(ppb_hi
) & 0x01)
309 printk("imm: ECP sync failed as data still present in FIFO.\n");
313 static int imm_byte_out(unsigned short base
, const char *buffer
, int len
)
317 w_ctr(base
, 0x4); /* apparently a sane mode */
318 for (i
= len
>> 1; i
; i
--) {
319 w_dtr(base
, *buffer
++);
320 w_ctr(base
, 0x5); /* Drop STROBE low */
321 w_dtr(base
, *buffer
++);
322 w_ctr(base
, 0x0); /* STROBE high + INIT low */
324 w_ctr(base
, 0x4); /* apparently a sane mode */
325 return 1; /* All went well - we hope! */
328 static int imm_nibble_in(unsigned short base
, char *buffer
, int len
)
334 * The following is based on documented timing signals
337 for (i
= len
; i
; i
--) {
339 l
= (r_str(base
) & 0xf0) >> 4;
341 *buffer
++ = (r_str(base
) & 0xf0) | l
;
344 return 1; /* All went well - we hope! */
347 static int imm_byte_in(unsigned short base
, char *buffer
, int len
)
352 * The following is based on documented timing signals
355 for (i
= len
; i
; i
--) {
357 *buffer
++ = r_dtr(base
);
360 return 1; /* All went well - we hope! */
363 static int imm_out(imm_struct
*dev
, char *buffer
, int len
)
365 unsigned short ppb
= dev
->base
;
366 int r
= imm_wait(dev
);
370 * a) the SCSI bus is BUSY (device still listening)
371 * b) the device is listening
373 if ((r
& 0x18) != 0x08) {
374 imm_fail(dev
, DID_ERROR
);
375 printk("IMM: returned SCSI status %2x\n", r
);
384 #ifdef CONFIG_SCSI_IZIP_EPP16
385 if (!(((long) buffer
| len
) & 0x01))
386 outsw(ppb
+ 4, buffer
, len
>> 1);
388 if (!(((long) buffer
| len
) & 0x03))
389 outsl(ppb
+ 4, buffer
, len
>> 2);
392 outsb(ppb
+ 4, buffer
, len
);
394 r
= !(r_str(ppb
) & 0x01);
401 /* 8 bit output, with a loop */
402 r
= imm_byte_out(ppb
, buffer
, len
);
406 printk("IMM: bug in imm_out()\n");
412 static int imm_in(imm_struct
*dev
, char *buffer
, int len
)
414 unsigned short ppb
= dev
->base
;
415 int r
= imm_wait(dev
);
419 * a) the SCSI bus is BUSY (device still listening)
420 * b) the device is sending data
422 if ((r
& 0x18) != 0x18) {
423 imm_fail(dev
, DID_ERROR
);
428 /* 4 bit input, with a loop */
429 r
= imm_nibble_in(ppb
, buffer
, len
);
434 /* 8 bit input, with a loop */
435 r
= imm_byte_in(ppb
, buffer
, len
);
444 #ifdef CONFIG_SCSI_IZIP_EPP16
445 if (!(((long) buffer
| len
) & 0x01))
446 insw(ppb
+ 4, buffer
, len
>> 1);
448 if (!(((long) buffer
| len
) & 0x03))
449 insl(ppb
+ 4, buffer
, len
>> 2);
452 insb(ppb
+ 4, buffer
, len
);
454 r
= !(r_str(ppb
) & 0x01);
460 printk("IMM: bug in imm_ins()\n");
467 static int imm_cpp(unsigned short ppb
, unsigned char b
)
470 * Comments on udelay values refer to the
471 * Command Packet Protocol (CPP) timing diagram.
474 unsigned char s1
, s2
, s3
;
476 udelay(2); /* 1 usec - infinite */
478 udelay(10); /* 7 usec - infinite */
480 udelay(10); /* 7 usec - infinite */
482 udelay(10); /* 7 usec - infinite */
484 udelay(10); /* 7 usec - infinite */
485 s1
= r_str(ppb
) & 0xb8;
487 udelay(10); /* 7 usec - infinite */
488 s2
= r_str(ppb
) & 0xb8;
490 udelay(10); /* 7 usec - infinite */
491 s3
= r_str(ppb
) & 0x38;
494 * 0000 00aa Assign address aa to current device
495 * 0010 00aa Select device aa in EPP Winbond mode
496 * 0010 10aa Select device aa in EPP mode
497 * 0011 xxxx Deselect all devices
498 * 0110 00aa Test device aa
499 * 1101 00aa Select device aa in ECP mode
500 * 1110 00aa Select device aa in Compatible mode
503 udelay(2); /* 1 usec - infinite */
505 udelay(10); /* 7 usec - infinite */
507 udelay(2); /* 1 usec - infinite */
509 udelay(10); /* 7 usec - infinite */
511 udelay(10); /* 7 usec - infinite */
514 * The following table is electrical pin values.
515 * (BSY is inverted at the CTR register)
517 * BSY ACK POut SEL Fault
522 * L => Last device in chain
525 * Observered values for S1,S2,S3 are:
526 * Disconnect => f8/58/78
527 * Connect => f8/58/70
529 if ((s1
== 0xb8) && (s2
== 0x18) && (s3
== 0x30))
530 return 1; /* Connected */
531 if ((s1
== 0xb8) && (s2
== 0x18) && (s3
== 0x38))
532 return 0; /* Disconnected */
534 return -1; /* No device present */
537 static inline int imm_connect(imm_struct
*dev
, int flag
)
539 unsigned short ppb
= dev
->base
;
541 imm_cpp(ppb
, 0xe0); /* Select device 0 in compatible mode */
542 imm_cpp(ppb
, 0x30); /* Disconnect all devices */
544 if ((dev
->mode
== IMM_EPP_8
) ||
545 (dev
->mode
== IMM_EPP_16
) ||
546 (dev
->mode
== IMM_EPP_32
))
547 return imm_cpp(ppb
, 0x28); /* Select device 0 in EPP mode */
548 return imm_cpp(ppb
, 0xe0); /* Select device 0 in compatible mode */
551 static void imm_disconnect(imm_struct
*dev
)
553 imm_cpp(dev
->base
, 0x30); /* Disconnect all devices */
556 static int imm_select(imm_struct
*dev
, int target
)
559 unsigned short ppb
= dev
->base
;
562 * Firstly we want to make sure there is nothing
563 * holding onto the SCSI bus.
570 } while ((r_str(ppb
) & 0x08) && (k
));
576 * Now assert the SCSI ID (HOST and TARGET) on the data bus
579 w_dtr(ppb
, 0x80 | (1 << target
));
583 * Deassert SELIN first followed by STROBE
589 * ACK should drop low while SELIN is deasserted.
590 * FAULT should drop low when the SCSI device latches the bus.
596 while (!(r_str(ppb
) & 0x08) && (k
));
599 * Place the interface back into a sane state (status mode)
605 static int imm_init(imm_struct
*dev
)
607 if (imm_connect(dev
, 0) != 1)
609 imm_reset_pulse(dev
->base
);
610 mdelay(1); /* Delay to allow devices to settle */
612 mdelay(1); /* Another delay to allow devices to settle */
613 return device_check(dev
);
616 static inline int imm_send_command(struct scsi_cmnd
*cmd
)
618 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
621 /* NOTE: IMM uses byte pairs */
622 for (k
= 0; k
< cmd
->cmd_len
; k
+= 2)
623 if (!imm_out(dev
, &cmd
->cmnd
[k
], 2))
629 * The bulk flag enables some optimisations in the data transfer loops,
630 * it should be true for any command that transfers data in integral
631 * numbers of sectors.
633 * The driver appears to remain stable if we speed up the parallel port
634 * i/o in this function, but not elsewhere.
636 static int imm_completion(struct scsi_cmnd
*cmd
)
641 * 1 Finished data transfer
643 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
644 unsigned short ppb
= dev
->base
;
645 unsigned long start_jiffies
= jiffies
;
648 int fast
, bulk
, status
;
651 bulk
= ((v
== READ_6
) ||
652 (v
== READ_10
) || (v
== WRITE_6
) || (v
== WRITE_10
));
655 * We only get here if the drive is ready to comunicate,
656 * hence no need for a full imm_wait.
659 r
= (r_str(ppb
) & 0xb8);
662 * while (device is not ready to send status byte)
665 while (r
!= (unsigned char) 0xb8) {
667 * If we have been running for more than a full timer tick
670 if (time_after(jiffies
, start_jiffies
+ 1))
675 * a) Drive status is screwy (!ready && !present)
676 * b) Drive is requesting/sending more data than expected
678 if (((r
& 0x88) != 0x88) || (cmd
->SCp
.this_residual
<= 0)) {
679 imm_fail(dev
, DID_ERROR
);
680 return -1; /* ERROR_RETURN */
682 /* determine if we should use burst I/O */
685 && (cmd
->SCp
.this_residual
>=
686 IMM_BURST_SIZE
)) ? IMM_BURST_SIZE
: 2;
687 status
= imm_out(dev
, cmd
->SCp
.ptr
, fast
);
690 && (cmd
->SCp
.this_residual
>=
691 IMM_BURST_SIZE
)) ? IMM_BURST_SIZE
: 1;
692 status
= imm_in(dev
, cmd
->SCp
.ptr
, fast
);
695 cmd
->SCp
.ptr
+= fast
;
696 cmd
->SCp
.this_residual
-= fast
;
699 imm_fail(dev
, DID_BUS_BUSY
);
700 return -1; /* ERROR_RETURN */
702 if (cmd
->SCp
.buffer
&& !cmd
->SCp
.this_residual
) {
703 /* if scatter/gather, advance to the next segment */
704 if (cmd
->SCp
.buffers_residual
--) {
706 cmd
->SCp
.this_residual
=
707 cmd
->SCp
.buffer
->length
;
709 page_address(cmd
->SCp
.buffer
->page
) +
710 cmd
->SCp
.buffer
->offset
;
713 * Make sure that we transfer even number of bytes
714 * otherwise it makes imm_byte_out() messy.
716 if (cmd
->SCp
.this_residual
& 0x01)
717 cmd
->SCp
.this_residual
++;
720 /* Now check to see if the drive is ready to comunicate */
722 r
= (r_str(ppb
) & 0xb8);
724 /* If not, drop back down to the scheduler and wait a timer tick */
728 return 1; /* FINISH_RETURN */
732 * Since the IMM itself doesn't generate interrupts, we use
733 * the scheduler's task queue to generate a stream of call-backs and
734 * complete the request when the drive is ready.
736 static void imm_interrupt(struct work_struct
*work
)
738 imm_struct
*dev
= container_of(work
, imm_struct
, imm_tq
.work
);
739 struct scsi_cmnd
*cmd
= dev
->cur_cmd
;
740 struct Scsi_Host
*host
= cmd
->device
->host
;
743 if (imm_engine(dev
, cmd
)) {
744 schedule_delayed_work(&dev
->imm_tq
, 1);
747 /* Command must of completed hence it is safe to let go... */
749 switch ((cmd
->result
>> 16) & 0xff) {
753 printk("imm: no device at SCSI ID %i\n", cmd
->device
->id
);
756 printk("imm: BUS BUSY - EPP timeout detected\n");
759 printk("imm: unknown timeout\n");
762 printk("imm: told to abort\n");
765 printk("imm: parity error (???)\n");
768 printk("imm: internal driver error\n");
771 printk("imm: told to reset device\n");
774 printk("imm: bad interrupt (???)\n");
777 printk("imm: bad return code (%02x)\n",
778 (cmd
->result
>> 16) & 0xff);
782 if (cmd
->SCp
.phase
> 1)
787 spin_lock_irqsave(host
->host_lock
, flags
);
790 spin_unlock_irqrestore(host
->host_lock
, flags
);
794 static int imm_engine(imm_struct
*dev
, struct scsi_cmnd
*cmd
)
796 unsigned short ppb
= dev
->base
;
797 unsigned char l
= 0, h
= 0;
800 /* First check for any errors that may have occurred
801 * Here we check for internal errors
806 switch (cmd
->SCp
.phase
) {
807 case 0: /* Phase 0 - Waiting for parport */
808 if (time_after(jiffies
, dev
->jstart
+ HZ
)) {
810 * We waited more than a second
811 * for parport to call us
813 imm_fail(dev
, DID_BUS_BUSY
);
816 return 1; /* wait until imm_wakeup claims parport */
817 /* Phase 1 - Connected */
819 imm_connect(dev
, CONNECT_EPP_MAYBE
);
822 /* Phase 2 - We are now talking to the scsi bus */
824 if (!imm_select(dev
, scmd_id(cmd
))) {
825 imm_fail(dev
, DID_NO_CONNECT
);
830 /* Phase 3 - Ready to accept a command */
833 if (!(r_str(ppb
) & 0x80))
836 if (!imm_send_command(cmd
))
840 /* Phase 4 - Setup scatter/gather buffers */
843 /* if many buffers are available, start filling the first */
845 (struct scatterlist
*) cmd
->request_buffer
;
846 cmd
->SCp
.this_residual
= cmd
->SCp
.buffer
->length
;
848 page_address(cmd
->SCp
.buffer
->page
) +
849 cmd
->SCp
.buffer
->offset
;
851 /* else fill the only available buffer */
852 cmd
->SCp
.buffer
= NULL
;
853 cmd
->SCp
.this_residual
= cmd
->request_bufflen
;
854 cmd
->SCp
.ptr
= cmd
->request_buffer
;
856 cmd
->SCp
.buffers_residual
= cmd
->use_sg
- 1;
858 if (cmd
->SCp
.this_residual
& 0x01)
859 cmd
->SCp
.this_residual
++;
860 /* Phase 5 - Pre-Data transfer stage */
862 /* Spin lock for BUSY */
864 if (!(r_str(ppb
) & 0x80))
867 /* Require negotiation for read requests */
868 x
= (r_str(ppb
) & 0xb8);
869 dev
->rd
= (x
& 0x10) ? 1 : 0;
870 dev
->dp
= (x
& 0x20) ? 0 : 1;
872 if ((dev
->dp
) && (dev
->rd
))
873 if (imm_negotiate(dev
))
877 /* Phase 6 - Data transfer stage */
879 /* Spin lock for BUSY */
881 if (!(r_str(ppb
) & 0x80))
885 retv
= imm_completion(cmd
);
893 /* Phase 7 - Post data transfer stage */
895 if ((dev
->dp
) && (dev
->rd
)) {
896 if ((dev
->mode
== IMM_NIBBLE
) || (dev
->mode
== IMM_PS2
)) {
905 /* Phase 8 - Read status/message */
907 /* Check for data overrun */
908 if (imm_wait(dev
) != (unsigned char) 0xb8) {
909 imm_fail(dev
, DID_ERROR
);
912 if (imm_negotiate(dev
))
914 if (imm_in(dev
, &l
, 1)) { /* read status byte */
915 /* Check for optional message byte */
916 if (imm_wait(dev
) == (unsigned char) 0xb8)
918 cmd
->result
= (DID_OK
<< 16) + (l
& STATUS_MASK
);
920 if ((dev
->mode
== IMM_NIBBLE
) || (dev
->mode
== IMM_PS2
)) {
926 return 0; /* Finished */
930 printk("imm: Invalid scsi phase\n");
935 static int imm_queuecommand(struct scsi_cmnd
*cmd
,
936 void (*done
)(struct scsi_cmnd
*))
938 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
941 printk("IMM: bug in imm_queuecommand\n");
945 dev
->jstart
= jiffies
;
947 cmd
->scsi_done
= done
;
948 cmd
->result
= DID_ERROR
<< 16; /* default return code */
949 cmd
->SCp
.phase
= 0; /* bus free */
951 schedule_delayed_work(&dev
->imm_tq
, 0);
959 * Apparently the disk->capacity attribute is off by 1 sector
960 * for all disk drives. We add the one here, but it should really
961 * be done in sd.c. Even if it gets fixed there, this will still
964 static int imm_biosparam(struct scsi_device
*sdev
, struct block_device
*dev
,
965 sector_t capacity
, int ip
[])
969 ip
[2] = ((unsigned long) capacity
+ 1) / (ip
[0] * ip
[1]);
973 ip
[2] = ((unsigned long) capacity
+ 1) / (ip
[0] * ip
[1]);
978 static int imm_abort(struct scsi_cmnd
*cmd
)
980 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
982 * There is no method for aborting commands since Iomega
983 * have tied the SCSI_MESSAGE line high in the interface
986 switch (cmd
->SCp
.phase
) {
987 case 0: /* Do not have access to parport */
988 case 1: /* Have not connected to interface */
989 dev
->cur_cmd
= NULL
; /* Forget the problem */
992 default: /* SCSI command sent, can not abort */
998 static void imm_reset_pulse(unsigned int base
)
1010 static int imm_reset(struct scsi_cmnd
*cmd
)
1012 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
1015 imm_disconnect(dev
);
1016 dev
->cur_cmd
= NULL
; /* Forget the problem */
1018 imm_connect(dev
, CONNECT_NORMAL
);
1019 imm_reset_pulse(dev
->base
);
1020 mdelay(1); /* device settle delay */
1021 imm_disconnect(dev
);
1022 mdelay(1); /* device settle delay */
1026 static int device_check(imm_struct
*dev
)
1028 /* This routine looks for a device and then attempts to use EPP
1029 to send a command. If all goes as planned then EPP is available. */
1031 static char cmd
[6] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1032 int loop
, old_mode
, status
, k
, ppb
= dev
->base
;
1035 old_mode
= dev
->mode
;
1036 for (loop
= 0; loop
< 8; loop
++) {
1037 /* Attempt to use EPP for Test Unit Ready */
1038 if ((ppb
& 0x0007) == 0x0000)
1039 dev
->mode
= IMM_EPP_32
;
1042 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1043 /* Select SCSI device */
1044 if (!imm_select(dev
, loop
)) {
1045 imm_disconnect(dev
);
1048 printk("imm: Found device at ID %i, Attempting to use %s\n",
1049 loop
, IMM_MODE_STRING
[dev
->mode
]);
1051 /* Send SCSI command */
1054 for (l
= 0; (l
< 3) && (status
); l
++)
1055 status
= imm_out(dev
, &cmd
[l
<< 1], 2);
1058 imm_disconnect(dev
);
1059 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1060 imm_reset_pulse(dev
->base
);
1062 imm_disconnect(dev
);
1064 if (dev
->mode
== IMM_EPP_32
) {
1065 dev
->mode
= old_mode
;
1068 printk("imm: Unable to establish communication\n");
1073 k
= 1000000; /* 1 Second */
1078 } while (!(l
& 0x80) && (k
));
1083 imm_disconnect(dev
);
1084 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1085 imm_reset_pulse(dev
->base
);
1087 imm_disconnect(dev
);
1089 if (dev
->mode
== IMM_EPP_32
) {
1090 dev
->mode
= old_mode
;
1094 ("imm: Unable to establish communication\n");
1097 imm_disconnect(dev
);
1099 ("imm: Communication established at 0x%x with ID %i using %s\n",
1100 ppb
, loop
, IMM_MODE_STRING
[dev
->mode
]);
1101 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1102 imm_reset_pulse(dev
->base
);
1104 imm_disconnect(dev
);
1108 printk("imm: No devices found\n");
1113 * imm cannot deal with highmem, so this causes all IO pages for this host
1114 * to reside in low memory (hence mapped)
1116 static int imm_adjust_queue(struct scsi_device
*device
)
1118 blk_queue_bounce_limit(device
->request_queue
, BLK_BOUNCE_HIGH
);
1122 static struct scsi_host_template imm_template
= {
1123 .module
= THIS_MODULE
,
1125 .proc_info
= imm_proc_info
,
1126 .name
= "Iomega VPI2 (imm) interface",
1127 .queuecommand
= imm_queuecommand
,
1128 .eh_abort_handler
= imm_abort
,
1129 .eh_bus_reset_handler
= imm_reset
,
1130 .eh_host_reset_handler
= imm_reset
,
1131 .bios_param
= imm_biosparam
,
1133 .sg_tablesize
= SG_ALL
,
1135 .use_clustering
= ENABLE_CLUSTERING
,
1137 .slave_alloc
= imm_adjust_queue
,
1140 /***************************************************************************
1141 * Parallel port probing routines *
1142 ***************************************************************************/
1144 static LIST_HEAD(imm_hosts
);
1146 static int __imm_attach(struct parport
*pb
)
1148 struct Scsi_Host
*host
;
1150 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waiting
);
1156 init_waitqueue_head(&waiting
);
1158 dev
= kzalloc(sizeof(imm_struct
), GFP_KERNEL
);
1164 dev
->mode
= IMM_AUTODETECT
;
1165 INIT_LIST_HEAD(&dev
->list
);
1167 dev
->dev
= parport_register_device(pb
, "imm", NULL
, imm_wakeup
,
1174 /* Claim the bus so it remembers what we do to the control
1175 * registers. [ CTR and ECP ]
1178 dev
->waiting
= &waiting
;
1179 prepare_to_wait(&waiting
, &wait
, TASK_UNINTERRUPTIBLE
);
1180 if (imm_pb_claim(dev
))
1181 schedule_timeout(3 * HZ
);
1183 printk(KERN_ERR
"imm%d: failed to claim parport because "
1184 "a pardevice is owning the port for too long "
1185 "time!\n", pb
->number
);
1186 imm_pb_dismiss(dev
);
1187 dev
->waiting
= NULL
;
1188 finish_wait(&waiting
, &wait
);
1191 dev
->waiting
= NULL
;
1192 finish_wait(&waiting
, &wait
);
1193 ppb
= dev
->base
= dev
->dev
->port
->base
;
1194 dev
->base_hi
= dev
->dev
->port
->base_hi
;
1196 modes
= dev
->dev
->port
->modes
;
1198 /* Mode detection works up the chain of speed
1199 * This avoids a nasty if-then-else-if-... tree
1201 dev
->mode
= IMM_NIBBLE
;
1203 if (modes
& PARPORT_MODE_TRISTATE
)
1204 dev
->mode
= IMM_PS2
;
1206 /* Done configuration */
1208 err
= imm_init(dev
);
1210 imm_pb_release(dev
);
1215 /* now the glue ... */
1216 if (dev
->mode
== IMM_NIBBLE
|| dev
->mode
== IMM_PS2
)
1221 INIT_DELAYED_WORK(&dev
->imm_tq
, imm_interrupt
);
1224 host
= scsi_host_alloc(&imm_template
, sizeof(imm_struct
*));
1227 host
->io_port
= pb
->base
;
1228 host
->n_io_port
= ports
;
1229 host
->dma_channel
= -1;
1230 host
->unique_id
= pb
->number
;
1231 *(imm_struct
**)&host
->hostdata
= dev
;
1233 list_add_tail(&dev
->list
, &imm_hosts
);
1234 err
= scsi_add_host(host
, NULL
);
1237 scsi_scan_host(host
);
1241 list_del_init(&dev
->list
);
1242 scsi_host_put(host
);
1244 parport_unregister_device(dev
->dev
);
1250 static void imm_attach(struct parport
*pb
)
1255 static void imm_detach(struct parport
*pb
)
1258 list_for_each_entry(dev
, &imm_hosts
, list
) {
1259 if (dev
->dev
->port
== pb
) {
1260 list_del_init(&dev
->list
);
1261 scsi_remove_host(dev
->host
);
1262 scsi_host_put(dev
->host
);
1263 parport_unregister_device(dev
->dev
);
1270 static struct parport_driver imm_driver
= {
1272 .attach
= imm_attach
,
1273 .detach
= imm_detach
,
1276 static int __init
imm_driver_init(void)
1278 printk("imm: Version %s\n", IMM_VERSION
);
1279 return parport_register_driver(&imm_driver
);
1282 static void __exit
imm_driver_exit(void)
1284 parport_unregister_driver(&imm_driver
);
1287 module_init(imm_driver_init
);
1288 module_exit(imm_driver_exit
);
1290 MODULE_LICENSE("GPL");