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 unofficial 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 unsigned int dev_no
; /* Device number */
47 wait_queue_head_t
*waiting
;
48 struct Scsi_Host
*host
;
49 struct list_head list
;
52 static void imm_reset_pulse(unsigned int base
);
53 static int device_check(imm_struct
*dev
);
57 static inline imm_struct
*imm_dev(struct Scsi_Host
*host
)
59 return *(imm_struct
**)&host
->hostdata
;
62 static DEFINE_SPINLOCK(arbitration_lock
);
64 static void got_it(imm_struct
*dev
)
66 dev
->base
= dev
->dev
->port
->base
;
68 dev
->cur_cmd
->SCp
.phase
= 1;
70 wake_up(dev
->waiting
);
73 static void imm_wakeup(void *ref
)
75 imm_struct
*dev
= (imm_struct
*) ref
;
78 spin_lock_irqsave(&arbitration_lock
, flags
);
80 if (parport_claim(dev
->dev
) == 0) {
85 spin_unlock_irqrestore(&arbitration_lock
, flags
);
88 static int imm_pb_claim(imm_struct
*dev
)
92 spin_lock_irqsave(&arbitration_lock
, flags
);
93 if (parport_claim(dev
->dev
) == 0) {
98 spin_unlock_irqrestore(&arbitration_lock
, flags
);
102 static void imm_pb_dismiss(imm_struct
*dev
)
106 spin_lock_irqsave(&arbitration_lock
, flags
);
107 wanted
= dev
->wanted
;
109 spin_unlock_irqrestore(&arbitration_lock
, flags
);
111 parport_release(dev
->dev
);
114 static inline void imm_pb_release(imm_struct
*dev
)
116 parport_release(dev
->dev
);
119 /* This is to give the imm driver a way to modify the timings (and other
120 * parameters) by writing to the /proc/scsi/imm/0 file.
121 * Very simple method really... (Too simple, no error checking :( )
122 * Reason: Kernel hackers HATE having to unload and reload modules for
124 * Also gives a method to use a script to obtain optimum timings (TODO)
126 static int imm_write_info(struct Scsi_Host
*host
, char *buffer
, int length
)
128 imm_struct
*dev
= imm_dev(host
);
130 if ((length
> 5) && (strncmp(buffer
, "mode=", 5) == 0)) {
131 dev
->mode
= simple_strtoul(buffer
+ 5, NULL
, 0);
134 printk("imm /proc: invalid variable\n");
138 static int imm_show_info(struct seq_file
*m
, struct Scsi_Host
*host
)
140 imm_struct
*dev
= imm_dev(host
);
142 seq_printf(m
, "Version : %s\n", IMM_VERSION
);
143 seq_printf(m
, "Parport : %s\n", dev
->dev
->port
->name
);
144 seq_printf(m
, "Mode : %s\n", IMM_MODE_STRING
[dev
->mode
]);
149 #define imm_fail(x,y) printk("imm: imm_fail(%i) from %s at line %d\n",\
150 y, __func__, __LINE__); imm_fail_func(x,y);
152 imm_fail_func(imm_struct
*dev
, int error_code
)
155 imm_fail(imm_struct
*dev
, int error_code
)
158 /* If we fail a device then we trash status / message bytes */
160 dev
->cur_cmd
->result
= error_code
<< 16;
166 * Wait for the high bit to be set.
168 * In principle, this could be tied to an interrupt, but the adapter
169 * doesn't appear to be designed to support interrupts. We spin on
170 * the 0x80 ready bit.
172 static unsigned char imm_wait(imm_struct
*dev
)
175 unsigned short ppb
= dev
->base
;
186 while (!(r
& 0x80) && (k
));
189 * STR register (LPT base+1) to SCSI mapping:
192 * ===================================
200 * ==================================
202 * 0xc0 0x88 ZIP wants more data
203 * 0xd0 0x98 ZIP wants to send more data
204 * 0xe0 0xa8 ZIP is expecting SCSI command data
205 * 0xf0 0xb8 end of transfer, ZIP is sending status
211 /* Counter expired - Time out occurred */
212 imm_fail(dev
, DID_TIME_OUT
);
213 printk("imm timeout in imm_wait\n");
214 return 0; /* command timed out */
217 static int imm_negotiate(imm_struct
* tmp
)
220 * The following is supposedly the IEEE 1284-1994 negotiate
221 * sequence. I have yet to obtain a copy of the above standard
222 * so this is a bit of a guess...
224 * A fair chunk of this is based on the Linux parport implementation
227 * Return 0 if data available
228 * 1 if no data available
231 unsigned short base
= tmp
->base
;
232 unsigned char a
, mode
;
251 a
= (r_str(base
) & 0x20) ? 0 : 1;
259 ("IMM: IEEE1284 negotiate indicates no data available.\n");
260 imm_fail(tmp
, DID_ERROR
);
266 * Clear EPP timeout bit.
268 static inline void epp_reset(unsigned short ppb
)
274 w_str(ppb
, i
& 0xfe);
278 * Wait for empty ECP fifo (if we are in ECP fifo mode only)
280 static inline void ecp_sync(imm_struct
*dev
)
282 int i
, ppb_hi
= dev
->base_hi
;
287 if ((r_ecr(ppb_hi
) & 0xe0) == 0x60) { /* mode 011 == ECP fifo mode */
288 for (i
= 0; i
< 100; i
++) {
289 if (r_ecr(ppb_hi
) & 0x01)
293 printk("imm: ECP sync failed as data still present in FIFO.\n");
297 static int imm_byte_out(unsigned short base
, const char *buffer
, int len
)
301 w_ctr(base
, 0x4); /* apparently a sane mode */
302 for (i
= len
>> 1; i
; i
--) {
303 w_dtr(base
, *buffer
++);
304 w_ctr(base
, 0x5); /* Drop STROBE low */
305 w_dtr(base
, *buffer
++);
306 w_ctr(base
, 0x0); /* STROBE high + INIT low */
308 w_ctr(base
, 0x4); /* apparently a sane mode */
309 return 1; /* All went well - we hope! */
312 static int imm_nibble_in(unsigned short base
, char *buffer
, int len
)
318 * The following is based on documented timing signals
321 for (i
= len
; i
; i
--) {
323 l
= (r_str(base
) & 0xf0) >> 4;
325 *buffer
++ = (r_str(base
) & 0xf0) | l
;
328 return 1; /* All went well - we hope! */
331 static int imm_byte_in(unsigned short base
, char *buffer
, int len
)
336 * The following is based on documented timing signals
339 for (i
= len
; i
; i
--) {
341 *buffer
++ = r_dtr(base
);
344 return 1; /* All went well - we hope! */
347 static int imm_out(imm_struct
*dev
, char *buffer
, int len
)
349 unsigned short ppb
= dev
->base
;
350 int r
= imm_wait(dev
);
354 * a) the SCSI bus is BUSY (device still listening)
355 * b) the device is listening
357 if ((r
& 0x18) != 0x08) {
358 imm_fail(dev
, DID_ERROR
);
359 printk("IMM: returned SCSI status %2x\n", r
);
368 #ifdef CONFIG_SCSI_IZIP_EPP16
369 if (!(((long) buffer
| len
) & 0x01))
370 outsw(ppb
+ 4, buffer
, len
>> 1);
372 if (!(((long) buffer
| len
) & 0x03))
373 outsl(ppb
+ 4, buffer
, len
>> 2);
376 outsb(ppb
+ 4, buffer
, len
);
378 r
= !(r_str(ppb
) & 0x01);
385 /* 8 bit output, with a loop */
386 r
= imm_byte_out(ppb
, buffer
, len
);
390 printk("IMM: bug in imm_out()\n");
396 static int imm_in(imm_struct
*dev
, char *buffer
, int len
)
398 unsigned short ppb
= dev
->base
;
399 int r
= imm_wait(dev
);
403 * a) the SCSI bus is BUSY (device still listening)
404 * b) the device is sending data
406 if ((r
& 0x18) != 0x18) {
407 imm_fail(dev
, DID_ERROR
);
412 /* 4 bit input, with a loop */
413 r
= imm_nibble_in(ppb
, buffer
, len
);
418 /* 8 bit input, with a loop */
419 r
= imm_byte_in(ppb
, buffer
, len
);
428 #ifdef CONFIG_SCSI_IZIP_EPP16
429 if (!(((long) buffer
| len
) & 0x01))
430 insw(ppb
+ 4, buffer
, len
>> 1);
432 if (!(((long) buffer
| len
) & 0x03))
433 insl(ppb
+ 4, buffer
, len
>> 2);
436 insb(ppb
+ 4, buffer
, len
);
438 r
= !(r_str(ppb
) & 0x01);
444 printk("IMM: bug in imm_ins()\n");
451 static int imm_cpp(unsigned short ppb
, unsigned char b
)
454 * Comments on udelay values refer to the
455 * Command Packet Protocol (CPP) timing diagram.
458 unsigned char s1
, s2
, s3
;
460 udelay(2); /* 1 usec - infinite */
462 udelay(10); /* 7 usec - infinite */
464 udelay(10); /* 7 usec - infinite */
466 udelay(10); /* 7 usec - infinite */
468 udelay(10); /* 7 usec - infinite */
469 s1
= r_str(ppb
) & 0xb8;
471 udelay(10); /* 7 usec - infinite */
472 s2
= r_str(ppb
) & 0xb8;
474 udelay(10); /* 7 usec - infinite */
475 s3
= r_str(ppb
) & 0x38;
478 * 0000 00aa Assign address aa to current device
479 * 0010 00aa Select device aa in EPP Winbond mode
480 * 0010 10aa Select device aa in EPP mode
481 * 0011 xxxx Deselect all devices
482 * 0110 00aa Test device aa
483 * 1101 00aa Select device aa in ECP mode
484 * 1110 00aa Select device aa in Compatible mode
487 udelay(2); /* 1 usec - infinite */
489 udelay(10); /* 7 usec - infinite */
491 udelay(2); /* 1 usec - infinite */
493 udelay(10); /* 7 usec - infinite */
495 udelay(10); /* 7 usec - infinite */
498 * The following table is electrical pin values.
499 * (BSY is inverted at the CTR register)
501 * BSY ACK POut SEL Fault
506 * L => Last device in chain
509 * Observered values for S1,S2,S3 are:
510 * Disconnect => f8/58/78
511 * Connect => f8/58/70
513 if ((s1
== 0xb8) && (s2
== 0x18) && (s3
== 0x30))
514 return 1; /* Connected */
515 if ((s1
== 0xb8) && (s2
== 0x18) && (s3
== 0x38))
516 return 0; /* Disconnected */
518 return -1; /* No device present */
521 static inline int imm_connect(imm_struct
*dev
, int flag
)
523 unsigned short ppb
= dev
->base
;
525 imm_cpp(ppb
, 0xe0); /* Select device 0 in compatible mode */
526 imm_cpp(ppb
, 0x30); /* Disconnect all devices */
528 if ((dev
->mode
== IMM_EPP_8
) ||
529 (dev
->mode
== IMM_EPP_16
) ||
530 (dev
->mode
== IMM_EPP_32
))
531 return imm_cpp(ppb
, 0x28); /* Select device 0 in EPP mode */
532 return imm_cpp(ppb
, 0xe0); /* Select device 0 in compatible mode */
535 static void imm_disconnect(imm_struct
*dev
)
537 imm_cpp(dev
->base
, 0x30); /* Disconnect all devices */
540 static int imm_select(imm_struct
*dev
, int target
)
543 unsigned short ppb
= dev
->base
;
546 * Firstly we want to make sure there is nothing
547 * holding onto the SCSI bus.
554 } while ((r_str(ppb
) & 0x08) && (k
));
560 * Now assert the SCSI ID (HOST and TARGET) on the data bus
563 w_dtr(ppb
, 0x80 | (1 << target
));
567 * Deassert SELIN first followed by STROBE
573 * ACK should drop low while SELIN is deasserted.
574 * FAULT should drop low when the SCSI device latches the bus.
580 while (!(r_str(ppb
) & 0x08) && (k
));
583 * Place the interface back into a sane state (status mode)
589 static int imm_init(imm_struct
*dev
)
591 if (imm_connect(dev
, 0) != 1)
593 imm_reset_pulse(dev
->base
);
594 mdelay(1); /* Delay to allow devices to settle */
596 mdelay(1); /* Another delay to allow devices to settle */
597 return device_check(dev
);
600 static inline int imm_send_command(struct scsi_cmnd
*cmd
)
602 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
605 /* NOTE: IMM uses byte pairs */
606 for (k
= 0; k
< cmd
->cmd_len
; k
+= 2)
607 if (!imm_out(dev
, &cmd
->cmnd
[k
], 2))
613 * The bulk flag enables some optimisations in the data transfer loops,
614 * it should be true for any command that transfers data in integral
615 * numbers of sectors.
617 * The driver appears to remain stable if we speed up the parallel port
618 * i/o in this function, but not elsewhere.
620 static int imm_completion(struct scsi_cmnd
*cmd
)
625 * 1 Finished data transfer
627 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
628 unsigned short ppb
= dev
->base
;
629 unsigned long start_jiffies
= jiffies
;
632 int fast
, bulk
, status
;
635 bulk
= ((v
== READ_6
) ||
636 (v
== READ_10
) || (v
== WRITE_6
) || (v
== WRITE_10
));
639 * We only get here if the drive is ready to comunicate,
640 * hence no need for a full imm_wait.
643 r
= (r_str(ppb
) & 0xb8);
646 * while (device is not ready to send status byte)
649 while (r
!= (unsigned char) 0xb8) {
651 * If we have been running for more than a full timer tick
654 if (time_after(jiffies
, start_jiffies
+ 1))
659 * a) Drive status is screwy (!ready && !present)
660 * b) Drive is requesting/sending more data than expected
662 if (((r
& 0x88) != 0x88) || (cmd
->SCp
.this_residual
<= 0)) {
663 imm_fail(dev
, DID_ERROR
);
664 return -1; /* ERROR_RETURN */
666 /* determine if we should use burst I/O */
669 && (cmd
->SCp
.this_residual
>=
670 IMM_BURST_SIZE
)) ? IMM_BURST_SIZE
: 2;
671 status
= imm_out(dev
, cmd
->SCp
.ptr
, fast
);
674 && (cmd
->SCp
.this_residual
>=
675 IMM_BURST_SIZE
)) ? IMM_BURST_SIZE
: 1;
676 status
= imm_in(dev
, cmd
->SCp
.ptr
, fast
);
679 cmd
->SCp
.ptr
+= fast
;
680 cmd
->SCp
.this_residual
-= fast
;
683 imm_fail(dev
, DID_BUS_BUSY
);
684 return -1; /* ERROR_RETURN */
686 if (cmd
->SCp
.buffer
&& !cmd
->SCp
.this_residual
) {
687 /* if scatter/gather, advance to the next segment */
688 if (cmd
->SCp
.buffers_residual
--) {
690 cmd
->SCp
.this_residual
=
691 cmd
->SCp
.buffer
->length
;
692 cmd
->SCp
.ptr
= sg_virt(cmd
->SCp
.buffer
);
695 * Make sure that we transfer even number of bytes
696 * otherwise it makes imm_byte_out() messy.
698 if (cmd
->SCp
.this_residual
& 0x01)
699 cmd
->SCp
.this_residual
++;
702 /* Now check to see if the drive is ready to comunicate */
704 r
= (r_str(ppb
) & 0xb8);
706 /* If not, drop back down to the scheduler and wait a timer tick */
710 return 1; /* FINISH_RETURN */
714 * Since the IMM itself doesn't generate interrupts, we use
715 * the scheduler's task queue to generate a stream of call-backs and
716 * complete the request when the drive is ready.
718 static void imm_interrupt(struct work_struct
*work
)
720 imm_struct
*dev
= container_of(work
, imm_struct
, imm_tq
.work
);
721 struct scsi_cmnd
*cmd
= dev
->cur_cmd
;
722 struct Scsi_Host
*host
= cmd
->device
->host
;
725 if (imm_engine(dev
, cmd
)) {
726 schedule_delayed_work(&dev
->imm_tq
, 1);
729 /* Command must of completed hence it is safe to let go... */
731 switch ((cmd
->result
>> 16) & 0xff) {
735 printk("imm: no device at SCSI ID %i\n", cmd
->device
->id
);
738 printk("imm: BUS BUSY - EPP timeout detected\n");
741 printk("imm: unknown timeout\n");
744 printk("imm: told to abort\n");
747 printk("imm: parity error (???)\n");
750 printk("imm: internal driver error\n");
753 printk("imm: told to reset device\n");
756 printk("imm: bad interrupt (???)\n");
759 printk("imm: bad return code (%02x)\n",
760 (cmd
->result
>> 16) & 0xff);
764 if (cmd
->SCp
.phase
> 1)
769 spin_lock_irqsave(host
->host_lock
, flags
);
772 spin_unlock_irqrestore(host
->host_lock
, flags
);
776 static int imm_engine(imm_struct
*dev
, struct scsi_cmnd
*cmd
)
778 unsigned short ppb
= dev
->base
;
779 unsigned char l
= 0, h
= 0;
782 /* First check for any errors that may have occurred
783 * Here we check for internal errors
788 switch (cmd
->SCp
.phase
) {
789 case 0: /* Phase 0 - Waiting for parport */
790 if (time_after(jiffies
, dev
->jstart
+ HZ
)) {
792 * We waited more than a second
793 * for parport to call us
795 imm_fail(dev
, DID_BUS_BUSY
);
798 return 1; /* wait until imm_wakeup claims parport */
799 /* Phase 1 - Connected */
801 imm_connect(dev
, CONNECT_EPP_MAYBE
);
804 /* Phase 2 - We are now talking to the scsi bus */
806 if (!imm_select(dev
, scmd_id(cmd
))) {
807 imm_fail(dev
, DID_NO_CONNECT
);
812 /* Phase 3 - Ready to accept a command */
815 if (!(r_str(ppb
) & 0x80))
818 if (!imm_send_command(cmd
))
822 /* Phase 4 - Setup scatter/gather buffers */
824 if (scsi_bufflen(cmd
)) {
825 cmd
->SCp
.buffer
= scsi_sglist(cmd
);
826 cmd
->SCp
.this_residual
= cmd
->SCp
.buffer
->length
;
827 cmd
->SCp
.ptr
= sg_virt(cmd
->SCp
.buffer
);
829 cmd
->SCp
.buffer
= NULL
;
830 cmd
->SCp
.this_residual
= 0;
833 cmd
->SCp
.buffers_residual
= scsi_sg_count(cmd
) - 1;
835 if (cmd
->SCp
.this_residual
& 0x01)
836 cmd
->SCp
.this_residual
++;
837 /* Phase 5 - Pre-Data transfer stage */
839 /* Spin lock for BUSY */
841 if (!(r_str(ppb
) & 0x80))
844 /* Require negotiation for read requests */
845 x
= (r_str(ppb
) & 0xb8);
846 dev
->rd
= (x
& 0x10) ? 1 : 0;
847 dev
->dp
= (x
& 0x20) ? 0 : 1;
849 if ((dev
->dp
) && (dev
->rd
))
850 if (imm_negotiate(dev
))
854 /* Phase 6 - Data transfer stage */
856 /* Spin lock for BUSY */
858 if (!(r_str(ppb
) & 0x80))
862 retv
= imm_completion(cmd
);
870 /* Phase 7 - Post data transfer stage */
872 if ((dev
->dp
) && (dev
->rd
)) {
873 if ((dev
->mode
== IMM_NIBBLE
) || (dev
->mode
== IMM_PS2
)) {
882 /* Phase 8 - Read status/message */
884 /* Check for data overrun */
885 if (imm_wait(dev
) != (unsigned char) 0xb8) {
886 imm_fail(dev
, DID_ERROR
);
889 if (imm_negotiate(dev
))
891 if (imm_in(dev
, &l
, 1)) { /* read status byte */
892 /* Check for optional message byte */
893 if (imm_wait(dev
) == (unsigned char) 0xb8)
895 cmd
->result
= (DID_OK
<< 16) + (l
& STATUS_MASK
);
897 if ((dev
->mode
== IMM_NIBBLE
) || (dev
->mode
== IMM_PS2
)) {
903 return 0; /* Finished */
907 printk("imm: Invalid scsi phase\n");
912 static int imm_queuecommand_lck(struct scsi_cmnd
*cmd
,
913 void (*done
)(struct scsi_cmnd
*))
915 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
918 printk("IMM: bug in imm_queuecommand\n");
922 dev
->jstart
= jiffies
;
924 cmd
->scsi_done
= done
;
925 cmd
->result
= DID_ERROR
<< 16; /* default return code */
926 cmd
->SCp
.phase
= 0; /* bus free */
928 schedule_delayed_work(&dev
->imm_tq
, 0);
935 static DEF_SCSI_QCMD(imm_queuecommand
)
938 * Apparently the disk->capacity attribute is off by 1 sector
939 * for all disk drives. We add the one here, but it should really
940 * be done in sd.c. Even if it gets fixed there, this will still
943 static int imm_biosparam(struct scsi_device
*sdev
, struct block_device
*dev
,
944 sector_t capacity
, int ip
[])
948 ip
[2] = ((unsigned long) capacity
+ 1) / (ip
[0] * ip
[1]);
952 ip
[2] = ((unsigned long) capacity
+ 1) / (ip
[0] * ip
[1]);
957 static int imm_abort(struct scsi_cmnd
*cmd
)
959 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
961 * There is no method for aborting commands since Iomega
962 * have tied the SCSI_MESSAGE line high in the interface
965 switch (cmd
->SCp
.phase
) {
966 case 0: /* Do not have access to parport */
967 case 1: /* Have not connected to interface */
968 dev
->cur_cmd
= NULL
; /* Forget the problem */
971 default: /* SCSI command sent, can not abort */
977 static void imm_reset_pulse(unsigned int base
)
989 static int imm_reset(struct scsi_cmnd
*cmd
)
991 imm_struct
*dev
= imm_dev(cmd
->device
->host
);
995 dev
->cur_cmd
= NULL
; /* Forget the problem */
997 imm_connect(dev
, CONNECT_NORMAL
);
998 imm_reset_pulse(dev
->base
);
999 mdelay(1); /* device settle delay */
1000 imm_disconnect(dev
);
1001 mdelay(1); /* device settle delay */
1005 static int device_check(imm_struct
*dev
)
1007 /* This routine looks for a device and then attempts to use EPP
1008 to send a command. If all goes as planned then EPP is available. */
1010 static char cmd
[6] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1011 int loop
, old_mode
, status
, k
, ppb
= dev
->base
;
1014 old_mode
= dev
->mode
;
1015 for (loop
= 0; loop
< 8; loop
++) {
1016 /* Attempt to use EPP for Test Unit Ready */
1017 if ((ppb
& 0x0007) == 0x0000)
1018 dev
->mode
= IMM_EPP_32
;
1021 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1022 /* Select SCSI device */
1023 if (!imm_select(dev
, loop
)) {
1024 imm_disconnect(dev
);
1027 printk("imm: Found device at ID %i, Attempting to use %s\n",
1028 loop
, IMM_MODE_STRING
[dev
->mode
]);
1030 /* Send SCSI command */
1033 for (l
= 0; (l
< 3) && (status
); l
++)
1034 status
= imm_out(dev
, &cmd
[l
<< 1], 2);
1037 imm_disconnect(dev
);
1038 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1039 imm_reset_pulse(dev
->base
);
1041 imm_disconnect(dev
);
1043 if (dev
->mode
== IMM_EPP_32
) {
1044 dev
->mode
= old_mode
;
1047 printk("imm: Unable to establish communication\n");
1052 k
= 1000000; /* 1 Second */
1057 } while (!(l
& 0x80) && (k
));
1062 imm_disconnect(dev
);
1063 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1064 imm_reset_pulse(dev
->base
);
1066 imm_disconnect(dev
);
1068 if (dev
->mode
== IMM_EPP_32
) {
1069 dev
->mode
= old_mode
;
1073 ("imm: Unable to establish communication\n");
1076 imm_disconnect(dev
);
1078 ("imm: Communication established at 0x%x with ID %i using %s\n",
1079 ppb
, loop
, IMM_MODE_STRING
[dev
->mode
]);
1080 imm_connect(dev
, CONNECT_EPP_MAYBE
);
1081 imm_reset_pulse(dev
->base
);
1083 imm_disconnect(dev
);
1087 printk("imm: No devices found\n");
1092 * imm cannot deal with highmem, so this causes all IO pages for this host
1093 * to reside in low memory (hence mapped)
1095 static int imm_adjust_queue(struct scsi_device
*device
)
1097 blk_queue_bounce_limit(device
->request_queue
, BLK_BOUNCE_HIGH
);
1101 static struct scsi_host_template imm_template
= {
1102 .module
= THIS_MODULE
,
1104 .show_info
= imm_show_info
,
1105 .write_info
= imm_write_info
,
1106 .name
= "Iomega VPI2 (imm) interface",
1107 .queuecommand
= imm_queuecommand
,
1108 .eh_abort_handler
= imm_abort
,
1109 .eh_host_reset_handler
= imm_reset
,
1110 .bios_param
= imm_biosparam
,
1112 .sg_tablesize
= SG_ALL
,
1113 .use_clustering
= ENABLE_CLUSTERING
,
1115 .slave_alloc
= imm_adjust_queue
,
1118 /***************************************************************************
1119 * Parallel port probing routines *
1120 ***************************************************************************/
1122 static LIST_HEAD(imm_hosts
);
1125 * Finds the first available device number that can be alloted to the
1126 * new imm device and returns the address of the previous node so that
1127 * we can add to the tail and have a list in the ascending order.
1130 static inline imm_struct
*find_parent(void)
1132 imm_struct
*dev
, *par
= NULL
;
1133 unsigned int cnt
= 0;
1135 if (list_empty(&imm_hosts
))
1138 list_for_each_entry(dev
, &imm_hosts
, list
) {
1139 if (dev
->dev_no
!= cnt
)
1148 static int __imm_attach(struct parport
*pb
)
1150 struct Scsi_Host
*host
;
1151 imm_struct
*dev
, *temp
;
1152 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waiting
);
1157 struct pardev_cb imm_cb
;
1159 init_waitqueue_head(&waiting
);
1161 dev
= kzalloc(sizeof(imm_struct
), GFP_KERNEL
);
1167 dev
->mode
= IMM_AUTODETECT
;
1168 INIT_LIST_HEAD(&dev
->list
);
1170 temp
= find_parent();
1172 dev
->dev_no
= temp
->dev_no
+ 1;
1174 memset(&imm_cb
, 0, sizeof(imm_cb
));
1175 imm_cb
.private = dev
;
1176 imm_cb
.wakeup
= imm_wakeup
;
1178 dev
->dev
= parport_register_dev_model(pb
, "imm", &imm_cb
, dev
->dev_no
);
1183 /* Claim the bus so it remembers what we do to the control
1184 * registers. [ CTR and ECP ]
1187 dev
->waiting
= &waiting
;
1188 prepare_to_wait(&waiting
, &wait
, TASK_UNINTERRUPTIBLE
);
1189 if (imm_pb_claim(dev
))
1190 schedule_timeout(3 * HZ
);
1192 printk(KERN_ERR
"imm%d: failed to claim parport because "
1193 "a pardevice is owning the port for too long "
1194 "time!\n", pb
->number
);
1195 imm_pb_dismiss(dev
);
1196 dev
->waiting
= NULL
;
1197 finish_wait(&waiting
, &wait
);
1200 dev
->waiting
= NULL
;
1201 finish_wait(&waiting
, &wait
);
1202 ppb
= dev
->base
= dev
->dev
->port
->base
;
1203 dev
->base_hi
= dev
->dev
->port
->base_hi
;
1205 modes
= dev
->dev
->port
->modes
;
1207 /* Mode detection works up the chain of speed
1208 * This avoids a nasty if-then-else-if-... tree
1210 dev
->mode
= IMM_NIBBLE
;
1212 if (modes
& PARPORT_MODE_TRISTATE
)
1213 dev
->mode
= IMM_PS2
;
1215 /* Done configuration */
1217 err
= imm_init(dev
);
1219 imm_pb_release(dev
);
1224 /* now the glue ... */
1225 if (dev
->mode
== IMM_NIBBLE
|| dev
->mode
== IMM_PS2
)
1230 INIT_DELAYED_WORK(&dev
->imm_tq
, imm_interrupt
);
1233 host
= scsi_host_alloc(&imm_template
, sizeof(imm_struct
*));
1236 host
->io_port
= pb
->base
;
1237 host
->n_io_port
= ports
;
1238 host
->dma_channel
= -1;
1239 host
->unique_id
= pb
->number
;
1240 *(imm_struct
**)&host
->hostdata
= dev
;
1243 list_add_tail(&dev
->list
, &imm_hosts
);
1245 list_add_tail(&dev
->list
, &temp
->list
);
1246 err
= scsi_add_host(host
, NULL
);
1249 scsi_scan_host(host
);
1253 list_del_init(&dev
->list
);
1254 scsi_host_put(host
);
1256 parport_unregister_device(dev
->dev
);
1262 static void imm_attach(struct parport
*pb
)
1267 static void imm_detach(struct parport
*pb
)
1270 list_for_each_entry(dev
, &imm_hosts
, list
) {
1271 if (dev
->dev
->port
== pb
) {
1272 list_del_init(&dev
->list
);
1273 scsi_remove_host(dev
->host
);
1274 scsi_host_put(dev
->host
);
1275 parport_unregister_device(dev
->dev
);
1282 static struct parport_driver imm_driver
= {
1284 .match_port
= imm_attach
,
1285 .detach
= imm_detach
,
1289 static int __init
imm_driver_init(void)
1291 printk("imm: Version %s\n", IMM_VERSION
);
1292 return parport_register_driver(&imm_driver
);
1295 static void __exit
imm_driver_exit(void)
1297 parport_unregister_driver(&imm_driver
);
1300 module_init(imm_driver_init
);
1301 module_exit(imm_driver_exit
);
1303 MODULE_LICENSE("GPL");