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 <asm/firmware.h>
76 #include <scsi/scsi.h>
77 #include <scsi/scsi_cmnd.h>
78 #include <scsi/scsi_host.h>
79 #include <scsi/scsi_device.h>
80 #include <scsi/scsi_transport_srp.h>
83 /* The values below are somewhat arbitrary default values, but
84 * OS/400 will use 3 busses (disks, CDs, tapes, I think.)
85 * Note that there are 3 bits of channel value, 6 bits of id, and
88 static int max_id
= 64;
89 static int max_channel
= 3;
90 static int init_timeout
= 300;
91 static int login_timeout
= 60;
92 static int info_timeout
= 30;
93 static int abort_timeout
= 60;
94 static int reset_timeout
= 60;
95 static int max_requests
= IBMVSCSI_MAX_REQUESTS_DEFAULT
;
96 static int max_events
= IBMVSCSI_MAX_REQUESTS_DEFAULT
+ 2;
97 static int fast_fail
= 1;
98 static int client_reserve
= 1;
100 static struct scsi_transport_template
*ibmvscsi_transport_template
;
102 #define IBMVSCSI_VERSION "1.5.8"
104 static struct ibmvscsi_ops
*ibmvscsi_ops
;
106 MODULE_DESCRIPTION("IBM Virtual SCSI");
107 MODULE_AUTHOR("Dave Boutcher");
108 MODULE_LICENSE("GPL");
109 MODULE_VERSION(IBMVSCSI_VERSION
);
111 module_param_named(max_id
, max_id
, int, S_IRUGO
| S_IWUSR
);
112 MODULE_PARM_DESC(max_id
, "Largest ID value for each channel");
113 module_param_named(max_channel
, max_channel
, int, S_IRUGO
| S_IWUSR
);
114 MODULE_PARM_DESC(max_channel
, "Largest channel value");
115 module_param_named(init_timeout
, init_timeout
, int, S_IRUGO
| S_IWUSR
);
116 MODULE_PARM_DESC(init_timeout
, "Initialization timeout in seconds");
117 module_param_named(max_requests
, max_requests
, int, S_IRUGO
);
118 MODULE_PARM_DESC(max_requests
, "Maximum requests for this adapter");
119 module_param_named(fast_fail
, fast_fail
, int, S_IRUGO
| S_IWUSR
);
120 MODULE_PARM_DESC(fast_fail
, "Enable fast fail. [Default=1]");
121 module_param_named(client_reserve
, client_reserve
, int, S_IRUGO
);
122 MODULE_PARM_DESC(client_reserve
, "Attempt client managed reserve/release");
124 /* ------------------------------------------------------------
125 * Routines for the event pool and event structs
128 * initialize_event_pool: - Allocates and initializes the event pool for a host
129 * @pool: event_pool to be initialized
130 * @size: Number of events in pool
131 * @hostdata: ibmvscsi_host_data who owns the event pool
133 * Returns zero on success.
135 static int initialize_event_pool(struct event_pool
*pool
,
136 int size
, struct ibmvscsi_host_data
*hostdata
)
142 pool
->events
= kcalloc(pool
->size
, sizeof(*pool
->events
), GFP_KERNEL
);
147 dma_alloc_coherent(hostdata
->dev
,
148 pool
->size
* sizeof(*pool
->iu_storage
),
150 if (!pool
->iu_storage
) {
155 for (i
= 0; i
< pool
->size
; ++i
) {
156 struct srp_event_struct
*evt
= &pool
->events
[i
];
157 memset(&evt
->crq
, 0x00, sizeof(evt
->crq
));
158 atomic_set(&evt
->free
, 1);
159 evt
->crq
.valid
= 0x80;
160 evt
->crq
.IU_length
= sizeof(*evt
->xfer_iu
);
161 evt
->crq
.IU_data_ptr
= pool
->iu_token
+
162 sizeof(*evt
->xfer_iu
) * i
;
163 evt
->xfer_iu
= pool
->iu_storage
+ i
;
164 evt
->hostdata
= hostdata
;
165 evt
->ext_list
= NULL
;
166 evt
->ext_list_token
= 0;
173 * release_event_pool: - Frees memory of an event pool of a host
174 * @pool: event_pool to be released
175 * @hostdata: ibmvscsi_host_data who owns the even pool
177 * Returns zero on success.
179 static void release_event_pool(struct event_pool
*pool
,
180 struct ibmvscsi_host_data
*hostdata
)
183 for (i
= 0; i
< pool
->size
; ++i
) {
184 if (atomic_read(&pool
->events
[i
].free
) != 1)
186 if (pool
->events
[i
].ext_list
) {
187 dma_free_coherent(hostdata
->dev
,
188 SG_ALL
* sizeof(struct srp_direct_buf
),
189 pool
->events
[i
].ext_list
,
190 pool
->events
[i
].ext_list_token
);
194 dev_warn(hostdata
->dev
, "releasing event pool with %d "
195 "events still in use?\n", in_use
);
197 dma_free_coherent(hostdata
->dev
,
198 pool
->size
* sizeof(*pool
->iu_storage
),
199 pool
->iu_storage
, pool
->iu_token
);
203 * valid_event_struct: - Determines if event is valid.
204 * @pool: event_pool that contains the event
205 * @evt: srp_event_struct to be checked for validity
207 * Returns zero if event is invalid, one otherwise.
209 static int valid_event_struct(struct event_pool
*pool
,
210 struct srp_event_struct
*evt
)
212 int index
= evt
- pool
->events
;
213 if (index
< 0 || index
>= pool
->size
) /* outside of bounds */
215 if (evt
!= pool
->events
+ index
) /* unaligned */
221 * ibmvscsi_free-event_struct: - Changes status of event to "free"
222 * @pool: event_pool that contains the event
223 * @evt: srp_event_struct to be modified
226 static void free_event_struct(struct event_pool
*pool
,
227 struct srp_event_struct
*evt
)
229 if (!valid_event_struct(pool
, evt
)) {
230 dev_err(evt
->hostdata
->dev
, "Freeing invalid event_struct %p "
231 "(not in pool %p)\n", evt
, pool
->events
);
234 if (atomic_inc_return(&evt
->free
) != 1) {
235 dev_err(evt
->hostdata
->dev
, "Freeing event_struct %p "
236 "which is not in use!\n", evt
);
242 * get_evt_struct: - Gets the next free event in pool
243 * @pool: event_pool that contains the events to be searched
245 * Returns the next event in "free" state, and NULL if none are free.
246 * Note that no synchronization is done here, we assume the host_lock
247 * will syncrhonze things.
249 static struct srp_event_struct
*get_event_struct(struct event_pool
*pool
)
252 int poolsize
= pool
->size
;
253 int offset
= pool
->next
;
255 for (i
= 0; i
< poolsize
; i
++) {
256 offset
= (offset
+ 1) % poolsize
;
257 if (!atomic_dec_if_positive(&pool
->events
[offset
].free
)) {
259 return &pool
->events
[offset
];
263 printk(KERN_ERR
"ibmvscsi: found no event struct in pool!\n");
268 * init_event_struct: Initialize fields in an event struct that are always
271 * @done: Routine to call when the event is responded to
272 * @format: SRP or MAD format
273 * @timeout: timeout value set in the CRQ
275 static void init_event_struct(struct srp_event_struct
*evt_struct
,
276 void (*done
) (struct srp_event_struct
*),
280 evt_struct
->cmnd
= NULL
;
281 evt_struct
->cmnd_done
= NULL
;
282 evt_struct
->sync_srp
= NULL
;
283 evt_struct
->crq
.format
= format
;
284 evt_struct
->crq
.timeout
= timeout
;
285 evt_struct
->done
= done
;
288 /* ------------------------------------------------------------
289 * Routines for receiving SCSI responses from the hosting partition
293 * set_srp_direction: Set the fields in the srp related to data
294 * direction and number of buffers based on the direction in
295 * the scsi_cmnd and the number of buffers
297 static void set_srp_direction(struct scsi_cmnd
*cmd
,
298 struct srp_cmd
*srp_cmd
,
307 fmt
= SRP_DATA_DESC_DIRECT
;
309 fmt
= SRP_DATA_DESC_INDIRECT
;
310 numbuf
= min(numbuf
, MAX_INDIRECT_BUFS
);
312 if (cmd
->sc_data_direction
== DMA_TO_DEVICE
)
313 srp_cmd
->data_out_desc_cnt
= numbuf
;
315 srp_cmd
->data_in_desc_cnt
= numbuf
;
318 if (cmd
->sc_data_direction
== DMA_TO_DEVICE
)
319 srp_cmd
->buf_fmt
= fmt
<< 4;
321 srp_cmd
->buf_fmt
= fmt
;
324 static void unmap_sg_list(int num_entries
,
326 struct srp_direct_buf
*md
)
330 for (i
= 0; i
< num_entries
; ++i
)
331 dma_unmap_single(dev
, md
[i
].va
, md
[i
].len
, DMA_BIDIRECTIONAL
);
335 * unmap_cmd_data: - Unmap data pointed in srp_cmd based on the format
336 * @cmd: srp_cmd whose additional_data member will be unmapped
337 * @dev: device for which the memory is mapped
340 static void unmap_cmd_data(struct srp_cmd
*cmd
,
341 struct srp_event_struct
*evt_struct
,
346 out_fmt
= cmd
->buf_fmt
>> 4;
347 in_fmt
= cmd
->buf_fmt
& ((1U << 4) - 1);
349 if (out_fmt
== SRP_NO_DATA_DESC
&& in_fmt
== SRP_NO_DATA_DESC
)
351 else if (out_fmt
== SRP_DATA_DESC_DIRECT
||
352 in_fmt
== SRP_DATA_DESC_DIRECT
) {
353 struct srp_direct_buf
*data
=
354 (struct srp_direct_buf
*) cmd
->add_data
;
355 dma_unmap_single(dev
, data
->va
, data
->len
, DMA_BIDIRECTIONAL
);
357 struct srp_indirect_buf
*indirect
=
358 (struct srp_indirect_buf
*) cmd
->add_data
;
359 int num_mapped
= indirect
->table_desc
.len
/
360 sizeof(struct srp_direct_buf
);
362 if (num_mapped
<= MAX_INDIRECT_BUFS
) {
363 unmap_sg_list(num_mapped
, dev
, &indirect
->desc_list
[0]);
367 unmap_sg_list(num_mapped
, dev
, evt_struct
->ext_list
);
371 static int map_sg_list(struct scsi_cmnd
*cmd
, int nseg
,
372 struct srp_direct_buf
*md
)
375 struct scatterlist
*sg
;
376 u64 total_length
= 0;
378 scsi_for_each_sg(cmd
, sg
, nseg
, i
) {
379 struct srp_direct_buf
*descr
= md
+ i
;
380 descr
->va
= sg_dma_address(sg
);
381 descr
->len
= sg_dma_len(sg
);
383 total_length
+= sg_dma_len(sg
);
389 * map_sg_data: - Maps dma for a scatterlist and initializes decriptor fields
390 * @cmd: Scsi_Cmnd with the scatterlist
391 * @srp_cmd: srp_cmd that contains the memory descriptor
392 * @dev: device for which to map dma memory
394 * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
395 * Returns 1 on success.
397 static int map_sg_data(struct scsi_cmnd
*cmd
,
398 struct srp_event_struct
*evt_struct
,
399 struct srp_cmd
*srp_cmd
, struct device
*dev
)
403 u64 total_length
= 0;
404 struct srp_direct_buf
*data
=
405 (struct srp_direct_buf
*) srp_cmd
->add_data
;
406 struct srp_indirect_buf
*indirect
=
407 (struct srp_indirect_buf
*) data
;
409 sg_mapped
= scsi_dma_map(cmd
);
412 else if (sg_mapped
< 0)
415 set_srp_direction(cmd
, srp_cmd
, sg_mapped
);
417 /* special case; we can use a single direct descriptor */
418 if (sg_mapped
== 1) {
419 map_sg_list(cmd
, sg_mapped
, data
);
423 indirect
->table_desc
.va
= 0;
424 indirect
->table_desc
.len
= sg_mapped
* sizeof(struct srp_direct_buf
);
425 indirect
->table_desc
.key
= 0;
427 if (sg_mapped
<= MAX_INDIRECT_BUFS
) {
428 total_length
= map_sg_list(cmd
, sg_mapped
,
429 &indirect
->desc_list
[0]);
430 indirect
->len
= total_length
;
434 /* get indirect table */
435 if (!evt_struct
->ext_list
) {
436 evt_struct
->ext_list
= (struct srp_direct_buf
*)
437 dma_alloc_coherent(dev
,
438 SG_ALL
* sizeof(struct srp_direct_buf
),
439 &evt_struct
->ext_list_token
, 0);
440 if (!evt_struct
->ext_list
) {
441 if (!firmware_has_feature(FW_FEATURE_CMO
))
442 sdev_printk(KERN_ERR
, cmd
->device
,
443 "Can't allocate memory "
444 "for indirect table\n");
450 total_length
= map_sg_list(cmd
, sg_mapped
, evt_struct
->ext_list
);
452 indirect
->len
= total_length
;
453 indirect
->table_desc
.va
= evt_struct
->ext_list_token
;
454 indirect
->table_desc
.len
= sg_mapped
* sizeof(indirect
->desc_list
[0]);
455 memcpy(indirect
->desc_list
, evt_struct
->ext_list
,
456 MAX_INDIRECT_BUFS
* sizeof(struct srp_direct_buf
));
461 * map_data_for_srp_cmd: - Calls functions to map data for srp cmds
462 * @cmd: struct scsi_cmnd with the memory to be mapped
463 * @srp_cmd: srp_cmd that contains the memory descriptor
464 * @dev: dma device for which to map dma memory
466 * Called by scsi_cmd_to_srp_cmd() when converting scsi cmds to srp cmds
467 * Returns 1 on success.
469 static int map_data_for_srp_cmd(struct scsi_cmnd
*cmd
,
470 struct srp_event_struct
*evt_struct
,
471 struct srp_cmd
*srp_cmd
, struct device
*dev
)
473 switch (cmd
->sc_data_direction
) {
474 case DMA_FROM_DEVICE
:
479 case DMA_BIDIRECTIONAL
:
480 sdev_printk(KERN_ERR
, cmd
->device
,
481 "Can't map DMA_BIDIRECTIONAL to read/write\n");
484 sdev_printk(KERN_ERR
, cmd
->device
,
485 "Unknown data direction 0x%02x; can't map!\n",
486 cmd
->sc_data_direction
);
490 return map_sg_data(cmd
, evt_struct
, srp_cmd
, dev
);
494 * purge_requests: Our virtual adapter just shut down. purge any sent requests
495 * @hostdata: the adapter
497 static void purge_requests(struct ibmvscsi_host_data
*hostdata
, int error_code
)
499 struct srp_event_struct
*tmp_evt
, *pos
;
502 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
503 list_for_each_entry_safe(tmp_evt
, pos
, &hostdata
->sent
, list
) {
504 list_del(&tmp_evt
->list
);
505 del_timer(&tmp_evt
->timer
);
507 tmp_evt
->cmnd
->result
= (error_code
<< 16);
508 unmap_cmd_data(&tmp_evt
->iu
.srp
.cmd
,
510 tmp_evt
->hostdata
->dev
);
511 if (tmp_evt
->cmnd_done
)
512 tmp_evt
->cmnd_done(tmp_evt
->cmnd
);
513 } else if (tmp_evt
->done
)
514 tmp_evt
->done(tmp_evt
);
515 free_event_struct(&tmp_evt
->hostdata
->pool
, tmp_evt
);
517 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
521 * ibmvscsi_reset_host - Reset the connection to the server
522 * @hostdata: struct ibmvscsi_host_data to reset
524 static void ibmvscsi_reset_host(struct ibmvscsi_host_data
*hostdata
)
526 scsi_block_requests(hostdata
->host
);
527 atomic_set(&hostdata
->request_limit
, 0);
529 purge_requests(hostdata
, DID_ERROR
);
530 if ((ibmvscsi_ops
->reset_crq_queue(&hostdata
->queue
, hostdata
)) ||
531 (ibmvscsi_ops
->send_crq(hostdata
, 0xC001000000000000LL
, 0)) ||
532 (vio_enable_interrupts(to_vio_dev(hostdata
->dev
)))) {
533 atomic_set(&hostdata
->request_limit
, -1);
534 dev_err(hostdata
->dev
, "error after reset\n");
537 scsi_unblock_requests(hostdata
->host
);
541 * ibmvscsi_timeout - Internal command timeout handler
542 * @evt_struct: struct srp_event_struct that timed out
544 * Called when an internally generated command times out
546 static void ibmvscsi_timeout(struct srp_event_struct
*evt_struct
)
548 struct ibmvscsi_host_data
*hostdata
= evt_struct
->hostdata
;
550 dev_err(hostdata
->dev
, "Command timed out (%x). Resetting connection\n",
551 evt_struct
->iu
.srp
.cmd
.opcode
);
553 ibmvscsi_reset_host(hostdata
);
557 /* ------------------------------------------------------------
558 * Routines for sending and receiving SRPs
561 * ibmvscsi_send_srp_event: - Transforms event to u64 array and calls send_crq()
562 * @evt_struct: evt_struct to be sent
563 * @hostdata: ibmvscsi_host_data of host
564 * @timeout: timeout in seconds - 0 means do not time command
566 * Returns the value returned from ibmvscsi_send_crq(). (Zero for success)
567 * Note that this routine assumes that host_lock is held for synchronization
569 static int ibmvscsi_send_srp_event(struct srp_event_struct
*evt_struct
,
570 struct ibmvscsi_host_data
*hostdata
,
571 unsigned long timeout
)
573 u64
*crq_as_u64
= (u64
*) &evt_struct
->crq
;
574 int request_status
= 0;
577 /* If we have exhausted our request limit, just fail this request,
578 * unless it is for a reset or abort.
579 * Note that there are rare cases involving driver generated requests
580 * (such as task management requests) that the mid layer may think we
581 * can handle more requests (can_queue) when we actually can't
583 if (evt_struct
->crq
.format
== VIOSRP_SRP_FORMAT
) {
585 atomic_dec_if_positive(&hostdata
->request_limit
);
586 /* If request limit was -1 when we started, it is now even
589 if (request_status
< -1)
591 /* Otherwise, we may have run out of requests. */
592 /* If request limit was 0 when we started the adapter is in the
593 * process of performing a login with the server adapter, or
594 * we may have run out of requests.
596 else if (request_status
== -1 &&
597 evt_struct
->iu
.srp
.login_req
.opcode
!= SRP_LOGIN_REQ
)
599 /* Abort and reset calls should make it through.
600 * Nothing except abort and reset should use the last two
601 * slots unless we had two or less to begin with.
603 else if (request_status
< 2 &&
604 evt_struct
->iu
.srp
.cmd
.opcode
!= SRP_TSK_MGMT
) {
605 /* In the case that we have less than two requests
606 * available, check the server limit as a combination
607 * of the request limit and the number of requests
608 * in-flight (the size of the send list). If the
609 * server limit is greater than 2, return busy so
610 * that the last two are reserved for reset and abort.
612 int server_limit
= request_status
;
613 struct srp_event_struct
*tmp_evt
;
615 list_for_each_entry(tmp_evt
, &hostdata
->sent
, list
) {
619 if (server_limit
> 2)
624 /* Copy the IU into the transfer area */
625 *evt_struct
->xfer_iu
= evt_struct
->iu
;
626 evt_struct
->xfer_iu
->srp
.rsp
.tag
= (u64
)evt_struct
;
628 /* Add this to the sent list. We need to do this
629 * before we actually send
630 * in case it comes back REALLY fast
632 list_add_tail(&evt_struct
->list
, &hostdata
->sent
);
634 init_timer(&evt_struct
->timer
);
636 evt_struct
->timer
.data
= (unsigned long) evt_struct
;
637 evt_struct
->timer
.expires
= jiffies
+ (timeout
* HZ
);
638 evt_struct
->timer
.function
= (void (*)(unsigned long))ibmvscsi_timeout
;
639 add_timer(&evt_struct
->timer
);
643 ibmvscsi_ops
->send_crq(hostdata
, crq_as_u64
[0], crq_as_u64
[1])) != 0) {
644 list_del(&evt_struct
->list
);
645 del_timer(&evt_struct
->timer
);
647 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
648 * Firmware will send a CRQ with a transport event (0xFF) to
649 * tell this client what has happened to the transport. This
650 * will be handled in ibmvscsi_handle_crq()
652 if (rc
== H_CLOSED
) {
653 dev_warn(hostdata
->dev
, "send warning. "
654 "Receive queue closed, will retry.\n");
657 dev_err(hostdata
->dev
, "send error %d\n", rc
);
658 atomic_inc(&hostdata
->request_limit
);
665 unmap_cmd_data(&evt_struct
->iu
.srp
.cmd
, evt_struct
, hostdata
->dev
);
667 free_event_struct(&hostdata
->pool
, evt_struct
);
668 if (request_status
!= -1)
669 atomic_inc(&hostdata
->request_limit
);
670 return SCSI_MLQUEUE_HOST_BUSY
;
673 unmap_cmd_data(&evt_struct
->iu
.srp
.cmd
, evt_struct
, hostdata
->dev
);
675 if (evt_struct
->cmnd
!= NULL
) {
676 evt_struct
->cmnd
->result
= DID_ERROR
<< 16;
677 evt_struct
->cmnd_done(evt_struct
->cmnd
);
678 } else if (evt_struct
->done
)
679 evt_struct
->done(evt_struct
);
681 free_event_struct(&hostdata
->pool
, evt_struct
);
686 * handle_cmd_rsp: - Handle responses from commands
687 * @evt_struct: srp_event_struct to be handled
689 * Used as a callback by when sending scsi cmds.
690 * Gets called by ibmvscsi_handle_crq()
692 static void handle_cmd_rsp(struct srp_event_struct
*evt_struct
)
694 struct srp_rsp
*rsp
= &evt_struct
->xfer_iu
->srp
.rsp
;
695 struct scsi_cmnd
*cmnd
= evt_struct
->cmnd
;
697 if (unlikely(rsp
->opcode
!= SRP_RSP
)) {
698 if (printk_ratelimit())
699 dev_warn(evt_struct
->hostdata
->dev
,
700 "bad SRP RSP type %d\n", rsp
->opcode
);
704 cmnd
->result
|= rsp
->status
;
705 if (((cmnd
->result
>> 1) & 0x1f) == CHECK_CONDITION
)
706 memcpy(cmnd
->sense_buffer
,
708 rsp
->sense_data_len
);
709 unmap_cmd_data(&evt_struct
->iu
.srp
.cmd
,
711 evt_struct
->hostdata
->dev
);
713 if (rsp
->flags
& SRP_RSP_FLAG_DOOVER
)
714 scsi_set_resid(cmnd
, rsp
->data_out_res_cnt
);
715 else if (rsp
->flags
& SRP_RSP_FLAG_DIOVER
)
716 scsi_set_resid(cmnd
, rsp
->data_in_res_cnt
);
719 if (evt_struct
->cmnd_done
)
720 evt_struct
->cmnd_done(cmnd
);
724 * lun_from_dev: - Returns the lun of the scsi device
725 * @dev: struct scsi_device
728 static inline u16
lun_from_dev(struct scsi_device
*dev
)
730 return (0x2 << 14) | (dev
->id
<< 8) | (dev
->channel
<< 5) | dev
->lun
;
734 * ibmvscsi_queue: - The queuecommand function of the scsi template
735 * @cmd: struct scsi_cmnd to be executed
736 * @done: Callback function to be called when cmd is completed
738 static int ibmvscsi_queuecommand(struct scsi_cmnd
*cmnd
,
739 void (*done
) (struct scsi_cmnd
*))
741 struct srp_cmd
*srp_cmd
;
742 struct srp_event_struct
*evt_struct
;
743 struct srp_indirect_buf
*indirect
;
744 struct ibmvscsi_host_data
*hostdata
= shost_priv(cmnd
->device
->host
);
745 u16 lun
= lun_from_dev(cmnd
->device
);
748 cmnd
->result
= (DID_OK
<< 16);
749 evt_struct
= get_event_struct(&hostdata
->pool
);
751 return SCSI_MLQUEUE_HOST_BUSY
;
753 /* Set up the actual SRP IU */
754 srp_cmd
= &evt_struct
->iu
.srp
.cmd
;
755 memset(srp_cmd
, 0x00, SRP_MAX_IU_LEN
);
756 srp_cmd
->opcode
= SRP_CMD
;
757 memcpy(srp_cmd
->cdb
, cmnd
->cmnd
, sizeof(srp_cmd
->cdb
));
758 srp_cmd
->lun
= ((u64
) lun
) << 48;
760 if (!map_data_for_srp_cmd(cmnd
, evt_struct
, srp_cmd
, hostdata
->dev
)) {
761 if (!firmware_has_feature(FW_FEATURE_CMO
))
762 sdev_printk(KERN_ERR
, cmnd
->device
,
763 "couldn't convert cmd to srp_cmd\n");
764 free_event_struct(&hostdata
->pool
, evt_struct
);
765 return SCSI_MLQUEUE_HOST_BUSY
;
768 init_event_struct(evt_struct
,
771 cmnd
->request
->timeout
/HZ
);
773 evt_struct
->cmnd
= cmnd
;
774 evt_struct
->cmnd_done
= done
;
776 /* Fix up dma address of the buffer itself */
777 indirect
= (struct srp_indirect_buf
*) srp_cmd
->add_data
;
778 out_fmt
= srp_cmd
->buf_fmt
>> 4;
779 in_fmt
= srp_cmd
->buf_fmt
& ((1U << 4) - 1);
780 if ((in_fmt
== SRP_DATA_DESC_INDIRECT
||
781 out_fmt
== SRP_DATA_DESC_INDIRECT
) &&
782 indirect
->table_desc
.va
== 0) {
783 indirect
->table_desc
.va
= evt_struct
->crq
.IU_data_ptr
+
784 offsetof(struct srp_cmd
, add_data
) +
785 offsetof(struct srp_indirect_buf
, desc_list
);
788 return ibmvscsi_send_srp_event(evt_struct
, hostdata
, 0);
791 /* ------------------------------------------------------------
792 * Routines for driver initialization
796 * map_persist_bufs: - Pre-map persistent data for adapter logins
797 * @hostdata: ibmvscsi_host_data of host
799 * Map the capabilities and adapter info DMA buffers to avoid runtime failures.
800 * Return 1 on error, 0 on success.
802 static int map_persist_bufs(struct ibmvscsi_host_data
*hostdata
)
805 hostdata
->caps_addr
= dma_map_single(hostdata
->dev
, &hostdata
->caps
,
806 sizeof(hostdata
->caps
), DMA_BIDIRECTIONAL
);
808 if (dma_mapping_error(hostdata
->dev
, hostdata
->caps_addr
)) {
809 dev_err(hostdata
->dev
, "Unable to map capabilities buffer!\n");
813 hostdata
->adapter_info_addr
= dma_map_single(hostdata
->dev
,
814 &hostdata
->madapter_info
,
815 sizeof(hostdata
->madapter_info
),
817 if (dma_mapping_error(hostdata
->dev
, hostdata
->adapter_info_addr
)) {
818 dev_err(hostdata
->dev
, "Unable to map adapter info buffer!\n");
819 dma_unmap_single(hostdata
->dev
, hostdata
->caps_addr
,
820 sizeof(hostdata
->caps
), DMA_BIDIRECTIONAL
);
828 * unmap_persist_bufs: - Unmap persistent data needed for adapter logins
829 * @hostdata: ibmvscsi_host_data of host
831 * Unmap the capabilities and adapter info DMA buffers
833 static void unmap_persist_bufs(struct ibmvscsi_host_data
*hostdata
)
835 dma_unmap_single(hostdata
->dev
, hostdata
->caps_addr
,
836 sizeof(hostdata
->caps
), DMA_BIDIRECTIONAL
);
838 dma_unmap_single(hostdata
->dev
, hostdata
->adapter_info_addr
,
839 sizeof(hostdata
->madapter_info
), DMA_BIDIRECTIONAL
);
843 * login_rsp: - Handle response to SRP login request
844 * @evt_struct: srp_event_struct with the response
846 * Used as a "done" callback by when sending srp_login. Gets called
847 * by ibmvscsi_handle_crq()
849 static void login_rsp(struct srp_event_struct
*evt_struct
)
851 struct ibmvscsi_host_data
*hostdata
= evt_struct
->hostdata
;
852 switch (evt_struct
->xfer_iu
->srp
.login_rsp
.opcode
) {
853 case SRP_LOGIN_RSP
: /* it worked! */
855 case SRP_LOGIN_REJ
: /* refused! */
856 dev_info(hostdata
->dev
, "SRP_LOGIN_REJ reason %u\n",
857 evt_struct
->xfer_iu
->srp
.login_rej
.reason
);
859 atomic_set(&hostdata
->request_limit
, -1);
862 dev_err(hostdata
->dev
, "Invalid login response typecode 0x%02x!\n",
863 evt_struct
->xfer_iu
->srp
.login_rsp
.opcode
);
865 atomic_set(&hostdata
->request_limit
, -1);
869 dev_info(hostdata
->dev
, "SRP_LOGIN succeeded\n");
870 hostdata
->client_migrated
= 0;
872 /* Now we know what the real request-limit is.
873 * This value is set rather than added to request_limit because
874 * request_limit could have been set to -1 by this client.
876 atomic_set(&hostdata
->request_limit
,
877 evt_struct
->xfer_iu
->srp
.login_rsp
.req_lim_delta
);
879 /* If we had any pending I/Os, kick them */
880 scsi_unblock_requests(hostdata
->host
);
884 * send_srp_login: - Sends the srp login
885 * @hostdata: ibmvscsi_host_data of host
887 * Returns zero if successful.
889 static int send_srp_login(struct ibmvscsi_host_data
*hostdata
)
893 struct srp_login_req
*login
;
894 struct srp_event_struct
*evt_struct
= get_event_struct(&hostdata
->pool
);
897 init_event_struct(evt_struct
, login_rsp
,
898 VIOSRP_SRP_FORMAT
, login_timeout
);
900 login
= &evt_struct
->iu
.srp
.login_req
;
901 memset(login
, 0, sizeof(*login
));
902 login
->opcode
= SRP_LOGIN_REQ
;
903 login
->req_it_iu_len
= sizeof(union srp_iu
);
904 login
->req_buf_fmt
= SRP_BUF_FORMAT_DIRECT
| SRP_BUF_FORMAT_INDIRECT
;
906 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
907 /* Start out with a request limit of 0, since this is negotiated in
908 * the login request we are just sending and login requests always
909 * get sent by the driver regardless of request_limit.
911 atomic_set(&hostdata
->request_limit
, 0);
913 rc
= ibmvscsi_send_srp_event(evt_struct
, hostdata
, login_timeout
* 2);
914 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
915 dev_info(hostdata
->dev
, "sent SRP login\n");
920 * capabilities_rsp: - Handle response to MAD adapter capabilities request
921 * @evt_struct: srp_event_struct with the response
923 * Used as a "done" callback by when sending adapter_info.
925 static void capabilities_rsp(struct srp_event_struct
*evt_struct
)
927 struct ibmvscsi_host_data
*hostdata
= evt_struct
->hostdata
;
929 if (evt_struct
->xfer_iu
->mad
.capabilities
.common
.status
) {
930 dev_err(hostdata
->dev
, "error 0x%X getting capabilities info\n",
931 evt_struct
->xfer_iu
->mad
.capabilities
.common
.status
);
933 if (hostdata
->caps
.migration
.common
.server_support
!= SERVER_SUPPORTS_CAP
)
934 dev_info(hostdata
->dev
, "Partition migration not supported\n");
936 if (client_reserve
) {
937 if (hostdata
->caps
.reserve
.common
.server_support
==
939 dev_info(hostdata
->dev
, "Client reserve enabled\n");
941 dev_info(hostdata
->dev
, "Client reserve not supported\n");
945 send_srp_login(hostdata
);
949 * send_mad_capabilities: - Sends the mad capabilities request
950 * and stores the result so it can be retrieved with
951 * @hostdata: ibmvscsi_host_data of host
953 static void send_mad_capabilities(struct ibmvscsi_host_data
*hostdata
)
955 struct viosrp_capabilities
*req
;
956 struct srp_event_struct
*evt_struct
;
958 struct device_node
*of_node
= hostdata
->dev
->archdata
.of_node
;
959 const char *location
;
961 evt_struct
= get_event_struct(&hostdata
->pool
);
964 init_event_struct(evt_struct
, capabilities_rsp
,
965 VIOSRP_MAD_FORMAT
, info_timeout
);
967 req
= &evt_struct
->iu
.mad
.capabilities
;
968 memset(req
, 0, sizeof(*req
));
970 hostdata
->caps
.flags
= CAP_LIST_SUPPORTED
;
971 if (hostdata
->client_migrated
)
972 hostdata
->caps
.flags
|= CLIENT_MIGRATED
;
974 strncpy(hostdata
->caps
.name
, dev_name(&hostdata
->host
->shost_gendev
),
975 sizeof(hostdata
->caps
.name
));
976 hostdata
->caps
.name
[sizeof(hostdata
->caps
.name
) - 1] = '\0';
978 location
= of_get_property(of_node
, "ibm,loc-code", NULL
);
979 location
= location
? location
: dev_name(hostdata
->dev
);
980 strncpy(hostdata
->caps
.loc
, location
, sizeof(hostdata
->caps
.loc
));
981 hostdata
->caps
.loc
[sizeof(hostdata
->caps
.loc
) - 1] = '\0';
983 req
->common
.type
= VIOSRP_CAPABILITIES_TYPE
;
984 req
->buffer
= hostdata
->caps_addr
;
986 hostdata
->caps
.migration
.common
.cap_type
= MIGRATION_CAPABILITIES
;
987 hostdata
->caps
.migration
.common
.length
= sizeof(hostdata
->caps
.migration
);
988 hostdata
->caps
.migration
.common
.server_support
= SERVER_SUPPORTS_CAP
;
989 hostdata
->caps
.migration
.ecl
= 1;
991 if (client_reserve
) {
992 hostdata
->caps
.reserve
.common
.cap_type
= RESERVATION_CAPABILITIES
;
993 hostdata
->caps
.reserve
.common
.length
= sizeof(hostdata
->caps
.reserve
);
994 hostdata
->caps
.reserve
.common
.server_support
= SERVER_SUPPORTS_CAP
;
995 hostdata
->caps
.reserve
.type
= CLIENT_RESERVE_SCSI_2
;
996 req
->common
.length
= sizeof(hostdata
->caps
);
998 req
->common
.length
= sizeof(hostdata
->caps
) - sizeof(hostdata
->caps
.reserve
);
1000 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1001 if (ibmvscsi_send_srp_event(evt_struct
, hostdata
, info_timeout
* 2))
1002 dev_err(hostdata
->dev
, "couldn't send CAPABILITIES_REQ!\n");
1003 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1007 * fast_fail_rsp: - Handle response to MAD enable fast fail
1008 * @evt_struct: srp_event_struct with the response
1010 * Used as a "done" callback by when sending enable fast fail. Gets called
1011 * by ibmvscsi_handle_crq()
1013 static void fast_fail_rsp(struct srp_event_struct
*evt_struct
)
1015 struct ibmvscsi_host_data
*hostdata
= evt_struct
->hostdata
;
1016 u8 status
= evt_struct
->xfer_iu
->mad
.fast_fail
.common
.status
;
1018 if (status
== VIOSRP_MAD_NOT_SUPPORTED
)
1019 dev_err(hostdata
->dev
, "fast_fail not supported in server\n");
1020 else if (status
== VIOSRP_MAD_FAILED
)
1021 dev_err(hostdata
->dev
, "fast_fail request failed\n");
1022 else if (status
!= VIOSRP_MAD_SUCCESS
)
1023 dev_err(hostdata
->dev
, "error 0x%X enabling fast_fail\n", status
);
1025 send_mad_capabilities(hostdata
);
1029 * init_host - Start host initialization
1030 * @hostdata: ibmvscsi_host_data of host
1032 * Returns zero if successful.
1034 static int enable_fast_fail(struct ibmvscsi_host_data
*hostdata
)
1037 unsigned long flags
;
1038 struct viosrp_fast_fail
*fast_fail_mad
;
1039 struct srp_event_struct
*evt_struct
;
1042 send_mad_capabilities(hostdata
);
1046 evt_struct
= get_event_struct(&hostdata
->pool
);
1047 BUG_ON(!evt_struct
);
1049 init_event_struct(evt_struct
, fast_fail_rsp
, VIOSRP_MAD_FORMAT
, info_timeout
);
1051 fast_fail_mad
= &evt_struct
->iu
.mad
.fast_fail
;
1052 memset(fast_fail_mad
, 0, sizeof(*fast_fail_mad
));
1053 fast_fail_mad
->common
.type
= VIOSRP_ENABLE_FAST_FAIL
;
1054 fast_fail_mad
->common
.length
= sizeof(*fast_fail_mad
);
1056 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1057 rc
= ibmvscsi_send_srp_event(evt_struct
, hostdata
, info_timeout
* 2);
1058 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1063 * adapter_info_rsp: - Handle response to MAD adapter info request
1064 * @evt_struct: srp_event_struct with the response
1066 * Used as a "done" callback by when sending adapter_info. Gets called
1067 * by ibmvscsi_handle_crq()
1069 static void adapter_info_rsp(struct srp_event_struct
*evt_struct
)
1071 struct ibmvscsi_host_data
*hostdata
= evt_struct
->hostdata
;
1073 if (evt_struct
->xfer_iu
->mad
.adapter_info
.common
.status
) {
1074 dev_err(hostdata
->dev
, "error %d getting adapter info\n",
1075 evt_struct
->xfer_iu
->mad
.adapter_info
.common
.status
);
1077 dev_info(hostdata
->dev
, "host srp version: %s, "
1078 "host partition %s (%d), OS %d, max io %u\n",
1079 hostdata
->madapter_info
.srp_version
,
1080 hostdata
->madapter_info
.partition_name
,
1081 hostdata
->madapter_info
.partition_number
,
1082 hostdata
->madapter_info
.os_type
,
1083 hostdata
->madapter_info
.port_max_txu
[0]);
1085 if (hostdata
->madapter_info
.port_max_txu
[0])
1086 hostdata
->host
->max_sectors
=
1087 hostdata
->madapter_info
.port_max_txu
[0] >> 9;
1089 if (hostdata
->madapter_info
.os_type
== 3 &&
1090 strcmp(hostdata
->madapter_info
.srp_version
, "1.6a") <= 0) {
1091 dev_err(hostdata
->dev
, "host (Ver. %s) doesn't support large transfers\n",
1092 hostdata
->madapter_info
.srp_version
);
1093 dev_err(hostdata
->dev
, "limiting scatterlists to %d\n",
1095 hostdata
->host
->sg_tablesize
= MAX_INDIRECT_BUFS
;
1098 if (hostdata
->madapter_info
.os_type
== 3) {
1099 enable_fast_fail(hostdata
);
1104 send_srp_login(hostdata
);
1108 * send_mad_adapter_info: - Sends the mad adapter info request
1109 * and stores the result so it can be retrieved with
1110 * sysfs. We COULD consider causing a failure if the
1111 * returned SRP version doesn't match ours.
1112 * @hostdata: ibmvscsi_host_data of host
1114 * Returns zero if successful.
1116 static void send_mad_adapter_info(struct ibmvscsi_host_data
*hostdata
)
1118 struct viosrp_adapter_info
*req
;
1119 struct srp_event_struct
*evt_struct
;
1120 unsigned long flags
;
1122 evt_struct
= get_event_struct(&hostdata
->pool
);
1123 BUG_ON(!evt_struct
);
1125 init_event_struct(evt_struct
,
1130 req
= &evt_struct
->iu
.mad
.adapter_info
;
1131 memset(req
, 0x00, sizeof(*req
));
1133 req
->common
.type
= VIOSRP_ADAPTER_INFO_TYPE
;
1134 req
->common
.length
= sizeof(hostdata
->madapter_info
);
1135 req
->buffer
= hostdata
->adapter_info_addr
;
1137 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1138 if (ibmvscsi_send_srp_event(evt_struct
, hostdata
, info_timeout
* 2))
1139 dev_err(hostdata
->dev
, "couldn't send ADAPTER_INFO_REQ!\n");
1140 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1144 * init_adapter: Start virtual adapter initialization sequence
1147 static void init_adapter(struct ibmvscsi_host_data
*hostdata
)
1149 send_mad_adapter_info(hostdata
);
1153 * sync_completion: Signal that a synchronous command has completed
1154 * Note that after returning from this call, the evt_struct is freed.
1155 * the caller waiting on this completion shouldn't touch the evt_struct
1158 static void sync_completion(struct srp_event_struct
*evt_struct
)
1160 /* copy the response back */
1161 if (evt_struct
->sync_srp
)
1162 *evt_struct
->sync_srp
= *evt_struct
->xfer_iu
;
1164 complete(&evt_struct
->comp
);
1168 * ibmvscsi_abort: Abort a command...from scsi host template
1169 * send this over to the server and wait synchronously for the response
1171 static int ibmvscsi_eh_abort_handler(struct scsi_cmnd
*cmd
)
1173 struct ibmvscsi_host_data
*hostdata
= shost_priv(cmd
->device
->host
);
1174 struct srp_tsk_mgmt
*tsk_mgmt
;
1175 struct srp_event_struct
*evt
;
1176 struct srp_event_struct
*tmp_evt
, *found_evt
;
1177 union viosrp_iu srp_rsp
;
1179 unsigned long flags
;
1180 u16 lun
= lun_from_dev(cmd
->device
);
1181 unsigned long wait_switch
= 0;
1183 /* First, find this command in our sent list so we can figure
1184 * out the correct tag
1186 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1187 wait_switch
= jiffies
+ (init_timeout
* HZ
);
1190 list_for_each_entry(tmp_evt
, &hostdata
->sent
, list
) {
1191 if (tmp_evt
->cmnd
== cmd
) {
1192 found_evt
= tmp_evt
;
1198 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1202 evt
= get_event_struct(&hostdata
->pool
);
1204 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1205 sdev_printk(KERN_ERR
, cmd
->device
,
1206 "failed to allocate abort event\n");
1210 init_event_struct(evt
,
1215 tsk_mgmt
= &evt
->iu
.srp
.tsk_mgmt
;
1217 /* Set up an abort SRP command */
1218 memset(tsk_mgmt
, 0x00, sizeof(*tsk_mgmt
));
1219 tsk_mgmt
->opcode
= SRP_TSK_MGMT
;
1220 tsk_mgmt
->lun
= ((u64
) lun
) << 48;
1221 tsk_mgmt
->tsk_mgmt_func
= SRP_TSK_ABORT_TASK
;
1222 tsk_mgmt
->task_tag
= (u64
) found_evt
;
1224 evt
->sync_srp
= &srp_rsp
;
1226 init_completion(&evt
->comp
);
1227 rsp_rc
= ibmvscsi_send_srp_event(evt
, hostdata
, abort_timeout
* 2);
1229 if (rsp_rc
!= SCSI_MLQUEUE_HOST_BUSY
)
1232 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1234 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1235 } while (time_before(jiffies
, wait_switch
));
1237 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1240 sdev_printk(KERN_ERR
, cmd
->device
,
1241 "failed to send abort() event. rc=%d\n", rsp_rc
);
1245 sdev_printk(KERN_INFO
, cmd
->device
,
1246 "aborting command. lun 0x%llx, tag 0x%llx\n",
1247 (((u64
) lun
) << 48), (u64
) found_evt
);
1249 wait_for_completion(&evt
->comp
);
1251 /* make sure we got a good response */
1252 if (unlikely(srp_rsp
.srp
.rsp
.opcode
!= SRP_RSP
)) {
1253 if (printk_ratelimit())
1254 sdev_printk(KERN_WARNING
, cmd
->device
, "abort bad SRP RSP type %d\n",
1255 srp_rsp
.srp
.rsp
.opcode
);
1259 if (srp_rsp
.srp
.rsp
.flags
& SRP_RSP_FLAG_RSPVALID
)
1260 rsp_rc
= *((int *)srp_rsp
.srp
.rsp
.data
);
1262 rsp_rc
= srp_rsp
.srp
.rsp
.status
;
1265 if (printk_ratelimit())
1266 sdev_printk(KERN_WARNING
, cmd
->device
,
1267 "abort code %d for task tag 0x%llx\n",
1268 rsp_rc
, tsk_mgmt
->task_tag
);
1272 /* Because we dropped the spinlock above, it's possible
1273 * The event is no longer in our list. Make sure it didn't
1274 * complete while we were aborting
1276 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1278 list_for_each_entry(tmp_evt
, &hostdata
->sent
, list
) {
1279 if (tmp_evt
->cmnd
== cmd
) {
1280 found_evt
= tmp_evt
;
1285 if (found_evt
== NULL
) {
1286 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1287 sdev_printk(KERN_INFO
, cmd
->device
, "aborted task tag 0x%llx completed\n",
1288 tsk_mgmt
->task_tag
);
1292 sdev_printk(KERN_INFO
, cmd
->device
, "successfully aborted task tag 0x%llx\n",
1293 tsk_mgmt
->task_tag
);
1295 cmd
->result
= (DID_ABORT
<< 16);
1296 list_del(&found_evt
->list
);
1297 unmap_cmd_data(&found_evt
->iu
.srp
.cmd
, found_evt
,
1298 found_evt
->hostdata
->dev
);
1299 free_event_struct(&found_evt
->hostdata
->pool
, found_evt
);
1300 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1301 atomic_inc(&hostdata
->request_limit
);
1306 * ibmvscsi_eh_device_reset_handler: Reset a single LUN...from scsi host
1307 * template send this over to the server and wait synchronously for the
1310 static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd
*cmd
)
1312 struct ibmvscsi_host_data
*hostdata
= shost_priv(cmd
->device
->host
);
1313 struct srp_tsk_mgmt
*tsk_mgmt
;
1314 struct srp_event_struct
*evt
;
1315 struct srp_event_struct
*tmp_evt
, *pos
;
1316 union viosrp_iu srp_rsp
;
1318 unsigned long flags
;
1319 u16 lun
= lun_from_dev(cmd
->device
);
1320 unsigned long wait_switch
= 0;
1322 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1323 wait_switch
= jiffies
+ (init_timeout
* HZ
);
1325 evt
= get_event_struct(&hostdata
->pool
);
1327 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1328 sdev_printk(KERN_ERR
, cmd
->device
,
1329 "failed to allocate reset event\n");
1333 init_event_struct(evt
,
1338 tsk_mgmt
= &evt
->iu
.srp
.tsk_mgmt
;
1340 /* Set up a lun reset SRP command */
1341 memset(tsk_mgmt
, 0x00, sizeof(*tsk_mgmt
));
1342 tsk_mgmt
->opcode
= SRP_TSK_MGMT
;
1343 tsk_mgmt
->lun
= ((u64
) lun
) << 48;
1344 tsk_mgmt
->tsk_mgmt_func
= SRP_TSK_LUN_RESET
;
1346 evt
->sync_srp
= &srp_rsp
;
1348 init_completion(&evt
->comp
);
1349 rsp_rc
= ibmvscsi_send_srp_event(evt
, hostdata
, reset_timeout
* 2);
1351 if (rsp_rc
!= SCSI_MLQUEUE_HOST_BUSY
)
1354 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1356 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1357 } while (time_before(jiffies
, wait_switch
));
1359 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1362 sdev_printk(KERN_ERR
, cmd
->device
,
1363 "failed to send reset event. rc=%d\n", rsp_rc
);
1367 sdev_printk(KERN_INFO
, cmd
->device
, "resetting device. lun 0x%llx\n",
1368 (((u64
) lun
) << 48));
1370 wait_for_completion(&evt
->comp
);
1372 /* make sure we got a good response */
1373 if (unlikely(srp_rsp
.srp
.rsp
.opcode
!= SRP_RSP
)) {
1374 if (printk_ratelimit())
1375 sdev_printk(KERN_WARNING
, cmd
->device
, "reset bad SRP RSP type %d\n",
1376 srp_rsp
.srp
.rsp
.opcode
);
1380 if (srp_rsp
.srp
.rsp
.flags
& SRP_RSP_FLAG_RSPVALID
)
1381 rsp_rc
= *((int *)srp_rsp
.srp
.rsp
.data
);
1383 rsp_rc
= srp_rsp
.srp
.rsp
.status
;
1386 if (printk_ratelimit())
1387 sdev_printk(KERN_WARNING
, cmd
->device
,
1388 "reset code %d for task tag 0x%llx\n",
1389 rsp_rc
, tsk_mgmt
->task_tag
);
1393 /* We need to find all commands for this LUN that have not yet been
1394 * responded to, and fail them with DID_RESET
1396 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1397 list_for_each_entry_safe(tmp_evt
, pos
, &hostdata
->sent
, list
) {
1398 if ((tmp_evt
->cmnd
) && (tmp_evt
->cmnd
->device
== cmd
->device
)) {
1400 tmp_evt
->cmnd
->result
= (DID_RESET
<< 16);
1401 list_del(&tmp_evt
->list
);
1402 unmap_cmd_data(&tmp_evt
->iu
.srp
.cmd
, tmp_evt
,
1403 tmp_evt
->hostdata
->dev
);
1404 free_event_struct(&tmp_evt
->hostdata
->pool
,
1406 atomic_inc(&hostdata
->request_limit
);
1407 if (tmp_evt
->cmnd_done
)
1408 tmp_evt
->cmnd_done(tmp_evt
->cmnd
);
1409 else if (tmp_evt
->done
)
1410 tmp_evt
->done(tmp_evt
);
1413 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1418 * ibmvscsi_eh_host_reset_handler - Reset the connection to the server
1419 * @cmd: struct scsi_cmnd having problems
1421 static int ibmvscsi_eh_host_reset_handler(struct scsi_cmnd
*cmd
)
1423 unsigned long wait_switch
= 0;
1424 struct ibmvscsi_host_data
*hostdata
= shost_priv(cmd
->device
->host
);
1426 dev_err(hostdata
->dev
, "Resetting connection due to error recovery\n");
1428 ibmvscsi_reset_host(hostdata
);
1430 for (wait_switch
= jiffies
+ (init_timeout
* HZ
);
1431 time_before(jiffies
, wait_switch
) &&
1432 atomic_read(&hostdata
->request_limit
) < 2;) {
1437 if (atomic_read(&hostdata
->request_limit
) <= 0)
1444 * ibmvscsi_handle_crq: - Handles and frees received events in the CRQ
1445 * @crq: Command/Response queue
1446 * @hostdata: ibmvscsi_host_data of host
1449 void ibmvscsi_handle_crq(struct viosrp_crq
*crq
,
1450 struct ibmvscsi_host_data
*hostdata
)
1453 unsigned long flags
;
1454 struct srp_event_struct
*evt_struct
=
1455 (struct srp_event_struct
*)crq
->IU_data_ptr
;
1456 switch (crq
->valid
) {
1457 case 0xC0: /* initialization */
1458 switch (crq
->format
) {
1459 case 0x01: /* Initialization message */
1460 dev_info(hostdata
->dev
, "partner initialized\n");
1461 /* Send back a response */
1462 if ((rc
= ibmvscsi_ops
->send_crq(hostdata
,
1463 0xC002000000000000LL
, 0)) == 0) {
1465 init_adapter(hostdata
);
1467 dev_err(hostdata
->dev
, "Unable to send init rsp. rc=%ld\n", rc
);
1471 case 0x02: /* Initialization response */
1472 dev_info(hostdata
->dev
, "partner initialization complete\n");
1475 init_adapter(hostdata
);
1478 dev_err(hostdata
->dev
, "unknown crq message type: %d\n", crq
->format
);
1481 case 0xFF: /* Hypervisor telling us the connection is closed */
1482 scsi_block_requests(hostdata
->host
);
1483 atomic_set(&hostdata
->request_limit
, 0);
1484 if (crq
->format
== 0x06) {
1485 /* We need to re-setup the interpartition connection */
1486 dev_info(hostdata
->dev
, "Re-enabling adapter!\n");
1487 hostdata
->client_migrated
= 1;
1488 purge_requests(hostdata
, DID_REQUEUE
);
1489 if ((ibmvscsi_ops
->reenable_crq_queue(&hostdata
->queue
,
1491 (ibmvscsi_ops
->send_crq(hostdata
,
1492 0xC001000000000000LL
, 0))) {
1493 atomic_set(&hostdata
->request_limit
,
1495 dev_err(hostdata
->dev
, "error after enable\n");
1498 dev_err(hostdata
->dev
, "Virtual adapter failed rc %d!\n",
1501 purge_requests(hostdata
, DID_ERROR
);
1502 if ((ibmvscsi_ops
->reset_crq_queue(&hostdata
->queue
,
1504 (ibmvscsi_ops
->send_crq(hostdata
,
1505 0xC001000000000000LL
, 0))) {
1506 atomic_set(&hostdata
->request_limit
,
1508 dev_err(hostdata
->dev
, "error after reset\n");
1511 scsi_unblock_requests(hostdata
->host
);
1513 case 0x80: /* real payload */
1516 dev_err(hostdata
->dev
, "got an invalid message type 0x%02x\n",
1521 /* The only kind of payload CRQs we should get are responses to
1522 * things we send. Make sure this response is to something we
1525 if (!valid_event_struct(&hostdata
->pool
, evt_struct
)) {
1526 dev_err(hostdata
->dev
, "returned correlation_token 0x%p is invalid!\n",
1527 (void *)crq
->IU_data_ptr
);
1531 if (atomic_read(&evt_struct
->free
)) {
1532 dev_err(hostdata
->dev
, "received duplicate correlation_token 0x%p!\n",
1533 (void *)crq
->IU_data_ptr
);
1537 if (crq
->format
== VIOSRP_SRP_FORMAT
)
1538 atomic_add(evt_struct
->xfer_iu
->srp
.rsp
.req_lim_delta
,
1539 &hostdata
->request_limit
);
1541 del_timer(&evt_struct
->timer
);
1543 if ((crq
->status
!= VIOSRP_OK
&& crq
->status
!= VIOSRP_OK2
) && evt_struct
->cmnd
)
1544 evt_struct
->cmnd
->result
= DID_ERROR
<< 16;
1545 if (evt_struct
->done
)
1546 evt_struct
->done(evt_struct
);
1548 dev_err(hostdata
->dev
, "returned done() is NULL; not running it!\n");
1551 * Lock the host_lock before messing with these structures, since we
1552 * are running in a task context
1554 spin_lock_irqsave(evt_struct
->hostdata
->host
->host_lock
, flags
);
1555 list_del(&evt_struct
->list
);
1556 free_event_struct(&evt_struct
->hostdata
->pool
, evt_struct
);
1557 spin_unlock_irqrestore(evt_struct
->hostdata
->host
->host_lock
, flags
);
1561 * ibmvscsi_get_host_config: Send the command to the server to get host
1562 * configuration data. The data is opaque to us.
1564 static int ibmvscsi_do_host_config(struct ibmvscsi_host_data
*hostdata
,
1565 unsigned char *buffer
, int length
)
1567 struct viosrp_host_config
*host_config
;
1568 struct srp_event_struct
*evt_struct
;
1569 unsigned long flags
;
1573 evt_struct
= get_event_struct(&hostdata
->pool
);
1575 dev_err(hostdata
->dev
, "couldn't allocate event for HOST_CONFIG!\n");
1579 init_event_struct(evt_struct
,
1584 host_config
= &evt_struct
->iu
.mad
.host_config
;
1586 /* Set up a lun reset SRP command */
1587 memset(host_config
, 0x00, sizeof(*host_config
));
1588 host_config
->common
.type
= VIOSRP_HOST_CONFIG_TYPE
;
1589 host_config
->common
.length
= length
;
1590 host_config
->buffer
= addr
= dma_map_single(hostdata
->dev
, buffer
,
1594 if (dma_mapping_error(hostdata
->dev
, host_config
->buffer
)) {
1595 if (!firmware_has_feature(FW_FEATURE_CMO
))
1596 dev_err(hostdata
->dev
,
1597 "dma_mapping error getting host config\n");
1598 free_event_struct(&hostdata
->pool
, evt_struct
);
1602 init_completion(&evt_struct
->comp
);
1603 spin_lock_irqsave(hostdata
->host
->host_lock
, flags
);
1604 rc
= ibmvscsi_send_srp_event(evt_struct
, hostdata
, info_timeout
* 2);
1605 spin_unlock_irqrestore(hostdata
->host
->host_lock
, flags
);
1607 wait_for_completion(&evt_struct
->comp
);
1608 dma_unmap_single(hostdata
->dev
, addr
, length
, DMA_BIDIRECTIONAL
);
1614 * ibmvscsi_slave_configure: Set the "allow_restart" flag for each disk.
1615 * @sdev: struct scsi_device device to configure
1617 * Enable allow_restart for a device if it is a disk. Adjust the
1618 * queue_depth here also as is required by the documentation for
1619 * struct scsi_host_template.
1621 static int ibmvscsi_slave_configure(struct scsi_device
*sdev
)
1623 struct Scsi_Host
*shost
= sdev
->host
;
1624 unsigned long lock_flags
= 0;
1626 spin_lock_irqsave(shost
->host_lock
, lock_flags
);
1627 if (sdev
->type
== TYPE_DISK
) {
1628 sdev
->allow_restart
= 1;
1629 blk_queue_rq_timeout(sdev
->request_queue
, 120 * HZ
);
1631 scsi_adjust_queue_depth(sdev
, 0, shost
->cmd_per_lun
);
1632 spin_unlock_irqrestore(shost
->host_lock
, lock_flags
);
1637 * ibmvscsi_change_queue_depth - Change the device's queue depth
1638 * @sdev: scsi device struct
1639 * @qdepth: depth to set
1644 static int ibmvscsi_change_queue_depth(struct scsi_device
*sdev
, int qdepth
)
1646 if (qdepth
> IBMVSCSI_MAX_CMDS_PER_LUN
)
1647 qdepth
= IBMVSCSI_MAX_CMDS_PER_LUN
;
1649 scsi_adjust_queue_depth(sdev
, 0, qdepth
);
1650 return sdev
->queue_depth
;
1653 /* ------------------------------------------------------------
1656 static ssize_t
show_host_vhost_loc(struct device
*dev
,
1657 struct device_attribute
*attr
, char *buf
)
1659 struct Scsi_Host
*shost
= class_to_shost(dev
);
1660 struct ibmvscsi_host_data
*hostdata
= shost_priv(shost
);
1663 len
= snprintf(buf
, sizeof(hostdata
->caps
.loc
), "%s\n",
1664 hostdata
->caps
.loc
);
1668 static struct device_attribute ibmvscsi_host_vhost_loc
= {
1670 .name
= "vhost_loc",
1673 .show
= show_host_vhost_loc
,
1676 static ssize_t
show_host_vhost_name(struct device
*dev
,
1677 struct device_attribute
*attr
, char *buf
)
1679 struct Scsi_Host
*shost
= class_to_shost(dev
);
1680 struct ibmvscsi_host_data
*hostdata
= shost_priv(shost
);
1683 len
= snprintf(buf
, sizeof(hostdata
->caps
.name
), "%s\n",
1684 hostdata
->caps
.name
);
1688 static struct device_attribute ibmvscsi_host_vhost_name
= {
1690 .name
= "vhost_name",
1693 .show
= show_host_vhost_name
,
1696 static ssize_t
show_host_srp_version(struct device
*dev
,
1697 struct device_attribute
*attr
, char *buf
)
1699 struct Scsi_Host
*shost
= class_to_shost(dev
);
1700 struct ibmvscsi_host_data
*hostdata
= shost_priv(shost
);
1703 len
= snprintf(buf
, PAGE_SIZE
, "%s\n",
1704 hostdata
->madapter_info
.srp_version
);
1708 static struct device_attribute ibmvscsi_host_srp_version
= {
1710 .name
= "srp_version",
1713 .show
= show_host_srp_version
,
1716 static ssize_t
show_host_partition_name(struct device
*dev
,
1717 struct device_attribute
*attr
,
1720 struct Scsi_Host
*shost
= class_to_shost(dev
);
1721 struct ibmvscsi_host_data
*hostdata
= shost_priv(shost
);
1724 len
= snprintf(buf
, PAGE_SIZE
, "%s\n",
1725 hostdata
->madapter_info
.partition_name
);
1729 static struct device_attribute ibmvscsi_host_partition_name
= {
1731 .name
= "partition_name",
1734 .show
= show_host_partition_name
,
1737 static ssize_t
show_host_partition_number(struct device
*dev
,
1738 struct device_attribute
*attr
,
1741 struct Scsi_Host
*shost
= class_to_shost(dev
);
1742 struct ibmvscsi_host_data
*hostdata
= shost_priv(shost
);
1745 len
= snprintf(buf
, PAGE_SIZE
, "%d\n",
1746 hostdata
->madapter_info
.partition_number
);
1750 static struct device_attribute ibmvscsi_host_partition_number
= {
1752 .name
= "partition_number",
1755 .show
= show_host_partition_number
,
1758 static ssize_t
show_host_mad_version(struct device
*dev
,
1759 struct device_attribute
*attr
, char *buf
)
1761 struct Scsi_Host
*shost
= class_to_shost(dev
);
1762 struct ibmvscsi_host_data
*hostdata
= shost_priv(shost
);
1765 len
= snprintf(buf
, PAGE_SIZE
, "%d\n",
1766 hostdata
->madapter_info
.mad_version
);
1770 static struct device_attribute ibmvscsi_host_mad_version
= {
1772 .name
= "mad_version",
1775 .show
= show_host_mad_version
,
1778 static ssize_t
show_host_os_type(struct device
*dev
,
1779 struct device_attribute
*attr
, char *buf
)
1781 struct Scsi_Host
*shost
= class_to_shost(dev
);
1782 struct ibmvscsi_host_data
*hostdata
= shost_priv(shost
);
1785 len
= snprintf(buf
, PAGE_SIZE
, "%d\n", hostdata
->madapter_info
.os_type
);
1789 static struct device_attribute ibmvscsi_host_os_type
= {
1794 .show
= show_host_os_type
,
1797 static ssize_t
show_host_config(struct device
*dev
,
1798 struct device_attribute
*attr
, char *buf
)
1800 struct Scsi_Host
*shost
= class_to_shost(dev
);
1801 struct ibmvscsi_host_data
*hostdata
= shost_priv(shost
);
1803 /* returns null-terminated host config data */
1804 if (ibmvscsi_do_host_config(hostdata
, buf
, PAGE_SIZE
) == 0)
1810 static struct device_attribute ibmvscsi_host_config
= {
1815 .show
= show_host_config
,
1818 static struct device_attribute
*ibmvscsi_attrs
[] = {
1819 &ibmvscsi_host_vhost_loc
,
1820 &ibmvscsi_host_vhost_name
,
1821 &ibmvscsi_host_srp_version
,
1822 &ibmvscsi_host_partition_name
,
1823 &ibmvscsi_host_partition_number
,
1824 &ibmvscsi_host_mad_version
,
1825 &ibmvscsi_host_os_type
,
1826 &ibmvscsi_host_config
,
1830 /* ------------------------------------------------------------
1831 * SCSI driver registration
1833 static struct scsi_host_template driver_template
= {
1834 .module
= THIS_MODULE
,
1835 .name
= "IBM POWER Virtual SCSI Adapter " IBMVSCSI_VERSION
,
1836 .proc_name
= "ibmvscsi",
1837 .queuecommand
= ibmvscsi_queuecommand
,
1838 .eh_abort_handler
= ibmvscsi_eh_abort_handler
,
1839 .eh_device_reset_handler
= ibmvscsi_eh_device_reset_handler
,
1840 .eh_host_reset_handler
= ibmvscsi_eh_host_reset_handler
,
1841 .slave_configure
= ibmvscsi_slave_configure
,
1842 .change_queue_depth
= ibmvscsi_change_queue_depth
,
1843 .cmd_per_lun
= IBMVSCSI_CMDS_PER_LUN_DEFAULT
,
1844 .can_queue
= IBMVSCSI_MAX_REQUESTS_DEFAULT
,
1846 .sg_tablesize
= SG_ALL
,
1847 .use_clustering
= ENABLE_CLUSTERING
,
1848 .shost_attrs
= ibmvscsi_attrs
,
1852 * ibmvscsi_get_desired_dma - Calculate IO memory desired by the driver
1854 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1857 * Number of bytes of IO data the driver will need to perform well.
1859 static unsigned long ibmvscsi_get_desired_dma(struct vio_dev
*vdev
)
1861 /* iu_storage data allocated in initialize_event_pool */
1862 unsigned long desired_io
= max_events
* sizeof(union viosrp_iu
);
1864 /* add io space for sg data */
1865 desired_io
+= (IBMVSCSI_MAX_SECTORS_DEFAULT
* 512 *
1866 IBMVSCSI_CMDS_PER_LUN_DEFAULT
);
1872 * Called by bus code for each adapter
1874 static int ibmvscsi_probe(struct vio_dev
*vdev
, const struct vio_device_id
*id
)
1876 struct ibmvscsi_host_data
*hostdata
;
1877 struct Scsi_Host
*host
;
1878 struct device
*dev
= &vdev
->dev
;
1879 struct srp_rport_identifiers ids
;
1880 struct srp_rport
*rport
;
1881 unsigned long wait_switch
= 0;
1884 dev_set_drvdata(&vdev
->dev
, NULL
);
1886 host
= scsi_host_alloc(&driver_template
, sizeof(*hostdata
));
1888 dev_err(&vdev
->dev
, "couldn't allocate host data\n");
1889 goto scsi_host_alloc_failed
;
1892 host
->transportt
= ibmvscsi_transport_template
;
1893 hostdata
= shost_priv(host
);
1894 memset(hostdata
, 0x00, sizeof(*hostdata
));
1895 INIT_LIST_HEAD(&hostdata
->sent
);
1896 hostdata
->host
= host
;
1897 hostdata
->dev
= dev
;
1898 atomic_set(&hostdata
->request_limit
, -1);
1899 hostdata
->host
->max_sectors
= IBMVSCSI_MAX_SECTORS_DEFAULT
;
1901 if (map_persist_bufs(hostdata
)) {
1902 dev_err(&vdev
->dev
, "couldn't map persistent buffers\n");
1903 goto persist_bufs_failed
;
1906 rc
= ibmvscsi_ops
->init_crq_queue(&hostdata
->queue
, hostdata
, max_events
);
1907 if (rc
!= 0 && rc
!= H_RESOURCE
) {
1908 dev_err(&vdev
->dev
, "couldn't initialize crq. rc=%d\n", rc
);
1909 goto init_crq_failed
;
1911 if (initialize_event_pool(&hostdata
->pool
, max_events
, hostdata
) != 0) {
1912 dev_err(&vdev
->dev
, "couldn't initialize event pool\n");
1913 goto init_pool_failed
;
1917 host
->max_id
= max_id
;
1918 host
->max_channel
= max_channel
;
1919 host
->max_cmd_len
= 16;
1921 if (scsi_add_host(hostdata
->host
, hostdata
->dev
))
1922 goto add_host_failed
;
1924 /* we don't have a proper target_port_id so let's use the fake one */
1925 memcpy(ids
.port_id
, hostdata
->madapter_info
.partition_name
,
1926 sizeof(ids
.port_id
));
1927 ids
.roles
= SRP_RPORT_ROLE_TARGET
;
1928 rport
= srp_rport_add(host
, &ids
);
1930 goto add_srp_port_failed
;
1932 /* Try to send an initialization message. Note that this is allowed
1933 * to fail if the other end is not acive. In that case we don't
1936 if (ibmvscsi_ops
->send_crq(hostdata
, 0xC001000000000000LL
, 0) == 0
1937 || rc
== H_RESOURCE
) {
1939 * Wait around max init_timeout secs for the adapter to finish
1940 * initializing. When we are done initializing, we will have a
1941 * valid request_limit. We don't want Linux scanning before
1944 for (wait_switch
= jiffies
+ (init_timeout
* HZ
);
1945 time_before(jiffies
, wait_switch
) &&
1946 atomic_read(&hostdata
->request_limit
) < 2;) {
1951 /* if we now have a valid request_limit, initiate a scan */
1952 if (atomic_read(&hostdata
->request_limit
) > 0)
1953 scsi_scan_host(host
);
1956 dev_set_drvdata(&vdev
->dev
, hostdata
);
1959 add_srp_port_failed
:
1960 scsi_remove_host(hostdata
->host
);
1962 release_event_pool(&hostdata
->pool
, hostdata
);
1964 ibmvscsi_ops
->release_crq_queue(&hostdata
->queue
, hostdata
, max_events
);
1966 unmap_persist_bufs(hostdata
);
1967 persist_bufs_failed
:
1968 scsi_host_put(host
);
1969 scsi_host_alloc_failed
:
1973 static int ibmvscsi_remove(struct vio_dev
*vdev
)
1975 struct ibmvscsi_host_data
*hostdata
= dev_get_drvdata(&vdev
->dev
);
1976 unmap_persist_bufs(hostdata
);
1977 release_event_pool(&hostdata
->pool
, hostdata
);
1978 ibmvscsi_ops
->release_crq_queue(&hostdata
->queue
, hostdata
,
1981 srp_remove_host(hostdata
->host
);
1982 scsi_remove_host(hostdata
->host
);
1983 scsi_host_put(hostdata
->host
);
1989 * ibmvscsi_device_table: Used by vio.c to match devices in the device tree we
1992 static struct vio_device_id ibmvscsi_device_table
[] __devinitdata
= {
1993 {"vscsi", "IBM,v-scsi"},
1996 MODULE_DEVICE_TABLE(vio
, ibmvscsi_device_table
);
1998 static struct vio_driver ibmvscsi_driver
= {
1999 .id_table
= ibmvscsi_device_table
,
2000 .probe
= ibmvscsi_probe
,
2001 .remove
= ibmvscsi_remove
,
2002 .get_desired_dma
= ibmvscsi_get_desired_dma
,
2005 .owner
= THIS_MODULE
,
2009 static struct srp_function_template ibmvscsi_transport_functions
= {
2012 int __init
ibmvscsi_module_init(void)
2016 /* Ensure we have two requests to do error recovery */
2017 driver_template
.can_queue
= max_requests
;
2018 max_events
= max_requests
+ 2;
2020 if (firmware_has_feature(FW_FEATURE_ISERIES
))
2021 ibmvscsi_ops
= &iseriesvscsi_ops
;
2022 else if (firmware_has_feature(FW_FEATURE_VIO
))
2023 ibmvscsi_ops
= &rpavscsi_ops
;
2027 ibmvscsi_transport_template
=
2028 srp_attach_transport(&ibmvscsi_transport_functions
);
2029 if (!ibmvscsi_transport_template
)
2032 ret
= vio_register_driver(&ibmvscsi_driver
);
2034 srp_release_transport(ibmvscsi_transport_template
);
2038 void __exit
ibmvscsi_module_exit(void)
2040 vio_unregister_driver(&ibmvscsi_driver
);
2041 srp_release_transport(ibmvscsi_transport_template
);
2044 module_init(ibmvscsi_module_init
);
2045 module_exit(ibmvscsi_module_exit
);