blob: 74d07d137daeb75b038071f6fe9a279b927243e1 [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
43 * puts the message in the next 16 byte space in round-robbin fashion,
44 * turns on the high order bit of the message (the valid bit), and
45 * generates an interrupt to the receiver (if interrupts are turned on.)
46 * The receiver just turns off the valid bit when they have copied out
47 * the message.
48 *
49 * The VSCSI client builds a SCSI Remote Protocol (SRP) Information Unit
50 * (IU) (as defined in the T10 standard available at www.t10.org), gets
51 * a DMA address for the message, and sends it to the server as the
52 * payload of a CRQ message. The server DMAs the SRP IU and processes it,
53 * including doing any additional data transfers. When it is done, it
54 * DMAs the SRP response back to the same address as the request came from,
55 * and sends a CRQ message back to inform the client that the request has
56 * completed.
57 *
58 * Note that some of the underlying infrastructure is different between
59 * machines conforming to the "RS/6000 Platform Architecture" (RPA) and
60 * the older iSeries hypervisor models. To support both, some low level
61 * routines have been broken out into rpa_vscsi.c and iseries_vscsi.c.
62 * The Makefile should pick one, not two, not zero, of these.
63 *
64 * TODO: This is currently pretty tied to the IBM i/pSeries hypervisor
65 * interfaces. It would be really nice to abstract this above an RDMA
66 * layer.
67 */
68
69#include <linux/module.h>
70#include <linux/moduleparam.h>
71#include <linux/dma-mapping.h>
72#include <linux/delay.h>
David Woodhoused3849d52007-09-22 08:29:36 +100073#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <asm/vio.h>
Robert Jennings7912a0a2008-07-24 04:35:27 +100075#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <scsi/scsi.h>
77#include <scsi/scsi_cmnd.h>
78#include <scsi/scsi_host.h>
79#include <scsi/scsi_device.h>
FUJITA Tomonori4d680412007-06-27 16:32:50 +090080#include <scsi/scsi_transport_srp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include "ibmvscsi.h"
82
83/* The values below are somewhat arbitrary default values, but
84 * OS/400 will use 3 busses (disks, CDs, tapes, I think.)
85 * Note that there are 3 bits of channel value, 6 bits of id, and
86 * 5 bits of LUN.
87 */
88static int max_id = 64;
89static int max_channel = 3;
90static int init_timeout = 5;
Robert Jenningsa897ff22007-03-28 12:45:46 -050091static int max_requests = IBMVSCSI_MAX_REQUESTS_DEFAULT;
Brian King4f10aae2008-12-17 17:19:33 -060092static int max_events = IBMVSCSI_MAX_REQUESTS_DEFAULT + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
FUJITA Tomonori4d680412007-06-27 16:32:50 +090094static struct scsi_transport_template *ibmvscsi_transport_template;
95
Dave C Boutcher2b541f82006-01-19 13:34:44 -060096#define IBMVSCSI_VERSION "1.5.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
David Woodhoused3849d52007-09-22 08:29:36 +100098static struct ibmvscsi_ops *ibmvscsi_ops;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100MODULE_DESCRIPTION("IBM Virtual SCSI");
101MODULE_AUTHOR("Dave Boutcher");
102MODULE_LICENSE("GPL");
103MODULE_VERSION(IBMVSCSI_VERSION);
104
105module_param_named(max_id, max_id, int, S_IRUGO | S_IWUSR);
106MODULE_PARM_DESC(max_id, "Largest ID value for each channel");
107module_param_named(max_channel, max_channel, int, S_IRUGO | S_IWUSR);
108MODULE_PARM_DESC(max_channel, "Largest channel value");
109module_param_named(init_timeout, init_timeout, int, S_IRUGO | S_IWUSR);
110MODULE_PARM_DESC(init_timeout, "Initialization timeout in seconds");
Brian King21465ed2008-12-08 17:01:47 -0600111module_param_named(max_requests, max_requests, int, S_IRUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112MODULE_PARM_DESC(max_requests, "Maximum requests for this adapter");
113
114/* ------------------------------------------------------------
115 * Routines for the event pool and event structs
116 */
117/**
118 * initialize_event_pool: - Allocates and initializes the event pool for a host
119 * @pool: event_pool to be initialized
120 * @size: Number of events in pool
121 * @hostdata: ibmvscsi_host_data who owns the event pool
122 *
123 * Returns zero on success.
124*/
125static int initialize_event_pool(struct event_pool *pool,
126 int size, struct ibmvscsi_host_data *hostdata)
127{
128 int i;
129
130 pool->size = size;
131 pool->next = 0;
FUJITA Tomonori4c021dd132006-04-07 19:10:03 +0900132 pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (!pool->events)
134 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 pool->iu_storage =
137 dma_alloc_coherent(hostdata->dev,
138 pool->size * sizeof(*pool->iu_storage),
139 &pool->iu_token, 0);
140 if (!pool->iu_storage) {
141 kfree(pool->events);
142 return -ENOMEM;
143 }
144
145 for (i = 0; i < pool->size; ++i) {
146 struct srp_event_struct *evt = &pool->events[i];
147 memset(&evt->crq, 0x00, sizeof(evt->crq));
148 atomic_set(&evt->free, 1);
149 evt->crq.valid = 0x80;
150 evt->crq.IU_length = sizeof(*evt->xfer_iu);
151 evt->crq.IU_data_ptr = pool->iu_token +
152 sizeof(*evt->xfer_iu) * i;
153 evt->xfer_iu = pool->iu_storage + i;
154 evt->hostdata = hostdata;
James Bottomley4dddbc22005-09-06 17:11:54 -0500155 evt->ext_list = NULL;
156 evt->ext_list_token = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158
159 return 0;
160}
161
162/**
163 * release_event_pool: - Frees memory of an event pool of a host
164 * @pool: event_pool to be released
165 * @hostdata: ibmvscsi_host_data who owns the even pool
166 *
167 * Returns zero on success.
168*/
169static void release_event_pool(struct event_pool *pool,
170 struct ibmvscsi_host_data *hostdata)
171{
172 int i, in_use = 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500173 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (atomic_read(&pool->events[i].free) != 1)
175 ++in_use;
James Bottomley4dddbc22005-09-06 17:11:54 -0500176 if (pool->events[i].ext_list) {
177 dma_free_coherent(hostdata->dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900178 SG_ALL * sizeof(struct srp_direct_buf),
James Bottomley4dddbc22005-09-06 17:11:54 -0500179 pool->events[i].ext_list,
180 pool->events[i].ext_list_token);
181 }
182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (in_use)
Brian King6c0a60e2007-06-13 17:12:19 -0500184 dev_warn(hostdata->dev, "releasing event pool with %d "
185 "events still in use?\n", in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 kfree(pool->events);
187 dma_free_coherent(hostdata->dev,
188 pool->size * sizeof(*pool->iu_storage),
189 pool->iu_storage, pool->iu_token);
190}
191
192/**
193 * valid_event_struct: - Determines if event is valid.
194 * @pool: event_pool that contains the event
195 * @evt: srp_event_struct to be checked for validity
196 *
197 * Returns zero if event is invalid, one otherwise.
198*/
199static int valid_event_struct(struct event_pool *pool,
200 struct srp_event_struct *evt)
201{
202 int index = evt - pool->events;
203 if (index < 0 || index >= pool->size) /* outside of bounds */
204 return 0;
205 if (evt != pool->events + index) /* unaligned */
206 return 0;
207 return 1;
208}
209
210/**
211 * ibmvscsi_free-event_struct: - Changes status of event to "free"
212 * @pool: event_pool that contains the event
213 * @evt: srp_event_struct to be modified
214 *
215*/
216static void free_event_struct(struct event_pool *pool,
217 struct srp_event_struct *evt)
218{
219 if (!valid_event_struct(pool, evt)) {
Brian King6c0a60e2007-06-13 17:12:19 -0500220 dev_err(evt->hostdata->dev, "Freeing invalid event_struct %p "
221 "(not in pool %p)\n", evt, pool->events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return;
223 }
224 if (atomic_inc_return(&evt->free) != 1) {
Brian King6c0a60e2007-06-13 17:12:19 -0500225 dev_err(evt->hostdata->dev, "Freeing event_struct %p "
226 "which is not in use!\n", evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return;
228 }
229}
230
231/**
232 * get_evt_struct: - Gets the next free event in pool
233 * @pool: event_pool that contains the events to be searched
234 *
235 * Returns the next event in "free" state, and NULL if none are free.
236 * Note that no synchronization is done here, we assume the host_lock
237 * will syncrhonze things.
238*/
239static struct srp_event_struct *get_event_struct(struct event_pool *pool)
240{
241 int i;
242 int poolsize = pool->size;
243 int offset = pool->next;
244
245 for (i = 0; i < poolsize; i++) {
246 offset = (offset + 1) % poolsize;
247 if (!atomic_dec_if_positive(&pool->events[offset].free)) {
248 pool->next = offset;
249 return &pool->events[offset];
250 }
251 }
252
253 printk(KERN_ERR "ibmvscsi: found no event struct in pool!\n");
254 return NULL;
255}
256
257/**
258 * init_event_struct: Initialize fields in an event struct that are always
259 * required.
260 * @evt: The event
261 * @done: Routine to call when the event is responded to
262 * @format: SRP or MAD format
263 * @timeout: timeout value set in the CRQ
264 */
265static void init_event_struct(struct srp_event_struct *evt_struct,
266 void (*done) (struct srp_event_struct *),
267 u8 format,
268 int timeout)
269{
270 evt_struct->cmnd = NULL;
271 evt_struct->cmnd_done = NULL;
272 evt_struct->sync_srp = NULL;
273 evt_struct->crq.format = format;
274 evt_struct->crq.timeout = timeout;
275 evt_struct->done = done;
276}
277
278/* ------------------------------------------------------------
279 * Routines for receiving SCSI responses from the hosting partition
280 */
281
282/**
283 * set_srp_direction: Set the fields in the srp related to data
284 * direction and number of buffers based on the direction in
285 * the scsi_cmnd and the number of buffers
286 */
287static void set_srp_direction(struct scsi_cmnd *cmd,
288 struct srp_cmd *srp_cmd,
289 int numbuf)
290{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900291 u8 fmt;
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (numbuf == 0)
294 return;
295
FUJITA Tomonorief265672006-03-26 03:57:14 +0900296 if (numbuf == 1)
297 fmt = SRP_DATA_DESC_DIRECT;
298 else {
299 fmt = SRP_DATA_DESC_INDIRECT;
300 numbuf = min(numbuf, MAX_INDIRECT_BUFS);
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (cmd->sc_data_direction == DMA_TO_DEVICE)
FUJITA Tomonorief265672006-03-26 03:57:14 +0900303 srp_cmd->data_out_desc_cnt = numbuf;
304 else
305 srp_cmd->data_in_desc_cnt = numbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
FUJITA Tomonorief265672006-03-26 03:57:14 +0900307
308 if (cmd->sc_data_direction == DMA_TO_DEVICE)
309 srp_cmd->buf_fmt = fmt << 4;
310 else
311 srp_cmd->buf_fmt = fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
FUJITA Tomonorief265672006-03-26 03:57:14 +0900314static void unmap_sg_list(int num_entries,
James Bottomley4dddbc22005-09-06 17:11:54 -0500315 struct device *dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900316 struct srp_direct_buf *md)
317{
James Bottomley4dddbc22005-09-06 17:11:54 -0500318 int i;
319
FUJITA Tomonorief265672006-03-26 03:57:14 +0900320 for (i = 0; i < num_entries; ++i)
321 dma_unmap_single(dev, md[i].va, md[i].len, DMA_BIDIRECTIONAL);
James Bottomley4dddbc22005-09-06 17:11:54 -0500322}
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/**
325 * unmap_cmd_data: - Unmap data pointed in srp_cmd based on the format
326 * @cmd: srp_cmd whose additional_data member will be unmapped
327 * @dev: device for which the memory is mapped
328 *
329*/
James Bottomley4dddbc22005-09-06 17:11:54 -0500330static void unmap_cmd_data(struct srp_cmd *cmd,
331 struct srp_event_struct *evt_struct,
332 struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900334 u8 out_fmt, in_fmt;
335
336 out_fmt = cmd->buf_fmt >> 4;
337 in_fmt = cmd->buf_fmt & ((1U << 4) - 1);
338
339 if (out_fmt == SRP_NO_DATA_DESC && in_fmt == SRP_NO_DATA_DESC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900341 else if (out_fmt == SRP_DATA_DESC_DIRECT ||
342 in_fmt == SRP_DATA_DESC_DIRECT) {
343 struct srp_direct_buf *data =
344 (struct srp_direct_buf *) cmd->add_data;
345 dma_unmap_single(dev, data->va, data->len, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 } else {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900347 struct srp_indirect_buf *indirect =
348 (struct srp_indirect_buf *) cmd->add_data;
349 int num_mapped = indirect->table_desc.len /
350 sizeof(struct srp_direct_buf);
James Bottomley4dddbc22005-09-06 17:11:54 -0500351
352 if (num_mapped <= MAX_INDIRECT_BUFS) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900353 unmap_sg_list(num_mapped, dev, &indirect->desc_list[0]);
James Bottomley4dddbc22005-09-06 17:11:54 -0500354 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
James Bottomley4dddbc22005-09-06 17:11:54 -0500356
357 unmap_sg_list(num_mapped, dev, evt_struct->ext_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359}
360
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900361static int map_sg_list(struct scsi_cmnd *cmd, int nseg,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900362 struct srp_direct_buf *md)
James Bottomley4dddbc22005-09-06 17:11:54 -0500363{
364 int i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900365 struct scatterlist *sg;
James Bottomley4dddbc22005-09-06 17:11:54 -0500366 u64 total_length = 0;
367
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900368 scsi_for_each_sg(cmd, sg, nseg, i) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900369 struct srp_direct_buf *descr = md + i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900370 descr->va = sg_dma_address(sg);
371 descr->len = sg_dma_len(sg);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900372 descr->key = 0;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900373 total_length += sg_dma_len(sg);
James Bottomley4dddbc22005-09-06 17:11:54 -0500374 }
375 return total_length;
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/**
379 * map_sg_data: - Maps dma for a scatterlist and initializes decriptor fields
380 * @cmd: Scsi_Cmnd with the scatterlist
381 * @srp_cmd: srp_cmd that contains the memory descriptor
382 * @dev: device for which to map dma memory
383 *
384 * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
385 * Returns 1 on success.
386*/
387static int map_sg_data(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500388 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct srp_cmd *srp_cmd, struct device *dev)
390{
391
James Bottomley4dddbc22005-09-06 17:11:54 -0500392 int sg_mapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 u64 total_length = 0;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900394 struct srp_direct_buf *data =
395 (struct srp_direct_buf *) srp_cmd->add_data;
396 struct srp_indirect_buf *indirect =
397 (struct srp_indirect_buf *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900399 sg_mapped = scsi_dma_map(cmd);
400 if (!sg_mapped)
401 return 1;
402 else if (sg_mapped < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return 0;
404
405 set_srp_direction(cmd, srp_cmd, sg_mapped);
406
407 /* special case; we can use a single direct descriptor */
408 if (sg_mapped == 1) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900409 map_sg_list(cmd, sg_mapped, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return 1;
411 }
412
FUJITA Tomonorief265672006-03-26 03:57:14 +0900413 indirect->table_desc.va = 0;
414 indirect->table_desc.len = sg_mapped * sizeof(struct srp_direct_buf);
415 indirect->table_desc.key = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
James Bottomley4dddbc22005-09-06 17:11:54 -0500417 if (sg_mapped <= MAX_INDIRECT_BUFS) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900418 total_length = map_sg_list(cmd, sg_mapped,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900419 &indirect->desc_list[0]);
420 indirect->len = total_length;
James Bottomley4dddbc22005-09-06 17:11:54 -0500421 return 1;
422 }
423
424 /* get indirect table */
425 if (!evt_struct->ext_list) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900426 evt_struct->ext_list = (struct srp_direct_buf *)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900427 dma_alloc_coherent(dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900428 SG_ALL * sizeof(struct srp_direct_buf),
429 &evt_struct->ext_list_token, 0);
James Bottomley4dddbc22005-09-06 17:11:54 -0500430 if (!evt_struct->ext_list) {
Robert Jennings7912a0a2008-07-24 04:35:27 +1000431 if (!firmware_has_feature(FW_FEATURE_CMO))
432 sdev_printk(KERN_ERR, cmd->device,
433 "Can't allocate memory "
434 "for indirect table\n");
James Bottomley4dddbc22005-09-06 17:11:54 -0500435 return 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500436 }
437 }
438
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900439 total_length = map_sg_list(cmd, sg_mapped, evt_struct->ext_list);
James Bottomley4dddbc22005-09-06 17:11:54 -0500440
FUJITA Tomonorief265672006-03-26 03:57:14 +0900441 indirect->len = total_length;
442 indirect->table_desc.va = evt_struct->ext_list_token;
443 indirect->table_desc.len = sg_mapped * sizeof(indirect->desc_list[0]);
444 memcpy(indirect->desc_list, evt_struct->ext_list,
445 MAX_INDIRECT_BUFS * sizeof(struct srp_direct_buf));
James Bottomley4dddbc22005-09-06 17:11:54 -0500446 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * map_data_for_srp_cmd: - Calls functions to map data for srp cmds
451 * @cmd: struct scsi_cmnd with the memory to be mapped
452 * @srp_cmd: srp_cmd that contains the memory descriptor
453 * @dev: dma device for which to map dma memory
454 *
455 * Called by scsi_cmd_to_srp_cmd() when converting scsi cmds to srp cmds
456 * Returns 1 on success.
457*/
458static int map_data_for_srp_cmd(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500459 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 struct srp_cmd *srp_cmd, struct device *dev)
461{
462 switch (cmd->sc_data_direction) {
463 case DMA_FROM_DEVICE:
464 case DMA_TO_DEVICE:
465 break;
466 case DMA_NONE:
467 return 1;
468 case DMA_BIDIRECTIONAL:
Brian King6c0a60e2007-06-13 17:12:19 -0500469 sdev_printk(KERN_ERR, cmd->device,
470 "Can't map DMA_BIDIRECTIONAL to read/write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return 0;
472 default:
Brian King6c0a60e2007-06-13 17:12:19 -0500473 sdev_printk(KERN_ERR, cmd->device,
474 "Unknown data direction 0x%02x; can't map!\n",
475 cmd->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return 0;
477 }
478
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900479 return map_sg_data(cmd, evt_struct, srp_cmd, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Brian King3d0e91f2007-06-13 17:12:26 -0500482/**
483 * purge_requests: Our virtual adapter just shut down. purge any sent requests
484 * @hostdata: the adapter
485 */
486static void purge_requests(struct ibmvscsi_host_data *hostdata, int error_code)
487{
488 struct srp_event_struct *tmp_evt, *pos;
489 unsigned long flags;
490
491 spin_lock_irqsave(hostdata->host->host_lock, flags);
492 list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
493 list_del(&tmp_evt->list);
494 del_timer(&tmp_evt->timer);
495 if (tmp_evt->cmnd) {
496 tmp_evt->cmnd->result = (error_code << 16);
497 unmap_cmd_data(&tmp_evt->iu.srp.cmd,
498 tmp_evt,
499 tmp_evt->hostdata->dev);
500 if (tmp_evt->cmnd_done)
501 tmp_evt->cmnd_done(tmp_evt->cmnd);
502 } else if (tmp_evt->done)
503 tmp_evt->done(tmp_evt);
504 free_event_struct(&tmp_evt->hostdata->pool, tmp_evt);
505 }
506 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
507}
508
509/**
510 * ibmvscsi_reset_host - Reset the connection to the server
511 * @hostdata: struct ibmvscsi_host_data to reset
512*/
513static void ibmvscsi_reset_host(struct ibmvscsi_host_data *hostdata)
514{
515 scsi_block_requests(hostdata->host);
516 atomic_set(&hostdata->request_limit, 0);
517
518 purge_requests(hostdata, DID_ERROR);
David Woodhoused3849d52007-09-22 08:29:36 +1000519 if ((ibmvscsi_ops->reset_crq_queue(&hostdata->queue, hostdata)) ||
520 (ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0)) ||
Brian King3d0e91f2007-06-13 17:12:26 -0500521 (vio_enable_interrupts(to_vio_dev(hostdata->dev)))) {
522 atomic_set(&hostdata->request_limit, -1);
523 dev_err(hostdata->dev, "error after reset\n");
524 }
525
526 scsi_unblock_requests(hostdata->host);
527}
528
529/**
530 * ibmvscsi_timeout - Internal command timeout handler
531 * @evt_struct: struct srp_event_struct that timed out
532 *
533 * Called when an internally generated command times out
534*/
535static void ibmvscsi_timeout(struct srp_event_struct *evt_struct)
536{
537 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
538
539 dev_err(hostdata->dev, "Command timed out (%x). Resetting connection\n",
540 evt_struct->iu.srp.cmd.opcode);
541
542 ibmvscsi_reset_host(hostdata);
543}
544
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/* ------------------------------------------------------------
547 * Routines for sending and receiving SRPs
548 */
549/**
550 * ibmvscsi_send_srp_event: - Transforms event to u64 array and calls send_crq()
551 * @evt_struct: evt_struct to be sent
552 * @hostdata: ibmvscsi_host_data of host
Brian King3d0e91f2007-06-13 17:12:26 -0500553 * @timeout: timeout in seconds - 0 means do not time command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 *
555 * Returns the value returned from ibmvscsi_send_crq(). (Zero for success)
556 * Note that this routine assumes that host_lock is held for synchronization
557*/
558static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct,
Brian King3d0e91f2007-06-13 17:12:26 -0500559 struct ibmvscsi_host_data *hostdata,
560 unsigned long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 u64 *crq_as_u64 = (u64 *) &evt_struct->crq;
Robert Jennings3c887e82007-10-30 11:37:07 -0500563 int request_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 int rc;
565
Robert Jenningsa897ff22007-03-28 12:45:46 -0500566 /* If we have exhausted our request limit, just fail this request,
567 * unless it is for a reset or abort.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 * Note that there are rare cases involving driver generated requests
569 * (such as task management requests) that the mid layer may think we
570 * can handle more requests (can_queue) when we actually can't
571 */
Dave C Boutchercefbda22006-06-12 21:22:51 -0500572 if (evt_struct->crq.format == VIOSRP_SRP_FORMAT) {
573 request_status =
574 atomic_dec_if_positive(&hostdata->request_limit);
575 /* If request limit was -1 when we started, it is now even
576 * less than that
577 */
578 if (request_status < -1)
579 goto send_error;
Robert Jenningsa897ff22007-03-28 12:45:46 -0500580 /* Otherwise, we may have run out of requests. */
Robert Jennings3c887e82007-10-30 11:37:07 -0500581 /* If request limit was 0 when we started the adapter is in the
582 * process of performing a login with the server adapter, or
583 * we may have run out of requests.
584 */
585 else if (request_status == -1 &&
586 evt_struct->iu.srp.login_req.opcode != SRP_LOGIN_REQ)
587 goto send_busy;
Robert Jenningsa897ff22007-03-28 12:45:46 -0500588 /* Abort and reset calls should make it through.
589 * Nothing except abort and reset should use the last two
590 * slots unless we had two or less to begin with.
591 */
592 else if (request_status < 2 &&
593 evt_struct->iu.srp.cmd.opcode != SRP_TSK_MGMT) {
594 /* In the case that we have less than two requests
595 * available, check the server limit as a combination
596 * of the request limit and the number of requests
597 * in-flight (the size of the send list). If the
598 * server limit is greater than 2, return busy so
599 * that the last two are reserved for reset and abort.
600 */
601 int server_limit = request_status;
602 struct srp_event_struct *tmp_evt;
603
604 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
605 server_limit++;
606 }
607
608 if (server_limit > 2)
609 goto send_busy;
610 }
Dave C Boutchercefbda22006-06-12 21:22:51 -0500611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 /* Copy the IU into the transfer area */
614 *evt_struct->xfer_iu = evt_struct->iu;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900615 evt_struct->xfer_iu->srp.rsp.tag = (u64)evt_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* Add this to the sent list. We need to do this
618 * before we actually send
619 * in case it comes back REALLY fast
620 */
621 list_add_tail(&evt_struct->list, &hostdata->sent);
622
Brian King3d0e91f2007-06-13 17:12:26 -0500623 init_timer(&evt_struct->timer);
624 if (timeout) {
625 evt_struct->timer.data = (unsigned long) evt_struct;
626 evt_struct->timer.expires = jiffies + (timeout * HZ);
627 evt_struct->timer.function = (void (*)(unsigned long))ibmvscsi_timeout;
628 add_timer(&evt_struct->timer);
629 }
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if ((rc =
David Woodhoused3849d52007-09-22 08:29:36 +1000632 ibmvscsi_ops->send_crq(hostdata, crq_as_u64[0], crq_as_u64[1])) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 list_del(&evt_struct->list);
Brian King3d0e91f2007-06-13 17:12:26 -0500634 del_timer(&evt_struct->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Robert Jennings860784c2007-11-12 09:00:23 -0600636 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
637 * Firmware will send a CRQ with a transport event (0xFF) to
638 * tell this client what has happened to the transport. This
639 * will be handled in ibmvscsi_handle_crq()
640 */
641 if (rc == H_CLOSED) {
642 dev_warn(hostdata->dev, "send warning. "
643 "Receive queue closed, will retry.\n");
644 goto send_busy;
645 }
Brian King6c0a60e2007-06-13 17:12:19 -0500646 dev_err(hostdata->dev, "send error %d\n", rc);
Robert Jenningsa897ff22007-03-28 12:45:46 -0500647 atomic_inc(&hostdata->request_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 goto send_error;
649 }
650
651 return 0;
652
Dave C Boutchercefbda22006-06-12 21:22:51 -0500653 send_busy:
James Bottomley4dddbc22005-09-06 17:11:54 -0500654 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 free_event_struct(&hostdata->pool, evt_struct);
Robert Jennings3c887e82007-10-30 11:37:07 -0500657 if (request_status != -1)
658 atomic_inc(&hostdata->request_limit);
Robert Jenningsa897ff22007-03-28 12:45:46 -0500659 return SCSI_MLQUEUE_HOST_BUSY;
Dave C Boutchercefbda22006-06-12 21:22:51 -0500660
661 send_error:
662 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
663
664 if (evt_struct->cmnd != NULL) {
665 evt_struct->cmnd->result = DID_ERROR << 16;
666 evt_struct->cmnd_done(evt_struct->cmnd);
667 } else if (evt_struct->done)
668 evt_struct->done(evt_struct);
669
670 free_event_struct(&hostdata->pool, evt_struct);
671 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
674/**
675 * handle_cmd_rsp: - Handle responses from commands
676 * @evt_struct: srp_event_struct to be handled
677 *
678 * Used as a callback by when sending scsi cmds.
679 * Gets called by ibmvscsi_handle_crq()
680*/
681static void handle_cmd_rsp(struct srp_event_struct *evt_struct)
682{
683 struct srp_rsp *rsp = &evt_struct->xfer_iu->srp.rsp;
684 struct scsi_cmnd *cmnd = evt_struct->cmnd;
685
FUJITA Tomonorief265672006-03-26 03:57:14 +0900686 if (unlikely(rsp->opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -0500688 dev_warn(evt_struct->hostdata->dev,
689 "bad SRP RSP type %d\n", rsp->opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691
692 if (cmnd) {
Brian Kingc3a3b552008-04-25 16:58:29 -0500693 cmnd->result |= rsp->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (((cmnd->result >> 1) & 0x1f) == CHECK_CONDITION)
695 memcpy(cmnd->sense_buffer,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900696 rsp->data,
697 rsp->sense_data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 unmap_cmd_data(&evt_struct->iu.srp.cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500699 evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 evt_struct->hostdata->dev);
701
FUJITA Tomonorief265672006-03-26 03:57:14 +0900702 if (rsp->flags & SRP_RSP_FLAG_DOOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900703 scsi_set_resid(cmnd, rsp->data_out_res_cnt);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900704 else if (rsp->flags & SRP_RSP_FLAG_DIOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900705 scsi_set_resid(cmnd, rsp->data_in_res_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707
708 if (evt_struct->cmnd_done)
709 evt_struct->cmnd_done(cmnd);
710}
711
712/**
713 * lun_from_dev: - Returns the lun of the scsi device
714 * @dev: struct scsi_device
715 *
716*/
717static inline u16 lun_from_dev(struct scsi_device *dev)
718{
719 return (0x2 << 14) | (dev->id << 8) | (dev->channel << 5) | dev->lun;
720}
721
722/**
723 * ibmvscsi_queue: - The queuecommand function of the scsi template
724 * @cmd: struct scsi_cmnd to be executed
725 * @done: Callback function to be called when cmd is completed
726*/
727static int ibmvscsi_queuecommand(struct scsi_cmnd *cmnd,
728 void (*done) (struct scsi_cmnd *))
729{
730 struct srp_cmd *srp_cmd;
731 struct srp_event_struct *evt_struct;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900732 struct srp_indirect_buf *indirect;
FUJITA Tomonori7603e022007-07-23 09:28:40 +0900733 struct ibmvscsi_host_data *hostdata = shost_priv(cmnd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 u16 lun = lun_from_dev(cmnd->device);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900735 u8 out_fmt, in_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Brian Kingc3a3b552008-04-25 16:58:29 -0500737 cmnd->result = (DID_OK << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 evt_struct = get_event_struct(&hostdata->pool);
739 if (!evt_struct)
740 return SCSI_MLQUEUE_HOST_BUSY;
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 /* Set up the actual SRP IU */
743 srp_cmd = &evt_struct->iu.srp.cmd;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900744 memset(srp_cmd, 0x00, SRP_MAX_IU_LEN);
745 srp_cmd->opcode = SRP_CMD;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300746 memcpy(srp_cmd->cdb, cmnd->cmnd, sizeof(srp_cmd->cdb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 srp_cmd->lun = ((u64) lun) << 48;
748
James Bottomley4dddbc22005-09-06 17:11:54 -0500749 if (!map_data_for_srp_cmd(cmnd, evt_struct, srp_cmd, hostdata->dev)) {
Robert Jennings7912a0a2008-07-24 04:35:27 +1000750 if (!firmware_has_feature(FW_FEATURE_CMO))
751 sdev_printk(KERN_ERR, cmnd->device,
752 "couldn't convert cmd to srp_cmd\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 free_event_struct(&hostdata->pool, evt_struct);
754 return SCSI_MLQUEUE_HOST_BUSY;
755 }
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 init_event_struct(evt_struct,
758 handle_cmd_rsp,
759 VIOSRP_SRP_FORMAT,
Jens Axboe242f9dc2008-09-14 05:55:09 -0700760 cmnd->request->timeout/HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 evt_struct->cmnd = cmnd;
763 evt_struct->cmnd_done = done;
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /* Fix up dma address of the buffer itself */
FUJITA Tomonorief265672006-03-26 03:57:14 +0900766 indirect = (struct srp_indirect_buf *) srp_cmd->add_data;
767 out_fmt = srp_cmd->buf_fmt >> 4;
768 in_fmt = srp_cmd->buf_fmt & ((1U << 4) - 1);
769 if ((in_fmt == SRP_DATA_DESC_INDIRECT ||
770 out_fmt == SRP_DATA_DESC_INDIRECT) &&
771 indirect->table_desc.va == 0) {
772 indirect->table_desc.va = evt_struct->crq.IU_data_ptr +
773 offsetof(struct srp_cmd, add_data) +
774 offsetof(struct srp_indirect_buf, desc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
Brian King3d0e91f2007-06-13 17:12:26 -0500777 return ibmvscsi_send_srp_event(evt_struct, hostdata, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
780/* ------------------------------------------------------------
781 * Routines for driver initialization
782 */
783/**
784 * adapter_info_rsp: - Handle response to MAD adapter info request
785 * @evt_struct: srp_event_struct with the response
786 *
787 * Used as a "done" callback by when sending adapter_info. Gets called
788 * by ibmvscsi_handle_crq()
789*/
790static void adapter_info_rsp(struct srp_event_struct *evt_struct)
791{
792 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
793 dma_unmap_single(hostdata->dev,
794 evt_struct->iu.mad.adapter_info.buffer,
795 evt_struct->iu.mad.adapter_info.common.length,
796 DMA_BIDIRECTIONAL);
797
798 if (evt_struct->xfer_iu->mad.adapter_info.common.status) {
Brian King6c0a60e2007-06-13 17:12:19 -0500799 dev_err(hostdata->dev, "error %d getting adapter info\n",
800 evt_struct->xfer_iu->mad.adapter_info.common.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 } else {
Brian King6c0a60e2007-06-13 17:12:19 -0500802 dev_info(hostdata->dev, "host srp version: %s, "
803 "host partition %s (%d), OS %d, max io %u\n",
804 hostdata->madapter_info.srp_version,
805 hostdata->madapter_info.partition_name,
806 hostdata->madapter_info.partition_number,
807 hostdata->madapter_info.os_type,
808 hostdata->madapter_info.port_max_txu[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 if (hostdata->madapter_info.port_max_txu[0])
811 hostdata->host->max_sectors =
812 hostdata->madapter_info.port_max_txu[0] >> 9;
Dave C Boutcher154fb612005-09-13 10:09:02 -0500813
814 if (hostdata->madapter_info.os_type == 3 &&
815 strcmp(hostdata->madapter_info.srp_version, "1.6a") <= 0) {
Brian King6c0a60e2007-06-13 17:12:19 -0500816 dev_err(hostdata->dev, "host (Ver. %s) doesn't support large transfers\n",
817 hostdata->madapter_info.srp_version);
818 dev_err(hostdata->dev, "limiting scatterlists to %d\n",
819 MAX_INDIRECT_BUFS);
Dave C Boutcher154fb612005-09-13 10:09:02 -0500820 hostdata->host->sg_tablesize = MAX_INDIRECT_BUFS;
821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823}
824
825/**
826 * send_mad_adapter_info: - Sends the mad adapter info request
827 * and stores the result so it can be retrieved with
828 * sysfs. We COULD consider causing a failure if the
829 * returned SRP version doesn't match ours.
830 * @hostdata: ibmvscsi_host_data of host
831 *
832 * Returns zero if successful.
833*/
834static void send_mad_adapter_info(struct ibmvscsi_host_data *hostdata)
835{
836 struct viosrp_adapter_info *req;
837 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -0500838 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +0900839 dma_addr_t addr;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 evt_struct = get_event_struct(&hostdata->pool);
842 if (!evt_struct) {
Brian King6c0a60e2007-06-13 17:12:19 -0500843 dev_err(hostdata->dev,
844 "couldn't allocate an event for ADAPTER_INFO_REQ!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return;
846 }
847
848 init_event_struct(evt_struct,
849 adapter_info_rsp,
850 VIOSRP_MAD_FORMAT,
FUJITA Tomonori33874a02007-05-22 13:50:51 +0900851 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 req = &evt_struct->iu.mad.adapter_info;
854 memset(req, 0x00, sizeof(*req));
855
856 req->common.type = VIOSRP_ADAPTER_INFO_TYPE;
857 req->common.length = sizeof(hostdata->madapter_info);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +0900858 req->buffer = addr = dma_map_single(hostdata->dev,
859 &hostdata->madapter_info,
860 sizeof(hostdata->madapter_info),
861 DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700863 if (dma_mapping_error(hostdata->dev, req->buffer)) {
Robert Jennings7912a0a2008-07-24 04:35:27 +1000864 if (!firmware_has_feature(FW_FEATURE_CMO))
865 dev_err(hostdata->dev,
866 "Unable to map request_buffer for "
867 "adapter_info!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 free_event_struct(&hostdata->pool, evt_struct);
869 return;
870 }
871
Brian King06f923c2007-06-13 17:12:33 -0500872 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King3d0e91f2007-06-13 17:12:26 -0500873 if (ibmvscsi_send_srp_event(evt_struct, hostdata, init_timeout * 2)) {
Brian King6c0a60e2007-06-13 17:12:19 -0500874 dev_err(hostdata->dev, "couldn't send ADAPTER_INFO_REQ!\n");
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +0900875 dma_unmap_single(hostdata->dev,
876 addr,
877 sizeof(hostdata->madapter_info),
878 DMA_BIDIRECTIONAL);
879 }
Brian King06f923c2007-06-13 17:12:33 -0500880 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881};
882
883/**
884 * login_rsp: - Handle response to SRP login request
885 * @evt_struct: srp_event_struct with the response
886 *
887 * Used as a "done" callback by when sending srp_login. Gets called
888 * by ibmvscsi_handle_crq()
889*/
890static void login_rsp(struct srp_event_struct *evt_struct)
891{
892 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900893 switch (evt_struct->xfer_iu->srp.login_rsp.opcode) {
894 case SRP_LOGIN_RSP: /* it worked! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 break;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900896 case SRP_LOGIN_REJ: /* refused! */
Brian King6c0a60e2007-06-13 17:12:19 -0500897 dev_info(hostdata->dev, "SRP_LOGIN_REJ reason %u\n",
898 evt_struct->xfer_iu->srp.login_rej.reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /* Login failed. */
900 atomic_set(&hostdata->request_limit, -1);
901 return;
902 default:
Brian King6c0a60e2007-06-13 17:12:19 -0500903 dev_err(hostdata->dev, "Invalid login response typecode 0x%02x!\n",
904 evt_struct->xfer_iu->srp.login_rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 /* Login failed. */
906 atomic_set(&hostdata->request_limit, -1);
907 return;
908 }
909
Brian King6c0a60e2007-06-13 17:12:19 -0500910 dev_info(hostdata->dev, "SRP_LOGIN succeeded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Robert Jenningsa897ff22007-03-28 12:45:46 -0500912 if (evt_struct->xfer_iu->srp.login_rsp.req_lim_delta < 0)
Brian King6c0a60e2007-06-13 17:12:19 -0500913 dev_err(hostdata->dev, "Invalid request_limit.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Robert Jenningsa897ff22007-03-28 12:45:46 -0500915 /* Now we know what the real request-limit is.
916 * This value is set rather than added to request_limit because
917 * request_limit could have been set to -1 by this client.
918 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 atomic_set(&hostdata->request_limit,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900920 evt_struct->xfer_iu->srp.login_rsp.req_lim_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Dave C Boutcher2b541f82006-01-19 13:34:44 -0600922 /* If we had any pending I/Os, kick them */
923 scsi_unblock_requests(hostdata->host);
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 send_mad_adapter_info(hostdata);
926 return;
927}
928
929/**
930 * send_srp_login: - Sends the srp login
931 * @hostdata: ibmvscsi_host_data of host
932 *
933 * Returns zero if successful.
934*/
935static int send_srp_login(struct ibmvscsi_host_data *hostdata)
936{
937 int rc;
938 unsigned long flags;
939 struct srp_login_req *login;
940 struct srp_event_struct *evt_struct = get_event_struct(&hostdata->pool);
941 if (!evt_struct) {
Brian King6c0a60e2007-06-13 17:12:19 -0500942 dev_err(hostdata->dev, "couldn't allocate an event for login req!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return FAILED;
944 }
945
946 init_event_struct(evt_struct,
947 login_rsp,
948 VIOSRP_SRP_FORMAT,
FUJITA Tomonori33874a02007-05-22 13:50:51 +0900949 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 login = &evt_struct->iu.srp.login_req;
Dave C Boutcher2b541f82006-01-19 13:34:44 -0600952 memset(login, 0x00, sizeof(struct srp_login_req));
FUJITA Tomonorief265672006-03-26 03:57:14 +0900953 login->opcode = SRP_LOGIN_REQ;
954 login->req_it_iu_len = sizeof(union srp_iu);
955 login->req_buf_fmt = SRP_BUF_FORMAT_DIRECT | SRP_BUF_FORMAT_INDIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Dave C Boutcher9b833e42006-03-23 13:47:07 -0600957 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jennings3c887e82007-10-30 11:37:07 -0500958 /* Start out with a request limit of 0, since this is negotiated in
959 * the login request we are just sending and login requests always
960 * get sent by the driver regardless of request_limit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 */
Robert Jennings3c887e82007-10-30 11:37:07 -0500962 atomic_set(&hostdata->request_limit, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Brian King3d0e91f2007-06-13 17:12:26 -0500964 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, init_timeout * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Brian King6c0a60e2007-06-13 17:12:19 -0500966 dev_info(hostdata->dev, "sent SRP login\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return rc;
968};
969
970/**
971 * sync_completion: Signal that a synchronous command has completed
972 * Note that after returning from this call, the evt_struct is freed.
973 * the caller waiting on this completion shouldn't touch the evt_struct
974 * again.
975 */
976static void sync_completion(struct srp_event_struct *evt_struct)
977{
978 /* copy the response back */
979 if (evt_struct->sync_srp)
980 *evt_struct->sync_srp = *evt_struct->xfer_iu;
981
982 complete(&evt_struct->comp);
983}
984
985/**
986 * ibmvscsi_abort: Abort a command...from scsi host template
987 * send this over to the server and wait synchronously for the response
988 */
989static int ibmvscsi_eh_abort_handler(struct scsi_cmnd *cmd)
990{
FUJITA Tomonori7603e022007-07-23 09:28:40 +0900991 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 struct srp_tsk_mgmt *tsk_mgmt;
993 struct srp_event_struct *evt;
994 struct srp_event_struct *tmp_evt, *found_evt;
995 union viosrp_iu srp_rsp;
996 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -0500997 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 u16 lun = lun_from_dev(cmd->device);
Robert Jennings860784c2007-11-12 09:00:23 -0600999 unsigned long wait_switch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 /* First, find this command in our sent list so we can figure
1002 * out the correct tag
1003 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001004 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001005 wait_switch = jiffies + (init_timeout * HZ);
1006 do {
1007 found_evt = NULL;
1008 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1009 if (tmp_evt->cmnd == cmd) {
1010 found_evt = tmp_evt;
1011 break;
1012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Robert Jennings860784c2007-11-12 09:00:23 -06001015 if (!found_evt) {
1016 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1017 return SUCCESS;
1018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Robert Jennings860784c2007-11-12 09:00:23 -06001020 evt = get_event_struct(&hostdata->pool);
1021 if (evt == NULL) {
1022 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1023 sdev_printk(KERN_ERR, cmd->device,
1024 "failed to allocate abort event\n");
1025 return FAILED;
1026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Robert Jennings860784c2007-11-12 09:00:23 -06001028 init_event_struct(evt,
1029 sync_completion,
1030 VIOSRP_SRP_FORMAT,
1031 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Robert Jennings860784c2007-11-12 09:00:23 -06001033 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Robert Jennings860784c2007-11-12 09:00:23 -06001035 /* Set up an abort SRP command */
1036 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1037 tsk_mgmt->opcode = SRP_TSK_MGMT;
1038 tsk_mgmt->lun = ((u64) lun) << 48;
1039 tsk_mgmt->tsk_mgmt_func = SRP_TSK_ABORT_TASK;
1040 tsk_mgmt->task_tag = (u64) found_evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Robert Jennings860784c2007-11-12 09:00:23 -06001042 evt->sync_srp = &srp_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Robert Jennings860784c2007-11-12 09:00:23 -06001044 init_completion(&evt->comp);
1045 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, init_timeout * 2);
1046
1047 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1048 break;
1049
1050 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1051 msleep(10);
1052 spin_lock_irqsave(hostdata->host->host_lock, flags);
1053 } while (time_before(jiffies, wait_switch));
1054
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001055 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001056
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001057 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001058 sdev_printk(KERN_ERR, cmd->device,
1059 "failed to send abort() event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return FAILED;
1061 }
1062
Robert Jennings860784c2007-11-12 09:00:23 -06001063 sdev_printk(KERN_INFO, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001064 "aborting command. lun 0x%llx, tag 0x%llx\n",
Robert Jennings860784c2007-11-12 09:00:23 -06001065 (((u64) lun) << 48), (u64) found_evt);
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001070 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001072 sdev_printk(KERN_WARNING, cmd->device, "abort bad SRP RSP type %d\n",
1073 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return FAILED;
1075 }
1076
FUJITA Tomonorief265672006-03-26 03:57:14 +09001077 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1078 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 else
1080 rsp_rc = srp_rsp.srp.rsp.status;
1081
1082 if (rsp_rc) {
1083 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001084 sdev_printk(KERN_WARNING, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001085 "abort code %d for task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001086 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 return FAILED;
1088 }
1089
1090 /* Because we dropped the spinlock above, it's possible
1091 * The event is no longer in our list. Make sure it didn't
1092 * complete while we were aborting
1093 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001094 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 found_evt = NULL;
1096 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1097 if (tmp_evt->cmnd == cmd) {
1098 found_evt = tmp_evt;
1099 break;
1100 }
1101 }
1102
1103 if (found_evt == NULL) {
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001104 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Ingo Molnarfe333322009-01-06 14:26:03 +00001105 sdev_printk(KERN_INFO, cmd->device, "aborted task tag 0x%llx completed\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001106 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return SUCCESS;
1108 }
1109
Ingo Molnarfe333322009-01-06 14:26:03 +00001110 sdev_printk(KERN_INFO, cmd->device, "successfully aborted task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001111 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 cmd->result = (DID_ABORT << 16);
1114 list_del(&found_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001115 unmap_cmd_data(&found_evt->iu.srp.cmd, found_evt,
1116 found_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 free_event_struct(&found_evt->hostdata->pool, found_evt);
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001118 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 atomic_inc(&hostdata->request_limit);
1120 return SUCCESS;
1121}
1122
1123/**
1124 * ibmvscsi_eh_device_reset_handler: Reset a single LUN...from scsi host
1125 * template send this over to the server and wait synchronously for the
1126 * response
1127 */
1128static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd *cmd)
1129{
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001130 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 struct srp_tsk_mgmt *tsk_mgmt;
1132 struct srp_event_struct *evt;
1133 struct srp_event_struct *tmp_evt, *pos;
1134 union viosrp_iu srp_rsp;
1135 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001136 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 u16 lun = lun_from_dev(cmd->device);
Robert Jennings860784c2007-11-12 09:00:23 -06001138 unsigned long wait_switch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001140 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001141 wait_switch = jiffies + (init_timeout * HZ);
1142 do {
1143 evt = get_event_struct(&hostdata->pool);
1144 if (evt == NULL) {
1145 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1146 sdev_printk(KERN_ERR, cmd->device,
1147 "failed to allocate reset event\n");
1148 return FAILED;
1149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Robert Jennings860784c2007-11-12 09:00:23 -06001151 init_event_struct(evt,
1152 sync_completion,
1153 VIOSRP_SRP_FORMAT,
1154 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Robert Jennings860784c2007-11-12 09:00:23 -06001156 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Robert Jennings860784c2007-11-12 09:00:23 -06001158 /* Set up a lun reset SRP command */
1159 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1160 tsk_mgmt->opcode = SRP_TSK_MGMT;
1161 tsk_mgmt->lun = ((u64) lun) << 48;
1162 tsk_mgmt->tsk_mgmt_func = SRP_TSK_LUN_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Robert Jennings860784c2007-11-12 09:00:23 -06001164 evt->sync_srp = &srp_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Robert Jennings860784c2007-11-12 09:00:23 -06001166 init_completion(&evt->comp);
1167 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, init_timeout * 2);
1168
1169 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1170 break;
1171
1172 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1173 msleep(10);
1174 spin_lock_irqsave(hostdata->host->host_lock, flags);
1175 } while (time_before(jiffies, wait_switch));
1176
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001177 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001178
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001179 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001180 sdev_printk(KERN_ERR, cmd->device,
1181 "failed to send reset event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return FAILED;
1183 }
1184
Ingo Molnarfe333322009-01-06 14:26:03 +00001185 sdev_printk(KERN_INFO, cmd->device, "resetting device. lun 0x%llx\n",
Robert Jennings860784c2007-11-12 09:00:23 -06001186 (((u64) lun) << 48));
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001191 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001193 sdev_printk(KERN_WARNING, cmd->device, "reset bad SRP RSP type %d\n",
1194 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return FAILED;
1196 }
1197
FUJITA Tomonorief265672006-03-26 03:57:14 +09001198 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1199 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 else
1201 rsp_rc = srp_rsp.srp.rsp.status;
1202
1203 if (rsp_rc) {
1204 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001205 sdev_printk(KERN_WARNING, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001206 "reset code %d for task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001207 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return FAILED;
1209 }
1210
1211 /* We need to find all commands for this LUN that have not yet been
1212 * responded to, and fail them with DID_RESET
1213 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001214 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
1216 if ((tmp_evt->cmnd) && (tmp_evt->cmnd->device == cmd->device)) {
1217 if (tmp_evt->cmnd)
1218 tmp_evt->cmnd->result = (DID_RESET << 16);
1219 list_del(&tmp_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001220 unmap_cmd_data(&tmp_evt->iu.srp.cmd, tmp_evt,
1221 tmp_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 free_event_struct(&tmp_evt->hostdata->pool,
1223 tmp_evt);
1224 atomic_inc(&hostdata->request_limit);
1225 if (tmp_evt->cmnd_done)
1226 tmp_evt->cmnd_done(tmp_evt->cmnd);
1227 else if (tmp_evt->done)
1228 tmp_evt->done(tmp_evt);
1229 }
1230 }
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001231 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return SUCCESS;
1233}
1234
1235/**
Brian King3d0e91f2007-06-13 17:12:26 -05001236 * ibmvscsi_eh_host_reset_handler - Reset the connection to the server
1237 * @cmd: struct scsi_cmnd having problems
1238*/
1239static int ibmvscsi_eh_host_reset_handler(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Brian King3d0e91f2007-06-13 17:12:26 -05001241 unsigned long wait_switch = 0;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001242 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Brian King3d0e91f2007-06-13 17:12:26 -05001244 dev_err(hostdata->dev, "Resetting connection due to error recovery\n");
1245
1246 ibmvscsi_reset_host(hostdata);
1247
1248 for (wait_switch = jiffies + (init_timeout * HZ);
1249 time_before(jiffies, wait_switch) &&
1250 atomic_read(&hostdata->request_limit) < 2;) {
1251
1252 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
Brian King3d0e91f2007-06-13 17:12:26 -05001254
1255 if (atomic_read(&hostdata->request_limit) <= 0)
1256 return FAILED;
1257
1258 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
1261/**
1262 * ibmvscsi_handle_crq: - Handles and frees received events in the CRQ
1263 * @crq: Command/Response queue
1264 * @hostdata: ibmvscsi_host_data of host
1265 *
1266*/
1267void ibmvscsi_handle_crq(struct viosrp_crq *crq,
1268 struct ibmvscsi_host_data *hostdata)
1269{
Brian King6c0a60e2007-06-13 17:12:19 -05001270 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 unsigned long flags;
1272 struct srp_event_struct *evt_struct =
1273 (struct srp_event_struct *)crq->IU_data_ptr;
1274 switch (crq->valid) {
1275 case 0xC0: /* initialization */
1276 switch (crq->format) {
1277 case 0x01: /* Initialization message */
Brian King6c0a60e2007-06-13 17:12:19 -05001278 dev_info(hostdata->dev, "partner initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 /* Send back a response */
David Woodhoused3849d52007-09-22 08:29:36 +10001280 if ((rc = ibmvscsi_ops->send_crq(hostdata,
1281 0xC002000000000000LL, 0)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 /* Now login */
1283 send_srp_login(hostdata);
1284 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001285 dev_err(hostdata->dev, "Unable to send init rsp. rc=%ld\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
1287
1288 break;
1289 case 0x02: /* Initialization response */
Brian King6c0a60e2007-06-13 17:12:19 -05001290 dev_info(hostdata->dev, "partner initialization complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 /* Now login */
1293 send_srp_login(hostdata);
1294 break;
1295 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001296 dev_err(hostdata->dev, "unknown crq message type: %d\n", crq->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298 return;
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001299 case 0xFF: /* Hypervisor telling us the connection is closed */
1300 scsi_block_requests(hostdata->host);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001301 atomic_set(&hostdata->request_limit, 0);
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001302 if (crq->format == 0x06) {
1303 /* We need to re-setup the interpartition connection */
Brian King6c0a60e2007-06-13 17:12:19 -05001304 dev_info(hostdata->dev, "Re-enabling adapter!\n");
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001305 purge_requests(hostdata, DID_REQUEUE);
David Woodhoused3849d52007-09-22 08:29:36 +10001306 if ((ibmvscsi_ops->reenable_crq_queue(&hostdata->queue,
1307 hostdata)) ||
1308 (ibmvscsi_ops->send_crq(hostdata,
1309 0xC001000000000000LL, 0))) {
Dave C Boutchercefbda22006-06-12 21:22:51 -05001310 atomic_set(&hostdata->request_limit,
1311 -1);
Brian King6c0a60e2007-06-13 17:12:19 -05001312 dev_err(hostdata->dev, "error after enable\n");
Dave C Boutchercefbda22006-06-12 21:22:51 -05001313 }
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001314 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001315 dev_err(hostdata->dev, "Virtual adapter failed rc %d!\n",
1316 crq->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001318 purge_requests(hostdata, DID_ERROR);
David Woodhoused3849d52007-09-22 08:29:36 +10001319 if ((ibmvscsi_ops->reset_crq_queue(&hostdata->queue,
1320 hostdata)) ||
1321 (ibmvscsi_ops->send_crq(hostdata,
1322 0xC001000000000000LL, 0))) {
Dave C Boutchercefbda22006-06-12 21:22:51 -05001323 atomic_set(&hostdata->request_limit,
1324 -1);
Brian King6c0a60e2007-06-13 17:12:19 -05001325 dev_err(hostdata->dev, "error after reset\n");
Dave C Boutchercefbda22006-06-12 21:22:51 -05001326 }
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001327 }
1328 scsi_unblock_requests(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return;
1330 case 0x80: /* real payload */
1331 break;
1332 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001333 dev_err(hostdata->dev, "got an invalid message type 0x%02x\n",
1334 crq->valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return;
1336 }
1337
1338 /* The only kind of payload CRQs we should get are responses to
1339 * things we send. Make sure this response is to something we
1340 * actually sent
1341 */
1342 if (!valid_event_struct(&hostdata->pool, evt_struct)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001343 dev_err(hostdata->dev, "returned correlation_token 0x%p is invalid!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 (void *)crq->IU_data_ptr);
1345 return;
1346 }
1347
1348 if (atomic_read(&evt_struct->free)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001349 dev_err(hostdata->dev, "received duplicate correlation_token 0x%p!\n",
1350 (void *)crq->IU_data_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return;
1352 }
1353
1354 if (crq->format == VIOSRP_SRP_FORMAT)
FUJITA Tomonorief265672006-03-26 03:57:14 +09001355 atomic_add(evt_struct->xfer_iu->srp.rsp.req_lim_delta,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 &hostdata->request_limit);
1357
Brian King3d0e91f2007-06-13 17:12:26 -05001358 del_timer(&evt_struct->timer);
1359
Brian Kingca616682008-05-19 10:27:56 -05001360 if ((crq->status != VIOSRP_OK && crq->status != VIOSRP_OK2) && evt_struct->cmnd)
Brian Kingc3a3b552008-04-25 16:58:29 -05001361 evt_struct->cmnd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if (evt_struct->done)
1363 evt_struct->done(evt_struct);
1364 else
Brian King6c0a60e2007-06-13 17:12:19 -05001365 dev_err(hostdata->dev, "returned done() is NULL; not running it!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 /*
1368 * Lock the host_lock before messing with these structures, since we
1369 * are running in a task context
1370 */
1371 spin_lock_irqsave(evt_struct->hostdata->host->host_lock, flags);
1372 list_del(&evt_struct->list);
1373 free_event_struct(&evt_struct->hostdata->pool, evt_struct);
1374 spin_unlock_irqrestore(evt_struct->hostdata->host->host_lock, flags);
1375}
1376
1377/**
1378 * ibmvscsi_get_host_config: Send the command to the server to get host
1379 * configuration data. The data is opaque to us.
1380 */
1381static int ibmvscsi_do_host_config(struct ibmvscsi_host_data *hostdata,
1382 unsigned char *buffer, int length)
1383{
1384 struct viosrp_host_config *host_config;
1385 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -05001386 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001387 dma_addr_t addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 int rc;
1389
1390 evt_struct = get_event_struct(&hostdata->pool);
1391 if (!evt_struct) {
Brian King6c0a60e2007-06-13 17:12:19 -05001392 dev_err(hostdata->dev, "couldn't allocate event for HOST_CONFIG!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return -1;
1394 }
1395
1396 init_event_struct(evt_struct,
1397 sync_completion,
1398 VIOSRP_MAD_FORMAT,
FUJITA Tomonori33874a02007-05-22 13:50:51 +09001399 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 host_config = &evt_struct->iu.mad.host_config;
1402
1403 /* Set up a lun reset SRP command */
1404 memset(host_config, 0x00, sizeof(*host_config));
1405 host_config->common.type = VIOSRP_HOST_CONFIG_TYPE;
1406 host_config->common.length = length;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001407 host_config->buffer = addr = dma_map_single(hostdata->dev, buffer,
1408 length,
1409 DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07001411 if (dma_mapping_error(hostdata->dev, host_config->buffer)) {
Robert Jennings7912a0a2008-07-24 04:35:27 +10001412 if (!firmware_has_feature(FW_FEATURE_CMO))
1413 dev_err(hostdata->dev,
1414 "dma_mapping error getting host config\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 free_event_struct(&hostdata->pool, evt_struct);
1416 return -1;
1417 }
1418
1419 init_completion(&evt_struct->comp);
Brian King06f923c2007-06-13 17:12:33 -05001420 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King3d0e91f2007-06-13 17:12:26 -05001421 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, init_timeout * 2);
Brian King06f923c2007-06-13 17:12:33 -05001422 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001423 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 wait_for_completion(&evt_struct->comp);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001425 dma_unmap_single(hostdata->dev, addr, length, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427 return rc;
1428}
1429
Robert Jennings0979c842007-03-29 12:30:40 -05001430/**
1431 * ibmvscsi_slave_configure: Set the "allow_restart" flag for each disk.
1432 * @sdev: struct scsi_device device to configure
1433 *
1434 * Enable allow_restart for a device if it is a disk. Adjust the
1435 * queue_depth here also as is required by the documentation for
1436 * struct scsi_host_template.
1437 */
1438static int ibmvscsi_slave_configure(struct scsi_device *sdev)
1439{
1440 struct Scsi_Host *shost = sdev->host;
1441 unsigned long lock_flags = 0;
1442
1443 spin_lock_irqsave(shost->host_lock, lock_flags);
Brian Kingd1a357f2007-10-25 16:06:34 -05001444 if (sdev->type == TYPE_DISK) {
Robert Jennings0979c842007-03-29 12:30:40 -05001445 sdev->allow_restart = 1;
James Bottomley97b56482008-11-30 10:20:37 -06001446 blk_queue_rq_timeout(sdev->request_queue, 60 * HZ);
Brian Kingd1a357f2007-10-25 16:06:34 -05001447 }
Robert Jennings0979c842007-03-29 12:30:40 -05001448 scsi_adjust_queue_depth(sdev, 0, shost->cmd_per_lun);
1449 spin_unlock_irqrestore(shost->host_lock, lock_flags);
1450 return 0;
1451}
1452
Brian King742d25b2007-05-29 15:46:14 -05001453/**
1454 * ibmvscsi_change_queue_depth - Change the device's queue depth
1455 * @sdev: scsi device struct
1456 * @qdepth: depth to set
1457 *
1458 * Return value:
1459 * actual depth set
1460 **/
1461static int ibmvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth)
1462{
1463 if (qdepth > IBMVSCSI_MAX_CMDS_PER_LUN)
1464 qdepth = IBMVSCSI_MAX_CMDS_PER_LUN;
1465
1466 scsi_adjust_queue_depth(sdev, 0, qdepth);
1467 return sdev->queue_depth;
1468}
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470/* ------------------------------------------------------------
1471 * sysfs attributes
1472 */
Tony Jonesee959b02008-02-22 00:13:36 +01001473static ssize_t show_host_srp_version(struct device *dev,
1474 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Tony Jonesee959b02008-02-22 00:13:36 +01001476 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001477 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 int len;
1479
1480 len = snprintf(buf, PAGE_SIZE, "%s\n",
1481 hostdata->madapter_info.srp_version);
1482 return len;
1483}
1484
Tony Jonesee959b02008-02-22 00:13:36 +01001485static struct device_attribute ibmvscsi_host_srp_version = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 .attr = {
1487 .name = "srp_version",
1488 .mode = S_IRUGO,
1489 },
1490 .show = show_host_srp_version,
1491};
1492
Tony Jonesee959b02008-02-22 00:13:36 +01001493static ssize_t show_host_partition_name(struct device *dev,
1494 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 char *buf)
1496{
Tony Jonesee959b02008-02-22 00:13:36 +01001497 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001498 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 int len;
1500
1501 len = snprintf(buf, PAGE_SIZE, "%s\n",
1502 hostdata->madapter_info.partition_name);
1503 return len;
1504}
1505
Tony Jonesee959b02008-02-22 00:13:36 +01001506static struct device_attribute ibmvscsi_host_partition_name = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 .attr = {
1508 .name = "partition_name",
1509 .mode = S_IRUGO,
1510 },
1511 .show = show_host_partition_name,
1512};
1513
Tony Jonesee959b02008-02-22 00:13:36 +01001514static ssize_t show_host_partition_number(struct device *dev,
1515 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 char *buf)
1517{
Tony Jonesee959b02008-02-22 00:13:36 +01001518 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001519 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 int len;
1521
1522 len = snprintf(buf, PAGE_SIZE, "%d\n",
1523 hostdata->madapter_info.partition_number);
1524 return len;
1525}
1526
Tony Jonesee959b02008-02-22 00:13:36 +01001527static struct device_attribute ibmvscsi_host_partition_number = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 .attr = {
1529 .name = "partition_number",
1530 .mode = S_IRUGO,
1531 },
1532 .show = show_host_partition_number,
1533};
1534
Tony Jonesee959b02008-02-22 00:13:36 +01001535static ssize_t show_host_mad_version(struct device *dev,
1536 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Tony Jonesee959b02008-02-22 00:13:36 +01001538 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001539 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 int len;
1541
1542 len = snprintf(buf, PAGE_SIZE, "%d\n",
1543 hostdata->madapter_info.mad_version);
1544 return len;
1545}
1546
Tony Jonesee959b02008-02-22 00:13:36 +01001547static struct device_attribute ibmvscsi_host_mad_version = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 .attr = {
1549 .name = "mad_version",
1550 .mode = S_IRUGO,
1551 },
1552 .show = show_host_mad_version,
1553};
1554
Tony Jonesee959b02008-02-22 00:13:36 +01001555static ssize_t show_host_os_type(struct device *dev,
1556 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Tony Jonesee959b02008-02-22 00:13:36 +01001558 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001559 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 int len;
1561
1562 len = snprintf(buf, PAGE_SIZE, "%d\n", hostdata->madapter_info.os_type);
1563 return len;
1564}
1565
Tony Jonesee959b02008-02-22 00:13:36 +01001566static struct device_attribute ibmvscsi_host_os_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 .attr = {
1568 .name = "os_type",
1569 .mode = S_IRUGO,
1570 },
1571 .show = show_host_os_type,
1572};
1573
Tony Jonesee959b02008-02-22 00:13:36 +01001574static ssize_t show_host_config(struct device *dev,
1575 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
Tony Jonesee959b02008-02-22 00:13:36 +01001577 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001578 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 /* returns null-terminated host config data */
1581 if (ibmvscsi_do_host_config(hostdata, buf, PAGE_SIZE) == 0)
1582 return strlen(buf);
1583 else
1584 return 0;
1585}
1586
Tony Jonesee959b02008-02-22 00:13:36 +01001587static struct device_attribute ibmvscsi_host_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 .attr = {
1589 .name = "config",
1590 .mode = S_IRUGO,
1591 },
1592 .show = show_host_config,
1593};
1594
Tony Jonesee959b02008-02-22 00:13:36 +01001595static struct device_attribute *ibmvscsi_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 &ibmvscsi_host_srp_version,
1597 &ibmvscsi_host_partition_name,
1598 &ibmvscsi_host_partition_number,
1599 &ibmvscsi_host_mad_version,
1600 &ibmvscsi_host_os_type,
1601 &ibmvscsi_host_config,
1602 NULL
1603};
1604
1605/* ------------------------------------------------------------
1606 * SCSI driver registration
1607 */
1608static struct scsi_host_template driver_template = {
1609 .module = THIS_MODULE,
1610 .name = "IBM POWER Virtual SCSI Adapter " IBMVSCSI_VERSION,
1611 .proc_name = "ibmvscsi",
1612 .queuecommand = ibmvscsi_queuecommand,
1613 .eh_abort_handler = ibmvscsi_eh_abort_handler,
1614 .eh_device_reset_handler = ibmvscsi_eh_device_reset_handler,
Brian King3d0e91f2007-06-13 17:12:26 -05001615 .eh_host_reset_handler = ibmvscsi_eh_host_reset_handler,
Robert Jennings0979c842007-03-29 12:30:40 -05001616 .slave_configure = ibmvscsi_slave_configure,
Brian King742d25b2007-05-29 15:46:14 -05001617 .change_queue_depth = ibmvscsi_change_queue_depth,
Robert Jennings7912a0a2008-07-24 04:35:27 +10001618 .cmd_per_lun = IBMVSCSI_CMDS_PER_LUN_DEFAULT,
Robert Jenningsa897ff22007-03-28 12:45:46 -05001619 .can_queue = IBMVSCSI_MAX_REQUESTS_DEFAULT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 .this_id = -1,
James Bottomley4dddbc22005-09-06 17:11:54 -05001621 .sg_tablesize = SG_ALL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 .use_clustering = ENABLE_CLUSTERING,
1623 .shost_attrs = ibmvscsi_attrs,
1624};
1625
1626/**
Robert Jennings7912a0a2008-07-24 04:35:27 +10001627 * ibmvscsi_get_desired_dma - Calculate IO memory desired by the driver
1628 *
1629 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1630 *
1631 * Return value:
1632 * Number of bytes of IO data the driver will need to perform well.
1633 */
1634static unsigned long ibmvscsi_get_desired_dma(struct vio_dev *vdev)
1635{
1636 /* iu_storage data allocated in initialize_event_pool */
Brian King4f10aae2008-12-17 17:19:33 -06001637 unsigned long desired_io = max_events * sizeof(union viosrp_iu);
Robert Jennings7912a0a2008-07-24 04:35:27 +10001638
1639 /* add io space for sg data */
Brian King004dd5e2008-08-15 10:48:47 -05001640 desired_io += (IBMVSCSI_MAX_SECTORS_DEFAULT * 512 *
Robert Jennings7912a0a2008-07-24 04:35:27 +10001641 IBMVSCSI_CMDS_PER_LUN_DEFAULT);
1642
1643 return desired_io;
1644}
1645
1646/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 * Called by bus code for each adapter
1648 */
1649static int ibmvscsi_probe(struct vio_dev *vdev, const struct vio_device_id *id)
1650{
1651 struct ibmvscsi_host_data *hostdata;
1652 struct Scsi_Host *host;
1653 struct device *dev = &vdev->dev;
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001654 struct srp_rport_identifiers ids;
1655 struct srp_rport *rport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 unsigned long wait_switch = 0;
Dave C Boutchercefbda22006-06-12 21:22:51 -05001657 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 vdev->dev.driver_data = NULL;
1660
1661 host = scsi_host_alloc(&driver_template, sizeof(*hostdata));
1662 if (!host) {
Brian King6c0a60e2007-06-13 17:12:19 -05001663 dev_err(&vdev->dev, "couldn't allocate host data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 goto scsi_host_alloc_failed;
1665 }
1666
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001667 host->transportt = ibmvscsi_transport_template;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001668 hostdata = shost_priv(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 memset(hostdata, 0x00, sizeof(*hostdata));
1670 INIT_LIST_HEAD(&hostdata->sent);
1671 hostdata->host = host;
1672 hostdata->dev = dev;
1673 atomic_set(&hostdata->request_limit, -1);
Robert Jennings7912a0a2008-07-24 04:35:27 +10001674 hostdata->host->max_sectors = IBMVSCSI_MAX_SECTORS_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Brian King4f10aae2008-12-17 17:19:33 -06001676 rc = ibmvscsi_ops->init_crq_queue(&hostdata->queue, hostdata, max_events);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001677 if (rc != 0 && rc != H_RESOURCE) {
Brian King6c0a60e2007-06-13 17:12:19 -05001678 dev_err(&vdev->dev, "couldn't initialize crq. rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 goto init_crq_failed;
1680 }
Brian King4f10aae2008-12-17 17:19:33 -06001681 if (initialize_event_pool(&hostdata->pool, max_events, hostdata) != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001682 dev_err(&vdev->dev, "couldn't initialize event pool\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 goto init_pool_failed;
1684 }
1685
1686 host->max_lun = 8;
1687 host->max_id = max_id;
1688 host->max_channel = max_channel;
1689
1690 if (scsi_add_host(hostdata->host, hostdata->dev))
1691 goto add_host_failed;
1692
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001693 /* we don't have a proper target_port_id so let's use the fake one */
1694 memcpy(ids.port_id, hostdata->madapter_info.partition_name,
1695 sizeof(ids.port_id));
FUJITA Tomonoriaebd5e42007-07-11 15:08:15 +09001696 ids.roles = SRP_RPORT_ROLE_TARGET;
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001697 rport = srp_rport_add(host, &ids);
1698 if (IS_ERR(rport))
1699 goto add_srp_port_failed;
1700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 /* Try to send an initialization message. Note that this is allowed
1702 * to fail if the other end is not acive. In that case we don't
1703 * want to scan
1704 */
David Woodhoused3849d52007-09-22 08:29:36 +10001705 if (ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0) == 0
Dave C Boutchercefbda22006-06-12 21:22:51 -05001706 || rc == H_RESOURCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 /*
1708 * Wait around max init_timeout secs for the adapter to finish
1709 * initializing. When we are done initializing, we will have a
1710 * valid request_limit. We don't want Linux scanning before
1711 * we are ready.
1712 */
1713 for (wait_switch = jiffies + (init_timeout * HZ);
1714 time_before(jiffies, wait_switch) &&
1715 atomic_read(&hostdata->request_limit) < 2;) {
1716
1717 msleep(10);
1718 }
1719
1720 /* if we now have a valid request_limit, initiate a scan */
1721 if (atomic_read(&hostdata->request_limit) > 0)
1722 scsi_scan_host(host);
1723 }
1724
1725 vdev->dev.driver_data = hostdata;
1726 return 0;
1727
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001728 add_srp_port_failed:
1729 scsi_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 add_host_failed:
1731 release_event_pool(&hostdata->pool, hostdata);
1732 init_pool_failed:
Brian King4f10aae2008-12-17 17:19:33 -06001733 ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata, max_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 init_crq_failed:
1735 scsi_host_put(host);
1736 scsi_host_alloc_failed:
1737 return -1;
1738}
1739
1740static int ibmvscsi_remove(struct vio_dev *vdev)
1741{
1742 struct ibmvscsi_host_data *hostdata = vdev->dev.driver_data;
1743 release_event_pool(&hostdata->pool, hostdata);
David Woodhoused3849d52007-09-22 08:29:36 +10001744 ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata,
Brian King4f10aae2008-12-17 17:19:33 -06001745 max_events);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001746
1747 srp_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 scsi_remove_host(hostdata->host);
1749 scsi_host_put(hostdata->host);
1750
1751 return 0;
1752}
1753
1754/**
1755 * ibmvscsi_device_table: Used by vio.c to match devices in the device tree we
1756 * support.
1757 */
1758static struct vio_device_id ibmvscsi_device_table[] __devinitdata = {
1759 {"vscsi", "IBM,v-scsi"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001760 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762MODULE_DEVICE_TABLE(vio, ibmvscsi_device_table);
Stephen Rothwell915124d2005-10-24 15:12:22 +10001763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764static struct vio_driver ibmvscsi_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 .id_table = ibmvscsi_device_table,
1766 .probe = ibmvscsi_probe,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001767 .remove = ibmvscsi_remove,
Robert Jennings7912a0a2008-07-24 04:35:27 +10001768 .get_desired_dma = ibmvscsi_get_desired_dma,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001769 .driver = {
1770 .name = "ibmvscsi",
Stephen Rothwell915124d2005-10-24 15:12:22 +10001771 .owner = THIS_MODULE,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773};
1774
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001775static struct srp_function_template ibmvscsi_transport_functions = {
1776};
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778int __init ibmvscsi_module_init(void)
1779{
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001780 int ret;
1781
Brian King4f10aae2008-12-17 17:19:33 -06001782 /* Ensure we have two requests to do error recovery */
1783 driver_template.can_queue = max_requests;
1784 max_events = max_requests + 2;
1785
David Woodhoused3849d52007-09-22 08:29:36 +10001786 if (firmware_has_feature(FW_FEATURE_ISERIES))
1787 ibmvscsi_ops = &iseriesvscsi_ops;
1788 else if (firmware_has_feature(FW_FEATURE_VIO))
1789 ibmvscsi_ops = &rpavscsi_ops;
1790 else
1791 return -ENODEV;
1792
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001793 ibmvscsi_transport_template =
1794 srp_attach_transport(&ibmvscsi_transport_functions);
1795 if (!ibmvscsi_transport_template)
1796 return -ENOMEM;
1797
1798 ret = vio_register_driver(&ibmvscsi_driver);
1799 if (ret)
1800 srp_release_transport(ibmvscsi_transport_template);
1801 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802}
1803
1804void __exit ibmvscsi_module_exit(void)
1805{
1806 vio_unregister_driver(&ibmvscsi_driver);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001807 srp_release_transport(ibmvscsi_transport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
1810module_init(ibmvscsi_module_init);
1811module_exit(ibmvscsi_module_exit);