blob: 83b5a174164c2edf4e5fe9da3e5c0f515e3a3c30 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ------------------------------------------------------------
2 * ibmvscsi.c
3 * (C) Copyright IBM Corporation 1994, 2004
4 * Authors: Colin DeVilbiss (devilbis@us.ibm.com)
5 * Santiago Leon (santil@us.ibm.com)
6 * Dave Boutcher (sleddog@us.ibm.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * USA
22 *
23 * ------------------------------------------------------------
24 * Emulation of a SCSI host adapter for Virtual I/O devices
25 *
26 * This driver supports the SCSI adapter implemented by the IBM
27 * Power5 firmware. That SCSI adapter is not a physical adapter,
28 * but allows Linux SCSI peripheral drivers to directly
29 * access devices in another logical partition on the physical system.
30 *
31 * The virtual adapter(s) are present in the open firmware device
32 * tree just like real adapters.
33 *
34 * One of the capabilities provided on these systems is the ability
35 * to DMA between partitions. The architecture states that for VSCSI,
36 * the server side is allowed to DMA to and from the client. The client
37 * is never trusted to DMA to or from the server directly.
38 *
39 * Messages are sent between partitions on a "Command/Response Queue"
40 * (CRQ), which is just a buffer of 16 byte entries in the receiver's
41 * Senders cannot access the buffer directly, but send messages by
42 * making a hypervisor call and passing in the 16 bytes. The hypervisor
Bart Van Assche9b7dac02009-12-04 20:43:37 +010043 * puts the message in the next 16 byte space in round-robin fashion,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * turns on the high order bit of the message (the valid bit), and
45 * generates an interrupt to the receiver (if interrupts are turned on.)
46 * The receiver just turns off the valid bit when they have copied out
47 * the message.
48 *
49 * The VSCSI client builds a SCSI Remote Protocol (SRP) Information Unit
50 * (IU) (as defined in the T10 standard available at www.t10.org), gets
51 * a DMA address for the message, and sends it to the server as the
52 * payload of a CRQ message. The server DMAs the SRP IU and processes it,
53 * including doing any additional data transfers. When it is done, it
54 * DMAs the SRP response back to the same address as the request came from,
55 * and sends a CRQ message back to inform the client that the request has
56 * completed.
57 *
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090073#include <linux/slab.h>
Brian King126c5cc2009-06-08 16:19:08 -050074#include <linux/of.h>
Brian King64355b92010-02-21 10:37:57 -060075#include <linux/pm.h>
Brian King0f33ece2010-06-17 13:56:00 -050076#include <linux/kthread.h>
David Woodhoused3849d52007-09-22 08:29:36 +100077#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <asm/vio.h>
79#include <scsi/scsi.h>
80#include <scsi/scsi_cmnd.h>
81#include <scsi/scsi_host.h>
82#include <scsi/scsi_device.h>
FUJITA Tomonori4d680412007-06-27 16:32:50 +090083#include <scsi/scsi_transport_srp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include "ibmvscsi.h"
85
86/* The values below are somewhat arbitrary default values, but
87 * OS/400 will use 3 busses (disks, CDs, tapes, I think.)
88 * Note that there are 3 bits of channel value, 6 bits of id, and
89 * 5 bits of LUN.
90 */
91static int max_id = 64;
92static int max_channel = 3;
Robert Jenningse1a5ce52009-06-08 16:19:03 -050093static int init_timeout = 300;
94static int login_timeout = 60;
95static int info_timeout = 30;
96static int abort_timeout = 60;
97static int reset_timeout = 60;
Robert Jenningsa897ff22007-03-28 12:45:46 -050098static int max_requests = IBMVSCSI_MAX_REQUESTS_DEFAULT;
Brian King4f10aae2008-12-17 17:19:33 -060099static int max_events = IBMVSCSI_MAX_REQUESTS_DEFAULT + 2;
Robert Jenningsc1988e32009-06-08 16:19:07 -0500100static int fast_fail = 1;
Brian King126c5cc2009-06-08 16:19:08 -0500101static int client_reserve = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
FUJITA Tomonori4d680412007-06-27 16:32:50 +0900103static struct scsi_transport_template *ibmvscsi_transport_template;
104
Dave C Boutcher2b541f82006-01-19 13:34:44 -0600105#define IBMVSCSI_VERSION "1.5.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
David Woodhoused3849d52007-09-22 08:29:36 +1000107static struct ibmvscsi_ops *ibmvscsi_ops;
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109MODULE_DESCRIPTION("IBM Virtual SCSI");
110MODULE_AUTHOR("Dave Boutcher");
111MODULE_LICENSE("GPL");
112MODULE_VERSION(IBMVSCSI_VERSION);
113
114module_param_named(max_id, max_id, int, S_IRUGO | S_IWUSR);
115MODULE_PARM_DESC(max_id, "Largest ID value for each channel");
116module_param_named(max_channel, max_channel, int, S_IRUGO | S_IWUSR);
117MODULE_PARM_DESC(max_channel, "Largest channel value");
118module_param_named(init_timeout, init_timeout, int, S_IRUGO | S_IWUSR);
119MODULE_PARM_DESC(init_timeout, "Initialization timeout in seconds");
Brian King21465ed2008-12-08 17:01:47 -0600120module_param_named(max_requests, max_requests, int, S_IRUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121MODULE_PARM_DESC(max_requests, "Maximum requests for this adapter");
Robert Jenningsc1988e32009-06-08 16:19:07 -0500122module_param_named(fast_fail, fast_fail, int, S_IRUGO | S_IWUSR);
123MODULE_PARM_DESC(fast_fail, "Enable fast fail. [Default=1]");
Brian King126c5cc2009-06-08 16:19:08 -0500124module_param_named(client_reserve, client_reserve, int, S_IRUGO );
125MODULE_PARM_DESC(client_reserve, "Attempt client managed reserve/release");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/* ------------------------------------------------------------
128 * Routines for the event pool and event structs
129 */
130/**
131 * initialize_event_pool: - Allocates and initializes the event pool for a host
132 * @pool: event_pool to be initialized
133 * @size: Number of events in pool
134 * @hostdata: ibmvscsi_host_data who owns the event pool
135 *
136 * Returns zero on success.
137*/
138static int initialize_event_pool(struct event_pool *pool,
139 int size, struct ibmvscsi_host_data *hostdata)
140{
141 int i;
142
143 pool->size = size;
144 pool->next = 0;
FUJITA Tomonori4c021dd132006-04-07 19:10:03 +0900145 pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (!pool->events)
147 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 pool->iu_storage =
150 dma_alloc_coherent(hostdata->dev,
151 pool->size * sizeof(*pool->iu_storage),
152 &pool->iu_token, 0);
153 if (!pool->iu_storage) {
154 kfree(pool->events);
155 return -ENOMEM;
156 }
157
158 for (i = 0; i < pool->size; ++i) {
159 struct srp_event_struct *evt = &pool->events[i];
160 memset(&evt->crq, 0x00, sizeof(evt->crq));
161 atomic_set(&evt->free, 1);
162 evt->crq.valid = 0x80;
163 evt->crq.IU_length = sizeof(*evt->xfer_iu);
164 evt->crq.IU_data_ptr = pool->iu_token +
165 sizeof(*evt->xfer_iu) * i;
166 evt->xfer_iu = pool->iu_storage + i;
167 evt->hostdata = hostdata;
James Bottomley4dddbc22005-09-06 17:11:54 -0500168 evt->ext_list = NULL;
169 evt->ext_list_token = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171
172 return 0;
173}
174
175/**
176 * release_event_pool: - Frees memory of an event pool of a host
177 * @pool: event_pool to be released
178 * @hostdata: ibmvscsi_host_data who owns the even pool
179 *
180 * Returns zero on success.
181*/
182static void release_event_pool(struct event_pool *pool,
183 struct ibmvscsi_host_data *hostdata)
184{
185 int i, in_use = 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500186 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (atomic_read(&pool->events[i].free) != 1)
188 ++in_use;
James Bottomley4dddbc22005-09-06 17:11:54 -0500189 if (pool->events[i].ext_list) {
190 dma_free_coherent(hostdata->dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900191 SG_ALL * sizeof(struct srp_direct_buf),
James Bottomley4dddbc22005-09-06 17:11:54 -0500192 pool->events[i].ext_list,
193 pool->events[i].ext_list_token);
194 }
195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (in_use)
Brian King6c0a60e2007-06-13 17:12:19 -0500197 dev_warn(hostdata->dev, "releasing event pool with %d "
198 "events still in use?\n", in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 kfree(pool->events);
200 dma_free_coherent(hostdata->dev,
201 pool->size * sizeof(*pool->iu_storage),
202 pool->iu_storage, pool->iu_token);
203}
204
205/**
206 * valid_event_struct: - Determines if event is valid.
207 * @pool: event_pool that contains the event
208 * @evt: srp_event_struct to be checked for validity
209 *
210 * Returns zero if event is invalid, one otherwise.
211*/
212static int valid_event_struct(struct event_pool *pool,
213 struct srp_event_struct *evt)
214{
215 int index = evt - pool->events;
216 if (index < 0 || index >= pool->size) /* outside of bounds */
217 return 0;
218 if (evt != pool->events + index) /* unaligned */
219 return 0;
220 return 1;
221}
222
223/**
224 * ibmvscsi_free-event_struct: - Changes status of event to "free"
225 * @pool: event_pool that contains the event
226 * @evt: srp_event_struct to be modified
227 *
228*/
229static void free_event_struct(struct event_pool *pool,
230 struct srp_event_struct *evt)
231{
232 if (!valid_event_struct(pool, evt)) {
Brian King6c0a60e2007-06-13 17:12:19 -0500233 dev_err(evt->hostdata->dev, "Freeing invalid event_struct %p "
234 "(not in pool %p)\n", evt, pool->events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return;
236 }
237 if (atomic_inc_return(&evt->free) != 1) {
Brian King6c0a60e2007-06-13 17:12:19 -0500238 dev_err(evt->hostdata->dev, "Freeing event_struct %p "
239 "which is not in use!\n", evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return;
241 }
242}
243
244/**
245 * get_evt_struct: - Gets the next free event in pool
246 * @pool: event_pool that contains the events to be searched
247 *
248 * Returns the next event in "free" state, and NULL if none are free.
249 * Note that no synchronization is done here, we assume the host_lock
250 * will syncrhonze things.
251*/
252static struct srp_event_struct *get_event_struct(struct event_pool *pool)
253{
254 int i;
255 int poolsize = pool->size;
256 int offset = pool->next;
257
258 for (i = 0; i < poolsize; i++) {
259 offset = (offset + 1) % poolsize;
260 if (!atomic_dec_if_positive(&pool->events[offset].free)) {
261 pool->next = offset;
262 return &pool->events[offset];
263 }
264 }
265
266 printk(KERN_ERR "ibmvscsi: found no event struct in pool!\n");
267 return NULL;
268}
269
270/**
271 * init_event_struct: Initialize fields in an event struct that are always
272 * required.
273 * @evt: The event
274 * @done: Routine to call when the event is responded to
275 * @format: SRP or MAD format
276 * @timeout: timeout value set in the CRQ
277 */
278static void init_event_struct(struct srp_event_struct *evt_struct,
279 void (*done) (struct srp_event_struct *),
280 u8 format,
281 int timeout)
282{
283 evt_struct->cmnd = NULL;
284 evt_struct->cmnd_done = NULL;
285 evt_struct->sync_srp = NULL;
286 evt_struct->crq.format = format;
287 evt_struct->crq.timeout = timeout;
288 evt_struct->done = done;
289}
290
291/* ------------------------------------------------------------
292 * Routines for receiving SCSI responses from the hosting partition
293 */
294
295/**
296 * set_srp_direction: Set the fields in the srp related to data
297 * direction and number of buffers based on the direction in
298 * the scsi_cmnd and the number of buffers
299 */
300static void set_srp_direction(struct scsi_cmnd *cmd,
301 struct srp_cmd *srp_cmd,
302 int numbuf)
303{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900304 u8 fmt;
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (numbuf == 0)
307 return;
308
FUJITA Tomonorief265672006-03-26 03:57:14 +0900309 if (numbuf == 1)
310 fmt = SRP_DATA_DESC_DIRECT;
311 else {
312 fmt = SRP_DATA_DESC_INDIRECT;
313 numbuf = min(numbuf, MAX_INDIRECT_BUFS);
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (cmd->sc_data_direction == DMA_TO_DEVICE)
FUJITA Tomonorief265672006-03-26 03:57:14 +0900316 srp_cmd->data_out_desc_cnt = numbuf;
317 else
318 srp_cmd->data_in_desc_cnt = numbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
FUJITA Tomonorief265672006-03-26 03:57:14 +0900320
321 if (cmd->sc_data_direction == DMA_TO_DEVICE)
322 srp_cmd->buf_fmt = fmt << 4;
323 else
324 srp_cmd->buf_fmt = fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327/**
328 * unmap_cmd_data: - Unmap data pointed in srp_cmd based on the format
329 * @cmd: srp_cmd whose additional_data member will be unmapped
330 * @dev: device for which the memory is mapped
331 *
332*/
James Bottomley4dddbc22005-09-06 17:11:54 -0500333static void unmap_cmd_data(struct srp_cmd *cmd,
334 struct srp_event_struct *evt_struct,
335 struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900337 u8 out_fmt, in_fmt;
338
339 out_fmt = cmd->buf_fmt >> 4;
340 in_fmt = cmd->buf_fmt & ((1U << 4) - 1);
341
342 if (out_fmt == SRP_NO_DATA_DESC && in_fmt == SRP_NO_DATA_DESC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return;
James Bottomley4dddbc22005-09-06 17:11:54 -0500344
FUJITA Tomonoria71fa1f2010-04-02 15:50:24 +0900345 if (evt_struct->cmnd)
346 scsi_dma_unmap(evt_struct->cmnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900349static int map_sg_list(struct scsi_cmnd *cmd, int nseg,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900350 struct srp_direct_buf *md)
James Bottomley4dddbc22005-09-06 17:11:54 -0500351{
352 int i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900353 struct scatterlist *sg;
James Bottomley4dddbc22005-09-06 17:11:54 -0500354 u64 total_length = 0;
355
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900356 scsi_for_each_sg(cmd, sg, nseg, i) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900357 struct srp_direct_buf *descr = md + i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900358 descr->va = sg_dma_address(sg);
359 descr->len = sg_dma_len(sg);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900360 descr->key = 0;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900361 total_length += sg_dma_len(sg);
James Bottomley4dddbc22005-09-06 17:11:54 -0500362 }
363 return total_length;
364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366/**
367 * map_sg_data: - Maps dma for a scatterlist and initializes decriptor fields
368 * @cmd: Scsi_Cmnd with the scatterlist
369 * @srp_cmd: srp_cmd that contains the memory descriptor
370 * @dev: device for which to map dma memory
371 *
372 * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
373 * Returns 1 on success.
374*/
375static int map_sg_data(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500376 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct srp_cmd *srp_cmd, struct device *dev)
378{
379
James Bottomley4dddbc22005-09-06 17:11:54 -0500380 int sg_mapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 u64 total_length = 0;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900382 struct srp_direct_buf *data =
383 (struct srp_direct_buf *) srp_cmd->add_data;
384 struct srp_indirect_buf *indirect =
385 (struct srp_indirect_buf *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900387 sg_mapped = scsi_dma_map(cmd);
388 if (!sg_mapped)
389 return 1;
390 else if (sg_mapped < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return 0;
392
393 set_srp_direction(cmd, srp_cmd, sg_mapped);
394
395 /* special case; we can use a single direct descriptor */
396 if (sg_mapped == 1) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900397 map_sg_list(cmd, sg_mapped, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return 1;
399 }
400
FUJITA Tomonorief265672006-03-26 03:57:14 +0900401 indirect->table_desc.va = 0;
402 indirect->table_desc.len = sg_mapped * sizeof(struct srp_direct_buf);
403 indirect->table_desc.key = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
James Bottomley4dddbc22005-09-06 17:11:54 -0500405 if (sg_mapped <= MAX_INDIRECT_BUFS) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900406 total_length = map_sg_list(cmd, sg_mapped,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900407 &indirect->desc_list[0]);
408 indirect->len = total_length;
James Bottomley4dddbc22005-09-06 17:11:54 -0500409 return 1;
410 }
411
412 /* get indirect table */
413 if (!evt_struct->ext_list) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900414 evt_struct->ext_list = (struct srp_direct_buf *)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900415 dma_alloc_coherent(dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900416 SG_ALL * sizeof(struct srp_direct_buf),
417 &evt_struct->ext_list_token, 0);
James Bottomley4dddbc22005-09-06 17:11:54 -0500418 if (!evt_struct->ext_list) {
Robert Jennings7912a0a2008-07-24 04:35:27 +1000419 if (!firmware_has_feature(FW_FEATURE_CMO))
420 sdev_printk(KERN_ERR, cmd->device,
421 "Can't allocate memory "
422 "for indirect table\n");
Robert Jenningse637d552009-01-22 13:40:09 -0600423 scsi_dma_unmap(cmd);
James Bottomley4dddbc22005-09-06 17:11:54 -0500424 return 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500425 }
426 }
427
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900428 total_length = map_sg_list(cmd, sg_mapped, evt_struct->ext_list);
James Bottomley4dddbc22005-09-06 17:11:54 -0500429
FUJITA Tomonorief265672006-03-26 03:57:14 +0900430 indirect->len = total_length;
431 indirect->table_desc.va = evt_struct->ext_list_token;
432 indirect->table_desc.len = sg_mapped * sizeof(indirect->desc_list[0]);
433 memcpy(indirect->desc_list, evt_struct->ext_list,
434 MAX_INDIRECT_BUFS * sizeof(struct srp_direct_buf));
James Bottomley4dddbc22005-09-06 17:11:54 -0500435 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
438/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 * map_data_for_srp_cmd: - Calls functions to map data for srp cmds
440 * @cmd: struct scsi_cmnd with the memory to be mapped
441 * @srp_cmd: srp_cmd that contains the memory descriptor
442 * @dev: dma device for which to map dma memory
443 *
444 * Called by scsi_cmd_to_srp_cmd() when converting scsi cmds to srp cmds
445 * Returns 1 on success.
446*/
447static int map_data_for_srp_cmd(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500448 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct srp_cmd *srp_cmd, struct device *dev)
450{
451 switch (cmd->sc_data_direction) {
452 case DMA_FROM_DEVICE:
453 case DMA_TO_DEVICE:
454 break;
455 case DMA_NONE:
456 return 1;
457 case DMA_BIDIRECTIONAL:
Brian King6c0a60e2007-06-13 17:12:19 -0500458 sdev_printk(KERN_ERR, cmd->device,
459 "Can't map DMA_BIDIRECTIONAL to read/write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return 0;
461 default:
Brian King6c0a60e2007-06-13 17:12:19 -0500462 sdev_printk(KERN_ERR, cmd->device,
463 "Unknown data direction 0x%02x; can't map!\n",
464 cmd->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return 0;
466 }
467
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900468 return map_sg_data(cmd, evt_struct, srp_cmd, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Brian King3d0e91f2007-06-13 17:12:26 -0500471/**
472 * purge_requests: Our virtual adapter just shut down. purge any sent requests
473 * @hostdata: the adapter
474 */
475static void purge_requests(struct ibmvscsi_host_data *hostdata, int error_code)
476{
Brian King1117ef82010-06-17 13:56:02 -0500477 struct srp_event_struct *evt;
Brian King3d0e91f2007-06-13 17:12:26 -0500478 unsigned long flags;
479
480 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King1117ef82010-06-17 13:56:02 -0500481 while (!list_empty(&hostdata->sent)) {
482 evt = list_first_entry(&hostdata->sent, struct srp_event_struct, list);
483 list_del(&evt->list);
484 del_timer(&evt->timer);
485
486 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
487 if (evt->cmnd) {
488 evt->cmnd->result = (error_code << 16);
489 unmap_cmd_data(&evt->iu.srp.cmd, evt,
490 evt->hostdata->dev);
491 if (evt->cmnd_done)
492 evt->cmnd_done(evt->cmnd);
493 } else if (evt->done)
494 evt->done(evt);
495 free_event_struct(&evt->hostdata->pool, evt);
496 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King3d0e91f2007-06-13 17:12:26 -0500497 }
498 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
499}
500
501/**
502 * ibmvscsi_reset_host - Reset the connection to the server
503 * @hostdata: struct ibmvscsi_host_data to reset
504*/
505static void ibmvscsi_reset_host(struct ibmvscsi_host_data *hostdata)
506{
507 scsi_block_requests(hostdata->host);
508 atomic_set(&hostdata->request_limit, 0);
509
510 purge_requests(hostdata, DID_ERROR);
Brian King0f33ece2010-06-17 13:56:00 -0500511 hostdata->reset_crq = 1;
512 wake_up(&hostdata->work_wait_q);
Brian King3d0e91f2007-06-13 17:12:26 -0500513}
514
515/**
516 * ibmvscsi_timeout - Internal command timeout handler
517 * @evt_struct: struct srp_event_struct that timed out
518 *
519 * Called when an internally generated command times out
520*/
521static void ibmvscsi_timeout(struct srp_event_struct *evt_struct)
522{
523 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
524
525 dev_err(hostdata->dev, "Command timed out (%x). Resetting connection\n",
526 evt_struct->iu.srp.cmd.opcode);
527
528 ibmvscsi_reset_host(hostdata);
529}
530
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/* ------------------------------------------------------------
533 * Routines for sending and receiving SRPs
534 */
535/**
536 * ibmvscsi_send_srp_event: - Transforms event to u64 array and calls send_crq()
537 * @evt_struct: evt_struct to be sent
538 * @hostdata: ibmvscsi_host_data of host
Brian King3d0e91f2007-06-13 17:12:26 -0500539 * @timeout: timeout in seconds - 0 means do not time command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 *
541 * Returns the value returned from ibmvscsi_send_crq(). (Zero for success)
542 * Note that this routine assumes that host_lock is held for synchronization
543*/
544static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct,
Brian King3d0e91f2007-06-13 17:12:26 -0500545 struct ibmvscsi_host_data *hostdata,
546 unsigned long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 u64 *crq_as_u64 = (u64 *) &evt_struct->crq;
Robert Jennings3c887e82007-10-30 11:37:07 -0500549 int request_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 int rc;
551
Robert Jenningsa897ff22007-03-28 12:45:46 -0500552 /* If we have exhausted our request limit, just fail this request,
553 * unless it is for a reset or abort.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 * Note that there are rare cases involving driver generated requests
555 * (such as task management requests) that the mid layer may think we
556 * can handle more requests (can_queue) when we actually can't
557 */
Dave C Boutchercefbda22006-06-12 21:22:51 -0500558 if (evt_struct->crq.format == VIOSRP_SRP_FORMAT) {
559 request_status =
560 atomic_dec_if_positive(&hostdata->request_limit);
561 /* If request limit was -1 when we started, it is now even
562 * less than that
563 */
564 if (request_status < -1)
565 goto send_error;
Robert Jenningsa897ff22007-03-28 12:45:46 -0500566 /* Otherwise, we may have run out of requests. */
Robert Jennings3c887e82007-10-30 11:37:07 -0500567 /* If request limit was 0 when we started the adapter is in the
568 * process of performing a login with the server adapter, or
569 * we may have run out of requests.
570 */
571 else if (request_status == -1 &&
572 evt_struct->iu.srp.login_req.opcode != SRP_LOGIN_REQ)
573 goto send_busy;
Robert Jenningsa897ff22007-03-28 12:45:46 -0500574 /* 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 =
David Woodhoused3849d52007-09-22 08:29:36 +1000618 ibmvscsi_ops->send_crq(hostdata, crq_as_u64[0], crq_as_u64[1])) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 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
Robert Jennings860784c2007-11-12 09:00:23 -0600622 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
623 * Firmware will send a CRQ with a transport event (0xFF) to
624 * tell this client what has happened to the transport. This
625 * will be handled in ibmvscsi_handle_crq()
626 */
627 if (rc == H_CLOSED) {
628 dev_warn(hostdata->dev, "send warning. "
629 "Receive queue closed, will retry.\n");
630 goto send_busy;
631 }
Brian King6c0a60e2007-06-13 17:12:19 -0500632 dev_err(hostdata->dev, "send error %d\n", rc);
Robert Jenningsa897ff22007-03-28 12:45:46 -0500633 atomic_inc(&hostdata->request_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 goto send_error;
635 }
636
637 return 0;
638
Dave C Boutchercefbda22006-06-12 21:22:51 -0500639 send_busy:
James Bottomley4dddbc22005-09-06 17:11:54 -0500640 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 free_event_struct(&hostdata->pool, evt_struct);
Robert Jennings3c887e82007-10-30 11:37:07 -0500643 if (request_status != -1)
644 atomic_inc(&hostdata->request_limit);
Robert Jenningsa897ff22007-03-28 12:45:46 -0500645 return SCSI_MLQUEUE_HOST_BUSY;
Dave C Boutchercefbda22006-06-12 21:22:51 -0500646
647 send_error:
648 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
649
650 if (evt_struct->cmnd != NULL) {
651 evt_struct->cmnd->result = DID_ERROR << 16;
652 evt_struct->cmnd_done(evt_struct->cmnd);
653 } else if (evt_struct->done)
654 evt_struct->done(evt_struct);
655
656 free_event_struct(&hostdata->pool, evt_struct);
657 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660/**
661 * handle_cmd_rsp: - Handle responses from commands
662 * @evt_struct: srp_event_struct to be handled
663 *
664 * Used as a callback by when sending scsi cmds.
665 * Gets called by ibmvscsi_handle_crq()
666*/
667static void handle_cmd_rsp(struct srp_event_struct *evt_struct)
668{
669 struct srp_rsp *rsp = &evt_struct->xfer_iu->srp.rsp;
670 struct scsi_cmnd *cmnd = evt_struct->cmnd;
671
FUJITA Tomonorief265672006-03-26 03:57:14 +0900672 if (unlikely(rsp->opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -0500674 dev_warn(evt_struct->hostdata->dev,
675 "bad SRP RSP type %d\n", rsp->opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677
678 if (cmnd) {
Brian Kingc3a3b552008-04-25 16:58:29 -0500679 cmnd->result |= rsp->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (((cmnd->result >> 1) & 0x1f) == CHECK_CONDITION)
681 memcpy(cmnd->sense_buffer,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900682 rsp->data,
683 rsp->sense_data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 unmap_cmd_data(&evt_struct->iu.srp.cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500685 evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 evt_struct->hostdata->dev);
687
FUJITA Tomonorief265672006-03-26 03:57:14 +0900688 if (rsp->flags & SRP_RSP_FLAG_DOOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900689 scsi_set_resid(cmnd, rsp->data_out_res_cnt);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900690 else if (rsp->flags & SRP_RSP_FLAG_DIOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900691 scsi_set_resid(cmnd, rsp->data_in_res_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693
694 if (evt_struct->cmnd_done)
695 evt_struct->cmnd_done(cmnd);
696}
697
698/**
699 * lun_from_dev: - Returns the lun of the scsi device
700 * @dev: struct scsi_device
701 *
702*/
703static inline u16 lun_from_dev(struct scsi_device *dev)
704{
705 return (0x2 << 14) | (dev->id << 8) | (dev->channel << 5) | dev->lun;
706}
707
708/**
709 * ibmvscsi_queue: - The queuecommand function of the scsi template
710 * @cmd: struct scsi_cmnd to be executed
711 * @done: Callback function to be called when cmd is completed
712*/
713static int ibmvscsi_queuecommand(struct scsi_cmnd *cmnd,
714 void (*done) (struct scsi_cmnd *))
715{
716 struct srp_cmd *srp_cmd;
717 struct srp_event_struct *evt_struct;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900718 struct srp_indirect_buf *indirect;
FUJITA Tomonori7603e022007-07-23 09:28:40 +0900719 struct ibmvscsi_host_data *hostdata = shost_priv(cmnd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 u16 lun = lun_from_dev(cmnd->device);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900721 u8 out_fmt, in_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Brian Kingc3a3b552008-04-25 16:58:29 -0500723 cmnd->result = (DID_OK << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 evt_struct = get_event_struct(&hostdata->pool);
725 if (!evt_struct)
726 return SCSI_MLQUEUE_HOST_BUSY;
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /* Set up the actual SRP IU */
729 srp_cmd = &evt_struct->iu.srp.cmd;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900730 memset(srp_cmd, 0x00, SRP_MAX_IU_LEN);
731 srp_cmd->opcode = SRP_CMD;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300732 memcpy(srp_cmd->cdb, cmnd->cmnd, sizeof(srp_cmd->cdb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 srp_cmd->lun = ((u64) lun) << 48;
734
James Bottomley4dddbc22005-09-06 17:11:54 -0500735 if (!map_data_for_srp_cmd(cmnd, evt_struct, srp_cmd, hostdata->dev)) {
Robert Jennings7912a0a2008-07-24 04:35:27 +1000736 if (!firmware_has_feature(FW_FEATURE_CMO))
737 sdev_printk(KERN_ERR, cmnd->device,
738 "couldn't convert cmd to srp_cmd\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 free_event_struct(&hostdata->pool, evt_struct);
740 return SCSI_MLQUEUE_HOST_BUSY;
741 }
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 init_event_struct(evt_struct,
744 handle_cmd_rsp,
745 VIOSRP_SRP_FORMAT,
Jens Axboe242f9dc2008-09-14 05:55:09 -0700746 cmnd->request->timeout/HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 evt_struct->cmnd = cmnd;
749 evt_struct->cmnd_done = done;
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 /* Fix up dma address of the buffer itself */
FUJITA Tomonorief265672006-03-26 03:57:14 +0900752 indirect = (struct srp_indirect_buf *) srp_cmd->add_data;
753 out_fmt = srp_cmd->buf_fmt >> 4;
754 in_fmt = srp_cmd->buf_fmt & ((1U << 4) - 1);
755 if ((in_fmt == SRP_DATA_DESC_INDIRECT ||
756 out_fmt == SRP_DATA_DESC_INDIRECT) &&
757 indirect->table_desc.va == 0) {
758 indirect->table_desc.va = evt_struct->crq.IU_data_ptr +
759 offsetof(struct srp_cmd, add_data) +
760 offsetof(struct srp_indirect_buf, desc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762
Brian King3d0e91f2007-06-13 17:12:26 -0500763 return ibmvscsi_send_srp_event(evt_struct, hostdata, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766/* ------------------------------------------------------------
767 * Routines for driver initialization
768 */
Brian King3507e132009-06-08 16:19:04 -0500769
770/**
Brian King126c5cc2009-06-08 16:19:08 -0500771 * map_persist_bufs: - Pre-map persistent data for adapter logins
772 * @hostdata: ibmvscsi_host_data of host
773 *
774 * Map the capabilities and adapter info DMA buffers to avoid runtime failures.
775 * Return 1 on error, 0 on success.
776 */
777static int map_persist_bufs(struct ibmvscsi_host_data *hostdata)
778{
779
780 hostdata->caps_addr = dma_map_single(hostdata->dev, &hostdata->caps,
781 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
782
783 if (dma_mapping_error(hostdata->dev, hostdata->caps_addr)) {
784 dev_err(hostdata->dev, "Unable to map capabilities buffer!\n");
785 return 1;
786 }
787
788 hostdata->adapter_info_addr = dma_map_single(hostdata->dev,
789 &hostdata->madapter_info,
790 sizeof(hostdata->madapter_info),
791 DMA_BIDIRECTIONAL);
792 if (dma_mapping_error(hostdata->dev, hostdata->adapter_info_addr)) {
793 dev_err(hostdata->dev, "Unable to map adapter info buffer!\n");
794 dma_unmap_single(hostdata->dev, hostdata->caps_addr,
795 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
796 return 1;
797 }
798
799 return 0;
800}
801
802/**
803 * unmap_persist_bufs: - Unmap persistent data needed for adapter logins
804 * @hostdata: ibmvscsi_host_data of host
805 *
806 * Unmap the capabilities and adapter info DMA buffers
807 */
808static void unmap_persist_bufs(struct ibmvscsi_host_data *hostdata)
809{
810 dma_unmap_single(hostdata->dev, hostdata->caps_addr,
811 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
812
813 dma_unmap_single(hostdata->dev, hostdata->adapter_info_addr,
814 sizeof(hostdata->madapter_info), DMA_BIDIRECTIONAL);
815}
816
817/**
Brian King3507e132009-06-08 16:19:04 -0500818 * login_rsp: - Handle response to SRP login request
819 * @evt_struct: srp_event_struct with the response
820 *
821 * Used as a "done" callback by when sending srp_login. Gets called
822 * by ibmvscsi_handle_crq()
823*/
824static void login_rsp(struct srp_event_struct *evt_struct)
825{
826 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
827 switch (evt_struct->xfer_iu->srp.login_rsp.opcode) {
828 case SRP_LOGIN_RSP: /* it worked! */
829 break;
830 case SRP_LOGIN_REJ: /* refused! */
831 dev_info(hostdata->dev, "SRP_LOGIN_REJ reason %u\n",
832 evt_struct->xfer_iu->srp.login_rej.reason);
833 /* Login failed. */
834 atomic_set(&hostdata->request_limit, -1);
835 return;
836 default:
837 dev_err(hostdata->dev, "Invalid login response typecode 0x%02x!\n",
838 evt_struct->xfer_iu->srp.login_rsp.opcode);
839 /* Login failed. */
840 atomic_set(&hostdata->request_limit, -1);
841 return;
842 }
843
844 dev_info(hostdata->dev, "SRP_LOGIN succeeded\n");
Brian King126c5cc2009-06-08 16:19:08 -0500845 hostdata->client_migrated = 0;
Brian King3507e132009-06-08 16:19:04 -0500846
847 /* Now we know what the real request-limit is.
848 * This value is set rather than added to request_limit because
849 * request_limit could have been set to -1 by this client.
850 */
851 atomic_set(&hostdata->request_limit,
852 evt_struct->xfer_iu->srp.login_rsp.req_lim_delta);
853
854 /* If we had any pending I/Os, kick them */
855 scsi_unblock_requests(hostdata->host);
856}
857
858/**
859 * send_srp_login: - Sends the srp login
860 * @hostdata: ibmvscsi_host_data of host
861 *
862 * Returns zero if successful.
863*/
864static int send_srp_login(struct ibmvscsi_host_data *hostdata)
865{
866 int rc;
867 unsigned long flags;
868 struct srp_login_req *login;
869 struct srp_event_struct *evt_struct = get_event_struct(&hostdata->pool);
870
871 BUG_ON(!evt_struct);
872 init_event_struct(evt_struct, login_rsp,
873 VIOSRP_SRP_FORMAT, login_timeout);
874
875 login = &evt_struct->iu.srp.login_req;
876 memset(login, 0, sizeof(*login));
877 login->opcode = SRP_LOGIN_REQ;
878 login->req_it_iu_len = sizeof(union srp_iu);
879 login->req_buf_fmt = SRP_BUF_FORMAT_DIRECT | SRP_BUF_FORMAT_INDIRECT;
880
881 spin_lock_irqsave(hostdata->host->host_lock, flags);
882 /* Start out with a request limit of 0, since this is negotiated in
883 * the login request we are just sending and login requests always
884 * get sent by the driver regardless of request_limit.
885 */
886 atomic_set(&hostdata->request_limit, 0);
887
888 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, login_timeout * 2);
889 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
890 dev_info(hostdata->dev, "sent SRP login\n");
891 return rc;
892};
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/**
Brian King126c5cc2009-06-08 16:19:08 -0500895 * capabilities_rsp: - Handle response to MAD adapter capabilities request
896 * @evt_struct: srp_event_struct with the response
897 *
898 * Used as a "done" callback by when sending adapter_info.
899 */
900static void capabilities_rsp(struct srp_event_struct *evt_struct)
901{
902 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
903
904 if (evt_struct->xfer_iu->mad.capabilities.common.status) {
905 dev_err(hostdata->dev, "error 0x%X getting capabilities info\n",
906 evt_struct->xfer_iu->mad.capabilities.common.status);
907 } else {
908 if (hostdata->caps.migration.common.server_support != SERVER_SUPPORTS_CAP)
909 dev_info(hostdata->dev, "Partition migration not supported\n");
910
911 if (client_reserve) {
912 if (hostdata->caps.reserve.common.server_support ==
913 SERVER_SUPPORTS_CAP)
914 dev_info(hostdata->dev, "Client reserve enabled\n");
915 else
916 dev_info(hostdata->dev, "Client reserve not supported\n");
917 }
918 }
919
920 send_srp_login(hostdata);
921}
922
923/**
924 * send_mad_capabilities: - Sends the mad capabilities request
925 * and stores the result so it can be retrieved with
926 * @hostdata: ibmvscsi_host_data of host
927 */
928static void send_mad_capabilities(struct ibmvscsi_host_data *hostdata)
929{
930 struct viosrp_capabilities *req;
931 struct srp_event_struct *evt_struct;
932 unsigned long flags;
Grant Likely61c7a082010-04-13 16:12:29 -0700933 struct device_node *of_node = hostdata->dev->of_node;
Brian King126c5cc2009-06-08 16:19:08 -0500934 const char *location;
935
936 evt_struct = get_event_struct(&hostdata->pool);
937 BUG_ON(!evt_struct);
938
939 init_event_struct(evt_struct, capabilities_rsp,
940 VIOSRP_MAD_FORMAT, info_timeout);
941
942 req = &evt_struct->iu.mad.capabilities;
943 memset(req, 0, sizeof(*req));
944
945 hostdata->caps.flags = CAP_LIST_SUPPORTED;
946 if (hostdata->client_migrated)
947 hostdata->caps.flags |= CLIENT_MIGRATED;
948
949 strncpy(hostdata->caps.name, dev_name(&hostdata->host->shost_gendev),
950 sizeof(hostdata->caps.name));
951 hostdata->caps.name[sizeof(hostdata->caps.name) - 1] = '\0';
952
953 location = of_get_property(of_node, "ibm,loc-code", NULL);
954 location = location ? location : dev_name(hostdata->dev);
955 strncpy(hostdata->caps.loc, location, sizeof(hostdata->caps.loc));
956 hostdata->caps.loc[sizeof(hostdata->caps.loc) - 1] = '\0';
957
958 req->common.type = VIOSRP_CAPABILITIES_TYPE;
959 req->buffer = hostdata->caps_addr;
960
961 hostdata->caps.migration.common.cap_type = MIGRATION_CAPABILITIES;
962 hostdata->caps.migration.common.length = sizeof(hostdata->caps.migration);
963 hostdata->caps.migration.common.server_support = SERVER_SUPPORTS_CAP;
964 hostdata->caps.migration.ecl = 1;
965
966 if (client_reserve) {
967 hostdata->caps.reserve.common.cap_type = RESERVATION_CAPABILITIES;
968 hostdata->caps.reserve.common.length = sizeof(hostdata->caps.reserve);
969 hostdata->caps.reserve.common.server_support = SERVER_SUPPORTS_CAP;
970 hostdata->caps.reserve.type = CLIENT_RESERVE_SCSI_2;
971 req->common.length = sizeof(hostdata->caps);
972 } else
973 req->common.length = sizeof(hostdata->caps) - sizeof(hostdata->caps.reserve);
974
975 spin_lock_irqsave(hostdata->host->host_lock, flags);
976 if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
977 dev_err(hostdata->dev, "couldn't send CAPABILITIES_REQ!\n");
978 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
979};
980
981/**
Robert Jenningsc1988e32009-06-08 16:19:07 -0500982 * fast_fail_rsp: - Handle response to MAD enable fast fail
983 * @evt_struct: srp_event_struct with the response
984 *
985 * Used as a "done" callback by when sending enable fast fail. Gets called
986 * by ibmvscsi_handle_crq()
987 */
988static void fast_fail_rsp(struct srp_event_struct *evt_struct)
989{
990 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
991 u8 status = evt_struct->xfer_iu->mad.fast_fail.common.status;
992
993 if (status == VIOSRP_MAD_NOT_SUPPORTED)
994 dev_err(hostdata->dev, "fast_fail not supported in server\n");
995 else if (status == VIOSRP_MAD_FAILED)
996 dev_err(hostdata->dev, "fast_fail request failed\n");
997 else if (status != VIOSRP_MAD_SUCCESS)
998 dev_err(hostdata->dev, "error 0x%X enabling fast_fail\n", status);
999
Brian King126c5cc2009-06-08 16:19:08 -05001000 send_mad_capabilities(hostdata);
Robert Jenningsc1988e32009-06-08 16:19:07 -05001001}
1002
1003/**
1004 * init_host - Start host initialization
1005 * @hostdata: ibmvscsi_host_data of host
1006 *
1007 * Returns zero if successful.
1008 */
1009static int enable_fast_fail(struct ibmvscsi_host_data *hostdata)
1010{
1011 int rc;
1012 unsigned long flags;
1013 struct viosrp_fast_fail *fast_fail_mad;
1014 struct srp_event_struct *evt_struct;
1015
Brian King126c5cc2009-06-08 16:19:08 -05001016 if (!fast_fail) {
1017 send_mad_capabilities(hostdata);
1018 return 0;
1019 }
Robert Jenningsc1988e32009-06-08 16:19:07 -05001020
1021 evt_struct = get_event_struct(&hostdata->pool);
1022 BUG_ON(!evt_struct);
1023
1024 init_event_struct(evt_struct, fast_fail_rsp, VIOSRP_MAD_FORMAT, info_timeout);
1025
1026 fast_fail_mad = &evt_struct->iu.mad.fast_fail;
1027 memset(fast_fail_mad, 0, sizeof(*fast_fail_mad));
1028 fast_fail_mad->common.type = VIOSRP_ENABLE_FAST_FAIL;
1029 fast_fail_mad->common.length = sizeof(*fast_fail_mad);
1030
1031 spin_lock_irqsave(hostdata->host->host_lock, flags);
1032 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
1033 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1034 return rc;
1035}
1036
1037/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 * adapter_info_rsp: - Handle response to MAD adapter info request
1039 * @evt_struct: srp_event_struct with the response
1040 *
1041 * Used as a "done" callback by when sending adapter_info. Gets called
1042 * by ibmvscsi_handle_crq()
1043*/
1044static void adapter_info_rsp(struct srp_event_struct *evt_struct)
1045{
1046 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 if (evt_struct->xfer_iu->mad.adapter_info.common.status) {
Brian King6c0a60e2007-06-13 17:12:19 -05001049 dev_err(hostdata->dev, "error %d getting adapter info\n",
1050 evt_struct->xfer_iu->mad.adapter_info.common.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001052 dev_info(hostdata->dev, "host srp version: %s, "
1053 "host partition %s (%d), OS %d, max io %u\n",
1054 hostdata->madapter_info.srp_version,
1055 hostdata->madapter_info.partition_name,
1056 hostdata->madapter_info.partition_number,
1057 hostdata->madapter_info.os_type,
1058 hostdata->madapter_info.port_max_txu[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 if (hostdata->madapter_info.port_max_txu[0])
1061 hostdata->host->max_sectors =
1062 hostdata->madapter_info.port_max_txu[0] >> 9;
Dave C Boutcher154fb612005-09-13 10:09:02 -05001063
1064 if (hostdata->madapter_info.os_type == 3 &&
1065 strcmp(hostdata->madapter_info.srp_version, "1.6a") <= 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001066 dev_err(hostdata->dev, "host (Ver. %s) doesn't support large transfers\n",
1067 hostdata->madapter_info.srp_version);
1068 dev_err(hostdata->dev, "limiting scatterlists to %d\n",
1069 MAX_INDIRECT_BUFS);
Dave C Boutcher154fb612005-09-13 10:09:02 -05001070 hostdata->host->sg_tablesize = MAX_INDIRECT_BUFS;
1071 }
Brian Kinge08afeb2009-06-23 17:14:01 -05001072
1073 if (hostdata->madapter_info.os_type == 3) {
1074 enable_fast_fail(hostdata);
1075 return;
1076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
Brian King3507e132009-06-08 16:19:04 -05001078
Brian Kinge08afeb2009-06-23 17:14:01 -05001079 send_srp_login(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
1082/**
1083 * send_mad_adapter_info: - Sends the mad adapter info request
1084 * and stores the result so it can be retrieved with
1085 * sysfs. We COULD consider causing a failure if the
1086 * returned SRP version doesn't match ours.
1087 * @hostdata: ibmvscsi_host_data of host
1088 *
1089 * Returns zero if successful.
1090*/
1091static void send_mad_adapter_info(struct ibmvscsi_host_data *hostdata)
1092{
1093 struct viosrp_adapter_info *req;
1094 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -05001095 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 evt_struct = get_event_struct(&hostdata->pool);
Brian King3507e132009-06-08 16:19:04 -05001098 BUG_ON(!evt_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 init_event_struct(evt_struct,
1101 adapter_info_rsp,
1102 VIOSRP_MAD_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001103 info_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 req = &evt_struct->iu.mad.adapter_info;
1106 memset(req, 0x00, sizeof(*req));
1107
1108 req->common.type = VIOSRP_ADAPTER_INFO_TYPE;
1109 req->common.length = sizeof(hostdata->madapter_info);
Brian King126c5cc2009-06-08 16:19:08 -05001110 req->buffer = hostdata->adapter_info_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Brian King06f923c2007-06-13 17:12:33 -05001112 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King126c5cc2009-06-08 16:19:08 -05001113 if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
Brian King6c0a60e2007-06-13 17:12:19 -05001114 dev_err(hostdata->dev, "couldn't send ADAPTER_INFO_REQ!\n");
Brian King06f923c2007-06-13 17:12:33 -05001115 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116};
1117
1118/**
Brian King3507e132009-06-08 16:19:04 -05001119 * init_adapter: Start virtual adapter initialization sequence
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 *
Brian King3507e132009-06-08 16:19:04 -05001121 */
1122static void init_adapter(struct ibmvscsi_host_data *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 send_mad_adapter_info(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
1127/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 * sync_completion: Signal that a synchronous command has completed
1129 * Note that after returning from this call, the evt_struct is freed.
1130 * the caller waiting on this completion shouldn't touch the evt_struct
1131 * again.
1132 */
1133static void sync_completion(struct srp_event_struct *evt_struct)
1134{
1135 /* copy the response back */
1136 if (evt_struct->sync_srp)
1137 *evt_struct->sync_srp = *evt_struct->xfer_iu;
1138
1139 complete(&evt_struct->comp);
1140}
1141
1142/**
1143 * ibmvscsi_abort: Abort a command...from scsi host template
1144 * send this over to the server and wait synchronously for the response
1145 */
1146static int ibmvscsi_eh_abort_handler(struct scsi_cmnd *cmd)
1147{
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001148 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 struct srp_tsk_mgmt *tsk_mgmt;
1150 struct srp_event_struct *evt;
1151 struct srp_event_struct *tmp_evt, *found_evt;
1152 union viosrp_iu srp_rsp;
1153 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001154 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 u16 lun = lun_from_dev(cmd->device);
Robert Jennings860784c2007-11-12 09:00:23 -06001156 unsigned long wait_switch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /* First, find this command in our sent list so we can figure
1159 * out the correct tag
1160 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001161 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001162 wait_switch = jiffies + (init_timeout * HZ);
1163 do {
1164 found_evt = NULL;
1165 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1166 if (tmp_evt->cmnd == cmd) {
1167 found_evt = tmp_evt;
1168 break;
1169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Robert Jennings860784c2007-11-12 09:00:23 -06001172 if (!found_evt) {
1173 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1174 return SUCCESS;
1175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Robert Jennings860784c2007-11-12 09:00:23 -06001177 evt = get_event_struct(&hostdata->pool);
1178 if (evt == NULL) {
1179 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1180 sdev_printk(KERN_ERR, cmd->device,
1181 "failed to allocate abort event\n");
1182 return FAILED;
1183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Robert Jennings860784c2007-11-12 09:00:23 -06001185 init_event_struct(evt,
1186 sync_completion,
1187 VIOSRP_SRP_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001188 abort_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Robert Jennings860784c2007-11-12 09:00:23 -06001190 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Robert Jennings860784c2007-11-12 09:00:23 -06001192 /* Set up an abort SRP command */
1193 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1194 tsk_mgmt->opcode = SRP_TSK_MGMT;
1195 tsk_mgmt->lun = ((u64) lun) << 48;
1196 tsk_mgmt->tsk_mgmt_func = SRP_TSK_ABORT_TASK;
1197 tsk_mgmt->task_tag = (u64) found_evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Robert Jennings860784c2007-11-12 09:00:23 -06001199 evt->sync_srp = &srp_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Robert Jennings860784c2007-11-12 09:00:23 -06001201 init_completion(&evt->comp);
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001202 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, abort_timeout * 2);
Robert Jennings860784c2007-11-12 09:00:23 -06001203
1204 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1205 break;
1206
1207 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1208 msleep(10);
1209 spin_lock_irqsave(hostdata->host->host_lock, flags);
1210 } while (time_before(jiffies, wait_switch));
1211
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001212 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001213
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001214 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001215 sdev_printk(KERN_ERR, cmd->device,
1216 "failed to send abort() event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return FAILED;
1218 }
1219
Robert Jennings860784c2007-11-12 09:00:23 -06001220 sdev_printk(KERN_INFO, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001221 "aborting command. lun 0x%llx, tag 0x%llx\n",
Robert Jennings860784c2007-11-12 09:00:23 -06001222 (((u64) lun) << 48), (u64) found_evt);
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001227 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001229 sdev_printk(KERN_WARNING, cmd->device, "abort bad SRP RSP type %d\n",
1230 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return FAILED;
1232 }
1233
FUJITA Tomonorief265672006-03-26 03:57:14 +09001234 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1235 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 else
1237 rsp_rc = srp_rsp.srp.rsp.status;
1238
1239 if (rsp_rc) {
1240 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001241 sdev_printk(KERN_WARNING, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001242 "abort code %d for task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001243 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 return FAILED;
1245 }
1246
1247 /* Because we dropped the spinlock above, it's possible
1248 * The event is no longer in our list. Make sure it didn't
1249 * complete while we were aborting
1250 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001251 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 found_evt = NULL;
1253 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1254 if (tmp_evt->cmnd == cmd) {
1255 found_evt = tmp_evt;
1256 break;
1257 }
1258 }
1259
1260 if (found_evt == NULL) {
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001261 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Ingo Molnarfe333322009-01-06 14:26:03 +00001262 sdev_printk(KERN_INFO, cmd->device, "aborted task tag 0x%llx completed\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001263 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return SUCCESS;
1265 }
1266
Ingo Molnarfe333322009-01-06 14:26:03 +00001267 sdev_printk(KERN_INFO, cmd->device, "successfully aborted task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001268 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 cmd->result = (DID_ABORT << 16);
1271 list_del(&found_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001272 unmap_cmd_data(&found_evt->iu.srp.cmd, found_evt,
1273 found_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 free_event_struct(&found_evt->hostdata->pool, found_evt);
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001275 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 atomic_inc(&hostdata->request_limit);
1277 return SUCCESS;
1278}
1279
1280/**
1281 * ibmvscsi_eh_device_reset_handler: Reset a single LUN...from scsi host
1282 * template send this over to the server and wait synchronously for the
1283 * response
1284 */
1285static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd *cmd)
1286{
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001287 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct srp_tsk_mgmt *tsk_mgmt;
1289 struct srp_event_struct *evt;
1290 struct srp_event_struct *tmp_evt, *pos;
1291 union viosrp_iu srp_rsp;
1292 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001293 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 u16 lun = lun_from_dev(cmd->device);
Robert Jennings860784c2007-11-12 09:00:23 -06001295 unsigned long wait_switch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001297 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001298 wait_switch = jiffies + (init_timeout * HZ);
1299 do {
1300 evt = get_event_struct(&hostdata->pool);
1301 if (evt == NULL) {
1302 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1303 sdev_printk(KERN_ERR, cmd->device,
1304 "failed to allocate reset event\n");
1305 return FAILED;
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Robert Jennings860784c2007-11-12 09:00:23 -06001308 init_event_struct(evt,
1309 sync_completion,
1310 VIOSRP_SRP_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001311 reset_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Robert Jennings860784c2007-11-12 09:00:23 -06001313 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Robert Jennings860784c2007-11-12 09:00:23 -06001315 /* Set up a lun reset SRP command */
1316 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1317 tsk_mgmt->opcode = SRP_TSK_MGMT;
1318 tsk_mgmt->lun = ((u64) lun) << 48;
1319 tsk_mgmt->tsk_mgmt_func = SRP_TSK_LUN_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Robert Jennings860784c2007-11-12 09:00:23 -06001321 evt->sync_srp = &srp_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Robert Jennings860784c2007-11-12 09:00:23 -06001323 init_completion(&evt->comp);
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001324 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, reset_timeout * 2);
Robert Jennings860784c2007-11-12 09:00:23 -06001325
1326 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1327 break;
1328
1329 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1330 msleep(10);
1331 spin_lock_irqsave(hostdata->host->host_lock, flags);
1332 } while (time_before(jiffies, wait_switch));
1333
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001334 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001335
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001336 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001337 sdev_printk(KERN_ERR, cmd->device,
1338 "failed to send reset event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return FAILED;
1340 }
1341
Ingo Molnarfe333322009-01-06 14:26:03 +00001342 sdev_printk(KERN_INFO, cmd->device, "resetting device. lun 0x%llx\n",
Robert Jennings860784c2007-11-12 09:00:23 -06001343 (((u64) lun) << 48));
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001348 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001350 sdev_printk(KERN_WARNING, cmd->device, "reset bad SRP RSP type %d\n",
1351 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return FAILED;
1353 }
1354
FUJITA Tomonorief265672006-03-26 03:57:14 +09001355 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1356 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 else
1358 rsp_rc = srp_rsp.srp.rsp.status;
1359
1360 if (rsp_rc) {
1361 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001362 sdev_printk(KERN_WARNING, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001363 "reset code %d for task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001364 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return FAILED;
1366 }
1367
1368 /* We need to find all commands for this LUN that have not yet been
1369 * responded to, and fail them with DID_RESET
1370 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001371 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
1373 if ((tmp_evt->cmnd) && (tmp_evt->cmnd->device == cmd->device)) {
1374 if (tmp_evt->cmnd)
1375 tmp_evt->cmnd->result = (DID_RESET << 16);
1376 list_del(&tmp_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001377 unmap_cmd_data(&tmp_evt->iu.srp.cmd, tmp_evt,
1378 tmp_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 free_event_struct(&tmp_evt->hostdata->pool,
1380 tmp_evt);
1381 atomic_inc(&hostdata->request_limit);
1382 if (tmp_evt->cmnd_done)
1383 tmp_evt->cmnd_done(tmp_evt->cmnd);
1384 else if (tmp_evt->done)
1385 tmp_evt->done(tmp_evt);
1386 }
1387 }
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001388 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return SUCCESS;
1390}
1391
1392/**
Brian King3d0e91f2007-06-13 17:12:26 -05001393 * ibmvscsi_eh_host_reset_handler - Reset the connection to the server
1394 * @cmd: struct scsi_cmnd having problems
1395*/
1396static int ibmvscsi_eh_host_reset_handler(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
Brian King3d0e91f2007-06-13 17:12:26 -05001398 unsigned long wait_switch = 0;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001399 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Brian King3d0e91f2007-06-13 17:12:26 -05001401 dev_err(hostdata->dev, "Resetting connection due to error recovery\n");
1402
1403 ibmvscsi_reset_host(hostdata);
1404
1405 for (wait_switch = jiffies + (init_timeout * HZ);
1406 time_before(jiffies, wait_switch) &&
1407 atomic_read(&hostdata->request_limit) < 2;) {
1408
1409 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 }
Brian King3d0e91f2007-06-13 17:12:26 -05001411
1412 if (atomic_read(&hostdata->request_limit) <= 0)
1413 return FAILED;
1414
1415 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
1418/**
1419 * ibmvscsi_handle_crq: - Handles and frees received events in the CRQ
1420 * @crq: Command/Response queue
1421 * @hostdata: ibmvscsi_host_data of host
1422 *
1423*/
1424void ibmvscsi_handle_crq(struct viosrp_crq *crq,
1425 struct ibmvscsi_host_data *hostdata)
1426{
Brian King6c0a60e2007-06-13 17:12:19 -05001427 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 unsigned long flags;
1429 struct srp_event_struct *evt_struct =
1430 (struct srp_event_struct *)crq->IU_data_ptr;
1431 switch (crq->valid) {
1432 case 0xC0: /* initialization */
1433 switch (crq->format) {
1434 case 0x01: /* Initialization message */
Brian King6c0a60e2007-06-13 17:12:19 -05001435 dev_info(hostdata->dev, "partner initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 /* Send back a response */
David Woodhoused3849d52007-09-22 08:29:36 +10001437 if ((rc = ibmvscsi_ops->send_crq(hostdata,
1438 0xC002000000000000LL, 0)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /* Now login */
Brian King3507e132009-06-08 16:19:04 -05001440 init_adapter(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001442 dev_err(hostdata->dev, "Unable to send init rsp. rc=%ld\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
1444
1445 break;
1446 case 0x02: /* Initialization response */
Brian King6c0a60e2007-06-13 17:12:19 -05001447 dev_info(hostdata->dev, "partner initialization complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 /* Now login */
Brian King3507e132009-06-08 16:19:04 -05001450 init_adapter(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 break;
1452 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001453 dev_err(hostdata->dev, "unknown crq message type: %d\n", crq->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455 return;
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001456 case 0xFF: /* Hypervisor telling us the connection is closed */
1457 scsi_block_requests(hostdata->host);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001458 atomic_set(&hostdata->request_limit, 0);
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001459 if (crq->format == 0x06) {
1460 /* We need to re-setup the interpartition connection */
Brian King6c0a60e2007-06-13 17:12:19 -05001461 dev_info(hostdata->dev, "Re-enabling adapter!\n");
Brian King126c5cc2009-06-08 16:19:08 -05001462 hostdata->client_migrated = 1;
Brian King0f33ece2010-06-17 13:56:00 -05001463 hostdata->reenable_crq = 1;
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001464 purge_requests(hostdata, DID_REQUEUE);
Brian King0f33ece2010-06-17 13:56:00 -05001465 wake_up(&hostdata->work_wait_q);
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001466 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001467 dev_err(hostdata->dev, "Virtual adapter failed rc %d!\n",
1468 crq->format);
Brian King0f33ece2010-06-17 13:56:00 -05001469 ibmvscsi_reset_host(hostdata);
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return;
1472 case 0x80: /* real payload */
1473 break;
1474 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001475 dev_err(hostdata->dev, "got an invalid message type 0x%02x\n",
1476 crq->valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 return;
1478 }
1479
1480 /* The only kind of payload CRQs we should get are responses to
1481 * things we send. Make sure this response is to something we
1482 * actually sent
1483 */
1484 if (!valid_event_struct(&hostdata->pool, evt_struct)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001485 dev_err(hostdata->dev, "returned correlation_token 0x%p is invalid!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 (void *)crq->IU_data_ptr);
1487 return;
1488 }
1489
1490 if (atomic_read(&evt_struct->free)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001491 dev_err(hostdata->dev, "received duplicate correlation_token 0x%p!\n",
1492 (void *)crq->IU_data_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return;
1494 }
1495
1496 if (crq->format == VIOSRP_SRP_FORMAT)
FUJITA Tomonorief265672006-03-26 03:57:14 +09001497 atomic_add(evt_struct->xfer_iu->srp.rsp.req_lim_delta,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 &hostdata->request_limit);
1499
Brian King3d0e91f2007-06-13 17:12:26 -05001500 del_timer(&evt_struct->timer);
1501
Brian Kingca616682008-05-19 10:27:56 -05001502 if ((crq->status != VIOSRP_OK && crq->status != VIOSRP_OK2) && evt_struct->cmnd)
Brian Kingc3a3b552008-04-25 16:58:29 -05001503 evt_struct->cmnd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (evt_struct->done)
1505 evt_struct->done(evt_struct);
1506 else
Brian King6c0a60e2007-06-13 17:12:19 -05001507 dev_err(hostdata->dev, "returned done() is NULL; not running it!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 /*
1510 * Lock the host_lock before messing with these structures, since we
1511 * are running in a task context
1512 */
1513 spin_lock_irqsave(evt_struct->hostdata->host->host_lock, flags);
1514 list_del(&evt_struct->list);
1515 free_event_struct(&evt_struct->hostdata->pool, evt_struct);
1516 spin_unlock_irqrestore(evt_struct->hostdata->host->host_lock, flags);
1517}
1518
1519/**
1520 * ibmvscsi_get_host_config: Send the command to the server to get host
1521 * configuration data. The data is opaque to us.
1522 */
1523static int ibmvscsi_do_host_config(struct ibmvscsi_host_data *hostdata,
1524 unsigned char *buffer, int length)
1525{
1526 struct viosrp_host_config *host_config;
1527 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -05001528 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001529 dma_addr_t addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 int rc;
1531
1532 evt_struct = get_event_struct(&hostdata->pool);
1533 if (!evt_struct) {
Brian King6c0a60e2007-06-13 17:12:19 -05001534 dev_err(hostdata->dev, "couldn't allocate event for HOST_CONFIG!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return -1;
1536 }
1537
1538 init_event_struct(evt_struct,
1539 sync_completion,
1540 VIOSRP_MAD_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001541 info_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 host_config = &evt_struct->iu.mad.host_config;
1544
1545 /* Set up a lun reset SRP command */
1546 memset(host_config, 0x00, sizeof(*host_config));
1547 host_config->common.type = VIOSRP_HOST_CONFIG_TYPE;
1548 host_config->common.length = length;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001549 host_config->buffer = addr = dma_map_single(hostdata->dev, buffer,
1550 length,
1551 DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07001553 if (dma_mapping_error(hostdata->dev, host_config->buffer)) {
Robert Jennings7912a0a2008-07-24 04:35:27 +10001554 if (!firmware_has_feature(FW_FEATURE_CMO))
1555 dev_err(hostdata->dev,
1556 "dma_mapping error getting host config\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 free_event_struct(&hostdata->pool, evt_struct);
1558 return -1;
1559 }
1560
1561 init_completion(&evt_struct->comp);
Brian King06f923c2007-06-13 17:12:33 -05001562 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001563 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
Brian King06f923c2007-06-13 17:12:33 -05001564 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001565 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 wait_for_completion(&evt_struct->comp);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001567 dma_unmap_single(hostdata->dev, addr, length, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 return rc;
1570}
1571
Robert Jennings0979c842007-03-29 12:30:40 -05001572/**
1573 * ibmvscsi_slave_configure: Set the "allow_restart" flag for each disk.
1574 * @sdev: struct scsi_device device to configure
1575 *
1576 * Enable allow_restart for a device if it is a disk. Adjust the
1577 * queue_depth here also as is required by the documentation for
1578 * struct scsi_host_template.
1579 */
1580static int ibmvscsi_slave_configure(struct scsi_device *sdev)
1581{
1582 struct Scsi_Host *shost = sdev->host;
1583 unsigned long lock_flags = 0;
1584
1585 spin_lock_irqsave(shost->host_lock, lock_flags);
Brian Kingd1a357f2007-10-25 16:06:34 -05001586 if (sdev->type == TYPE_DISK) {
Robert Jennings0979c842007-03-29 12:30:40 -05001587 sdev->allow_restart = 1;
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001588 blk_queue_rq_timeout(sdev->request_queue, 120 * HZ);
Brian Kingd1a357f2007-10-25 16:06:34 -05001589 }
Robert Jennings0979c842007-03-29 12:30:40 -05001590 scsi_adjust_queue_depth(sdev, 0, shost->cmd_per_lun);
1591 spin_unlock_irqrestore(shost->host_lock, lock_flags);
1592 return 0;
1593}
1594
Brian King742d25b2007-05-29 15:46:14 -05001595/**
1596 * ibmvscsi_change_queue_depth - Change the device's queue depth
1597 * @sdev: scsi device struct
1598 * @qdepth: depth to set
Mike Christiee881a172009-10-15 17:46:39 -07001599 * @reason: calling context
Brian King742d25b2007-05-29 15:46:14 -05001600 *
1601 * Return value:
1602 * actual depth set
1603 **/
Mike Christiee881a172009-10-15 17:46:39 -07001604static int ibmvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth,
1605 int reason)
Brian King742d25b2007-05-29 15:46:14 -05001606{
Mike Christiee881a172009-10-15 17:46:39 -07001607 if (reason != SCSI_QDEPTH_DEFAULT)
1608 return -EOPNOTSUPP;
1609
Brian King742d25b2007-05-29 15:46:14 -05001610 if (qdepth > IBMVSCSI_MAX_CMDS_PER_LUN)
1611 qdepth = IBMVSCSI_MAX_CMDS_PER_LUN;
1612
1613 scsi_adjust_queue_depth(sdev, 0, qdepth);
1614 return sdev->queue_depth;
1615}
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617/* ------------------------------------------------------------
1618 * sysfs attributes
1619 */
Brian King126c5cc2009-06-08 16:19:08 -05001620static ssize_t show_host_vhost_loc(struct device *dev,
1621 struct device_attribute *attr, char *buf)
1622{
1623 struct Scsi_Host *shost = class_to_shost(dev);
1624 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1625 int len;
1626
1627 len = snprintf(buf, sizeof(hostdata->caps.loc), "%s\n",
1628 hostdata->caps.loc);
1629 return len;
1630}
1631
1632static struct device_attribute ibmvscsi_host_vhost_loc = {
1633 .attr = {
1634 .name = "vhost_loc",
1635 .mode = S_IRUGO,
1636 },
1637 .show = show_host_vhost_loc,
1638};
1639
1640static ssize_t show_host_vhost_name(struct device *dev,
1641 struct device_attribute *attr, char *buf)
1642{
1643 struct Scsi_Host *shost = class_to_shost(dev);
1644 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1645 int len;
1646
1647 len = snprintf(buf, sizeof(hostdata->caps.name), "%s\n",
1648 hostdata->caps.name);
1649 return len;
1650}
1651
1652static struct device_attribute ibmvscsi_host_vhost_name = {
1653 .attr = {
1654 .name = "vhost_name",
1655 .mode = S_IRUGO,
1656 },
1657 .show = show_host_vhost_name,
1658};
1659
Tony Jonesee959b02008-02-22 00:13:36 +01001660static ssize_t show_host_srp_version(struct device *dev,
1661 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
Tony Jonesee959b02008-02-22 00:13:36 +01001663 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001664 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 int len;
1666
1667 len = snprintf(buf, PAGE_SIZE, "%s\n",
1668 hostdata->madapter_info.srp_version);
1669 return len;
1670}
1671
Tony Jonesee959b02008-02-22 00:13:36 +01001672static struct device_attribute ibmvscsi_host_srp_version = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 .attr = {
1674 .name = "srp_version",
1675 .mode = S_IRUGO,
1676 },
1677 .show = show_host_srp_version,
1678};
1679
Tony Jonesee959b02008-02-22 00:13:36 +01001680static ssize_t show_host_partition_name(struct device *dev,
1681 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 char *buf)
1683{
Tony Jonesee959b02008-02-22 00:13:36 +01001684 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001685 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 int len;
1687
1688 len = snprintf(buf, PAGE_SIZE, "%s\n",
1689 hostdata->madapter_info.partition_name);
1690 return len;
1691}
1692
Tony Jonesee959b02008-02-22 00:13:36 +01001693static struct device_attribute ibmvscsi_host_partition_name = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 .attr = {
1695 .name = "partition_name",
1696 .mode = S_IRUGO,
1697 },
1698 .show = show_host_partition_name,
1699};
1700
Tony Jonesee959b02008-02-22 00:13:36 +01001701static ssize_t show_host_partition_number(struct device *dev,
1702 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 char *buf)
1704{
Tony Jonesee959b02008-02-22 00:13:36 +01001705 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001706 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 int len;
1708
1709 len = snprintf(buf, PAGE_SIZE, "%d\n",
1710 hostdata->madapter_info.partition_number);
1711 return len;
1712}
1713
Tony Jonesee959b02008-02-22 00:13:36 +01001714static struct device_attribute ibmvscsi_host_partition_number = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 .attr = {
1716 .name = "partition_number",
1717 .mode = S_IRUGO,
1718 },
1719 .show = show_host_partition_number,
1720};
1721
Tony Jonesee959b02008-02-22 00:13:36 +01001722static ssize_t show_host_mad_version(struct device *dev,
1723 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
Tony Jonesee959b02008-02-22 00:13:36 +01001725 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001726 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 int len;
1728
1729 len = snprintf(buf, PAGE_SIZE, "%d\n",
1730 hostdata->madapter_info.mad_version);
1731 return len;
1732}
1733
Tony Jonesee959b02008-02-22 00:13:36 +01001734static struct device_attribute ibmvscsi_host_mad_version = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 .attr = {
1736 .name = "mad_version",
1737 .mode = S_IRUGO,
1738 },
1739 .show = show_host_mad_version,
1740};
1741
Tony Jonesee959b02008-02-22 00:13:36 +01001742static ssize_t show_host_os_type(struct device *dev,
1743 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Tony Jonesee959b02008-02-22 00:13:36 +01001745 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001746 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 int len;
1748
1749 len = snprintf(buf, PAGE_SIZE, "%d\n", hostdata->madapter_info.os_type);
1750 return len;
1751}
1752
Tony Jonesee959b02008-02-22 00:13:36 +01001753static struct device_attribute ibmvscsi_host_os_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 .attr = {
1755 .name = "os_type",
1756 .mode = S_IRUGO,
1757 },
1758 .show = show_host_os_type,
1759};
1760
Tony Jonesee959b02008-02-22 00:13:36 +01001761static ssize_t show_host_config(struct device *dev,
1762 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Tony Jonesee959b02008-02-22 00:13:36 +01001764 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001765 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 /* returns null-terminated host config data */
1768 if (ibmvscsi_do_host_config(hostdata, buf, PAGE_SIZE) == 0)
1769 return strlen(buf);
1770 else
1771 return 0;
1772}
1773
Tony Jonesee959b02008-02-22 00:13:36 +01001774static struct device_attribute ibmvscsi_host_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 .attr = {
1776 .name = "config",
1777 .mode = S_IRUGO,
1778 },
1779 .show = show_host_config,
1780};
1781
Tony Jonesee959b02008-02-22 00:13:36 +01001782static struct device_attribute *ibmvscsi_attrs[] = {
Brian King126c5cc2009-06-08 16:19:08 -05001783 &ibmvscsi_host_vhost_loc,
1784 &ibmvscsi_host_vhost_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 &ibmvscsi_host_srp_version,
1786 &ibmvscsi_host_partition_name,
1787 &ibmvscsi_host_partition_number,
1788 &ibmvscsi_host_mad_version,
1789 &ibmvscsi_host_os_type,
1790 &ibmvscsi_host_config,
1791 NULL
1792};
1793
1794/* ------------------------------------------------------------
1795 * SCSI driver registration
1796 */
1797static struct scsi_host_template driver_template = {
1798 .module = THIS_MODULE,
1799 .name = "IBM POWER Virtual SCSI Adapter " IBMVSCSI_VERSION,
1800 .proc_name = "ibmvscsi",
1801 .queuecommand = ibmvscsi_queuecommand,
1802 .eh_abort_handler = ibmvscsi_eh_abort_handler,
1803 .eh_device_reset_handler = ibmvscsi_eh_device_reset_handler,
Brian King3d0e91f2007-06-13 17:12:26 -05001804 .eh_host_reset_handler = ibmvscsi_eh_host_reset_handler,
Robert Jennings0979c842007-03-29 12:30:40 -05001805 .slave_configure = ibmvscsi_slave_configure,
Brian King742d25b2007-05-29 15:46:14 -05001806 .change_queue_depth = ibmvscsi_change_queue_depth,
Robert Jennings7912a0a2008-07-24 04:35:27 +10001807 .cmd_per_lun = IBMVSCSI_CMDS_PER_LUN_DEFAULT,
Robert Jenningsa897ff22007-03-28 12:45:46 -05001808 .can_queue = IBMVSCSI_MAX_REQUESTS_DEFAULT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 .this_id = -1,
James Bottomley4dddbc22005-09-06 17:11:54 -05001810 .sg_tablesize = SG_ALL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 .use_clustering = ENABLE_CLUSTERING,
1812 .shost_attrs = ibmvscsi_attrs,
1813};
1814
1815/**
Robert Jennings7912a0a2008-07-24 04:35:27 +10001816 * ibmvscsi_get_desired_dma - Calculate IO memory desired by the driver
1817 *
1818 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1819 *
1820 * Return value:
1821 * Number of bytes of IO data the driver will need to perform well.
1822 */
1823static unsigned long ibmvscsi_get_desired_dma(struct vio_dev *vdev)
1824{
1825 /* iu_storage data allocated in initialize_event_pool */
Brian King4f10aae2008-12-17 17:19:33 -06001826 unsigned long desired_io = max_events * sizeof(union viosrp_iu);
Robert Jennings7912a0a2008-07-24 04:35:27 +10001827
1828 /* add io space for sg data */
Brian King004dd5e2008-08-15 10:48:47 -05001829 desired_io += (IBMVSCSI_MAX_SECTORS_DEFAULT * 512 *
Robert Jennings7912a0a2008-07-24 04:35:27 +10001830 IBMVSCSI_CMDS_PER_LUN_DEFAULT);
1831
1832 return desired_io;
1833}
1834
Brian King0f33ece2010-06-17 13:56:00 -05001835static void ibmvscsi_do_work(struct ibmvscsi_host_data *hostdata)
1836{
1837 int rc;
1838 char *action = "reset";
1839
1840 if (hostdata->reset_crq) {
1841 smp_rmb();
1842 hostdata->reset_crq = 0;
1843
1844 rc = ibmvscsi_ops->reset_crq_queue(&hostdata->queue, hostdata);
1845 if (!rc)
1846 rc = ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0);
1847 if (!rc)
1848 rc = vio_enable_interrupts(to_vio_dev(hostdata->dev));
1849 } else if (hostdata->reenable_crq) {
1850 smp_rmb();
1851 action = "enable";
1852 rc = ibmvscsi_ops->reenable_crq_queue(&hostdata->queue, hostdata);
1853 hostdata->reenable_crq = 0;
1854 if (!rc)
1855 rc = ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0);
1856 } else
1857 return;
1858
1859 if (rc) {
1860 atomic_set(&hostdata->request_limit, -1);
1861 dev_err(hostdata->dev, "error after %s\n", action);
1862 }
1863
1864 scsi_unblock_requests(hostdata->host);
1865}
1866
1867static int ibmvscsi_work_to_do(struct ibmvscsi_host_data *hostdata)
1868{
1869 if (kthread_should_stop())
1870 return 1;
1871 else if (hostdata->reset_crq) {
1872 smp_rmb();
1873 return 1;
1874 } else if (hostdata->reenable_crq) {
1875 smp_rmb();
1876 return 1;
1877 }
1878
1879 return 0;
1880}
1881
1882static int ibmvscsi_work(void *data)
1883{
1884 struct ibmvscsi_host_data *hostdata = data;
1885 int rc;
1886
1887 set_user_nice(current, -20);
1888
1889 while (1) {
1890 rc = wait_event_interruptible(hostdata->work_wait_q,
1891 ibmvscsi_work_to_do(hostdata));
1892
1893 BUG_ON(rc);
1894
1895 if (kthread_should_stop())
1896 break;
1897
1898 ibmvscsi_do_work(hostdata);
1899 }
1900
1901 return 0;
1902}
1903
Robert Jennings7912a0a2008-07-24 04:35:27 +10001904/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 * Called by bus code for each adapter
1906 */
1907static int ibmvscsi_probe(struct vio_dev *vdev, const struct vio_device_id *id)
1908{
1909 struct ibmvscsi_host_data *hostdata;
1910 struct Scsi_Host *host;
1911 struct device *dev = &vdev->dev;
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001912 struct srp_rport_identifiers ids;
1913 struct srp_rport *rport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 unsigned long wait_switch = 0;
Dave C Boutchercefbda22006-06-12 21:22:51 -05001915 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Greg Kroah-Hartman559fde72009-05-04 12:40:54 -07001917 dev_set_drvdata(&vdev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 host = scsi_host_alloc(&driver_template, sizeof(*hostdata));
1920 if (!host) {
Brian King6c0a60e2007-06-13 17:12:19 -05001921 dev_err(&vdev->dev, "couldn't allocate host data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 goto scsi_host_alloc_failed;
1923 }
1924
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001925 host->transportt = ibmvscsi_transport_template;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001926 hostdata = shost_priv(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 memset(hostdata, 0x00, sizeof(*hostdata));
1928 INIT_LIST_HEAD(&hostdata->sent);
Brian King0f33ece2010-06-17 13:56:00 -05001929 init_waitqueue_head(&hostdata->work_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 hostdata->host = host;
1931 hostdata->dev = dev;
1932 atomic_set(&hostdata->request_limit, -1);
Robert Jennings7912a0a2008-07-24 04:35:27 +10001933 hostdata->host->max_sectors = IBMVSCSI_MAX_SECTORS_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Brian King126c5cc2009-06-08 16:19:08 -05001935 if (map_persist_bufs(hostdata)) {
1936 dev_err(&vdev->dev, "couldn't map persistent buffers\n");
1937 goto persist_bufs_failed;
1938 }
1939
Brian King0f33ece2010-06-17 13:56:00 -05001940 hostdata->work_thread = kthread_run(ibmvscsi_work, hostdata, "%s_%d",
1941 "ibmvscsi", host->host_no);
1942
1943 if (IS_ERR(hostdata->work_thread)) {
1944 dev_err(&vdev->dev, "couldn't initialize kthread. rc=%ld\n",
1945 PTR_ERR(hostdata->work_thread));
1946 goto init_crq_failed;
1947 }
1948
Brian King4f10aae2008-12-17 17:19:33 -06001949 rc = ibmvscsi_ops->init_crq_queue(&hostdata->queue, hostdata, max_events);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001950 if (rc != 0 && rc != H_RESOURCE) {
Brian King6c0a60e2007-06-13 17:12:19 -05001951 dev_err(&vdev->dev, "couldn't initialize crq. rc=%d\n", rc);
Brian King0f33ece2010-06-17 13:56:00 -05001952 goto kill_kthread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
Brian King4f10aae2008-12-17 17:19:33 -06001954 if (initialize_event_pool(&hostdata->pool, max_events, hostdata) != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001955 dev_err(&vdev->dev, "couldn't initialize event pool\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 goto init_pool_failed;
1957 }
1958
1959 host->max_lun = 8;
1960 host->max_id = max_id;
1961 host->max_channel = max_channel;
Brian Kingfbc56f02009-06-08 16:19:01 -05001962 host->max_cmd_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 if (scsi_add_host(hostdata->host, hostdata->dev))
1965 goto add_host_failed;
1966
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001967 /* we don't have a proper target_port_id so let's use the fake one */
1968 memcpy(ids.port_id, hostdata->madapter_info.partition_name,
1969 sizeof(ids.port_id));
FUJITA Tomonoriaebd5e42007-07-11 15:08:15 +09001970 ids.roles = SRP_RPORT_ROLE_TARGET;
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001971 rport = srp_rport_add(host, &ids);
1972 if (IS_ERR(rport))
1973 goto add_srp_port_failed;
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 /* Try to send an initialization message. Note that this is allowed
1976 * to fail if the other end is not acive. In that case we don't
1977 * want to scan
1978 */
David Woodhoused3849d52007-09-22 08:29:36 +10001979 if (ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0) == 0
Dave C Boutchercefbda22006-06-12 21:22:51 -05001980 || rc == H_RESOURCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 /*
1982 * Wait around max init_timeout secs for the adapter to finish
1983 * initializing. When we are done initializing, we will have a
1984 * valid request_limit. We don't want Linux scanning before
1985 * we are ready.
1986 */
1987 for (wait_switch = jiffies + (init_timeout * HZ);
1988 time_before(jiffies, wait_switch) &&
1989 atomic_read(&hostdata->request_limit) < 2;) {
1990
1991 msleep(10);
1992 }
1993
1994 /* if we now have a valid request_limit, initiate a scan */
1995 if (atomic_read(&hostdata->request_limit) > 0)
1996 scsi_scan_host(host);
1997 }
1998
Greg Kroah-Hartman559fde72009-05-04 12:40:54 -07001999 dev_set_drvdata(&vdev->dev, hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return 0;
2001
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002002 add_srp_port_failed:
2003 scsi_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 add_host_failed:
2005 release_event_pool(&hostdata->pool, hostdata);
2006 init_pool_failed:
Brian King4f10aae2008-12-17 17:19:33 -06002007 ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata, max_events);
Brian King0f33ece2010-06-17 13:56:00 -05002008 kill_kthread:
2009 kthread_stop(hostdata->work_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 init_crq_failed:
Brian King126c5cc2009-06-08 16:19:08 -05002011 unmap_persist_bufs(hostdata);
2012 persist_bufs_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 scsi_host_put(host);
2014 scsi_host_alloc_failed:
2015 return -1;
2016}
2017
2018static int ibmvscsi_remove(struct vio_dev *vdev)
2019{
Greg Kroah-Hartman559fde72009-05-04 12:40:54 -07002020 struct ibmvscsi_host_data *hostdata = dev_get_drvdata(&vdev->dev);
Brian King126c5cc2009-06-08 16:19:08 -05002021 unmap_persist_bufs(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 release_event_pool(&hostdata->pool, hostdata);
David Woodhoused3849d52007-09-22 08:29:36 +10002023 ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata,
Brian King4f10aae2008-12-17 17:19:33 -06002024 max_events);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002025
Brian King0f33ece2010-06-17 13:56:00 -05002026 kthread_stop(hostdata->work_thread);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002027 srp_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 scsi_remove_host(hostdata->host);
2029 scsi_host_put(hostdata->host);
2030
2031 return 0;
2032}
2033
2034/**
Brian King64355b92010-02-21 10:37:57 -06002035 * ibmvscsi_resume: Resume from suspend
2036 * @dev: device struct
2037 *
2038 * We may have lost an interrupt across suspend/resume, so kick the
2039 * interrupt handler
2040 */
2041static int ibmvscsi_resume(struct device *dev)
2042{
2043 struct ibmvscsi_host_data *hostdata = dev_get_drvdata(dev);
2044 return ibmvscsi_ops->resume(hostdata);
2045}
2046
2047/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 * ibmvscsi_device_table: Used by vio.c to match devices in the device tree we
2049 * support.
2050 */
2051static struct vio_device_id ibmvscsi_device_table[] __devinitdata = {
2052 {"vscsi", "IBM,v-scsi"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10002053 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055MODULE_DEVICE_TABLE(vio, ibmvscsi_device_table);
Stephen Rothwell915124d2005-10-24 15:12:22 +10002056
Brian King64355b92010-02-21 10:37:57 -06002057static struct dev_pm_ops ibmvscsi_pm_ops = {
2058 .resume = ibmvscsi_resume
2059};
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061static struct vio_driver ibmvscsi_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 .id_table = ibmvscsi_device_table,
2063 .probe = ibmvscsi_probe,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10002064 .remove = ibmvscsi_remove,
Robert Jennings7912a0a2008-07-24 04:35:27 +10002065 .get_desired_dma = ibmvscsi_get_desired_dma,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10002066 .driver = {
2067 .name = "ibmvscsi",
Stephen Rothwell915124d2005-10-24 15:12:22 +10002068 .owner = THIS_MODULE,
Brian King64355b92010-02-21 10:37:57 -06002069 .pm = &ibmvscsi_pm_ops,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10002070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071};
2072
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002073static struct srp_function_template ibmvscsi_transport_functions = {
2074};
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076int __init ibmvscsi_module_init(void)
2077{
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002078 int ret;
2079
Brian King4f10aae2008-12-17 17:19:33 -06002080 /* Ensure we have two requests to do error recovery */
2081 driver_template.can_queue = max_requests;
2082 max_events = max_requests + 2;
2083
David Woodhoused3849d52007-09-22 08:29:36 +10002084 if (firmware_has_feature(FW_FEATURE_ISERIES))
2085 ibmvscsi_ops = &iseriesvscsi_ops;
2086 else if (firmware_has_feature(FW_FEATURE_VIO))
2087 ibmvscsi_ops = &rpavscsi_ops;
2088 else
2089 return -ENODEV;
2090
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002091 ibmvscsi_transport_template =
2092 srp_attach_transport(&ibmvscsi_transport_functions);
2093 if (!ibmvscsi_transport_template)
2094 return -ENOMEM;
2095
2096 ret = vio_register_driver(&ibmvscsi_driver);
2097 if (ret)
2098 srp_release_transport(ibmvscsi_transport_template);
2099 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
2101
2102void __exit ibmvscsi_module_exit(void)
2103{
2104 vio_unregister_driver(&ibmvscsi_driver);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002105 srp_release_transport(ibmvscsi_transport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
2108module_init(ibmvscsi_module_init);
2109module_exit(ibmvscsi_module_exit);