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>
18 #include <linux/slab.h>
21 #include <scsi/scsi.h>
22 #include <scsi/scsi_cmnd.h>
23 #include <scsi/scsi_device.h>
24 #include <scsi/scsi_host.h>
26 /* The following #define is to avoid a clash with hosts.c */
27 #define IMM_PROBE_SPP 0x0001
28 #define IMM_PROBE_PS2 0x0002
29 #define IMM_PROBE_ECR 0x0010
30 #define IMM_PROBE_EPP17 0x0100
31 #define IMM_PROBE_EPP19 0x0200
35 struct pardevice
*dev
; /* Parport device entry */
36 int base
; /* Actual port address */
37 int base_hi
; /* Hi Base address for ECP-ISA chipset */
38 int mode
; /* Transfer mode */
39 struct scsi_cmnd
*cur_cmd
; /* Current queued command */
40 struct delayed_work imm_tq
; /* Polling interrupt stuff */
41 unsigned long jstart
; /* Jiffies at start */
42 unsigned failed
:1; /* Failure flag */
43 unsigned dp
:1; /* Data phase present */
44 unsigned rd
:1; /* Read data in data phase */
45 unsigned wanted
:1; /* Parport sharing busy flag */
46 wait_queue_head_t
*waiting
;
47 struct Scsi_Host
*host
;
48 struct list_head list
;
51 static void imm_reset_pulse(unsigned int base
);
52 static int device_check(imm_struct
*dev
);
56 static inline imm_struct
*imm_dev(struct Scsi_Host
*host
)
58 return *(imm_struct
**)&host
->hostdata
;
61 static DEFINE_SPINLOCK(arbitration_lock
);
63 static void got_it(imm_struct
*dev
)
65 dev
->base
= dev
->dev
->port
->base
;
67 dev
->cur_cmd
->SCp
.phase
= 1;
69 wake_up(dev
->waiting
);
72 static void imm_wakeup(void *ref
)
74 imm_struct
*dev
= (imm_struct
*) ref
;
77 spin_lock_irqsave(&arbitration_lock
, flags
);
79 parport_claim(dev
->dev
);
83 spin_unlock_irqrestore(&arbitration_lock
, flags
);
86 static int imm_pb_claim(imm_struct
*dev
)
90 spin_lock_irqsave(&arbitration_lock
, flags
);
91 if (parport_claim(dev
->dev
) == 0) {
96 spin_unlock_irqrestore(&arbitration_lock
, flags
);
100 static void imm_pb_dismiss(imm_struct
*dev
)
104 spin_lock_irqsave(&arbitration_lock
, flags
);
105 wanted
= dev
->wanted
;
107 spin_unlock_irqrestore(&arbitration_lock
, flags
);
109 parport_release(dev
->dev
);
112 static inline void imm_pb_release(imm_struct
*dev
)
114 parport_release(dev
->dev
);
117 /* This is to give the imm driver a way to modify the timings (and other
118 * parameters) by writing to the /proc/scsi/imm/0 file.
119 * Very simple method really... (Too simple, no error checking :( )
120 * Reason: Kernel hackers HATE having to unload and reload modules for
122 * Also gives a method to use a script to obtain optimum timings (TODO)
124 static inline int imm_proc_write(imm_struct
*dev
, char *buffer
, int length
)
128 if ((length
> 5) && (strncmp(buffer
, "mode=", 5) == 0)) {
129 x
= simple_strtoul(buffer
+ 5, NULL
, 0);
133 printk("imm /proc: invalid variable\n");
137 static int imm_proc_info(struct Scsi_Host
*host
, char *buffer
, char **start
,
138 off_t offset
, int length
, int inout
)
140 imm_struct
*dev
= imm_dev(host
);
144 return imm_proc_write(dev
, buffer
, length
);
146 len
+= sprintf(buffer
+ len
, "Version : %s\n", IMM_VERSION
);
148 sprintf(buffer
+ len
, "Parport : %s\n",
149 dev
->dev
->port
->name
);
151 sprintf(buffer
+ len
, "Mode : %s\n",
152 IMM_MODE_STRING
[dev
->mode
]);
154 /* Request for beyond end of buffer */
158 *start
= buffer
+ offset
;
166 #define imm_fail(x,y) printk("imm: imm_fail(%i) from %s at line %d\n",\
167 y, __func__, __LINE__); imm_fail_func(x,y);
169 imm_fail_func(imm_struct
*dev
, int error_code
)
172 imm_fail(imm_struct
*dev
, int error_code
)
175 /* If we fail a device then we trash status / message bytes */
177 dev
->cur_cmd
->result
= error_code
<< 16;
183 * Wait for the high bit to be set.
185 * In principle, this could be tied to an interrupt, but the adapter
186 * doesn't appear to be designed to support interrupts. We spin on
187 * the 0x80 ready bit.
189 static unsigned char imm_wait(imm_struct
*dev
)
192 unsigned short ppb
= dev
->base
;
203 while (!(r
& 0x80) && (k
));
206 * STR register (LPT base+1) to SCSI mapping:
209 * ===================================
217 * ==================================
219 * 0xc0 0x88 ZIP wants more data
220 * 0xd0 0x98 ZIP wants to send more data
221 * 0xe0 0xa8 ZIP is expecting SCSI command data
222 * 0xf0 0xb8 end of transfer, ZIP is sending status
228 /* Counter expired - Time out occurred */
229 imm_fail(dev
, DID_TIME_OUT
);
230 printk("imm timeout in imm_wait\n");
231 return 0; /* command timed out */
234 static int imm_negotiate(imm_struct
* tmp
)
237 * The following is supposedly the IEEE 1284-1994 negotiate
238 * sequence. I have yet to obtain a copy of the above standard
239 * so this is a bit of a guess...
241 * A fair chunk of this is based on the Linux parport implementation
244 * Return 0 if data available
245 * 1 if no data available
248 unsigned short base
= tmp
->base
;
249 unsigned char a
, mode
;
268 a
= (r_str(base
) & 0x20) ? 0 : 1;
276 ("IMM: IEEE1284 negotiate indicates no data available.\n");
277 imm_fail(tmp
, DID_ERROR
);
283 * Clear EPP timeout bit.
285 static inline void epp_reset(unsigned short ppb
)
291 w_str(ppb
, i
& 0xfe);
295 * Wait for empty ECP fifo (if we are in ECP fifo mode only)
297 static inline void ecp_sync(imm_struct
*dev
)
299 int i
, ppb_hi
= dev
->base_hi
;
304 if ((r_ecr(ppb_hi
) & 0xe0) == 0x60) { /* mode 011 == ECP fifo mode */
305 for (i
= 0; i
< 100; i
++) {
306 if (r_ecr(ppb_hi
) & 0x01)
310 printk("imm: ECP sync failed as data still present in FIFO.\n");
314 static int imm_byte_out(unsigned short base
, const char *buffer
, int len
)
318 w_ctr(base
, 0x4); /* apparently a sane mode */
319 for (i
= len
>> 1; i
; i
--) {
320 w_dtr(base
, *buffer
++);
321 w_ctr(base
, 0x5); /* Drop STROBE low */
322 w_dtr(base
, *buffer
++);
323 w_ctr(base
, 0x0); /* STROBE high + INIT low */
325 w_ctr(base
, 0x4); /* apparently a sane mode */
326 return 1; /* All went well - we hope! */
329 static int imm_nibble_in(unsigned short base
, char *buffer
, int len
)
335 * The following is based on documented timing signals
338 for (i
= len
; i
; i
--) {
340 l
= (r_str(base
) & 0xf0) >> 4;
342 *buffer
++ = (r_str(base
) & 0xf0) | l
;
345 return 1; /* All went well - we hope! */
348 static int imm_byte_in(unsigned short base
, char *buffer
, int len
)
353 * The following is based on documented timing signals
356 for (i
= len
; i
; i
--) {
358 *buffer
++ = r_dtr(base
);
361 return 1; /* All went well - we hope! */
364 static int imm_out(imm_struct
*dev
, char *buffer
, int len
)
366 unsigned short ppb
= dev
->base
;
367 int r
= imm_wait(dev
);
371 * a) the SCSI bus is BUSY (device still listening)
372 * b) the device is listening
374 if ((r
& 0x18) != 0x08) {
375 imm_fail(dev
, DID_ERROR
);
376 printk("IMM: returned SCSI status %2x\n", r
);
385 #ifdef CONFIG_SCSI_IZIP_EPP16
386 if (!(((long) buffer
| len
) & 0x01))
387 outsw(ppb
+ 4, buffer
, len
>> 1);
389 if (!(((long) buffer
| len
) & 0x03))
390 outsl(ppb
+ 4, buffer
, len
>> 2);
393 outsb(ppb
+ 4, buffer
, len
);
395 r
= !(r_str(ppb
) & 0x01);
402 /* 8 bit output, with a loop */
403 r
= imm_byte_out(ppb
, buffer
, len
);
407 printk("IMM: bug in imm_out()\n");
413 static int imm_in(imm_struct
*dev
, char *buffer
, int len
)
415 unsigned short ppb
= dev
->base
;
416 int r
= imm_wait(dev
);
420 * a) the SCSI bus is BUSY (device still listening)
421 * b) the device is sending data
423 if ((r
& 0x18) != 0x18) {
424 imm_fail(dev
, DID_ERROR
);
429 /* 4 bit input, with a loop */
430 r
= imm_nibble_in(ppb
, buffer
, len
);
435 /* 8 bit input, with a loop */
436 r
= imm_byte_in(ppb
, buffer
, len
);
445 #ifdef CONFIG_SCSI_IZIP_EPP16
446 if (!(((long) buffer
| len
) & 0x01))
447 insw(ppb
+ 4, buffer
, len
>> 1);
449 if (!(((long) buffer
| len
) & 0x03))
450 insl(ppb
+ 4, buffer
, len
>> 2);
453 insb(ppb
+ 4, buffer
, len
);
455 r
= !(r_str(ppb
) & 0x01);
461 printk("IMM: bug in imm_ins()\n");
468 static int imm_cpp(unsigned short ppb
, unsigned char b
)
471 * Comments on udelay values refer to the
472 * Command Packet Protocol (CPP) timing diagram.
475 unsigned char s1
, s2
, s3
;
477 udelay(2); /* 1 usec - infinite */
479 udelay(10); /* 7 usec - infinite */
481 udelay(10); /* 7 usec - infinite */
483 udelay(10); /* 7 usec - infinite */
485 udelay(10); /* 7 usec - infinite */
486 s1
= r_str(ppb
) & 0xb8;
488 udelay(10); /* 7 usec - infinite */
489 s2
= r_str(ppb
) & 0xb8;
491 udelay(10); /* 7 usec - infinite */
492 s3
= r_str(ppb
) & 0x38;
495 * 0000 00aa Assign address aa to current device
496 * 0010 00aa Select device aa in EPP Winbond mode
497 * 0010 10aa Select device aa in EPP mode
498 * 0011 xxxx Deselect all devices
499 * 0110 00aa Test device aa
500 * 1101 00aa Select device aa in ECP mode
501 * 1110 00aa Select device aa in Compatible mode
504 udelay(2); /* 1 usec - infinite */
506 udelay(10); /* 7 usec - infinite */
508 udelay(2); /* 1 usec - infinite */
510 udelay(10); /* 7 usec - infinite */
512 udelay(10); /* 7 usec - infinite */
515 * The following table is electrical pin values.
516 * (BSY is inverted at the CTR register)
518 * BSY ACK POut SEL Fault
523 * L => Last device in chain
526 * Observered values for S1,S2,S3 are:
527 * Disconnect => f8/58/78
528 * Connect => f8/58/70
530 if ((s1
== 0xb8) && (s2
== 0x18) && (s3
== 0x30))
531 return 1; /* Connected */
532 if ((s1
== 0xb8) && (s2
== 0x18) && (s3
== 0x38))
533 return 0; /* Disconnected */
535 return -1; /* No device present */
538 static inline int imm_connect(imm_struct
*dev
, int flag
)
540 unsigned short ppb
= dev
->base
;
542 imm_cpp(ppb
, 0xe0); /* Select device 0 in compatible mode */
543 imm_cpp(ppb
, 0x30); /* Disconnect all devices */
545 if ((dev
->mode
== IMM_EPP_8
) ||
546 (dev
->mode
== IMM_EPP_16
) ||
547 (dev
->mode
== IMM_EPP_32
))
548 return imm_cpp(ppb
, 0x28); /* Select device 0 in EPP mode */
549 return imm_cpp(ppb
, 0xe0); /* Select device 0 in compatible mode */
552 static void imm_disconnect(imm_struct
*dev
)
554 imm_cpp(dev
->base
, 0x30); /* Disconnect all devices */
557 static int imm_select(imm_struct
*dev
, int target
)
560 unsigned short ppb
= dev
->base
;
563 * Firstly we want to make sure there is nothing
564 * holding onto the SCSI bus.
571 } while ((r_str(ppb
) & 0x08) && (k
));
577 * Now assert the SCSI ID (HOST and TARGET) on the data bus
580 w_dtr(ppb
, 0x80 | (1 << target
));
584 * Deassert SELIN first followed by STROBE
590 * ACK should drop low while SELIN is deasserted.
591 * FAULT should drop low when the SCSI device latches the bus.
597 while (!(r_str(ppb
) & 0x08) && (k
));
600 * Place the interface back into a sane state (status mode)
606 static int imm_init(imm_struct
*dev
)
608 if (imm_connect(dev
, 0) != 1)
610 imm_reset_pulse(dev
->base
);
611 mdelay(1); /* Delay to allow devices to settle */
613 mdelay(1); /* Another delay to allow devices to settle */
614 return device_check(dev
);
617 static inline int imm_send_command(struct scsi_cmnd
*cmd
)
619 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
622 /* NOTE: IMM uses byte pairs */
623 for (k
= 0; k
< cmd
->cmd_len
; k
+= 2)
624 if (!imm_out(dev
, &cmd
->cmnd
[k
], 2))
630 * The bulk flag enables some optimisations in the data transfer loops,
631 * it should be true for any command that transfers data in integral
632 * numbers of sectors.
634 * The driver appears to remain stable if we speed up the parallel port
635 * i/o in this function, but not elsewhere.
637 static int imm_completion(struct scsi_cmnd
*cmd
)
642 * 1 Finished data transfer
644 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
645 unsigned short ppb
= dev
->base
;
646 unsigned long start_jiffies
= jiffies
;
649 int fast
, bulk
, status
;
652 bulk
= ((v
== READ_6
) ||
653 (v
== READ_10
) || (v
== WRITE_6
) || (v
== WRITE_10
));
656 * We only get here if the drive is ready to comunicate,
657 * hence no need for a full imm_wait.
660 r
= (r_str(ppb
) & 0xb8);
663 * while (device is not ready to send status byte)
666 while (r
!= (unsigned char) 0xb8) {
668 * If we have been running for more than a full timer tick
671 if (time_after(jiffies
, start_jiffies
+ 1))
676 * a) Drive status is screwy (!ready && !present)
677 * b) Drive is requesting/sending more data than expected
679 if (((r
& 0x88) != 0x88) || (cmd
->SCp
.this_residual
<= 0)) {
680 imm_fail(dev
, DID_ERROR
);
681 return -1; /* ERROR_RETURN */
683 /* determine if we should use burst I/O */
686 && (cmd
->SCp
.this_residual
>=
687 IMM_BURST_SIZE
)) ? IMM_BURST_SIZE
: 2;
688 status
= imm_out(dev
, cmd
->SCp
.ptr
, fast
);
691 && (cmd
->SCp
.this_residual
>=
692 IMM_BURST_SIZE
)) ? IMM_BURST_SIZE
: 1;
693 status
= imm_in(dev
, cmd
->SCp
.ptr
, fast
);
696 cmd
->SCp
.ptr
+= fast
;
697 cmd
->SCp
.this_residual
-= fast
;
700 imm_fail(dev
, DID_BUS_BUSY
);
701 return -1; /* ERROR_RETURN */
703 if (cmd
->SCp
.buffer
&& !cmd
->SCp
.this_residual
) {
704 /* if scatter/gather, advance to the next segment */
705 if (cmd
->SCp
.buffers_residual
--) {
707 cmd
->SCp
.this_residual
=
708 cmd
->SCp
.buffer
->length
;
709 cmd
->SCp
.ptr
= sg_virt(cmd
->SCp
.buffer
);
712 * Make sure that we transfer even number of bytes
713 * otherwise it makes imm_byte_out() messy.
715 if (cmd
->SCp
.this_residual
& 0x01)
716 cmd
->SCp
.this_residual
++;
719 /* Now check to see if the drive is ready to comunicate */
721 r
= (r_str(ppb
) & 0xb8);
723 /* If not, drop back down to the scheduler and wait a timer tick */
727 return 1; /* FINISH_RETURN */
731 * Since the IMM itself doesn't generate interrupts, we use
732 * the scheduler's task queue to generate a stream of call-backs and
733 * complete the request when the drive is ready.
735 static void imm_interrupt(struct work_struct
*work
)
737 imm_struct
*dev
= container_of(work
, imm_struct
, imm_tq
.work
);
738 struct scsi_cmnd
*cmd
= dev
->cur_cmd
;
739 struct Scsi_Host
*host
= cmd
->device
->host
;
742 if (imm_engine(dev
, cmd
)) {
743 schedule_delayed_work(&dev
->imm_tq
, 1);
746 /* Command must of completed hence it is safe to let go... */
748 switch ((cmd
->result
>> 16) & 0xff) {
752 printk("imm: no device at SCSI ID %i\n", cmd
->device
->id
);
755 printk("imm: BUS BUSY - EPP timeout detected\n");
758 printk("imm: unknown timeout\n");
761 printk("imm: told to abort\n");
764 printk("imm: parity error (???)\n");
767 printk("imm: internal driver error\n");
770 printk("imm: told to reset device\n");
773 printk("imm: bad interrupt (???)\n");
776 printk("imm: bad return code (%02x)\n",
777 (cmd
->result
>> 16) & 0xff);
781 if (cmd
->SCp
.phase
> 1)
786 spin_lock_irqsave(host
->host_lock
, flags
);
789 spin_unlock_irqrestore(host
->host_lock
, flags
);
793 static int imm_engine(imm_struct
*dev
, struct scsi_cmnd
*cmd
)
795 unsigned short ppb
= dev
->base
;
796 unsigned char l
= 0, h
= 0;
799 /* First check for any errors that may have occurred
800 * Here we check for internal errors
805 switch (cmd
->SCp
.phase
) {
806 case 0: /* Phase 0 - Waiting for parport */
807 if (time_after(jiffies
, dev
->jstart
+ HZ
)) {
809 * We waited more than a second
810 * for parport to call us
812 imm_fail(dev
, DID_BUS_BUSY
);
815 return 1; /* wait until imm_wakeup claims parport */
816 /* Phase 1 - Connected */
818 imm_connect(dev
, CONNECT_EPP_MAYBE
);
821 /* Phase 2 - We are now talking to the scsi bus */
823 if (!imm_select(dev
, scmd_id(cmd
))) {
824 imm_fail(dev
, DID_NO_CONNECT
);
829 /* Phase 3 - Ready to accept a command */
832 if (!(r_str(ppb
) & 0x80))
835 if (!imm_send_command(cmd
))
839 /* Phase 4 - Setup scatter/gather buffers */
841 if (scsi_bufflen(cmd
)) {
842 cmd
->SCp
.buffer
= scsi_sglist(cmd
);
843 cmd
->SCp
.this_residual
= cmd
->SCp
.buffer
->length
;
844 cmd
->SCp
.ptr
= sg_virt(cmd
->SCp
.buffer
);
846 cmd
->SCp
.buffer
= NULL
;
847 cmd
->SCp
.this_residual
= 0;
850 cmd
->SCp
.buffers_residual
= scsi_sg_count(cmd
) - 1;
852 if (cmd
->SCp
.this_residual
& 0x01)
853 cmd
->SCp
.this_residual
++;
854 /* Phase 5 - Pre-Data transfer stage */
856 /* Spin lock for BUSY */
858 if (!(r_str(ppb
) & 0x80))
861 /* Require negotiation for read requests */
862 x
= (r_str(ppb
) & 0xb8);
863 dev
->rd
= (x
& 0x10) ? 1 : 0;
864 dev
->dp
= (x
& 0x20) ? 0 : 1;
866 if ((dev
->dp
) && (dev
->rd
))
867 if (imm_negotiate(dev
))
871 /* Phase 6 - Data transfer stage */
873 /* Spin lock for BUSY */
875 if (!(r_str(ppb
) & 0x80))
879 retv
= imm_completion(cmd
);
887 /* Phase 7 - Post data transfer stage */
889 if ((dev
->dp
) && (dev
->rd
)) {
890 if ((dev
->mode
== IMM_NIBBLE
) || (dev
->mode
== IMM_PS2
)) {
899 /* Phase 8 - Read status/message */
901 /* Check for data overrun */
902 if (imm_wait(dev
) != (unsigned char) 0xb8) {
903 imm_fail(dev
, DID_ERROR
);
906 if (imm_negotiate(dev
))
908 if (imm_in(dev
, &l
, 1)) { /* read status byte */
909 /* Check for optional message byte */
910 if (imm_wait(dev
) == (unsigned char) 0xb8)
912 cmd
->result
= (DID_OK
<< 16) + (l
& STATUS_MASK
);
914 if ((dev
->mode
== IMM_NIBBLE
) || (dev
->mode
== IMM_PS2
)) {
920 return 0; /* Finished */
924 printk("imm: Invalid scsi phase\n");
929 static int imm_queuecommand(struct scsi_cmnd
*cmd
,
930 void (*done
)(struct scsi_cmnd
*))
932 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
935 printk("IMM: bug in imm_queuecommand\n");
939 dev
->jstart
= jiffies
;
941 cmd
->scsi_done
= done
;
942 cmd
->result
= DID_ERROR
<< 16; /* default return code */
943 cmd
->SCp
.phase
= 0; /* bus free */
945 schedule_delayed_work(&dev
->imm_tq
, 0);
953 * Apparently the disk->capacity attribute is off by 1 sector
954 * for all disk drives. We add the one here, but it should really
955 * be done in sd.c. Even if it gets fixed there, this will still
958 static int imm_biosparam(struct scsi_device
*sdev
, struct block_device
*dev
,
959 sector_t capacity
, int ip
[])
963 ip
[2] = ((unsigned long) capacity
+ 1) / (ip
[0] * ip
[1]);
967 ip
[2] = ((unsigned long) capacity
+ 1) / (ip
[0] * ip
[1]);
972 static int imm_abort(struct scsi_cmnd
*cmd
)
974 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
976 * There is no method for aborting commands since Iomega
977 * have tied the SCSI_MESSAGE line high in the interface
980 switch (cmd
->SCp
.phase
) {
981 case 0: /* Do not have access to parport */
982 case 1: /* Have not connected to interface */
983 dev
->cur_cmd
= NULL
; /* Forget the problem */
986 default: /* SCSI command sent, can not abort */
992 static void imm_reset_pulse(unsigned int base
)
1004 static int imm_reset(struct scsi_cmnd
*cmd
)
1006 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
1009 imm_disconnect(dev
);
1010 dev
->cur_cmd
= NULL
; /* Forget the problem */
1012 imm_connect(dev
, CONNECT_NORMAL
);
1013 imm_reset_pulse(dev
->base
);
1014 mdelay(1); /* device settle delay */
1015 imm_disconnect(dev
);
1016 mdelay(1); /* device settle delay */
1020 static int device_check(imm_struct
*dev
)
1022 /* This routine looks for a device and then attempts to use EPP
1023 to send a command. If all goes as planned then EPP is available. */
1025 static char cmd
[6] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1026 int loop
, old_mode
, status
, k
, ppb
= dev
->base
;
1029 old_mode
= dev
->mode
;
1030 for (loop
= 0; loop
< 8; loop
++) {
1031 /* Attempt to use EPP for Test Unit Ready */
1032 if ((ppb
& 0x0007) == 0x0000)
1033 dev
->mode
= IMM_EPP_32
;
1036 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1037 /* Select SCSI device */
1038 if (!imm_select(dev
, loop
)) {
1039 imm_disconnect(dev
);
1042 printk("imm: Found device at ID %i, Attempting to use %s\n",
1043 loop
, IMM_MODE_STRING
[dev
->mode
]);
1045 /* Send SCSI command */
1048 for (l
= 0; (l
< 3) && (status
); l
++)
1049 status
= imm_out(dev
, &cmd
[l
<< 1], 2);
1052 imm_disconnect(dev
);
1053 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1054 imm_reset_pulse(dev
->base
);
1056 imm_disconnect(dev
);
1058 if (dev
->mode
== IMM_EPP_32
) {
1059 dev
->mode
= old_mode
;
1062 printk("imm: Unable to establish communication\n");
1067 k
= 1000000; /* 1 Second */
1072 } while (!(l
& 0x80) && (k
));
1077 imm_disconnect(dev
);
1078 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1079 imm_reset_pulse(dev
->base
);
1081 imm_disconnect(dev
);
1083 if (dev
->mode
== IMM_EPP_32
) {
1084 dev
->mode
= old_mode
;
1088 ("imm: Unable to establish communication\n");
1091 imm_disconnect(dev
);
1093 ("imm: Communication established at 0x%x with ID %i using %s\n",
1094 ppb
, loop
, IMM_MODE_STRING
[dev
->mode
]);
1095 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1096 imm_reset_pulse(dev
->base
);
1098 imm_disconnect(dev
);
1102 printk("imm: No devices found\n");
1107 * imm cannot deal with highmem, so this causes all IO pages for this host
1108 * to reside in low memory (hence mapped)
1110 static int imm_adjust_queue(struct scsi_device
*device
)
1112 blk_queue_bounce_limit(device
->request_queue
, BLK_BOUNCE_HIGH
);
1116 static struct scsi_host_template imm_template
= {
1117 .module
= THIS_MODULE
,
1119 .proc_info
= imm_proc_info
,
1120 .name
= "Iomega VPI2 (imm) interface",
1121 .queuecommand
= imm_queuecommand
,
1122 .eh_abort_handler
= imm_abort
,
1123 .eh_bus_reset_handler
= imm_reset
,
1124 .eh_host_reset_handler
= imm_reset
,
1125 .bios_param
= imm_biosparam
,
1127 .sg_tablesize
= SG_ALL
,
1129 .use_clustering
= ENABLE_CLUSTERING
,
1131 .slave_alloc
= imm_adjust_queue
,
1134 /***************************************************************************
1135 * Parallel port probing routines *
1136 ***************************************************************************/
1138 static LIST_HEAD(imm_hosts
);
1140 static int __imm_attach(struct parport
*pb
)
1142 struct Scsi_Host
*host
;
1144 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waiting
);
1150 init_waitqueue_head(&waiting
);
1152 dev
= kzalloc(sizeof(imm_struct
), GFP_KERNEL
);
1158 dev
->mode
= IMM_AUTODETECT
;
1159 INIT_LIST_HEAD(&dev
->list
);
1161 dev
->dev
= parport_register_device(pb
, "imm", NULL
, imm_wakeup
,
1168 /* Claim the bus so it remembers what we do to the control
1169 * registers. [ CTR and ECP ]
1172 dev
->waiting
= &waiting
;
1173 prepare_to_wait(&waiting
, &wait
, TASK_UNINTERRUPTIBLE
);
1174 if (imm_pb_claim(dev
))
1175 schedule_timeout(3 * HZ
);
1177 printk(KERN_ERR
"imm%d: failed to claim parport because "
1178 "a pardevice is owning the port for too long "
1179 "time!\n", pb
->number
);
1180 imm_pb_dismiss(dev
);
1181 dev
->waiting
= NULL
;
1182 finish_wait(&waiting
, &wait
);
1185 dev
->waiting
= NULL
;
1186 finish_wait(&waiting
, &wait
);
1187 ppb
= dev
->base
= dev
->dev
->port
->base
;
1188 dev
->base_hi
= dev
->dev
->port
->base_hi
;
1190 modes
= dev
->dev
->port
->modes
;
1192 /* Mode detection works up the chain of speed
1193 * This avoids a nasty if-then-else-if-... tree
1195 dev
->mode
= IMM_NIBBLE
;
1197 if (modes
& PARPORT_MODE_TRISTATE
)
1198 dev
->mode
= IMM_PS2
;
1200 /* Done configuration */
1202 err
= imm_init(dev
);
1204 imm_pb_release(dev
);
1209 /* now the glue ... */
1210 if (dev
->mode
== IMM_NIBBLE
|| dev
->mode
== IMM_PS2
)
1215 INIT_DELAYED_WORK(&dev
->imm_tq
, imm_interrupt
);
1218 host
= scsi_host_alloc(&imm_template
, sizeof(imm_struct
*));
1221 host
->io_port
= pb
->base
;
1222 host
->n_io_port
= ports
;
1223 host
->dma_channel
= -1;
1224 host
->unique_id
= pb
->number
;
1225 *(imm_struct
**)&host
->hostdata
= dev
;
1227 list_add_tail(&dev
->list
, &imm_hosts
);
1228 err
= scsi_add_host(host
, NULL
);
1231 scsi_scan_host(host
);
1235 list_del_init(&dev
->list
);
1236 scsi_host_put(host
);
1238 parport_unregister_device(dev
->dev
);
1244 static void imm_attach(struct parport
*pb
)
1249 static void imm_detach(struct parport
*pb
)
1252 list_for_each_entry(dev
, &imm_hosts
, list
) {
1253 if (dev
->dev
->port
== pb
) {
1254 list_del_init(&dev
->list
);
1255 scsi_remove_host(dev
->host
);
1256 scsi_host_put(dev
->host
);
1257 parport_unregister_device(dev
->dev
);
1264 static struct parport_driver imm_driver
= {
1266 .attach
= imm_attach
,
1267 .detach
= imm_detach
,
1270 static int __init
imm_driver_init(void)
1272 printk("imm: Version %s\n", IMM_VERSION
);
1273 return parport_register_driver(&imm_driver
);
1276 static void __exit
imm_driver_exit(void)
1278 parport_unregister_driver(&imm_driver
);
1281 module_init(imm_driver_init
);
1282 module_exit(imm_driver_exit
);
1284 MODULE_LICENSE("GPL");