blob: 47739f4f6709a84e6be9c9f3e72a0fd4f259dc73 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Module interface and handling of zfcp data structures.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Christof Schmitt553448f2008-06-10 18:20:58 +02006 * Copyright IBM Corporation 2002, 2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +02009/*
10 * Driver authors:
11 * Martin Peschke (originator of the driver)
12 * Raimund Schroeder
13 * Aron Zeh
14 * Wolfgang Taphorn
15 * Stefan Bader
16 * Heiko Carstens (kernel 2.6 port of the driver)
17 * Andreas Herrmann
18 * Maxim Shchetynin
19 * Volker Sameske
20 * Ralph Wuerthner
Christof Schmitt553448f2008-06-10 18:20:58 +020021 * Michael Loehr
22 * Swen Schillig
23 * Christof Schmitt
24 * Martin Petermann
25 * Sven Schuetz
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020026 */
27
Christof Schmitt45633fd2008-06-10 18:20:55 +020028#include <linux/miscdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "zfcp_ext.h"
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static char *device;
32/*********************** FUNCTION PROTOTYPES *********************************/
33
34/* written against the module interface */
35static int __init zfcp_module_init(void);
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/*********************** KERNEL/MODULE PARAMETERS ***************************/
38
39/* declare driver module init/cleanup functions */
40module_init(zfcp_module_init);
41
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020042MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
Linus Torvalds1da177e2005-04-16 15:20:36 -070043MODULE_DESCRIPTION
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020044 ("FCP (SCSI over Fibre Channel) HBA driver for IBM System z9 and zSeries");
Linus Torvalds1da177e2005-04-16 15:20:36 -070045MODULE_LICENSE("GPL");
46
6f71d9b2005-04-10 23:04:28 -050047module_param(device, charp, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048MODULE_PARM_DESC(device, "specify initial device");
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/****************************************************************/
51/************** Functions without logging ***********************/
52/****************************************************************/
53
54void
55_zfcp_hex_dump(char *addr, int count)
56{
57 int i;
58 for (i = 0; i < count; i++) {
59 printk("%02x", addr[i]);
60 if ((i % 4) == 3)
61 printk(" ");
62 if ((i % 32) == 31)
63 printk("\n");
64 }
65 if (((i-1) % 32) != 31)
66 printk("\n");
67}
68
Volker Sameskefea9d6c2006-08-02 11:05:16 +020069
70/****************************************************************/
71/****** Functions to handle the request ID hash table ********/
72/****************************************************************/
73
Heiko Carstensca2d02c2007-05-08 11:17:54 +020074static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter)
Volker Sameskefea9d6c2006-08-02 11:05:16 +020075{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020076 int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020077
78 adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head),
79 GFP_KERNEL);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020080 if (!adapter->req_list)
81 return -ENOMEM;
82
Heiko Carstensca2d02c2007-05-08 11:17:54 +020083 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
84 INIT_LIST_HEAD(&adapter->req_list[idx]);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020085 return 0;
86}
87
88static void zfcp_reqlist_free(struct zfcp_adapter *adapter)
89{
Volker Sameskefea9d6c2006-08-02 11:05:16 +020090 kfree(adapter->req_list);
91}
92
Volker Sameskefea9d6c2006-08-02 11:05:16 +020093int zfcp_reqlist_isempty(struct zfcp_adapter *adapter)
94{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020095 unsigned int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020096
Heiko Carstensca2d02c2007-05-08 11:17:54 +020097 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
98 if (!list_empty(&adapter->req_list[idx]))
Volker Sameskefea9d6c2006-08-02 11:05:16 +020099 return 0;
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200100 return 1;
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/****************************************************************/
104/************** Uncategorised Functions *************************/
105/****************************************************************/
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/**
108 * zfcp_device_setup - setup function
109 * @str: pointer to parameter string
110 *
111 * Parse "device=..." parameter string.
112 */
113static int __init
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200114zfcp_device_setup(char *devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200116 char *tmp, *str;
117 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200119 if (!devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return 0;
121
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200122 len = strlen(devstr) + 1;
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800123 str = kmalloc(len, GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200124 if (!str) {
125 pr_err("zfcp: Could not allocate memory for "
126 "device parameter string, device not attached.\n");
127 return 0;
128 }
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200129 memcpy(str, devstr, len);
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 tmp = strchr(str, ',');
132 if (!tmp)
133 goto err_out;
134 *tmp++ = '\0';
135 strncpy(zfcp_data.init_busid, str, BUS_ID_SIZE);
136 zfcp_data.init_busid[BUS_ID_SIZE-1] = '\0';
137
138 zfcp_data.init_wwpn = simple_strtoull(tmp, &tmp, 0);
139 if (*tmp++ != ',')
140 goto err_out;
141 if (*tmp == '\0')
142 goto err_out;
143
144 zfcp_data.init_fcp_lun = simple_strtoull(tmp, &tmp, 0);
145 if (*tmp != '\0')
146 goto err_out;
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200147 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return 1;
149
150 err_out:
Christof Schmitt553448f2008-06-10 18:20:58 +0200151 pr_err("zfcp: Parse error for device parameter string %s, "
152 "device not attached.\n", str);
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200153 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return 0;
155}
156
157static void __init
158zfcp_init_device_configure(void)
159{
160 struct zfcp_adapter *adapter;
161 struct zfcp_port *port;
162 struct zfcp_unit *unit;
163
164 down(&zfcp_data.config_sema);
165 read_lock_irq(&zfcp_data.config_lock);
166 adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid);
167 if (adapter)
168 zfcp_adapter_get(adapter);
169 read_unlock_irq(&zfcp_data.config_lock);
170
171 if (adapter == NULL)
172 goto out_adapter;
173 port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0);
174 if (!port)
175 goto out_port;
176 unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun);
177 if (!unit)
178 goto out_unit;
179 up(&zfcp_data.config_sema);
180 ccw_device_set_online(adapter->ccw_device);
181 zfcp_erp_wait(adapter);
182 down(&zfcp_data.config_sema);
183 zfcp_unit_put(unit);
184 out_unit:
185 zfcp_port_put(port);
186 out_port:
187 zfcp_adapter_put(adapter);
188 out_adapter:
189 up(&zfcp_data.config_sema);
190 return;
191}
192
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200193static int calc_alignment(int size)
194{
195 int align = 1;
196
197 if (!size)
198 return 0;
199
200 while ((size - align) > 0)
201 align <<= 1;
202
203 return align;
204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static int __init
207zfcp_module_init(void)
208{
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200209 int retval = -ENOMEM;
210 int size, align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200212 size = sizeof(struct zfcp_fsf_req_qtcb);
213 align = calc_alignment(size);
214 zfcp_data.fsf_req_qtcb_cache =
Paul Mundt20c2df82007-07-20 10:11:58 +0900215 kmem_cache_create("zfcp_fsf", size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200216 if (!zfcp_data.fsf_req_qtcb_cache)
217 goto out;
218
219 size = sizeof(struct fsf_status_read_buffer);
220 align = calc_alignment(size);
221 zfcp_data.sr_buffer_cache =
Paul Mundt20c2df82007-07-20 10:11:58 +0900222 kmem_cache_create("zfcp_sr", size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200223 if (!zfcp_data.sr_buffer_cache)
224 goto out_sr_cache;
225
226 size = sizeof(struct zfcp_gid_pn_data);
227 align = calc_alignment(size);
228 zfcp_data.gid_pn_cache =
Paul Mundt20c2df82007-07-20 10:11:58 +0900229 kmem_cache_create("zfcp_gid", size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200230 if (!zfcp_data.gid_pn_cache)
231 goto out_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* initialize adapter list */
234 INIT_LIST_HEAD(&zfcp_data.adapter_list_head);
235
236 /* initialize adapters to be removed list head */
237 INIT_LIST_HEAD(&zfcp_data.adapter_remove_lh);
238
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200239 zfcp_data.scsi_transport_template =
240 fc_attach_transport(&zfcp_transport_functions);
241 if (!zfcp_data.scsi_transport_template)
242 goto out_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 retval = misc_register(&zfcp_cfdc_misc);
245 if (retval != 0) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200246 pr_err("zfcp: registration of misc device zfcp_cfdc failed\n");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200247 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
250 /* Initialise proc semaphores */
251 sema_init(&zfcp_data.config_sema, 1);
252
253 /* initialise configuration rw lock */
254 rwlock_init(&zfcp_data.config_lock);
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* setup dynamic I/O */
257 retval = zfcp_ccw_register();
258 if (retval) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200259 pr_err("zfcp: Registration with common I/O layer failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 goto out_ccw_register;
261 }
262
263 if (zfcp_device_setup(device))
264 zfcp_init_device_configure();
265
266 goto out;
267
268 out_ccw_register:
269 misc_deregister(&zfcp_cfdc_misc);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200270 out_misc:
271 fc_release_transport(zfcp_data.scsi_transport_template);
272 out_transport:
273 kmem_cache_destroy(zfcp_data.gid_pn_cache);
274 out_gid_cache:
275 kmem_cache_destroy(zfcp_data.sr_buffer_cache);
276 out_sr_cache:
277 kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 out:
279 return retval;
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/****************************************************************/
283/****** Functions for configuration/set-up of structures ********/
284/****************************************************************/
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/**
287 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
288 * @port: pointer to port to search for unit
289 * @fcp_lun: FCP LUN to search for
290 * Traverse list of all units of a port and return pointer to a unit
291 * with the given FCP LUN.
292 */
293struct zfcp_unit *
294zfcp_get_unit_by_lun(struct zfcp_port *port, fcp_lun_t fcp_lun)
295{
296 struct zfcp_unit *unit;
297 int found = 0;
298
299 list_for_each_entry(unit, &port->unit_list_head, list) {
300 if ((unit->fcp_lun == fcp_lun) &&
301 !atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status))
302 {
303 found = 1;
304 break;
305 }
306 }
307 return found ? unit : NULL;
308}
309
310/**
311 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
312 * @adapter: pointer to adapter to search for port
313 * @wwpn: wwpn to search for
314 * Traverse list of all ports of an adapter and return pointer to a port
315 * with the given wwpn.
316 */
317struct zfcp_port *
318zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter, wwn_t wwpn)
319{
320 struct zfcp_port *port;
321 int found = 0;
322
323 list_for_each_entry(port, &adapter->port_list_head, list) {
324 if ((port->wwpn == wwpn) &&
325 !(atomic_read(&port->status) &
326 (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE))) {
327 found = 1;
328 break;
329 }
330 }
331 return found ? port : NULL;
332}
333
334/**
335 * zfcp_get_port_by_did - find port in port list of adapter by d_id
336 * @adapter: pointer to adapter to search for port
337 * @d_id: d_id to search for
338 * Traverse list of all ports of an adapter and return pointer to a port
339 * with the given d_id.
340 */
341struct zfcp_port *
342zfcp_get_port_by_did(struct zfcp_adapter *adapter, u32 d_id)
343{
344 struct zfcp_port *port;
345 int found = 0;
346
347 list_for_each_entry(port, &adapter->port_list_head, list) {
348 if ((port->d_id == d_id) &&
349 !atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status))
350 {
351 found = 1;
352 break;
353 }
354 }
355 return found ? port : NULL;
356}
357
358/**
359 * zfcp_get_adapter_by_busid - find adpater in adapter list by bus_id
360 * @bus_id: bus_id to search for
361 * Traverse list of all adapters and return pointer to an adapter
362 * with the given bus_id.
363 */
364struct zfcp_adapter *
365zfcp_get_adapter_by_busid(char *bus_id)
366{
367 struct zfcp_adapter *adapter;
368 int found = 0;
369
370 list_for_each_entry(adapter, &zfcp_data.adapter_list_head, list) {
371 if ((strncmp(bus_id, zfcp_get_busid_by_adapter(adapter),
372 BUS_ID_SIZE) == 0) &&
373 !atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE,
374 &adapter->status)){
375 found = 1;
376 break;
377 }
378 }
379 return found ? adapter : NULL;
380}
381
382/**
383 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
384 * @port: pointer to port where unit is added
385 * @fcp_lun: FCP LUN of unit to be enqueued
386 * Return: pointer to enqueued unit on success, NULL on error
387 * Locks: config_sema must be held to serialize changes to the unit list
388 *
389 * Sets up some unit internal structures and creates sysfs entry.
390 */
391struct zfcp_unit *
392zfcp_unit_enqueue(struct zfcp_port *port, fcp_lun_t fcp_lun)
393{
Christof Schmitt462b7852007-06-19 10:25:30 +0200394 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /*
397 * check that there is no unit with this FCP_LUN already in list
398 * and enqueue it.
399 * Note: Unlike for the adapter and the port, this is an error
400 */
401 read_lock_irq(&zfcp_data.config_lock);
402 unit = zfcp_get_unit_by_lun(port, fcp_lun);
403 read_unlock_irq(&zfcp_data.config_lock);
404 if (unit)
405 return NULL;
406
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200407 unit = kzalloc(sizeof (struct zfcp_unit), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (!unit)
409 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* initialise reference count stuff */
412 atomic_set(&unit->refcount, 0);
413 init_waitqueue_head(&unit->remove_wq);
414
415 unit->port = port;
416 unit->fcp_lun = fcp_lun;
417
418 /* setup for sysfs registration */
419 snprintf(unit->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx", fcp_lun);
420 unit->sysfs_device.parent = &port->sysfs_device;
421 unit->sysfs_device.release = zfcp_sysfs_unit_release;
422 dev_set_drvdata(&unit->sysfs_device, unit);
423
424 /* mark unit unusable as long as sysfs registration is not complete */
425 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
426
Christof Schmittc9615852008-05-06 11:00:05 +0200427 spin_lock_init(&unit->latencies.lock);
428 unit->latencies.write.channel.min = 0xFFFFFFFF;
429 unit->latencies.write.fabric.min = 0xFFFFFFFF;
430 unit->latencies.read.channel.min = 0xFFFFFFFF;
431 unit->latencies.read.fabric.min = 0xFFFFFFFF;
432 unit->latencies.cmd.channel.min = 0xFFFFFFFF;
433 unit->latencies.cmd.fabric.min = 0xFFFFFFFF;
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (device_register(&unit->sysfs_device)) {
436 kfree(unit);
437 return NULL;
438 }
439
440 if (zfcp_sysfs_unit_create_files(&unit->sysfs_device)) {
441 device_unregister(&unit->sysfs_device);
442 return NULL;
443 }
444
445 zfcp_unit_get(unit);
Christof Schmitt462b7852007-06-19 10:25:30 +0200446 unit->scsi_lun = scsilun_to_int((struct scsi_lun *)&unit->fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 write_lock_irq(&zfcp_data.config_lock);
Christof Schmitt462b7852007-06-19 10:25:30 +0200449 list_add_tail(&unit->list, &port->unit_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
451 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
452 write_unlock_irq(&zfcp_data.config_lock);
453
454 port->units++;
455 zfcp_port_get(port);
456
457 return unit;
458}
459
460void
461zfcp_unit_dequeue(struct zfcp_unit *unit)
462{
463 zfcp_unit_wait(unit);
464 write_lock_irq(&zfcp_data.config_lock);
465 list_del(&unit->list);
466 write_unlock_irq(&zfcp_data.config_lock);
467 unit->port->units--;
468 zfcp_port_put(unit->port);
469 zfcp_sysfs_unit_remove_files(&unit->sysfs_device);
470 device_unregister(&unit->sysfs_device);
471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/*
474 * Allocates a combined QTCB/fsf_req buffer for erp actions and fcp/SCSI
475 * commands.
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200476 * It also genrates fcp-nameserver request/response buffer and unsolicited
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 * status read fsf_req buffers.
478 *
479 * locks: must only be called with zfcp_data.config_sema taken
480 */
481static int
482zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
483{
484 adapter->pool.fsf_req_erp =
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200485 mempool_create_slab_pool(ZFCP_POOL_FSF_REQ_ERP_NR,
486 zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800487 if (!adapter->pool.fsf_req_erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return -ENOMEM;
489
490 adapter->pool.fsf_req_scsi =
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200491 mempool_create_slab_pool(ZFCP_POOL_FSF_REQ_SCSI_NR,
492 zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800493 if (!adapter->pool.fsf_req_scsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return -ENOMEM;
495
496 adapter->pool.fsf_req_abort =
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200497 mempool_create_slab_pool(ZFCP_POOL_FSF_REQ_ABORT_NR,
498 zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800499 if (!adapter->pool.fsf_req_abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return -ENOMEM;
501
502 adapter->pool.fsf_req_status_read =
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800503 mempool_create_kmalloc_pool(ZFCP_POOL_STATUS_READ_NR,
504 sizeof(struct zfcp_fsf_req));
505 if (!adapter->pool.fsf_req_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return -ENOMEM;
507
508 adapter->pool.data_status_read =
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200509 mempool_create_slab_pool(ZFCP_POOL_STATUS_READ_NR,
510 zfcp_data.sr_buffer_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800511 if (!adapter->pool.data_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return -ENOMEM;
513
514 adapter->pool.data_gid_pn =
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200515 mempool_create_slab_pool(ZFCP_POOL_DATA_GID_PN_NR,
516 zfcp_data.gid_pn_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800517 if (!adapter->pool.data_gid_pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return -ENOMEM;
519
520 return 0;
521}
522
523/**
524 * zfcp_free_low_mem_buffers - free memory pools of an adapter
525 * @adapter: pointer to zfcp_adapter for which memory pools should be freed
526 * locking: zfcp_data.config_sema must be held
527 */
528static void
529zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
530{
531 if (adapter->pool.fsf_req_erp)
532 mempool_destroy(adapter->pool.fsf_req_erp);
533 if (adapter->pool.fsf_req_scsi)
534 mempool_destroy(adapter->pool.fsf_req_scsi);
535 if (adapter->pool.fsf_req_abort)
536 mempool_destroy(adapter->pool.fsf_req_abort);
537 if (adapter->pool.fsf_req_status_read)
538 mempool_destroy(adapter->pool.fsf_req_status_read);
539 if (adapter->pool.data_status_read)
540 mempool_destroy(adapter->pool.data_status_read);
541 if (adapter->pool.data_gid_pn)
542 mempool_destroy(adapter->pool.data_gid_pn);
543}
544
Heiko Carstens763968e2007-05-10 15:45:46 +0200545static void zfcp_dummy_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 return;
548}
549
Swen Schilligd26ab062008-05-19 12:17:37 +0200550int zfcp_status_read_refill(struct zfcp_adapter *adapter)
551{
552 while (atomic_read(&adapter->stat_miss) > 0)
553 if (zfcp_fsf_status_read(adapter, ZFCP_WAIT_FOR_SBAL))
554 break;
555 else
556 atomic_dec(&adapter->stat_miss);
557
558 if (ZFCP_STATUS_READS_RECOM <= atomic_read(&adapter->stat_miss)) {
559 zfcp_erp_adapter_reopen(adapter, 0, 103, NULL);
560 return 1;
561 }
562 return 0;
563}
564
565static void _zfcp_status_read_scheduler(struct work_struct *work)
566{
567 zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
568 stat_work));
569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/*
572 * Enqueues an adapter at the end of the adapter list in the driver data.
573 * All adapter internal structures are set up.
574 * Proc-fs entries are also created.
575 *
Christof Schmitt553448f2008-06-10 18:20:58 +0200576 * FIXME: Use -ENOMEM as return code for allocation failures
577 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 * returns: 0 if a new adapter was successfully enqueued
579 * ZFCP_KNOWN if an adapter with this devno was already present
580 * -ENOMEM if alloc failed
581 * locks: config_sema must be held to serialise changes to the adapter list
582 */
583struct zfcp_adapter *
584zfcp_adapter_enqueue(struct ccw_device *ccw_device)
585{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 struct zfcp_adapter *adapter;
587
588 /*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200589 * Note: It is safe to release the list_lock, as any list changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 * are protected by the config_sema, which must be held to get here
591 */
592
593 /* try to allocate new adapter data structure (zeroed) */
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200594 adapter = kzalloc(sizeof (struct zfcp_adapter), GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200595 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 ccw_device->handler = NULL;
599
600 /* save ccw_device pointer */
601 adapter->ccw_device = ccw_device;
602
Swen Schillig00bab912008-06-10 18:20:57 +0200603 if (zfcp_qdio_allocate(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 goto qdio_allocate_failed;
605
Swen Schillig00bab912008-06-10 18:20:57 +0200606 if (zfcp_allocate_low_mem_buffers(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 /* initialise reference count stuff */
610 atomic_set(&adapter->refcount, 0);
611 init_waitqueue_head(&adapter->remove_wq);
612
613 /* initialise list of ports */
614 INIT_LIST_HEAD(&adapter->port_list_head);
615
616 /* initialise list of ports to be removed */
617 INIT_LIST_HEAD(&adapter->port_remove_lh);
618
619 /* initialize list of fsf requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200620 spin_lock_init(&adapter->req_list_lock);
Swen Schillig00bab912008-06-10 18:20:57 +0200621 if (zfcp_reqlist_alloc(adapter))
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200622 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100624 /* initialize debug locks */
625
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100626 spin_lock_init(&adapter->hba_dbf_lock);
627 spin_lock_init(&adapter->san_dbf_lock);
628 spin_lock_init(&adapter->scsi_dbf_lock);
Martin Peschked79a83d2008-03-27 14:22:00 +0100629 spin_lock_init(&adapter->rec_dbf_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100630
Swen Schillig00bab912008-06-10 18:20:57 +0200631 if (zfcp_adapter_debug_register(adapter))
Christof Schmittff17a292007-08-28 09:31:41 +0200632 goto debug_register_failed;
633
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100634 /* initialize error recovery stuff */
635
636 rwlock_init(&adapter->erp_lock);
637 sema_init(&adapter->erp_ready_sem, 0);
638 INIT_LIST_HEAD(&adapter->erp_ready_head);
639 INIT_LIST_HEAD(&adapter->erp_running_head);
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* initialize abort lock */
642 rwlock_init(&adapter->abort_lock);
643
644 /* initialise some erp stuff */
645 init_waitqueue_head(&adapter->erp_thread_wqh);
646 init_waitqueue_head(&adapter->erp_done_wqh);
647
648 /* initialize lock of associated request queue */
Swen Schillig00bab912008-06-10 18:20:57 +0200649 rwlock_init(&adapter->req_q.lock);
Swen Schilligd26ab062008-05-19 12:17:37 +0200650 INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 /* mark adapter unusable as long as sysfs registration is not complete */
653 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 dev_set_drvdata(&ccw_device->dev, adapter);
656
657 if (zfcp_sysfs_adapter_create_files(&ccw_device->dev))
658 goto sysfs_failed;
659
660 adapter->generic_services.parent = &adapter->ccw_device->dev;
661 adapter->generic_services.release = zfcp_dummy_release;
662 snprintf(adapter->generic_services.bus_id, BUS_ID_SIZE,
663 "generic_services");
664
665 if (device_register(&adapter->generic_services))
666 goto generic_services_failed;
667
668 /* put allocated adapter at list tail */
669 write_lock_irq(&zfcp_data.config_lock);
670 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
671 list_add_tail(&adapter->list, &zfcp_data.adapter_list_head);
672 write_unlock_irq(&zfcp_data.config_lock);
673
674 zfcp_data.adapters++;
675
676 goto out;
677
678 generic_services_failed:
679 zfcp_sysfs_adapter_remove_files(&adapter->ccw_device->dev);
680 sysfs_failed:
Christof Schmittff17a292007-08-28 09:31:41 +0200681 zfcp_adapter_debug_unregister(adapter);
682 debug_register_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 dev_set_drvdata(&ccw_device->dev, NULL);
Heiko Carstensca2d02c2007-05-08 11:17:54 +0200684 zfcp_reqlist_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 failed_low_mem_buffers:
686 zfcp_free_low_mem_buffers(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 qdio_allocate_failed:
Swen Schillig00bab912008-06-10 18:20:57 +0200688 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 kfree(adapter);
690 adapter = NULL;
691 out:
692 return adapter;
693}
694
695/*
696 * returns: 0 - struct zfcp_adapter data structure successfully removed
697 * !0 - struct zfcp_adapter data structure could not be removed
698 * (e.g. still used)
699 * locks: adapter list write lock is assumed to be held by caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 */
701void
702zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
703{
704 int retval = 0;
705 unsigned long flags;
706
Swen Schilligd26ab062008-05-19 12:17:37 +0200707 cancel_work_sync(&adapter->stat_work);
Michael Loehr9f287452007-05-09 11:01:24 +0200708 zfcp_adapter_scsi_unregister(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 device_unregister(&adapter->generic_services);
710 zfcp_sysfs_adapter_remove_files(&adapter->ccw_device->dev);
711 dev_set_drvdata(&adapter->ccw_device->dev, NULL);
712 /* sanity check: no pending FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200713 spin_lock_irqsave(&adapter->req_list_lock, flags);
714 retval = zfcp_reqlist_isempty(adapter);
715 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
716 if (!retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 retval = -EBUSY;
718 goto out;
719 }
720
Christof Schmittff17a292007-08-28 09:31:41 +0200721 zfcp_adapter_debug_unregister(adapter);
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 /* remove specified adapter data structure from list */
724 write_lock_irq(&zfcp_data.config_lock);
725 list_del(&adapter->list);
726 write_unlock_irq(&zfcp_data.config_lock);
727
728 /* decrease number of adapters in list */
729 zfcp_data.adapters--;
730
Swen Schillig00bab912008-06-10 18:20:57 +0200731 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 zfcp_free_low_mem_buffers(adapter);
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200734 zfcp_reqlist_free(adapter);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100735 kfree(adapter->fc_stats);
736 kfree(adapter->stats_reset_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 kfree(adapter);
738 out:
739 return;
740}
741
742/**
743 * zfcp_port_enqueue - enqueue port to port list of adapter
744 * @adapter: adapter where remote port is added
745 * @wwpn: WWPN of the remote port to be enqueued
746 * @status: initial status for the port
747 * @d_id: destination id of the remote port to be enqueued
748 * Return: pointer to enqueued port on success, NULL on error
749 * Locks: config_sema must be held to serialize changes to the port list
750 *
751 * All port internal structures are set up and the sysfs entry is generated.
752 * d_id is used to enqueue ports with a well known address like the Directory
753 * Service for nameserver lookup.
754 */
755struct zfcp_port *
756zfcp_port_enqueue(struct zfcp_adapter *adapter, wwn_t wwpn, u32 status,
757 u32 d_id)
758{
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700759 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 int check_wwpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 check_wwpn = !(status & ZFCP_STATUS_PORT_NO_WWPN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /*
764 * check that there is no port with this WWPN already in list
765 */
766 if (check_wwpn) {
767 read_lock_irq(&zfcp_data.config_lock);
768 port = zfcp_get_port_by_wwpn(adapter, wwpn);
769 read_unlock_irq(&zfcp_data.config_lock);
770 if (port)
771 return NULL;
772 }
773
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200774 port = kzalloc(sizeof (struct zfcp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (!port)
776 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /* initialise reference count stuff */
779 atomic_set(&port->refcount, 0);
780 init_waitqueue_head(&port->remove_wq);
781
782 INIT_LIST_HEAD(&port->unit_list_head);
783 INIT_LIST_HEAD(&port->unit_remove_lh);
784
785 port->adapter = adapter;
786
787 if (check_wwpn)
788 port->wwpn = wwpn;
789
790 atomic_set_mask(status, &port->status);
791
792 /* setup for sysfs registration */
793 if (status & ZFCP_STATUS_PORT_WKA) {
794 switch (d_id) {
795 case ZFCP_DID_DIRECTORY_SERVICE:
796 snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
797 "directory");
798 break;
799 case ZFCP_DID_MANAGEMENT_SERVICE:
800 snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
801 "management");
802 break;
803 case ZFCP_DID_KEY_DISTRIBUTION_SERVICE:
804 snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
805 "key_distribution");
806 break;
807 case ZFCP_DID_ALIAS_SERVICE:
808 snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
809 "alias");
810 break;
811 case ZFCP_DID_TIME_SERVICE:
812 snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
813 "time");
814 break;
815 default:
816 kfree(port);
817 return NULL;
818 }
819 port->d_id = d_id;
820 port->sysfs_device.parent = &adapter->generic_services;
821 } else {
822 snprintf(port->sysfs_device.bus_id,
823 BUS_ID_SIZE, "0x%016llx", wwpn);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700824 port->sysfs_device.parent = &adapter->ccw_device->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826 port->sysfs_device.release = zfcp_sysfs_port_release;
827 dev_set_drvdata(&port->sysfs_device, port);
828
829 /* mark port unusable as long as sysfs registration is not complete */
830 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
831
832 if (device_register(&port->sysfs_device)) {
833 kfree(port);
834 return NULL;
835 }
836
837 if (zfcp_sysfs_port_create_files(&port->sysfs_device, status)) {
838 device_unregister(&port->sysfs_device);
839 return NULL;
840 }
841
842 zfcp_port_get(port);
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 write_lock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700845 list_add_tail(&port->list, &adapter->port_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
847 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
848 if (d_id == ZFCP_DID_DIRECTORY_SERVICE)
849 if (!adapter->nameserver_port)
850 adapter->nameserver_port = port;
851 adapter->ports++;
852 write_unlock_irq(&zfcp_data.config_lock);
853
854 zfcp_adapter_get(adapter);
855
856 return port;
857}
858
859void
860zfcp_port_dequeue(struct zfcp_port *port)
861{
862 zfcp_port_wait(port);
863 write_lock_irq(&zfcp_data.config_lock);
864 list_del(&port->list);
865 port->adapter->ports--;
866 write_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700867 if (port->rport)
Heiko Carstens20b17302005-08-28 13:22:37 -0700868 fc_remote_port_delete(port->rport);
869 port->rport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 zfcp_adapter_put(port->adapter);
871 zfcp_sysfs_port_remove_files(&port->sysfs_device,
872 atomic_read(&port->status));
873 device_unregister(&port->sysfs_device);
874}
875
876/* Enqueues a nameserver port */
877int
878zfcp_nameserver_enqueue(struct zfcp_adapter *adapter)
879{
880 struct zfcp_port *port;
881
882 port = zfcp_port_enqueue(adapter, 0, ZFCP_STATUS_PORT_WKA,
883 ZFCP_DID_DIRECTORY_SERVICE);
Christof Schmitt553448f2008-06-10 18:20:58 +0200884 if (!port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 zfcp_port_put(port);
887
888 return 0;
889}
890
Christof Schmitt45633fd2008-06-10 18:20:55 +0200891void zfcp_sg_free_table(struct scatterlist *sg, int count)
892{
893 int i;
894
895 for (i = 0; i < count; i++, sg++)
896 if (sg)
897 free_page((unsigned long) sg_virt(sg));
898 else
899 break;
900}
901
902int zfcp_sg_setup_table(struct scatterlist *sg, int count)
903{
904 void *addr;
905 int i;
906
907 sg_init_table(sg, count);
908 for (i = 0; i < count; i++, sg++) {
909 addr = (void *) get_zeroed_page(GFP_KERNEL);
910 if (!addr) {
911 zfcp_sg_free_table(sg, i);
912 return -ENOMEM;
913 }
914 sg_set_buf(sg, addr, PAGE_SIZE);
915 }
916 return 0;
917}