blob: ac58ee344790683e9e2593593fed7a6bcc4eba87 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/* ------------------------------------------------------------
2 * ibmvscsi.c
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)
7 *
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.
12 *
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.
17 *
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
21 * USA
22 *
23 * ------------------------------------------------------------
24 * Emulation of a SCSI host adapter for Virtual I/O devices
25 *
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.
30 *
31 * The virtual adapter(s) are present in the open firmware device
32 * tree just like real adapters.
33 *
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.
38 *
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-robin 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
47 * the message.
48 *
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
56 * completed.
57 *
58 * TODO: This is currently pretty tied to the IBM pSeries hypervisor
59 * interfaces. It would be really nice to abstract this above an RDMA
60 * layer.
61 */
62
63#include <linux/module.h>
64#include <linux/moduleparam.h>
65#include <linux/dma-mapping.h>
66#include <linux/delay.h>
67#include <linux/slab.h>
68#include <linux/of.h>
69#include <linux/pm.h>
70#include <linux/kthread.h>
71#include <asm/firmware.h>
72#include <asm/vio.h>
73#include <scsi/scsi.h>
74#include <scsi/scsi_cmnd.h>
75#include <scsi/scsi_host.h>
76#include <scsi/scsi_device.h>
77#include <scsi/scsi_transport_srp.h>
78#include "ibmvscsi.h"
79
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
83 * 5 bits of LUN.
84 */
85static int max_id = 64;
86static int max_channel = 3;
87static int init_timeout = 300;
88static int login_timeout = 60;
89static int info_timeout = 30;
90static int abort_timeout = 60;
91static int reset_timeout = 60;
92static int max_requests = IBMVSCSI_MAX_REQUESTS_DEFAULT;
93static int max_events = IBMVSCSI_MAX_REQUESTS_DEFAULT + 2;
94static int fast_fail = 1;
95static int client_reserve = 1;
96
97static struct scsi_transport_template *ibmvscsi_transport_template;
98
99#define IBMVSCSI_VERSION "1.5.9"
100
101static struct ibmvscsi_ops *ibmvscsi_ops;
102
103MODULE_DESCRIPTION("IBM Virtual SCSI");
104MODULE_AUTHOR("Dave Boutcher");
105MODULE_LICENSE("GPL");
106MODULE_VERSION(IBMVSCSI_VERSION);
107
108module_param_named(max_id, max_id, int, S_IRUGO | S_IWUSR);
109MODULE_PARM_DESC(max_id, "Largest ID value for each channel");
110module_param_named(max_channel, max_channel, int, S_IRUGO | S_IWUSR);
111MODULE_PARM_DESC(max_channel, "Largest channel value");
112module_param_named(init_timeout, init_timeout, int, S_IRUGO | S_IWUSR);
113MODULE_PARM_DESC(init_timeout, "Initialization timeout in seconds");
114module_param_named(max_requests, max_requests, int, S_IRUGO);
115MODULE_PARM_DESC(max_requests, "Maximum requests for this adapter");
116module_param_named(fast_fail, fast_fail, int, S_IRUGO | S_IWUSR);
117MODULE_PARM_DESC(fast_fail, "Enable fast fail. [Default=1]");
118module_param_named(client_reserve, client_reserve, int, S_IRUGO );
119MODULE_PARM_DESC(client_reserve, "Attempt client managed reserve/release");
120
121/* ------------------------------------------------------------
122 * Routines for the event pool and event structs
123 */
124/**
125 * initialize_event_pool: - Allocates and initializes the event pool for a host
126 * @pool: event_pool to be initialized
127 * @size: Number of events in pool
128 * @hostdata: ibmvscsi_host_data who owns the event pool
129 *
130 * Returns zero on success.
131*/
132static int initialize_event_pool(struct event_pool *pool,
133 int size, struct ibmvscsi_host_data *hostdata)
134{
135 int i;
136
137 pool->size = size;
138 pool->next = 0;
139 pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
140 if (!pool->events)
141 return -ENOMEM;
142
143 pool->iu_storage =
144 dma_alloc_coherent(hostdata->dev,
145 pool->size * sizeof(*pool->iu_storage),
146 &pool->iu_token, 0);
147 if (!pool->iu_storage) {
148 kfree(pool->events);
149 return -ENOMEM;
150 }
151
152 for (i = 0; i < pool->size; ++i) {
153 struct srp_event_struct *evt = &pool->events[i];
154 memset(&evt->crq, 0x00, sizeof(evt->crq));
155 atomic_set(&evt->free, 1);
156 evt->crq.valid = 0x80;
157 evt->crq.IU_length = sizeof(*evt->xfer_iu);
158 evt->crq.IU_data_ptr = pool->iu_token +
159 sizeof(*evt->xfer_iu) * i;
160 evt->xfer_iu = pool->iu_storage + i;
161 evt->hostdata = hostdata;
162 evt->ext_list = NULL;
163 evt->ext_list_token = 0;
164 }
165
166 return 0;
167}
168
169/**
170 * release_event_pool: - Frees memory of an event pool of a host
171 * @pool: event_pool to be released
172 * @hostdata: ibmvscsi_host_data who owns the even pool
173 *
174 * Returns zero on success.
175*/
176static void release_event_pool(struct event_pool *pool,
177 struct ibmvscsi_host_data *hostdata)
178{
179 int i, in_use = 0;
180 for (i = 0; i < pool->size; ++i) {
181 if (atomic_read(&pool->events[i].free) != 1)
182 ++in_use;
183 if (pool->events[i].ext_list) {
184 dma_free_coherent(hostdata->dev,
185 SG_ALL * sizeof(struct srp_direct_buf),
186 pool->events[i].ext_list,
187 pool->events[i].ext_list_token);
188 }
189 }
190 if (in_use)
191 dev_warn(hostdata->dev, "releasing event pool with %d "
192 "events still in use?\n", in_use);
193 kfree(pool->events);
194 dma_free_coherent(hostdata->dev,
195 pool->size * sizeof(*pool->iu_storage),
196 pool->iu_storage, pool->iu_token);
197}
198
199/**
200 * valid_event_struct: - Determines if event is valid.
201 * @pool: event_pool that contains the event
202 * @evt: srp_event_struct to be checked for validity
203 *
204 * Returns zero if event is invalid, one otherwise.
205*/
206static int valid_event_struct(struct event_pool *pool,
207 struct srp_event_struct *evt)
208{
209 int index = evt - pool->events;
210 if (index < 0 || index >= pool->size) /* outside of bounds */
211 return 0;
212 if (evt != pool->events + index) /* unaligned */
213 return 0;
214 return 1;
215}
216
217/**
218 * ibmvscsi_free-event_struct: - Changes status of event to "free"
219 * @pool: event_pool that contains the event
220 * @evt: srp_event_struct to be modified
221 *
222*/
223static void free_event_struct(struct event_pool *pool,
224 struct srp_event_struct *evt)
225{
226 if (!valid_event_struct(pool, evt)) {
227 dev_err(evt->hostdata->dev, "Freeing invalid event_struct %p "
228 "(not in pool %p)\n", evt, pool->events);
229 return;
230 }
231 if (atomic_inc_return(&evt->free) != 1) {
232 dev_err(evt->hostdata->dev, "Freeing event_struct %p "
233 "which is not in use!\n", evt);
234 return;
235 }
236}
237
238/**
239 * get_evt_struct: - Gets the next free event in pool
240 * @pool: event_pool that contains the events to be searched
241 *
242 * Returns the next event in "free" state, and NULL if none are free.
243 * Note that no synchronization is done here, we assume the host_lock
244 * will syncrhonze things.
245*/
246static struct srp_event_struct *get_event_struct(struct event_pool *pool)
247{
248 int i;
249 int poolsize = pool->size;
250 int offset = pool->next;
251
252 for (i = 0; i < poolsize; i++) {
253 offset = (offset + 1) % poolsize;
254 if (!atomic_dec_if_positive(&pool->events[offset].free)) {
255 pool->next = offset;
256 return &pool->events[offset];
257 }
258 }
259
260 printk(KERN_ERR "ibmvscsi: found no event struct in pool!\n");
261 return NULL;
262}
263
264/**
265 * init_event_struct: Initialize fields in an event struct that are always
266 * required.
267 * @evt: The event
268 * @done: Routine to call when the event is responded to
269 * @format: SRP or MAD format
270 * @timeout: timeout value set in the CRQ
271 */
272static void init_event_struct(struct srp_event_struct *evt_struct,
273 void (*done) (struct srp_event_struct *),
274 u8 format,
275 int timeout)
276{
277 evt_struct->cmnd = NULL;
278 evt_struct->cmnd_done = NULL;
279 evt_struct->sync_srp = NULL;
280 evt_struct->crq.format = format;
281 evt_struct->crq.timeout = timeout;
282 evt_struct->done = done;
283}
284
285/* ------------------------------------------------------------
286 * Routines for receiving SCSI responses from the hosting partition
287 */
288
289/**
290 * set_srp_direction: Set the fields in the srp related to data
291 * direction and number of buffers based on the direction in
292 * the scsi_cmnd and the number of buffers
293 */
294static void set_srp_direction(struct scsi_cmnd *cmd,
295 struct srp_cmd *srp_cmd,
296 int numbuf)
297{
298 u8 fmt;
299
300 if (numbuf == 0)
301 return;
302
303 if (numbuf == 1)
304 fmt = SRP_DATA_DESC_DIRECT;
305 else {
306 fmt = SRP_DATA_DESC_INDIRECT;
307 numbuf = min(numbuf, MAX_INDIRECT_BUFS);
308
309 if (cmd->sc_data_direction == DMA_TO_DEVICE)
310 srp_cmd->data_out_desc_cnt = numbuf;
311 else
312 srp_cmd->data_in_desc_cnt = numbuf;
313 }
314
315 if (cmd->sc_data_direction == DMA_TO_DEVICE)
316 srp_cmd->buf_fmt = fmt << 4;
317 else
318 srp_cmd->buf_fmt = fmt;
319}
320
321/**
322 * unmap_cmd_data: - Unmap data pointed in srp_cmd based on the format
323 * @cmd: srp_cmd whose additional_data member will be unmapped
324 * @dev: device for which the memory is mapped
325 *
326*/
327static void unmap_cmd_data(struct srp_cmd *cmd,
328 struct srp_event_struct *evt_struct,
329 struct device *dev)
330{
331 u8 out_fmt, in_fmt;
332
333 out_fmt = cmd->buf_fmt >> 4;
334 in_fmt = cmd->buf_fmt & ((1U << 4) - 1);
335
336 if (out_fmt == SRP_NO_DATA_DESC && in_fmt == SRP_NO_DATA_DESC)
337 return;
338
339 if (evt_struct->cmnd)
340 scsi_dma_unmap(evt_struct->cmnd);
341}
342
343static int map_sg_list(struct scsi_cmnd *cmd, int nseg,
344 struct srp_direct_buf *md)
345{
346 int i;
347 struct scatterlist *sg;
348 u64 total_length = 0;
349
350 scsi_for_each_sg(cmd, sg, nseg, i) {
351 struct srp_direct_buf *descr = md + i;
352 descr->va = sg_dma_address(sg);
353 descr->len = sg_dma_len(sg);
354 descr->key = 0;
355 total_length += sg_dma_len(sg);
356 }
357 return total_length;
358}
359
360/**
361 * map_sg_data: - Maps dma for a scatterlist and initializes decriptor fields
362 * @cmd: Scsi_Cmnd with the scatterlist
363 * @srp_cmd: srp_cmd that contains the memory descriptor
364 * @dev: device for which to map dma memory
365 *
366 * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
367 * Returns 1 on success.
368*/
369static int map_sg_data(struct scsi_cmnd *cmd,
370 struct srp_event_struct *evt_struct,
371 struct srp_cmd *srp_cmd, struct device *dev)
372{
373
374 int sg_mapped;
375 u64 total_length = 0;
376 struct srp_direct_buf *data =
377 (struct srp_direct_buf *) srp_cmd->add_data;
378 struct srp_indirect_buf *indirect =
379 (struct srp_indirect_buf *) data;
380
381 sg_mapped = scsi_dma_map(cmd);
382 if (!sg_mapped)
383 return 1;
384 else if (sg_mapped < 0)
385 return 0;
386
387 set_srp_direction(cmd, srp_cmd, sg_mapped);
388
389 /* special case; we can use a single direct descriptor */
390 if (sg_mapped == 1) {
391 map_sg_list(cmd, sg_mapped, data);
392 return 1;
393 }
394
395 indirect->table_desc.va = 0;
396 indirect->table_desc.len = sg_mapped * sizeof(struct srp_direct_buf);
397 indirect->table_desc.key = 0;
398
399 if (sg_mapped <= MAX_INDIRECT_BUFS) {
400 total_length = map_sg_list(cmd, sg_mapped,
401 &indirect->desc_list[0]);
402 indirect->len = total_length;
403 return 1;
404 }
405
406 /* get indirect table */
407 if (!evt_struct->ext_list) {
408 evt_struct->ext_list = (struct srp_direct_buf *)
409 dma_alloc_coherent(dev,
410 SG_ALL * sizeof(struct srp_direct_buf),
411 &evt_struct->ext_list_token, 0);
412 if (!evt_struct->ext_list) {
413 if (!firmware_has_feature(FW_FEATURE_CMO))
414 sdev_printk(KERN_ERR, cmd->device,
415 "Can't allocate memory "
416 "for indirect table\n");
417 scsi_dma_unmap(cmd);
418 return 0;
419 }
420 }
421
422 total_length = map_sg_list(cmd, sg_mapped, evt_struct->ext_list);
423
424 indirect->len = total_length;
425 indirect->table_desc.va = evt_struct->ext_list_token;
426 indirect->table_desc.len = sg_mapped * sizeof(indirect->desc_list[0]);
427 memcpy(indirect->desc_list, evt_struct->ext_list,
428 MAX_INDIRECT_BUFS * sizeof(struct srp_direct_buf));
429 return 1;
430}
431
432/**
433 * map_data_for_srp_cmd: - Calls functions to map data for srp cmds
434 * @cmd: struct scsi_cmnd with the memory to be mapped
435 * @srp_cmd: srp_cmd that contains the memory descriptor
436 * @dev: dma device for which to map dma memory
437 *
438 * Called by scsi_cmd_to_srp_cmd() when converting scsi cmds to srp cmds
439 * Returns 1 on success.
440*/
441static int map_data_for_srp_cmd(struct scsi_cmnd *cmd,
442 struct srp_event_struct *evt_struct,
443 struct srp_cmd *srp_cmd, struct device *dev)
444{
445 switch (cmd->sc_data_direction) {
446 case DMA_FROM_DEVICE:
447 case DMA_TO_DEVICE:
448 break;
449 case DMA_NONE:
450 return 1;
451 case DMA_BIDIRECTIONAL:
452 sdev_printk(KERN_ERR, cmd->device,
453 "Can't map DMA_BIDIRECTIONAL to read/write\n");
454 return 0;
455 default:
456 sdev_printk(KERN_ERR, cmd->device,
457 "Unknown data direction 0x%02x; can't map!\n",
458 cmd->sc_data_direction);
459 return 0;
460 }
461
462 return map_sg_data(cmd, evt_struct, srp_cmd, dev);
463}
464
465/**
466 * purge_requests: Our virtual adapter just shut down. purge any sent requests
467 * @hostdata: the adapter
468 */
469static void purge_requests(struct ibmvscsi_host_data *hostdata, int error_code)
470{
471 struct srp_event_struct *evt;
472 unsigned long flags;
473
474 spin_lock_irqsave(hostdata->host->host_lock, flags);
475 while (!list_empty(&hostdata->sent)) {
476 evt = list_first_entry(&hostdata->sent, struct srp_event_struct, list);
477 list_del(&evt->list);
478 del_timer(&evt->timer);
479
480 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
481 if (evt->cmnd) {
482 evt->cmnd->result = (error_code << 16);
483 unmap_cmd_data(&evt->iu.srp.cmd, evt,
484 evt->hostdata->dev);
485 if (evt->cmnd_done)
486 evt->cmnd_done(evt->cmnd);
487 } else if (evt->done && evt->crq.format != VIOSRP_MAD_FORMAT &&
488 evt->iu.srp.login_req.opcode != SRP_LOGIN_REQ)
489 evt->done(evt);
490 free_event_struct(&evt->hostdata->pool, evt);
491 spin_lock_irqsave(hostdata->host->host_lock, flags);
492 }
493 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
494}
495
496/**
497 * ibmvscsi_reset_host - Reset the connection to the server
498 * @hostdata: struct ibmvscsi_host_data to reset
499*/
500static void ibmvscsi_reset_host(struct ibmvscsi_host_data *hostdata)
501{
502 scsi_block_requests(hostdata->host);
503 atomic_set(&hostdata->request_limit, 0);
504
505 purge_requests(hostdata, DID_ERROR);
506 hostdata->reset_crq = 1;
507 wake_up(&hostdata->work_wait_q);
508}
509
510/**
511 * ibmvscsi_timeout - Internal command timeout handler
512 * @evt_struct: struct srp_event_struct that timed out
513 *
514 * Called when an internally generated command times out
515*/
516static void ibmvscsi_timeout(struct srp_event_struct *evt_struct)
517{
518 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
519
520 dev_err(hostdata->dev, "Command timed out (%x). Resetting connection\n",
521 evt_struct->iu.srp.cmd.opcode);
522
523 ibmvscsi_reset_host(hostdata);
524}
525
526
527/* ------------------------------------------------------------
528 * Routines for sending and receiving SRPs
529 */
530/**
531 * ibmvscsi_send_srp_event: - Transforms event to u64 array and calls send_crq()
532 * @evt_struct: evt_struct to be sent
533 * @hostdata: ibmvscsi_host_data of host
534 * @timeout: timeout in seconds - 0 means do not time command
535 *
536 * Returns the value returned from ibmvscsi_send_crq(). (Zero for success)
537 * Note that this routine assumes that host_lock is held for synchronization
538*/
539static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct,
540 struct ibmvscsi_host_data *hostdata,
541 unsigned long timeout)
542{
543 u64 *crq_as_u64 = (u64 *) &evt_struct->crq;
544 int request_status = 0;
545 int rc;
546 int srp_req = 0;
547
548 /* If we have exhausted our request limit, just fail this request,
549 * unless it is for a reset or abort.
550 * Note that there are rare cases involving driver generated requests
551 * (such as task management requests) that the mid layer may think we
552 * can handle more requests (can_queue) when we actually can't
553 */
554 if (evt_struct->crq.format == VIOSRP_SRP_FORMAT) {
555 srp_req = 1;
556 request_status =
557 atomic_dec_if_positive(&hostdata->request_limit);
558 /* If request limit was -1 when we started, it is now even
559 * less than that
560 */
561 if (request_status < -1)
562 goto send_error;
563 /* Otherwise, we may have run out of requests. */
564 /* If request limit was 0 when we started the adapter is in the
565 * process of performing a login with the server adapter, or
566 * we may have run out of requests.
567 */
568 else if (request_status == -1 &&
569 evt_struct->iu.srp.login_req.opcode != SRP_LOGIN_REQ)
570 goto send_busy;
571 /* Abort and reset calls should make it through.
572 * Nothing except abort and reset should use the last two
573 * slots unless we had two or less to begin with.
574 */
575 else if (request_status < 2 &&
576 evt_struct->iu.srp.cmd.opcode != SRP_TSK_MGMT) {
577 /* In the case that we have less than two requests
578 * available, check the server limit as a combination
579 * of the request limit and the number of requests
580 * in-flight (the size of the send list). If the
581 * server limit is greater than 2, return busy so
582 * that the last two are reserved for reset and abort.
583 */
584 int server_limit = request_status;
585 struct srp_event_struct *tmp_evt;
586
587 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
588 server_limit++;
589 }
590
591 if (server_limit > 2)
592 goto send_busy;
593 }
594 }
595
596 /* Copy the IU into the transfer area */
597 *evt_struct->xfer_iu = evt_struct->iu;
598 evt_struct->xfer_iu->srp.rsp.tag = (u64)evt_struct;
599
600 /* Add this to the sent list. We need to do this
601 * before we actually send
602 * in case it comes back REALLY fast
603 */
604 list_add_tail(&evt_struct->list, &hostdata->sent);
605
606 init_timer(&evt_struct->timer);
607 if (timeout) {
608 evt_struct->timer.data = (unsigned long) evt_struct;
609 evt_struct->timer.expires = jiffies + (timeout * HZ);
610 evt_struct->timer.function = (void (*)(unsigned long))ibmvscsi_timeout;
611 add_timer(&evt_struct->timer);
612 }
613
614 if ((rc =
615 ibmvscsi_ops->send_crq(hostdata, crq_as_u64[0], crq_as_u64[1])) != 0) {
616 list_del(&evt_struct->list);
617 del_timer(&evt_struct->timer);
618
619 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
620 * Firmware will send a CRQ with a transport event (0xFF) to
621 * tell this client what has happened to the transport. This
622 * will be handled in ibmvscsi_handle_crq()
623 */
624 if (rc == H_CLOSED) {
625 dev_warn(hostdata->dev, "send warning. "
626 "Receive queue closed, will retry.\n");
627 goto send_busy;
628 }
629 dev_err(hostdata->dev, "send error %d\n", rc);
630 if (srp_req)
631 atomic_inc(&hostdata->request_limit);
632 goto send_error;
633 }
634
635 return 0;
636
637 send_busy:
638 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
639
640 free_event_struct(&hostdata->pool, evt_struct);
641 if (srp_req && request_status != -1)
642 atomic_inc(&hostdata->request_limit);
643 return SCSI_MLQUEUE_HOST_BUSY;
644
645 send_error:
646 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
647
648 if (evt_struct->cmnd != NULL) {
649 evt_struct->cmnd->result = DID_ERROR << 16;
650 evt_struct->cmnd_done(evt_struct->cmnd);
651 } else if (evt_struct->done)
652 evt_struct->done(evt_struct);
653
654 free_event_struct(&hostdata->pool, evt_struct);
655 return 0;
656}
657
658/**
659 * handle_cmd_rsp: - Handle responses from commands
660 * @evt_struct: srp_event_struct to be handled
661 *
662 * Used as a callback by when sending scsi cmds.
663 * Gets called by ibmvscsi_handle_crq()
664*/
665static void handle_cmd_rsp(struct srp_event_struct *evt_struct)
666{
667 struct srp_rsp *rsp = &evt_struct->xfer_iu->srp.rsp;
668 struct scsi_cmnd *cmnd = evt_struct->cmnd;
669
670 if (unlikely(rsp->opcode != SRP_RSP)) {
671 if (printk_ratelimit())
672 dev_warn(evt_struct->hostdata->dev,
673 "bad SRP RSP type %d\n", rsp->opcode);
674 }
675
676 if (cmnd) {
677 cmnd->result |= rsp->status;
678 if (((cmnd->result >> 1) & 0x1f) == CHECK_CONDITION)
679 memcpy(cmnd->sense_buffer,
680 rsp->data,
681 rsp->sense_data_len);
682 unmap_cmd_data(&evt_struct->iu.srp.cmd,
683 evt_struct,
684 evt_struct->hostdata->dev);
685
686 if (rsp->flags & SRP_RSP_FLAG_DOOVER)
687 scsi_set_resid(cmnd, rsp->data_out_res_cnt);
688 else if (rsp->flags & SRP_RSP_FLAG_DIOVER)
689 scsi_set_resid(cmnd, rsp->data_in_res_cnt);
690 }
691
692 if (evt_struct->cmnd_done)
693 evt_struct->cmnd_done(cmnd);
694}
695
696/**
697 * lun_from_dev: - Returns the lun of the scsi device
698 * @dev: struct scsi_device
699 *
700*/
701static inline u16 lun_from_dev(struct scsi_device *dev)
702{
703 return (0x2 << 14) | (dev->id << 8) | (dev->channel << 5) | dev->lun;
704}
705
706/**
707 * ibmvscsi_queue: - The queuecommand function of the scsi template
708 * @cmd: struct scsi_cmnd to be executed
709 * @done: Callback function to be called when cmd is completed
710*/
711static int ibmvscsi_queuecommand_lck(struct scsi_cmnd *cmnd,
712 void (*done) (struct scsi_cmnd *))
713{
714 struct srp_cmd *srp_cmd;
715 struct srp_event_struct *evt_struct;
716 struct srp_indirect_buf *indirect;
717 struct ibmvscsi_host_data *hostdata = shost_priv(cmnd->device->host);
718 u16 lun = lun_from_dev(cmnd->device);
719 u8 out_fmt, in_fmt;
720
721 cmnd->result = (DID_OK << 16);
722 evt_struct = get_event_struct(&hostdata->pool);
723 if (!evt_struct)
724 return SCSI_MLQUEUE_HOST_BUSY;
725
726 /* Set up the actual SRP IU */
727 srp_cmd = &evt_struct->iu.srp.cmd;
728 memset(srp_cmd, 0x00, SRP_MAX_IU_LEN);
729 srp_cmd->opcode = SRP_CMD;
730 memcpy(srp_cmd->cdb, cmnd->cmnd, sizeof(srp_cmd->cdb));
731 srp_cmd->lun = ((u64) lun) << 48;
732
733 if (!map_data_for_srp_cmd(cmnd, evt_struct, srp_cmd, hostdata->dev)) {
734 if (!firmware_has_feature(FW_FEATURE_CMO))
735 sdev_printk(KERN_ERR, cmnd->device,
736 "couldn't convert cmd to srp_cmd\n");
737 free_event_struct(&hostdata->pool, evt_struct);
738 return SCSI_MLQUEUE_HOST_BUSY;
739 }
740
741 init_event_struct(evt_struct,
742 handle_cmd_rsp,
743 VIOSRP_SRP_FORMAT,
744 cmnd->request->timeout/HZ);
745
746 evt_struct->cmnd = cmnd;
747 evt_struct->cmnd_done = done;
748
749 /* Fix up dma address of the buffer itself */
750 indirect = (struct srp_indirect_buf *) srp_cmd->add_data;
751 out_fmt = srp_cmd->buf_fmt >> 4;
752 in_fmt = srp_cmd->buf_fmt & ((1U << 4) - 1);
753 if ((in_fmt == SRP_DATA_DESC_INDIRECT ||
754 out_fmt == SRP_DATA_DESC_INDIRECT) &&
755 indirect->table_desc.va == 0) {
756 indirect->table_desc.va = evt_struct->crq.IU_data_ptr +
757 offsetof(struct srp_cmd, add_data) +
758 offsetof(struct srp_indirect_buf, desc_list);
759 }
760
761 return ibmvscsi_send_srp_event(evt_struct, hostdata, 0);
762}
763
764static DEF_SCSI_QCMD(ibmvscsi_queuecommand)
765
766/* ------------------------------------------------------------
767 * Routines for driver initialization
768 */
769
770/**
771 * map_persist_bufs: - Pre-map persistent data for adapter logins
772 * @hostdata: ibmvscsi_host_data of host
773 *
774 * Map the capabilities and adapter info DMA buffers to avoid runtime failures.
775 * Return 1 on error, 0 on success.
776 */
777static int map_persist_bufs(struct ibmvscsi_host_data *hostdata)
778{
779
780 hostdata->caps_addr = dma_map_single(hostdata->dev, &hostdata->caps,
781 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
782
783 if (dma_mapping_error(hostdata->dev, hostdata->caps_addr)) {
784 dev_err(hostdata->dev, "Unable to map capabilities buffer!\n");
785 return 1;
786 }
787
788 hostdata->adapter_info_addr = dma_map_single(hostdata->dev,
789 &hostdata->madapter_info,
790 sizeof(hostdata->madapter_info),
791 DMA_BIDIRECTIONAL);
792 if (dma_mapping_error(hostdata->dev, hostdata->adapter_info_addr)) {
793 dev_err(hostdata->dev, "Unable to map adapter info buffer!\n");
794 dma_unmap_single(hostdata->dev, hostdata->caps_addr,
795 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
796 return 1;
797 }
798
799 return 0;
800}
801
802/**
803 * unmap_persist_bufs: - Unmap persistent data needed for adapter logins
804 * @hostdata: ibmvscsi_host_data of host
805 *
806 * Unmap the capabilities and adapter info DMA buffers
807 */
808static void unmap_persist_bufs(struct ibmvscsi_host_data *hostdata)
809{
810 dma_unmap_single(hostdata->dev, hostdata->caps_addr,
811 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
812
813 dma_unmap_single(hostdata->dev, hostdata->adapter_info_addr,
814 sizeof(hostdata->madapter_info), DMA_BIDIRECTIONAL);
815}
816
817/**
818 * login_rsp: - Handle response to SRP login request
819 * @evt_struct: srp_event_struct with the response
820 *
821 * Used as a "done" callback by when sending srp_login. Gets called
822 * by ibmvscsi_handle_crq()
823*/
824static void login_rsp(struct srp_event_struct *evt_struct)
825{
826 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
827 switch (evt_struct->xfer_iu->srp.login_rsp.opcode) {
828 case SRP_LOGIN_RSP: /* it worked! */
829 break;
830 case SRP_LOGIN_REJ: /* refused! */
831 dev_info(hostdata->dev, "SRP_LOGIN_REJ reason %u\n",
832 evt_struct->xfer_iu->srp.login_rej.reason);
833 /* Login failed. */
834 atomic_set(&hostdata->request_limit, -1);
835 return;
836 default:
837 dev_err(hostdata->dev, "Invalid login response typecode 0x%02x!\n",
838 evt_struct->xfer_iu->srp.login_rsp.opcode);
839 /* Login failed. */
840 atomic_set(&hostdata->request_limit, -1);
841 return;
842 }
843
844 dev_info(hostdata->dev, "SRP_LOGIN succeeded\n");
845 hostdata->client_migrated = 0;
846
847 /* Now we know what the real request-limit is.
848 * This value is set rather than added to request_limit because
849 * request_limit could have been set to -1 by this client.
850 */
851 atomic_set(&hostdata->request_limit,
852 evt_struct->xfer_iu->srp.login_rsp.req_lim_delta);
853
854 /* If we had any pending I/Os, kick them */
855 scsi_unblock_requests(hostdata->host);
856}
857
858/**
859 * send_srp_login: - Sends the srp login
860 * @hostdata: ibmvscsi_host_data of host
861 *
862 * Returns zero if successful.
863*/
864static int send_srp_login(struct ibmvscsi_host_data *hostdata)
865{
866 int rc;
867 unsigned long flags;
868 struct srp_login_req *login;
869 struct srp_event_struct *evt_struct = get_event_struct(&hostdata->pool);
870
871 BUG_ON(!evt_struct);
872 init_event_struct(evt_struct, login_rsp,
873 VIOSRP_SRP_FORMAT, login_timeout);
874
875 login = &evt_struct->iu.srp.login_req;
876 memset(login, 0, sizeof(*login));
877 login->opcode = SRP_LOGIN_REQ;
878 login->req_it_iu_len = sizeof(union srp_iu);
879 login->req_buf_fmt = SRP_BUF_FORMAT_DIRECT | SRP_BUF_FORMAT_INDIRECT;
880
881 spin_lock_irqsave(hostdata->host->host_lock, flags);
882 /* Start out with a request limit of 0, since this is negotiated in
883 * the login request we are just sending and login requests always
884 * get sent by the driver regardless of request_limit.
885 */
886 atomic_set(&hostdata->request_limit, 0);
887
888 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, login_timeout * 2);
889 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
890 dev_info(hostdata->dev, "sent SRP login\n");
891 return rc;
892};
893
894/**
895 * capabilities_rsp: - Handle response to MAD adapter capabilities request
896 * @evt_struct: srp_event_struct with the response
897 *
898 * Used as a "done" callback by when sending adapter_info.
899 */
900static void capabilities_rsp(struct srp_event_struct *evt_struct)
901{
902 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
903
904 if (evt_struct->xfer_iu->mad.capabilities.common.status) {
905 dev_err(hostdata->dev, "error 0x%X getting capabilities info\n",
906 evt_struct->xfer_iu->mad.capabilities.common.status);
907 } else {
908 if (hostdata->caps.migration.common.server_support != SERVER_SUPPORTS_CAP)
909 dev_info(hostdata->dev, "Partition migration not supported\n");
910
911 if (client_reserve) {
912 if (hostdata->caps.reserve.common.server_support ==
913 SERVER_SUPPORTS_CAP)
914 dev_info(hostdata->dev, "Client reserve enabled\n");
915 else
916 dev_info(hostdata->dev, "Client reserve not supported\n");
917 }
918 }
919
920 send_srp_login(hostdata);
921}
922
923/**
924 * send_mad_capabilities: - Sends the mad capabilities request
925 * and stores the result so it can be retrieved with
926 * @hostdata: ibmvscsi_host_data of host
927 */
928static void send_mad_capabilities(struct ibmvscsi_host_data *hostdata)
929{
930 struct viosrp_capabilities *req;
931 struct srp_event_struct *evt_struct;
932 unsigned long flags;
933 struct device_node *of_node = hostdata->dev->of_node;
934 const char *location;
935
936 evt_struct = get_event_struct(&hostdata->pool);
937 BUG_ON(!evt_struct);
938
939 init_event_struct(evt_struct, capabilities_rsp,
940 VIOSRP_MAD_FORMAT, info_timeout);
941
942 req = &evt_struct->iu.mad.capabilities;
943 memset(req, 0, sizeof(*req));
944
945 hostdata->caps.flags = CAP_LIST_SUPPORTED;
946 if (hostdata->client_migrated)
947 hostdata->caps.flags |= CLIENT_MIGRATED;
948
949 strncpy(hostdata->caps.name, dev_name(&hostdata->host->shost_gendev),
950 sizeof(hostdata->caps.name));
951 hostdata->caps.name[sizeof(hostdata->caps.name) - 1] = '\0';
952
953 location = of_get_property(of_node, "ibm,loc-code", NULL);
954 location = location ? location : dev_name(hostdata->dev);
955 strncpy(hostdata->caps.loc, location, sizeof(hostdata->caps.loc));
956 hostdata->caps.loc[sizeof(hostdata->caps.loc) - 1] = '\0';
957
958 req->common.type = VIOSRP_CAPABILITIES_TYPE;
959 req->buffer = hostdata->caps_addr;
960
961 hostdata->caps.migration.common.cap_type = MIGRATION_CAPABILITIES;
962 hostdata->caps.migration.common.length = sizeof(hostdata->caps.migration);
963 hostdata->caps.migration.common.server_support = SERVER_SUPPORTS_CAP;
964 hostdata->caps.migration.ecl = 1;
965
966 if (client_reserve) {
967 hostdata->caps.reserve.common.cap_type = RESERVATION_CAPABILITIES;
968 hostdata->caps.reserve.common.length = sizeof(hostdata->caps.reserve);
969 hostdata->caps.reserve.common.server_support = SERVER_SUPPORTS_CAP;
970 hostdata->caps.reserve.type = CLIENT_RESERVE_SCSI_2;
971 req->common.length = sizeof(hostdata->caps);
972 } else
973 req->common.length = sizeof(hostdata->caps) - sizeof(hostdata->caps.reserve);
974
975 spin_lock_irqsave(hostdata->host->host_lock, flags);
976 if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
977 dev_err(hostdata->dev, "couldn't send CAPABILITIES_REQ!\n");
978 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
979};
980
981/**
982 * fast_fail_rsp: - Handle response to MAD enable fast fail
983 * @evt_struct: srp_event_struct with the response
984 *
985 * Used as a "done" callback by when sending enable fast fail. Gets called
986 * by ibmvscsi_handle_crq()
987 */
988static void fast_fail_rsp(struct srp_event_struct *evt_struct)
989{
990 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
991 u8 status = evt_struct->xfer_iu->mad.fast_fail.common.status;
992
993 if (status == VIOSRP_MAD_NOT_SUPPORTED)
994 dev_err(hostdata->dev, "fast_fail not supported in server\n");
995 else if (status == VIOSRP_MAD_FAILED)
996 dev_err(hostdata->dev, "fast_fail request failed\n");
997 else if (status != VIOSRP_MAD_SUCCESS)
998 dev_err(hostdata->dev, "error 0x%X enabling fast_fail\n", status);
999
1000 send_mad_capabilities(hostdata);
1001}
1002
1003/**
1004 * init_host - Start host initialization
1005 * @hostdata: ibmvscsi_host_data of host
1006 *
1007 * Returns zero if successful.
1008 */
1009static int enable_fast_fail(struct ibmvscsi_host_data *hostdata)
1010{
1011 int rc;
1012 unsigned long flags;
1013 struct viosrp_fast_fail *fast_fail_mad;
1014 struct srp_event_struct *evt_struct;
1015
1016 if (!fast_fail) {
1017 send_mad_capabilities(hostdata);
1018 return 0;
1019 }
1020
1021 evt_struct = get_event_struct(&hostdata->pool);
1022 BUG_ON(!evt_struct);
1023
1024 init_event_struct(evt_struct, fast_fail_rsp, VIOSRP_MAD_FORMAT, info_timeout);
1025
1026 fast_fail_mad = &evt_struct->iu.mad.fast_fail;
1027 memset(fast_fail_mad, 0, sizeof(*fast_fail_mad));
1028 fast_fail_mad->common.type = VIOSRP_ENABLE_FAST_FAIL;
1029 fast_fail_mad->common.length = sizeof(*fast_fail_mad);
1030
1031 spin_lock_irqsave(hostdata->host->host_lock, flags);
1032 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
1033 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1034 return rc;
1035}
1036
1037/**
1038 * adapter_info_rsp: - Handle response to MAD adapter info request
1039 * @evt_struct: srp_event_struct with the response
1040 *
1041 * Used as a "done" callback by when sending adapter_info. Gets called
1042 * by ibmvscsi_handle_crq()
1043*/
1044static void adapter_info_rsp(struct srp_event_struct *evt_struct)
1045{
1046 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
1047
1048 if (evt_struct->xfer_iu->mad.adapter_info.common.status) {
1049 dev_err(hostdata->dev, "error %d getting adapter info\n",
1050 evt_struct->xfer_iu->mad.adapter_info.common.status);
1051 } else {
1052 dev_info(hostdata->dev, "host srp version: %s, "
1053 "host partition %s (%d), OS %d, max io %u\n",
1054 hostdata->madapter_info.srp_version,
1055 hostdata->madapter_info.partition_name,
1056 hostdata->madapter_info.partition_number,
1057 hostdata->madapter_info.os_type,
1058 hostdata->madapter_info.port_max_txu[0]);
1059
1060 if (hostdata->madapter_info.port_max_txu[0])
1061 hostdata->host->max_sectors =
1062 hostdata->madapter_info.port_max_txu[0] >> 9;
1063
1064 if (hostdata->madapter_info.os_type == 3 &&
1065 strcmp(hostdata->madapter_info.srp_version, "1.6a") <= 0) {
1066 dev_err(hostdata->dev, "host (Ver. %s) doesn't support large transfers\n",
1067 hostdata->madapter_info.srp_version);
1068 dev_err(hostdata->dev, "limiting scatterlists to %d\n",
1069 MAX_INDIRECT_BUFS);
1070 hostdata->host->sg_tablesize = MAX_INDIRECT_BUFS;
1071 }
1072
1073 if (hostdata->madapter_info.os_type == 3) {
1074 enable_fast_fail(hostdata);
1075 return;
1076 }
1077 }
1078
1079 send_srp_login(hostdata);
1080}
1081
1082/**
1083 * send_mad_adapter_info: - Sends the mad adapter info request
1084 * and stores the result so it can be retrieved with
1085 * sysfs. We COULD consider causing a failure if the
1086 * returned SRP version doesn't match ours.
1087 * @hostdata: ibmvscsi_host_data of host
1088 *
1089 * Returns zero if successful.
1090*/
1091static void send_mad_adapter_info(struct ibmvscsi_host_data *hostdata)
1092{
1093 struct viosrp_adapter_info *req;
1094 struct srp_event_struct *evt_struct;
1095 unsigned long flags;
1096
1097 evt_struct = get_event_struct(&hostdata->pool);
1098 BUG_ON(!evt_struct);
1099
1100 init_event_struct(evt_struct,
1101 adapter_info_rsp,
1102 VIOSRP_MAD_FORMAT,
1103 info_timeout);
1104
1105 req = &evt_struct->iu.mad.adapter_info;
1106 memset(req, 0x00, sizeof(*req));
1107
1108 req->common.type = VIOSRP_ADAPTER_INFO_TYPE;
1109 req->common.length = sizeof(hostdata->madapter_info);
1110 req->buffer = hostdata->adapter_info_addr;
1111
1112 spin_lock_irqsave(hostdata->host->host_lock, flags);
1113 if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
1114 dev_err(hostdata->dev, "couldn't send ADAPTER_INFO_REQ!\n");
1115 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1116};
1117
1118/**
1119 * init_adapter: Start virtual adapter initialization sequence
1120 *
1121 */
1122static void init_adapter(struct ibmvscsi_host_data *hostdata)
1123{
1124 send_mad_adapter_info(hostdata);
1125}
1126
1127/**
1128 * sync_completion: Signal that a synchronous command has completed
1129 * Note that after returning from this call, the evt_struct is freed.
1130 * the caller waiting on this completion shouldn't touch the evt_struct
1131 * again.
1132 */
1133static void sync_completion(struct srp_event_struct *evt_struct)
1134{
1135 /* copy the response back */
1136 if (evt_struct->sync_srp)
1137 *evt_struct->sync_srp = *evt_struct->xfer_iu;
1138
1139 complete(&evt_struct->comp);
1140}
1141
1142/**
1143 * ibmvscsi_abort: Abort a command...from scsi host template
1144 * send this over to the server and wait synchronously for the response
1145 */
1146static int ibmvscsi_eh_abort_handler(struct scsi_cmnd *cmd)
1147{
1148 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
1149 struct srp_tsk_mgmt *tsk_mgmt;
1150 struct srp_event_struct *evt;
1151 struct srp_event_struct *tmp_evt, *found_evt;
1152 union viosrp_iu srp_rsp;
1153 int rsp_rc;
1154 unsigned long flags;
1155 u16 lun = lun_from_dev(cmd->device);
1156 unsigned long wait_switch = 0;
1157
1158 /* First, find this command in our sent list so we can figure
1159 * out the correct tag
1160 */
1161 spin_lock_irqsave(hostdata->host->host_lock, flags);
1162 wait_switch = jiffies + (init_timeout * HZ);
1163 do {
1164 found_evt = NULL;
1165 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1166 if (tmp_evt->cmnd == cmd) {
1167 found_evt = tmp_evt;
1168 break;
1169 }
1170 }
1171
1172 if (!found_evt) {
1173 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1174 return SUCCESS;
1175 }
1176
1177 evt = get_event_struct(&hostdata->pool);
1178 if (evt == NULL) {
1179 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1180 sdev_printk(KERN_ERR, cmd->device,
1181 "failed to allocate abort event\n");
1182 return FAILED;
1183 }
1184
1185 init_event_struct(evt,
1186 sync_completion,
1187 VIOSRP_SRP_FORMAT,
1188 abort_timeout);
1189
1190 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
1191
1192 /* Set up an abort SRP command */
1193 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1194 tsk_mgmt->opcode = SRP_TSK_MGMT;
1195 tsk_mgmt->lun = ((u64) lun) << 48;
1196 tsk_mgmt->tsk_mgmt_func = SRP_TSK_ABORT_TASK;
1197 tsk_mgmt->task_tag = (u64) found_evt;
1198
1199 evt->sync_srp = &srp_rsp;
1200
1201 init_completion(&evt->comp);
1202 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, abort_timeout * 2);
1203
1204 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1205 break;
1206
1207 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1208 msleep(10);
1209 spin_lock_irqsave(hostdata->host->host_lock, flags);
1210 } while (time_before(jiffies, wait_switch));
1211
1212 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1213
1214 if (rsp_rc != 0) {
1215 sdev_printk(KERN_ERR, cmd->device,
1216 "failed to send abort() event. rc=%d\n", rsp_rc);
1217 return FAILED;
1218 }
1219
1220 sdev_printk(KERN_INFO, cmd->device,
1221 "aborting command. lun 0x%llx, tag 0x%llx\n",
1222 (((u64) lun) << 48), (u64) found_evt);
1223
1224 wait_for_completion(&evt->comp);
1225
1226 /* make sure we got a good response */
1227 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
1228 if (printk_ratelimit())
1229 sdev_printk(KERN_WARNING, cmd->device, "abort bad SRP RSP type %d\n",
1230 srp_rsp.srp.rsp.opcode);
1231 return FAILED;
1232 }
1233
1234 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1235 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
1236 else
1237 rsp_rc = srp_rsp.srp.rsp.status;
1238
1239 if (rsp_rc) {
1240 if (printk_ratelimit())
1241 sdev_printk(KERN_WARNING, cmd->device,
1242 "abort code %d for task tag 0x%llx\n",
1243 rsp_rc, tsk_mgmt->task_tag);
1244 return FAILED;
1245 }
1246
1247 /* Because we dropped the spinlock above, it's possible
1248 * The event is no longer in our list. Make sure it didn't
1249 * complete while we were aborting
1250 */
1251 spin_lock_irqsave(hostdata->host->host_lock, flags);
1252 found_evt = NULL;
1253 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1254 if (tmp_evt->cmnd == cmd) {
1255 found_evt = tmp_evt;
1256 break;
1257 }
1258 }
1259
1260 if (found_evt == NULL) {
1261 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1262 sdev_printk(KERN_INFO, cmd->device, "aborted task tag 0x%llx completed\n",
1263 tsk_mgmt->task_tag);
1264 return SUCCESS;
1265 }
1266
1267 sdev_printk(KERN_INFO, cmd->device, "successfully aborted task tag 0x%llx\n",
1268 tsk_mgmt->task_tag);
1269
1270 cmd->result = (DID_ABORT << 16);
1271 list_del(&found_evt->list);
1272 unmap_cmd_data(&found_evt->iu.srp.cmd, found_evt,
1273 found_evt->hostdata->dev);
1274 free_event_struct(&found_evt->hostdata->pool, found_evt);
1275 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1276 atomic_inc(&hostdata->request_limit);
1277 return SUCCESS;
1278}
1279
1280/**
1281 * ibmvscsi_eh_device_reset_handler: Reset a single LUN...from scsi host
1282 * template send this over to the server and wait synchronously for the
1283 * response
1284 */
1285static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd *cmd)
1286{
1287 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
1288 struct srp_tsk_mgmt *tsk_mgmt;
1289 struct srp_event_struct *evt;
1290 struct srp_event_struct *tmp_evt, *pos;
1291 union viosrp_iu srp_rsp;
1292 int rsp_rc;
1293 unsigned long flags;
1294 u16 lun = lun_from_dev(cmd->device);
1295 unsigned long wait_switch = 0;
1296
1297 spin_lock_irqsave(hostdata->host->host_lock, flags);
1298 wait_switch = jiffies + (init_timeout * HZ);
1299 do {
1300 evt = get_event_struct(&hostdata->pool);
1301 if (evt == NULL) {
1302 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1303 sdev_printk(KERN_ERR, cmd->device,
1304 "failed to allocate reset event\n");
1305 return FAILED;
1306 }
1307
1308 init_event_struct(evt,
1309 sync_completion,
1310 VIOSRP_SRP_FORMAT,
1311 reset_timeout);
1312
1313 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
1314
1315 /* Set up a lun reset SRP command */
1316 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1317 tsk_mgmt->opcode = SRP_TSK_MGMT;
1318 tsk_mgmt->lun = ((u64) lun) << 48;
1319 tsk_mgmt->tsk_mgmt_func = SRP_TSK_LUN_RESET;
1320
1321 evt->sync_srp = &srp_rsp;
1322
1323 init_completion(&evt->comp);
1324 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, reset_timeout * 2);
1325
1326 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1327 break;
1328
1329 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1330 msleep(10);
1331 spin_lock_irqsave(hostdata->host->host_lock, flags);
1332 } while (time_before(jiffies, wait_switch));
1333
1334 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1335
1336 if (rsp_rc != 0) {
1337 sdev_printk(KERN_ERR, cmd->device,
1338 "failed to send reset event. rc=%d\n", rsp_rc);
1339 return FAILED;
1340 }
1341
1342 sdev_printk(KERN_INFO, cmd->device, "resetting device. lun 0x%llx\n",
1343 (((u64) lun) << 48));
1344
1345 wait_for_completion(&evt->comp);
1346
1347 /* make sure we got a good response */
1348 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
1349 if (printk_ratelimit())
1350 sdev_printk(KERN_WARNING, cmd->device, "reset bad SRP RSP type %d\n",
1351 srp_rsp.srp.rsp.opcode);
1352 return FAILED;
1353 }
1354
1355 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1356 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
1357 else
1358 rsp_rc = srp_rsp.srp.rsp.status;
1359
1360 if (rsp_rc) {
1361 if (printk_ratelimit())
1362 sdev_printk(KERN_WARNING, cmd->device,
1363 "reset code %d for task tag 0x%llx\n",
1364 rsp_rc, tsk_mgmt->task_tag);
1365 return FAILED;
1366 }
1367
1368 /* We need to find all commands for this LUN that have not yet been
1369 * responded to, and fail them with DID_RESET
1370 */
1371 spin_lock_irqsave(hostdata->host->host_lock, flags);
1372 list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
1373 if ((tmp_evt->cmnd) && (tmp_evt->cmnd->device == cmd->device)) {
1374 if (tmp_evt->cmnd)
1375 tmp_evt->cmnd->result = (DID_RESET << 16);
1376 list_del(&tmp_evt->list);
1377 unmap_cmd_data(&tmp_evt->iu.srp.cmd, tmp_evt,
1378 tmp_evt->hostdata->dev);
1379 free_event_struct(&tmp_evt->hostdata->pool,
1380 tmp_evt);
1381 atomic_inc(&hostdata->request_limit);
1382 if (tmp_evt->cmnd_done)
1383 tmp_evt->cmnd_done(tmp_evt->cmnd);
1384 else if (tmp_evt->done)
1385 tmp_evt->done(tmp_evt);
1386 }
1387 }
1388 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1389 return SUCCESS;
1390}
1391
1392/**
1393 * ibmvscsi_eh_host_reset_handler - Reset the connection to the server
1394 * @cmd: struct scsi_cmnd having problems
1395*/
1396static int ibmvscsi_eh_host_reset_handler(struct scsi_cmnd *cmd)
1397{
1398 unsigned long wait_switch = 0;
1399 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
1400
1401 dev_err(hostdata->dev, "Resetting connection due to error recovery\n");
1402
1403 ibmvscsi_reset_host(hostdata);
1404
1405 for (wait_switch = jiffies + (init_timeout * HZ);
1406 time_before(jiffies, wait_switch) &&
1407 atomic_read(&hostdata->request_limit) < 2;) {
1408
1409 msleep(10);
1410 }
1411
1412 if (atomic_read(&hostdata->request_limit) <= 0)
1413 return FAILED;
1414
1415 return SUCCESS;
1416}
1417
1418/**
1419 * ibmvscsi_handle_crq: - Handles and frees received events in the CRQ
1420 * @crq: Command/Response queue
1421 * @hostdata: ibmvscsi_host_data of host
1422 *
1423*/
1424void ibmvscsi_handle_crq(struct viosrp_crq *crq,
1425 struct ibmvscsi_host_data *hostdata)
1426{
1427 long rc;
1428 unsigned long flags;
1429 struct srp_event_struct *evt_struct =
1430 (struct srp_event_struct *)crq->IU_data_ptr;
1431 switch (crq->valid) {
1432 case 0xC0: /* initialization */
1433 switch (crq->format) {
1434 case 0x01: /* Initialization message */
1435 dev_info(hostdata->dev, "partner initialized\n");
1436 /* Send back a response */
1437 if ((rc = ibmvscsi_ops->send_crq(hostdata,
1438 0xC002000000000000LL, 0)) == 0) {
1439 /* Now login */
1440 init_adapter(hostdata);
1441 } else {
1442 dev_err(hostdata->dev, "Unable to send init rsp. rc=%ld\n", rc);
1443 }
1444
1445 break;
1446 case 0x02: /* Initialization response */
1447 dev_info(hostdata->dev, "partner initialization complete\n");
1448
1449 /* Now login */
1450 init_adapter(hostdata);
1451 break;
1452 default:
1453 dev_err(hostdata->dev, "unknown crq message type: %d\n", crq->format);
1454 }
1455 return;
1456 case 0xFF: /* Hypervisor telling us the connection is closed */
1457 scsi_block_requests(hostdata->host);
1458 atomic_set(&hostdata->request_limit, 0);
1459 if (crq->format == 0x06) {
1460 /* We need to re-setup the interpartition connection */
1461 dev_info(hostdata->dev, "Re-enabling adapter!\n");
1462 hostdata->client_migrated = 1;
1463 hostdata->reenable_crq = 1;
1464 purge_requests(hostdata, DID_REQUEUE);
1465 wake_up(&hostdata->work_wait_q);
1466 } else {
1467 dev_err(hostdata->dev, "Virtual adapter failed rc %d!\n",
1468 crq->format);
1469 ibmvscsi_reset_host(hostdata);
1470 }
1471 return;
1472 case 0x80: /* real payload */
1473 break;
1474 default:
1475 dev_err(hostdata->dev, "got an invalid message type 0x%02x\n",
1476 crq->valid);
1477 return;
1478 }
1479
1480 /* The only kind of payload CRQs we should get are responses to
1481 * things we send. Make sure this response is to something we
1482 * actually sent
1483 */
1484 if (!valid_event_struct(&hostdata->pool, evt_struct)) {
1485 dev_err(hostdata->dev, "returned correlation_token 0x%p is invalid!\n",
1486 (void *)crq->IU_data_ptr);
1487 return;
1488 }
1489
1490 if (atomic_read(&evt_struct->free)) {
1491 dev_err(hostdata->dev, "received duplicate correlation_token 0x%p!\n",
1492 (void *)crq->IU_data_ptr);
1493 return;
1494 }
1495
1496 if (crq->format == VIOSRP_SRP_FORMAT)
1497 atomic_add(evt_struct->xfer_iu->srp.rsp.req_lim_delta,
1498 &hostdata->request_limit);
1499
1500 del_timer(&evt_struct->timer);
1501
1502 if ((crq->status != VIOSRP_OK && crq->status != VIOSRP_OK2) && evt_struct->cmnd)
1503 evt_struct->cmnd->result = DID_ERROR << 16;
1504 if (evt_struct->done)
1505 evt_struct->done(evt_struct);
1506 else
1507 dev_err(hostdata->dev, "returned done() is NULL; not running it!\n");
1508
1509 /*
1510 * Lock the host_lock before messing with these structures, since we
1511 * are running in a task context
1512 */
1513 spin_lock_irqsave(evt_struct->hostdata->host->host_lock, flags);
1514 list_del(&evt_struct->list);
1515 free_event_struct(&evt_struct->hostdata->pool, evt_struct);
1516 spin_unlock_irqrestore(evt_struct->hostdata->host->host_lock, flags);
1517}
1518
1519/**
1520 * ibmvscsi_get_host_config: Send the command to the server to get host
1521 * configuration data. The data is opaque to us.
1522 */
1523static int ibmvscsi_do_host_config(struct ibmvscsi_host_data *hostdata,
1524 unsigned char *buffer, int length)
1525{
1526 struct viosrp_host_config *host_config;
1527 struct srp_event_struct *evt_struct;
1528 unsigned long flags;
1529 dma_addr_t addr;
1530 int rc;
1531
1532 evt_struct = get_event_struct(&hostdata->pool);
1533 if (!evt_struct) {
1534 dev_err(hostdata->dev, "couldn't allocate event for HOST_CONFIG!\n");
1535 return -1;
1536 }
1537
1538 init_event_struct(evt_struct,
1539 sync_completion,
1540 VIOSRP_MAD_FORMAT,
1541 info_timeout);
1542
1543 host_config = &evt_struct->iu.mad.host_config;
1544
1545 /* The transport length field is only 16-bit */
1546 length = min(0xffff, length);
1547
1548 /* Set up a lun reset SRP command */
1549 memset(host_config, 0x00, sizeof(*host_config));
1550 host_config->common.type = VIOSRP_HOST_CONFIG_TYPE;
1551 host_config->common.length = length;
1552 host_config->buffer = addr = dma_map_single(hostdata->dev, buffer,
1553 length,
1554 DMA_BIDIRECTIONAL);
1555
1556 if (dma_mapping_error(hostdata->dev, host_config->buffer)) {
1557 if (!firmware_has_feature(FW_FEATURE_CMO))
1558 dev_err(hostdata->dev,
1559 "dma_mapping error getting host config\n");
1560 free_event_struct(&hostdata->pool, evt_struct);
1561 return -1;
1562 }
1563
1564 init_completion(&evt_struct->comp);
1565 spin_lock_irqsave(hostdata->host->host_lock, flags);
1566 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
1567 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1568 if (rc == 0)
1569 wait_for_completion(&evt_struct->comp);
1570 dma_unmap_single(hostdata->dev, addr, length, DMA_BIDIRECTIONAL);
1571
1572 return rc;
1573}
1574
1575/**
1576 * ibmvscsi_slave_configure: Set the "allow_restart" flag for each disk.
1577 * @sdev: struct scsi_device device to configure
1578 *
1579 * Enable allow_restart for a device if it is a disk. Adjust the
1580 * queue_depth here also as is required by the documentation for
1581 * struct scsi_host_template.
1582 */
1583static int ibmvscsi_slave_configure(struct scsi_device *sdev)
1584{
1585 struct Scsi_Host *shost = sdev->host;
1586 unsigned long lock_flags = 0;
1587
1588 spin_lock_irqsave(shost->host_lock, lock_flags);
1589 if (sdev->type == TYPE_DISK) {
1590 sdev->allow_restart = 1;
1591 blk_queue_rq_timeout(sdev->request_queue, 120 * HZ);
1592 }
1593 scsi_adjust_queue_depth(sdev, 0, shost->cmd_per_lun);
1594 spin_unlock_irqrestore(shost->host_lock, lock_flags);
1595 return 0;
1596}
1597
1598/**
1599 * ibmvscsi_change_queue_depth - Change the device's queue depth
1600 * @sdev: scsi device struct
1601 * @qdepth: depth to set
1602 * @reason: calling context
1603 *
1604 * Return value:
1605 * actual depth set
1606 **/
1607static int ibmvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth,
1608 int reason)
1609{
1610 if (reason != SCSI_QDEPTH_DEFAULT)
1611 return -EOPNOTSUPP;
1612
1613 if (qdepth > IBMVSCSI_MAX_CMDS_PER_LUN)
1614 qdepth = IBMVSCSI_MAX_CMDS_PER_LUN;
1615
1616 scsi_adjust_queue_depth(sdev, 0, qdepth);
1617 return sdev->queue_depth;
1618}
1619
1620/* ------------------------------------------------------------
1621 * sysfs attributes
1622 */
1623static ssize_t show_host_vhost_loc(struct device *dev,
1624 struct device_attribute *attr, char *buf)
1625{
1626 struct Scsi_Host *shost = class_to_shost(dev);
1627 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1628 int len;
1629
1630 len = snprintf(buf, sizeof(hostdata->caps.loc), "%s\n",
1631 hostdata->caps.loc);
1632 return len;
1633}
1634
1635static struct device_attribute ibmvscsi_host_vhost_loc = {
1636 .attr = {
1637 .name = "vhost_loc",
1638 .mode = S_IRUGO,
1639 },
1640 .show = show_host_vhost_loc,
1641};
1642
1643static ssize_t show_host_vhost_name(struct device *dev,
1644 struct device_attribute *attr, char *buf)
1645{
1646 struct Scsi_Host *shost = class_to_shost(dev);
1647 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1648 int len;
1649
1650 len = snprintf(buf, sizeof(hostdata->caps.name), "%s\n",
1651 hostdata->caps.name);
1652 return len;
1653}
1654
1655static struct device_attribute ibmvscsi_host_vhost_name = {
1656 .attr = {
1657 .name = "vhost_name",
1658 .mode = S_IRUGO,
1659 },
1660 .show = show_host_vhost_name,
1661};
1662
1663static ssize_t show_host_srp_version(struct device *dev,
1664 struct device_attribute *attr, char *buf)
1665{
1666 struct Scsi_Host *shost = class_to_shost(dev);
1667 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1668 int len;
1669
1670 len = snprintf(buf, PAGE_SIZE, "%s\n",
1671 hostdata->madapter_info.srp_version);
1672 return len;
1673}
1674
1675static struct device_attribute ibmvscsi_host_srp_version = {
1676 .attr = {
1677 .name = "srp_version",
1678 .mode = S_IRUGO,
1679 },
1680 .show = show_host_srp_version,
1681};
1682
1683static ssize_t show_host_partition_name(struct device *dev,
1684 struct device_attribute *attr,
1685 char *buf)
1686{
1687 struct Scsi_Host *shost = class_to_shost(dev);
1688 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1689 int len;
1690
1691 len = snprintf(buf, PAGE_SIZE, "%s\n",
1692 hostdata->madapter_info.partition_name);
1693 return len;
1694}
1695
1696static struct device_attribute ibmvscsi_host_partition_name = {
1697 .attr = {
1698 .name = "partition_name",
1699 .mode = S_IRUGO,
1700 },
1701 .show = show_host_partition_name,
1702};
1703
1704static ssize_t show_host_partition_number(struct device *dev,
1705 struct device_attribute *attr,
1706 char *buf)
1707{
1708 struct Scsi_Host *shost = class_to_shost(dev);
1709 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1710 int len;
1711
1712 len = snprintf(buf, PAGE_SIZE, "%d\n",
1713 hostdata->madapter_info.partition_number);
1714 return len;
1715}
1716
1717static struct device_attribute ibmvscsi_host_partition_number = {
1718 .attr = {
1719 .name = "partition_number",
1720 .mode = S_IRUGO,
1721 },
1722 .show = show_host_partition_number,
1723};
1724
1725static ssize_t show_host_mad_version(struct device *dev,
1726 struct device_attribute *attr, char *buf)
1727{
1728 struct Scsi_Host *shost = class_to_shost(dev);
1729 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1730 int len;
1731
1732 len = snprintf(buf, PAGE_SIZE, "%d\n",
1733 hostdata->madapter_info.mad_version);
1734 return len;
1735}
1736
1737static struct device_attribute ibmvscsi_host_mad_version = {
1738 .attr = {
1739 .name = "mad_version",
1740 .mode = S_IRUGO,
1741 },
1742 .show = show_host_mad_version,
1743};
1744
1745static ssize_t show_host_os_type(struct device *dev,
1746 struct device_attribute *attr, char *buf)
1747{
1748 struct Scsi_Host *shost = class_to_shost(dev);
1749 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1750 int len;
1751
1752 len = snprintf(buf, PAGE_SIZE, "%d\n", hostdata->madapter_info.os_type);
1753 return len;
1754}
1755
1756static struct device_attribute ibmvscsi_host_os_type = {
1757 .attr = {
1758 .name = "os_type",
1759 .mode = S_IRUGO,
1760 },
1761 .show = show_host_os_type,
1762};
1763
1764static ssize_t show_host_config(struct device *dev,
1765 struct device_attribute *attr, char *buf)
1766{
1767 struct Scsi_Host *shost = class_to_shost(dev);
1768 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1769
1770 /* returns null-terminated host config data */
1771 if (ibmvscsi_do_host_config(hostdata, buf, PAGE_SIZE) == 0)
1772 return strlen(buf);
1773 else
1774 return 0;
1775}
1776
1777static struct device_attribute ibmvscsi_host_config = {
1778 .attr = {
1779 .name = "config",
1780 .mode = S_IRUGO,
1781 },
1782 .show = show_host_config,
1783};
1784
1785static struct device_attribute *ibmvscsi_attrs[] = {
1786 &ibmvscsi_host_vhost_loc,
1787 &ibmvscsi_host_vhost_name,
1788 &ibmvscsi_host_srp_version,
1789 &ibmvscsi_host_partition_name,
1790 &ibmvscsi_host_partition_number,
1791 &ibmvscsi_host_mad_version,
1792 &ibmvscsi_host_os_type,
1793 &ibmvscsi_host_config,
1794 NULL
1795};
1796
1797/* ------------------------------------------------------------
1798 * SCSI driver registration
1799 */
1800static struct scsi_host_template driver_template = {
1801 .module = THIS_MODULE,
1802 .name = "IBM POWER Virtual SCSI Adapter " IBMVSCSI_VERSION,
1803 .proc_name = "ibmvscsi",
1804 .queuecommand = ibmvscsi_queuecommand,
1805 .eh_abort_handler = ibmvscsi_eh_abort_handler,
1806 .eh_device_reset_handler = ibmvscsi_eh_device_reset_handler,
1807 .eh_host_reset_handler = ibmvscsi_eh_host_reset_handler,
1808 .slave_configure = ibmvscsi_slave_configure,
1809 .change_queue_depth = ibmvscsi_change_queue_depth,
1810 .cmd_per_lun = IBMVSCSI_CMDS_PER_LUN_DEFAULT,
1811 .can_queue = IBMVSCSI_MAX_REQUESTS_DEFAULT,
1812 .this_id = -1,
1813 .sg_tablesize = SG_ALL,
1814 .use_clustering = ENABLE_CLUSTERING,
1815 .shost_attrs = ibmvscsi_attrs,
1816};
1817
1818/**
1819 * ibmvscsi_get_desired_dma - Calculate IO memory desired by the driver
1820 *
1821 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1822 *
1823 * Return value:
1824 * Number of bytes of IO data the driver will need to perform well.
1825 */
1826static unsigned long ibmvscsi_get_desired_dma(struct vio_dev *vdev)
1827{
1828 /* iu_storage data allocated in initialize_event_pool */
1829 unsigned long desired_io = max_events * sizeof(union viosrp_iu);
1830
1831 /* add io space for sg data */
1832 desired_io += (IBMVSCSI_MAX_SECTORS_DEFAULT * 512 *
1833 IBMVSCSI_CMDS_PER_LUN_DEFAULT);
1834
1835 return desired_io;
1836}
1837
1838static void ibmvscsi_do_work(struct ibmvscsi_host_data *hostdata)
1839{
1840 int rc;
1841 char *action = "reset";
1842
1843 if (hostdata->reset_crq) {
1844 smp_rmb();
1845 hostdata->reset_crq = 0;
1846
1847 rc = ibmvscsi_ops->reset_crq_queue(&hostdata->queue, hostdata);
1848 if (!rc)
1849 rc = ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0);
1850 vio_enable_interrupts(to_vio_dev(hostdata->dev));
1851 } else if (hostdata->reenable_crq) {
1852 smp_rmb();
1853 action = "enable";
1854 rc = ibmvscsi_ops->reenable_crq_queue(&hostdata->queue, hostdata);
1855 hostdata->reenable_crq = 0;
1856 if (!rc)
1857 rc = ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0);
1858 } else
1859 return;
1860
1861 if (rc) {
1862 atomic_set(&hostdata->request_limit, -1);
1863 dev_err(hostdata->dev, "error after %s\n", action);
1864 }
1865
1866 scsi_unblock_requests(hostdata->host);
1867}
1868
1869static int ibmvscsi_work_to_do(struct ibmvscsi_host_data *hostdata)
1870{
1871 if (kthread_should_stop())
1872 return 1;
1873 else if (hostdata->reset_crq) {
1874 smp_rmb();
1875 return 1;
1876 } else if (hostdata->reenable_crq) {
1877 smp_rmb();
1878 return 1;
1879 }
1880
1881 return 0;
1882}
1883
1884static int ibmvscsi_work(void *data)
1885{
1886 struct ibmvscsi_host_data *hostdata = data;
1887 int rc;
1888
1889 set_user_nice(current, -20);
1890
1891 while (1) {
1892 rc = wait_event_interruptible(hostdata->work_wait_q,
1893 ibmvscsi_work_to_do(hostdata));
1894
1895 BUG_ON(rc);
1896
1897 if (kthread_should_stop())
1898 break;
1899
1900 ibmvscsi_do_work(hostdata);
1901 }
1902
1903 return 0;
1904}
1905
1906/**
1907 * Called by bus code for each adapter
1908 */
1909static int ibmvscsi_probe(struct vio_dev *vdev, const struct vio_device_id *id)
1910{
1911 struct ibmvscsi_host_data *hostdata;
1912 struct Scsi_Host *host;
1913 struct device *dev = &vdev->dev;
1914 struct srp_rport_identifiers ids;
1915 struct srp_rport *rport;
1916 unsigned long wait_switch = 0;
1917 int rc;
1918
1919 dev_set_drvdata(&vdev->dev, NULL);
1920
1921 host = scsi_host_alloc(&driver_template, sizeof(*hostdata));
1922 if (!host) {
1923 dev_err(&vdev->dev, "couldn't allocate host data\n");
1924 goto scsi_host_alloc_failed;
1925 }
1926
1927 host->transportt = ibmvscsi_transport_template;
1928 hostdata = shost_priv(host);
1929 memset(hostdata, 0x00, sizeof(*hostdata));
1930 INIT_LIST_HEAD(&hostdata->sent);
1931 init_waitqueue_head(&hostdata->work_wait_q);
1932 hostdata->host = host;
1933 hostdata->dev = dev;
1934 atomic_set(&hostdata->request_limit, -1);
1935 hostdata->host->max_sectors = IBMVSCSI_MAX_SECTORS_DEFAULT;
1936
1937 if (map_persist_bufs(hostdata)) {
1938 dev_err(&vdev->dev, "couldn't map persistent buffers\n");
1939 goto persist_bufs_failed;
1940 }
1941
1942 hostdata->work_thread = kthread_run(ibmvscsi_work, hostdata, "%s_%d",
1943 "ibmvscsi", host->host_no);
1944
1945 if (IS_ERR(hostdata->work_thread)) {
1946 dev_err(&vdev->dev, "couldn't initialize kthread. rc=%ld\n",
1947 PTR_ERR(hostdata->work_thread));
1948 goto init_crq_failed;
1949 }
1950
1951 rc = ibmvscsi_ops->init_crq_queue(&hostdata->queue, hostdata, max_events);
1952 if (rc != 0 && rc != H_RESOURCE) {
1953 dev_err(&vdev->dev, "couldn't initialize crq. rc=%d\n", rc);
1954 goto kill_kthread;
1955 }
1956 if (initialize_event_pool(&hostdata->pool, max_events, hostdata) != 0) {
1957 dev_err(&vdev->dev, "couldn't initialize event pool\n");
1958 goto init_pool_failed;
1959 }
1960
1961 host->max_lun = 8;
1962 host->max_id = max_id;
1963 host->max_channel = max_channel;
1964 host->max_cmd_len = 16;
1965
1966 if (scsi_add_host(hostdata->host, hostdata->dev))
1967 goto add_host_failed;
1968
1969 /* we don't have a proper target_port_id so let's use the fake one */
1970 memcpy(ids.port_id, hostdata->madapter_info.partition_name,
1971 sizeof(ids.port_id));
1972 ids.roles = SRP_RPORT_ROLE_TARGET;
1973 rport = srp_rport_add(host, &ids);
1974 if (IS_ERR(rport))
1975 goto add_srp_port_failed;
1976
1977 /* Try to send an initialization message. Note that this is allowed
1978 * to fail if the other end is not acive. In that case we don't
1979 * want to scan
1980 */
1981 if (ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0) == 0
1982 || rc == H_RESOURCE) {
1983 /*
1984 * Wait around max init_timeout secs for the adapter to finish
1985 * initializing. When we are done initializing, we will have a
1986 * valid request_limit. We don't want Linux scanning before
1987 * we are ready.
1988 */
1989 for (wait_switch = jiffies + (init_timeout * HZ);
1990 time_before(jiffies, wait_switch) &&
1991 atomic_read(&hostdata->request_limit) < 2;) {
1992
1993 msleep(10);
1994 }
1995
1996 /* if we now have a valid request_limit, initiate a scan */
1997 if (atomic_read(&hostdata->request_limit) > 0)
1998 scsi_scan_host(host);
1999 }
2000
2001 dev_set_drvdata(&vdev->dev, hostdata);
2002 return 0;
2003
2004 add_srp_port_failed:
2005 scsi_remove_host(hostdata->host);
2006 add_host_failed:
2007 release_event_pool(&hostdata->pool, hostdata);
2008 init_pool_failed:
2009 ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata, max_events);
2010 kill_kthread:
2011 kthread_stop(hostdata->work_thread);
2012 init_crq_failed:
2013 unmap_persist_bufs(hostdata);
2014 persist_bufs_failed:
2015 scsi_host_put(host);
2016 scsi_host_alloc_failed:
2017 return -1;
2018}
2019
2020static int ibmvscsi_remove(struct vio_dev *vdev)
2021{
2022 struct ibmvscsi_host_data *hostdata = dev_get_drvdata(&vdev->dev);
2023 unmap_persist_bufs(hostdata);
2024 release_event_pool(&hostdata->pool, hostdata);
2025 ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata,
2026 max_events);
2027
2028 kthread_stop(hostdata->work_thread);
2029 srp_remove_host(hostdata->host);
2030 scsi_remove_host(hostdata->host);
2031 scsi_host_put(hostdata->host);
2032
2033 return 0;
2034}
2035
2036/**
2037 * ibmvscsi_resume: Resume from suspend
2038 * @dev: device struct
2039 *
2040 * We may have lost an interrupt across suspend/resume, so kick the
2041 * interrupt handler
2042 */
2043static int ibmvscsi_resume(struct device *dev)
2044{
2045 struct ibmvscsi_host_data *hostdata = dev_get_drvdata(dev);
2046 return ibmvscsi_ops->resume(hostdata);
2047}
2048
2049/**
2050 * ibmvscsi_device_table: Used by vio.c to match devices in the device tree we
2051 * support.
2052 */
2053static struct vio_device_id ibmvscsi_device_table[] __devinitdata = {
2054 {"vscsi", "IBM,v-scsi"},
2055 { "", "" }
2056};
2057MODULE_DEVICE_TABLE(vio, ibmvscsi_device_table);
2058
2059static struct dev_pm_ops ibmvscsi_pm_ops = {
2060 .resume = ibmvscsi_resume
2061};
2062
2063static struct vio_driver ibmvscsi_driver = {
2064 .id_table = ibmvscsi_device_table,
2065 .probe = ibmvscsi_probe,
2066 .remove = ibmvscsi_remove,
2067 .get_desired_dma = ibmvscsi_get_desired_dma,
2068 .name = "ibmvscsi",
2069 .pm = &ibmvscsi_pm_ops,
2070};
2071
2072static struct srp_function_template ibmvscsi_transport_functions = {
2073};
2074
2075int __init ibmvscsi_module_init(void)
2076{
2077 int ret;
2078
2079 /* Ensure we have two requests to do error recovery */
2080 driver_template.can_queue = max_requests;
2081 max_events = max_requests + 2;
2082
2083 if (firmware_has_feature(FW_FEATURE_VIO))
2084 ibmvscsi_ops = &rpavscsi_ops;
2085 else
2086 return -ENODEV;
2087
2088 ibmvscsi_transport_template =
2089 srp_attach_transport(&ibmvscsi_transport_functions);
2090 if (!ibmvscsi_transport_template)
2091 return -ENOMEM;
2092
2093 ret = vio_register_driver(&ibmvscsi_driver);
2094 if (ret)
2095 srp_release_transport(ibmvscsi_transport_template);
2096 return ret;
2097}
2098
2099void __exit ibmvscsi_module_exit(void)
2100{
2101 vio_unregister_driver(&ibmvscsi_driver);
2102 srp_release_transport(ibmvscsi_transport_template);
2103}
2104
2105module_init(ibmvscsi_module_init);
2106module_exit(ibmvscsi_module_exit);