blob: c62b3e5d44bd9d04dd270259725298505fc2c519 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -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
Bart Van Assche9b7dac02009-12-04 20:43:37 +010043 * puts the message in the next 16 byte space in round-robin fashion,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * 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 *
Stephen Rothwell78347992012-03-07 18:35:38 +000058 * TODO: This is currently pretty tied to the IBM pSeries hypervisor
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090067#include <linux/slab.h>
Brian King126c5cc2009-06-08 16:19:08 -050068#include <linux/of.h>
Brian King64355b92010-02-21 10:37:57 -060069#include <linux/pm.h>
Brian King0f33ece2010-06-17 13:56:00 -050070#include <linux/kthread.h>
David Woodhoused3849d52007-09-22 08:29:36 +100071#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#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>
FUJITA Tomonori4d680412007-06-27 16:32:50 +090077#include <scsi/scsi_transport_srp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#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;
Robert Jenningse1a5ce52009-06-08 16:19:03 -050087static int init_timeout = 300;
88static int login_timeout = 60;
89static int info_timeout = 30;
90static int abort_timeout = 60;
91static int reset_timeout = 60;
Robert Jenningsa897ff22007-03-28 12:45:46 -050092static int max_requests = IBMVSCSI_MAX_REQUESTS_DEFAULT;
Brian King4f10aae2008-12-17 17:19:33 -060093static int max_events = IBMVSCSI_MAX_REQUESTS_DEFAULT + 2;
Robert Jenningsc1988e312009-06-08 16:19:07 -050094static int fast_fail = 1;
Brian King126c5cc2009-06-08 16:19:08 -050095static int client_reserve = 1;
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +100096static char partition_name[97] = "UNKNOWN";
97static unsigned int partition_number = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
FUJITA Tomonori4d680412007-06-27 16:32:50 +090099static struct scsi_transport_template *ibmvscsi_transport_template;
100
Brian Kingaac31182010-06-17 13:56:04 -0500101#define IBMVSCSI_VERSION "1.5.9"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
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");
Brian King21465ed2008-12-08 17:01:47 -0600114module_param_named(max_requests, max_requests, int, S_IRUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115MODULE_PARM_DESC(max_requests, "Maximum requests for this adapter");
Robert Jenningsc1988e312009-06-08 16:19:07 -0500116module_param_named(fast_fail, fast_fail, int, S_IRUGO | S_IWUSR);
117MODULE_PARM_DESC(fast_fail, "Enable fast fail. [Default=1]");
Brian King126c5cc2009-06-08 16:19:08 -0500118module_param_named(client_reserve, client_reserve, int, S_IRUGO );
119MODULE_PARM_DESC(client_reserve, "Attempt client managed reserve/release");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +1000121static void ibmvscsi_handle_crq(struct viosrp_crq *crq,
122 struct ibmvscsi_host_data *hostdata);
123
124/* ------------------------------------------------------------
125 * Routines for managing the command/response queue
126 */
127/**
128 * ibmvscsi_handle_event: - Interrupt handler for crq events
129 * @irq: number of irq to handle, not used
130 * @dev_instance: ibmvscsi_host_data of host that received interrupt
131 *
132 * Disables interrupts and schedules srp_task
133 * Always returns IRQ_HANDLED
134 */
135static irqreturn_t ibmvscsi_handle_event(int irq, void *dev_instance)
136{
137 struct ibmvscsi_host_data *hostdata =
138 (struct ibmvscsi_host_data *)dev_instance;
139 vio_disable_interrupts(to_vio_dev(hostdata->dev));
140 tasklet_schedule(&hostdata->srp_task);
141 return IRQ_HANDLED;
142}
143
144/**
145 * release_crq_queue: - Deallocates data and unregisters CRQ
146 * @queue: crq_queue to initialize and register
147 * @host_data: ibmvscsi_host_data of host
148 *
149 * Frees irq, deallocates a page for messages, unmaps dma, and unregisters
150 * the crq with the hypervisor.
151 */
152static void ibmvscsi_release_crq_queue(struct crq_queue *queue,
153 struct ibmvscsi_host_data *hostdata,
154 int max_requests)
155{
156 long rc = 0;
157 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
158 free_irq(vdev->irq, (void *)hostdata);
159 tasklet_kill(&hostdata->srp_task);
160 do {
161 if (rc)
162 msleep(100);
163 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
164 } while ((rc == H_BUSY) || (H_IS_LONG_BUSY(rc)));
165 dma_unmap_single(hostdata->dev,
166 queue->msg_token,
167 queue->size * sizeof(*queue->msgs), DMA_BIDIRECTIONAL);
168 free_page((unsigned long)queue->msgs);
169}
170
171/**
172 * crq_queue_next_crq: - Returns the next entry in message queue
173 * @queue: crq_queue to use
174 *
175 * Returns pointer to next entry in queue, or NULL if there are no new
176 * entried in the CRQ.
177 */
178static struct viosrp_crq *crq_queue_next_crq(struct crq_queue *queue)
179{
180 struct viosrp_crq *crq;
181 unsigned long flags;
182
183 spin_lock_irqsave(&queue->lock, flags);
184 crq = &queue->msgs[queue->cur];
185 if (crq->valid & 0x80) {
186 if (++queue->cur == queue->size)
187 queue->cur = 0;
Brian Kingc8e9b342014-05-23 10:52:11 -0500188
189 /* Ensure the read of the valid bit occurs before reading any
190 * other bits of the CRQ entry
191 */
192 rmb();
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +1000193 } else
194 crq = NULL;
195 spin_unlock_irqrestore(&queue->lock, flags);
196
197 return crq;
198}
199
200/**
201 * ibmvscsi_send_crq: - Send a CRQ
202 * @hostdata: the adapter
203 * @word1: the first 64 bits of the data
204 * @word2: the second 64 bits of the data
205 */
206static int ibmvscsi_send_crq(struct ibmvscsi_host_data *hostdata,
207 u64 word1, u64 word2)
208{
209 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
210
Brian Kingc8e9b342014-05-23 10:52:11 -0500211 /*
212 * Ensure the command buffer is flushed to memory before handing it
213 * over to the VIOS to prevent it from fetching any stale data.
214 */
215 mb();
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +1000216 return plpar_hcall_norets(H_SEND_CRQ, vdev->unit_address, word1, word2);
217}
218
219/**
220 * ibmvscsi_task: - Process srps asynchronously
221 * @data: ibmvscsi_host_data of host
222 */
223static void ibmvscsi_task(void *data)
224{
225 struct ibmvscsi_host_data *hostdata = (struct ibmvscsi_host_data *)data;
226 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
227 struct viosrp_crq *crq;
228 int done = 0;
229
230 while (!done) {
231 /* Pull all the valid messages off the CRQ */
232 while ((crq = crq_queue_next_crq(&hostdata->queue)) != NULL) {
233 ibmvscsi_handle_crq(crq, hostdata);
234 crq->valid = 0x00;
235 }
236
237 vio_enable_interrupts(vdev);
238 crq = crq_queue_next_crq(&hostdata->queue);
239 if (crq != NULL) {
240 vio_disable_interrupts(vdev);
241 ibmvscsi_handle_crq(crq, hostdata);
242 crq->valid = 0x00;
243 } else {
244 done = 1;
245 }
246 }
247}
248
249static void gather_partition_info(void)
250{
251 struct device_node *rootdn;
252
253 const char *ppartition_name;
254 const unsigned int *p_number_ptr;
255
256 /* Retrieve information about this partition */
257 rootdn = of_find_node_by_path("/");
258 if (!rootdn) {
259 return;
260 }
261
262 ppartition_name = of_get_property(rootdn, "ibm,partition-name", NULL);
263 if (ppartition_name)
264 strncpy(partition_name, ppartition_name,
265 sizeof(partition_name));
266 p_number_ptr = of_get_property(rootdn, "ibm,partition-no", NULL);
267 if (p_number_ptr)
268 partition_number = *p_number_ptr;
269 of_node_put(rootdn);
270}
271
272static void set_adapter_info(struct ibmvscsi_host_data *hostdata)
273{
274 memset(&hostdata->madapter_info, 0x00,
275 sizeof(hostdata->madapter_info));
276
277 dev_info(hostdata->dev, "SRP_VERSION: %s\n", SRP_VERSION);
278 strcpy(hostdata->madapter_info.srp_version, SRP_VERSION);
279
280 strncpy(hostdata->madapter_info.partition_name, partition_name,
281 sizeof(hostdata->madapter_info.partition_name));
282
283 hostdata->madapter_info.partition_number = partition_number;
284
285 hostdata->madapter_info.mad_version = 1;
286 hostdata->madapter_info.os_type = 2;
287}
288
289/**
290 * reset_crq_queue: - resets a crq after a failure
291 * @queue: crq_queue to initialize and register
292 * @hostdata: ibmvscsi_host_data of host
293 *
294 */
295static int ibmvscsi_reset_crq_queue(struct crq_queue *queue,
296 struct ibmvscsi_host_data *hostdata)
297{
298 int rc = 0;
299 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
300
301 /* Close the CRQ */
302 do {
303 if (rc)
304 msleep(100);
305 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
306 } while ((rc == H_BUSY) || (H_IS_LONG_BUSY(rc)));
307
308 /* Clean out the queue */
309 memset(queue->msgs, 0x00, PAGE_SIZE);
310 queue->cur = 0;
311
312 set_adapter_info(hostdata);
313
314 /* And re-open it again */
315 rc = plpar_hcall_norets(H_REG_CRQ,
316 vdev->unit_address,
317 queue->msg_token, PAGE_SIZE);
318 if (rc == 2) {
319 /* Adapter is good, but other end is not ready */
320 dev_warn(hostdata->dev, "Partner adapter not ready\n");
321 } else if (rc != 0) {
322 dev_warn(hostdata->dev, "couldn't register crq--rc 0x%x\n", rc);
323 }
324 return rc;
325}
326
327/**
328 * initialize_crq_queue: - Initializes and registers CRQ with hypervisor
329 * @queue: crq_queue to initialize and register
330 * @hostdata: ibmvscsi_host_data of host
331 *
332 * Allocates a page for messages, maps it for dma, and registers
333 * the crq with the hypervisor.
334 * Returns zero on success.
335 */
336static int ibmvscsi_init_crq_queue(struct crq_queue *queue,
337 struct ibmvscsi_host_data *hostdata,
338 int max_requests)
339{
340 int rc;
341 int retrc;
342 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
343
344 queue->msgs = (struct viosrp_crq *)get_zeroed_page(GFP_KERNEL);
345
346 if (!queue->msgs)
347 goto malloc_failed;
348 queue->size = PAGE_SIZE / sizeof(*queue->msgs);
349
350 queue->msg_token = dma_map_single(hostdata->dev, queue->msgs,
351 queue->size * sizeof(*queue->msgs),
352 DMA_BIDIRECTIONAL);
353
354 if (dma_mapping_error(hostdata->dev, queue->msg_token))
355 goto map_failed;
356
357 gather_partition_info();
358 set_adapter_info(hostdata);
359
360 retrc = rc = plpar_hcall_norets(H_REG_CRQ,
361 vdev->unit_address,
362 queue->msg_token, PAGE_SIZE);
363 if (rc == H_RESOURCE)
364 /* maybe kexecing and resource is busy. try a reset */
365 rc = ibmvscsi_reset_crq_queue(queue,
366 hostdata);
367
368 if (rc == 2) {
369 /* Adapter is good, but other end is not ready */
370 dev_warn(hostdata->dev, "Partner adapter not ready\n");
371 retrc = 0;
372 } else if (rc != 0) {
373 dev_warn(hostdata->dev, "Error %d opening adapter\n", rc);
374 goto reg_crq_failed;
375 }
376
377 queue->cur = 0;
378 spin_lock_init(&queue->lock);
379
380 tasklet_init(&hostdata->srp_task, (void *)ibmvscsi_task,
381 (unsigned long)hostdata);
382
383 if (request_irq(vdev->irq,
384 ibmvscsi_handle_event,
385 0, "ibmvscsi", (void *)hostdata) != 0) {
386 dev_err(hostdata->dev, "couldn't register irq 0x%x\n",
387 vdev->irq);
388 goto req_irq_failed;
389 }
390
391 rc = vio_enable_interrupts(vdev);
392 if (rc != 0) {
393 dev_err(hostdata->dev, "Error %d enabling interrupts!!!\n", rc);
394 goto req_irq_failed;
395 }
396
397 return retrc;
398
399 req_irq_failed:
400 tasklet_kill(&hostdata->srp_task);
401 rc = 0;
402 do {
403 if (rc)
404 msleep(100);
405 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
406 } while ((rc == H_BUSY) || (H_IS_LONG_BUSY(rc)));
407 reg_crq_failed:
408 dma_unmap_single(hostdata->dev,
409 queue->msg_token,
410 queue->size * sizeof(*queue->msgs), DMA_BIDIRECTIONAL);
411 map_failed:
412 free_page((unsigned long)queue->msgs);
413 malloc_failed:
414 return -1;
415}
416
417/**
418 * reenable_crq_queue: - reenables a crq after
419 * @queue: crq_queue to initialize and register
420 * @hostdata: ibmvscsi_host_data of host
421 *
422 */
423static int ibmvscsi_reenable_crq_queue(struct crq_queue *queue,
424 struct ibmvscsi_host_data *hostdata)
425{
426 int rc = 0;
427 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
428
429 /* Re-enable the CRQ */
430 do {
431 if (rc)
432 msleep(100);
433 rc = plpar_hcall_norets(H_ENABLE_CRQ, vdev->unit_address);
434 } while ((rc == H_IN_PROGRESS) || (rc == H_BUSY) || (H_IS_LONG_BUSY(rc)));
435
436 if (rc)
437 dev_err(hostdata->dev, "Error %d enabling adapter\n", rc);
438 return rc;
439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/* ------------------------------------------------------------
442 * Routines for the event pool and event structs
443 */
444/**
445 * initialize_event_pool: - Allocates and initializes the event pool for a host
446 * @pool: event_pool to be initialized
447 * @size: Number of events in pool
448 * @hostdata: ibmvscsi_host_data who owns the event pool
449 *
450 * Returns zero on success.
451*/
452static int initialize_event_pool(struct event_pool *pool,
453 int size, struct ibmvscsi_host_data *hostdata)
454{
455 int i;
456
457 pool->size = size;
458 pool->next = 0;
FUJITA Tomonori4c021dd132006-04-07 19:10:03 +0900459 pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (!pool->events)
461 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 pool->iu_storage =
464 dma_alloc_coherent(hostdata->dev,
465 pool->size * sizeof(*pool->iu_storage),
466 &pool->iu_token, 0);
467 if (!pool->iu_storage) {
468 kfree(pool->events);
469 return -ENOMEM;
470 }
471
472 for (i = 0; i < pool->size; ++i) {
473 struct srp_event_struct *evt = &pool->events[i];
474 memset(&evt->crq, 0x00, sizeof(evt->crq));
475 atomic_set(&evt->free, 1);
476 evt->crq.valid = 0x80;
477 evt->crq.IU_length = sizeof(*evt->xfer_iu);
478 evt->crq.IU_data_ptr = pool->iu_token +
479 sizeof(*evt->xfer_iu) * i;
480 evt->xfer_iu = pool->iu_storage + i;
481 evt->hostdata = hostdata;
James Bottomley4dddbc22005-09-06 17:11:54 -0500482 evt->ext_list = NULL;
483 evt->ext_list_token = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
486 return 0;
487}
488
489/**
490 * release_event_pool: - Frees memory of an event pool of a host
491 * @pool: event_pool to be released
492 * @hostdata: ibmvscsi_host_data who owns the even pool
493 *
494 * Returns zero on success.
495*/
496static void release_event_pool(struct event_pool *pool,
497 struct ibmvscsi_host_data *hostdata)
498{
499 int i, in_use = 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500500 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (atomic_read(&pool->events[i].free) != 1)
502 ++in_use;
James Bottomley4dddbc22005-09-06 17:11:54 -0500503 if (pool->events[i].ext_list) {
504 dma_free_coherent(hostdata->dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900505 SG_ALL * sizeof(struct srp_direct_buf),
James Bottomley4dddbc22005-09-06 17:11:54 -0500506 pool->events[i].ext_list,
507 pool->events[i].ext_list_token);
508 }
509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (in_use)
Brian King6c0a60e2007-06-13 17:12:19 -0500511 dev_warn(hostdata->dev, "releasing event pool with %d "
512 "events still in use?\n", in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 kfree(pool->events);
514 dma_free_coherent(hostdata->dev,
515 pool->size * sizeof(*pool->iu_storage),
516 pool->iu_storage, pool->iu_token);
517}
518
519/**
520 * valid_event_struct: - Determines if event is valid.
521 * @pool: event_pool that contains the event
522 * @evt: srp_event_struct to be checked for validity
523 *
524 * Returns zero if event is invalid, one otherwise.
525*/
526static int valid_event_struct(struct event_pool *pool,
527 struct srp_event_struct *evt)
528{
529 int index = evt - pool->events;
530 if (index < 0 || index >= pool->size) /* outside of bounds */
531 return 0;
532 if (evt != pool->events + index) /* unaligned */
533 return 0;
534 return 1;
535}
536
537/**
538 * ibmvscsi_free-event_struct: - Changes status of event to "free"
539 * @pool: event_pool that contains the event
540 * @evt: srp_event_struct to be modified
541 *
542*/
543static void free_event_struct(struct event_pool *pool,
544 struct srp_event_struct *evt)
545{
546 if (!valid_event_struct(pool, evt)) {
Brian King6c0a60e2007-06-13 17:12:19 -0500547 dev_err(evt->hostdata->dev, "Freeing invalid event_struct %p "
548 "(not in pool %p)\n", evt, pool->events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return;
550 }
551 if (atomic_inc_return(&evt->free) != 1) {
Brian King6c0a60e2007-06-13 17:12:19 -0500552 dev_err(evt->hostdata->dev, "Freeing event_struct %p "
553 "which is not in use!\n", evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return;
555 }
556}
557
558/**
559 * get_evt_struct: - Gets the next free event in pool
560 * @pool: event_pool that contains the events to be searched
561 *
562 * Returns the next event in "free" state, and NULL if none are free.
563 * Note that no synchronization is done here, we assume the host_lock
564 * will syncrhonze things.
565*/
566static struct srp_event_struct *get_event_struct(struct event_pool *pool)
567{
568 int i;
569 int poolsize = pool->size;
570 int offset = pool->next;
571
572 for (i = 0; i < poolsize; i++) {
573 offset = (offset + 1) % poolsize;
574 if (!atomic_dec_if_positive(&pool->events[offset].free)) {
575 pool->next = offset;
576 return &pool->events[offset];
577 }
578 }
579
580 printk(KERN_ERR "ibmvscsi: found no event struct in pool!\n");
581 return NULL;
582}
583
584/**
585 * init_event_struct: Initialize fields in an event struct that are always
586 * required.
587 * @evt: The event
588 * @done: Routine to call when the event is responded to
589 * @format: SRP or MAD format
590 * @timeout: timeout value set in the CRQ
591 */
592static void init_event_struct(struct srp_event_struct *evt_struct,
593 void (*done) (struct srp_event_struct *),
594 u8 format,
595 int timeout)
596{
597 evt_struct->cmnd = NULL;
598 evt_struct->cmnd_done = NULL;
599 evt_struct->sync_srp = NULL;
600 evt_struct->crq.format = format;
601 evt_struct->crq.timeout = timeout;
602 evt_struct->done = done;
603}
604
605/* ------------------------------------------------------------
606 * Routines for receiving SCSI responses from the hosting partition
607 */
608
609/**
610 * set_srp_direction: Set the fields in the srp related to data
611 * direction and number of buffers based on the direction in
612 * the scsi_cmnd and the number of buffers
613 */
614static void set_srp_direction(struct scsi_cmnd *cmd,
615 struct srp_cmd *srp_cmd,
616 int numbuf)
617{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900618 u8 fmt;
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (numbuf == 0)
621 return;
622
FUJITA Tomonorief265672006-03-26 03:57:14 +0900623 if (numbuf == 1)
624 fmt = SRP_DATA_DESC_DIRECT;
625 else {
626 fmt = SRP_DATA_DESC_INDIRECT;
627 numbuf = min(numbuf, MAX_INDIRECT_BUFS);
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (cmd->sc_data_direction == DMA_TO_DEVICE)
FUJITA Tomonorief265672006-03-26 03:57:14 +0900630 srp_cmd->data_out_desc_cnt = numbuf;
631 else
632 srp_cmd->data_in_desc_cnt = numbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
FUJITA Tomonorief265672006-03-26 03:57:14 +0900634
635 if (cmd->sc_data_direction == DMA_TO_DEVICE)
636 srp_cmd->buf_fmt = fmt << 4;
637 else
638 srp_cmd->buf_fmt = fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/**
642 * unmap_cmd_data: - Unmap data pointed in srp_cmd based on the format
643 * @cmd: srp_cmd whose additional_data member will be unmapped
644 * @dev: device for which the memory is mapped
645 *
646*/
James Bottomley4dddbc22005-09-06 17:11:54 -0500647static void unmap_cmd_data(struct srp_cmd *cmd,
648 struct srp_event_struct *evt_struct,
649 struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900651 u8 out_fmt, in_fmt;
652
653 out_fmt = cmd->buf_fmt >> 4;
654 in_fmt = cmd->buf_fmt & ((1U << 4) - 1);
655
656 if (out_fmt == SRP_NO_DATA_DESC && in_fmt == SRP_NO_DATA_DESC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return;
James Bottomley4dddbc22005-09-06 17:11:54 -0500658
FUJITA Tomonoria71fa1f2010-04-02 15:50:24 +0900659 if (evt_struct->cmnd)
660 scsi_dma_unmap(evt_struct->cmnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900663static int map_sg_list(struct scsi_cmnd *cmd, int nseg,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900664 struct srp_direct_buf *md)
James Bottomley4dddbc22005-09-06 17:11:54 -0500665{
666 int i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900667 struct scatterlist *sg;
James Bottomley4dddbc22005-09-06 17:11:54 -0500668 u64 total_length = 0;
669
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900670 scsi_for_each_sg(cmd, sg, nseg, i) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900671 struct srp_direct_buf *descr = md + i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900672 descr->va = sg_dma_address(sg);
673 descr->len = sg_dma_len(sg);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900674 descr->key = 0;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900675 total_length += sg_dma_len(sg);
James Bottomley4dddbc22005-09-06 17:11:54 -0500676 }
677 return total_length;
678}
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680/**
681 * map_sg_data: - Maps dma for a scatterlist and initializes decriptor fields
682 * @cmd: Scsi_Cmnd with the scatterlist
683 * @srp_cmd: srp_cmd that contains the memory descriptor
684 * @dev: device for which to map dma memory
685 *
686 * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
687 * Returns 1 on success.
688*/
689static int map_sg_data(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500690 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 struct srp_cmd *srp_cmd, struct device *dev)
692{
693
James Bottomley4dddbc22005-09-06 17:11:54 -0500694 int sg_mapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 u64 total_length = 0;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900696 struct srp_direct_buf *data =
697 (struct srp_direct_buf *) srp_cmd->add_data;
698 struct srp_indirect_buf *indirect =
699 (struct srp_indirect_buf *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900701 sg_mapped = scsi_dma_map(cmd);
702 if (!sg_mapped)
703 return 1;
704 else if (sg_mapped < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return 0;
706
707 set_srp_direction(cmd, srp_cmd, sg_mapped);
708
709 /* special case; we can use a single direct descriptor */
710 if (sg_mapped == 1) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900711 map_sg_list(cmd, sg_mapped, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return 1;
713 }
714
FUJITA Tomonorief265672006-03-26 03:57:14 +0900715 indirect->table_desc.va = 0;
716 indirect->table_desc.len = sg_mapped * sizeof(struct srp_direct_buf);
717 indirect->table_desc.key = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
James Bottomley4dddbc22005-09-06 17:11:54 -0500719 if (sg_mapped <= MAX_INDIRECT_BUFS) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900720 total_length = map_sg_list(cmd, sg_mapped,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900721 &indirect->desc_list[0]);
722 indirect->len = total_length;
James Bottomley4dddbc22005-09-06 17:11:54 -0500723 return 1;
724 }
725
726 /* get indirect table */
727 if (!evt_struct->ext_list) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900728 evt_struct->ext_list = (struct srp_direct_buf *)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900729 dma_alloc_coherent(dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900730 SG_ALL * sizeof(struct srp_direct_buf),
731 &evt_struct->ext_list_token, 0);
James Bottomley4dddbc22005-09-06 17:11:54 -0500732 if (!evt_struct->ext_list) {
Robert Jennings7912a0a2008-07-24 04:35:27 +1000733 if (!firmware_has_feature(FW_FEATURE_CMO))
734 sdev_printk(KERN_ERR, cmd->device,
735 "Can't allocate memory "
736 "for indirect table\n");
Robert Jenningse637d552009-01-22 13:40:09 -0600737 scsi_dma_unmap(cmd);
James Bottomley4dddbc22005-09-06 17:11:54 -0500738 return 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500739 }
740 }
741
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900742 total_length = map_sg_list(cmd, sg_mapped, evt_struct->ext_list);
James Bottomley4dddbc22005-09-06 17:11:54 -0500743
FUJITA Tomonorief265672006-03-26 03:57:14 +0900744 indirect->len = total_length;
745 indirect->table_desc.va = evt_struct->ext_list_token;
746 indirect->table_desc.len = sg_mapped * sizeof(indirect->desc_list[0]);
747 memcpy(indirect->desc_list, evt_struct->ext_list,
748 MAX_INDIRECT_BUFS * sizeof(struct srp_direct_buf));
James Bottomley4dddbc22005-09-06 17:11:54 -0500749 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
752/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * map_data_for_srp_cmd: - Calls functions to map data for srp cmds
754 * @cmd: struct scsi_cmnd with the memory to be mapped
755 * @srp_cmd: srp_cmd that contains the memory descriptor
756 * @dev: dma device for which to map dma memory
757 *
758 * Called by scsi_cmd_to_srp_cmd() when converting scsi cmds to srp cmds
759 * Returns 1 on success.
760*/
761static int map_data_for_srp_cmd(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500762 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 struct srp_cmd *srp_cmd, struct device *dev)
764{
765 switch (cmd->sc_data_direction) {
766 case DMA_FROM_DEVICE:
767 case DMA_TO_DEVICE:
768 break;
769 case DMA_NONE:
770 return 1;
771 case DMA_BIDIRECTIONAL:
Brian King6c0a60e2007-06-13 17:12:19 -0500772 sdev_printk(KERN_ERR, cmd->device,
773 "Can't map DMA_BIDIRECTIONAL to read/write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 0;
775 default:
Brian King6c0a60e2007-06-13 17:12:19 -0500776 sdev_printk(KERN_ERR, cmd->device,
777 "Unknown data direction 0x%02x; can't map!\n",
778 cmd->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return 0;
780 }
781
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900782 return map_sg_data(cmd, evt_struct, srp_cmd, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Brian King3d0e91f2007-06-13 17:12:26 -0500785/**
786 * purge_requests: Our virtual adapter just shut down. purge any sent requests
787 * @hostdata: the adapter
788 */
789static void purge_requests(struct ibmvscsi_host_data *hostdata, int error_code)
790{
Brian King1117ef82010-06-17 13:56:02 -0500791 struct srp_event_struct *evt;
Brian King3d0e91f2007-06-13 17:12:26 -0500792 unsigned long flags;
793
794 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King1117ef82010-06-17 13:56:02 -0500795 while (!list_empty(&hostdata->sent)) {
796 evt = list_first_entry(&hostdata->sent, struct srp_event_struct, list);
797 list_del(&evt->list);
798 del_timer(&evt->timer);
799
800 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
801 if (evt->cmnd) {
802 evt->cmnd->result = (error_code << 16);
803 unmap_cmd_data(&evt->iu.srp.cmd, evt,
804 evt->hostdata->dev);
805 if (evt->cmnd_done)
806 evt->cmnd_done(evt->cmnd);
Brian Kingd383fcf2014-05-23 10:52:10 -0500807 } else if (evt->done && evt->crq.format != VIOSRP_MAD_FORMAT &&
808 evt->iu.srp.login_req.opcode != SRP_LOGIN_REQ)
Brian King1117ef82010-06-17 13:56:02 -0500809 evt->done(evt);
810 free_event_struct(&evt->hostdata->pool, evt);
811 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King3d0e91f2007-06-13 17:12:26 -0500812 }
813 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
814}
815
816/**
817 * ibmvscsi_reset_host - Reset the connection to the server
818 * @hostdata: struct ibmvscsi_host_data to reset
819*/
820static void ibmvscsi_reset_host(struct ibmvscsi_host_data *hostdata)
821{
822 scsi_block_requests(hostdata->host);
823 atomic_set(&hostdata->request_limit, 0);
824
825 purge_requests(hostdata, DID_ERROR);
Brian King0f33ece2010-06-17 13:56:00 -0500826 hostdata->reset_crq = 1;
827 wake_up(&hostdata->work_wait_q);
Brian King3d0e91f2007-06-13 17:12:26 -0500828}
829
830/**
831 * ibmvscsi_timeout - Internal command timeout handler
832 * @evt_struct: struct srp_event_struct that timed out
833 *
834 * Called when an internally generated command times out
835*/
836static void ibmvscsi_timeout(struct srp_event_struct *evt_struct)
837{
838 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
839
840 dev_err(hostdata->dev, "Command timed out (%x). Resetting connection\n",
841 evt_struct->iu.srp.cmd.opcode);
842
843 ibmvscsi_reset_host(hostdata);
844}
845
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847/* ------------------------------------------------------------
848 * Routines for sending and receiving SRPs
849 */
850/**
851 * ibmvscsi_send_srp_event: - Transforms event to u64 array and calls send_crq()
852 * @evt_struct: evt_struct to be sent
853 * @hostdata: ibmvscsi_host_data of host
Brian King3d0e91f2007-06-13 17:12:26 -0500854 * @timeout: timeout in seconds - 0 means do not time command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 *
856 * Returns the value returned from ibmvscsi_send_crq(). (Zero for success)
857 * Note that this routine assumes that host_lock is held for synchronization
858*/
859static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct,
Brian King3d0e91f2007-06-13 17:12:26 -0500860 struct ibmvscsi_host_data *hostdata,
861 unsigned long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 u64 *crq_as_u64 = (u64 *) &evt_struct->crq;
Robert Jennings3c887e82007-10-30 11:37:07 -0500864 int request_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 int rc;
Brian Kingf3a9c4d2010-06-17 13:56:03 -0500866 int srp_req = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Robert Jenningsa897ff22007-03-28 12:45:46 -0500868 /* If we have exhausted our request limit, just fail this request,
869 * unless it is for a reset or abort.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 * Note that there are rare cases involving driver generated requests
871 * (such as task management requests) that the mid layer may think we
872 * can handle more requests (can_queue) when we actually can't
873 */
Dave C Boutchercefbda22006-06-12 21:22:51 -0500874 if (evt_struct->crq.format == VIOSRP_SRP_FORMAT) {
Brian Kingf3a9c4d2010-06-17 13:56:03 -0500875 srp_req = 1;
Dave C Boutchercefbda22006-06-12 21:22:51 -0500876 request_status =
877 atomic_dec_if_positive(&hostdata->request_limit);
878 /* If request limit was -1 when we started, it is now even
879 * less than that
880 */
881 if (request_status < -1)
882 goto send_error;
Robert Jenningsa897ff22007-03-28 12:45:46 -0500883 /* Otherwise, we may have run out of requests. */
Robert Jennings3c887e82007-10-30 11:37:07 -0500884 /* If request limit was 0 when we started the adapter is in the
885 * process of performing a login with the server adapter, or
886 * we may have run out of requests.
887 */
888 else if (request_status == -1 &&
889 evt_struct->iu.srp.login_req.opcode != SRP_LOGIN_REQ)
890 goto send_busy;
Robert Jenningsa897ff22007-03-28 12:45:46 -0500891 /* Abort and reset calls should make it through.
892 * Nothing except abort and reset should use the last two
893 * slots unless we had two or less to begin with.
894 */
895 else if (request_status < 2 &&
896 evt_struct->iu.srp.cmd.opcode != SRP_TSK_MGMT) {
897 /* In the case that we have less than two requests
898 * available, check the server limit as a combination
899 * of the request limit and the number of requests
900 * in-flight (the size of the send list). If the
901 * server limit is greater than 2, return busy so
902 * that the last two are reserved for reset and abort.
903 */
904 int server_limit = request_status;
905 struct srp_event_struct *tmp_evt;
906
907 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
908 server_limit++;
909 }
910
911 if (server_limit > 2)
912 goto send_busy;
913 }
Dave C Boutchercefbda22006-06-12 21:22:51 -0500914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 /* Copy the IU into the transfer area */
917 *evt_struct->xfer_iu = evt_struct->iu;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900918 evt_struct->xfer_iu->srp.rsp.tag = (u64)evt_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 /* Add this to the sent list. We need to do this
921 * before we actually send
922 * in case it comes back REALLY fast
923 */
924 list_add_tail(&evt_struct->list, &hostdata->sent);
925
Brian King3d0e91f2007-06-13 17:12:26 -0500926 init_timer(&evt_struct->timer);
927 if (timeout) {
928 evt_struct->timer.data = (unsigned long) evt_struct;
929 evt_struct->timer.expires = jiffies + (timeout * HZ);
930 evt_struct->timer.function = (void (*)(unsigned long))ibmvscsi_timeout;
931 add_timer(&evt_struct->timer);
932 }
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if ((rc =
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +1000935 ibmvscsi_send_crq(hostdata, crq_as_u64[0], crq_as_u64[1])) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 list_del(&evt_struct->list);
Brian King3d0e91f2007-06-13 17:12:26 -0500937 del_timer(&evt_struct->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Robert Jennings860784c2007-11-12 09:00:23 -0600939 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
940 * Firmware will send a CRQ with a transport event (0xFF) to
941 * tell this client what has happened to the transport. This
942 * will be handled in ibmvscsi_handle_crq()
943 */
944 if (rc == H_CLOSED) {
945 dev_warn(hostdata->dev, "send warning. "
946 "Receive queue closed, will retry.\n");
947 goto send_busy;
948 }
Brian King6c0a60e2007-06-13 17:12:19 -0500949 dev_err(hostdata->dev, "send error %d\n", rc);
Brian Kingf3a9c4d2010-06-17 13:56:03 -0500950 if (srp_req)
951 atomic_inc(&hostdata->request_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 goto send_error;
953 }
954
955 return 0;
956
Dave C Boutchercefbda22006-06-12 21:22:51 -0500957 send_busy:
James Bottomley4dddbc22005-09-06 17:11:54 -0500958 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 free_event_struct(&hostdata->pool, evt_struct);
Brian Kingf3a9c4d2010-06-17 13:56:03 -0500961 if (srp_req && request_status != -1)
Robert Jennings3c887e82007-10-30 11:37:07 -0500962 atomic_inc(&hostdata->request_limit);
Robert Jenningsa897ff22007-03-28 12:45:46 -0500963 return SCSI_MLQUEUE_HOST_BUSY;
Dave C Boutchercefbda22006-06-12 21:22:51 -0500964
965 send_error:
966 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
967
968 if (evt_struct->cmnd != NULL) {
969 evt_struct->cmnd->result = DID_ERROR << 16;
970 evt_struct->cmnd_done(evt_struct->cmnd);
971 } else if (evt_struct->done)
972 evt_struct->done(evt_struct);
973
974 free_event_struct(&hostdata->pool, evt_struct);
975 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
978/**
979 * handle_cmd_rsp: - Handle responses from commands
980 * @evt_struct: srp_event_struct to be handled
981 *
982 * Used as a callback by when sending scsi cmds.
983 * Gets called by ibmvscsi_handle_crq()
984*/
985static void handle_cmd_rsp(struct srp_event_struct *evt_struct)
986{
987 struct srp_rsp *rsp = &evt_struct->xfer_iu->srp.rsp;
988 struct scsi_cmnd *cmnd = evt_struct->cmnd;
989
FUJITA Tomonorief265672006-03-26 03:57:14 +0900990 if (unlikely(rsp->opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -0500992 dev_warn(evt_struct->hostdata->dev,
993 "bad SRP RSP type %d\n", rsp->opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995
996 if (cmnd) {
Brian Kingc3a3b552008-04-25 16:58:29 -0500997 cmnd->result |= rsp->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (((cmnd->result >> 1) & 0x1f) == CHECK_CONDITION)
999 memcpy(cmnd->sense_buffer,
FUJITA Tomonorief265672006-03-26 03:57:14 +09001000 rsp->data,
1001 rsp->sense_data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 unmap_cmd_data(&evt_struct->iu.srp.cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -05001003 evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 evt_struct->hostdata->dev);
1005
FUJITA Tomonorief265672006-03-26 03:57:14 +09001006 if (rsp->flags & SRP_RSP_FLAG_DOOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +09001007 scsi_set_resid(cmnd, rsp->data_out_res_cnt);
FUJITA Tomonorief265672006-03-26 03:57:14 +09001008 else if (rsp->flags & SRP_RSP_FLAG_DIOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +09001009 scsi_set_resid(cmnd, rsp->data_in_res_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011
1012 if (evt_struct->cmnd_done)
1013 evt_struct->cmnd_done(cmnd);
1014}
1015
1016/**
1017 * lun_from_dev: - Returns the lun of the scsi device
1018 * @dev: struct scsi_device
1019 *
1020*/
1021static inline u16 lun_from_dev(struct scsi_device *dev)
1022{
1023 return (0x2 << 14) | (dev->id << 8) | (dev->channel << 5) | dev->lun;
1024}
1025
1026/**
1027 * ibmvscsi_queue: - The queuecommand function of the scsi template
1028 * @cmd: struct scsi_cmnd to be executed
1029 * @done: Callback function to be called when cmd is completed
1030*/
Jeff Garzikf2812332010-11-16 02:10:29 -05001031static int ibmvscsi_queuecommand_lck(struct scsi_cmnd *cmnd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 void (*done) (struct scsi_cmnd *))
1033{
1034 struct srp_cmd *srp_cmd;
1035 struct srp_event_struct *evt_struct;
FUJITA Tomonorief265672006-03-26 03:57:14 +09001036 struct srp_indirect_buf *indirect;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001037 struct ibmvscsi_host_data *hostdata = shost_priv(cmnd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 u16 lun = lun_from_dev(cmnd->device);
FUJITA Tomonorief265672006-03-26 03:57:14 +09001039 u8 out_fmt, in_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Brian Kingc3a3b552008-04-25 16:58:29 -05001041 cmnd->result = (DID_OK << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 evt_struct = get_event_struct(&hostdata->pool);
1043 if (!evt_struct)
1044 return SCSI_MLQUEUE_HOST_BUSY;
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 /* Set up the actual SRP IU */
1047 srp_cmd = &evt_struct->iu.srp.cmd;
FUJITA Tomonorief265672006-03-26 03:57:14 +09001048 memset(srp_cmd, 0x00, SRP_MAX_IU_LEN);
1049 srp_cmd->opcode = SRP_CMD;
Boaz Harrosh64a87b22008-04-30 11:19:47 +03001050 memcpy(srp_cmd->cdb, cmnd->cmnd, sizeof(srp_cmd->cdb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 srp_cmd->lun = ((u64) lun) << 48;
1052
James Bottomley4dddbc22005-09-06 17:11:54 -05001053 if (!map_data_for_srp_cmd(cmnd, evt_struct, srp_cmd, hostdata->dev)) {
Robert Jennings7912a0a2008-07-24 04:35:27 +10001054 if (!firmware_has_feature(FW_FEATURE_CMO))
1055 sdev_printk(KERN_ERR, cmnd->device,
1056 "couldn't convert cmd to srp_cmd\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 free_event_struct(&hostdata->pool, evt_struct);
1058 return SCSI_MLQUEUE_HOST_BUSY;
1059 }
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 init_event_struct(evt_struct,
1062 handle_cmd_rsp,
1063 VIOSRP_SRP_FORMAT,
Jens Axboe242f9dc2008-09-14 05:55:09 -07001064 cmnd->request->timeout/HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 evt_struct->cmnd = cmnd;
1067 evt_struct->cmnd_done = done;
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 /* Fix up dma address of the buffer itself */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001070 indirect = (struct srp_indirect_buf *) srp_cmd->add_data;
1071 out_fmt = srp_cmd->buf_fmt >> 4;
1072 in_fmt = srp_cmd->buf_fmt & ((1U << 4) - 1);
1073 if ((in_fmt == SRP_DATA_DESC_INDIRECT ||
1074 out_fmt == SRP_DATA_DESC_INDIRECT) &&
1075 indirect->table_desc.va == 0) {
1076 indirect->table_desc.va = evt_struct->crq.IU_data_ptr +
1077 offsetof(struct srp_cmd, add_data) +
1078 offsetof(struct srp_indirect_buf, desc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080
Brian King3d0e91f2007-06-13 17:12:26 -05001081 return ibmvscsi_send_srp_event(evt_struct, hostdata, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
Jeff Garzikf2812332010-11-16 02:10:29 -05001084static DEF_SCSI_QCMD(ibmvscsi_queuecommand)
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086/* ------------------------------------------------------------
1087 * Routines for driver initialization
1088 */
Brian King3507e132009-06-08 16:19:04 -05001089
1090/**
Brian King126c5cc2009-06-08 16:19:08 -05001091 * map_persist_bufs: - Pre-map persistent data for adapter logins
1092 * @hostdata: ibmvscsi_host_data of host
1093 *
1094 * Map the capabilities and adapter info DMA buffers to avoid runtime failures.
1095 * Return 1 on error, 0 on success.
1096 */
1097static int map_persist_bufs(struct ibmvscsi_host_data *hostdata)
1098{
1099
1100 hostdata->caps_addr = dma_map_single(hostdata->dev, &hostdata->caps,
1101 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
1102
1103 if (dma_mapping_error(hostdata->dev, hostdata->caps_addr)) {
1104 dev_err(hostdata->dev, "Unable to map capabilities buffer!\n");
1105 return 1;
1106 }
1107
1108 hostdata->adapter_info_addr = dma_map_single(hostdata->dev,
1109 &hostdata->madapter_info,
1110 sizeof(hostdata->madapter_info),
1111 DMA_BIDIRECTIONAL);
1112 if (dma_mapping_error(hostdata->dev, hostdata->adapter_info_addr)) {
1113 dev_err(hostdata->dev, "Unable to map adapter info buffer!\n");
1114 dma_unmap_single(hostdata->dev, hostdata->caps_addr,
1115 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
1116 return 1;
1117 }
1118
1119 return 0;
1120}
1121
1122/**
1123 * unmap_persist_bufs: - Unmap persistent data needed for adapter logins
1124 * @hostdata: ibmvscsi_host_data of host
1125 *
1126 * Unmap the capabilities and adapter info DMA buffers
1127 */
1128static void unmap_persist_bufs(struct ibmvscsi_host_data *hostdata)
1129{
1130 dma_unmap_single(hostdata->dev, hostdata->caps_addr,
1131 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
1132
1133 dma_unmap_single(hostdata->dev, hostdata->adapter_info_addr,
1134 sizeof(hostdata->madapter_info), DMA_BIDIRECTIONAL);
1135}
1136
1137/**
Brian King3507e132009-06-08 16:19:04 -05001138 * login_rsp: - Handle response to SRP login request
1139 * @evt_struct: srp_event_struct with the response
1140 *
1141 * Used as a "done" callback by when sending srp_login. Gets called
1142 * by ibmvscsi_handle_crq()
1143*/
1144static void login_rsp(struct srp_event_struct *evt_struct)
1145{
1146 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
1147 switch (evt_struct->xfer_iu->srp.login_rsp.opcode) {
1148 case SRP_LOGIN_RSP: /* it worked! */
1149 break;
1150 case SRP_LOGIN_REJ: /* refused! */
1151 dev_info(hostdata->dev, "SRP_LOGIN_REJ reason %u\n",
1152 evt_struct->xfer_iu->srp.login_rej.reason);
1153 /* Login failed. */
1154 atomic_set(&hostdata->request_limit, -1);
1155 return;
1156 default:
1157 dev_err(hostdata->dev, "Invalid login response typecode 0x%02x!\n",
1158 evt_struct->xfer_iu->srp.login_rsp.opcode);
1159 /* Login failed. */
1160 atomic_set(&hostdata->request_limit, -1);
1161 return;
1162 }
1163
1164 dev_info(hostdata->dev, "SRP_LOGIN succeeded\n");
Brian King126c5cc2009-06-08 16:19:08 -05001165 hostdata->client_migrated = 0;
Brian King3507e132009-06-08 16:19:04 -05001166
1167 /* Now we know what the real request-limit is.
1168 * This value is set rather than added to request_limit because
1169 * request_limit could have been set to -1 by this client.
1170 */
1171 atomic_set(&hostdata->request_limit,
1172 evt_struct->xfer_iu->srp.login_rsp.req_lim_delta);
1173
1174 /* If we had any pending I/Os, kick them */
1175 scsi_unblock_requests(hostdata->host);
1176}
1177
1178/**
1179 * send_srp_login: - Sends the srp login
1180 * @hostdata: ibmvscsi_host_data of host
1181 *
1182 * Returns zero if successful.
1183*/
1184static int send_srp_login(struct ibmvscsi_host_data *hostdata)
1185{
1186 int rc;
1187 unsigned long flags;
1188 struct srp_login_req *login;
1189 struct srp_event_struct *evt_struct = get_event_struct(&hostdata->pool);
1190
1191 BUG_ON(!evt_struct);
1192 init_event_struct(evt_struct, login_rsp,
1193 VIOSRP_SRP_FORMAT, login_timeout);
1194
1195 login = &evt_struct->iu.srp.login_req;
1196 memset(login, 0, sizeof(*login));
1197 login->opcode = SRP_LOGIN_REQ;
1198 login->req_it_iu_len = sizeof(union srp_iu);
1199 login->req_buf_fmt = SRP_BUF_FORMAT_DIRECT | SRP_BUF_FORMAT_INDIRECT;
1200
1201 spin_lock_irqsave(hostdata->host->host_lock, flags);
1202 /* Start out with a request limit of 0, since this is negotiated in
1203 * the login request we are just sending and login requests always
1204 * get sent by the driver regardless of request_limit.
1205 */
1206 atomic_set(&hostdata->request_limit, 0);
1207
1208 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, login_timeout * 2);
1209 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1210 dev_info(hostdata->dev, "sent SRP login\n");
1211 return rc;
1212};
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214/**
Brian King126c5cc2009-06-08 16:19:08 -05001215 * capabilities_rsp: - Handle response to MAD adapter capabilities request
1216 * @evt_struct: srp_event_struct with the response
1217 *
1218 * Used as a "done" callback by when sending adapter_info.
1219 */
1220static void capabilities_rsp(struct srp_event_struct *evt_struct)
1221{
1222 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
1223
1224 if (evt_struct->xfer_iu->mad.capabilities.common.status) {
1225 dev_err(hostdata->dev, "error 0x%X getting capabilities info\n",
1226 evt_struct->xfer_iu->mad.capabilities.common.status);
1227 } else {
1228 if (hostdata->caps.migration.common.server_support != SERVER_SUPPORTS_CAP)
1229 dev_info(hostdata->dev, "Partition migration not supported\n");
1230
1231 if (client_reserve) {
1232 if (hostdata->caps.reserve.common.server_support ==
1233 SERVER_SUPPORTS_CAP)
1234 dev_info(hostdata->dev, "Client reserve enabled\n");
1235 else
1236 dev_info(hostdata->dev, "Client reserve not supported\n");
1237 }
1238 }
1239
1240 send_srp_login(hostdata);
1241}
1242
1243/**
1244 * send_mad_capabilities: - Sends the mad capabilities request
1245 * and stores the result so it can be retrieved with
1246 * @hostdata: ibmvscsi_host_data of host
1247 */
1248static void send_mad_capabilities(struct ibmvscsi_host_data *hostdata)
1249{
1250 struct viosrp_capabilities *req;
1251 struct srp_event_struct *evt_struct;
1252 unsigned long flags;
Grant Likely61c7a082010-04-13 16:12:29 -07001253 struct device_node *of_node = hostdata->dev->of_node;
Brian King126c5cc2009-06-08 16:19:08 -05001254 const char *location;
1255
1256 evt_struct = get_event_struct(&hostdata->pool);
1257 BUG_ON(!evt_struct);
1258
1259 init_event_struct(evt_struct, capabilities_rsp,
1260 VIOSRP_MAD_FORMAT, info_timeout);
1261
1262 req = &evt_struct->iu.mad.capabilities;
1263 memset(req, 0, sizeof(*req));
1264
1265 hostdata->caps.flags = CAP_LIST_SUPPORTED;
1266 if (hostdata->client_migrated)
1267 hostdata->caps.flags |= CLIENT_MIGRATED;
1268
1269 strncpy(hostdata->caps.name, dev_name(&hostdata->host->shost_gendev),
1270 sizeof(hostdata->caps.name));
1271 hostdata->caps.name[sizeof(hostdata->caps.name) - 1] = '\0';
1272
1273 location = of_get_property(of_node, "ibm,loc-code", NULL);
1274 location = location ? location : dev_name(hostdata->dev);
1275 strncpy(hostdata->caps.loc, location, sizeof(hostdata->caps.loc));
1276 hostdata->caps.loc[sizeof(hostdata->caps.loc) - 1] = '\0';
1277
1278 req->common.type = VIOSRP_CAPABILITIES_TYPE;
1279 req->buffer = hostdata->caps_addr;
1280
1281 hostdata->caps.migration.common.cap_type = MIGRATION_CAPABILITIES;
1282 hostdata->caps.migration.common.length = sizeof(hostdata->caps.migration);
1283 hostdata->caps.migration.common.server_support = SERVER_SUPPORTS_CAP;
1284 hostdata->caps.migration.ecl = 1;
1285
1286 if (client_reserve) {
1287 hostdata->caps.reserve.common.cap_type = RESERVATION_CAPABILITIES;
1288 hostdata->caps.reserve.common.length = sizeof(hostdata->caps.reserve);
1289 hostdata->caps.reserve.common.server_support = SERVER_SUPPORTS_CAP;
1290 hostdata->caps.reserve.type = CLIENT_RESERVE_SCSI_2;
1291 req->common.length = sizeof(hostdata->caps);
1292 } else
1293 req->common.length = sizeof(hostdata->caps) - sizeof(hostdata->caps.reserve);
1294
1295 spin_lock_irqsave(hostdata->host->host_lock, flags);
1296 if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
1297 dev_err(hostdata->dev, "couldn't send CAPABILITIES_REQ!\n");
1298 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1299};
1300
1301/**
Robert Jenningsc1988e312009-06-08 16:19:07 -05001302 * fast_fail_rsp: - Handle response to MAD enable fast fail
1303 * @evt_struct: srp_event_struct with the response
1304 *
1305 * Used as a "done" callback by when sending enable fast fail. Gets called
1306 * by ibmvscsi_handle_crq()
1307 */
1308static void fast_fail_rsp(struct srp_event_struct *evt_struct)
1309{
1310 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
1311 u8 status = evt_struct->xfer_iu->mad.fast_fail.common.status;
1312
1313 if (status == VIOSRP_MAD_NOT_SUPPORTED)
1314 dev_err(hostdata->dev, "fast_fail not supported in server\n");
1315 else if (status == VIOSRP_MAD_FAILED)
1316 dev_err(hostdata->dev, "fast_fail request failed\n");
1317 else if (status != VIOSRP_MAD_SUCCESS)
1318 dev_err(hostdata->dev, "error 0x%X enabling fast_fail\n", status);
1319
Brian King126c5cc2009-06-08 16:19:08 -05001320 send_mad_capabilities(hostdata);
Robert Jenningsc1988e312009-06-08 16:19:07 -05001321}
1322
1323/**
1324 * init_host - Start host initialization
1325 * @hostdata: ibmvscsi_host_data of host
1326 *
1327 * Returns zero if successful.
1328 */
1329static int enable_fast_fail(struct ibmvscsi_host_data *hostdata)
1330{
1331 int rc;
1332 unsigned long flags;
1333 struct viosrp_fast_fail *fast_fail_mad;
1334 struct srp_event_struct *evt_struct;
1335
Brian King126c5cc2009-06-08 16:19:08 -05001336 if (!fast_fail) {
1337 send_mad_capabilities(hostdata);
1338 return 0;
1339 }
Robert Jenningsc1988e312009-06-08 16:19:07 -05001340
1341 evt_struct = get_event_struct(&hostdata->pool);
1342 BUG_ON(!evt_struct);
1343
1344 init_event_struct(evt_struct, fast_fail_rsp, VIOSRP_MAD_FORMAT, info_timeout);
1345
1346 fast_fail_mad = &evt_struct->iu.mad.fast_fail;
1347 memset(fast_fail_mad, 0, sizeof(*fast_fail_mad));
1348 fast_fail_mad->common.type = VIOSRP_ENABLE_FAST_FAIL;
1349 fast_fail_mad->common.length = sizeof(*fast_fail_mad);
1350
1351 spin_lock_irqsave(hostdata->host->host_lock, flags);
1352 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
1353 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1354 return rc;
1355}
1356
1357/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 * adapter_info_rsp: - Handle response to MAD adapter info request
1359 * @evt_struct: srp_event_struct with the response
1360 *
1361 * Used as a "done" callback by when sending adapter_info. Gets called
1362 * by ibmvscsi_handle_crq()
1363*/
1364static void adapter_info_rsp(struct srp_event_struct *evt_struct)
1365{
1366 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 if (evt_struct->xfer_iu->mad.adapter_info.common.status) {
Brian King6c0a60e2007-06-13 17:12:19 -05001369 dev_err(hostdata->dev, "error %d getting adapter info\n",
1370 evt_struct->xfer_iu->mad.adapter_info.common.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001372 dev_info(hostdata->dev, "host srp version: %s, "
1373 "host partition %s (%d), OS %d, max io %u\n",
1374 hostdata->madapter_info.srp_version,
1375 hostdata->madapter_info.partition_name,
1376 hostdata->madapter_info.partition_number,
1377 hostdata->madapter_info.os_type,
1378 hostdata->madapter_info.port_max_txu[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 if (hostdata->madapter_info.port_max_txu[0])
1381 hostdata->host->max_sectors =
1382 hostdata->madapter_info.port_max_txu[0] >> 9;
Dave C Boutcher154fb612005-09-13 10:09:02 -05001383
1384 if (hostdata->madapter_info.os_type == 3 &&
1385 strcmp(hostdata->madapter_info.srp_version, "1.6a") <= 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001386 dev_err(hostdata->dev, "host (Ver. %s) doesn't support large transfers\n",
1387 hostdata->madapter_info.srp_version);
1388 dev_err(hostdata->dev, "limiting scatterlists to %d\n",
1389 MAX_INDIRECT_BUFS);
Dave C Boutcher154fb612005-09-13 10:09:02 -05001390 hostdata->host->sg_tablesize = MAX_INDIRECT_BUFS;
1391 }
Brian Kinge08afeb2009-06-23 17:14:01 -05001392
1393 if (hostdata->madapter_info.os_type == 3) {
1394 enable_fast_fail(hostdata);
1395 return;
1396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Brian King3507e132009-06-08 16:19:04 -05001398
Brian Kinge08afeb2009-06-23 17:14:01 -05001399 send_srp_login(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
1402/**
1403 * send_mad_adapter_info: - Sends the mad adapter info request
1404 * and stores the result so it can be retrieved with
1405 * sysfs. We COULD consider causing a failure if the
1406 * returned SRP version doesn't match ours.
1407 * @hostdata: ibmvscsi_host_data of host
1408 *
1409 * Returns zero if successful.
1410*/
1411static void send_mad_adapter_info(struct ibmvscsi_host_data *hostdata)
1412{
1413 struct viosrp_adapter_info *req;
1414 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -05001415 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 evt_struct = get_event_struct(&hostdata->pool);
Brian King3507e132009-06-08 16:19:04 -05001418 BUG_ON(!evt_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 init_event_struct(evt_struct,
1421 adapter_info_rsp,
1422 VIOSRP_MAD_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001423 info_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 req = &evt_struct->iu.mad.adapter_info;
1426 memset(req, 0x00, sizeof(*req));
1427
1428 req->common.type = VIOSRP_ADAPTER_INFO_TYPE;
1429 req->common.length = sizeof(hostdata->madapter_info);
Brian King126c5cc2009-06-08 16:19:08 -05001430 req->buffer = hostdata->adapter_info_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Brian King06f923c2007-06-13 17:12:33 -05001432 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King126c5cc2009-06-08 16:19:08 -05001433 if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
Brian King6c0a60e2007-06-13 17:12:19 -05001434 dev_err(hostdata->dev, "couldn't send ADAPTER_INFO_REQ!\n");
Brian King06f923c2007-06-13 17:12:33 -05001435 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436};
1437
1438/**
Brian King3507e132009-06-08 16:19:04 -05001439 * init_adapter: Start virtual adapter initialization sequence
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 *
Brian King3507e132009-06-08 16:19:04 -05001441 */
1442static void init_adapter(struct ibmvscsi_host_data *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 send_mad_adapter_info(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
1446
1447/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 * sync_completion: Signal that a synchronous command has completed
1449 * Note that after returning from this call, the evt_struct is freed.
1450 * the caller waiting on this completion shouldn't touch the evt_struct
1451 * again.
1452 */
1453static void sync_completion(struct srp_event_struct *evt_struct)
1454{
1455 /* copy the response back */
1456 if (evt_struct->sync_srp)
1457 *evt_struct->sync_srp = *evt_struct->xfer_iu;
1458
1459 complete(&evt_struct->comp);
1460}
1461
1462/**
1463 * ibmvscsi_abort: Abort a command...from scsi host template
1464 * send this over to the server and wait synchronously for the response
1465 */
1466static int ibmvscsi_eh_abort_handler(struct scsi_cmnd *cmd)
1467{
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001468 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 struct srp_tsk_mgmt *tsk_mgmt;
1470 struct srp_event_struct *evt;
1471 struct srp_event_struct *tmp_evt, *found_evt;
1472 union viosrp_iu srp_rsp;
1473 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001474 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 u16 lun = lun_from_dev(cmd->device);
Robert Jennings860784c2007-11-12 09:00:23 -06001476 unsigned long wait_switch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 /* First, find this command in our sent list so we can figure
1479 * out the correct tag
1480 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001481 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001482 wait_switch = jiffies + (init_timeout * HZ);
1483 do {
1484 found_evt = NULL;
1485 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1486 if (tmp_evt->cmnd == cmd) {
1487 found_evt = tmp_evt;
1488 break;
1489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Robert Jennings860784c2007-11-12 09:00:23 -06001492 if (!found_evt) {
1493 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1494 return SUCCESS;
1495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Robert Jennings860784c2007-11-12 09:00:23 -06001497 evt = get_event_struct(&hostdata->pool);
1498 if (evt == NULL) {
1499 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1500 sdev_printk(KERN_ERR, cmd->device,
1501 "failed to allocate abort event\n");
1502 return FAILED;
1503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Robert Jennings860784c2007-11-12 09:00:23 -06001505 init_event_struct(evt,
1506 sync_completion,
1507 VIOSRP_SRP_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001508 abort_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Robert Jennings860784c2007-11-12 09:00:23 -06001510 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Robert Jennings860784c2007-11-12 09:00:23 -06001512 /* Set up an abort SRP command */
1513 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1514 tsk_mgmt->opcode = SRP_TSK_MGMT;
1515 tsk_mgmt->lun = ((u64) lun) << 48;
1516 tsk_mgmt->tsk_mgmt_func = SRP_TSK_ABORT_TASK;
1517 tsk_mgmt->task_tag = (u64) found_evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Robert Jennings860784c2007-11-12 09:00:23 -06001519 evt->sync_srp = &srp_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Robert Jennings860784c2007-11-12 09:00:23 -06001521 init_completion(&evt->comp);
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001522 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, abort_timeout * 2);
Robert Jennings860784c2007-11-12 09:00:23 -06001523
1524 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1525 break;
1526
1527 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1528 msleep(10);
1529 spin_lock_irqsave(hostdata->host->host_lock, flags);
1530 } while (time_before(jiffies, wait_switch));
1531
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001532 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001533
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001534 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001535 sdev_printk(KERN_ERR, cmd->device,
1536 "failed to send abort() event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 return FAILED;
1538 }
1539
Robert Jennings860784c2007-11-12 09:00:23 -06001540 sdev_printk(KERN_INFO, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001541 "aborting command. lun 0x%llx, tag 0x%llx\n",
Robert Jennings860784c2007-11-12 09:00:23 -06001542 (((u64) lun) << 48), (u64) found_evt);
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001547 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001549 sdev_printk(KERN_WARNING, cmd->device, "abort bad SRP RSP type %d\n",
1550 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return FAILED;
1552 }
1553
FUJITA Tomonorief265672006-03-26 03:57:14 +09001554 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1555 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 else
1557 rsp_rc = srp_rsp.srp.rsp.status;
1558
1559 if (rsp_rc) {
1560 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001561 sdev_printk(KERN_WARNING, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001562 "abort code %d for task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001563 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 return FAILED;
1565 }
1566
1567 /* Because we dropped the spinlock above, it's possible
1568 * The event is no longer in our list. Make sure it didn't
1569 * complete while we were aborting
1570 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001571 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 found_evt = NULL;
1573 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1574 if (tmp_evt->cmnd == cmd) {
1575 found_evt = tmp_evt;
1576 break;
1577 }
1578 }
1579
1580 if (found_evt == NULL) {
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001581 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Ingo Molnarfe333322009-01-06 14:26:03 +00001582 sdev_printk(KERN_INFO, cmd->device, "aborted task tag 0x%llx completed\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001583 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 return SUCCESS;
1585 }
1586
Ingo Molnarfe333322009-01-06 14:26:03 +00001587 sdev_printk(KERN_INFO, cmd->device, "successfully aborted task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001588 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 cmd->result = (DID_ABORT << 16);
1591 list_del(&found_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001592 unmap_cmd_data(&found_evt->iu.srp.cmd, found_evt,
1593 found_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 free_event_struct(&found_evt->hostdata->pool, found_evt);
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001595 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 atomic_inc(&hostdata->request_limit);
1597 return SUCCESS;
1598}
1599
1600/**
1601 * ibmvscsi_eh_device_reset_handler: Reset a single LUN...from scsi host
1602 * template send this over to the server and wait synchronously for the
1603 * response
1604 */
1605static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd *cmd)
1606{
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001607 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 struct srp_tsk_mgmt *tsk_mgmt;
1609 struct srp_event_struct *evt;
1610 struct srp_event_struct *tmp_evt, *pos;
1611 union viosrp_iu srp_rsp;
1612 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001613 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 u16 lun = lun_from_dev(cmd->device);
Robert Jennings860784c2007-11-12 09:00:23 -06001615 unsigned long wait_switch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001617 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001618 wait_switch = jiffies + (init_timeout * HZ);
1619 do {
1620 evt = get_event_struct(&hostdata->pool);
1621 if (evt == NULL) {
1622 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1623 sdev_printk(KERN_ERR, cmd->device,
1624 "failed to allocate reset event\n");
1625 return FAILED;
1626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Robert Jennings860784c2007-11-12 09:00:23 -06001628 init_event_struct(evt,
1629 sync_completion,
1630 VIOSRP_SRP_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001631 reset_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Robert Jennings860784c2007-11-12 09:00:23 -06001633 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Robert Jennings860784c2007-11-12 09:00:23 -06001635 /* Set up a lun reset SRP command */
1636 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1637 tsk_mgmt->opcode = SRP_TSK_MGMT;
1638 tsk_mgmt->lun = ((u64) lun) << 48;
1639 tsk_mgmt->tsk_mgmt_func = SRP_TSK_LUN_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Robert Jennings860784c2007-11-12 09:00:23 -06001641 evt->sync_srp = &srp_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Robert Jennings860784c2007-11-12 09:00:23 -06001643 init_completion(&evt->comp);
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001644 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, reset_timeout * 2);
Robert Jennings860784c2007-11-12 09:00:23 -06001645
1646 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1647 break;
1648
1649 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1650 msleep(10);
1651 spin_lock_irqsave(hostdata->host->host_lock, flags);
1652 } while (time_before(jiffies, wait_switch));
1653
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001654 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001655
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001656 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001657 sdev_printk(KERN_ERR, cmd->device,
1658 "failed to send reset event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 return FAILED;
1660 }
1661
Ingo Molnarfe333322009-01-06 14:26:03 +00001662 sdev_printk(KERN_INFO, cmd->device, "resetting device. lun 0x%llx\n",
Robert Jennings860784c2007-11-12 09:00:23 -06001663 (((u64) lun) << 48));
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001668 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001670 sdev_printk(KERN_WARNING, cmd->device, "reset bad SRP RSP type %d\n",
1671 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return FAILED;
1673 }
1674
FUJITA Tomonorief265672006-03-26 03:57:14 +09001675 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1676 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 else
1678 rsp_rc = srp_rsp.srp.rsp.status;
1679
1680 if (rsp_rc) {
1681 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001682 sdev_printk(KERN_WARNING, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001683 "reset code %d for task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001684 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 return FAILED;
1686 }
1687
1688 /* We need to find all commands for this LUN that have not yet been
1689 * responded to, and fail them with DID_RESET
1690 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001691 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
1693 if ((tmp_evt->cmnd) && (tmp_evt->cmnd->device == cmd->device)) {
1694 if (tmp_evt->cmnd)
1695 tmp_evt->cmnd->result = (DID_RESET << 16);
1696 list_del(&tmp_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001697 unmap_cmd_data(&tmp_evt->iu.srp.cmd, tmp_evt,
1698 tmp_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 free_event_struct(&tmp_evt->hostdata->pool,
1700 tmp_evt);
1701 atomic_inc(&hostdata->request_limit);
1702 if (tmp_evt->cmnd_done)
1703 tmp_evt->cmnd_done(tmp_evt->cmnd);
1704 else if (tmp_evt->done)
1705 tmp_evt->done(tmp_evt);
1706 }
1707 }
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001708 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return SUCCESS;
1710}
1711
1712/**
Brian King3d0e91f2007-06-13 17:12:26 -05001713 * ibmvscsi_eh_host_reset_handler - Reset the connection to the server
1714 * @cmd: struct scsi_cmnd having problems
1715*/
1716static int ibmvscsi_eh_host_reset_handler(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
Brian King3d0e91f2007-06-13 17:12:26 -05001718 unsigned long wait_switch = 0;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001719 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Brian King3d0e91f2007-06-13 17:12:26 -05001721 dev_err(hostdata->dev, "Resetting connection due to error recovery\n");
1722
1723 ibmvscsi_reset_host(hostdata);
1724
1725 for (wait_switch = jiffies + (init_timeout * HZ);
1726 time_before(jiffies, wait_switch) &&
1727 atomic_read(&hostdata->request_limit) < 2;) {
1728
1729 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 }
Brian King3d0e91f2007-06-13 17:12:26 -05001731
1732 if (atomic_read(&hostdata->request_limit) <= 0)
1733 return FAILED;
1734
1735 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
1737
1738/**
1739 * ibmvscsi_handle_crq: - Handles and frees received events in the CRQ
1740 * @crq: Command/Response queue
1741 * @hostdata: ibmvscsi_host_data of host
1742 *
1743*/
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10001744static void ibmvscsi_handle_crq(struct viosrp_crq *crq,
1745 struct ibmvscsi_host_data *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
Brian King6c0a60e2007-06-13 17:12:19 -05001747 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 unsigned long flags;
1749 struct srp_event_struct *evt_struct =
1750 (struct srp_event_struct *)crq->IU_data_ptr;
1751 switch (crq->valid) {
1752 case 0xC0: /* initialization */
1753 switch (crq->format) {
1754 case 0x01: /* Initialization message */
Brian King6c0a60e2007-06-13 17:12:19 -05001755 dev_info(hostdata->dev, "partner initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 /* Send back a response */
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10001757 rc = ibmvscsi_send_crq(hostdata, 0xC002000000000000LL, 0);
1758 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 /* Now login */
Brian King3507e132009-06-08 16:19:04 -05001760 init_adapter(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001762 dev_err(hostdata->dev, "Unable to send init rsp. rc=%ld\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
1764
1765 break;
1766 case 0x02: /* Initialization response */
Brian King6c0a60e2007-06-13 17:12:19 -05001767 dev_info(hostdata->dev, "partner initialization complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 /* Now login */
Brian King3507e132009-06-08 16:19:04 -05001770 init_adapter(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 break;
1772 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001773 dev_err(hostdata->dev, "unknown crq message type: %d\n", crq->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
1775 return;
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001776 case 0xFF: /* Hypervisor telling us the connection is closed */
1777 scsi_block_requests(hostdata->host);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001778 atomic_set(&hostdata->request_limit, 0);
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001779 if (crq->format == 0x06) {
1780 /* We need to re-setup the interpartition connection */
Brian King6c0a60e2007-06-13 17:12:19 -05001781 dev_info(hostdata->dev, "Re-enabling adapter!\n");
Brian King126c5cc2009-06-08 16:19:08 -05001782 hostdata->client_migrated = 1;
Brian King0f33ece2010-06-17 13:56:00 -05001783 hostdata->reenable_crq = 1;
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001784 purge_requests(hostdata, DID_REQUEUE);
Brian King0f33ece2010-06-17 13:56:00 -05001785 wake_up(&hostdata->work_wait_q);
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001786 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001787 dev_err(hostdata->dev, "Virtual adapter failed rc %d!\n",
1788 crq->format);
Brian King0f33ece2010-06-17 13:56:00 -05001789 ibmvscsi_reset_host(hostdata);
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return;
1792 case 0x80: /* real payload */
1793 break;
1794 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001795 dev_err(hostdata->dev, "got an invalid message type 0x%02x\n",
1796 crq->valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return;
1798 }
1799
1800 /* The only kind of payload CRQs we should get are responses to
1801 * things we send. Make sure this response is to something we
1802 * actually sent
1803 */
1804 if (!valid_event_struct(&hostdata->pool, evt_struct)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001805 dev_err(hostdata->dev, "returned correlation_token 0x%p is invalid!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 (void *)crq->IU_data_ptr);
1807 return;
1808 }
1809
1810 if (atomic_read(&evt_struct->free)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001811 dev_err(hostdata->dev, "received duplicate correlation_token 0x%p!\n",
1812 (void *)crq->IU_data_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return;
1814 }
1815
1816 if (crq->format == VIOSRP_SRP_FORMAT)
FUJITA Tomonorief265672006-03-26 03:57:14 +09001817 atomic_add(evt_struct->xfer_iu->srp.rsp.req_lim_delta,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 &hostdata->request_limit);
1819
Brian King3d0e91f2007-06-13 17:12:26 -05001820 del_timer(&evt_struct->timer);
1821
Brian Kingca616682008-05-19 10:27:56 -05001822 if ((crq->status != VIOSRP_OK && crq->status != VIOSRP_OK2) && evt_struct->cmnd)
Brian Kingc3a3b552008-04-25 16:58:29 -05001823 evt_struct->cmnd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 if (evt_struct->done)
1825 evt_struct->done(evt_struct);
1826 else
Brian King6c0a60e2007-06-13 17:12:19 -05001827 dev_err(hostdata->dev, "returned done() is NULL; not running it!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 /*
1830 * Lock the host_lock before messing with these structures, since we
1831 * are running in a task context
1832 */
1833 spin_lock_irqsave(evt_struct->hostdata->host->host_lock, flags);
1834 list_del(&evt_struct->list);
1835 free_event_struct(&evt_struct->hostdata->pool, evt_struct);
1836 spin_unlock_irqrestore(evt_struct->hostdata->host->host_lock, flags);
1837}
1838
1839/**
1840 * ibmvscsi_get_host_config: Send the command to the server to get host
1841 * configuration data. The data is opaque to us.
1842 */
1843static int ibmvscsi_do_host_config(struct ibmvscsi_host_data *hostdata,
1844 unsigned char *buffer, int length)
1845{
1846 struct viosrp_host_config *host_config;
1847 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -05001848 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001849 dma_addr_t addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 int rc;
1851
1852 evt_struct = get_event_struct(&hostdata->pool);
1853 if (!evt_struct) {
Brian King6c0a60e2007-06-13 17:12:19 -05001854 dev_err(hostdata->dev, "couldn't allocate event for HOST_CONFIG!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return -1;
1856 }
1857
1858 init_event_struct(evt_struct,
1859 sync_completion,
1860 VIOSRP_MAD_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001861 info_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 host_config = &evt_struct->iu.mad.host_config;
1864
Benjamin Herrenschmidt225c5692012-07-30 11:33:05 +10001865 /* The transport length field is only 16-bit */
1866 length = min(0xffff, length);
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 /* Set up a lun reset SRP command */
1869 memset(host_config, 0x00, sizeof(*host_config));
1870 host_config->common.type = VIOSRP_HOST_CONFIG_TYPE;
1871 host_config->common.length = length;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001872 host_config->buffer = addr = dma_map_single(hostdata->dev, buffer,
1873 length,
1874 DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07001876 if (dma_mapping_error(hostdata->dev, host_config->buffer)) {
Robert Jennings7912a0a2008-07-24 04:35:27 +10001877 if (!firmware_has_feature(FW_FEATURE_CMO))
1878 dev_err(hostdata->dev,
1879 "dma_mapping error getting host config\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 free_event_struct(&hostdata->pool, evt_struct);
1881 return -1;
1882 }
1883
1884 init_completion(&evt_struct->comp);
Brian King06f923c2007-06-13 17:12:33 -05001885 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001886 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
Brian King06f923c2007-06-13 17:12:33 -05001887 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001888 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 wait_for_completion(&evt_struct->comp);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001890 dma_unmap_single(hostdata->dev, addr, length, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 return rc;
1893}
1894
Robert Jennings0979c842007-03-29 12:30:40 -05001895/**
1896 * ibmvscsi_slave_configure: Set the "allow_restart" flag for each disk.
1897 * @sdev: struct scsi_device device to configure
1898 *
1899 * Enable allow_restart for a device if it is a disk. Adjust the
1900 * queue_depth here also as is required by the documentation for
1901 * struct scsi_host_template.
1902 */
1903static int ibmvscsi_slave_configure(struct scsi_device *sdev)
1904{
1905 struct Scsi_Host *shost = sdev->host;
1906 unsigned long lock_flags = 0;
1907
1908 spin_lock_irqsave(shost->host_lock, lock_flags);
Brian Kingd1a357f2007-10-25 16:06:34 -05001909 if (sdev->type == TYPE_DISK) {
Robert Jennings0979c842007-03-29 12:30:40 -05001910 sdev->allow_restart = 1;
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001911 blk_queue_rq_timeout(sdev->request_queue, 120 * HZ);
Brian Kingd1a357f2007-10-25 16:06:34 -05001912 }
Robert Jennings0979c842007-03-29 12:30:40 -05001913 spin_unlock_irqrestore(shost->host_lock, lock_flags);
Brian King9d85b592013-04-01 09:44:26 -05001914 scsi_adjust_queue_depth(sdev, 0, shost->cmd_per_lun);
Robert Jennings0979c842007-03-29 12:30:40 -05001915 return 0;
1916}
1917
Brian King742d25b2007-05-29 15:46:14 -05001918/**
1919 * ibmvscsi_change_queue_depth - Change the device's queue depth
1920 * @sdev: scsi device struct
1921 * @qdepth: depth to set
Mike Christiee881a172009-10-15 17:46:39 -07001922 * @reason: calling context
Brian King742d25b2007-05-29 15:46:14 -05001923 *
1924 * Return value:
1925 * actual depth set
1926 **/
Mike Christiee881a172009-10-15 17:46:39 -07001927static int ibmvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth,
1928 int reason)
Brian King742d25b2007-05-29 15:46:14 -05001929{
Mike Christiee881a172009-10-15 17:46:39 -07001930 if (reason != SCSI_QDEPTH_DEFAULT)
1931 return -EOPNOTSUPP;
1932
Brian King742d25b2007-05-29 15:46:14 -05001933 if (qdepth > IBMVSCSI_MAX_CMDS_PER_LUN)
1934 qdepth = IBMVSCSI_MAX_CMDS_PER_LUN;
1935
1936 scsi_adjust_queue_depth(sdev, 0, qdepth);
1937 return sdev->queue_depth;
1938}
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940/* ------------------------------------------------------------
1941 * sysfs attributes
1942 */
Brian King126c5cc2009-06-08 16:19:08 -05001943static ssize_t show_host_vhost_loc(struct device *dev,
1944 struct device_attribute *attr, char *buf)
1945{
1946 struct Scsi_Host *shost = class_to_shost(dev);
1947 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1948 int len;
1949
1950 len = snprintf(buf, sizeof(hostdata->caps.loc), "%s\n",
1951 hostdata->caps.loc);
1952 return len;
1953}
1954
1955static struct device_attribute ibmvscsi_host_vhost_loc = {
1956 .attr = {
1957 .name = "vhost_loc",
1958 .mode = S_IRUGO,
1959 },
1960 .show = show_host_vhost_loc,
1961};
1962
1963static ssize_t show_host_vhost_name(struct device *dev,
1964 struct device_attribute *attr, char *buf)
1965{
1966 struct Scsi_Host *shost = class_to_shost(dev);
1967 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1968 int len;
1969
1970 len = snprintf(buf, sizeof(hostdata->caps.name), "%s\n",
1971 hostdata->caps.name);
1972 return len;
1973}
1974
1975static struct device_attribute ibmvscsi_host_vhost_name = {
1976 .attr = {
1977 .name = "vhost_name",
1978 .mode = S_IRUGO,
1979 },
1980 .show = show_host_vhost_name,
1981};
1982
Tony Jonesee959b02008-02-22 00:13:36 +01001983static ssize_t show_host_srp_version(struct device *dev,
1984 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Tony Jonesee959b02008-02-22 00:13:36 +01001986 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001987 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 int len;
1989
1990 len = snprintf(buf, PAGE_SIZE, "%s\n",
1991 hostdata->madapter_info.srp_version);
1992 return len;
1993}
1994
Tony Jonesee959b02008-02-22 00:13:36 +01001995static struct device_attribute ibmvscsi_host_srp_version = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 .attr = {
1997 .name = "srp_version",
1998 .mode = S_IRUGO,
1999 },
2000 .show = show_host_srp_version,
2001};
2002
Tony Jonesee959b02008-02-22 00:13:36 +01002003static ssize_t show_host_partition_name(struct device *dev,
2004 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 char *buf)
2006{
Tony Jonesee959b02008-02-22 00:13:36 +01002007 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09002008 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 int len;
2010
2011 len = snprintf(buf, PAGE_SIZE, "%s\n",
2012 hostdata->madapter_info.partition_name);
2013 return len;
2014}
2015
Tony Jonesee959b02008-02-22 00:13:36 +01002016static struct device_attribute ibmvscsi_host_partition_name = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 .attr = {
2018 .name = "partition_name",
2019 .mode = S_IRUGO,
2020 },
2021 .show = show_host_partition_name,
2022};
2023
Tony Jonesee959b02008-02-22 00:13:36 +01002024static ssize_t show_host_partition_number(struct device *dev,
2025 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 char *buf)
2027{
Tony Jonesee959b02008-02-22 00:13:36 +01002028 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09002029 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 int len;
2031
2032 len = snprintf(buf, PAGE_SIZE, "%d\n",
2033 hostdata->madapter_info.partition_number);
2034 return len;
2035}
2036
Tony Jonesee959b02008-02-22 00:13:36 +01002037static struct device_attribute ibmvscsi_host_partition_number = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 .attr = {
2039 .name = "partition_number",
2040 .mode = S_IRUGO,
2041 },
2042 .show = show_host_partition_number,
2043};
2044
Tony Jonesee959b02008-02-22 00:13:36 +01002045static ssize_t show_host_mad_version(struct device *dev,
2046 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
Tony Jonesee959b02008-02-22 00:13:36 +01002048 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09002049 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 int len;
2051
2052 len = snprintf(buf, PAGE_SIZE, "%d\n",
2053 hostdata->madapter_info.mad_version);
2054 return len;
2055}
2056
Tony Jonesee959b02008-02-22 00:13:36 +01002057static struct device_attribute ibmvscsi_host_mad_version = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 .attr = {
2059 .name = "mad_version",
2060 .mode = S_IRUGO,
2061 },
2062 .show = show_host_mad_version,
2063};
2064
Tony Jonesee959b02008-02-22 00:13:36 +01002065static ssize_t show_host_os_type(struct device *dev,
2066 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Tony Jonesee959b02008-02-22 00:13:36 +01002068 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09002069 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 int len;
2071
2072 len = snprintf(buf, PAGE_SIZE, "%d\n", hostdata->madapter_info.os_type);
2073 return len;
2074}
2075
Tony Jonesee959b02008-02-22 00:13:36 +01002076static struct device_attribute ibmvscsi_host_os_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 .attr = {
2078 .name = "os_type",
2079 .mode = S_IRUGO,
2080 },
2081 .show = show_host_os_type,
2082};
2083
Tony Jonesee959b02008-02-22 00:13:36 +01002084static ssize_t show_host_config(struct device *dev,
2085 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
Tony Jonesee959b02008-02-22 00:13:36 +01002087 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09002088 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 /* returns null-terminated host config data */
2091 if (ibmvscsi_do_host_config(hostdata, buf, PAGE_SIZE) == 0)
2092 return strlen(buf);
2093 else
2094 return 0;
2095}
2096
Tony Jonesee959b02008-02-22 00:13:36 +01002097static struct device_attribute ibmvscsi_host_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 .attr = {
2099 .name = "config",
2100 .mode = S_IRUGO,
2101 },
2102 .show = show_host_config,
2103};
2104
Tony Jonesee959b02008-02-22 00:13:36 +01002105static struct device_attribute *ibmvscsi_attrs[] = {
Brian King126c5cc2009-06-08 16:19:08 -05002106 &ibmvscsi_host_vhost_loc,
2107 &ibmvscsi_host_vhost_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 &ibmvscsi_host_srp_version,
2109 &ibmvscsi_host_partition_name,
2110 &ibmvscsi_host_partition_number,
2111 &ibmvscsi_host_mad_version,
2112 &ibmvscsi_host_os_type,
2113 &ibmvscsi_host_config,
2114 NULL
2115};
2116
2117/* ------------------------------------------------------------
2118 * SCSI driver registration
2119 */
2120static struct scsi_host_template driver_template = {
2121 .module = THIS_MODULE,
2122 .name = "IBM POWER Virtual SCSI Adapter " IBMVSCSI_VERSION,
2123 .proc_name = "ibmvscsi",
2124 .queuecommand = ibmvscsi_queuecommand,
2125 .eh_abort_handler = ibmvscsi_eh_abort_handler,
2126 .eh_device_reset_handler = ibmvscsi_eh_device_reset_handler,
Brian King3d0e91f2007-06-13 17:12:26 -05002127 .eh_host_reset_handler = ibmvscsi_eh_host_reset_handler,
Robert Jennings0979c842007-03-29 12:30:40 -05002128 .slave_configure = ibmvscsi_slave_configure,
Brian King742d25b2007-05-29 15:46:14 -05002129 .change_queue_depth = ibmvscsi_change_queue_depth,
Robert Jennings7912a0a2008-07-24 04:35:27 +10002130 .cmd_per_lun = IBMVSCSI_CMDS_PER_LUN_DEFAULT,
Robert Jenningsa897ff22007-03-28 12:45:46 -05002131 .can_queue = IBMVSCSI_MAX_REQUESTS_DEFAULT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 .this_id = -1,
James Bottomley4dddbc22005-09-06 17:11:54 -05002133 .sg_tablesize = SG_ALL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 .use_clustering = ENABLE_CLUSTERING,
2135 .shost_attrs = ibmvscsi_attrs,
2136};
2137
2138/**
Robert Jennings7912a0a2008-07-24 04:35:27 +10002139 * ibmvscsi_get_desired_dma - Calculate IO memory desired by the driver
2140 *
2141 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
2142 *
2143 * Return value:
2144 * Number of bytes of IO data the driver will need to perform well.
2145 */
2146static unsigned long ibmvscsi_get_desired_dma(struct vio_dev *vdev)
2147{
2148 /* iu_storage data allocated in initialize_event_pool */
Brian King4f10aae2008-12-17 17:19:33 -06002149 unsigned long desired_io = max_events * sizeof(union viosrp_iu);
Robert Jennings7912a0a2008-07-24 04:35:27 +10002150
2151 /* add io space for sg data */
Brian King004dd5e2008-08-15 10:48:47 -05002152 desired_io += (IBMVSCSI_MAX_SECTORS_DEFAULT * 512 *
Robert Jennings7912a0a2008-07-24 04:35:27 +10002153 IBMVSCSI_CMDS_PER_LUN_DEFAULT);
2154
2155 return desired_io;
2156}
2157
Brian King0f33ece2010-06-17 13:56:00 -05002158static void ibmvscsi_do_work(struct ibmvscsi_host_data *hostdata)
2159{
2160 int rc;
2161 char *action = "reset";
2162
2163 if (hostdata->reset_crq) {
2164 smp_rmb();
2165 hostdata->reset_crq = 0;
2166
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002167 rc = ibmvscsi_reset_crq_queue(&hostdata->queue, hostdata);
Brian King0f33ece2010-06-17 13:56:00 -05002168 if (!rc)
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002169 rc = ibmvscsi_send_crq(hostdata, 0xC001000000000000LL, 0);
Brian King201aed62011-04-27 10:27:08 -05002170 vio_enable_interrupts(to_vio_dev(hostdata->dev));
Brian King0f33ece2010-06-17 13:56:00 -05002171 } else if (hostdata->reenable_crq) {
2172 smp_rmb();
2173 action = "enable";
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002174 rc = ibmvscsi_reenable_crq_queue(&hostdata->queue, hostdata);
Brian King0f33ece2010-06-17 13:56:00 -05002175 hostdata->reenable_crq = 0;
2176 if (!rc)
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002177 rc = ibmvscsi_send_crq(hostdata, 0xC001000000000000LL, 0);
Brian King0f33ece2010-06-17 13:56:00 -05002178 } else
2179 return;
2180
2181 if (rc) {
2182 atomic_set(&hostdata->request_limit, -1);
2183 dev_err(hostdata->dev, "error after %s\n", action);
2184 }
2185
2186 scsi_unblock_requests(hostdata->host);
2187}
2188
2189static int ibmvscsi_work_to_do(struct ibmvscsi_host_data *hostdata)
2190{
2191 if (kthread_should_stop())
2192 return 1;
2193 else if (hostdata->reset_crq) {
2194 smp_rmb();
2195 return 1;
2196 } else if (hostdata->reenable_crq) {
2197 smp_rmb();
2198 return 1;
2199 }
2200
2201 return 0;
2202}
2203
2204static int ibmvscsi_work(void *data)
2205{
2206 struct ibmvscsi_host_data *hostdata = data;
2207 int rc;
2208
2209 set_user_nice(current, -20);
2210
2211 while (1) {
2212 rc = wait_event_interruptible(hostdata->work_wait_q,
2213 ibmvscsi_work_to_do(hostdata));
2214
2215 BUG_ON(rc);
2216
2217 if (kthread_should_stop())
2218 break;
2219
2220 ibmvscsi_do_work(hostdata);
2221 }
2222
2223 return 0;
2224}
2225
Robert Jennings7912a0a2008-07-24 04:35:27 +10002226/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 * Called by bus code for each adapter
2228 */
2229static int ibmvscsi_probe(struct vio_dev *vdev, const struct vio_device_id *id)
2230{
2231 struct ibmvscsi_host_data *hostdata;
2232 struct Scsi_Host *host;
2233 struct device *dev = &vdev->dev;
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002234 struct srp_rport_identifiers ids;
2235 struct srp_rport *rport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 unsigned long wait_switch = 0;
Dave C Boutchercefbda22006-06-12 21:22:51 -05002237 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Greg Kroah-Hartman559fde72009-05-04 12:40:54 -07002239 dev_set_drvdata(&vdev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 host = scsi_host_alloc(&driver_template, sizeof(*hostdata));
2242 if (!host) {
Brian King6c0a60e2007-06-13 17:12:19 -05002243 dev_err(&vdev->dev, "couldn't allocate host data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 goto scsi_host_alloc_failed;
2245 }
2246
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002247 host->transportt = ibmvscsi_transport_template;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09002248 hostdata = shost_priv(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 memset(hostdata, 0x00, sizeof(*hostdata));
2250 INIT_LIST_HEAD(&hostdata->sent);
Brian King0f33ece2010-06-17 13:56:00 -05002251 init_waitqueue_head(&hostdata->work_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 hostdata->host = host;
2253 hostdata->dev = dev;
2254 atomic_set(&hostdata->request_limit, -1);
Robert Jennings7912a0a2008-07-24 04:35:27 +10002255 hostdata->host->max_sectors = IBMVSCSI_MAX_SECTORS_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Brian King126c5cc2009-06-08 16:19:08 -05002257 if (map_persist_bufs(hostdata)) {
2258 dev_err(&vdev->dev, "couldn't map persistent buffers\n");
2259 goto persist_bufs_failed;
2260 }
2261
Brian King0f33ece2010-06-17 13:56:00 -05002262 hostdata->work_thread = kthread_run(ibmvscsi_work, hostdata, "%s_%d",
2263 "ibmvscsi", host->host_no);
2264
2265 if (IS_ERR(hostdata->work_thread)) {
2266 dev_err(&vdev->dev, "couldn't initialize kthread. rc=%ld\n",
2267 PTR_ERR(hostdata->work_thread));
2268 goto init_crq_failed;
2269 }
2270
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002271 rc = ibmvscsi_init_crq_queue(&hostdata->queue, hostdata, max_events);
Dave C Boutchercefbda22006-06-12 21:22:51 -05002272 if (rc != 0 && rc != H_RESOURCE) {
Brian King6c0a60e2007-06-13 17:12:19 -05002273 dev_err(&vdev->dev, "couldn't initialize crq. rc=%d\n", rc);
Brian King0f33ece2010-06-17 13:56:00 -05002274 goto kill_kthread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
Brian King4f10aae2008-12-17 17:19:33 -06002276 if (initialize_event_pool(&hostdata->pool, max_events, hostdata) != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05002277 dev_err(&vdev->dev, "couldn't initialize event pool\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 goto init_pool_failed;
2279 }
2280
2281 host->max_lun = 8;
2282 host->max_id = max_id;
2283 host->max_channel = max_channel;
Brian Kingfbc56f02009-06-08 16:19:01 -05002284 host->max_cmd_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 if (scsi_add_host(hostdata->host, hostdata->dev))
2287 goto add_host_failed;
2288
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002289 /* we don't have a proper target_port_id so let's use the fake one */
2290 memcpy(ids.port_id, hostdata->madapter_info.partition_name,
2291 sizeof(ids.port_id));
FUJITA Tomonoriaebd5e42007-07-11 15:08:15 +09002292 ids.roles = SRP_RPORT_ROLE_TARGET;
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002293 rport = srp_rport_add(host, &ids);
2294 if (IS_ERR(rport))
2295 goto add_srp_port_failed;
2296
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 /* Try to send an initialization message. Note that this is allowed
2298 * to fail if the other end is not acive. In that case we don't
2299 * want to scan
2300 */
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002301 if (ibmvscsi_send_crq(hostdata, 0xC001000000000000LL, 0) == 0
Dave C Boutchercefbda22006-06-12 21:22:51 -05002302 || rc == H_RESOURCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 /*
2304 * Wait around max init_timeout secs for the adapter to finish
2305 * initializing. When we are done initializing, we will have a
2306 * valid request_limit. We don't want Linux scanning before
2307 * we are ready.
2308 */
2309 for (wait_switch = jiffies + (init_timeout * HZ);
2310 time_before(jiffies, wait_switch) &&
2311 atomic_read(&hostdata->request_limit) < 2;) {
2312
2313 msleep(10);
2314 }
2315
2316 /* if we now have a valid request_limit, initiate a scan */
2317 if (atomic_read(&hostdata->request_limit) > 0)
2318 scsi_scan_host(host);
2319 }
2320
Greg Kroah-Hartman559fde72009-05-04 12:40:54 -07002321 dev_set_drvdata(&vdev->dev, hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 return 0;
2323
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002324 add_srp_port_failed:
2325 scsi_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 add_host_failed:
2327 release_event_pool(&hostdata->pool, hostdata);
2328 init_pool_failed:
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002329 ibmvscsi_release_crq_queue(&hostdata->queue, hostdata, max_events);
Brian King0f33ece2010-06-17 13:56:00 -05002330 kill_kthread:
2331 kthread_stop(hostdata->work_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 init_crq_failed:
Brian King126c5cc2009-06-08 16:19:08 -05002333 unmap_persist_bufs(hostdata);
2334 persist_bufs_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 scsi_host_put(host);
2336 scsi_host_alloc_failed:
2337 return -1;
2338}
2339
2340static int ibmvscsi_remove(struct vio_dev *vdev)
2341{
Greg Kroah-Hartman559fde72009-05-04 12:40:54 -07002342 struct ibmvscsi_host_data *hostdata = dev_get_drvdata(&vdev->dev);
Brian King126c5cc2009-06-08 16:19:08 -05002343 unmap_persist_bufs(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 release_event_pool(&hostdata->pool, hostdata);
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002345 ibmvscsi_release_crq_queue(&hostdata->queue, hostdata,
Brian King4f10aae2008-12-17 17:19:33 -06002346 max_events);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002347
Brian King0f33ece2010-06-17 13:56:00 -05002348 kthread_stop(hostdata->work_thread);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002349 srp_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 scsi_remove_host(hostdata->host);
2351 scsi_host_put(hostdata->host);
2352
2353 return 0;
2354}
2355
2356/**
Brian King64355b92010-02-21 10:37:57 -06002357 * ibmvscsi_resume: Resume from suspend
2358 * @dev: device struct
2359 *
2360 * We may have lost an interrupt across suspend/resume, so kick the
2361 * interrupt handler
2362 */
2363static int ibmvscsi_resume(struct device *dev)
2364{
2365 struct ibmvscsi_host_data *hostdata = dev_get_drvdata(dev);
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002366 vio_disable_interrupts(to_vio_dev(hostdata->dev));
2367 tasklet_schedule(&hostdata->srp_task);
2368
2369 return 0;
Brian King64355b92010-02-21 10:37:57 -06002370}
2371
2372/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 * ibmvscsi_device_table: Used by vio.c to match devices in the device tree we
2374 * support.
2375 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08002376static struct vio_device_id ibmvscsi_device_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 {"vscsi", "IBM,v-scsi"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10002378 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380MODULE_DEVICE_TABLE(vio, ibmvscsi_device_table);
Stephen Rothwell915124d2005-10-24 15:12:22 +10002381
Brian King64355b92010-02-21 10:37:57 -06002382static struct dev_pm_ops ibmvscsi_pm_ops = {
2383 .resume = ibmvscsi_resume
2384};
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386static struct vio_driver ibmvscsi_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 .id_table = ibmvscsi_device_table,
2388 .probe = ibmvscsi_probe,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10002389 .remove = ibmvscsi_remove,
Robert Jennings7912a0a2008-07-24 04:35:27 +10002390 .get_desired_dma = ibmvscsi_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00002391 .name = "ibmvscsi",
2392 .pm = &ibmvscsi_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393};
2394
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002395static struct srp_function_template ibmvscsi_transport_functions = {
2396};
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398int __init ibmvscsi_module_init(void)
2399{
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002400 int ret;
2401
Brian King4f10aae2008-12-17 17:19:33 -06002402 /* Ensure we have two requests to do error recovery */
2403 driver_template.can_queue = max_requests;
2404 max_events = max_requests + 2;
2405
Benjamin Herrenschmidt9965c2f2012-07-30 11:32:26 +10002406 if (!firmware_has_feature(FW_FEATURE_VIO))
David Woodhoused3849d52007-09-22 08:29:36 +10002407 return -ENODEV;
2408
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002409 ibmvscsi_transport_template =
2410 srp_attach_transport(&ibmvscsi_transport_functions);
2411 if (!ibmvscsi_transport_template)
2412 return -ENOMEM;
2413
2414 ret = vio_register_driver(&ibmvscsi_driver);
2415 if (ret)
2416 srp_release_transport(ibmvscsi_transport_template);
2417 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418}
2419
2420void __exit ibmvscsi_module_exit(void)
2421{
2422 vio_unregister_driver(&ibmvscsi_driver);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002423 srp_release_transport(ibmvscsi_transport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424}
2425
2426module_init(ibmvscsi_module_init);
2427module_exit(ibmvscsi_module_exit);