2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License as published by the
4 * Free Software Foundation; either version 2, or (at your option) any
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * General Public License for more details.
12 * Complications for I2O scsi
14 * o Each (bus,lun) is a logical device in I2O. We keep a map
15 * table. We spoof failed selection for unmapped units
16 * o Request sense buffers can come back for free.
17 * o Scatter gather is a bit dynamic. We have to investigate at
19 * o Some of our resources are dynamically shared. The i2o core
20 * needs a message reservation protocol to avoid swap v net
21 * deadlocking. We need to back off queue requests.
23 * In general the firmware wants to help. Where its help isn't performance
24 * useful we just ignore the aid. Its not worth the code in truth.
27 * Steve Ralston : Scatter gather now works
31 * Fix the resource management problems.
34 #include <linux/module.h>
35 #include <linux/kernel.h>
36 #include <linux/types.h>
37 #include <linux/string.h>
38 #include <linux/ioport.h>
39 #include <linux/sched.h>
40 #include <linux/interrupt.h>
41 #include <linux/timer.h>
42 #include <linux/delay.h>
43 #include <linux/proc_fs.h>
45 #include <asm/system.h>
47 #include <asm/atomic.h>
48 #include <linux/blk.h>
49 #include <linux/version.h>
50 #include <linux/i2o.h>
51 #include "../scsi/scsi.h"
52 #include "../scsi/hosts.h"
53 #include "../scsi/sd.h"
56 #define VERSION_STRING "Version 0.0.1"
64 struct i2o_controller
*controller
;
65 s16 task
[16][8]; /* Allow 16 devices for now */
66 unsigned long tagclock
[16][8]; /* Tag clock for queueing */
67 s16 bus_task
; /* The adapter TID */
70 static int scsi_context
;
72 static int i2o_scsi_hosts
;
74 static u32
*retry
[32];
75 static struct i2o_controller
*retry_ctrl
[32];
76 static struct timer_list retry_timer
;
77 static int retry_ct
= 0;
79 static atomic_t queue_depth
;
82 * SG Chain buffer support...
85 #define SG_MAX_FRAGS 64
88 * FIXME: we should allocate one of these per bus we find as we
89 * locate them not in a lump at boot.
92 typedef struct _chain_buf
94 u32 sg_flags_cnt
[SG_MAX_FRAGS
];
95 u32 sg_buf
[SG_MAX_FRAGS
];
98 #define SG_CHAIN_BUF_SZ sizeof(chain_buf)
100 #define SG_MAX_BUFS (i2o_num_controllers * I2O_SCSI_CAN_QUEUE)
101 #define SG_CHAIN_POOL_SZ (SG_MAX_BUFS * SG_CHAIN_BUF_SZ)
103 static int max_sg_len
= 0;
104 static chain_buf
*sg_chain_pool
= NULL
;
105 static int sg_chain_tag
= 0;
106 static int sg_max_frags
= SG_MAX_FRAGS
;
109 * Retry congested frames. This actually needs pushing down into
110 * i2o core. We should only bother the OSM with this when we can't
111 * queue and retry the frame. Or perhaps we should call the OSM
112 * and its default handler should be this in the core, and this
113 * call a 2nd "I give up" handler in the OSM ?
116 static void i2o_retry_run(unsigned long f
)
124 for(i
=0;i
<retry_ct
;i
++)
125 i2o_post_message(retry_ctrl
[i
], virt_to_bus(retry
[i
]));
128 restore_flags(flags
);
131 static void flush_pending(void)
139 for(i
=0;i
<retry_ct
;i
++)
141 retry
[i
][0]&=~0xFFFFFF;
142 retry
[i
][0]|=I2O_CMD_UTIL_NOP
<<24;
143 i2o_post_message(retry_ctrl
[i
],virt_to_bus(retry
[i
]));
147 restore_flags(flags
);
150 static void i2o_scsi_reply(struct i2o_handler
*h
, struct i2o_controller
*c
, struct i2o_message
*msg
)
152 Scsi_Cmnd
*current_command
;
158 printk("IOP fail.\n");
159 printk("From %d To %d Cmd %d.\n",
163 printk("Failure Code %d.\n", m
[4]>>24);
165 printk("Format error.\n");
167 printk("Path error.\n");
169 printk("Path State.\n");
171 printk("Congestion.\n");
173 m
=(u32
*)bus_to_virt(m
[7]);
174 printk("Failing message is %p.\n", m
);
176 if((m
[4]&(1<<18)) && retry_ct
< 32)
178 retry_ctrl
[retry_ct
]=c
;
182 retry_timer
.expires
=jiffies
+1;
183 add_timer(&retry_timer
);
188 /* Create a scsi error for this */
189 current_command
= (Scsi_Cmnd
*)m
[3];
190 printk("Aborted %ld\n", current_command
->serial_number
);
192 spin_lock_irq(&io_request_lock
);
193 current_command
->result
= DID_ERROR
<< 16;
194 current_command
->scsi_done(current_command
);
195 spin_unlock_irq(&io_request_lock
);
197 /* Now flush the message by making it a NOP */
199 m
[0]|=(I2O_CMD_UTIL_NOP
)<<24;
200 i2o_post_message(c
,virt_to_bus(m
));
207 * Low byte is device status, next is adapter status,
208 * (then one byte reserved), then request status.
214 dprintk(("i2o got a scsi reply %08X: ", m
[0]));
215 dprintk(("m[2]=%08X: ", m
[2]));
216 dprintk(("m[4]=%08X\n", m
[4]));
222 dprintk(("Event.\n"));
226 printk(KERN_ERR
"i2o_scsi: bus reset reply.\n");
230 current_command
= (Scsi_Cmnd
*)m
[3];
233 * Is this a control request coming back - eg an abort ?
236 if(current_command
==NULL
)
239 dprintk(("SCSI abort: %08X", m
[4]));
240 dprintk(("SCSI abort completed.\n"));
244 dprintk(("Completed %ld\n", current_command
->serial_number
));
246 atomic_dec(&queue_depth
);
250 if(m
[5] < current_command
->underflow
)
253 printk(KERN_ERR
"SCSI: underflow 0x%08X 0x%08X\n",
254 m
[5], current_command
->underflow
);
257 printk("%02X ", current_command
->cmnd
[i
]);
265 /* An error has occured */
267 dprintk((KERN_DEBUG
"SCSI error %08X", m
[4]));
271 current_command
->result
= DID_RESET
<< 16;
273 current_command
->result
= DID_PARITY
<< 16;
275 current_command
->result
= DID_ERROR
<< 16;
281 current_command
->result
= DID_OK
<< 16 | ds
;
282 spin_lock(&io_request_lock
);
283 current_command
->scsi_done(current_command
);
284 spin_unlock(&io_request_lock
);
288 struct i2o_handler i2o_scsi_handler
=
296 I2O_CLASS_SCSI_PERIPHERAL
299 static int i2o_find_lun(struct i2o_controller
*c
, struct i2o_device
*d
, int *target
, int *lun
)
303 if(i2o_query_scalar(c
, d
->lct_data
.tid
, 0, 3, reply
, 4)<0)
308 if(i2o_query_scalar(c
, d
->lct_data
.tid
, 0, 4, reply
, 8)<0)
313 dprintk(("SCSI (%d,%d)\n", *target
, *lun
));
317 void i2o_scsi_init(struct i2o_controller
*c
, struct i2o_device
*d
, struct Scsi_Host
*shpnt
)
319 struct i2o_device
*unit
;
320 struct i2o_scsi_host
*h
=(struct i2o_scsi_host
*)shpnt
->hostdata
;
325 h
->bus_task
=d
->lct_data
.tid
;
327 for(target
=0;target
<16;target
++)
328 for(lun
=0;lun
<8;lun
++)
329 h
->task
[target
][lun
] = -1;
331 for(unit
=c
->devices
;unit
!=NULL
;unit
=unit
->next
)
333 dprintk(("Class %03X, parent %d, want %d.\n",
334 unit
->lct_data
.class_id
, unit
->lct_data
.parent_tid
, d
->lct_data
.tid
));
336 /* Only look at scsi and fc devices */
337 if ( (unit
->lct_data
.class_id
!= I2O_CLASS_SCSI_PERIPHERAL
)
338 && (unit
->lct_data
.class_id
!= I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL
)
343 dprintk(("Found a disk (%d).\n", unit
->lct_data
.tid
));
344 if ((unit
->lct_data
.parent_tid
== d
->lct_data
.tid
)
345 || (unit
->lct_data
.parent_tid
== d
->lct_data
.parent_tid
)
349 dprintk(("Its ours.\n"));
350 if(i2o_find_lun(c
, unit
, &target
, &lun
)==-1)
352 printk(KERN_ERR
"i2o_scsi: Unable to get lun for tid %d.\n", unit
->lct_data
.tid
);
355 dprintk(("Found disk %d %d.\n", target
, lun
));
356 h
->task
[target
][lun
]=unit
->lct_data
.tid
;
357 h
->tagclock
[target
][lun
]=jiffies
;
359 /* Get the max fragments/request */
360 i2o_query_scalar(c
, d
->lct_data
.tid
, 0xF103, 3, &limit
, 2);
365 printk(KERN_WARNING
"i2o_scsi: Ignoring unreasonable SG limit of 0 from IOP!\n");
369 shpnt
->sg_tablesize
= limit
;
371 dprintk(("i2o_scsi: set scatter-gather to %d.\n",
372 shpnt
->sg_tablesize
));
377 int i2o_scsi_detect(Scsi_Host_Template
* tpnt
)
380 struct Scsi_Host
*shpnt
= NULL
;
384 printk("i2o_scsi.c: %s\n", VERSION_STRING
);
386 if(i2o_install_handler(&i2o_scsi_handler
)<0)
388 printk(KERN_ERR
"i2o_scsi: Unable to install OSM handler.\n");
391 scsi_context
= i2o_scsi_handler
.context
;
393 if((sg_chain_pool
= kmalloc(SG_CHAIN_POOL_SZ
, GFP_KERNEL
)) == NULL
)
395 printk("i2o_scsi: Unable to alloc %d byte SG chain buffer pool.\n", SG_CHAIN_POOL_SZ
);
396 printk("i2o_scsi: SG chaining DISABLED!\n");
401 printk(" chain_pool: %d bytes @ %p\n", SG_CHAIN_POOL_SZ
, sg_chain_pool
);
402 printk(" (%d byte buffers X %d can_queue X %d i2o controllers)\n",
403 SG_CHAIN_BUF_SZ
, I2O_SCSI_CAN_QUEUE
, i2o_num_controllers
);
404 sg_max_frags
= SG_MAX_FRAGS
; // 64
407 init_timer(&retry_timer
);
408 retry_timer
.data
= 0UL;
409 retry_timer
.function
= i2o_retry_run
;
411 // printk("SCSI OSM at %d.\n", scsi_context);
413 for (count
= 0, i
= 0; i
< MAX_I2O_CONTROLLERS
; i
++)
415 struct i2o_controller
*c
=i2o_find_controller(i
);
416 struct i2o_device
*d
;
418 * This controller doesn't exist.
425 * Fixme - we need some altered device locking. This
426 * is racing with device addition in theory. Easy to fix.
429 for(d
=c
->devices
;d
!=NULL
;d
=d
->next
)
432 * bus_adapter, SCSI (obsolete), or FibreChannel busses only
434 if( (d
->lct_data
.class_id
!=I2O_CLASS_BUS_ADAPTER_PORT
) // bus_adapter
435 // && (d->lct_data.class_id!=I2O_CLASS_FIBRE_CHANNEL_PORT) // FC_PORT
439 shpnt
= scsi_register(tpnt
, sizeof(struct i2o_scsi_host
));
444 shpnt
->unique_id
= (u32
)d
;
446 shpnt
->n_io_port
= 0;
448 shpnt
->this_id
= /* Good question */15;
449 restore_flags(flags
);
450 i2o_scsi_init(c
, d
, shpnt
);
454 i2o_scsi_hosts
= count
;
458 if(sg_chain_pool
!=NULL
)
460 kfree(sg_chain_pool
);
461 sg_chain_pool
= NULL
;
464 del_timer(&retry_timer
);
465 i2o_remove_handler(&i2o_scsi_handler
);
471 int i2o_scsi_release(struct Scsi_Host
*host
)
473 if(--i2o_scsi_hosts
==0)
475 if(sg_chain_pool
!=NULL
)
477 kfree(sg_chain_pool
);
478 sg_chain_pool
= NULL
;
481 del_timer(&retry_timer
);
482 i2o_remove_handler(&i2o_scsi_handler
);
488 const char *i2o_scsi_info(struct Scsi_Host
*SChost
)
490 struct i2o_scsi_host
*hostdata
;
492 hostdata
= (struct i2o_scsi_host
*)SChost
->hostdata
;
494 return(&hostdata
->controller
->name
[0]);
499 * From the wd93 driver:
500 * Returns true if there will be a DATA_OUT phase with this command,
502 * (Thanks to Joerg Dorchain for the research and suggestion.)
505 static int is_dir_out(Scsi_Cmnd
*cmd
)
507 switch (cmd
->cmnd
[0])
509 case WRITE_6
: case WRITE_10
: case WRITE_12
:
510 case WRITE_LONG
: case WRITE_SAME
: case WRITE_BUFFER
:
511 case WRITE_VERIFY
: case WRITE_VERIFY_12
:
512 case COMPARE
: case COPY
: case COPY_VERIFY
:
513 case SEARCH_EQUAL
: case SEARCH_HIGH
: case SEARCH_LOW
:
514 case SEARCH_EQUAL_12
: case SEARCH_HIGH_12
: case SEARCH_LOW_12
:
515 case FORMAT_UNIT
: case REASSIGN_BLOCKS
: case RESERVE
:
516 case MODE_SELECT
: case MODE_SELECT_10
: case LOG_SELECT
:
517 case SEND_DIAGNOSTIC
: case CHANGE_DEFINITION
: case UPDATE_BLOCK
:
518 case SET_WINDOW
: case MEDIUM_SCAN
: case SEND_VOLUME_TAG
:
526 int i2o_scsi_queuecommand(Scsi_Cmnd
* SCpnt
, void (*done
) (Scsi_Cmnd
*))
530 struct i2o_controller
*c
;
531 Scsi_Cmnd
*current_command
;
532 struct Scsi_Host
*host
;
533 struct i2o_scsi_host
*hostdata
;
543 static int max_qd
= 1;
546 * Do the incoming paperwork
550 hostdata
= (struct i2o_scsi_host
*)host
->hostdata
;
551 SCpnt
->scsi_done
= done
;
553 if(SCpnt
->target
> 15)
555 printk(KERN_ERR
"i2o_scsi: Wild target %d.\n", SCpnt
->target
);
559 tid
= hostdata
->task
[SCpnt
->target
][SCpnt
->lun
];
561 dprintk(("qcmd: Tid = %d\n", tid
));
563 current_command
= SCpnt
; /* set current command */
564 current_command
->scsi_done
= done
; /* set ptr to done function */
566 /* We don't have such a device. Pretend we did the command
567 and that selection timed out */
571 SCpnt
->result
= DID_NO_CONNECT
<< 16;
576 dprintk(("Real scsi messages.\n"));
578 c
= hostdata
->controller
;
581 * Obtain an I2O message. Right now we _have_ to obtain one
582 * until the scsi layer stuff is cleaned up.
588 m
= I2O_POST_READ32(c
);
590 while(m
==0xFFFFFFFF);
591 msg
= (u32
*)(c
->mem_offset
+ m
);
594 * Put together a scsi execscb message
597 len
= SCpnt
->request_bufflen
;
598 direction
= 0x00000000; // SGL IN (osm<--iop)
601 * The scsi layer should be handling this stuff
604 scsidir
= 0x00000000; // DATA NO XFER
607 if(is_dir_out(SCpnt
))
609 direction
=0x04000000; // SGL OUT (osm-->iop)
610 scsidir
=0x80000000; // DATA OUT (iop-->dev)
614 scsidir
=0x40000000; // DATA IN (iop<--dev)
618 __raw_writel(I2O_CMD_SCSI_EXEC
<<24|HOST_TID
<<12|tid
, &msg
[1]);
619 __raw_writel(scsi_context
, &msg
[2]); /* So the I2O layer passes to us */
620 /* Sorry 64bit folks. FIXME */
621 __raw_writel((u32
)SCpnt
, &msg
[3]); /* We want the SCSI control block back */
625 * Intermittant observations of msg frame word data corruption
626 * observed on msg[4] after:
627 * WRITE, READ-MODIFY-WRITE
628 * operations. 19990606 -sralston
630 * (Hence we build this word via tag. Its good practice anyway
631 * we don't want fetches over PCI needlessly)
637 * Attach tags to the devices
639 if(SCpnt
->device
->tagged_supported
)
642 * Some drives are too stupid to handle fairness issues
643 * with tagged queueing. We throw in the odd ordered
644 * tag to stop them starving themselves.
646 if((jiffies
- hostdata
->tagclock
[SCpnt
->target
][SCpnt
->lun
]) > (5*HZ
))
648 tag
=0x01800000; /* ORDERED! */
649 hostdata
->tagclock
[SCpnt
->target
][SCpnt
->lun
]=jiffies
;
653 /* Hmmm... I always see value of 0 here,
654 * of which {HEAD_OF, ORDERED, SIMPLE} are NOT! -sralston
656 if(SCpnt
->tag
== HEAD_OF_QUEUE_TAG
)
658 else if(SCpnt
->tag
== ORDERED_QUEUE_TAG
)
663 /* Direction, disconnect ok, tag, CDBLen */
664 __raw_writel(scsidir
|0x20000000|SCpnt
->cmd_len
|tag
, &msg
[4]);
669 * Write SCSI command into the message - always 16 byte block
672 memcpy_toio(mptr
, SCpnt
->cmnd
, 16);
674 lenptr
=mptr
++; /* Remember me - fill in when we know */
676 reqlen
= 12; // SINGLE SGE
679 * Now fill in the SGList and command
681 * FIXME: we need to set the sglist limits according to the
682 * message size of the I2O controller. We might only have room
683 * for 6 or so worst case
688 struct scatterlist
*sg
= (struct scatterlist
*)SCpnt
->request_buffer
;
693 if((sg_max_frags
> 11) && (SCpnt
->use_sg
> 11))
699 __raw_writel(direction
|0xB0000000|(SCpnt
->use_sg
*2*4), mptr
++);
700 __raw_writel(virt_to_bus(sg_chain_pool
+ sg_chain_tag
), mptr
);
701 mptr
= (u32
*)(sg_chain_pool
+ sg_chain_tag
);
702 if (SCpnt
->use_sg
> max_sg_len
)
704 max_sg_len
= SCpnt
->use_sg
;
705 printk("i2o_scsi: Chain SG! SCpnt=%p, SG_FragCnt=%d, SG_idx=%d\n",
706 SCpnt
, SCpnt
->use_sg
, sg_chain_tag
);
708 if ( ++sg_chain_tag
== SG_MAX_BUFS
)
710 for(i
= 0 ; i
< SCpnt
->use_sg
; i
++)
712 *mptr
++=direction
|0x10000000|sg
->length
;
714 *mptr
++=virt_to_bus(sg
->address
);
717 mptr
[-2]=direction
|0xD0000000|(sg
-1)->length
;
721 for(i
= 0 ; i
< SCpnt
->use_sg
; i
++)
723 __raw_writel(direction
|0x10000000|sg
->length
, mptr
++);
725 __raw_writel(virt_to_bus(sg
->address
), mptr
++);
729 /* Make this an end of list. Again evade the 920 bug and
730 unwanted PCI read traffic */
732 __raw_writel(direction
|0xD0000000|(sg
-1)->length
, &mptr
[-2]);
738 __raw_writel(len
, lenptr
);
740 if(len
!= SCpnt
->underflow
)
741 printk("Cmd len %08X Cmd underflow %08X\n",
742 len
, SCpnt
->underflow
);
746 dprintk(("non sg for %p, %d\n", SCpnt
->request_buffer
,
747 SCpnt
->request_bufflen
));
748 __raw_writel(len
= SCpnt
->request_bufflen
, lenptr
);
755 __raw_writel(0xD0000000|direction
|SCpnt
->request_bufflen
, mptr
++);
756 __raw_writel(virt_to_bus(SCpnt
->request_buffer
), mptr
++);
761 * Stick the headers on
764 __raw_writel(reqlen
<<16 | SGL_OFFSET_10
, msg
);
766 /* Queue the message */
767 i2o_post_message(c
,m
);
769 atomic_inc(&queue_depth
);
771 if(atomic_read(&queue_depth
)> max_qd
)
773 max_qd
=atomic_read(&queue_depth
);
774 printk("Queue depth now %d.\n", max_qd
);
778 dprintk(("Issued %ld\n", current_command
->serial_number
));
783 static void internal_done(Scsi_Cmnd
* SCpnt
)
788 int i2o_scsi_command(Scsi_Cmnd
* SCpnt
)
790 i2o_scsi_queuecommand(SCpnt
, internal_done
);
791 SCpnt
->SCp
.Status
= 0;
792 while (!SCpnt
->SCp
.Status
)
794 return SCpnt
->result
;
797 int i2o_scsi_abort(Scsi_Cmnd
* SCpnt
)
799 struct i2o_controller
*c
;
800 struct Scsi_Host
*host
;
801 struct i2o_scsi_host
*hostdata
;
806 printk("i2o_scsi: Aborting command block.\n");
809 hostdata
= (struct i2o_scsi_host
*)host
->hostdata
;
810 tid
= hostdata
->task
[SCpnt
->target
][SCpnt
->lun
];
813 printk(KERN_ERR
"impossible command to abort.\n");
814 return SCSI_ABORT_NOT_RUNNING
;
816 c
= hostdata
->controller
;
819 * Obtain an I2O message. Right now we _have_ to obtain one
820 * until the scsi layer stuff is cleaned up.
826 m
= I2O_POST_READ32(c
);
828 while(m
==0xFFFFFFFF);
829 msg
= bus_to_virt(c
->mem_offset
+ m
);
831 __raw_writel(FIVE_WORD_MSG_SIZE
, &msg
[0]);
832 __raw_writel(I2O_CMD_SCSI_ABORT
<<24|HOST_TID
<<12|tid
, &msg
[1]);
833 __raw_writel(scsi_context
, &msg
[2]);
834 __raw_writel(0, &msg
[3]); /* Not needed for an abort */
835 __raw_writel((u32
)SCpnt
, &msg
[4]);
837 i2o_post_message(c
,m
);
839 return SCSI_ABORT_PENDING
;
842 int i2o_scsi_reset(Scsi_Cmnd
* SCpnt
, unsigned int reset_flags
)
845 struct i2o_controller
*c
;
846 struct Scsi_Host
*host
;
847 struct i2o_scsi_host
*hostdata
;
852 * Find the TID for the bus
855 printk("i2o_scsi: Attempting to reset the bus.\n");
858 hostdata
= (struct i2o_scsi_host
*)host
->hostdata
;
859 tid
= hostdata
->bus_task
;
860 c
= hostdata
->controller
;
863 * Now send a SCSI reset request. Any remaining commands
864 * will be aborted by the IOP. We need to catch the reply
868 m
= I2O_POST_READ32(c
);
871 * No free messages, try again next time - no big deal
875 return SCSI_RESET_PUNT
;
877 msg
= bus_to_virt(c
->mem_offset
+ m
);
878 __raw_writel(FOUR_WORD_MSG_SIZE
|SGL_OFFSET_0
, &msg
[0]);
879 __raw_writel(I2O_CMD_SCSI_BUSRESET
<<24|HOST_TID
<<12|tid
, &msg
[1]);
880 __raw_writel(scsi_context
|0x80000000, &msg
[2]);
881 /* We use the top bit to split controller and unit transactions */
882 /* Now store unit,tid so we can tie the completion back to a specific device */
883 __raw_writel(c
->unit
<< 16 | tid
, &msg
[3]);
884 i2o_post_message(c
,m
);
885 return SCSI_RESET_PENDING
;
889 * This is anyones guess quite frankly.
892 int i2o_scsi_bios_param(Disk
* disk
, kdev_t dev
, int *ip
)
896 size
= disk
->capacity
;
897 ip
[0] = 64; /* heads */
898 ip
[1] = 32; /* sectors */
899 if ((ip
[2] = size
>> 11) > 1024) { /* cylinders, test for big disk */
900 ip
[0] = 255; /* heads */
901 ip
[1] = 63; /* sectors */
902 ip
[2] = size
/ (255 * 63); /* cylinders */
907 MODULE_AUTHOR("Red Hat Software");
909 static Scsi_Host_Template driver_template
= I2OSCSI
;
911 #include "../scsi/scsi_module.c"