1 /* ------------------------------------------------------------
3 * (C) Copyright IBM Corporation 1994, 2004
4 * Authors: Colin DeVilbiss (devilbis@us.ibm.com)
5 * Santiago Leon (santil@us.ibm.com)
6 * Dave Boutcher (sleddog@us.ibm.com)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * ------------------------------------------------------------
24 * Emulation of a SCSI host adapter for Virtual I/O devices
26 * This driver supports the SCSI adapter implemented by the IBM
27 * Power5 firmware. That SCSI adapter is not a physical adapter,
28 * but allows Linux SCSI peripheral drivers to directly
29 * access devices in another logical partition on the physical system.
31 * The virtual adapter(s) are present in the open firmware device
32 * tree just like real adapters.
34 * One of the capabilities provided on these systems is the ability
35 * to DMA between partitions. The architecture states that for VSCSI,
36 * the server side is allowed to DMA to and from the client. The client
37 * is never trusted to DMA to or from the server directly.
39 * Messages are sent between partitions on a "Command/Response Queue"
40 * (CRQ), which is just a buffer of 16 byte entries in the receiver's
41 * Senders cannot access the buffer directly, but send messages by
42 * making a hypervisor call and passing in the 16 bytes. The hypervisor
43 * puts the message in the next 16 byte space in round-robbin fashion,
44 * turns on the high order bit of the message (the valid bit), and
45 * generates an interrupt to the receiver (if interrupts are turned on.)
46 * The receiver just turns off the valid bit when they have copied out
49 * The VSCSI client builds a SCSI Remote Protocol (SRP) Information Unit
50 * (IU) (as defined in the T10 standard available at www.t10.org), gets
51 * a DMA address for the message, and sends it to the server as the
52 * payload of a CRQ message. The server DMAs the SRP IU and processes it,
53 * including doing any additional data transfers. When it is done, it
54 * DMAs the SRP response back to the same address as the request came from,
55 * and sends a CRQ message back to inform the client that the request has
58 * Note that some of the underlying infrastructure is different between
59 * machines conforming to the "RS/6000 Platform Architecture" (RPA) and
60 * the older iSeries hypervisor models. To support both, some low level
61 * routines have been broken out into rpa_vscsi.c and iseries_vscsi.c.
62 * The Makefile should pick one, not two, not zero, of these.
64 * TODO: This is currently pretty tied to the IBM i/pSeries hypervisor
65 * interfaces. It would be really nice to abstract this above an RDMA
69 #include <linux/module.h>
70 #include <linux/moduleparam.h>
71 #include <linux/dma-mapping.h>
72 #include <linux/delay.h>
74 #include <scsi/scsi.h>
75 #include <scsi/scsi_cmnd.h>
76 #include <scsi/scsi_host.h>
77 #include <scsi/scsi_device.h>
80 /* The values below are somewhat arbitrary default values, but
81 * OS/400 will use 3 busses (disks, CDs, tapes, I think.)
82 * Note that there are 3 bits of channel value, 6 bits of id, and
85 static int max_id
= 64;
86 static int max_channel
= 3;
87 static int init_timeout
= 5;
88 static int max_requests
= 50;
90 #define IBMVSCSI_VERSION "1.5.8"
92 MODULE_DESCRIPTION("IBM Virtual SCSI");
93 MODULE_AUTHOR("Dave Boutcher");
94 MODULE_LICENSE("GPL");
95 MODULE_VERSION(IBMVSCSI_VERSION
);
97 module_param_named(max_id
, max_id
, int, S_IRUGO
| S_IWUSR
);
98 MODULE_PARM_DESC(max_id
, "Largest ID value for each channel");
99 module_param_named(max_channel
, max_channel
, int, S_IRUGO
| S_IWUSR
);
100 MODULE_PARM_DESC(max_channel
, "Largest channel value");
101 module_param_named(init_timeout
, init_timeout
, int, S_IRUGO
| S_IWUSR
);
102 MODULE_PARM_DESC(init_timeout
, "Initialization timeout in seconds");
103 module_param_named(max_requests
, max_requests
, int, S_IRUGO
| S_IWUSR
);
104 MODULE_PARM_DESC(max_requests
, "Maximum requests for this adapter");
106 /* ------------------------------------------------------------
107 * Routines for the event pool and event structs
110 * initialize_event_pool: - Allocates and initializes the event pool for a host
111 * @pool: event_pool to be initialized
112 * @size: Number of events in pool
113 * @hostdata: ibmvscsi_host_data who owns the event pool
115 * Returns zero on success.
117 static int initialize_event_pool(struct event_pool
*pool
,
118 int size
, struct ibmvscsi_host_data
*hostdata
)
124 pool
->events
= kcalloc(pool
->size
, sizeof(*pool
->events
), GFP_KERNEL
);
129 dma_alloc_coherent(hostdata
->dev
,
130 pool
->size
* sizeof(*pool
->iu_storage
),
132 if (!pool
->iu_storage
) {
137 for (i
= 0; i
< pool
->size
; ++i
) {
138 struct srp_event_struct
*evt
= &pool
->events
[i
];
139 memset(&evt
->crq
, 0x00, sizeof(evt
->crq
));
140 atomic_set(&evt
->free
, 1);
141 evt
->crq
.valid
= 0x80;
142 evt
->crq
.IU_length
= sizeof(*evt
->xfer_iu
);
143 evt
->crq
.IU_data_ptr
= pool
->iu_token
+
144 sizeof(*evt
->xfer_iu
) * i
;
145 evt
->xfer_iu
= pool
->iu_storage
+ i
;
146 evt
->hostdata
= hostdata
;
147 evt
->ext_list
= NULL
;
148 evt
->ext_list_token
= 0;
155 * release_event_pool: - Frees memory of an event pool of a host
156 * @pool: event_pool to be released
157 * @hostdata: ibmvscsi_host_data who owns the even pool
159 * Returns zero on success.
161 static void release_event_pool(struct event_pool
*pool
,
162 struct ibmvscsi_host_data
*hostdata
)
165 for (i
= 0; i
< pool
->size
; ++i
) {
166 if (atomic_read(&pool
->events
[i
].free
) != 1)
168 if (pool
->events
[i
].ext_list
) {
169 dma_free_coherent(hostdata
->dev
,
170 SG_ALL
* sizeof(struct srp_direct_buf
),
171 pool
->events
[i
].ext_list
,
172 pool
->events
[i
].ext_list_token
);
177 "ibmvscsi: releasing event pool with %d "
178 "events still in use?\n", in_use
);
180 dma_free_coherent(hostdata
->dev
,
181 pool
->size
* sizeof(*pool
->iu_storage
),
182 pool
->iu_storage
, pool
->iu_token
);
186 * valid_event_struct: - Determines if event is valid.
187 * @pool: event_pool that contains the event
188 * @evt: srp_event_struct to be checked for validity
190 * Returns zero if event is invalid, one otherwise.
192 static int valid_event_struct(struct event_pool
*pool
,
193 struct srp_event_struct
*evt
)
195 int index
= evt
- pool
->events
;
196 if (index
< 0 || index
>= pool
->size
) /* outside of bounds */
198 if (evt
!= pool
->events
+ index
) /* unaligned */
204 * ibmvscsi_free-event_struct: - Changes status of event to "free"
205 * @pool: event_pool that contains the event
206 * @evt: srp_event_struct to be modified
209 static void free_event_struct(struct event_pool
*pool
,
210 struct srp_event_struct
*evt
)
212 if (!valid_event_struct(pool
, evt
)) {
214 "ibmvscsi: Freeing invalid event_struct %p "
215 "(not in pool %p)\n", evt
, pool
->events
);
218 if (atomic_inc_return(&evt
->free
) != 1) {
220 "ibmvscsi: Freeing event_struct %p "
221 "which is not in use!\n", evt
);
227 * get_evt_struct: - Gets the next free event in pool
228 * @pool: event_pool that contains the events to be searched
230 * Returns the next event in "free" state, and NULL if none are free.
231 * Note that no synchronization is done here, we assume the host_lock
232 * will syncrhonze things.
234 static struct srp_event_struct
*get_event_struct(struct event_pool
*pool
)
237 int poolsize
= pool
->size
;
238 int offset
= pool
->next
;
240 for (i
= 0; i
< poolsize
; i
++) {
241 offset
= (offset
+ 1) % poolsize
;
242 if (!atomic_dec_if_positive(&pool
->events
[offset
].free
)) {
244 return &pool
->events
[offset
];
248 printk(KERN_ERR
"ibmvscsi: found no event struct in pool!\n");
253 * init_event_struct: Initialize fields in an event struct that are always
256 * @done: Routine to call when the event is responded to
257 * @format: SRP or MAD format
258 * @timeout: timeout value set in the CRQ
260 static void init_event_struct(struct srp_event_struct
*evt_struct
,
261 void (*done
) (struct srp_event_struct
*),
265 evt_struct
->cmnd
= NULL
;
266 evt_struct
->cmnd_done
= NULL
;
267 evt_struct
->sync_srp
= NULL
;
268 evt_struct
->crq
.format
= format
;
269 evt_struct
->crq
.timeout
= timeout
;
270 evt_struct
->done
= done
;
273 /* ------------------------------------------------------------
274 * Routines for receiving SCSI responses from the hosting partition
278 * set_srp_direction: Set the fields in the srp related to data
279 * direction and number of buffers based on the direction in
280 * the scsi_cmnd and the number of buffers
282 static void set_srp_direction(struct scsi_cmnd
*cmd
,
283 struct srp_cmd
*srp_cmd
,
292 fmt
= SRP_DATA_DESC_DIRECT
;
294 fmt
= SRP_DATA_DESC_INDIRECT
;
295 numbuf
= min(numbuf
, MAX_INDIRECT_BUFS
);
297 if (cmd
->sc_data_direction
== DMA_TO_DEVICE
)
298 srp_cmd
->data_out_desc_cnt
= numbuf
;
300 srp_cmd
->data_in_desc_cnt
= numbuf
;
303 if (cmd
->sc_data_direction
== DMA_TO_DEVICE
)
304 srp_cmd
->buf_fmt
= fmt
<< 4;
306 srp_cmd
->buf_fmt
= fmt
;
309 static void unmap_sg_list(int num_entries
,
311 struct srp_direct_buf
*md
)
315 for (i
= 0; i
< num_entries
; ++i
)
316 dma_unmap_single(dev
, md
[i
].va
, md
[i
].len
, DMA_BIDIRECTIONAL
);
320 * unmap_cmd_data: - Unmap data pointed in srp_cmd based on the format
321 * @cmd: srp_cmd whose additional_data member will be unmapped
322 * @dev: device for which the memory is mapped
325 static void unmap_cmd_data(struct srp_cmd
*cmd
,
326 struct srp_event_struct
*evt_struct
,
331 out_fmt
= cmd
->buf_fmt
>> 4;
332 in_fmt
= cmd
->buf_fmt
& ((1U << 4) - 1);
334 if (out_fmt
== SRP_NO_DATA_DESC
&& in_fmt
== SRP_NO_DATA_DESC
)
336 else if (out_fmt
== SRP_DATA_DESC_DIRECT
||
337 in_fmt
== SRP_DATA_DESC_DIRECT
) {
338 struct srp_direct_buf
*data
=
339 (struct srp_direct_buf
*) cmd
->add_data
;
340 dma_unmap_single(dev
, data
->va
, data
->len
, DMA_BIDIRECTIONAL
);
342 struct srp_indirect_buf
*indirect
=
343 (struct srp_indirect_buf
*) cmd
->add_data
;
344 int num_mapped
= indirect
->table_desc
.len
/
345 sizeof(struct srp_direct_buf
);
347 if (num_mapped
<= MAX_INDIRECT_BUFS
) {
348 unmap_sg_list(num_mapped
, dev
, &indirect
->desc_list
[0]);
352 unmap_sg_list(num_mapped
, dev
, evt_struct
->ext_list
);
356 static int map_sg_list(int num_entries
,
357 struct scatterlist
*sg
,
358 struct srp_direct_buf
*md
)
361 u64 total_length
= 0;
363 for (i
= 0; i
< num_entries
; ++i
) {
364 struct srp_direct_buf
*descr
= md
+ i
;
365 struct scatterlist
*sg_entry
= &sg
[i
];
366 descr
->va
= sg_dma_address(sg_entry
);
367 descr
->len
= sg_dma_len(sg_entry
);
369 total_length
+= sg_dma_len(sg_entry
);
375 * map_sg_data: - Maps dma for a scatterlist and initializes decriptor fields
376 * @cmd: Scsi_Cmnd with the scatterlist
377 * @srp_cmd: srp_cmd that contains the memory descriptor
378 * @dev: device for which to map dma memory
380 * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
381 * Returns 1 on success.
383 static int map_sg_data(struct scsi_cmnd
*cmd
,
384 struct srp_event_struct
*evt_struct
,
385 struct srp_cmd
*srp_cmd
, struct device
*dev
)
389 u64 total_length
= 0;
390 struct scatterlist
*sg
= cmd
->request_buffer
;
391 struct srp_direct_buf
*data
=
392 (struct srp_direct_buf
*) srp_cmd
->add_data
;
393 struct srp_indirect_buf
*indirect
=
394 (struct srp_indirect_buf
*) data
;
396 sg_mapped
= dma_map_sg(dev
, sg
, cmd
->use_sg
, DMA_BIDIRECTIONAL
);
401 set_srp_direction(cmd
, srp_cmd
, sg_mapped
);
403 /* special case; we can use a single direct descriptor */
404 if (sg_mapped
== 1) {
405 data
->va
= sg_dma_address(&sg
[0]);
406 data
->len
= sg_dma_len(&sg
[0]);
411 if (sg_mapped
> SG_ALL
) {
413 "ibmvscsi: More than %d mapped sg entries, got %d\n",
418 indirect
->table_desc
.va
= 0;
419 indirect
->table_desc
.len
= sg_mapped
* sizeof(struct srp_direct_buf
);
420 indirect
->table_desc
.key
= 0;
422 if (sg_mapped
<= MAX_INDIRECT_BUFS
) {
423 total_length
= map_sg_list(sg_mapped
, sg
,
424 &indirect
->desc_list
[0]);
425 indirect
->len
= total_length
;
429 /* get indirect table */
430 if (!evt_struct
->ext_list
) {
431 evt_struct
->ext_list
= (struct srp_direct_buf
*)
432 dma_alloc_coherent(dev
,
433 SG_ALL
* sizeof(struct srp_direct_buf
),
434 &evt_struct
->ext_list_token
, 0);
435 if (!evt_struct
->ext_list
) {
437 "ibmvscsi: Can't allocate memory for indirect table\n");
443 total_length
= map_sg_list(sg_mapped
, sg
, evt_struct
->ext_list
);
445 indirect
->len
= total_length
;
446 indirect
->table_desc
.va
= evt_struct
->ext_list_token
;
447 indirect
->table_desc
.len
= sg_mapped
* sizeof(indirect
->desc_list
[0]);
448 memcpy(indirect
->desc_list
, evt_struct
->ext_list
,
449 MAX_INDIRECT_BUFS
* sizeof(struct srp_direct_buf
));
455 * map_single_data: - Maps memory and initializes memory decriptor fields
456 * @cmd: struct scsi_cmnd with the memory to be mapped
457 * @srp_cmd: srp_cmd that contains the memory descriptor
458 * @dev: device for which to map dma memory
460 * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
461 * Returns 1 on success.
463 static int map_single_data(struct scsi_cmnd
*cmd
,
464 struct srp_cmd
*srp_cmd
, struct device
*dev
)
466 struct srp_direct_buf
*data
=
467 (struct srp_direct_buf
*) srp_cmd
->add_data
;
470 dma_map_single(dev
, cmd
->request_buffer
,
471 cmd
->request_bufflen
,
473 if (dma_mapping_error(data
->va
)) {
475 "ibmvscsi: Unable to map request_buffer for command!\n");
478 data
->len
= cmd
->request_bufflen
;
481 set_srp_direction(cmd
, srp_cmd
, 1);
487 * map_data_for_srp_cmd: - Calls functions to map data for srp cmds
488 * @cmd: struct scsi_cmnd with the memory to be mapped
489 * @srp_cmd: srp_cmd that contains the memory descriptor
490 * @dev: dma device for which to map dma memory
492 * Called by scsi_cmd_to_srp_cmd() when converting scsi cmds to srp cmds
493 * Returns 1 on success.
495 static int map_data_for_srp_cmd(struct scsi_cmnd
*cmd
,
496 struct srp_event_struct
*evt_struct
,
497 struct srp_cmd
*srp_cmd
, struct device
*dev
)
499 switch (cmd
->sc_data_direction
) {
500 case DMA_FROM_DEVICE
:
505 case DMA_BIDIRECTIONAL
:
507 "ibmvscsi: Can't map DMA_BIDIRECTIONAL to read/write\n");
511 "ibmvscsi: Unknown data direction 0x%02x; can't map!\n",
512 cmd
->sc_data_direction
);
516 if (!cmd
->request_buffer
)
519 return map_sg_data(cmd
, evt_struct
, srp_cmd
, dev
);
520 return map_single_data(cmd
, srp_cmd
, dev
);
523 /* ------------------------------------------------------------
524 * Routines for sending and receiving SRPs
527 * ibmvscsi_send_srp_event: - Transforms event to u64 array and calls send_crq()
528 * @evt_struct: evt_struct to be sent
529 * @hostdata: ibmvscsi_host_data of host
531 * Returns the value returned from ibmvscsi_send_crq(). (Zero for success)
532 * Note that this routine assumes that host_lock is held for synchronization
534 static int ibmvscsi_send_srp_event(struct srp_event_struct
*evt_struct
,
535 struct ibmvscsi_host_data
*hostdata
)
537 u64
*crq_as_u64
= (u64
*) &evt_struct
->crq
;
540 /* If we have exhausted our request limit, just fail this request.
541 * Note that there are rare cases involving driver generated requests
542 * (such as task management requests) that the mid layer may think we
543 * can handle more requests (can_queue) when we actually can't
545 if ((evt_struct
->crq
.format
== VIOSRP_SRP_FORMAT
) &&
546 (atomic_dec_if_positive(&hostdata
->request_limit
) < 0))
549 /* Copy the IU into the transfer area */
550 *evt_struct
->xfer_iu
= evt_struct
->iu
;
551 evt_struct
->xfer_iu
->srp
.rsp
.tag
= (u64
)evt_struct
;
553 /* Add this to the sent list. We need to do this
554 * before we actually send
555 * in case it comes back REALLY fast
557 list_add_tail(&evt_struct
->list
, &hostdata
->sent
);
560 ibmvscsi_send_crq(hostdata
, crq_as_u64
[0], crq_as_u64
[1])) != 0) {
561 list_del(&evt_struct
->list
);
563 printk(KERN_ERR
"ibmvscsi: send error %d\n",
571 unmap_cmd_data(&evt_struct
->iu
.srp
.cmd
, evt_struct
, hostdata
->dev
);
573 free_event_struct(&hostdata
->pool
, evt_struct
);
574 return SCSI_MLQUEUE_HOST_BUSY
;
578 * handle_cmd_rsp: - Handle responses from commands
579 * @evt_struct: srp_event_struct to be handled
581 * Used as a callback by when sending scsi cmds.
582 * Gets called by ibmvscsi_handle_crq()
584 static void handle_cmd_rsp(struct srp_event_struct
*evt_struct
)
586 struct srp_rsp
*rsp
= &evt_struct
->xfer_iu
->srp
.rsp
;
587 struct scsi_cmnd
*cmnd
= evt_struct
->cmnd
;
589 if (unlikely(rsp
->opcode
!= SRP_RSP
)) {
590 if (printk_ratelimit())
592 "ibmvscsi: bad SRP RSP type %d\n",
597 cmnd
->result
= rsp
->status
;
598 if (((cmnd
->result
>> 1) & 0x1f) == CHECK_CONDITION
)
599 memcpy(cmnd
->sense_buffer
,
601 rsp
->sense_data_len
);
602 unmap_cmd_data(&evt_struct
->iu
.srp
.cmd
,
604 evt_struct
->hostdata
->dev
);
606 if (rsp
->flags
& SRP_RSP_FLAG_DOOVER
)
607 cmnd
->resid
= rsp
->data_out_res_cnt
;
608 else if (rsp
->flags
& SRP_RSP_FLAG_DIOVER
)
609 cmnd
->resid
= rsp
->data_in_res_cnt
;
612 if (evt_struct
->cmnd_done
)
613 evt_struct
->cmnd_done(cmnd
);
617 * lun_from_dev: - Returns the lun of the scsi device
618 * @dev: struct scsi_device
621 static inline u16
lun_from_dev(struct scsi_device
*dev
)
623 return (0x2 << 14) | (dev
->id
<< 8) | (dev
->channel
<< 5) | dev
->lun
;
627 * ibmvscsi_queue: - The queuecommand function of the scsi template
628 * @cmd: struct scsi_cmnd to be executed
629 * @done: Callback function to be called when cmd is completed
631 static int ibmvscsi_queuecommand(struct scsi_cmnd
*cmnd
,
632 void (*done
) (struct scsi_cmnd
*))
634 struct srp_cmd
*srp_cmd
;
635 struct srp_event_struct
*evt_struct
;
636 struct srp_indirect_buf
*indirect
;
637 struct ibmvscsi_host_data
*hostdata
=
638 (struct ibmvscsi_host_data
*)&cmnd
->device
->host
->hostdata
;
639 u16 lun
= lun_from_dev(cmnd
->device
);
642 evt_struct
= get_event_struct(&hostdata
->pool
);
644 return SCSI_MLQUEUE_HOST_BUSY
;
646 /* Set up the actual SRP IU */
647 srp_cmd
= &evt_struct
->iu
.srp
.cmd
;
648 memset(srp_cmd
, 0x00, SRP_MAX_IU_LEN
);
649 srp_cmd
->opcode
= SRP_CMD
;
650 memcpy(srp_cmd
->cdb
, cmnd
->cmnd
, sizeof(cmnd
->cmnd
));
651 srp_cmd
->lun
= ((u64
) lun
) << 48;
653 if (!map_data_for_srp_cmd(cmnd
, evt_struct
, srp_cmd
, hostdata
->dev
)) {
654 printk(KERN_ERR
"ibmvscsi: couldn't convert cmd to srp_cmd\n");
655 free_event_struct(&hostdata
->pool
, evt_struct
);
656 return SCSI_MLQUEUE_HOST_BUSY
;
659 init_event_struct(evt_struct
,
662 cmnd
->timeout_per_command
/HZ
);
664 evt_struct
->cmnd
= cmnd
;
665 evt_struct
->cmnd_done
= done
;
667 /* Fix up dma address of the buffer itself */
668 indirect
= (struct srp_indirect_buf
*) srp_cmd
->add_data
;
669 out_fmt
= srp_cmd
->buf_fmt
>> 4;
670 in_fmt
= srp_cmd
->buf_fmt
& ((1U << 4) - 1);
671 if ((in_fmt
== SRP_DATA_DESC_INDIRECT
||
672 out_fmt
== SRP_DATA_DESC_INDIRECT
) &&
673 indirect
->table_desc
.va
== 0) {
674 indirect
->table_desc
.va
= evt_struct
->crq
.IU_data_ptr
+
675 offsetof(struct srp_cmd
, add_data
) +
676 offsetof(struct srp_indirect_buf
, desc_list
);
679 return ibmvscsi_send_srp_event(evt_struct
, hostdata
);
682 /* ------------------------------------------------------------
683 * Routines for driver initialization
686 * adapter_info_rsp: - Handle response to MAD adapter info request
687 * @evt_struct: srp_event_struct with the response
689 * Used as a "done" callback by when sending adapter_info. Gets called
690 * by ibmvscsi_handle_crq()
692 static void adapter_info_rsp(struct srp_event_struct
*evt_struct
)
694 struct ibmvscsi_host_data
*hostdata
= evt_struct
->hostdata
;
695 dma_unmap_single(hostdata
->dev
,
696 evt_struct
->iu
.mad
.adapter_info
.buffer
,
697 evt_struct
->iu
.mad
.adapter_info
.common
.length
,
700 if (evt_struct
->xfer_iu
->mad
.adapter_info
.common
.status
) {
701 printk("ibmvscsi: error %d getting adapter info\n",
702 evt_struct
->xfer_iu
->mad
.adapter_info
.common
.status
);
704 printk("ibmvscsi: host srp version: %s, "
705 "host partition %s (%d), OS %d, max io %u\n",
706 hostdata
->madapter_info
.srp_version
,
707 hostdata
->madapter_info
.partition_name
,
708 hostdata
->madapter_info
.partition_number
,
709 hostdata
->madapter_info
.os_type
,
710 hostdata
->madapter_info
.port_max_txu
[0]);
712 if (hostdata
->madapter_info
.port_max_txu
[0])
713 hostdata
->host
->max_sectors
=
714 hostdata
->madapter_info
.port_max_txu
[0] >> 9;
716 if (hostdata
->madapter_info
.os_type
== 3 &&
717 strcmp(hostdata
->madapter_info
.srp_version
, "1.6a") <= 0) {
718 printk("ibmvscsi: host (Ver. %s) doesn't support large"
720 hostdata
->madapter_info
.srp_version
);
721 printk("ibmvscsi: limiting scatterlists to %d\n",
723 hostdata
->host
->sg_tablesize
= MAX_INDIRECT_BUFS
;
729 * send_mad_adapter_info: - Sends the mad adapter info request
730 * and stores the result so it can be retrieved with
731 * sysfs. We COULD consider causing a failure if the
732 * returned SRP version doesn't match ours.
733 * @hostdata: ibmvscsi_host_data of host
735 * Returns zero if successful.
737 static void send_mad_adapter_info(struct ibmvscsi_host_data
*hostdata
)
739 struct viosrp_adapter_info
*req
;
740 struct srp_event_struct
*evt_struct
;
742 evt_struct
= get_event_struct(&hostdata
->pool
);
744 printk(KERN_ERR
"ibmvscsi: couldn't allocate an event "
745 "for ADAPTER_INFO_REQ!\n");
749 init_event_struct(evt_struct
,
754 req
= &evt_struct
->iu
.mad
.adapter_info
;
755 memset(req
, 0x00, sizeof(*req
));
757 req
->common
.type
= VIOSRP_ADAPTER_INFO_TYPE
;
758 req
->common
.length
= sizeof(hostdata
->madapter_info
);
759 req
->buffer
= dma_map_single(hostdata
->dev
,
760 &hostdata
->madapter_info
,
761 sizeof(hostdata
->madapter_info
),
764 if (dma_mapping_error(req
->buffer
)) {
766 "ibmvscsi: Unable to map request_buffer "
767 "for adapter_info!\n");
768 free_event_struct(&hostdata
->pool
, evt_struct
);
772 if (ibmvscsi_send_srp_event(evt_struct
, hostdata
))
773 printk(KERN_ERR
"ibmvscsi: couldn't send ADAPTER_INFO_REQ!\n");
777 * login_rsp: - Handle response to SRP login request
778 * @evt_struct: srp_event_struct with the response
780 * Used as a "done" callback by when sending srp_login. Gets called
781 * by ibmvscsi_handle_crq()
783 static void login_rsp(struct srp_event_struct
*evt_struct
)
785 struct ibmvscsi_host_data
*hostdata
= evt_struct
->hostdata
;
786 switch (evt_struct
->xfer_iu
->srp
.login_rsp
.opcode
) {
787 case SRP_LOGIN_RSP
: /* it worked! */
789 case SRP_LOGIN_REJ
: /* refused! */
790 printk(KERN_INFO
"ibmvscsi: SRP_LOGIN_REJ reason %u\n",
791 evt_struct
->xfer_iu
->srp
.login_rej
.reason
);
793 atomic_set(&hostdata
->request_limit
, -1);
797 "ibmvscsi: Invalid login response typecode 0x%02x!\n",
798 evt_struct
->xfer_iu
->srp
.login_rsp
.opcode
);
800 atomic_set(&hostdata
->request_limit
, -1);
804 printk(KERN_INFO
"ibmvscsi: SRP_LOGIN succeeded\n");
806 if (evt_struct
->xfer_iu
->srp
.login_rsp
.req_lim_delta
>
808 evt_struct
->xfer_iu
->srp
.login_rsp
.req_lim_delta
=
811 /* Now we know what the real request-limit is */
812 atomic_set(&hostdata
->request_limit
,
813 evt_struct
->xfer_iu
->srp
.login_rsp
.req_lim_delta
);
815 hostdata
->host
->can_queue
=
816 evt_struct
->xfer_iu
->srp
.login_rsp
.req_lim_delta
- 2;
818 if (hostdata
->host
->can_queue
< 1) {
819 printk(KERN_ERR
"ibmvscsi: Invalid request_limit_delta\n");
823 /* If we had any pending I/Os, kick them */
824 scsi_unblock_requests(hostdata
->host
);
826 send_mad_adapter_info(hostdata
);
831 * send_srp_login: - Sends the srp login
832 * @hostdata: ibmvscsi_host_data of host
834 * Returns zero if successful.
836 static int send_srp_login(struct ibmvscsi_host_data
*hostdata
)
840 struct srp_login_req
*login
;
841 struct srp_event_struct
*evt_struct
= get_event_struct(&hostdata
->pool
);
844 "ibmvscsi: couldn't allocate an event for login req!\n");
848 init_event_struct(evt_struct
,
853 login
= &evt_struct
->iu
.srp
.login_req
;
854 memset(login
, 0x00, sizeof(struct srp_login_req
));
855 login
->opcode
= SRP_LOGIN_REQ
;
856 login
->req_it_iu_len
= sizeof(union srp_iu
);
857 login
->req_buf_fmt
= SRP_BUF_FORMAT_DIRECT
| SRP_BUF_FORMAT_INDIRECT
;
859 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
860 /* Start out with a request limit of 1, since this is negotiated in
861 * the login request we are just sending
863 atomic_set(&hostdata
->request_limit
, 1);
865 rc
= ibmvscsi_send_srp_event(evt_struct
, hostdata
);
866 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
867 printk("ibmvscsic: sent SRP login\n");
872 * sync_completion: Signal that a synchronous command has completed
873 * Note that after returning from this call, the evt_struct is freed.
874 * the caller waiting on this completion shouldn't touch the evt_struct
877 static void sync_completion(struct srp_event_struct
*evt_struct
)
879 /* copy the response back */
880 if (evt_struct
->sync_srp
)
881 *evt_struct
->sync_srp
= *evt_struct
->xfer_iu
;
883 complete(&evt_struct
->comp
);
887 * ibmvscsi_abort: Abort a command...from scsi host template
888 * send this over to the server and wait synchronously for the response
890 static int ibmvscsi_eh_abort_handler(struct scsi_cmnd
*cmd
)
892 struct ibmvscsi_host_data
*hostdata
=
893 (struct ibmvscsi_host_data
*)cmd
->device
->host
->hostdata
;
894 struct srp_tsk_mgmt
*tsk_mgmt
;
895 struct srp_event_struct
*evt
;
896 struct srp_event_struct
*tmp_evt
, *found_evt
;
897 union viosrp_iu srp_rsp
;
900 u16 lun
= lun_from_dev(cmd
->device
);
902 /* First, find this command in our sent list so we can figure
903 * out the correct tag
905 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
907 list_for_each_entry(tmp_evt
, &hostdata
->sent
, list
) {
908 if (tmp_evt
->cmnd
== cmd
) {
915 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
919 evt
= get_event_struct(&hostdata
->pool
);
921 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
922 printk(KERN_ERR
"ibmvscsi: failed to allocate abort event\n");
926 init_event_struct(evt
,
931 tsk_mgmt
= &evt
->iu
.srp
.tsk_mgmt
;
933 /* Set up an abort SRP command */
934 memset(tsk_mgmt
, 0x00, sizeof(*tsk_mgmt
));
935 tsk_mgmt
->opcode
= SRP_TSK_MGMT
;
936 tsk_mgmt
->lun
= ((u64
) lun
) << 48;
937 tsk_mgmt
->tsk_mgmt_func
= SRP_TSK_ABORT_TASK
;
938 tsk_mgmt
->task_tag
= (u64
) found_evt
;
940 printk(KERN_INFO
"ibmvscsi: aborting command. lun 0x%lx, tag 0x%lx\n",
941 tsk_mgmt
->lun
, tsk_mgmt
->task_tag
);
943 evt
->sync_srp
= &srp_rsp
;
944 init_completion(&evt
->comp
);
945 rsp_rc
= ibmvscsi_send_srp_event(evt
, hostdata
);
946 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
948 printk(KERN_ERR
"ibmvscsi: failed to send abort() event\n");
952 wait_for_completion(&evt
->comp
);
954 /* make sure we got a good response */
955 if (unlikely(srp_rsp
.srp
.rsp
.opcode
!= SRP_RSP
)) {
956 if (printk_ratelimit())
958 "ibmvscsi: abort bad SRP RSP type %d\n",
959 srp_rsp
.srp
.rsp
.opcode
);
963 if (srp_rsp
.srp
.rsp
.flags
& SRP_RSP_FLAG_RSPVALID
)
964 rsp_rc
= *((int *)srp_rsp
.srp
.rsp
.data
);
966 rsp_rc
= srp_rsp
.srp
.rsp
.status
;
969 if (printk_ratelimit())
971 "ibmvscsi: abort code %d for task tag 0x%lx\n",
977 /* Because we dropped the spinlock above, it's possible
978 * The event is no longer in our list. Make sure it didn't
979 * complete while we were aborting
981 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
983 list_for_each_entry(tmp_evt
, &hostdata
->sent
, list
) {
984 if (tmp_evt
->cmnd
== cmd
) {
990 if (found_evt
== NULL
) {
991 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
993 "ibmvscsi: aborted task tag 0x%lx completed\n",
999 "ibmvscsi: successfully aborted task tag 0x%lx\n",
1000 tsk_mgmt
->task_tag
);
1002 cmd
->result
= (DID_ABORT
<< 16);
1003 list_del(&found_evt
->list
);
1004 unmap_cmd_data(&found_evt
->iu
.srp
.cmd
, found_evt
,
1005 found_evt
->hostdata
->dev
);
1006 free_event_struct(&found_evt
->hostdata
->pool
, found_evt
);
1007 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1008 atomic_inc(&hostdata
->request_limit
);
1013 * ibmvscsi_eh_device_reset_handler: Reset a single LUN...from scsi host
1014 * template send this over to the server and wait synchronously for the
1017 static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd
*cmd
)
1019 struct ibmvscsi_host_data
*hostdata
=
1020 (struct ibmvscsi_host_data
*)cmd
->device
->host
->hostdata
;
1022 struct srp_tsk_mgmt
*tsk_mgmt
;
1023 struct srp_event_struct
*evt
;
1024 struct srp_event_struct
*tmp_evt
, *pos
;
1025 union viosrp_iu srp_rsp
;
1027 unsigned long flags
;
1028 u16 lun
= lun_from_dev(cmd
->device
);
1030 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1031 evt
= get_event_struct(&hostdata
->pool
);
1033 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1034 printk(KERN_ERR
"ibmvscsi: failed to allocate reset event\n");
1038 init_event_struct(evt
,
1043 tsk_mgmt
= &evt
->iu
.srp
.tsk_mgmt
;
1045 /* Set up a lun reset SRP command */
1046 memset(tsk_mgmt
, 0x00, sizeof(*tsk_mgmt
));
1047 tsk_mgmt
->opcode
= SRP_TSK_MGMT
;
1048 tsk_mgmt
->lun
= ((u64
) lun
) << 48;
1049 tsk_mgmt
->tsk_mgmt_func
= SRP_TSK_LUN_RESET
;
1051 printk(KERN_INFO
"ibmvscsi: resetting device. lun 0x%lx\n",
1054 evt
->sync_srp
= &srp_rsp
;
1055 init_completion(&evt
->comp
);
1056 rsp_rc
= ibmvscsi_send_srp_event(evt
, hostdata
);
1057 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1059 printk(KERN_ERR
"ibmvscsi: failed to send reset event\n");
1063 wait_for_completion(&evt
->comp
);
1065 /* make sure we got a good response */
1066 if (unlikely(srp_rsp
.srp
.rsp
.opcode
!= SRP_RSP
)) {
1067 if (printk_ratelimit())
1069 "ibmvscsi: reset bad SRP RSP type %d\n",
1070 srp_rsp
.srp
.rsp
.opcode
);
1074 if (srp_rsp
.srp
.rsp
.flags
& SRP_RSP_FLAG_RSPVALID
)
1075 rsp_rc
= *((int *)srp_rsp
.srp
.rsp
.data
);
1077 rsp_rc
= srp_rsp
.srp
.rsp
.status
;
1080 if (printk_ratelimit())
1082 "ibmvscsi: reset code %d for task tag 0x%lx\n",
1083 rsp_rc
, tsk_mgmt
->task_tag
);
1087 /* We need to find all commands for this LUN that have not yet been
1088 * responded to, and fail them with DID_RESET
1090 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1091 list_for_each_entry_safe(tmp_evt
, pos
, &hostdata
->sent
, list
) {
1092 if ((tmp_evt
->cmnd
) && (tmp_evt
->cmnd
->device
== cmd
->device
)) {
1094 tmp_evt
->cmnd
->result
= (DID_RESET
<< 16);
1095 list_del(&tmp_evt
->list
);
1096 unmap_cmd_data(&tmp_evt
->iu
.srp
.cmd
, tmp_evt
,
1097 tmp_evt
->hostdata
->dev
);
1098 free_event_struct(&tmp_evt
->hostdata
->pool
,
1100 atomic_inc(&hostdata
->request_limit
);
1101 if (tmp_evt
->cmnd_done
)
1102 tmp_evt
->cmnd_done(tmp_evt
->cmnd
);
1103 else if (tmp_evt
->done
)
1104 tmp_evt
->done(tmp_evt
);
1107 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1112 * purge_requests: Our virtual adapter just shut down. purge any sent requests
1113 * @hostdata: the adapter
1115 static void purge_requests(struct ibmvscsi_host_data
*hostdata
, int error_code
)
1117 struct srp_event_struct
*tmp_evt
, *pos
;
1118 unsigned long flags
;
1120 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1121 list_for_each_entry_safe(tmp_evt
, pos
, &hostdata
->sent
, list
) {
1122 list_del(&tmp_evt
->list
);
1123 if (tmp_evt
->cmnd
) {
1124 tmp_evt
->cmnd
->result
= (error_code
<< 16);
1125 unmap_cmd_data(&tmp_evt
->iu
.srp
.cmd
,
1127 tmp_evt
->hostdata
->dev
);
1128 if (tmp_evt
->cmnd_done
)
1129 tmp_evt
->cmnd_done(tmp_evt
->cmnd
);
1131 if (tmp_evt
->done
) {
1132 tmp_evt
->done(tmp_evt
);
1135 free_event_struct(&tmp_evt
->hostdata
->pool
, tmp_evt
);
1137 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1141 * ibmvscsi_handle_crq: - Handles and frees received events in the CRQ
1142 * @crq: Command/Response queue
1143 * @hostdata: ibmvscsi_host_data of host
1146 void ibmvscsi_handle_crq(struct viosrp_crq
*crq
,
1147 struct ibmvscsi_host_data
*hostdata
)
1149 unsigned long flags
;
1150 struct srp_event_struct
*evt_struct
=
1151 (struct srp_event_struct
*)crq
->IU_data_ptr
;
1152 switch (crq
->valid
) {
1153 case 0xC0: /* initialization */
1154 switch (crq
->format
) {
1155 case 0x01: /* Initialization message */
1156 printk(KERN_INFO
"ibmvscsi: partner initialized\n");
1157 /* Send back a response */
1158 if (ibmvscsi_send_crq(hostdata
,
1159 0xC002000000000000LL
, 0) == 0) {
1161 send_srp_login(hostdata
);
1164 "ibmvscsi: Unable to send init rsp\n");
1168 case 0x02: /* Initialization response */
1170 "ibmvscsi: partner initialization complete\n");
1173 send_srp_login(hostdata
);
1176 printk(KERN_ERR
"ibmvscsi: unknown crq message type\n");
1179 case 0xFF: /* Hypervisor telling us the connection is closed */
1180 scsi_block_requests(hostdata
->host
);
1181 if (crq
->format
== 0x06) {
1182 /* We need to re-setup the interpartition connection */
1184 "ibmvscsi: Re-enabling adapter!\n");
1185 atomic_set(&hostdata
->request_limit
, -1);
1186 purge_requests(hostdata
, DID_REQUEUE
);
1187 if (ibmvscsi_reenable_crq_queue(&hostdata
->queue
,
1189 if (ibmvscsi_send_crq(hostdata
,
1190 0xC001000000000000LL
, 0))
1192 "ibmvscsi: transmit error after"
1196 "ibmvscsi: Virtual adapter failed rc %d!\n",
1199 atomic_set(&hostdata
->request_limit
, -1);
1200 purge_requests(hostdata
, DID_ERROR
);
1201 ibmvscsi_reset_crq_queue(&hostdata
->queue
, hostdata
);
1203 scsi_unblock_requests(hostdata
->host
);
1205 case 0x80: /* real payload */
1209 "ibmvscsi: got an invalid message type 0x%02x\n",
1214 /* The only kind of payload CRQs we should get are responses to
1215 * things we send. Make sure this response is to something we
1218 if (!valid_event_struct(&hostdata
->pool
, evt_struct
)) {
1220 "ibmvscsi: returned correlation_token 0x%p is invalid!\n",
1221 (void *)crq
->IU_data_ptr
);
1225 if (atomic_read(&evt_struct
->free
)) {
1227 "ibmvscsi: received duplicate correlation_token 0x%p!\n",
1228 (void *)crq
->IU_data_ptr
);
1232 if (crq
->format
== VIOSRP_SRP_FORMAT
)
1233 atomic_add(evt_struct
->xfer_iu
->srp
.rsp
.req_lim_delta
,
1234 &hostdata
->request_limit
);
1236 if (evt_struct
->done
)
1237 evt_struct
->done(evt_struct
);
1240 "ibmvscsi: returned done() is NULL; not running it!\n");
1243 * Lock the host_lock before messing with these structures, since we
1244 * are running in a task context
1246 spin_lock_irqsave(evt_struct
->hostdata
->host
->host_lock
, flags
);
1247 list_del(&evt_struct
->list
);
1248 free_event_struct(&evt_struct
->hostdata
->pool
, evt_struct
);
1249 spin_unlock_irqrestore(evt_struct
->hostdata
->host
->host_lock
, flags
);
1253 * ibmvscsi_get_host_config: Send the command to the server to get host
1254 * configuration data. The data is opaque to us.
1256 static int ibmvscsi_do_host_config(struct ibmvscsi_host_data
*hostdata
,
1257 unsigned char *buffer
, int length
)
1259 struct viosrp_host_config
*host_config
;
1260 struct srp_event_struct
*evt_struct
;
1263 evt_struct
= get_event_struct(&hostdata
->pool
);
1266 "ibmvscsi: could't allocate event for HOST_CONFIG!\n");
1270 init_event_struct(evt_struct
,
1275 host_config
= &evt_struct
->iu
.mad
.host_config
;
1277 /* Set up a lun reset SRP command */
1278 memset(host_config
, 0x00, sizeof(*host_config
));
1279 host_config
->common
.type
= VIOSRP_HOST_CONFIG_TYPE
;
1280 host_config
->common
.length
= length
;
1281 host_config
->buffer
= dma_map_single(hostdata
->dev
, buffer
, length
,
1284 if (dma_mapping_error(host_config
->buffer
)) {
1286 "ibmvscsi: dma_mapping error " "getting host config\n");
1287 free_event_struct(&hostdata
->pool
, evt_struct
);
1291 init_completion(&evt_struct
->comp
);
1292 rc
= ibmvscsi_send_srp_event(evt_struct
, hostdata
);
1294 wait_for_completion(&evt_struct
->comp
);
1295 dma_unmap_single(hostdata
->dev
, host_config
->buffer
,
1296 length
, DMA_BIDIRECTIONAL
);
1302 /* ------------------------------------------------------------
1305 static ssize_t
show_host_srp_version(struct class_device
*class_dev
, char *buf
)
1307 struct Scsi_Host
*shost
= class_to_shost(class_dev
);
1308 struct ibmvscsi_host_data
*hostdata
=
1309 (struct ibmvscsi_host_data
*)shost
->hostdata
;
1312 len
= snprintf(buf
, PAGE_SIZE
, "%s\n",
1313 hostdata
->madapter_info
.srp_version
);
1317 static struct class_device_attribute ibmvscsi_host_srp_version
= {
1319 .name
= "srp_version",
1322 .show
= show_host_srp_version
,
1325 static ssize_t
show_host_partition_name(struct class_device
*class_dev
,
1328 struct Scsi_Host
*shost
= class_to_shost(class_dev
);
1329 struct ibmvscsi_host_data
*hostdata
=
1330 (struct ibmvscsi_host_data
*)shost
->hostdata
;
1333 len
= snprintf(buf
, PAGE_SIZE
, "%s\n",
1334 hostdata
->madapter_info
.partition_name
);
1338 static struct class_device_attribute ibmvscsi_host_partition_name
= {
1340 .name
= "partition_name",
1343 .show
= show_host_partition_name
,
1346 static ssize_t
show_host_partition_number(struct class_device
*class_dev
,
1349 struct Scsi_Host
*shost
= class_to_shost(class_dev
);
1350 struct ibmvscsi_host_data
*hostdata
=
1351 (struct ibmvscsi_host_data
*)shost
->hostdata
;
1354 len
= snprintf(buf
, PAGE_SIZE
, "%d\n",
1355 hostdata
->madapter_info
.partition_number
);
1359 static struct class_device_attribute ibmvscsi_host_partition_number
= {
1361 .name
= "partition_number",
1364 .show
= show_host_partition_number
,
1367 static ssize_t
show_host_mad_version(struct class_device
*class_dev
, char *buf
)
1369 struct Scsi_Host
*shost
= class_to_shost(class_dev
);
1370 struct ibmvscsi_host_data
*hostdata
=
1371 (struct ibmvscsi_host_data
*)shost
->hostdata
;
1374 len
= snprintf(buf
, PAGE_SIZE
, "%d\n",
1375 hostdata
->madapter_info
.mad_version
);
1379 static struct class_device_attribute ibmvscsi_host_mad_version
= {
1381 .name
= "mad_version",
1384 .show
= show_host_mad_version
,
1387 static ssize_t
show_host_os_type(struct class_device
*class_dev
, char *buf
)
1389 struct Scsi_Host
*shost
= class_to_shost(class_dev
);
1390 struct ibmvscsi_host_data
*hostdata
=
1391 (struct ibmvscsi_host_data
*)shost
->hostdata
;
1394 len
= snprintf(buf
, PAGE_SIZE
, "%d\n", hostdata
->madapter_info
.os_type
);
1398 static struct class_device_attribute ibmvscsi_host_os_type
= {
1403 .show
= show_host_os_type
,
1406 static ssize_t
show_host_config(struct class_device
*class_dev
, char *buf
)
1408 struct Scsi_Host
*shost
= class_to_shost(class_dev
);
1409 struct ibmvscsi_host_data
*hostdata
=
1410 (struct ibmvscsi_host_data
*)shost
->hostdata
;
1412 /* returns null-terminated host config data */
1413 if (ibmvscsi_do_host_config(hostdata
, buf
, PAGE_SIZE
) == 0)
1419 static struct class_device_attribute ibmvscsi_host_config
= {
1424 .show
= show_host_config
,
1427 static struct class_device_attribute
*ibmvscsi_attrs
[] = {
1428 &ibmvscsi_host_srp_version
,
1429 &ibmvscsi_host_partition_name
,
1430 &ibmvscsi_host_partition_number
,
1431 &ibmvscsi_host_mad_version
,
1432 &ibmvscsi_host_os_type
,
1433 &ibmvscsi_host_config
,
1437 /* ------------------------------------------------------------
1438 * SCSI driver registration
1440 static struct scsi_host_template driver_template
= {
1441 .module
= THIS_MODULE
,
1442 .name
= "IBM POWER Virtual SCSI Adapter " IBMVSCSI_VERSION
,
1443 .proc_name
= "ibmvscsi",
1444 .queuecommand
= ibmvscsi_queuecommand
,
1445 .eh_abort_handler
= ibmvscsi_eh_abort_handler
,
1446 .eh_device_reset_handler
= ibmvscsi_eh_device_reset_handler
,
1448 .can_queue
= 1, /* Updated after SRP_LOGIN */
1450 .sg_tablesize
= SG_ALL
,
1451 .use_clustering
= ENABLE_CLUSTERING
,
1452 .shost_attrs
= ibmvscsi_attrs
,
1456 * Called by bus code for each adapter
1458 static int ibmvscsi_probe(struct vio_dev
*vdev
, const struct vio_device_id
*id
)
1460 struct ibmvscsi_host_data
*hostdata
;
1461 struct Scsi_Host
*host
;
1462 struct device
*dev
= &vdev
->dev
;
1463 unsigned long wait_switch
= 0;
1465 vdev
->dev
.driver_data
= NULL
;
1467 host
= scsi_host_alloc(&driver_template
, sizeof(*hostdata
));
1469 printk(KERN_ERR
"ibmvscsi: couldn't allocate host data\n");
1470 goto scsi_host_alloc_failed
;
1473 hostdata
= (struct ibmvscsi_host_data
*)host
->hostdata
;
1474 memset(hostdata
, 0x00, sizeof(*hostdata
));
1475 INIT_LIST_HEAD(&hostdata
->sent
);
1476 hostdata
->host
= host
;
1477 hostdata
->dev
= dev
;
1478 atomic_set(&hostdata
->request_limit
, -1);
1479 hostdata
->host
->max_sectors
= 32 * 8; /* default max I/O 32 pages */
1481 if (ibmvscsi_init_crq_queue(&hostdata
->queue
, hostdata
,
1482 max_requests
) != 0) {
1483 printk(KERN_ERR
"ibmvscsi: couldn't initialize crq\n");
1484 goto init_crq_failed
;
1486 if (initialize_event_pool(&hostdata
->pool
, max_requests
, hostdata
) != 0) {
1487 printk(KERN_ERR
"ibmvscsi: couldn't initialize event pool\n");
1488 goto init_pool_failed
;
1492 host
->max_id
= max_id
;
1493 host
->max_channel
= max_channel
;
1495 if (scsi_add_host(hostdata
->host
, hostdata
->dev
))
1496 goto add_host_failed
;
1498 /* Try to send an initialization message. Note that this is allowed
1499 * to fail if the other end is not acive. In that case we don't
1502 if (ibmvscsi_send_crq(hostdata
, 0xC001000000000000LL
, 0) == 0) {
1504 * Wait around max init_timeout secs for the adapter to finish
1505 * initializing. When we are done initializing, we will have a
1506 * valid request_limit. We don't want Linux scanning before
1509 for (wait_switch
= jiffies
+ (init_timeout
* HZ
);
1510 time_before(jiffies
, wait_switch
) &&
1511 atomic_read(&hostdata
->request_limit
) < 2;) {
1516 /* if we now have a valid request_limit, initiate a scan */
1517 if (atomic_read(&hostdata
->request_limit
) > 0)
1518 scsi_scan_host(host
);
1521 vdev
->dev
.driver_data
= hostdata
;
1525 release_event_pool(&hostdata
->pool
, hostdata
);
1527 ibmvscsi_release_crq_queue(&hostdata
->queue
, hostdata
, max_requests
);
1529 scsi_host_put(host
);
1530 scsi_host_alloc_failed
:
1534 static int ibmvscsi_remove(struct vio_dev
*vdev
)
1536 struct ibmvscsi_host_data
*hostdata
= vdev
->dev
.driver_data
;
1537 release_event_pool(&hostdata
->pool
, hostdata
);
1538 ibmvscsi_release_crq_queue(&hostdata
->queue
, hostdata
,
1541 scsi_remove_host(hostdata
->host
);
1542 scsi_host_put(hostdata
->host
);
1548 * ibmvscsi_device_table: Used by vio.c to match devices in the device tree we
1551 static struct vio_device_id ibmvscsi_device_table
[] __devinitdata
= {
1552 {"vscsi", "IBM,v-scsi"},
1555 MODULE_DEVICE_TABLE(vio
, ibmvscsi_device_table
);
1557 static struct vio_driver ibmvscsi_driver
= {
1558 .id_table
= ibmvscsi_device_table
,
1559 .probe
= ibmvscsi_probe
,
1560 .remove
= ibmvscsi_remove
,
1563 .owner
= THIS_MODULE
,
1567 int __init
ibmvscsi_module_init(void)
1569 return vio_register_driver(&ibmvscsi_driver
);
1572 void __exit
ibmvscsi_module_exit(void)
1574 vio_unregister_driver(&ibmvscsi_driver
);
1577 module_init(ibmvscsi_module_init
);
1578 module_exit(ibmvscsi_module_exit
);