blob: cc38fefc26124fea3cbcd4a1b17195b71e2810e6 [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>
David Woodhoused3849d52007-09-22 08:29:36 +100076#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <asm/vio.h>
78#include <scsi/scsi.h>
79#include <scsi/scsi_cmnd.h>
80#include <scsi/scsi_host.h>
81#include <scsi/scsi_device.h>
FUJITA Tomonori4d680412007-06-27 16:32:50 +090082#include <scsi/scsi_transport_srp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include "ibmvscsi.h"
84
85/* The values below are somewhat arbitrary default values, but
86 * OS/400 will use 3 busses (disks, CDs, tapes, I think.)
87 * Note that there are 3 bits of channel value, 6 bits of id, and
88 * 5 bits of LUN.
89 */
90static int max_id = 64;
91static int max_channel = 3;
Robert Jenningse1a5ce52009-06-08 16:19:03 -050092static int init_timeout = 300;
93static int login_timeout = 60;
94static int info_timeout = 30;
95static int abort_timeout = 60;
96static int reset_timeout = 60;
Robert Jenningsa897ff22007-03-28 12:45:46 -050097static int max_requests = IBMVSCSI_MAX_REQUESTS_DEFAULT;
Brian King4f10aae2008-12-17 17:19:33 -060098static int max_events = IBMVSCSI_MAX_REQUESTS_DEFAULT + 2;
Robert Jenningsc1988e32009-06-08 16:19:07 -050099static int fast_fail = 1;
Brian King126c5cc2009-06-08 16:19:08 -0500100static int client_reserve = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
FUJITA Tomonori4d680412007-06-27 16:32:50 +0900102static struct scsi_transport_template *ibmvscsi_transport_template;
103
Dave C Boutcher2b541f82006-01-19 13:34:44 -0600104#define IBMVSCSI_VERSION "1.5.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
David Woodhoused3849d52007-09-22 08:29:36 +1000106static struct ibmvscsi_ops *ibmvscsi_ops;
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108MODULE_DESCRIPTION("IBM Virtual SCSI");
109MODULE_AUTHOR("Dave Boutcher");
110MODULE_LICENSE("GPL");
111MODULE_VERSION(IBMVSCSI_VERSION);
112
113module_param_named(max_id, max_id, int, S_IRUGO | S_IWUSR);
114MODULE_PARM_DESC(max_id, "Largest ID value for each channel");
115module_param_named(max_channel, max_channel, int, S_IRUGO | S_IWUSR);
116MODULE_PARM_DESC(max_channel, "Largest channel value");
117module_param_named(init_timeout, init_timeout, int, S_IRUGO | S_IWUSR);
118MODULE_PARM_DESC(init_timeout, "Initialization timeout in seconds");
Brian King21465ed2008-12-08 17:01:47 -0600119module_param_named(max_requests, max_requests, int, S_IRUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120MODULE_PARM_DESC(max_requests, "Maximum requests for this adapter");
Robert Jenningsc1988e32009-06-08 16:19:07 -0500121module_param_named(fast_fail, fast_fail, int, S_IRUGO | S_IWUSR);
122MODULE_PARM_DESC(fast_fail, "Enable fast fail. [Default=1]");
Brian King126c5cc2009-06-08 16:19:08 -0500123module_param_named(client_reserve, client_reserve, int, S_IRUGO );
124MODULE_PARM_DESC(client_reserve, "Attempt client managed reserve/release");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/* ------------------------------------------------------------
127 * Routines for the event pool and event structs
128 */
129/**
130 * initialize_event_pool: - Allocates and initializes the event pool for a host
131 * @pool: event_pool to be initialized
132 * @size: Number of events in pool
133 * @hostdata: ibmvscsi_host_data who owns the event pool
134 *
135 * Returns zero on success.
136*/
137static int initialize_event_pool(struct event_pool *pool,
138 int size, struct ibmvscsi_host_data *hostdata)
139{
140 int i;
141
142 pool->size = size;
143 pool->next = 0;
FUJITA Tomonori4c021dd132006-04-07 19:10:03 +0900144 pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (!pool->events)
146 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 pool->iu_storage =
149 dma_alloc_coherent(hostdata->dev,
150 pool->size * sizeof(*pool->iu_storage),
151 &pool->iu_token, 0);
152 if (!pool->iu_storage) {
153 kfree(pool->events);
154 return -ENOMEM;
155 }
156
157 for (i = 0; i < pool->size; ++i) {
158 struct srp_event_struct *evt = &pool->events[i];
159 memset(&evt->crq, 0x00, sizeof(evt->crq));
160 atomic_set(&evt->free, 1);
161 evt->crq.valid = 0x80;
162 evt->crq.IU_length = sizeof(*evt->xfer_iu);
163 evt->crq.IU_data_ptr = pool->iu_token +
164 sizeof(*evt->xfer_iu) * i;
165 evt->xfer_iu = pool->iu_storage + i;
166 evt->hostdata = hostdata;
James Bottomley4dddbc22005-09-06 17:11:54 -0500167 evt->ext_list = NULL;
168 evt->ext_list_token = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
171 return 0;
172}
173
174/**
175 * release_event_pool: - Frees memory of an event pool of a host
176 * @pool: event_pool to be released
177 * @hostdata: ibmvscsi_host_data who owns the even pool
178 *
179 * Returns zero on success.
180*/
181static void release_event_pool(struct event_pool *pool,
182 struct ibmvscsi_host_data *hostdata)
183{
184 int i, in_use = 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500185 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (atomic_read(&pool->events[i].free) != 1)
187 ++in_use;
James Bottomley4dddbc22005-09-06 17:11:54 -0500188 if (pool->events[i].ext_list) {
189 dma_free_coherent(hostdata->dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900190 SG_ALL * sizeof(struct srp_direct_buf),
James Bottomley4dddbc22005-09-06 17:11:54 -0500191 pool->events[i].ext_list,
192 pool->events[i].ext_list_token);
193 }
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (in_use)
Brian King6c0a60e2007-06-13 17:12:19 -0500196 dev_warn(hostdata->dev, "releasing event pool with %d "
197 "events still in use?\n", in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 kfree(pool->events);
199 dma_free_coherent(hostdata->dev,
200 pool->size * sizeof(*pool->iu_storage),
201 pool->iu_storage, pool->iu_token);
202}
203
204/**
205 * valid_event_struct: - Determines if event is valid.
206 * @pool: event_pool that contains the event
207 * @evt: srp_event_struct to be checked for validity
208 *
209 * Returns zero if event is invalid, one otherwise.
210*/
211static int valid_event_struct(struct event_pool *pool,
212 struct srp_event_struct *evt)
213{
214 int index = evt - pool->events;
215 if (index < 0 || index >= pool->size) /* outside of bounds */
216 return 0;
217 if (evt != pool->events + index) /* unaligned */
218 return 0;
219 return 1;
220}
221
222/**
223 * ibmvscsi_free-event_struct: - Changes status of event to "free"
224 * @pool: event_pool that contains the event
225 * @evt: srp_event_struct to be modified
226 *
227*/
228static void free_event_struct(struct event_pool *pool,
229 struct srp_event_struct *evt)
230{
231 if (!valid_event_struct(pool, evt)) {
Brian King6c0a60e2007-06-13 17:12:19 -0500232 dev_err(evt->hostdata->dev, "Freeing invalid event_struct %p "
233 "(not in pool %p)\n", evt, pool->events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return;
235 }
236 if (atomic_inc_return(&evt->free) != 1) {
Brian King6c0a60e2007-06-13 17:12:19 -0500237 dev_err(evt->hostdata->dev, "Freeing event_struct %p "
238 "which is not in use!\n", evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return;
240 }
241}
242
243/**
244 * get_evt_struct: - Gets the next free event in pool
245 * @pool: event_pool that contains the events to be searched
246 *
247 * Returns the next event in "free" state, and NULL if none are free.
248 * Note that no synchronization is done here, we assume the host_lock
249 * will syncrhonze things.
250*/
251static struct srp_event_struct *get_event_struct(struct event_pool *pool)
252{
253 int i;
254 int poolsize = pool->size;
255 int offset = pool->next;
256
257 for (i = 0; i < poolsize; i++) {
258 offset = (offset + 1) % poolsize;
259 if (!atomic_dec_if_positive(&pool->events[offset].free)) {
260 pool->next = offset;
261 return &pool->events[offset];
262 }
263 }
264
265 printk(KERN_ERR "ibmvscsi: found no event struct in pool!\n");
266 return NULL;
267}
268
269/**
270 * init_event_struct: Initialize fields in an event struct that are always
271 * required.
272 * @evt: The event
273 * @done: Routine to call when the event is responded to
274 * @format: SRP or MAD format
275 * @timeout: timeout value set in the CRQ
276 */
277static void init_event_struct(struct srp_event_struct *evt_struct,
278 void (*done) (struct srp_event_struct *),
279 u8 format,
280 int timeout)
281{
282 evt_struct->cmnd = NULL;
283 evt_struct->cmnd_done = NULL;
284 evt_struct->sync_srp = NULL;
285 evt_struct->crq.format = format;
286 evt_struct->crq.timeout = timeout;
287 evt_struct->done = done;
288}
289
290/* ------------------------------------------------------------
291 * Routines for receiving SCSI responses from the hosting partition
292 */
293
294/**
295 * set_srp_direction: Set the fields in the srp related to data
296 * direction and number of buffers based on the direction in
297 * the scsi_cmnd and the number of buffers
298 */
299static void set_srp_direction(struct scsi_cmnd *cmd,
300 struct srp_cmd *srp_cmd,
301 int numbuf)
302{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900303 u8 fmt;
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (numbuf == 0)
306 return;
307
FUJITA Tomonorief265672006-03-26 03:57:14 +0900308 if (numbuf == 1)
309 fmt = SRP_DATA_DESC_DIRECT;
310 else {
311 fmt = SRP_DATA_DESC_INDIRECT;
312 numbuf = min(numbuf, MAX_INDIRECT_BUFS);
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (cmd->sc_data_direction == DMA_TO_DEVICE)
FUJITA Tomonorief265672006-03-26 03:57:14 +0900315 srp_cmd->data_out_desc_cnt = numbuf;
316 else
317 srp_cmd->data_in_desc_cnt = numbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
FUJITA Tomonorief265672006-03-26 03:57:14 +0900319
320 if (cmd->sc_data_direction == DMA_TO_DEVICE)
321 srp_cmd->buf_fmt = fmt << 4;
322 else
323 srp_cmd->buf_fmt = fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
FUJITA Tomonorief265672006-03-26 03:57:14 +0900326static void unmap_sg_list(int num_entries,
James Bottomley4dddbc22005-09-06 17:11:54 -0500327 struct device *dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900328 struct srp_direct_buf *md)
329{
James Bottomley4dddbc22005-09-06 17:11:54 -0500330 int i;
331
FUJITA Tomonorief265672006-03-26 03:57:14 +0900332 for (i = 0; i < num_entries; ++i)
333 dma_unmap_single(dev, md[i].va, md[i].len, DMA_BIDIRECTIONAL);
James Bottomley4dddbc22005-09-06 17:11:54 -0500334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/**
337 * unmap_cmd_data: - Unmap data pointed in srp_cmd based on the format
338 * @cmd: srp_cmd whose additional_data member will be unmapped
339 * @dev: device for which the memory is mapped
340 *
341*/
James Bottomley4dddbc22005-09-06 17:11:54 -0500342static void unmap_cmd_data(struct srp_cmd *cmd,
343 struct srp_event_struct *evt_struct,
344 struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
FUJITA Tomonorief265672006-03-26 03:57:14 +0900346 u8 out_fmt, in_fmt;
347
348 out_fmt = cmd->buf_fmt >> 4;
349 in_fmt = cmd->buf_fmt & ((1U << 4) - 1);
350
351 if (out_fmt == SRP_NO_DATA_DESC && in_fmt == SRP_NO_DATA_DESC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900353 else if (out_fmt == SRP_DATA_DESC_DIRECT ||
354 in_fmt == SRP_DATA_DESC_DIRECT) {
355 struct srp_direct_buf *data =
356 (struct srp_direct_buf *) cmd->add_data;
357 dma_unmap_single(dev, data->va, data->len, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 } else {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900359 struct srp_indirect_buf *indirect =
360 (struct srp_indirect_buf *) cmd->add_data;
361 int num_mapped = indirect->table_desc.len /
362 sizeof(struct srp_direct_buf);
James Bottomley4dddbc22005-09-06 17:11:54 -0500363
364 if (num_mapped <= MAX_INDIRECT_BUFS) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900365 unmap_sg_list(num_mapped, dev, &indirect->desc_list[0]);
James Bottomley4dddbc22005-09-06 17:11:54 -0500366 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
James Bottomley4dddbc22005-09-06 17:11:54 -0500368
369 unmap_sg_list(num_mapped, dev, evt_struct->ext_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371}
372
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900373static int map_sg_list(struct scsi_cmnd *cmd, int nseg,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900374 struct srp_direct_buf *md)
James Bottomley4dddbc22005-09-06 17:11:54 -0500375{
376 int i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900377 struct scatterlist *sg;
James Bottomley4dddbc22005-09-06 17:11:54 -0500378 u64 total_length = 0;
379
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900380 scsi_for_each_sg(cmd, sg, nseg, i) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900381 struct srp_direct_buf *descr = md + i;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900382 descr->va = sg_dma_address(sg);
383 descr->len = sg_dma_len(sg);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900384 descr->key = 0;
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900385 total_length += sg_dma_len(sg);
James Bottomley4dddbc22005-09-06 17:11:54 -0500386 }
387 return total_length;
388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/**
391 * map_sg_data: - Maps dma for a scatterlist and initializes decriptor fields
392 * @cmd: Scsi_Cmnd with the scatterlist
393 * @srp_cmd: srp_cmd that contains the memory descriptor
394 * @dev: device for which to map dma memory
395 *
396 * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
397 * Returns 1 on success.
398*/
399static int map_sg_data(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500400 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 struct srp_cmd *srp_cmd, struct device *dev)
402{
403
James Bottomley4dddbc22005-09-06 17:11:54 -0500404 int sg_mapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 u64 total_length = 0;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900406 struct srp_direct_buf *data =
407 (struct srp_direct_buf *) srp_cmd->add_data;
408 struct srp_indirect_buf *indirect =
409 (struct srp_indirect_buf *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900411 sg_mapped = scsi_dma_map(cmd);
412 if (!sg_mapped)
413 return 1;
414 else if (sg_mapped < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return 0;
416
417 set_srp_direction(cmd, srp_cmd, sg_mapped);
418
419 /* special case; we can use a single direct descriptor */
420 if (sg_mapped == 1) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900421 map_sg_list(cmd, sg_mapped, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return 1;
423 }
424
FUJITA Tomonorief265672006-03-26 03:57:14 +0900425 indirect->table_desc.va = 0;
426 indirect->table_desc.len = sg_mapped * sizeof(struct srp_direct_buf);
427 indirect->table_desc.key = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
James Bottomley4dddbc22005-09-06 17:11:54 -0500429 if (sg_mapped <= MAX_INDIRECT_BUFS) {
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900430 total_length = map_sg_list(cmd, sg_mapped,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900431 &indirect->desc_list[0]);
432 indirect->len = total_length;
James Bottomley4dddbc22005-09-06 17:11:54 -0500433 return 1;
434 }
435
436 /* get indirect table */
437 if (!evt_struct->ext_list) {
FUJITA Tomonorief265672006-03-26 03:57:14 +0900438 evt_struct->ext_list = (struct srp_direct_buf *)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900439 dma_alloc_coherent(dev,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900440 SG_ALL * sizeof(struct srp_direct_buf),
441 &evt_struct->ext_list_token, 0);
James Bottomley4dddbc22005-09-06 17:11:54 -0500442 if (!evt_struct->ext_list) {
Robert Jennings7912a0a2008-07-24 04:35:27 +1000443 if (!firmware_has_feature(FW_FEATURE_CMO))
444 sdev_printk(KERN_ERR, cmd->device,
445 "Can't allocate memory "
446 "for indirect table\n");
Robert Jenningse637d552009-01-22 13:40:09 -0600447 scsi_dma_unmap(cmd);
James Bottomley4dddbc22005-09-06 17:11:54 -0500448 return 0;
James Bottomley4dddbc22005-09-06 17:11:54 -0500449 }
450 }
451
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900452 total_length = map_sg_list(cmd, sg_mapped, evt_struct->ext_list);
James Bottomley4dddbc22005-09-06 17:11:54 -0500453
FUJITA Tomonorief265672006-03-26 03:57:14 +0900454 indirect->len = total_length;
455 indirect->table_desc.va = evt_struct->ext_list_token;
456 indirect->table_desc.len = sg_mapped * sizeof(indirect->desc_list[0]);
457 memcpy(indirect->desc_list, evt_struct->ext_list,
458 MAX_INDIRECT_BUFS * sizeof(struct srp_direct_buf));
James Bottomley4dddbc22005-09-06 17:11:54 -0500459 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * map_data_for_srp_cmd: - Calls functions to map data for srp cmds
464 * @cmd: struct scsi_cmnd with the memory to be mapped
465 * @srp_cmd: srp_cmd that contains the memory descriptor
466 * @dev: dma device for which to map dma memory
467 *
468 * Called by scsi_cmd_to_srp_cmd() when converting scsi cmds to srp cmds
469 * Returns 1 on success.
470*/
471static int map_data_for_srp_cmd(struct scsi_cmnd *cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500472 struct srp_event_struct *evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct srp_cmd *srp_cmd, struct device *dev)
474{
475 switch (cmd->sc_data_direction) {
476 case DMA_FROM_DEVICE:
477 case DMA_TO_DEVICE:
478 break;
479 case DMA_NONE:
480 return 1;
481 case DMA_BIDIRECTIONAL:
Brian King6c0a60e2007-06-13 17:12:19 -0500482 sdev_printk(KERN_ERR, cmd->device,
483 "Can't map DMA_BIDIRECTIONAL to read/write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return 0;
485 default:
Brian King6c0a60e2007-06-13 17:12:19 -0500486 sdev_printk(KERN_ERR, cmd->device,
487 "Unknown data direction 0x%02x; can't map!\n",
488 cmd->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return 0;
490 }
491
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900492 return map_sg_data(cmd, evt_struct, srp_cmd, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Brian King3d0e91f2007-06-13 17:12:26 -0500495/**
496 * purge_requests: Our virtual adapter just shut down. purge any sent requests
497 * @hostdata: the adapter
498 */
499static void purge_requests(struct ibmvscsi_host_data *hostdata, int error_code)
500{
501 struct srp_event_struct *tmp_evt, *pos;
502 unsigned long flags;
503
504 spin_lock_irqsave(hostdata->host->host_lock, flags);
505 list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
506 list_del(&tmp_evt->list);
507 del_timer(&tmp_evt->timer);
508 if (tmp_evt->cmnd) {
509 tmp_evt->cmnd->result = (error_code << 16);
510 unmap_cmd_data(&tmp_evt->iu.srp.cmd,
511 tmp_evt,
512 tmp_evt->hostdata->dev);
513 if (tmp_evt->cmnd_done)
514 tmp_evt->cmnd_done(tmp_evt->cmnd);
515 } else if (tmp_evt->done)
516 tmp_evt->done(tmp_evt);
517 free_event_struct(&tmp_evt->hostdata->pool, tmp_evt);
518 }
519 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
520}
521
522/**
523 * ibmvscsi_reset_host - Reset the connection to the server
524 * @hostdata: struct ibmvscsi_host_data to reset
525*/
526static void ibmvscsi_reset_host(struct ibmvscsi_host_data *hostdata)
527{
528 scsi_block_requests(hostdata->host);
529 atomic_set(&hostdata->request_limit, 0);
530
531 purge_requests(hostdata, DID_ERROR);
David Woodhoused3849d52007-09-22 08:29:36 +1000532 if ((ibmvscsi_ops->reset_crq_queue(&hostdata->queue, hostdata)) ||
533 (ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0)) ||
Brian King3d0e91f2007-06-13 17:12:26 -0500534 (vio_enable_interrupts(to_vio_dev(hostdata->dev)))) {
535 atomic_set(&hostdata->request_limit, -1);
536 dev_err(hostdata->dev, "error after reset\n");
537 }
538
539 scsi_unblock_requests(hostdata->host);
540}
541
542/**
543 * ibmvscsi_timeout - Internal command timeout handler
544 * @evt_struct: struct srp_event_struct that timed out
545 *
546 * Called when an internally generated command times out
547*/
548static void ibmvscsi_timeout(struct srp_event_struct *evt_struct)
549{
550 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
551
552 dev_err(hostdata->dev, "Command timed out (%x). Resetting connection\n",
553 evt_struct->iu.srp.cmd.opcode);
554
555 ibmvscsi_reset_host(hostdata);
556}
557
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559/* ------------------------------------------------------------
560 * Routines for sending and receiving SRPs
561 */
562/**
563 * ibmvscsi_send_srp_event: - Transforms event to u64 array and calls send_crq()
564 * @evt_struct: evt_struct to be sent
565 * @hostdata: ibmvscsi_host_data of host
Brian King3d0e91f2007-06-13 17:12:26 -0500566 * @timeout: timeout in seconds - 0 means do not time command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 *
568 * Returns the value returned from ibmvscsi_send_crq(). (Zero for success)
569 * Note that this routine assumes that host_lock is held for synchronization
570*/
571static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct,
Brian King3d0e91f2007-06-13 17:12:26 -0500572 struct ibmvscsi_host_data *hostdata,
573 unsigned long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 u64 *crq_as_u64 = (u64 *) &evt_struct->crq;
Robert Jennings3c887e82007-10-30 11:37:07 -0500576 int request_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 int rc;
578
Robert Jenningsa897ff22007-03-28 12:45:46 -0500579 /* If we have exhausted our request limit, just fail this request,
580 * unless it is for a reset or abort.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 * Note that there are rare cases involving driver generated requests
582 * (such as task management requests) that the mid layer may think we
583 * can handle more requests (can_queue) when we actually can't
584 */
Dave C Boutchercefbda22006-06-12 21:22:51 -0500585 if (evt_struct->crq.format == VIOSRP_SRP_FORMAT) {
586 request_status =
587 atomic_dec_if_positive(&hostdata->request_limit);
588 /* If request limit was -1 when we started, it is now even
589 * less than that
590 */
591 if (request_status < -1)
592 goto send_error;
Robert Jenningsa897ff22007-03-28 12:45:46 -0500593 /* Otherwise, we may have run out of requests. */
Robert Jennings3c887e82007-10-30 11:37:07 -0500594 /* If request limit was 0 when we started the adapter is in the
595 * process of performing a login with the server adapter, or
596 * we may have run out of requests.
597 */
598 else if (request_status == -1 &&
599 evt_struct->iu.srp.login_req.opcode != SRP_LOGIN_REQ)
600 goto send_busy;
Robert Jenningsa897ff22007-03-28 12:45:46 -0500601 /* Abort and reset calls should make it through.
602 * Nothing except abort and reset should use the last two
603 * slots unless we had two or less to begin with.
604 */
605 else if (request_status < 2 &&
606 evt_struct->iu.srp.cmd.opcode != SRP_TSK_MGMT) {
607 /* In the case that we have less than two requests
608 * available, check the server limit as a combination
609 * of the request limit and the number of requests
610 * in-flight (the size of the send list). If the
611 * server limit is greater than 2, return busy so
612 * that the last two are reserved for reset and abort.
613 */
614 int server_limit = request_status;
615 struct srp_event_struct *tmp_evt;
616
617 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
618 server_limit++;
619 }
620
621 if (server_limit > 2)
622 goto send_busy;
623 }
Dave C Boutchercefbda22006-06-12 21:22:51 -0500624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 /* Copy the IU into the transfer area */
627 *evt_struct->xfer_iu = evt_struct->iu;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900628 evt_struct->xfer_iu->srp.rsp.tag = (u64)evt_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /* Add this to the sent list. We need to do this
631 * before we actually send
632 * in case it comes back REALLY fast
633 */
634 list_add_tail(&evt_struct->list, &hostdata->sent);
635
Brian King3d0e91f2007-06-13 17:12:26 -0500636 init_timer(&evt_struct->timer);
637 if (timeout) {
638 evt_struct->timer.data = (unsigned long) evt_struct;
639 evt_struct->timer.expires = jiffies + (timeout * HZ);
640 evt_struct->timer.function = (void (*)(unsigned long))ibmvscsi_timeout;
641 add_timer(&evt_struct->timer);
642 }
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if ((rc =
David Woodhoused3849d52007-09-22 08:29:36 +1000645 ibmvscsi_ops->send_crq(hostdata, crq_as_u64[0], crq_as_u64[1])) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 list_del(&evt_struct->list);
Brian King3d0e91f2007-06-13 17:12:26 -0500647 del_timer(&evt_struct->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Robert Jennings860784c2007-11-12 09:00:23 -0600649 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
650 * Firmware will send a CRQ with a transport event (0xFF) to
651 * tell this client what has happened to the transport. This
652 * will be handled in ibmvscsi_handle_crq()
653 */
654 if (rc == H_CLOSED) {
655 dev_warn(hostdata->dev, "send warning. "
656 "Receive queue closed, will retry.\n");
657 goto send_busy;
658 }
Brian King6c0a60e2007-06-13 17:12:19 -0500659 dev_err(hostdata->dev, "send error %d\n", rc);
Robert Jenningsa897ff22007-03-28 12:45:46 -0500660 atomic_inc(&hostdata->request_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 goto send_error;
662 }
663
664 return 0;
665
Dave C Boutchercefbda22006-06-12 21:22:51 -0500666 send_busy:
James Bottomley4dddbc22005-09-06 17:11:54 -0500667 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 free_event_struct(&hostdata->pool, evt_struct);
Robert Jennings3c887e82007-10-30 11:37:07 -0500670 if (request_status != -1)
671 atomic_inc(&hostdata->request_limit);
Robert Jenningsa897ff22007-03-28 12:45:46 -0500672 return SCSI_MLQUEUE_HOST_BUSY;
Dave C Boutchercefbda22006-06-12 21:22:51 -0500673
674 send_error:
675 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
676
677 if (evt_struct->cmnd != NULL) {
678 evt_struct->cmnd->result = DID_ERROR << 16;
679 evt_struct->cmnd_done(evt_struct->cmnd);
680 } else if (evt_struct->done)
681 evt_struct->done(evt_struct);
682
683 free_event_struct(&hostdata->pool, evt_struct);
684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
687/**
688 * handle_cmd_rsp: - Handle responses from commands
689 * @evt_struct: srp_event_struct to be handled
690 *
691 * Used as a callback by when sending scsi cmds.
692 * Gets called by ibmvscsi_handle_crq()
693*/
694static void handle_cmd_rsp(struct srp_event_struct *evt_struct)
695{
696 struct srp_rsp *rsp = &evt_struct->xfer_iu->srp.rsp;
697 struct scsi_cmnd *cmnd = evt_struct->cmnd;
698
FUJITA Tomonorief265672006-03-26 03:57:14 +0900699 if (unlikely(rsp->opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -0500701 dev_warn(evt_struct->hostdata->dev,
702 "bad SRP RSP type %d\n", rsp->opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704
705 if (cmnd) {
Brian Kingc3a3b552008-04-25 16:58:29 -0500706 cmnd->result |= rsp->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (((cmnd->result >> 1) & 0x1f) == CHECK_CONDITION)
708 memcpy(cmnd->sense_buffer,
FUJITA Tomonorief265672006-03-26 03:57:14 +0900709 rsp->data,
710 rsp->sense_data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 unmap_cmd_data(&evt_struct->iu.srp.cmd,
James Bottomley4dddbc22005-09-06 17:11:54 -0500712 evt_struct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 evt_struct->hostdata->dev);
714
FUJITA Tomonorief265672006-03-26 03:57:14 +0900715 if (rsp->flags & SRP_RSP_FLAG_DOOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900716 scsi_set_resid(cmnd, rsp->data_out_res_cnt);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900717 else if (rsp->flags & SRP_RSP_FLAG_DIOVER)
FUJITA Tomonori9413d7b2007-05-26 00:32:58 +0900718 scsi_set_resid(cmnd, rsp->data_in_res_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
721 if (evt_struct->cmnd_done)
722 evt_struct->cmnd_done(cmnd);
723}
724
725/**
726 * lun_from_dev: - Returns the lun of the scsi device
727 * @dev: struct scsi_device
728 *
729*/
730static inline u16 lun_from_dev(struct scsi_device *dev)
731{
732 return (0x2 << 14) | (dev->id << 8) | (dev->channel << 5) | dev->lun;
733}
734
735/**
736 * ibmvscsi_queue: - The queuecommand function of the scsi template
737 * @cmd: struct scsi_cmnd to be executed
738 * @done: Callback function to be called when cmd is completed
739*/
740static int ibmvscsi_queuecommand(struct scsi_cmnd *cmnd,
741 void (*done) (struct scsi_cmnd *))
742{
743 struct srp_cmd *srp_cmd;
744 struct srp_event_struct *evt_struct;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900745 struct srp_indirect_buf *indirect;
FUJITA Tomonori7603e022007-07-23 09:28:40 +0900746 struct ibmvscsi_host_data *hostdata = shost_priv(cmnd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 u16 lun = lun_from_dev(cmnd->device);
FUJITA Tomonorief265672006-03-26 03:57:14 +0900748 u8 out_fmt, in_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Brian Kingc3a3b552008-04-25 16:58:29 -0500750 cmnd->result = (DID_OK << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 evt_struct = get_event_struct(&hostdata->pool);
752 if (!evt_struct)
753 return SCSI_MLQUEUE_HOST_BUSY;
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 /* Set up the actual SRP IU */
756 srp_cmd = &evt_struct->iu.srp.cmd;
FUJITA Tomonorief265672006-03-26 03:57:14 +0900757 memset(srp_cmd, 0x00, SRP_MAX_IU_LEN);
758 srp_cmd->opcode = SRP_CMD;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300759 memcpy(srp_cmd->cdb, cmnd->cmnd, sizeof(srp_cmd->cdb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 srp_cmd->lun = ((u64) lun) << 48;
761
James Bottomley4dddbc22005-09-06 17:11:54 -0500762 if (!map_data_for_srp_cmd(cmnd, evt_struct, srp_cmd, hostdata->dev)) {
Robert Jennings7912a0a2008-07-24 04:35:27 +1000763 if (!firmware_has_feature(FW_FEATURE_CMO))
764 sdev_printk(KERN_ERR, cmnd->device,
765 "couldn't convert cmd to srp_cmd\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 free_event_struct(&hostdata->pool, evt_struct);
767 return SCSI_MLQUEUE_HOST_BUSY;
768 }
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 init_event_struct(evt_struct,
771 handle_cmd_rsp,
772 VIOSRP_SRP_FORMAT,
Jens Axboe242f9dc2008-09-14 05:55:09 -0700773 cmnd->request->timeout/HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 evt_struct->cmnd = cmnd;
776 evt_struct->cmnd_done = done;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /* Fix up dma address of the buffer itself */
FUJITA Tomonorief265672006-03-26 03:57:14 +0900779 indirect = (struct srp_indirect_buf *) srp_cmd->add_data;
780 out_fmt = srp_cmd->buf_fmt >> 4;
781 in_fmt = srp_cmd->buf_fmt & ((1U << 4) - 1);
782 if ((in_fmt == SRP_DATA_DESC_INDIRECT ||
783 out_fmt == SRP_DATA_DESC_INDIRECT) &&
784 indirect->table_desc.va == 0) {
785 indirect->table_desc.va = evt_struct->crq.IU_data_ptr +
786 offsetof(struct srp_cmd, add_data) +
787 offsetof(struct srp_indirect_buf, desc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789
Brian King3d0e91f2007-06-13 17:12:26 -0500790 return ibmvscsi_send_srp_event(evt_struct, hostdata, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
793/* ------------------------------------------------------------
794 * Routines for driver initialization
795 */
Brian King3507e132009-06-08 16:19:04 -0500796
797/**
Brian King126c5cc2009-06-08 16:19:08 -0500798 * map_persist_bufs: - Pre-map persistent data for adapter logins
799 * @hostdata: ibmvscsi_host_data of host
800 *
801 * Map the capabilities and adapter info DMA buffers to avoid runtime failures.
802 * Return 1 on error, 0 on success.
803 */
804static int map_persist_bufs(struct ibmvscsi_host_data *hostdata)
805{
806
807 hostdata->caps_addr = dma_map_single(hostdata->dev, &hostdata->caps,
808 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
809
810 if (dma_mapping_error(hostdata->dev, hostdata->caps_addr)) {
811 dev_err(hostdata->dev, "Unable to map capabilities buffer!\n");
812 return 1;
813 }
814
815 hostdata->adapter_info_addr = dma_map_single(hostdata->dev,
816 &hostdata->madapter_info,
817 sizeof(hostdata->madapter_info),
818 DMA_BIDIRECTIONAL);
819 if (dma_mapping_error(hostdata->dev, hostdata->adapter_info_addr)) {
820 dev_err(hostdata->dev, "Unable to map adapter info buffer!\n");
821 dma_unmap_single(hostdata->dev, hostdata->caps_addr,
822 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
823 return 1;
824 }
825
826 return 0;
827}
828
829/**
830 * unmap_persist_bufs: - Unmap persistent data needed for adapter logins
831 * @hostdata: ibmvscsi_host_data of host
832 *
833 * Unmap the capabilities and adapter info DMA buffers
834 */
835static void unmap_persist_bufs(struct ibmvscsi_host_data *hostdata)
836{
837 dma_unmap_single(hostdata->dev, hostdata->caps_addr,
838 sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
839
840 dma_unmap_single(hostdata->dev, hostdata->adapter_info_addr,
841 sizeof(hostdata->madapter_info), DMA_BIDIRECTIONAL);
842}
843
844/**
Brian King3507e132009-06-08 16:19:04 -0500845 * login_rsp: - Handle response to SRP login request
846 * @evt_struct: srp_event_struct with the response
847 *
848 * Used as a "done" callback by when sending srp_login. Gets called
849 * by ibmvscsi_handle_crq()
850*/
851static void login_rsp(struct srp_event_struct *evt_struct)
852{
853 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
854 switch (evt_struct->xfer_iu->srp.login_rsp.opcode) {
855 case SRP_LOGIN_RSP: /* it worked! */
856 break;
857 case SRP_LOGIN_REJ: /* refused! */
858 dev_info(hostdata->dev, "SRP_LOGIN_REJ reason %u\n",
859 evt_struct->xfer_iu->srp.login_rej.reason);
860 /* Login failed. */
861 atomic_set(&hostdata->request_limit, -1);
862 return;
863 default:
864 dev_err(hostdata->dev, "Invalid login response typecode 0x%02x!\n",
865 evt_struct->xfer_iu->srp.login_rsp.opcode);
866 /* Login failed. */
867 atomic_set(&hostdata->request_limit, -1);
868 return;
869 }
870
871 dev_info(hostdata->dev, "SRP_LOGIN succeeded\n");
Brian King126c5cc2009-06-08 16:19:08 -0500872 hostdata->client_migrated = 0;
Brian King3507e132009-06-08 16:19:04 -0500873
874 /* Now we know what the real request-limit is.
875 * This value is set rather than added to request_limit because
876 * request_limit could have been set to -1 by this client.
877 */
878 atomic_set(&hostdata->request_limit,
879 evt_struct->xfer_iu->srp.login_rsp.req_lim_delta);
880
881 /* If we had any pending I/Os, kick them */
882 scsi_unblock_requests(hostdata->host);
883}
884
885/**
886 * send_srp_login: - Sends the srp login
887 * @hostdata: ibmvscsi_host_data of host
888 *
889 * Returns zero if successful.
890*/
891static int send_srp_login(struct ibmvscsi_host_data *hostdata)
892{
893 int rc;
894 unsigned long flags;
895 struct srp_login_req *login;
896 struct srp_event_struct *evt_struct = get_event_struct(&hostdata->pool);
897
898 BUG_ON(!evt_struct);
899 init_event_struct(evt_struct, login_rsp,
900 VIOSRP_SRP_FORMAT, login_timeout);
901
902 login = &evt_struct->iu.srp.login_req;
903 memset(login, 0, sizeof(*login));
904 login->opcode = SRP_LOGIN_REQ;
905 login->req_it_iu_len = sizeof(union srp_iu);
906 login->req_buf_fmt = SRP_BUF_FORMAT_DIRECT | SRP_BUF_FORMAT_INDIRECT;
907
908 spin_lock_irqsave(hostdata->host->host_lock, flags);
909 /* Start out with a request limit of 0, since this is negotiated in
910 * the login request we are just sending and login requests always
911 * get sent by the driver regardless of request_limit.
912 */
913 atomic_set(&hostdata->request_limit, 0);
914
915 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, login_timeout * 2);
916 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
917 dev_info(hostdata->dev, "sent SRP login\n");
918 return rc;
919};
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921/**
Brian King126c5cc2009-06-08 16:19:08 -0500922 * capabilities_rsp: - Handle response to MAD adapter capabilities request
923 * @evt_struct: srp_event_struct with the response
924 *
925 * Used as a "done" callback by when sending adapter_info.
926 */
927static void capabilities_rsp(struct srp_event_struct *evt_struct)
928{
929 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
930
931 if (evt_struct->xfer_iu->mad.capabilities.common.status) {
932 dev_err(hostdata->dev, "error 0x%X getting capabilities info\n",
933 evt_struct->xfer_iu->mad.capabilities.common.status);
934 } else {
935 if (hostdata->caps.migration.common.server_support != SERVER_SUPPORTS_CAP)
936 dev_info(hostdata->dev, "Partition migration not supported\n");
937
938 if (client_reserve) {
939 if (hostdata->caps.reserve.common.server_support ==
940 SERVER_SUPPORTS_CAP)
941 dev_info(hostdata->dev, "Client reserve enabled\n");
942 else
943 dev_info(hostdata->dev, "Client reserve not supported\n");
944 }
945 }
946
947 send_srp_login(hostdata);
948}
949
950/**
951 * send_mad_capabilities: - Sends the mad capabilities request
952 * and stores the result so it can be retrieved with
953 * @hostdata: ibmvscsi_host_data of host
954 */
955static void send_mad_capabilities(struct ibmvscsi_host_data *hostdata)
956{
957 struct viosrp_capabilities *req;
958 struct srp_event_struct *evt_struct;
959 unsigned long flags;
Grant Likely61c7a082010-04-13 16:12:29 -0700960 struct device_node *of_node = hostdata->dev->of_node;
Brian King126c5cc2009-06-08 16:19:08 -0500961 const char *location;
962
963 evt_struct = get_event_struct(&hostdata->pool);
964 BUG_ON(!evt_struct);
965
966 init_event_struct(evt_struct, capabilities_rsp,
967 VIOSRP_MAD_FORMAT, info_timeout);
968
969 req = &evt_struct->iu.mad.capabilities;
970 memset(req, 0, sizeof(*req));
971
972 hostdata->caps.flags = CAP_LIST_SUPPORTED;
973 if (hostdata->client_migrated)
974 hostdata->caps.flags |= CLIENT_MIGRATED;
975
976 strncpy(hostdata->caps.name, dev_name(&hostdata->host->shost_gendev),
977 sizeof(hostdata->caps.name));
978 hostdata->caps.name[sizeof(hostdata->caps.name) - 1] = '\0';
979
980 location = of_get_property(of_node, "ibm,loc-code", NULL);
981 location = location ? location : dev_name(hostdata->dev);
982 strncpy(hostdata->caps.loc, location, sizeof(hostdata->caps.loc));
983 hostdata->caps.loc[sizeof(hostdata->caps.loc) - 1] = '\0';
984
985 req->common.type = VIOSRP_CAPABILITIES_TYPE;
986 req->buffer = hostdata->caps_addr;
987
988 hostdata->caps.migration.common.cap_type = MIGRATION_CAPABILITIES;
989 hostdata->caps.migration.common.length = sizeof(hostdata->caps.migration);
990 hostdata->caps.migration.common.server_support = SERVER_SUPPORTS_CAP;
991 hostdata->caps.migration.ecl = 1;
992
993 if (client_reserve) {
994 hostdata->caps.reserve.common.cap_type = RESERVATION_CAPABILITIES;
995 hostdata->caps.reserve.common.length = sizeof(hostdata->caps.reserve);
996 hostdata->caps.reserve.common.server_support = SERVER_SUPPORTS_CAP;
997 hostdata->caps.reserve.type = CLIENT_RESERVE_SCSI_2;
998 req->common.length = sizeof(hostdata->caps);
999 } else
1000 req->common.length = sizeof(hostdata->caps) - sizeof(hostdata->caps.reserve);
1001
1002 spin_lock_irqsave(hostdata->host->host_lock, flags);
1003 if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
1004 dev_err(hostdata->dev, "couldn't send CAPABILITIES_REQ!\n");
1005 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1006};
1007
1008/**
Robert Jenningsc1988e32009-06-08 16:19:07 -05001009 * fast_fail_rsp: - Handle response to MAD enable fast fail
1010 * @evt_struct: srp_event_struct with the response
1011 *
1012 * Used as a "done" callback by when sending enable fast fail. Gets called
1013 * by ibmvscsi_handle_crq()
1014 */
1015static void fast_fail_rsp(struct srp_event_struct *evt_struct)
1016{
1017 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
1018 u8 status = evt_struct->xfer_iu->mad.fast_fail.common.status;
1019
1020 if (status == VIOSRP_MAD_NOT_SUPPORTED)
1021 dev_err(hostdata->dev, "fast_fail not supported in server\n");
1022 else if (status == VIOSRP_MAD_FAILED)
1023 dev_err(hostdata->dev, "fast_fail request failed\n");
1024 else if (status != VIOSRP_MAD_SUCCESS)
1025 dev_err(hostdata->dev, "error 0x%X enabling fast_fail\n", status);
1026
Brian King126c5cc2009-06-08 16:19:08 -05001027 send_mad_capabilities(hostdata);
Robert Jenningsc1988e32009-06-08 16:19:07 -05001028}
1029
1030/**
1031 * init_host - Start host initialization
1032 * @hostdata: ibmvscsi_host_data of host
1033 *
1034 * Returns zero if successful.
1035 */
1036static int enable_fast_fail(struct ibmvscsi_host_data *hostdata)
1037{
1038 int rc;
1039 unsigned long flags;
1040 struct viosrp_fast_fail *fast_fail_mad;
1041 struct srp_event_struct *evt_struct;
1042
Brian King126c5cc2009-06-08 16:19:08 -05001043 if (!fast_fail) {
1044 send_mad_capabilities(hostdata);
1045 return 0;
1046 }
Robert Jenningsc1988e32009-06-08 16:19:07 -05001047
1048 evt_struct = get_event_struct(&hostdata->pool);
1049 BUG_ON(!evt_struct);
1050
1051 init_event_struct(evt_struct, fast_fail_rsp, VIOSRP_MAD_FORMAT, info_timeout);
1052
1053 fast_fail_mad = &evt_struct->iu.mad.fast_fail;
1054 memset(fast_fail_mad, 0, sizeof(*fast_fail_mad));
1055 fast_fail_mad->common.type = VIOSRP_ENABLE_FAST_FAIL;
1056 fast_fail_mad->common.length = sizeof(*fast_fail_mad);
1057
1058 spin_lock_irqsave(hostdata->host->host_lock, flags);
1059 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
1060 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1061 return rc;
1062}
1063
1064/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 * adapter_info_rsp: - Handle response to MAD adapter info request
1066 * @evt_struct: srp_event_struct with the response
1067 *
1068 * Used as a "done" callback by when sending adapter_info. Gets called
1069 * by ibmvscsi_handle_crq()
1070*/
1071static void adapter_info_rsp(struct srp_event_struct *evt_struct)
1072{
1073 struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 if (evt_struct->xfer_iu->mad.adapter_info.common.status) {
Brian King6c0a60e2007-06-13 17:12:19 -05001076 dev_err(hostdata->dev, "error %d getting adapter info\n",
1077 evt_struct->xfer_iu->mad.adapter_info.common.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001079 dev_info(hostdata->dev, "host srp version: %s, "
1080 "host partition %s (%d), OS %d, max io %u\n",
1081 hostdata->madapter_info.srp_version,
1082 hostdata->madapter_info.partition_name,
1083 hostdata->madapter_info.partition_number,
1084 hostdata->madapter_info.os_type,
1085 hostdata->madapter_info.port_max_txu[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 if (hostdata->madapter_info.port_max_txu[0])
1088 hostdata->host->max_sectors =
1089 hostdata->madapter_info.port_max_txu[0] >> 9;
Dave C Boutcher154fb612005-09-13 10:09:02 -05001090
1091 if (hostdata->madapter_info.os_type == 3 &&
1092 strcmp(hostdata->madapter_info.srp_version, "1.6a") <= 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001093 dev_err(hostdata->dev, "host (Ver. %s) doesn't support large transfers\n",
1094 hostdata->madapter_info.srp_version);
1095 dev_err(hostdata->dev, "limiting scatterlists to %d\n",
1096 MAX_INDIRECT_BUFS);
Dave C Boutcher154fb612005-09-13 10:09:02 -05001097 hostdata->host->sg_tablesize = MAX_INDIRECT_BUFS;
1098 }
Brian Kinge08afeb2009-06-23 17:14:01 -05001099
1100 if (hostdata->madapter_info.os_type == 3) {
1101 enable_fast_fail(hostdata);
1102 return;
1103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
Brian King3507e132009-06-08 16:19:04 -05001105
Brian Kinge08afeb2009-06-23 17:14:01 -05001106 send_srp_login(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
1109/**
1110 * send_mad_adapter_info: - Sends the mad adapter info request
1111 * and stores the result so it can be retrieved with
1112 * sysfs. We COULD consider causing a failure if the
1113 * returned SRP version doesn't match ours.
1114 * @hostdata: ibmvscsi_host_data of host
1115 *
1116 * Returns zero if successful.
1117*/
1118static void send_mad_adapter_info(struct ibmvscsi_host_data *hostdata)
1119{
1120 struct viosrp_adapter_info *req;
1121 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -05001122 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 evt_struct = get_event_struct(&hostdata->pool);
Brian King3507e132009-06-08 16:19:04 -05001125 BUG_ON(!evt_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 init_event_struct(evt_struct,
1128 adapter_info_rsp,
1129 VIOSRP_MAD_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001130 info_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 req = &evt_struct->iu.mad.adapter_info;
1133 memset(req, 0x00, sizeof(*req));
1134
1135 req->common.type = VIOSRP_ADAPTER_INFO_TYPE;
1136 req->common.length = sizeof(hostdata->madapter_info);
Brian King126c5cc2009-06-08 16:19:08 -05001137 req->buffer = hostdata->adapter_info_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Brian King06f923c2007-06-13 17:12:33 -05001139 spin_lock_irqsave(hostdata->host->host_lock, flags);
Brian King126c5cc2009-06-08 16:19:08 -05001140 if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
Brian King6c0a60e2007-06-13 17:12:19 -05001141 dev_err(hostdata->dev, "couldn't send ADAPTER_INFO_REQ!\n");
Brian King06f923c2007-06-13 17:12:33 -05001142 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143};
1144
1145/**
Brian King3507e132009-06-08 16:19:04 -05001146 * init_adapter: Start virtual adapter initialization sequence
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 *
Brian King3507e132009-06-08 16:19:04 -05001148 */
1149static void init_adapter(struct ibmvscsi_host_data *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 send_mad_adapter_info(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
1154/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 * sync_completion: Signal that a synchronous command has completed
1156 * Note that after returning from this call, the evt_struct is freed.
1157 * the caller waiting on this completion shouldn't touch the evt_struct
1158 * again.
1159 */
1160static void sync_completion(struct srp_event_struct *evt_struct)
1161{
1162 /* copy the response back */
1163 if (evt_struct->sync_srp)
1164 *evt_struct->sync_srp = *evt_struct->xfer_iu;
1165
1166 complete(&evt_struct->comp);
1167}
1168
1169/**
1170 * ibmvscsi_abort: Abort a command...from scsi host template
1171 * send this over to the server and wait synchronously for the response
1172 */
1173static int ibmvscsi_eh_abort_handler(struct scsi_cmnd *cmd)
1174{
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001175 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct srp_tsk_mgmt *tsk_mgmt;
1177 struct srp_event_struct *evt;
1178 struct srp_event_struct *tmp_evt, *found_evt;
1179 union viosrp_iu srp_rsp;
1180 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001181 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 u16 lun = lun_from_dev(cmd->device);
Robert Jennings860784c2007-11-12 09:00:23 -06001183 unsigned long wait_switch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 /* First, find this command in our sent list so we can figure
1186 * out the correct tag
1187 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001188 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001189 wait_switch = jiffies + (init_timeout * HZ);
1190 do {
1191 found_evt = NULL;
1192 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1193 if (tmp_evt->cmnd == cmd) {
1194 found_evt = tmp_evt;
1195 break;
1196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Robert Jennings860784c2007-11-12 09:00:23 -06001199 if (!found_evt) {
1200 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1201 return SUCCESS;
1202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Robert Jennings860784c2007-11-12 09:00:23 -06001204 evt = get_event_struct(&hostdata->pool);
1205 if (evt == NULL) {
1206 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1207 sdev_printk(KERN_ERR, cmd->device,
1208 "failed to allocate abort event\n");
1209 return FAILED;
1210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Robert Jennings860784c2007-11-12 09:00:23 -06001212 init_event_struct(evt,
1213 sync_completion,
1214 VIOSRP_SRP_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001215 abort_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Robert Jennings860784c2007-11-12 09:00:23 -06001217 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Robert Jennings860784c2007-11-12 09:00:23 -06001219 /* Set up an abort SRP command */
1220 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1221 tsk_mgmt->opcode = SRP_TSK_MGMT;
1222 tsk_mgmt->lun = ((u64) lun) << 48;
1223 tsk_mgmt->tsk_mgmt_func = SRP_TSK_ABORT_TASK;
1224 tsk_mgmt->task_tag = (u64) found_evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Robert Jennings860784c2007-11-12 09:00:23 -06001226 evt->sync_srp = &srp_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Robert Jennings860784c2007-11-12 09:00:23 -06001228 init_completion(&evt->comp);
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001229 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, abort_timeout * 2);
Robert Jennings860784c2007-11-12 09:00:23 -06001230
1231 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1232 break;
1233
1234 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1235 msleep(10);
1236 spin_lock_irqsave(hostdata->host->host_lock, flags);
1237 } while (time_before(jiffies, wait_switch));
1238
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001239 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001240
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001241 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001242 sdev_printk(KERN_ERR, cmd->device,
1243 "failed to send abort() event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 return FAILED;
1245 }
1246
Robert Jennings860784c2007-11-12 09:00:23 -06001247 sdev_printk(KERN_INFO, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001248 "aborting command. lun 0x%llx, tag 0x%llx\n",
Robert Jennings860784c2007-11-12 09:00:23 -06001249 (((u64) lun) << 48), (u64) found_evt);
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001254 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001256 sdev_printk(KERN_WARNING, cmd->device, "abort bad SRP RSP type %d\n",
1257 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 return FAILED;
1259 }
1260
FUJITA Tomonorief265672006-03-26 03:57:14 +09001261 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1262 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 else
1264 rsp_rc = srp_rsp.srp.rsp.status;
1265
1266 if (rsp_rc) {
1267 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001268 sdev_printk(KERN_WARNING, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001269 "abort code %d for task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001270 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return FAILED;
1272 }
1273
1274 /* Because we dropped the spinlock above, it's possible
1275 * The event is no longer in our list. Make sure it didn't
1276 * complete while we were aborting
1277 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001278 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 found_evt = NULL;
1280 list_for_each_entry(tmp_evt, &hostdata->sent, list) {
1281 if (tmp_evt->cmnd == cmd) {
1282 found_evt = tmp_evt;
1283 break;
1284 }
1285 }
1286
1287 if (found_evt == NULL) {
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001288 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Ingo Molnarfe333322009-01-06 14:26:03 +00001289 sdev_printk(KERN_INFO, cmd->device, "aborted task tag 0x%llx completed\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001290 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return SUCCESS;
1292 }
1293
Ingo Molnarfe333322009-01-06 14:26:03 +00001294 sdev_printk(KERN_INFO, cmd->device, "successfully aborted task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001295 tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 cmd->result = (DID_ABORT << 16);
1298 list_del(&found_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001299 unmap_cmd_data(&found_evt->iu.srp.cmd, found_evt,
1300 found_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 free_event_struct(&found_evt->hostdata->pool, found_evt);
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001302 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 atomic_inc(&hostdata->request_limit);
1304 return SUCCESS;
1305}
1306
1307/**
1308 * ibmvscsi_eh_device_reset_handler: Reset a single LUN...from scsi host
1309 * template send this over to the server and wait synchronously for the
1310 * response
1311 */
1312static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd *cmd)
1313{
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001314 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 struct srp_tsk_mgmt *tsk_mgmt;
1316 struct srp_event_struct *evt;
1317 struct srp_event_struct *tmp_evt, *pos;
1318 union viosrp_iu srp_rsp;
1319 int rsp_rc;
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001320 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 u16 lun = lun_from_dev(cmd->device);
Robert Jennings860784c2007-11-12 09:00:23 -06001322 unsigned long wait_switch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001324 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001325 wait_switch = jiffies + (init_timeout * HZ);
1326 do {
1327 evt = get_event_struct(&hostdata->pool);
1328 if (evt == NULL) {
1329 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1330 sdev_printk(KERN_ERR, cmd->device,
1331 "failed to allocate reset event\n");
1332 return FAILED;
1333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Robert Jennings860784c2007-11-12 09:00:23 -06001335 init_event_struct(evt,
1336 sync_completion,
1337 VIOSRP_SRP_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001338 reset_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Robert Jennings860784c2007-11-12 09:00:23 -06001340 tsk_mgmt = &evt->iu.srp.tsk_mgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Robert Jennings860784c2007-11-12 09:00:23 -06001342 /* Set up a lun reset SRP command */
1343 memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
1344 tsk_mgmt->opcode = SRP_TSK_MGMT;
1345 tsk_mgmt->lun = ((u64) lun) << 48;
1346 tsk_mgmt->tsk_mgmt_func = SRP_TSK_LUN_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Robert Jennings860784c2007-11-12 09:00:23 -06001348 evt->sync_srp = &srp_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Robert Jennings860784c2007-11-12 09:00:23 -06001350 init_completion(&evt->comp);
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001351 rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, reset_timeout * 2);
Robert Jennings860784c2007-11-12 09:00:23 -06001352
1353 if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
1354 break;
1355
1356 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
1357 msleep(10);
1358 spin_lock_irqsave(hostdata->host->host_lock, flags);
1359 } while (time_before(jiffies, wait_switch));
1360
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001361 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Robert Jennings860784c2007-11-12 09:00:23 -06001362
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001363 if (rsp_rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001364 sdev_printk(KERN_ERR, cmd->device,
1365 "failed to send reset event. rc=%d\n", rsp_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return FAILED;
1367 }
1368
Ingo Molnarfe333322009-01-06 14:26:03 +00001369 sdev_printk(KERN_INFO, cmd->device, "resetting device. lun 0x%llx\n",
Robert Jennings860784c2007-11-12 09:00:23 -06001370 (((u64) lun) << 48));
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 wait_for_completion(&evt->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 /* make sure we got a good response */
FUJITA Tomonorief265672006-03-26 03:57:14 +09001375 if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001377 sdev_printk(KERN_WARNING, cmd->device, "reset bad SRP RSP type %d\n",
1378 srp_rsp.srp.rsp.opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return FAILED;
1380 }
1381
FUJITA Tomonorief265672006-03-26 03:57:14 +09001382 if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
1383 rsp_rc = *((int *)srp_rsp.srp.rsp.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 else
1385 rsp_rc = srp_rsp.srp.rsp.status;
1386
1387 if (rsp_rc) {
1388 if (printk_ratelimit())
Brian King6c0a60e2007-06-13 17:12:19 -05001389 sdev_printk(KERN_WARNING, cmd->device,
Ingo Molnarfe333322009-01-06 14:26:03 +00001390 "reset code %d for task tag 0x%llx\n",
Brian King6c0a60e2007-06-13 17:12:19 -05001391 rsp_rc, tsk_mgmt->task_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return FAILED;
1393 }
1394
1395 /* We need to find all commands for this LUN that have not yet been
1396 * responded to, and fail them with DID_RESET
1397 */
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001398 spin_lock_irqsave(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
1400 if ((tmp_evt->cmnd) && (tmp_evt->cmnd->device == cmd->device)) {
1401 if (tmp_evt->cmnd)
1402 tmp_evt->cmnd->result = (DID_RESET << 16);
1403 list_del(&tmp_evt->list);
James Bottomley4dddbc22005-09-06 17:11:54 -05001404 unmap_cmd_data(&tmp_evt->iu.srp.cmd, tmp_evt,
1405 tmp_evt->hostdata->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 free_event_struct(&tmp_evt->hostdata->pool,
1407 tmp_evt);
1408 atomic_inc(&hostdata->request_limit);
1409 if (tmp_evt->cmnd_done)
1410 tmp_evt->cmnd_done(tmp_evt->cmnd);
1411 else if (tmp_evt->done)
1412 tmp_evt->done(tmp_evt);
1413 }
1414 }
Dave C Boutcherbe042f22005-08-15 16:52:58 -05001415 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return SUCCESS;
1417}
1418
1419/**
Brian King3d0e91f2007-06-13 17:12:26 -05001420 * ibmvscsi_eh_host_reset_handler - Reset the connection to the server
1421 * @cmd: struct scsi_cmnd having problems
1422*/
1423static int ibmvscsi_eh_host_reset_handler(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Brian King3d0e91f2007-06-13 17:12:26 -05001425 unsigned long wait_switch = 0;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001426 struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Brian King3d0e91f2007-06-13 17:12:26 -05001428 dev_err(hostdata->dev, "Resetting connection due to error recovery\n");
1429
1430 ibmvscsi_reset_host(hostdata);
1431
1432 for (wait_switch = jiffies + (init_timeout * HZ);
1433 time_before(jiffies, wait_switch) &&
1434 atomic_read(&hostdata->request_limit) < 2;) {
1435
1436 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
Brian King3d0e91f2007-06-13 17:12:26 -05001438
1439 if (atomic_read(&hostdata->request_limit) <= 0)
1440 return FAILED;
1441
1442 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
1445/**
1446 * ibmvscsi_handle_crq: - Handles and frees received events in the CRQ
1447 * @crq: Command/Response queue
1448 * @hostdata: ibmvscsi_host_data of host
1449 *
1450*/
1451void ibmvscsi_handle_crq(struct viosrp_crq *crq,
1452 struct ibmvscsi_host_data *hostdata)
1453{
Brian King6c0a60e2007-06-13 17:12:19 -05001454 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 unsigned long flags;
1456 struct srp_event_struct *evt_struct =
1457 (struct srp_event_struct *)crq->IU_data_ptr;
1458 switch (crq->valid) {
1459 case 0xC0: /* initialization */
1460 switch (crq->format) {
1461 case 0x01: /* Initialization message */
Brian King6c0a60e2007-06-13 17:12:19 -05001462 dev_info(hostdata->dev, "partner initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 /* Send back a response */
David Woodhoused3849d52007-09-22 08:29:36 +10001464 if ((rc = ibmvscsi_ops->send_crq(hostdata,
1465 0xC002000000000000LL, 0)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 /* Now login */
Brian King3507e132009-06-08 16:19:04 -05001467 init_adapter(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001469 dev_err(hostdata->dev, "Unable to send init rsp. rc=%ld\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471
1472 break;
1473 case 0x02: /* Initialization response */
Brian King6c0a60e2007-06-13 17:12:19 -05001474 dev_info(hostdata->dev, "partner initialization complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 /* Now login */
Brian King3507e132009-06-08 16:19:04 -05001477 init_adapter(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 break;
1479 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001480 dev_err(hostdata->dev, "unknown crq message type: %d\n", crq->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
1482 return;
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001483 case 0xFF: /* Hypervisor telling us the connection is closed */
1484 scsi_block_requests(hostdata->host);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001485 atomic_set(&hostdata->request_limit, 0);
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001486 if (crq->format == 0x06) {
1487 /* We need to re-setup the interpartition connection */
Brian King6c0a60e2007-06-13 17:12:19 -05001488 dev_info(hostdata->dev, "Re-enabling adapter!\n");
Brian King126c5cc2009-06-08 16:19:08 -05001489 hostdata->client_migrated = 1;
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001490 purge_requests(hostdata, DID_REQUEUE);
David Woodhoused3849d52007-09-22 08:29:36 +10001491 if ((ibmvscsi_ops->reenable_crq_queue(&hostdata->queue,
1492 hostdata)) ||
1493 (ibmvscsi_ops->send_crq(hostdata,
1494 0xC001000000000000LL, 0))) {
Dave C Boutchercefbda22006-06-12 21:22:51 -05001495 atomic_set(&hostdata->request_limit,
1496 -1);
Brian King6c0a60e2007-06-13 17:12:19 -05001497 dev_err(hostdata->dev, "error after enable\n");
Dave C Boutchercefbda22006-06-12 21:22:51 -05001498 }
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001499 } else {
Brian King6c0a60e2007-06-13 17:12:19 -05001500 dev_err(hostdata->dev, "Virtual adapter failed rc %d!\n",
1501 crq->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001503 purge_requests(hostdata, DID_ERROR);
David Woodhoused3849d52007-09-22 08:29:36 +10001504 if ((ibmvscsi_ops->reset_crq_queue(&hostdata->queue,
1505 hostdata)) ||
1506 (ibmvscsi_ops->send_crq(hostdata,
1507 0xC001000000000000LL, 0))) {
Dave C Boutchercefbda22006-06-12 21:22:51 -05001508 atomic_set(&hostdata->request_limit,
1509 -1);
Brian King6c0a60e2007-06-13 17:12:19 -05001510 dev_err(hostdata->dev, "error after reset\n");
Dave C Boutchercefbda22006-06-12 21:22:51 -05001511 }
Dave C Boutcher2b541f82006-01-19 13:34:44 -06001512 }
1513 scsi_unblock_requests(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return;
1515 case 0x80: /* real payload */
1516 break;
1517 default:
Brian King6c0a60e2007-06-13 17:12:19 -05001518 dev_err(hostdata->dev, "got an invalid message type 0x%02x\n",
1519 crq->valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return;
1521 }
1522
1523 /* The only kind of payload CRQs we should get are responses to
1524 * things we send. Make sure this response is to something we
1525 * actually sent
1526 */
1527 if (!valid_event_struct(&hostdata->pool, evt_struct)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001528 dev_err(hostdata->dev, "returned correlation_token 0x%p is invalid!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 (void *)crq->IU_data_ptr);
1530 return;
1531 }
1532
1533 if (atomic_read(&evt_struct->free)) {
Brian King6c0a60e2007-06-13 17:12:19 -05001534 dev_err(hostdata->dev, "received duplicate correlation_token 0x%p!\n",
1535 (void *)crq->IU_data_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 return;
1537 }
1538
1539 if (crq->format == VIOSRP_SRP_FORMAT)
FUJITA Tomonorief265672006-03-26 03:57:14 +09001540 atomic_add(evt_struct->xfer_iu->srp.rsp.req_lim_delta,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 &hostdata->request_limit);
1542
Brian King3d0e91f2007-06-13 17:12:26 -05001543 del_timer(&evt_struct->timer);
1544
Brian Kingca616682008-05-19 10:27:56 -05001545 if ((crq->status != VIOSRP_OK && crq->status != VIOSRP_OK2) && evt_struct->cmnd)
Brian Kingc3a3b552008-04-25 16:58:29 -05001546 evt_struct->cmnd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 if (evt_struct->done)
1548 evt_struct->done(evt_struct);
1549 else
Brian King6c0a60e2007-06-13 17:12:19 -05001550 dev_err(hostdata->dev, "returned done() is NULL; not running it!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /*
1553 * Lock the host_lock before messing with these structures, since we
1554 * are running in a task context
1555 */
1556 spin_lock_irqsave(evt_struct->hostdata->host->host_lock, flags);
1557 list_del(&evt_struct->list);
1558 free_event_struct(&evt_struct->hostdata->pool, evt_struct);
1559 spin_unlock_irqrestore(evt_struct->hostdata->host->host_lock, flags);
1560}
1561
1562/**
1563 * ibmvscsi_get_host_config: Send the command to the server to get host
1564 * configuration data. The data is opaque to us.
1565 */
1566static int ibmvscsi_do_host_config(struct ibmvscsi_host_data *hostdata,
1567 unsigned char *buffer, int length)
1568{
1569 struct viosrp_host_config *host_config;
1570 struct srp_event_struct *evt_struct;
Brian King06f923c2007-06-13 17:12:33 -05001571 unsigned long flags;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001572 dma_addr_t addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 int rc;
1574
1575 evt_struct = get_event_struct(&hostdata->pool);
1576 if (!evt_struct) {
Brian King6c0a60e2007-06-13 17:12:19 -05001577 dev_err(hostdata->dev, "couldn't allocate event for HOST_CONFIG!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return -1;
1579 }
1580
1581 init_event_struct(evt_struct,
1582 sync_completion,
1583 VIOSRP_MAD_FORMAT,
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001584 info_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 host_config = &evt_struct->iu.mad.host_config;
1587
1588 /* Set up a lun reset SRP command */
1589 memset(host_config, 0x00, sizeof(*host_config));
1590 host_config->common.type = VIOSRP_HOST_CONFIG_TYPE;
1591 host_config->common.length = length;
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001592 host_config->buffer = addr = dma_map_single(hostdata->dev, buffer,
1593 length,
1594 DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07001596 if (dma_mapping_error(hostdata->dev, host_config->buffer)) {
Robert Jennings7912a0a2008-07-24 04:35:27 +10001597 if (!firmware_has_feature(FW_FEATURE_CMO))
1598 dev_err(hostdata->dev,
1599 "dma_mapping error getting host config\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 free_event_struct(&hostdata->pool, evt_struct);
1601 return -1;
1602 }
1603
1604 init_completion(&evt_struct->comp);
Brian King06f923c2007-06-13 17:12:33 -05001605 spin_lock_irqsave(hostdata->host->host_lock, flags);
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001606 rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
Brian King06f923c2007-06-13 17:12:33 -05001607 spin_unlock_irqrestore(hostdata->host->host_lock, flags);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001608 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 wait_for_completion(&evt_struct->comp);
FUJITA Tomonorie5dbfa62006-04-14 13:52:18 +09001610 dma_unmap_single(hostdata->dev, addr, length, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 return rc;
1613}
1614
Robert Jennings0979c842007-03-29 12:30:40 -05001615/**
1616 * ibmvscsi_slave_configure: Set the "allow_restart" flag for each disk.
1617 * @sdev: struct scsi_device device to configure
1618 *
1619 * Enable allow_restart for a device if it is a disk. Adjust the
1620 * queue_depth here also as is required by the documentation for
1621 * struct scsi_host_template.
1622 */
1623static int ibmvscsi_slave_configure(struct scsi_device *sdev)
1624{
1625 struct Scsi_Host *shost = sdev->host;
1626 unsigned long lock_flags = 0;
1627
1628 spin_lock_irqsave(shost->host_lock, lock_flags);
Brian Kingd1a357f2007-10-25 16:06:34 -05001629 if (sdev->type == TYPE_DISK) {
Robert Jennings0979c842007-03-29 12:30:40 -05001630 sdev->allow_restart = 1;
Robert Jenningse1a5ce52009-06-08 16:19:03 -05001631 blk_queue_rq_timeout(sdev->request_queue, 120 * HZ);
Brian Kingd1a357f2007-10-25 16:06:34 -05001632 }
Robert Jennings0979c842007-03-29 12:30:40 -05001633 scsi_adjust_queue_depth(sdev, 0, shost->cmd_per_lun);
1634 spin_unlock_irqrestore(shost->host_lock, lock_flags);
1635 return 0;
1636}
1637
Brian King742d25b2007-05-29 15:46:14 -05001638/**
1639 * ibmvscsi_change_queue_depth - Change the device's queue depth
1640 * @sdev: scsi device struct
1641 * @qdepth: depth to set
Mike Christiee881a172009-10-15 17:46:39 -07001642 * @reason: calling context
Brian King742d25b2007-05-29 15:46:14 -05001643 *
1644 * Return value:
1645 * actual depth set
1646 **/
Mike Christiee881a172009-10-15 17:46:39 -07001647static int ibmvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth,
1648 int reason)
Brian King742d25b2007-05-29 15:46:14 -05001649{
Mike Christiee881a172009-10-15 17:46:39 -07001650 if (reason != SCSI_QDEPTH_DEFAULT)
1651 return -EOPNOTSUPP;
1652
Brian King742d25b2007-05-29 15:46:14 -05001653 if (qdepth > IBMVSCSI_MAX_CMDS_PER_LUN)
1654 qdepth = IBMVSCSI_MAX_CMDS_PER_LUN;
1655
1656 scsi_adjust_queue_depth(sdev, 0, qdepth);
1657 return sdev->queue_depth;
1658}
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660/* ------------------------------------------------------------
1661 * sysfs attributes
1662 */
Brian King126c5cc2009-06-08 16:19:08 -05001663static ssize_t show_host_vhost_loc(struct device *dev,
1664 struct device_attribute *attr, char *buf)
1665{
1666 struct Scsi_Host *shost = class_to_shost(dev);
1667 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1668 int len;
1669
1670 len = snprintf(buf, sizeof(hostdata->caps.loc), "%s\n",
1671 hostdata->caps.loc);
1672 return len;
1673}
1674
1675static struct device_attribute ibmvscsi_host_vhost_loc = {
1676 .attr = {
1677 .name = "vhost_loc",
1678 .mode = S_IRUGO,
1679 },
1680 .show = show_host_vhost_loc,
1681};
1682
1683static ssize_t show_host_vhost_name(struct device *dev,
1684 struct device_attribute *attr, char *buf)
1685{
1686 struct Scsi_Host *shost = class_to_shost(dev);
1687 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
1688 int len;
1689
1690 len = snprintf(buf, sizeof(hostdata->caps.name), "%s\n",
1691 hostdata->caps.name);
1692 return len;
1693}
1694
1695static struct device_attribute ibmvscsi_host_vhost_name = {
1696 .attr = {
1697 .name = "vhost_name",
1698 .mode = S_IRUGO,
1699 },
1700 .show = show_host_vhost_name,
1701};
1702
Tony Jonesee959b02008-02-22 00:13:36 +01001703static ssize_t show_host_srp_version(struct device *dev,
1704 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Tony Jonesee959b02008-02-22 00:13:36 +01001706 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001707 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 int len;
1709
1710 len = snprintf(buf, PAGE_SIZE, "%s\n",
1711 hostdata->madapter_info.srp_version);
1712 return len;
1713}
1714
Tony Jonesee959b02008-02-22 00:13:36 +01001715static struct device_attribute ibmvscsi_host_srp_version = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 .attr = {
1717 .name = "srp_version",
1718 .mode = S_IRUGO,
1719 },
1720 .show = show_host_srp_version,
1721};
1722
Tony Jonesee959b02008-02-22 00:13:36 +01001723static ssize_t show_host_partition_name(struct device *dev,
1724 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 char *buf)
1726{
Tony Jonesee959b02008-02-22 00:13:36 +01001727 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001728 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 int len;
1730
1731 len = snprintf(buf, PAGE_SIZE, "%s\n",
1732 hostdata->madapter_info.partition_name);
1733 return len;
1734}
1735
Tony Jonesee959b02008-02-22 00:13:36 +01001736static struct device_attribute ibmvscsi_host_partition_name = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 .attr = {
1738 .name = "partition_name",
1739 .mode = S_IRUGO,
1740 },
1741 .show = show_host_partition_name,
1742};
1743
Tony Jonesee959b02008-02-22 00:13:36 +01001744static ssize_t show_host_partition_number(struct device *dev,
1745 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 char *buf)
1747{
Tony Jonesee959b02008-02-22 00:13:36 +01001748 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001749 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 int len;
1751
1752 len = snprintf(buf, PAGE_SIZE, "%d\n",
1753 hostdata->madapter_info.partition_number);
1754 return len;
1755}
1756
Tony Jonesee959b02008-02-22 00:13:36 +01001757static struct device_attribute ibmvscsi_host_partition_number = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 .attr = {
1759 .name = "partition_number",
1760 .mode = S_IRUGO,
1761 },
1762 .show = show_host_partition_number,
1763};
1764
Tony Jonesee959b02008-02-22 00:13:36 +01001765static ssize_t show_host_mad_version(struct device *dev,
1766 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
Tony Jonesee959b02008-02-22 00:13:36 +01001768 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001769 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 int len;
1771
1772 len = snprintf(buf, PAGE_SIZE, "%d\n",
1773 hostdata->madapter_info.mad_version);
1774 return len;
1775}
1776
Tony Jonesee959b02008-02-22 00:13:36 +01001777static struct device_attribute ibmvscsi_host_mad_version = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 .attr = {
1779 .name = "mad_version",
1780 .mode = S_IRUGO,
1781 },
1782 .show = show_host_mad_version,
1783};
1784
Tony Jonesee959b02008-02-22 00:13:36 +01001785static ssize_t show_host_os_type(struct device *dev,
1786 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
Tony Jonesee959b02008-02-22 00:13:36 +01001788 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001789 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 int len;
1791
1792 len = snprintf(buf, PAGE_SIZE, "%d\n", hostdata->madapter_info.os_type);
1793 return len;
1794}
1795
Tony Jonesee959b02008-02-22 00:13:36 +01001796static struct device_attribute ibmvscsi_host_os_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 .attr = {
1798 .name = "os_type",
1799 .mode = S_IRUGO,
1800 },
1801 .show = show_host_os_type,
1802};
1803
Tony Jonesee959b02008-02-22 00:13:36 +01001804static ssize_t show_host_config(struct device *dev,
1805 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
Tony Jonesee959b02008-02-22 00:13:36 +01001807 struct Scsi_Host *shost = class_to_shost(dev);
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001808 struct ibmvscsi_host_data *hostdata = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
1810 /* returns null-terminated host config data */
1811 if (ibmvscsi_do_host_config(hostdata, buf, PAGE_SIZE) == 0)
1812 return strlen(buf);
1813 else
1814 return 0;
1815}
1816
Tony Jonesee959b02008-02-22 00:13:36 +01001817static struct device_attribute ibmvscsi_host_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 .attr = {
1819 .name = "config",
1820 .mode = S_IRUGO,
1821 },
1822 .show = show_host_config,
1823};
1824
Tony Jonesee959b02008-02-22 00:13:36 +01001825static struct device_attribute *ibmvscsi_attrs[] = {
Brian King126c5cc2009-06-08 16:19:08 -05001826 &ibmvscsi_host_vhost_loc,
1827 &ibmvscsi_host_vhost_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 &ibmvscsi_host_srp_version,
1829 &ibmvscsi_host_partition_name,
1830 &ibmvscsi_host_partition_number,
1831 &ibmvscsi_host_mad_version,
1832 &ibmvscsi_host_os_type,
1833 &ibmvscsi_host_config,
1834 NULL
1835};
1836
1837/* ------------------------------------------------------------
1838 * SCSI driver registration
1839 */
1840static struct scsi_host_template driver_template = {
1841 .module = THIS_MODULE,
1842 .name = "IBM POWER Virtual SCSI Adapter " IBMVSCSI_VERSION,
1843 .proc_name = "ibmvscsi",
1844 .queuecommand = ibmvscsi_queuecommand,
1845 .eh_abort_handler = ibmvscsi_eh_abort_handler,
1846 .eh_device_reset_handler = ibmvscsi_eh_device_reset_handler,
Brian King3d0e91f2007-06-13 17:12:26 -05001847 .eh_host_reset_handler = ibmvscsi_eh_host_reset_handler,
Robert Jennings0979c842007-03-29 12:30:40 -05001848 .slave_configure = ibmvscsi_slave_configure,
Brian King742d25b2007-05-29 15:46:14 -05001849 .change_queue_depth = ibmvscsi_change_queue_depth,
Robert Jennings7912a0a2008-07-24 04:35:27 +10001850 .cmd_per_lun = IBMVSCSI_CMDS_PER_LUN_DEFAULT,
Robert Jenningsa897ff22007-03-28 12:45:46 -05001851 .can_queue = IBMVSCSI_MAX_REQUESTS_DEFAULT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 .this_id = -1,
James Bottomley4dddbc22005-09-06 17:11:54 -05001853 .sg_tablesize = SG_ALL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 .use_clustering = ENABLE_CLUSTERING,
1855 .shost_attrs = ibmvscsi_attrs,
1856};
1857
1858/**
Robert Jennings7912a0a2008-07-24 04:35:27 +10001859 * ibmvscsi_get_desired_dma - Calculate IO memory desired by the driver
1860 *
1861 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1862 *
1863 * Return value:
1864 * Number of bytes of IO data the driver will need to perform well.
1865 */
1866static unsigned long ibmvscsi_get_desired_dma(struct vio_dev *vdev)
1867{
1868 /* iu_storage data allocated in initialize_event_pool */
Brian King4f10aae2008-12-17 17:19:33 -06001869 unsigned long desired_io = max_events * sizeof(union viosrp_iu);
Robert Jennings7912a0a2008-07-24 04:35:27 +10001870
1871 /* add io space for sg data */
Brian King004dd5e2008-08-15 10:48:47 -05001872 desired_io += (IBMVSCSI_MAX_SECTORS_DEFAULT * 512 *
Robert Jennings7912a0a2008-07-24 04:35:27 +10001873 IBMVSCSI_CMDS_PER_LUN_DEFAULT);
1874
1875 return desired_io;
1876}
1877
1878/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 * Called by bus code for each adapter
1880 */
1881static int ibmvscsi_probe(struct vio_dev *vdev, const struct vio_device_id *id)
1882{
1883 struct ibmvscsi_host_data *hostdata;
1884 struct Scsi_Host *host;
1885 struct device *dev = &vdev->dev;
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001886 struct srp_rport_identifiers ids;
1887 struct srp_rport *rport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 unsigned long wait_switch = 0;
Dave C Boutchercefbda22006-06-12 21:22:51 -05001889 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Greg Kroah-Hartman559fde72009-05-04 12:40:54 -07001891 dev_set_drvdata(&vdev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 host = scsi_host_alloc(&driver_template, sizeof(*hostdata));
1894 if (!host) {
Brian King6c0a60e2007-06-13 17:12:19 -05001895 dev_err(&vdev->dev, "couldn't allocate host data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 goto scsi_host_alloc_failed;
1897 }
1898
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001899 host->transportt = ibmvscsi_transport_template;
FUJITA Tomonori7603e022007-07-23 09:28:40 +09001900 hostdata = shost_priv(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 memset(hostdata, 0x00, sizeof(*hostdata));
1902 INIT_LIST_HEAD(&hostdata->sent);
1903 hostdata->host = host;
1904 hostdata->dev = dev;
1905 atomic_set(&hostdata->request_limit, -1);
Robert Jennings7912a0a2008-07-24 04:35:27 +10001906 hostdata->host->max_sectors = IBMVSCSI_MAX_SECTORS_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Brian King126c5cc2009-06-08 16:19:08 -05001908 if (map_persist_bufs(hostdata)) {
1909 dev_err(&vdev->dev, "couldn't map persistent buffers\n");
1910 goto persist_bufs_failed;
1911 }
1912
Brian King4f10aae2008-12-17 17:19:33 -06001913 rc = ibmvscsi_ops->init_crq_queue(&hostdata->queue, hostdata, max_events);
Dave C Boutchercefbda22006-06-12 21:22:51 -05001914 if (rc != 0 && rc != H_RESOURCE) {
Brian King6c0a60e2007-06-13 17:12:19 -05001915 dev_err(&vdev->dev, "couldn't initialize crq. rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 goto init_crq_failed;
1917 }
Brian King4f10aae2008-12-17 17:19:33 -06001918 if (initialize_event_pool(&hostdata->pool, max_events, hostdata) != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -05001919 dev_err(&vdev->dev, "couldn't initialize event pool\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 goto init_pool_failed;
1921 }
1922
1923 host->max_lun = 8;
1924 host->max_id = max_id;
1925 host->max_channel = max_channel;
Brian Kingfbc56f02009-06-08 16:19:01 -05001926 host->max_cmd_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928 if (scsi_add_host(hostdata->host, hostdata->dev))
1929 goto add_host_failed;
1930
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001931 /* we don't have a proper target_port_id so let's use the fake one */
1932 memcpy(ids.port_id, hostdata->madapter_info.partition_name,
1933 sizeof(ids.port_id));
FUJITA Tomonoriaebd5e42007-07-11 15:08:15 +09001934 ids.roles = SRP_RPORT_ROLE_TARGET;
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001935 rport = srp_rport_add(host, &ids);
1936 if (IS_ERR(rport))
1937 goto add_srp_port_failed;
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 /* Try to send an initialization message. Note that this is allowed
1940 * to fail if the other end is not acive. In that case we don't
1941 * want to scan
1942 */
David Woodhoused3849d52007-09-22 08:29:36 +10001943 if (ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0) == 0
Dave C Boutchercefbda22006-06-12 21:22:51 -05001944 || rc == H_RESOURCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 /*
1946 * Wait around max init_timeout secs for the adapter to finish
1947 * initializing. When we are done initializing, we will have a
1948 * valid request_limit. We don't want Linux scanning before
1949 * we are ready.
1950 */
1951 for (wait_switch = jiffies + (init_timeout * HZ);
1952 time_before(jiffies, wait_switch) &&
1953 atomic_read(&hostdata->request_limit) < 2;) {
1954
1955 msleep(10);
1956 }
1957
1958 /* if we now have a valid request_limit, initiate a scan */
1959 if (atomic_read(&hostdata->request_limit) > 0)
1960 scsi_scan_host(host);
1961 }
1962
Greg Kroah-Hartman559fde72009-05-04 12:40:54 -07001963 dev_set_drvdata(&vdev->dev, hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 return 0;
1965
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001966 add_srp_port_failed:
1967 scsi_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 add_host_failed:
1969 release_event_pool(&hostdata->pool, hostdata);
1970 init_pool_failed:
Brian King4f10aae2008-12-17 17:19:33 -06001971 ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata, max_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 init_crq_failed:
Brian King126c5cc2009-06-08 16:19:08 -05001973 unmap_persist_bufs(hostdata);
1974 persist_bufs_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 scsi_host_put(host);
1976 scsi_host_alloc_failed:
1977 return -1;
1978}
1979
1980static int ibmvscsi_remove(struct vio_dev *vdev)
1981{
Greg Kroah-Hartman559fde72009-05-04 12:40:54 -07001982 struct ibmvscsi_host_data *hostdata = dev_get_drvdata(&vdev->dev);
Brian King126c5cc2009-06-08 16:19:08 -05001983 unmap_persist_bufs(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 release_event_pool(&hostdata->pool, hostdata);
David Woodhoused3849d52007-09-22 08:29:36 +10001985 ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata,
Brian King4f10aae2008-12-17 17:19:33 -06001986 max_events);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09001987
1988 srp_remove_host(hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 scsi_remove_host(hostdata->host);
1990 scsi_host_put(hostdata->host);
1991
1992 return 0;
1993}
1994
1995/**
Brian King64355b92010-02-21 10:37:57 -06001996 * ibmvscsi_resume: Resume from suspend
1997 * @dev: device struct
1998 *
1999 * We may have lost an interrupt across suspend/resume, so kick the
2000 * interrupt handler
2001 */
2002static int ibmvscsi_resume(struct device *dev)
2003{
2004 struct ibmvscsi_host_data *hostdata = dev_get_drvdata(dev);
2005 return ibmvscsi_ops->resume(hostdata);
2006}
2007
2008/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 * ibmvscsi_device_table: Used by vio.c to match devices in the device tree we
2010 * support.
2011 */
2012static struct vio_device_id ibmvscsi_device_table[] __devinitdata = {
2013 {"vscsi", "IBM,v-scsi"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10002014 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016MODULE_DEVICE_TABLE(vio, ibmvscsi_device_table);
Stephen Rothwell915124d2005-10-24 15:12:22 +10002017
Brian King64355b92010-02-21 10:37:57 -06002018static struct dev_pm_ops ibmvscsi_pm_ops = {
2019 .resume = ibmvscsi_resume
2020};
2021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022static struct vio_driver ibmvscsi_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 .id_table = ibmvscsi_device_table,
2024 .probe = ibmvscsi_probe,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10002025 .remove = ibmvscsi_remove,
Robert Jennings7912a0a2008-07-24 04:35:27 +10002026 .get_desired_dma = ibmvscsi_get_desired_dma,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10002027 .driver = {
2028 .name = "ibmvscsi",
Stephen Rothwell915124d2005-10-24 15:12:22 +10002029 .owner = THIS_MODULE,
Brian King64355b92010-02-21 10:37:57 -06002030 .pm = &ibmvscsi_pm_ops,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10002031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032};
2033
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002034static struct srp_function_template ibmvscsi_transport_functions = {
2035};
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037int __init ibmvscsi_module_init(void)
2038{
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002039 int ret;
2040
Brian King4f10aae2008-12-17 17:19:33 -06002041 /* Ensure we have two requests to do error recovery */
2042 driver_template.can_queue = max_requests;
2043 max_events = max_requests + 2;
2044
David Woodhoused3849d52007-09-22 08:29:36 +10002045 if (firmware_has_feature(FW_FEATURE_ISERIES))
2046 ibmvscsi_ops = &iseriesvscsi_ops;
2047 else if (firmware_has_feature(FW_FEATURE_VIO))
2048 ibmvscsi_ops = &rpavscsi_ops;
2049 else
2050 return -ENODEV;
2051
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002052 ibmvscsi_transport_template =
2053 srp_attach_transport(&ibmvscsi_transport_functions);
2054 if (!ibmvscsi_transport_template)
2055 return -ENOMEM;
2056
2057 ret = vio_register_driver(&ibmvscsi_driver);
2058 if (ret)
2059 srp_release_transport(ibmvscsi_transport_template);
2060 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
2063void __exit ibmvscsi_module_exit(void)
2064{
2065 vio_unregister_driver(&ibmvscsi_driver);
FUJITA Tomonori4d680412007-06-27 16:32:50 +09002066 srp_release_transport(ibmvscsi_transport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068
2069module_init(ibmvscsi_module_init);
2070module_exit(ibmvscsi_module_exit);