blob: e6f937eeb78f8c1489e7eb29d08850cbfd9b7bf4 [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>
73#include <asm/vio.h>
74#include <scsi/scsi.h>
75#include <scsi/scsi_cmnd.h>
76#include <scsi/scsi_host.h>
77#include <scsi/scsi_device.h>
FUJITA Tomonori4d680412007-06-27 16:32:50 +090078#include <scsi/scsi_transport_srp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include "ibmvscsi.h"
80
81/* The values below are somewhat arbitrary default values, but
82 * OS/400 will use 3 busses (disks, CDs, tapes, I think.)
83 * Note that there are 3 bits of channel value, 6 bits of id, and
84 * 5 bits of LUN.
85 */
86static int max_id = 64;
87static int max_channel = 3;
88static int init_timeout = 5;
Robert Jenningsa897ff22007-03-28 12:45:46 -050089static int max_requests = IBMVSCSI_MAX_REQUESTS_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
FUJITA Tomonori4d680412007-06-27 16:32:50 +090091static struct scsi_transport_template *ibmvscsi_transport_template;
92
Dave C Boutcher2b541f82006-01-19 13:34:44 -060093#define IBMVSCSI_VERSION "1.5.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95MODULE_DESCRIPTION("IBM Virtual SCSI");
96MODULE_AUTHOR("Dave Boutcher");
97MODULE_LICENSE("GPL");
98MODULE_VERSION(IBMVSCSI_VERSION);
99
100module_param_named(max_id, max_id, int, S_IRUGO | S_IWUSR);
101MODULE_PARM_DESC(max_id, "Largest ID value for each channel");
102module_param_named(max_channel, max_channel, int, S_IRUGO | S_IWUSR);
103MODULE_PARM_DESC(max_channel, "Largest channel value");
104module_param_named(init_timeout, init_timeout, int, S_IRUGO | S_IWUSR);
105MODULE_PARM_DESC(init_timeout, "Initialization timeout in seconds");
106module_param_named(max_requests, max_requests, int, S_IRUGO | S_IWUSR);
107MODULE_PARM_DESC(max_requests, "Maximum requests for this adapter");
108
109/* ------------------------------------------------------------
110 * Routines for the event pool and event structs
111 */
112/**
113 * initialize_event_pool: - Allocates and initializes the event pool for a host
114 * @pool: event_pool to be initialized
115 * @size: Number of events in pool
116 * @hostdata: ibmvscsi_host_data who owns the event pool
117 *
118 * Returns zero on success.
119*/
120static int initialize_event_pool(struct event_pool *pool,
121 int size, struct ibmvscsi_host_data *hostdata)
122{
123 int i;
124
125 pool->size = size;
126 pool->next = 0;
FUJITA Tomonori4c021dd132006-04-07 19:10:03 +0900127 pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (!pool->events)
129 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 pool->iu_storage =
132 dma_alloc_coherent(hostdata->dev,
133 pool->size * sizeof(*pool->iu_storage),
134 &pool->iu_token, 0);
135 if (!pool->iu_storage) {
136 kfree(pool->events);
137 return -ENOMEM;
138 }
139
140 for (i = 0; i < pool->size; ++i) {
141 struct srp_event_struct *evt = &pool->events[i];
142 memset(&evt->crq, 0x00, sizeof(evt->crq));
143 atomic_set(&evt->free, 1);
144 evt->crq.valid = 0x80;
145 evt->crq.IU_length = sizeof(*evt->xfer_iu);
146 evt->crq.IU_data_ptr = pool->iu_token +
147 sizeof(*evt->xfer_iu) * i;
148 evt->xfer_iu = pool->iu_storage + i;
149 evt->hostdata = hostdata;
James Bottomley4dddbc22005-09-06 17:11:54 -0500150 evt->ext_list = NULL;
151 evt->ext_list_token = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
154 return 0;
155}
156
157/**
158 * release_event_pool: - Frees memory of an event pool of a host
159 * @pool: event_pool to be released
160 * @hostdata: ibmvscsi_host_data who owns the even pool
161 *
162 * Returns zero on success.
163*/
164static void release_event_pool(struct event_pool *pool,
165 struct ibmvscsi_host_data *hostdata)
166{
167 int i, in_use = 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500168 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (atomic_read(&pool->events[i].free) != 1)
170 ++in_use;
James Bottomley4dddbc22005-09-06 17:11:54 -0500171 if (pool->events[i].ext_list) {
172 dma_free_coherent(hostdata->dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900173 SG_ALL * sizeof(struct srp_direct_buf),
James Bottomley4dddbc22005-09-06 17:11:54 -0500174 pool->events[i].ext_list,
175 pool->events[i].ext_list_token);
176 }
177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (in_use)
Brian King6c0a60e2007-06-13 17:12:19 -0500179 dev_warn(hostdata->dev, "releasing event pool with %d "
180 "events still in use?\n", in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 kfree(pool->events);
182 dma_free_coherent(hostdata->dev,
183 pool->size * sizeof(*pool->iu_storage),
184 pool->iu_storage, pool->iu_token);
185}
186
187/**
188 * valid_event_struct: - Determines if event is valid.
189 * @pool: event_pool that contains the event
190 * @evt: srp_event_struct to be checked for validity
191 *
192 * Returns zero if event is invalid, one otherwise.
193*/
194static int valid_event_struct(struct event_pool *pool,
195 struct srp_event_struct *evt)
196{
197 int index = evt - pool->events;
198 if (index < 0 || index >= pool->size) /* outside of bounds */
199 return 0;
200 if (evt != pool->events + index) /* unaligned */
201 return 0;
202 return 1;
203}
204
205/**
206 * ibmvscsi_free-event_struct: - Changes status of event to "free"
207 * @pool: event_pool that contains the event
208 * @evt: srp_event_struct to be modified
209 *
210*/
211static void free_event_struct(struct event_pool *pool,
212 struct srp_event_struct *evt)
213{
214 if (!valid_event_struct(pool, evt)) {
Brian King6c0a60e2007-06-13 17:12:19 -0500215 dev_err(evt->hostdata->dev, "Freeing invalid event_struct %p "
216 "(not in pool %p)\n", evt, pool->events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return;
218 }
219 if (atomic_inc_return(&evt->free) != 1) {
Brian King6c0a60e2007-06-13 17:12:19 -0500220 dev_err(evt->hostdata->dev, "Freeing event_struct %p "
221 "which is not in use!\n", evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return;
223 }
224}
225
226/**
227 * get_evt_struct: - Gets the next free event in pool
228 * @pool: event_pool that contains the events to be searched
229 *
230 * Returns the next event in "free" state, and NULL if none are free.
231 * Note that no synchronization is done here, we assume the host_lock
232 * will syncrhonze things.
233*/
234static struct srp_event_struct *get_event_struct(struct event_pool *pool)
235{
236 int i;
237 int poolsize = pool->size;
238 int offset = pool->next;
239
240 for (i = 0; i < poolsize; i++) {
241 offset = (offset + 1) % poolsize;
242 if (!atomic_dec_if_positive(&pool->events[offset].free)) {
243 pool->next = offset;
244 return &pool->events[offset];
245 }
246 }
247
248 printk(KERN_ERR "ibmvscsi: found no event struct in pool!\n");
249 return NULL;
250}
251
252/**
253 * init_event_struct: Initialize fields in an event struct that are always
254 * required.
255 * @evt: The event
256 * @done: Routine to call when the event is responded to
257 * @format: SRP or MAD format
258 * @timeout: timeout value set in the CRQ
259 */
260static void init_event_struct(struct srp_event_struct *evt_struct,
261 void (*done) (struct srp_event_struct *),
262 u8 format,
263 int timeout)
264{
265 evt_struct->cmnd = NULL;
266 evt_struct->cmnd_done = NULL;
267 evt_struct->sync_srp = NULL;
268 evt_struct->crq.format = format;
269 evt_struct->crq.timeout = timeout;
270 evt_struct->done = done;
271}
272
273/* ------------------------------------------------------------
274 * Routines for receiving SCSI responses from the hosting partition
275 */
276
277/**
278 * set_srp_direction: Set the fields in the srp related to data
279 * direction and number of buffers based on the direction in
280 * the scsi_cmnd and the number of buffers
281 */
282static void set_srp_direction(struct scsi_cmnd *cmd,
283 struct srp_cmd *srp_cmd,
284 int numbuf)
285{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900286 u8 fmt;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (numbuf == 0)
289 return;
290
FUJITA Tomonorief265672006-03-26 03:57:14 +0900291 if (numbuf == 1)
292 fmt = SRP_DATA_DESC_DIRECT;
293 else {
294 fmt = SRP_DATA_DESC_INDIRECT;
295 numbuf = min(numbuf, MAX_INDIRECT_BUFS);
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (cmd->sc_data_direction == DMA_TO_DEVICE)
FUJITA Tomonorief265672006-03-26 03:57:14 +0900298 srp_cmd->data_out_desc_cnt = numbuf;
299 else
300 srp_cmd->data_in_desc_cnt = numbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
FUJITA Tomonorief265672006-03-26 03:57:14 +0900302
303 if (cmd->sc_data_direction == DMA_TO_DEVICE)
304 srp_cmd->buf_fmt = fmt << 4;
305 else
306 srp_cmd->buf_fmt = fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
FUJITA Tomonorief265672006-03-26 03:57:14 +0900309static void unmap_sg_list(int num_entries,
James Bottomley4dddbc22005-09-06 17:11:54 -0500310 struct device *dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900311 struct srp_direct_buf *md)
312{
James Bottomley4dddbc22005-09-06 17:11:54 -0500313 int i;
314
FUJITA Tomonorief265672006-03-26 03:57:14 +0900315 for (i = 0; i < num_entries; ++i)
316 dma_unmap_single(dev, md[i].va, md[i].len, DMA_BIDIRECTIONAL);
James Bottomley4dddbc22005-09-06 17:11:54 -0500317}
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319/**
320 * unmap_cmd_data: - Unmap data pointed in srp_cmd based on the format
321 * @cmd: srp_cmd whose additional_data member will be unmapped
322 * @dev: device for which the memory is mapped
323 *
324*/
James Bottomley4dddbc22005-09-06 17:11:54 -0500325static void unmap_cmd_data(struct srp_cmd *cmd,
326 struct srp_event_struct *evt_struct,
327 struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900329 u8 out_fmt, in_fmt;
330
331 out_fmt = cmd->buf_fmt >> 4;
332 in_fmt = cmd->buf_fmt & ((1U << 4) - 1);
333
334 if (out_fmt == SRP_NO_DATA_DESC && in_fmt == SRP_NO_DATA_DESC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900336 else if (out_fmt == SRP_DATA_DESC_DIRECT ||
337 in_fmt == SRP_DATA_DESC_DIRECT) {
338 struct srp_direct_buf *data =
339 (struct srp_direct_buf *) cmd->add_data;
340 dma_unmap_single(dev, data->va, data->len, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 } else {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900342 struct srp_indirect_buf *indirect =
343 (struct srp_indirect_buf *) cmd->add_data;
344 int num_mapped = indirect->table_desc.len /
345 sizeof(struct srp_direct_buf);
James Bottomley4dddbc22005-09-06 17:11:54 -0500346
347 if (num_mapped <= MAX_INDIRECT_BUFS) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900348 unmap_sg_list(num_mapped, dev, &indirect->desc_list[0]);
James Bottomley4dddbc22005-09-06 17:11:54 -0500349 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
James Bottomley4dddbc22005-09-06 17:11:54 -0500351
352 unmap_sg_list(num_mapped, dev, evt_struct->ext_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354}
355
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900356static int map_sg_list(struct scsi_cmnd *cmd, int nseg,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900357 struct srp_direct_buf *md)
James Bottomley4dddbc22005-09-06 17:11:54 -0500358{
359 int i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900360 struct scatterlist *sg;
James Bottomley4dddbc22005-09-06 17:11:54 -0500361 u64 total_length = 0;
362
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900363 scsi_for_each_sg(cmd, sg, nseg, i) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900364 struct srp_direct_buf *descr = md + i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900365 descr->va = sg_dma_address(sg);
366 descr->len = sg_dma_len(sg);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900367 descr->key = 0;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900368 total_length += sg_dma_len(sg);
James Bottomley4dddbc22005-09-06 17:11:54 -0500369 }
370 return total_length;
371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/**
374 * map_sg_data: - Maps dma for a scatterlist and initializes decriptor fields
375 * @cmd: Scsi_Cmnd with the scatterlist
376 * @srp_cmd: srp_cmd that contains the memory descriptor
377 * @dev: device for which to map dma memory
378 *
379 * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
380 * Returns 1 on success.
381*/
382static int map_sg_data(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500383 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 struct srp_cmd *srp_cmd, struct device *dev)
385{
386
James Bottomley4dddbc22005-09-06 17:11:54 -0500387 int sg_mapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 u64 total_length = 0;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900389 struct srp_direct_buf *data =
390 (struct srp_direct_buf *) srp_cmd->add_data;
391 struct srp_indirect_buf *indirect =
392 (struct srp_indirect_buf *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900394 sg_mapped = scsi_dma_map(cmd);
395 if (!sg_mapped)
396 return 1;
397 else if (sg_mapped < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return 0;
399
400 set_srp_direction(cmd, srp_cmd, sg_mapped);
401
402 /* special case; we can use a single direct descriptor */
403 if (sg_mapped == 1) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900404 map_sg_list(cmd, sg_mapped, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return 1;
406 }
407
FUJITA Tomonorief265672006-03-26 03:57:14 +0900408 indirect->table_desc.va = 0;
409 indirect->table_desc.len = sg_mapped * sizeof(struct srp_direct_buf);
410 indirect->table_desc.key = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
James Bottomley4dddbc22005-09-06 17:11:54 -0500412 if (sg_mapped <= MAX_INDIRECT_BUFS) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900413 total_length = map_sg_list(cmd, sg_mapped,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900414 &indirect->desc_list[0]);
415 indirect->len = total_length;
James Bottomley4dddbc22005-09-06 17:11:54 -0500416 return 1;
417 }
418
419 /* get indirect table */
420 if (!evt_struct->ext_list) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900421 evt_struct->ext_list = (struct srp_direct_buf *)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900422 dma_alloc_coherent(dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900423 SG_ALL * sizeof(struct srp_direct_buf),
424 &evt_struct->ext_list_token, 0);
James Bottomley4dddbc22005-09-06 17:11:54 -0500425 if (!evt_struct->ext_list) {
Brian King6c0a60e2007-06-13 17:12:19 -0500426 sdev_printk(KERN_ERR, cmd->device,
427 "Can't allocate memory for indirect table\n");
James Bottomley4dddbc22005-09-06 17:11:54 -0500428 return 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500429 }
430 }
431
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900432 total_length = map_sg_list(cmd, sg_mapped, evt_struct->ext_list);
James Bottomley4dddbc22005-09-06 17:11:54 -0500433
FUJITA Tomonorief265672006-03-26 03:57:14 +0900434 indirect->len = total_length;
435 indirect->table_desc.va = evt_struct->ext_list_token;
436 indirect->table_desc.len = sg_mapped * sizeof(indirect->desc_list[0]);
437 memcpy(indirect->desc_list, evt_struct->ext_list,
438 MAX_INDIRECT_BUFS * sizeof(struct srp_direct_buf));
James Bottomley4dddbc22005-09-06 17:11:54 -0500439 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
442/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * map_data_for_srp_cmd: - Calls functions to map data for srp cmds
444 * @cmd: struct scsi_cmnd with the memory to be mapped
445 * @srp_cmd: srp_cmd that contains the memory descriptor
446 * @dev: dma device for which to map dma memory
447 *
448 * Called by scsi_cmd_to_srp_cmd() when converting scsi cmds to srp cmds
449 * Returns 1 on success.
450*/
451static int map_data_for_srp_cmd(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500452 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 struct srp_cmd *srp_cmd, struct device *dev)
454{
455 switch (cmd->sc_data_direction) {
456 case DMA_FROM_DEVICE:
457 case DMA_TO_DEVICE:
458 break;
459 case DMA_NONE:
460 return 1;
461 case DMA_BIDIRECTIONAL:
Brian King6c0a60e2007-06-13 17:12:19 -0500462 sdev_printk(KERN_ERR, cmd->device,
463 "Can't map DMA_BIDIRECTIONAL to read/write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return 0;
465 default:
Brian King6c0a60e2007-06-13 17:12:19 -0500466 sdev_printk(KERN_ERR, cmd->device,
467 "Unknown data direction 0x%02x; can't map!\n",
468 cmd->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return 0;
470 }
471
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900472 return map_sg_data(cmd, evt_struct, srp_cmd, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Brian King3d0e91f2007-06-13 17:12:26 -0500475/**
476 * purge_requests: Our virtual adapter just shut down. purge any sent requests
477 * @hostdata: the adapter
478 */
479static void purge_requests(struct ibmvscsi_host_data *hostdata, int error_code)
480{
481 struct srp_event_struct *tmp_evt, *pos;
482 unsigned long flags;
483
484 spin_lock_irqsave(hostdata->host->host_lock, flags);
485 list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
486 list_del(&tmp_evt->list);
487 del_timer(&tmp_evt->timer);
488 if (tmp_evt->cmnd) {
489 tmp_evt->cmnd->result = (error_code << 16);
490 unmap_cmd_data(&tmp_evt->iu.srp.cmd,
491 tmp_evt,
492 tmp_evt->hostdata->dev);
493 if (tmp_evt->cmnd_done)
494 tmp_evt->cmnd_done(tmp_evt->cmnd);
495 } else if (tmp_evt->done)
496 tmp_evt->done(tmp_evt);
497 free_event_struct(&tmp_evt->hostdata->pool, tmp_evt);
498 }
499 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
500}
501
502/**
503 * ibmvscsi_reset_host - Reset the connection to the server
504 * @hostdata: struct ibmvscsi_host_data to reset
505*/
506static void ibmvscsi_reset_host(struct ibmvscsi_host_data *hostdata)
507{
508 scsi_block_requests(hostdata->host);
509 atomic_set(&hostdata->request_limit, 0);
510
511 purge_requests(hostdata, DID_ERROR);
512 if ((ibmvscsi_reset_crq_queue(&hostdata->queue, hostdata)) ||
513 (ibmvscsi_send_crq(hostdata, 0xC001000000000000LL, 0)) ||
514 (vio_enable_interrupts(to_vio_dev(hostdata->dev)))) {
515 atomic_set(&hostdata->request_limit, -1);
516 dev_err(hostdata->dev, "error after reset\n");
517 }
518
519 scsi_unblock_requests(hostdata->host);
520}
521
522/**
523 * ibmvscsi_timeout - Internal command timeout handler
524 * @evt_struct: struct srp_event_struct that timed out
525 *
526 * Called when an internally generated command times out
527*/
528static void ibmvscsi_timeout(struct srp_event_struct *evt_struct)
529{
530 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
531
532 dev_err(hostdata->dev, "Command timed out (%x). Resetting connection\n",
533 evt_struct->iu.srp.cmd.opcode);
534
535 ibmvscsi_reset_host(hostdata);
536}
537
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539/* ------------------------------------------------------------
540 * Routines for sending and receiving SRPs
541 */
542/**
543 * ibmvscsi_send_srp_event: - Transforms event to u64 array and calls send_crq()
544 * @evt_struct: evt_struct to be sent
545 * @hostdata: ibmvscsi_host_data of host
Brian King3d0e91f2007-06-13 17:12:26 -0500546 * @timeout: timeout in seconds - 0 means do not time command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 *
548 * Returns the value returned from ibmvscsi_send_crq(). (Zero for success)
549 * Note that this routine assumes that host_lock is held for synchronization
550*/
551static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct,
Brian King3d0e91f2007-06-13 17:12:26 -0500552 struct ibmvscsi_host_data *hostdata,
553 unsigned long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 u64 *crq_as_u64 = (u64 *) &evt_struct->crq;
Dave C Boutchercefbda22006-06-12 21:22:51 -0500556 int request_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 int rc;
558
Robert Jenningsa897ff22007-03-28 12:45:46 -0500559 /* If we have exhausted our request limit, just fail this request,
560 * unless it is for a reset or abort.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * Note that there are rare cases involving driver generated requests
562 * (such as task management requests) that the mid layer may think we
563 * can handle more requests (can_queue) when we actually can't
564 */
Dave C Boutchercefbda22006-06-12 21:22:51 -0500565 if (evt_struct->crq.format == VIOSRP_SRP_FORMAT) {
566 request_status =
567 atomic_dec_if_positive(&hostdata->request_limit);
568 /* If request limit was -1 when we started, it is now even
569 * less than that
570 */
571 if (request_status < -1)
572 goto send_error;
Robert Jenningsa897ff22007-03-28 12:45:46 -0500573 /* Otherwise, we may have run out of requests. */
574 /* Abort and reset calls should make it through.
575 * Nothing except abort and reset should use the last two
576 * slots unless we had two or less to begin with.
577 */
578 else if (request_status < 2 &&
579 evt_struct->iu.srp.cmd.opcode != SRP_TSK_MGMT) {
580 /* In the case that we have less than two requests
581 * available, check the server limit as a combination
582 * of the request limit and the number of requests
583 * in-flight (the size of the send list). If the
584 * server limit is greater than 2, return busy so
585 * that the last two are reserved for reset and abort.
586 */
587 int server_limit = request_status;
588 struct srp_event_struct *tmp_evt;
589
590 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
591 server_limit++;
592 }
593
594 if (server_limit > 2)
595 goto send_busy;
596 }
Dave C Boutchercefbda22006-06-12 21:22:51 -0500597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 /* Copy the IU into the transfer area */
600 *evt_struct->xfer_iu = evt_struct->iu;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900601 evt_struct->xfer_iu->srp.rsp.tag = (u64)evt_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 /* Add this to the sent list. We need to do this
604 * before we actually send
605 * in case it comes back REALLY fast
606 */
607 list_add_tail(&evt_struct->list, &hostdata->sent);
608
Brian King3d0e91f2007-06-13 17:12:26 -0500609 init_timer(&evt_struct->timer);
610 if (timeout) {
611 evt_struct->timer.data = (unsigned long) evt_struct;
612 evt_struct->timer.expires = jiffies + (timeout * HZ);
613 evt_struct->timer.function = (void (*)(unsigned long))ibmvscsi_timeout;
614 add_timer(&evt_struct->timer);
615 }
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if ((rc =
618 ibmvscsi_send_crq(hostdata, crq_as_u64[0], crq_as_u64[1])) != 0) {
619 list_del(&evt_struct->list);
Brian King3d0e91f2007-06-13 17:12:26 -0500620 del_timer(&evt_struct->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Brian King6c0a60e2007-06-13 17:12:19 -0500622 dev_err(hostdata->dev, "send error %d\n", rc);
Robert Jenningsa897ff22007-03-28 12:45:46 -0500623 atomic_inc(&hostdata->request_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 goto send_error;
625 }
626
627 return 0;
628
Dave C Boutchercefbda22006-06-12 21:22:51 -0500629 send_busy:
James Bottomley4dddbc22005-09-06 17:11:54 -0500630 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 free_event_struct(&hostdata->pool, evt_struct);
Robert Jenningsa897ff22007-03-28 12:45:46 -0500633 atomic_inc(&hostdata->request_limit);
634 return SCSI_MLQUEUE_HOST_BUSY;
Dave C Boutchercefbda22006-06-12 21:22:51 -0500635
636 send_error:
637 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
638
639 if (evt_struct->cmnd != NULL) {
640 evt_struct->cmnd->result = DID_ERROR << 16;
641 evt_struct->cmnd_done(evt_struct->cmnd);
642 } else if (evt_struct->done)
643 evt_struct->done(evt_struct);
644
645 free_event_struct(&hostdata->pool, evt_struct);
646 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649/**
650 * handle_cmd_rsp: - Handle responses from commands
651 * @evt_struct: srp_event_struct to be handled
652 *
653 * Used as a callback by when sending scsi cmds.
654 * Gets called by ibmvscsi_handle_crq()
655*/
656static void handle_cmd_rsp(struct srp_event_struct *evt_struct)
657{
658 struct srp_rsp *rsp = &evt_struct->xfer_iu->srp.rsp;
659 struct scsi_cmnd *cmnd = evt_struct->cmnd;
660
FUJITA Tomonorief265672006-03-26 03:57:14 +0900661 if (unlikely(rsp->opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -0500663 dev_warn(evt_struct->hostdata->dev,
664 "bad SRP RSP type %d\n", rsp->opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666
667 if (cmnd) {
668 cmnd->result = rsp->status;
669 if (((cmnd->result >> 1) & 0x1f) == CHECK_CONDITION)
670 memcpy(cmnd->sense_buffer,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900671 rsp->data,
672 rsp->sense_data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 unmap_cmd_data(&evt_struct->iu.srp.cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500674 evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 evt_struct->hostdata->dev);
676
FUJITA Tomonorief265672006-03-26 03:57:14 +0900677 if (rsp->flags & SRP_RSP_FLAG_DOOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900678 scsi_set_resid(cmnd, rsp->data_out_res_cnt);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900679 else if (rsp->flags & SRP_RSP_FLAG_DIOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900680 scsi_set_resid(cmnd, rsp->data_in_res_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682
683 if (evt_struct->cmnd_done)
684 evt_struct->cmnd_done(cmnd);
685}
686
687/**
688 * lun_from_dev: - Returns the lun of the scsi device
689 * @dev: struct scsi_device
690 *
691*/
692static inline u16 lun_from_dev(struct scsi_device *dev)
693{
694 return (0x2 << 14) | (dev->id << 8) | (dev->channel << 5) | dev->lun;
695}
696
697/**
698 * ibmvscsi_queue: - The queuecommand function of the scsi template
699 * @cmd: struct scsi_cmnd to be executed
700 * @done: Callback function to be called when cmd is completed
701*/
702static int ibmvscsi_queuecommand(struct scsi_cmnd *cmnd,
703 void (*done) (struct scsi_cmnd *))
704{
705 struct srp_cmd *srp_cmd;
706 struct srp_event_struct *evt_struct;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900707 struct srp_indirect_buf *indirect;
FUJITA Tomonori7603e022007-07-23 09:28:40 +0900708 struct ibmvscsi_host_data *hostdata = shost_priv(cmnd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 u16 lun = lun_from_dev(cmnd->device);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900710 u8 out_fmt, in_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 evt_struct = get_event_struct(&hostdata->pool);
713 if (!evt_struct)
714 return SCSI_MLQUEUE_HOST_BUSY;
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 /* Set up the actual SRP IU */
717 srp_cmd = &evt_struct->iu.srp.cmd;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900718 memset(srp_cmd, 0x00, SRP_MAX_IU_LEN);
719 srp_cmd->opcode = SRP_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 memcpy(srp_cmd->cdb, cmnd->cmnd, sizeof(cmnd->cmnd));
721 srp_cmd->lun = ((u64) lun) << 48;
722
James Bottomley4dddbc22005-09-06 17:11:54 -0500723 if (!map_data_for_srp_cmd(cmnd, evt_struct, srp_cmd, hostdata->dev)) {
Brian King6c0a60e2007-06-13 17:12:19 -0500724 sdev_printk(KERN_ERR, cmnd->device, "couldn't convert cmd to srp_cmd\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 free_event_struct(&hostdata->pool, evt_struct);
726 return SCSI_MLQUEUE_HOST_BUSY;
727 }
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 init_event_struct(evt_struct,
730 handle_cmd_rsp,
731 VIOSRP_SRP_FORMAT,
Dave C Boutcher8224bfa2005-08-22 14:38:26 -0500732 cmnd->timeout_per_command/HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 evt_struct->cmnd = cmnd;
735 evt_struct->cmnd_done = done;
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 /* Fix up dma address of the buffer itself */
FUJITA Tomonorief265672006-03-26 03:57:14 +0900738 indirect = (struct srp_indirect_buf *) srp_cmd->add_data;
739 out_fmt = srp_cmd->buf_fmt >> 4;
740 in_fmt = srp_cmd->buf_fmt & ((1U << 4) - 1);
741 if ((in_fmt == SRP_DATA_DESC_INDIRECT ||
742 out_fmt == SRP_DATA_DESC_INDIRECT) &&
743 indirect->table_desc.va == 0) {
744 indirect->table_desc.va = evt_struct->crq.IU_data_ptr +
745 offsetof(struct srp_cmd, add_data) +
746 offsetof(struct srp_indirect_buf, desc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
Brian King3d0e91f2007-06-13 17:12:26 -0500749 return ibmvscsi_send_srp_event(evt_struct, hostdata, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
752/* ------------------------------------------------------------
753 * Routines for driver initialization
754 */
755/**
756 * adapter_info_rsp: - Handle response to MAD adapter info request
757 * @evt_struct: srp_event_struct with the response
758 *
759 * Used as a "done" callback by when sending adapter_info. Gets called
760 * by ibmvscsi_handle_crq()
761*/
762static void adapter_info_rsp(struct srp_event_struct *evt_struct)
763{
764 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
765 dma_unmap_single(hostdata->dev,
766 evt_struct->iu.mad.adapter_info.buffer,
767 evt_struct->iu.mad.adapter_info.common.length,
768 DMA_BIDIRECTIONAL);
769
770 if (evt_struct->xfer_iu->mad.adapter_info.common.status) {
Brian King6c0a60e2007-06-13 17:12:19 -0500771 dev_err(hostdata->dev, "error %d getting adapter info\n",
772 evt_struct->xfer_iu->mad.adapter_info.common.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 } else {
Brian King6c0a60e2007-06-13 17:12:19 -0500774 dev_info(hostdata->dev, "host srp version: %s, "
775 "host partition %s (%d), OS %d, max io %u\n",
776 hostdata->madapter_info.srp_version,
777 hostdata->madapter_info.partition_name,
778 hostdata->madapter_info.partition_number,
779 hostdata->madapter_info.os_type,
780 hostdata->madapter_info.port_max_txu[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (hostdata->madapter_info.port_max_txu[0])
783 hostdata->host->max_sectors =
784 hostdata->madapter_info.port_max_txu[0] >> 9;
Dave C Boutcher154fb612005-09-13 10:09:02 -0500785
786 if (hostdata->madapter_info.os_type == 3 &&
787 strcmp(hostdata->madapter_info.srp_version, "1.6a") <= 0) {
Brian King6c0a60e2007-06-13 17:12:19 -0500788 dev_err(hostdata->dev, "host (Ver. %s) doesn't support large transfers\n",
789 hostdata->madapter_info.srp_version);
790 dev_err(hostdata->dev, "limiting scatterlists to %d\n",
791 MAX_INDIRECT_BUFS);
Dave C Boutcher154fb612005-09-13 10:09:02 -0500792 hostdata->host->sg_tablesize = MAX_INDIRECT_BUFS;
793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795}
796
797/**
798 * send_mad_adapter_info: - Sends the mad adapter info request
799 * and stores the result so it can be retrieved with
800 * sysfs. We COULD consider causing a failure if the
801 * returned SRP version doesn't match ours.
802 * @hostdata: ibmvscsi_host_data of host
803 *
804 * Returns zero if successful.
805*/
806static void send_mad_adapter_info(struct ibmvscsi_host_data *hostdata)
807{
808 struct viosrp_adapter_info *req;
809 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -0500810 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +0900811 dma_addr_t addr;
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 evt_struct = get_event_struct(&hostdata->pool);
814 if (!evt_struct) {
Brian King6c0a60e2007-06-13 17:12:19 -0500815 dev_err(hostdata->dev,
816 "couldn't allocate an event for ADAPTER_INFO_REQ!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return;
818 }
819
820 init_event_struct(evt_struct,
821 adapter_info_rsp,
822 VIOSRP_MAD_FORMAT,
FUJITA Tomonori33874a02007-05-22 13:50:51 +0900823 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 req = &evt_struct->iu.mad.adapter_info;
826 memset(req, 0x00, sizeof(*req));
827
828 req->common.type = VIOSRP_ADAPTER_INFO_TYPE;
829 req->common.length = sizeof(hostdata->madapter_info);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +0900830 req->buffer = addr = dma_map_single(hostdata->dev,
831 &hostdata->madapter_info,
832 sizeof(hostdata->madapter_info),
833 DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 if (dma_mapping_error(req->buffer)) {
Brian King6c0a60e2007-06-13 17:12:19 -0500836 dev_err(hostdata->dev, "Unable to map request_buffer for adapter_info!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 free_event_struct(&hostdata->pool, evt_struct);
838 return;
839 }
840
Brian King06f923c2007-06-13 17:12:33 -0500841 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King3d0e91f2007-06-13 17:12:26 -0500842 if (ibmvscsi_send_srp_event(evt_struct, hostdata, init_timeout * 2)) {
Brian King6c0a60e2007-06-13 17:12:19 -0500843 dev_err(hostdata->dev, "couldn't send ADAPTER_INFO_REQ!\n");
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +0900844 dma_unmap_single(hostdata->dev,
845 addr,
846 sizeof(hostdata->madapter_info),
847 DMA_BIDIRECTIONAL);
848 }
Brian King06f923c2007-06-13 17:12:33 -0500849 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850};
851
852/**
853 * login_rsp: - Handle response to SRP login request
854 * @evt_struct: srp_event_struct with the response
855 *
856 * Used as a "done" callback by when sending srp_login. Gets called
857 * by ibmvscsi_handle_crq()
858*/
859static void login_rsp(struct srp_event_struct *evt_struct)
860{
861 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900862 switch (evt_struct->xfer_iu->srp.login_rsp.opcode) {
863 case SRP_LOGIN_RSP: /* it worked! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 break;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900865 case SRP_LOGIN_REJ: /* refused! */
Brian King6c0a60e2007-06-13 17:12:19 -0500866 dev_info(hostdata->dev, "SRP_LOGIN_REJ reason %u\n",
867 evt_struct->xfer_iu->srp.login_rej.reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /* Login failed. */
869 atomic_set(&hostdata->request_limit, -1);
870 return;
871 default:
Brian King6c0a60e2007-06-13 17:12:19 -0500872 dev_err(hostdata->dev, "Invalid login response typecode 0x%02x!\n",
873 evt_struct->xfer_iu->srp.login_rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 /* Login failed. */
875 atomic_set(&hostdata->request_limit, -1);
876 return;
877 }
878
Brian King6c0a60e2007-06-13 17:12:19 -0500879 dev_info(hostdata->dev, "SRP_LOGIN succeeded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Robert Jenningsa897ff22007-03-28 12:45:46 -0500881 if (evt_struct->xfer_iu->srp.login_rsp.req_lim_delta < 0)
Brian King6c0a60e2007-06-13 17:12:19 -0500882 dev_err(hostdata->dev, "Invalid request_limit.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Robert Jenningsa897ff22007-03-28 12:45:46 -0500884 /* Now we know what the real request-limit is.
885 * This value is set rather than added to request_limit because
886 * request_limit could have been set to -1 by this client.
887 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 atomic_set(&hostdata->request_limit,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900889 evt_struct->xfer_iu->srp.login_rsp.req_lim_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Dave C Boutcher2b541f82006-01-19 13:34:44 -0600891 /* If we had any pending I/Os, kick them */
892 scsi_unblock_requests(hostdata->host);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 send_mad_adapter_info(hostdata);
895 return;
896}
897
898/**
899 * send_srp_login: - Sends the srp login
900 * @hostdata: ibmvscsi_host_data of host
901 *
902 * Returns zero if successful.
903*/
904static int send_srp_login(struct ibmvscsi_host_data *hostdata)
905{
906 int rc;
907 unsigned long flags;
908 struct srp_login_req *login;
909 struct srp_event_struct *evt_struct = get_event_struct(&hostdata->pool);
910 if (!evt_struct) {
Brian King6c0a60e2007-06-13 17:12:19 -0500911 dev_err(hostdata->dev, "couldn't allocate an event for login req!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return FAILED;
913 }
914
915 init_event_struct(evt_struct,
916 login_rsp,
917 VIOSRP_SRP_FORMAT,
FUJITA Tomonori33874a02007-05-22 13:50:51 +0900918 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 login = &evt_struct->iu.srp.login_req;
Dave C Boutcher2b541f82006-01-19 13:34:44 -0600921 memset(login, 0x00, sizeof(struct srp_login_req));
FUJITA Tomonorief265672006-03-26 03:57:14 +0900922 login->opcode = SRP_LOGIN_REQ;
923 login->req_it_iu_len = sizeof(union srp_iu);
924 login->req_buf_fmt = SRP_BUF_FORMAT_DIRECT | SRP_BUF_FORMAT_INDIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Dave C Boutcher9b833e42006-03-23 13:47:07 -0600926 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 /* Start out with a request limit of 1, since this is negotiated in
928 * the login request we are just sending
929 */
930 atomic_set(&hostdata->request_limit, 1);
931
Brian King3d0e91f2007-06-13 17:12:26 -0500932 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, init_timeout * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Brian King6c0a60e2007-06-13 17:12:19 -0500934 dev_info(hostdata->dev, "sent SRP login\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return rc;
936};
937
938/**
939 * sync_completion: Signal that a synchronous command has completed
940 * Note that after returning from this call, the evt_struct is freed.
941 * the caller waiting on this completion shouldn't touch the evt_struct
942 * again.
943 */
944static void sync_completion(struct srp_event_struct *evt_struct)
945{
946 /* copy the response back */
947 if (evt_struct->sync_srp)
948 *evt_struct->sync_srp = *evt_struct->xfer_iu;
949
950 complete(&evt_struct->comp);
951}
952
953/**
954 * ibmvscsi_abort: Abort a command...from scsi host template
955 * send this over to the server and wait synchronously for the response
956 */
957static int ibmvscsi_eh_abort_handler(struct scsi_cmnd *cmd)
958{
FUJITA Tomonori7603e022007-07-23 09:28:40 +0900959 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 struct srp_tsk_mgmt *tsk_mgmt;
961 struct srp_event_struct *evt;
962 struct srp_event_struct *tmp_evt, *found_evt;
963 union viosrp_iu srp_rsp;
964 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -0500965 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 u16 lun = lun_from_dev(cmd->device);
967
968 /* First, find this command in our sent list so we can figure
969 * out the correct tag
970 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -0500971 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 found_evt = NULL;
973 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
974 if (tmp_evt->cmnd == cmd) {
975 found_evt = tmp_evt;
976 break;
977 }
978 }
979
Dave C Boutcherbe042f22005-08-15 16:52:58 -0500980 if (!found_evt) {
981 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Brian King35f51ee2007-06-13 17:12:40 -0500982 return SUCCESS;
Dave C Boutcherbe042f22005-08-15 16:52:58 -0500983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 evt = get_event_struct(&hostdata->pool);
986 if (evt == NULL) {
Dave C Boutcherbe042f22005-08-15 16:52:58 -0500987 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Brian King6c0a60e2007-06-13 17:12:19 -0500988 sdev_printk(KERN_ERR, cmd->device, "failed to allocate abort event\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return FAILED;
990 }
991
992 init_event_struct(evt,
993 sync_completion,
994 VIOSRP_SRP_FORMAT,
FUJITA Tomonori33874a02007-05-22 13:50:51 +0900995 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
998
999 /* Set up an abort SRP command */
1000 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
FUJITA Tomonorief265672006-03-26 03:57:14 +09001001 tsk_mgmt->opcode = SRP_TSK_MGMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 tsk_mgmt->lun = ((u64) lun) << 48;
FUJITA Tomonorief265672006-03-26 03:57:14 +09001003 tsk_mgmt->tsk_mgmt_func = SRP_TSK_ABORT_TASK;
1004 tsk_mgmt->task_tag = (u64) found_evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Brian King6c0a60e2007-06-13 17:12:19 -05001006 sdev_printk(KERN_INFO, cmd->device, "aborting command. lun 0x%lx, tag 0x%lx\n",
1007 tsk_mgmt->lun, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 evt->sync_srp = &srp_rsp;
1010 init_completion(&evt->comp);
Brian King3d0e91f2007-06-13 17:12:26 -05001011 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, init_timeout * 2);
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001012 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1013 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001014 sdev_printk(KERN_ERR, cmd->device,
1015 "failed to send abort() event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return FAILED;
1017 }
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001022 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001024 sdev_printk(KERN_WARNING, cmd->device, "abort bad SRP RSP type %d\n",
1025 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return FAILED;
1027 }
1028
FUJITA Tomonorief265672006-03-26 03:57:14 +09001029 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1030 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 else
1032 rsp_rc = srp_rsp.srp.rsp.status;
1033
1034 if (rsp_rc) {
1035 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001036 sdev_printk(KERN_WARNING, cmd->device,
1037 "abort code %d for task tag 0x%lx\n",
1038 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return FAILED;
1040 }
1041
1042 /* Because we dropped the spinlock above, it's possible
1043 * The event is no longer in our list. Make sure it didn't
1044 * complete while we were aborting
1045 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001046 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 found_evt = NULL;
1048 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1049 if (tmp_evt->cmnd == cmd) {
1050 found_evt = tmp_evt;
1051 break;
1052 }
1053 }
1054
1055 if (found_evt == NULL) {
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001056 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Brian King6c0a60e2007-06-13 17:12:19 -05001057 sdev_printk(KERN_INFO, cmd->device, "aborted task tag 0x%lx completed\n",
1058 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return SUCCESS;
1060 }
1061
Brian King6c0a60e2007-06-13 17:12:19 -05001062 sdev_printk(KERN_INFO, cmd->device, "successfully aborted task tag 0x%lx\n",
1063 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 cmd->result = (DID_ABORT << 16);
1066 list_del(&found_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001067 unmap_cmd_data(&found_evt->iu.srp.cmd, found_evt,
1068 found_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 free_event_struct(&found_evt->hostdata->pool, found_evt);
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001070 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 atomic_inc(&hostdata->request_limit);
1072 return SUCCESS;
1073}
1074
1075/**
1076 * ibmvscsi_eh_device_reset_handler: Reset a single LUN...from scsi host
1077 * template send this over to the server and wait synchronously for the
1078 * response
1079 */
1080static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd *cmd)
1081{
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001082 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 struct srp_tsk_mgmt *tsk_mgmt;
1084 struct srp_event_struct *evt;
1085 struct srp_event_struct *tmp_evt, *pos;
1086 union viosrp_iu srp_rsp;
1087 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001088 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 u16 lun = lun_from_dev(cmd->device);
1090
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001091 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 evt = get_event_struct(&hostdata->pool);
1093 if (evt == NULL) {
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001094 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Brian King6c0a60e2007-06-13 17:12:19 -05001095 sdev_printk(KERN_ERR, cmd->device, "failed to allocate reset event\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return FAILED;
1097 }
1098
1099 init_event_struct(evt,
1100 sync_completion,
1101 VIOSRP_SRP_FORMAT,
FUJITA Tomonori33874a02007-05-22 13:50:51 +09001102 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
1105
1106 /* Set up a lun reset SRP command */
1107 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
FUJITA Tomonorief265672006-03-26 03:57:14 +09001108 tsk_mgmt->opcode = SRP_TSK_MGMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 tsk_mgmt->lun = ((u64) lun) << 48;
FUJITA Tomonorief265672006-03-26 03:57:14 +09001110 tsk_mgmt->tsk_mgmt_func = SRP_TSK_LUN_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Brian King6c0a60e2007-06-13 17:12:19 -05001112 sdev_printk(KERN_INFO, cmd->device, "resetting device. lun 0x%lx\n",
1113 tsk_mgmt->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 evt->sync_srp = &srp_rsp;
1116 init_completion(&evt->comp);
Brian King3d0e91f2007-06-13 17:12:26 -05001117 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, init_timeout * 2);
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001118 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1119 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001120 sdev_printk(KERN_ERR, cmd->device,
1121 "failed to send reset event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return FAILED;
1123 }
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001128 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001130 sdev_printk(KERN_WARNING, cmd->device, "reset bad SRP RSP type %d\n",
1131 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return FAILED;
1133 }
1134
FUJITA Tomonorief265672006-03-26 03:57:14 +09001135 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1136 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 else
1138 rsp_rc = srp_rsp.srp.rsp.status;
1139
1140 if (rsp_rc) {
1141 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001142 sdev_printk(KERN_WARNING, cmd->device,
1143 "reset code %d for task tag 0x%lx\n",
1144 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return FAILED;
1146 }
1147
1148 /* We need to find all commands for this LUN that have not yet been
1149 * responded to, and fail them with DID_RESET
1150 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001151 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
1153 if ((tmp_evt->cmnd) && (tmp_evt->cmnd->device == cmd->device)) {
1154 if (tmp_evt->cmnd)
1155 tmp_evt->cmnd->result = (DID_RESET << 16);
1156 list_del(&tmp_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001157 unmap_cmd_data(&tmp_evt->iu.srp.cmd, tmp_evt,
1158 tmp_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 free_event_struct(&tmp_evt->hostdata->pool,
1160 tmp_evt);
1161 atomic_inc(&hostdata->request_limit);
1162 if (tmp_evt->cmnd_done)
1163 tmp_evt->cmnd_done(tmp_evt->cmnd);
1164 else if (tmp_evt->done)
1165 tmp_evt->done(tmp_evt);
1166 }
1167 }
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001168 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return SUCCESS;
1170}
1171
1172/**
Brian King3d0e91f2007-06-13 17:12:26 -05001173 * ibmvscsi_eh_host_reset_handler - Reset the connection to the server
1174 * @cmd: struct scsi_cmnd having problems
1175*/
1176static int ibmvscsi_eh_host_reset_handler(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Brian King3d0e91f2007-06-13 17:12:26 -05001178 unsigned long wait_switch = 0;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001179 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Brian King3d0e91f2007-06-13 17:12:26 -05001181 dev_err(hostdata->dev, "Resetting connection due to error recovery\n");
1182
1183 ibmvscsi_reset_host(hostdata);
1184
1185 for (wait_switch = jiffies + (init_timeout * HZ);
1186 time_before(jiffies, wait_switch) &&
1187 atomic_read(&hostdata->request_limit) < 2;) {
1188
1189 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
Brian King3d0e91f2007-06-13 17:12:26 -05001191
1192 if (atomic_read(&hostdata->request_limit) <= 0)
1193 return FAILED;
1194
1195 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
1198/**
1199 * ibmvscsi_handle_crq: - Handles and frees received events in the CRQ
1200 * @crq: Command/Response queue
1201 * @hostdata: ibmvscsi_host_data of host
1202 *
1203*/
1204void ibmvscsi_handle_crq(struct viosrp_crq *crq,
1205 struct ibmvscsi_host_data *hostdata)
1206{
Brian King6c0a60e2007-06-13 17:12:19 -05001207 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 unsigned long flags;
1209 struct srp_event_struct *evt_struct =
1210 (struct srp_event_struct *)crq->IU_data_ptr;
1211 switch (crq->valid) {
1212 case 0xC0: /* initialization */
1213 switch (crq->format) {
1214 case 0x01: /* Initialization message */
Brian King6c0a60e2007-06-13 17:12:19 -05001215 dev_info(hostdata->dev, "partner initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 /* Send back a response */
Brian King6c0a60e2007-06-13 17:12:19 -05001217 if ((rc = ibmvscsi_send_crq(hostdata,
1218 0xC002000000000000LL, 0)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /* Now login */
1220 send_srp_login(hostdata);
1221 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001222 dev_err(hostdata->dev, "Unable to send init rsp. rc=%ld\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
1225 break;
1226 case 0x02: /* Initialization response */
Brian King6c0a60e2007-06-13 17:12:19 -05001227 dev_info(hostdata->dev, "partner initialization complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /* Now login */
1230 send_srp_login(hostdata);
1231 break;
1232 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001233 dev_err(hostdata->dev, "unknown crq message type: %d\n", crq->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235 return;
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001236 case 0xFF: /* Hypervisor telling us the connection is closed */
1237 scsi_block_requests(hostdata->host);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001238 atomic_set(&hostdata->request_limit, 0);
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001239 if (crq->format == 0x06) {
1240 /* We need to re-setup the interpartition connection */
Brian King6c0a60e2007-06-13 17:12:19 -05001241 dev_info(hostdata->dev, "Re-enabling adapter!\n");
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001242 purge_requests(hostdata, DID_REQUEUE);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001243 if ((ibmvscsi_reenable_crq_queue(&hostdata->queue,
Santiago Leon9c3121f2006-10-13 10:22:50 -05001244 hostdata)) ||
Dave C Boutchercefbda22006-06-12 21:22:51 -05001245 (ibmvscsi_send_crq(hostdata,
1246 0xC001000000000000LL, 0))) {
1247 atomic_set(&hostdata->request_limit,
1248 -1);
Brian King6c0a60e2007-06-13 17:12:19 -05001249 dev_err(hostdata->dev, "error after enable\n");
Dave C Boutchercefbda22006-06-12 21:22:51 -05001250 }
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001251 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001252 dev_err(hostdata->dev, "Virtual adapter failed rc %d!\n",
1253 crq->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001255 purge_requests(hostdata, DID_ERROR);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001256 if ((ibmvscsi_reset_crq_queue(&hostdata->queue,
1257 hostdata)) ||
1258 (ibmvscsi_send_crq(hostdata,
1259 0xC001000000000000LL, 0))) {
1260 atomic_set(&hostdata->request_limit,
1261 -1);
Brian King6c0a60e2007-06-13 17:12:19 -05001262 dev_err(hostdata->dev, "error after reset\n");
Dave C Boutchercefbda22006-06-12 21:22:51 -05001263 }
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001264 }
1265 scsi_unblock_requests(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return;
1267 case 0x80: /* real payload */
1268 break;
1269 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001270 dev_err(hostdata->dev, "got an invalid message type 0x%02x\n",
1271 crq->valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return;
1273 }
1274
1275 /* The only kind of payload CRQs we should get are responses to
1276 * things we send. Make sure this response is to something we
1277 * actually sent
1278 */
1279 if (!valid_event_struct(&hostdata->pool, evt_struct)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001280 dev_err(hostdata->dev, "returned correlation_token 0x%p is invalid!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 (void *)crq->IU_data_ptr);
1282 return;
1283 }
1284
1285 if (atomic_read(&evt_struct->free)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001286 dev_err(hostdata->dev, "received duplicate correlation_token 0x%p!\n",
1287 (void *)crq->IU_data_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return;
1289 }
1290
1291 if (crq->format == VIOSRP_SRP_FORMAT)
FUJITA Tomonorief265672006-03-26 03:57:14 +09001292 atomic_add(evt_struct->xfer_iu->srp.rsp.req_lim_delta,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 &hostdata->request_limit);
1294
Brian King3d0e91f2007-06-13 17:12:26 -05001295 del_timer(&evt_struct->timer);
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (evt_struct->done)
1298 evt_struct->done(evt_struct);
1299 else
Brian King6c0a60e2007-06-13 17:12:19 -05001300 dev_err(hostdata->dev, "returned done() is NULL; not running it!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 /*
1303 * Lock the host_lock before messing with these structures, since we
1304 * are running in a task context
1305 */
1306 spin_lock_irqsave(evt_struct->hostdata->host->host_lock, flags);
1307 list_del(&evt_struct->list);
1308 free_event_struct(&evt_struct->hostdata->pool, evt_struct);
1309 spin_unlock_irqrestore(evt_struct->hostdata->host->host_lock, flags);
1310}
1311
1312/**
1313 * ibmvscsi_get_host_config: Send the command to the server to get host
1314 * configuration data. The data is opaque to us.
1315 */
1316static int ibmvscsi_do_host_config(struct ibmvscsi_host_data *hostdata,
1317 unsigned char *buffer, int length)
1318{
1319 struct viosrp_host_config *host_config;
1320 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -05001321 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001322 dma_addr_t addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 int rc;
1324
1325 evt_struct = get_event_struct(&hostdata->pool);
1326 if (!evt_struct) {
Brian King6c0a60e2007-06-13 17:12:19 -05001327 dev_err(hostdata->dev, "couldn't allocate event for HOST_CONFIG!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return -1;
1329 }
1330
1331 init_event_struct(evt_struct,
1332 sync_completion,
1333 VIOSRP_MAD_FORMAT,
FUJITA Tomonori33874a02007-05-22 13:50:51 +09001334 init_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 host_config = &evt_struct->iu.mad.host_config;
1337
1338 /* Set up a lun reset SRP command */
1339 memset(host_config, 0x00, sizeof(*host_config));
1340 host_config->common.type = VIOSRP_HOST_CONFIG_TYPE;
1341 host_config->common.length = length;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001342 host_config->buffer = addr = dma_map_single(hostdata->dev, buffer,
1343 length,
1344 DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 if (dma_mapping_error(host_config->buffer)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001347 dev_err(hostdata->dev, "dma_mapping error getting host config\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 free_event_struct(&hostdata->pool, evt_struct);
1349 return -1;
1350 }
1351
1352 init_completion(&evt_struct->comp);
Brian King06f923c2007-06-13 17:12:33 -05001353 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King3d0e91f2007-06-13 17:12:26 -05001354 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, init_timeout * 2);
Brian King06f923c2007-06-13 17:12:33 -05001355 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001356 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 wait_for_completion(&evt_struct->comp);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001358 dma_unmap_single(hostdata->dev, addr, length, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 return rc;
1361}
1362
Robert Jennings0979c842007-03-29 12:30:40 -05001363/**
1364 * ibmvscsi_slave_configure: Set the "allow_restart" flag for each disk.
1365 * @sdev: struct scsi_device device to configure
1366 *
1367 * Enable allow_restart for a device if it is a disk. Adjust the
1368 * queue_depth here also as is required by the documentation for
1369 * struct scsi_host_template.
1370 */
1371static int ibmvscsi_slave_configure(struct scsi_device *sdev)
1372{
1373 struct Scsi_Host *shost = sdev->host;
1374 unsigned long lock_flags = 0;
1375
1376 spin_lock_irqsave(shost->host_lock, lock_flags);
1377 if (sdev->type == TYPE_DISK)
1378 sdev->allow_restart = 1;
1379 scsi_adjust_queue_depth(sdev, 0, shost->cmd_per_lun);
1380 spin_unlock_irqrestore(shost->host_lock, lock_flags);
1381 return 0;
1382}
1383
Brian King742d25b2007-05-29 15:46:14 -05001384/**
1385 * ibmvscsi_change_queue_depth - Change the device's queue depth
1386 * @sdev: scsi device struct
1387 * @qdepth: depth to set
1388 *
1389 * Return value:
1390 * actual depth set
1391 **/
1392static int ibmvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth)
1393{
1394 if (qdepth > IBMVSCSI_MAX_CMDS_PER_LUN)
1395 qdepth = IBMVSCSI_MAX_CMDS_PER_LUN;
1396
1397 scsi_adjust_queue_depth(sdev, 0, qdepth);
1398 return sdev->queue_depth;
1399}
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401/* ------------------------------------------------------------
1402 * sysfs attributes
1403 */
1404static ssize_t show_host_srp_version(struct class_device *class_dev, char *buf)
1405{
1406 struct Scsi_Host *shost = class_to_shost(class_dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001407 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 int len;
1409
1410 len = snprintf(buf, PAGE_SIZE, "%s\n",
1411 hostdata->madapter_info.srp_version);
1412 return len;
1413}
1414
1415static struct class_device_attribute ibmvscsi_host_srp_version = {
1416 .attr = {
1417 .name = "srp_version",
1418 .mode = S_IRUGO,
1419 },
1420 .show = show_host_srp_version,
1421};
1422
1423static ssize_t show_host_partition_name(struct class_device *class_dev,
1424 char *buf)
1425{
1426 struct Scsi_Host *shost = class_to_shost(class_dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001427 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 int len;
1429
1430 len = snprintf(buf, PAGE_SIZE, "%s\n",
1431 hostdata->madapter_info.partition_name);
1432 return len;
1433}
1434
1435static struct class_device_attribute ibmvscsi_host_partition_name = {
1436 .attr = {
1437 .name = "partition_name",
1438 .mode = S_IRUGO,
1439 },
1440 .show = show_host_partition_name,
1441};
1442
1443static ssize_t show_host_partition_number(struct class_device *class_dev,
1444 char *buf)
1445{
1446 struct Scsi_Host *shost = class_to_shost(class_dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001447 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 int len;
1449
1450 len = snprintf(buf, PAGE_SIZE, "%d\n",
1451 hostdata->madapter_info.partition_number);
1452 return len;
1453}
1454
1455static struct class_device_attribute ibmvscsi_host_partition_number = {
1456 .attr = {
1457 .name = "partition_number",
1458 .mode = S_IRUGO,
1459 },
1460 .show = show_host_partition_number,
1461};
1462
1463static ssize_t show_host_mad_version(struct class_device *class_dev, char *buf)
1464{
1465 struct Scsi_Host *shost = class_to_shost(class_dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001466 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 int len;
1468
1469 len = snprintf(buf, PAGE_SIZE, "%d\n",
1470 hostdata->madapter_info.mad_version);
1471 return len;
1472}
1473
1474static struct class_device_attribute ibmvscsi_host_mad_version = {
1475 .attr = {
1476 .name = "mad_version",
1477 .mode = S_IRUGO,
1478 },
1479 .show = show_host_mad_version,
1480};
1481
1482static ssize_t show_host_os_type(struct class_device *class_dev, char *buf)
1483{
1484 struct Scsi_Host *shost = class_to_shost(class_dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001485 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 int len;
1487
1488 len = snprintf(buf, PAGE_SIZE, "%d\n", hostdata->madapter_info.os_type);
1489 return len;
1490}
1491
1492static struct class_device_attribute ibmvscsi_host_os_type = {
1493 .attr = {
1494 .name = "os_type",
1495 .mode = S_IRUGO,
1496 },
1497 .show = show_host_os_type,
1498};
1499
1500static ssize_t show_host_config(struct class_device *class_dev, char *buf)
1501{
1502 struct Scsi_Host *shost = class_to_shost(class_dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001503 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 /* returns null-terminated host config data */
1506 if (ibmvscsi_do_host_config(hostdata, buf, PAGE_SIZE) == 0)
1507 return strlen(buf);
1508 else
1509 return 0;
1510}
1511
1512static struct class_device_attribute ibmvscsi_host_config = {
1513 .attr = {
1514 .name = "config",
1515 .mode = S_IRUGO,
1516 },
1517 .show = show_host_config,
1518};
1519
1520static struct class_device_attribute *ibmvscsi_attrs[] = {
1521 &ibmvscsi_host_srp_version,
1522 &ibmvscsi_host_partition_name,
1523 &ibmvscsi_host_partition_number,
1524 &ibmvscsi_host_mad_version,
1525 &ibmvscsi_host_os_type,
1526 &ibmvscsi_host_config,
1527 NULL
1528};
1529
1530/* ------------------------------------------------------------
1531 * SCSI driver registration
1532 */
1533static struct scsi_host_template driver_template = {
1534 .module = THIS_MODULE,
1535 .name = "IBM POWER Virtual SCSI Adapter " IBMVSCSI_VERSION,
1536 .proc_name = "ibmvscsi",
1537 .queuecommand = ibmvscsi_queuecommand,
1538 .eh_abort_handler = ibmvscsi_eh_abort_handler,
1539 .eh_device_reset_handler = ibmvscsi_eh_device_reset_handler,
Brian King3d0e91f2007-06-13 17:12:26 -05001540 .eh_host_reset_handler = ibmvscsi_eh_host_reset_handler,
Robert Jennings0979c842007-03-29 12:30:40 -05001541 .slave_configure = ibmvscsi_slave_configure,
Brian King742d25b2007-05-29 15:46:14 -05001542 .change_queue_depth = ibmvscsi_change_queue_depth,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 .cmd_per_lun = 16,
Robert Jenningsa897ff22007-03-28 12:45:46 -05001544 .can_queue = IBMVSCSI_MAX_REQUESTS_DEFAULT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 .this_id = -1,
James Bottomley4dddbc22005-09-06 17:11:54 -05001546 .sg_tablesize = SG_ALL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 .use_clustering = ENABLE_CLUSTERING,
1548 .shost_attrs = ibmvscsi_attrs,
1549};
1550
1551/**
1552 * Called by bus code for each adapter
1553 */
1554static int ibmvscsi_probe(struct vio_dev *vdev, const struct vio_device_id *id)
1555{
1556 struct ibmvscsi_host_data *hostdata;
1557 struct Scsi_Host *host;
1558 struct device *dev = &vdev->dev;
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001559 struct srp_rport_identifiers ids;
1560 struct srp_rport *rport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 unsigned long wait_switch = 0;
Dave C Boutchercefbda22006-06-12 21:22:51 -05001562 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 vdev->dev.driver_data = NULL;
1565
Robert Jenningsa897ff22007-03-28 12:45:46 -05001566 driver_template.can_queue = max_requests;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 host = scsi_host_alloc(&driver_template, sizeof(*hostdata));
1568 if (!host) {
Brian King6c0a60e2007-06-13 17:12:19 -05001569 dev_err(&vdev->dev, "couldn't allocate host data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 goto scsi_host_alloc_failed;
1571 }
1572
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001573 host->transportt = ibmvscsi_transport_template;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001574 hostdata = shost_priv(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 memset(hostdata, 0x00, sizeof(*hostdata));
1576 INIT_LIST_HEAD(&hostdata->sent);
1577 hostdata->host = host;
1578 hostdata->dev = dev;
1579 atomic_set(&hostdata->request_limit, -1);
1580 hostdata->host->max_sectors = 32 * 8; /* default max I/O 32 pages */
1581
Dave C Boutchercefbda22006-06-12 21:22:51 -05001582 rc = ibmvscsi_init_crq_queue(&hostdata->queue, hostdata, max_requests);
1583 if (rc != 0 && rc != H_RESOURCE) {
Brian King6c0a60e2007-06-13 17:12:19 -05001584 dev_err(&vdev->dev, "couldn't initialize crq. rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 goto init_crq_failed;
1586 }
1587 if (initialize_event_pool(&hostdata->pool, max_requests, hostdata) != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001588 dev_err(&vdev->dev, "couldn't initialize event pool\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 goto init_pool_failed;
1590 }
1591
1592 host->max_lun = 8;
1593 host->max_id = max_id;
1594 host->max_channel = max_channel;
1595
1596 if (scsi_add_host(hostdata->host, hostdata->dev))
1597 goto add_host_failed;
1598
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001599 /* we don't have a proper target_port_id so let's use the fake one */
1600 memcpy(ids.port_id, hostdata->madapter_info.partition_name,
1601 sizeof(ids.port_id));
1602 rport = srp_rport_add(host, &ids);
1603 if (IS_ERR(rport))
1604 goto add_srp_port_failed;
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 /* Try to send an initialization message. Note that this is allowed
1607 * to fail if the other end is not acive. In that case we don't
1608 * want to scan
1609 */
Dave C Boutchercefbda22006-06-12 21:22:51 -05001610 if (ibmvscsi_send_crq(hostdata, 0xC001000000000000LL, 0) == 0
1611 || rc == H_RESOURCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 /*
1613 * Wait around max init_timeout secs for the adapter to finish
1614 * initializing. When we are done initializing, we will have a
1615 * valid request_limit. We don't want Linux scanning before
1616 * we are ready.
1617 */
1618 for (wait_switch = jiffies + (init_timeout * HZ);
1619 time_before(jiffies, wait_switch) &&
1620 atomic_read(&hostdata->request_limit) < 2;) {
1621
1622 msleep(10);
1623 }
1624
1625 /* if we now have a valid request_limit, initiate a scan */
1626 if (atomic_read(&hostdata->request_limit) > 0)
1627 scsi_scan_host(host);
1628 }
1629
1630 vdev->dev.driver_data = hostdata;
1631 return 0;
1632
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001633 add_srp_port_failed:
1634 scsi_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 add_host_failed:
1636 release_event_pool(&hostdata->pool, hostdata);
1637 init_pool_failed:
1638 ibmvscsi_release_crq_queue(&hostdata->queue, hostdata, max_requests);
1639 init_crq_failed:
1640 scsi_host_put(host);
1641 scsi_host_alloc_failed:
1642 return -1;
1643}
1644
1645static int ibmvscsi_remove(struct vio_dev *vdev)
1646{
1647 struct ibmvscsi_host_data *hostdata = vdev->dev.driver_data;
1648 release_event_pool(&hostdata->pool, hostdata);
1649 ibmvscsi_release_crq_queue(&hostdata->queue, hostdata,
1650 max_requests);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001651
1652 srp_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 scsi_remove_host(hostdata->host);
1654 scsi_host_put(hostdata->host);
1655
1656 return 0;
1657}
1658
1659/**
1660 * ibmvscsi_device_table: Used by vio.c to match devices in the device tree we
1661 * support.
1662 */
1663static struct vio_device_id ibmvscsi_device_table[] __devinitdata = {
1664 {"vscsi", "IBM,v-scsi"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001665 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667MODULE_DEVICE_TABLE(vio, ibmvscsi_device_table);
Stephen Rothwell915124d2005-10-24 15:12:22 +10001668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669static struct vio_driver ibmvscsi_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 .id_table = ibmvscsi_device_table,
1671 .probe = ibmvscsi_probe,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001672 .remove = ibmvscsi_remove,
1673 .driver = {
1674 .name = "ibmvscsi",
Stephen Rothwell915124d2005-10-24 15:12:22 +10001675 .owner = THIS_MODULE,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677};
1678
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001679static struct srp_function_template ibmvscsi_transport_functions = {
1680};
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682int __init ibmvscsi_module_init(void)
1683{
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001684 int ret;
1685
1686 ibmvscsi_transport_template =
1687 srp_attach_transport(&ibmvscsi_transport_functions);
1688 if (!ibmvscsi_transport_template)
1689 return -ENOMEM;
1690
1691 ret = vio_register_driver(&ibmvscsi_driver);
1692 if (ret)
1693 srp_release_transport(ibmvscsi_transport_template);
1694 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
1697void __exit ibmvscsi_module_exit(void)
1698{
1699 vio_unregister_driver(&ibmvscsi_driver);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001700 srp_release_transport(ibmvscsi_transport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701}
1702
1703module_init(ibmvscsi_module_init);
1704module_exit(ibmvscsi_module_exit);