zfcp_aux.c 14.6 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
C
Christof Schmitt 已提交
2
 * zfcp device driver
L
Linus Torvalds 已提交
3
 *
C
Christof Schmitt 已提交
4
 * Module interface and handling of zfcp data structures.
L
Linus Torvalds 已提交
5
 *
6
 * Copyright IBM Corp. 2002, 2013
L
Linus Torvalds 已提交
7 8
 */

9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Driver authors:
 *            Martin Peschke (originator of the driver)
 *            Raimund Schroeder
 *            Aron Zeh
 *            Wolfgang Taphorn
 *            Stefan Bader
 *            Heiko Carstens (kernel 2.6 port of the driver)
 *            Andreas Herrmann
 *            Maxim Shchetynin
 *            Volker Sameske
 *            Ralph Wuerthner
C
Christof Schmitt 已提交
21 22 23 24 25
 *            Michael Loehr
 *            Swen Schillig
 *            Christof Schmitt
 *            Martin Petermann
 *            Sven Schuetz
26
 *            Steffen Maier
27 28
 */

29 30 31
#define KMSG_COMPONENT "zfcp"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

32
#include <linux/miscdevice.h>
33
#include <linux/seq_file.h>
34
#include <linux/slab.h>
35
#include <linux/module.h>
L
Linus Torvalds 已提交
36
#include "zfcp_ext.h"
37
#include "zfcp_fc.h"
38
#include "zfcp_reqlist.h"
L
Linus Torvalds 已提交
39

40 41
#define ZFCP_BUS_ID_SIZE	20

42
MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
43
MODULE_DESCRIPTION("FCP HBA driver");
L
Linus Torvalds 已提交
44 45
MODULE_LICENSE("GPL");

46 47
static char *init_device;
module_param_named(device, init_device, charp, 0400);
L
Linus Torvalds 已提交
48 49
MODULE_PARM_DESC(device, "specify initial device");

50 51
static struct kmem_cache * __init zfcp_cache_hw_align(const char *name,
						      unsigned long size)
52 53 54 55
{
	return kmem_cache_create(name, size, roundup_pow_of_two(size), 0, NULL);
}

56
static void __init zfcp_init_device_configure(char *busid, u64 wwpn, u64 lun)
L
Linus Torvalds 已提交
57
{
58
	struct ccw_device *cdev;
L
Linus Torvalds 已提交
59 60 61
	struct zfcp_adapter *adapter;
	struct zfcp_port *port;

62 63
	cdev = get_ccwdev_by_busid(&zfcp_ccw_driver, busid);
	if (!cdev)
64 65
		return;

66 67
	if (ccw_device_set_online(cdev))
		goto out_ccw_device;
L
Linus Torvalds 已提交
68

69
	adapter = zfcp_ccw_adapter_by_cdev(cdev);
70
	if (!adapter)
71
		goto out_ccw_device;
72 73 74

	port = zfcp_get_port_by_wwpn(adapter, wwpn);
	if (!port)
L
Linus Torvalds 已提交
75
		goto out_port;
76
	flush_work(&port->rport_work);
77

78
	zfcp_unit_add(port, lun);
79
	put_device(&port->dev);
80

81
out_port:
82 83 84
	zfcp_ccw_adapter_put(adapter);
out_ccw_device:
	put_device(&cdev->dev);
L
Linus Torvalds 已提交
85 86 87
	return;
}

88 89 90
static void __init zfcp_init_device_setup(char *devstr)
{
	char *token;
91
	char *str, *str_saved;
92 93 94 95
	char busid[ZFCP_BUS_ID_SIZE];
	u64 wwpn, lun;

	/* duplicate devstr and keep the original for sysfs presentation*/
96
	str_saved = kstrdup(devstr, GFP_KERNEL);
97
	str = str_saved;
98 99 100 101 102 103 104 105 106
	if (!str)
		return;

	token = strsep(&str, ",");
	if (!token || strlen(token) >= ZFCP_BUS_ID_SIZE)
		goto err_out;
	strncpy(busid, token, ZFCP_BUS_ID_SIZE);

	token = strsep(&str, ",");
107
	if (!token || kstrtoull(token, 0, (unsigned long long *) &wwpn))
108 109 110
		goto err_out;

	token = strsep(&str, ",");
111
	if (!token || kstrtoull(token, 0, (unsigned long long *) &lun))
112 113
		goto err_out;

114
	kfree(str_saved);
115 116 117
	zfcp_init_device_configure(busid, wwpn, lun);
	return;

118 119
err_out:
	kfree(str_saved);
120 121 122
	pr_err("%s is not a valid SCSI device\n", devstr);
}

123
static int __init zfcp_module_init(void)
L
Linus Torvalds 已提交
124
{
125 126
	int retval = -ENOMEM;

127 128 129
	zfcp_fsf_qtcb_cache = zfcp_cache_hw_align("zfcp_fsf_qtcb",
						  sizeof(struct fsf_qtcb));
	if (!zfcp_fsf_qtcb_cache)
130 131
		goto out_qtcb_cache;

132 133 134 135
	zfcp_fc_req_cache = zfcp_cache_hw_align("zfcp_fc_req",
						sizeof(struct zfcp_fc_req));
	if (!zfcp_fc_req_cache)
		goto out_fc_cache;
136

137
	zfcp_scsi_transport_template =
138
		fc_attach_transport(&zfcp_transport_functions);
139
	if (!zfcp_scsi_transport_template)
140
		goto out_transport;
141
	scsi_transport_reserve_device(zfcp_scsi_transport_template,
142 143
				      sizeof(struct zfcp_scsi_dev));

144
	retval = ccw_driver_register(&zfcp_ccw_driver);
L
Linus Torvalds 已提交
145
	if (retval) {
146
		pr_err("The zfcp device driver could not register with "
147
		       "the common I/O layer\n");
L
Linus Torvalds 已提交
148 149 150
		goto out_ccw_register;
	}

151 152 153
	if (init_device)
		zfcp_init_device_setup(init_device);
	return 0;
L
Linus Torvalds 已提交
154

155
out_ccw_register:
156
	fc_release_transport(zfcp_scsi_transport_template);
157
out_transport:
158 159
	kmem_cache_destroy(zfcp_fc_req_cache);
out_fc_cache:
160
	kmem_cache_destroy(zfcp_fsf_qtcb_cache);
161
out_qtcb_cache:
L
Linus Torvalds 已提交
162 163 164
	return retval;
}

165
module_init(zfcp_module_init);
L
Linus Torvalds 已提交
166

167 168 169
static void __exit zfcp_module_exit(void)
{
	ccw_driver_unregister(&zfcp_ccw_driver);
170
	fc_release_transport(zfcp_scsi_transport_template);
171
	kmem_cache_destroy(zfcp_fc_req_cache);
172
	kmem_cache_destroy(zfcp_fsf_qtcb_cache);
173 174 175 176
}

module_exit(zfcp_module_exit);

L
Linus Torvalds 已提交
177 178 179 180
/**
 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
 * @adapter: pointer to adapter to search for port
 * @wwpn: wwpn to search for
181 182
 *
 * Returns: pointer to zfcp_port or NULL
L
Linus Torvalds 已提交
183
 */
184
struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
185
					u64 wwpn)
L
Linus Torvalds 已提交
186
{
187
	unsigned long flags;
L
Linus Torvalds 已提交
188 189
	struct zfcp_port *port;

190 191
	read_lock_irqsave(&adapter->port_list_lock, flags);
	list_for_each_entry(port, &adapter->port_list, list)
192
		if (port->wwpn == wwpn) {
193
			if (!get_device(&port->dev))
194
				port = NULL;
195
			read_unlock_irqrestore(&adapter->port_list_lock, flags);
196
			return port;
197 198
		}
	read_unlock_irqrestore(&adapter->port_list_lock, flags);
199
	return NULL;
L
Linus Torvalds 已提交
200 201
}

202
static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
L
Linus Torvalds 已提交
203
{
204 205 206
	adapter->pool.erp_req =
		mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
	if (!adapter->pool.erp_req)
L
Linus Torvalds 已提交
207 208
		return -ENOMEM;

209 210 211 212 213
	adapter->pool.gid_pn_req =
		mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
	if (!adapter->pool.gid_pn_req)
		return -ENOMEM;

214 215 216
	adapter->pool.scsi_req =
		mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
	if (!adapter->pool.scsi_req)
L
Linus Torvalds 已提交
217 218
		return -ENOMEM;

219 220 221
	adapter->pool.scsi_abort =
		mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
	if (!adapter->pool.scsi_abort)
L
Linus Torvalds 已提交
222 223
		return -ENOMEM;

224
	adapter->pool.status_read_req =
225
		mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
226
					    sizeof(struct zfcp_fsf_req));
227 228 229 230
	if (!adapter->pool.status_read_req)
		return -ENOMEM;

	adapter->pool.qtcb_pool =
231
		mempool_create_slab_pool(4, zfcp_fsf_qtcb_cache);
232
	if (!adapter->pool.qtcb_pool)
L
Linus Torvalds 已提交
233 234
		return -ENOMEM;

235 236 237 238
	BUILD_BUG_ON(sizeof(struct fsf_status_read_buffer) > PAGE_SIZE);
	adapter->pool.sr_data =
		mempool_create_page_pool(FSF_STATUS_READS_RECOM, 0);
	if (!adapter->pool.sr_data)
L
Linus Torvalds 已提交
239 240
		return -ENOMEM;

241
	adapter->pool.gid_pn =
242
		mempool_create_slab_pool(1, zfcp_fc_req_cache);
243
	if (!adapter->pool.gid_pn)
L
Linus Torvalds 已提交
244 245 246 247 248
		return -ENOMEM;

	return 0;
}

249
static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
L
Linus Torvalds 已提交
250
{
251 252 253 254 255 256 257 258 259 260
	if (adapter->pool.erp_req)
		mempool_destroy(adapter->pool.erp_req);
	if (adapter->pool.scsi_req)
		mempool_destroy(adapter->pool.scsi_req);
	if (adapter->pool.scsi_abort)
		mempool_destroy(adapter->pool.scsi_abort);
	if (adapter->pool.qtcb_pool)
		mempool_destroy(adapter->pool.qtcb_pool);
	if (adapter->pool.status_read_req)
		mempool_destroy(adapter->pool.status_read_req);
261 262
	if (adapter->pool.sr_data)
		mempool_destroy(adapter->pool.sr_data);
263 264
	if (adapter->pool.gid_pn)
		mempool_destroy(adapter->pool.gid_pn);
L
Linus Torvalds 已提交
265 266
}

267 268 269 270 271 272 273 274 275
/**
 * zfcp_status_read_refill - refill the long running status_read_requests
 * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
 *
 * Returns: 0 on success, 1 otherwise
 *
 * if there are 16 or more status_read requests missing an adapter_reopen
 * is triggered
 */
276 277 278
int zfcp_status_read_refill(struct zfcp_adapter *adapter)
{
	while (atomic_read(&adapter->stat_miss) > 0)
279
		if (zfcp_fsf_status_read(adapter->qdio)) {
280 281
			if (atomic_read(&adapter->stat_miss) >=
			    adapter->stat_read_buf_num) {
282
				zfcp_erp_adapter_reopen(adapter, 0, "axsref1");
283 284
				return 1;
			}
285
			break;
286 287
		} else
			atomic_dec(&adapter->stat_miss);
288 289 290 291 292 293 294 295 296
	return 0;
}

static void _zfcp_status_read_scheduler(struct work_struct *work)
{
	zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
					     stat_work));
}

297 298 299 300 301 302 303 304 305 306
static void zfcp_print_sl(struct seq_file *m, struct service_level *sl)
{
	struct zfcp_adapter *adapter =
		container_of(sl, struct zfcp_adapter, service_level);

	seq_printf(m, "zfcp: %s microcode level %x\n",
		   dev_name(&adapter->ccw_device->dev),
		   adapter->fsf_lic_version);
}

307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
static int zfcp_setup_adapter_work_queue(struct zfcp_adapter *adapter)
{
	char name[TASK_COMM_LEN];

	snprintf(name, sizeof(name), "zfcp_q_%s",
		 dev_name(&adapter->ccw_device->dev));
	adapter->work_queue = create_singlethread_workqueue(name);

	if (adapter->work_queue)
		return 0;
	return -ENOMEM;
}

static void zfcp_destroy_adapter_work_queue(struct zfcp_adapter *adapter)
{
	if (adapter->work_queue)
		destroy_workqueue(adapter->work_queue);
	adapter->work_queue = NULL;

}

328 329 330 331
/**
 * zfcp_adapter_enqueue - enqueue a new adapter to the list
 * @ccw_device: pointer to the struct cc_device
 *
332
 * Returns:	struct zfcp_adapter*
L
Linus Torvalds 已提交
333 334 335 336
 * Enqueues an adapter at the end of the adapter list in the driver data.
 * All adapter internal structures are set up.
 * Proc-fs entries are also created.
 */
337
struct zfcp_adapter *zfcp_adapter_enqueue(struct ccw_device *ccw_device)
L
Linus Torvalds 已提交
338 339 340
{
	struct zfcp_adapter *adapter;

341
	if (!get_device(&ccw_device->dev))
342
		return ERR_PTR(-ENODEV);
L
Linus Torvalds 已提交
343

344
	adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
345 346
	if (!adapter) {
		put_device(&ccw_device->dev);
347
		return ERR_PTR(-ENOMEM);
348 349 350
	}

	kref_init(&adapter->ref);
L
Linus Torvalds 已提交
351 352 353

	ccw_device->handler = NULL;
	adapter->ccw_device = ccw_device;
354 355

	INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
356
	INIT_WORK(&adapter->scan_work, zfcp_fc_scan_ports);
357
	INIT_WORK(&adapter->ns_up_work, zfcp_fc_sym_name_update);
L
Linus Torvalds 已提交
358

359
	if (zfcp_qdio_setup(adapter))
360
		goto failed;
L
Linus Torvalds 已提交
361

S
Swen Schillig 已提交
362
	if (zfcp_allocate_low_mem_buffers(adapter))
363
		goto failed;
L
Linus Torvalds 已提交
364

365 366
	adapter->req_list = zfcp_reqlist_alloc();
	if (!adapter->req_list)
367
		goto failed;
368

S
Swen Schillig 已提交
369
	if (zfcp_dbf_adapter_register(adapter))
370
		goto failed;
371

372
	if (zfcp_setup_adapter_work_queue(adapter))
373
		goto failed;
374

375
	if (zfcp_fc_gs_setup(adapter))
376
		goto failed;
377

378 379 380
	rwlock_init(&adapter->port_list_lock);
	INIT_LIST_HEAD(&adapter->port_list);

381 382 383 384
	INIT_LIST_HEAD(&adapter->events.list);
	INIT_WORK(&adapter->events.work, zfcp_fc_post_event);
	spin_lock_init(&adapter->events.list_lock);

385
	init_waitqueue_head(&adapter->erp_ready_wq);
386
	init_waitqueue_head(&adapter->erp_done_wqh);
L
Linus Torvalds 已提交
387

388 389
	INIT_LIST_HEAD(&adapter->erp_ready_head);
	INIT_LIST_HEAD(&adapter->erp_running_head);
L
Linus Torvalds 已提交
390

391
	rwlock_init(&adapter->erp_lock);
L
Linus Torvalds 已提交
392 393
	rwlock_init(&adapter->abort_lock);

394
	if (zfcp_erp_thread_setup(adapter))
395
		goto failed;
L
Linus Torvalds 已提交
396

397 398
	adapter->service_level.seq_print = zfcp_print_sl;

L
Linus Torvalds 已提交
399 400
	dev_set_drvdata(&ccw_device->dev, adapter);

401 402
	if (sysfs_create_group(&ccw_device->dev.kobj,
			       &zfcp_sysfs_adapter_attrs))
403
		goto failed;
L
Linus Torvalds 已提交
404

405 406 407 408
	/* report size limit per scatter-gather segment */
	adapter->dma_parms.max_segment_size = ZFCP_QDIO_SBALE_LEN;
	adapter->ccw_device->dev.dma_parms = &adapter->dma_parms;

409 410
	adapter->stat_read_buf_num = FSF_STATUS_READS_RECOM;

411
	if (!zfcp_scsi_adapter_register(adapter))
412
		return adapter;
L
Linus Torvalds 已提交
413

414
failed:
415 416 417 418 419 420 421 422 423 424
	zfcp_adapter_unregister(adapter);
	return ERR_PTR(-ENOMEM);
}

void zfcp_adapter_unregister(struct zfcp_adapter *adapter)
{
	struct ccw_device *cdev = adapter->ccw_device;

	cancel_work_sync(&adapter->scan_work);
	cancel_work_sync(&adapter->stat_work);
425
	cancel_work_sync(&adapter->ns_up_work);
426 427 428
	zfcp_destroy_adapter_work_queue(adapter);

	zfcp_fc_wka_ports_force_offline(adapter->gs);
429
	zfcp_scsi_adapter_unregister(adapter);
430 431 432
	sysfs_remove_group(&cdev->dev.kobj, &zfcp_sysfs_adapter_attrs);

	zfcp_erp_thread_kill(adapter);
433
	zfcp_dbf_adapter_unregister(adapter);
434 435 436
	zfcp_qdio_destroy(adapter->qdio);

	zfcp_ccw_adapter_put(adapter); /* final put to release */
L
Linus Torvalds 已提交
437 438
}

439
/**
440 441
 * zfcp_adapter_release - remove the adapter from the resource list
 * @ref: pointer to struct kref
L
Linus Torvalds 已提交
442 443
 * locks:	adapter list write lock is assumed to be held by caller
 */
444
void zfcp_adapter_release(struct kref *ref)
L
Linus Torvalds 已提交
445
{
446 447
	struct zfcp_adapter *adapter = container_of(ref, struct zfcp_adapter,
						    ref);
448
	struct ccw_device *cdev = adapter->ccw_device;
L
Linus Torvalds 已提交
449

450
	dev_set_drvdata(&adapter->ccw_device->dev, NULL);
451
	zfcp_fc_gs_destroy(adapter);
L
Linus Torvalds 已提交
452
	zfcp_free_low_mem_buffers(adapter);
453
	kfree(adapter->req_list);
454 455
	kfree(adapter->fc_stats);
	kfree(adapter->stats_reset_data);
L
Linus Torvalds 已提交
456
	kfree(adapter);
457
	put_device(&cdev->dev);
458 459 460
}

static void zfcp_port_release(struct device *dev)
461
{
462
	struct zfcp_port *port = container_of(dev, struct zfcp_port, dev);
463

464
	zfcp_ccw_adapter_put(port->adapter);
465
	kfree(port);
466 467
}

L
Linus Torvalds 已提交
468 469 470 471 472 473
/**
 * zfcp_port_enqueue - enqueue port to port list of adapter
 * @adapter: adapter where remote port is added
 * @wwpn: WWPN of the remote port to be enqueued
 * @status: initial status for the port
 * @d_id: destination id of the remote port to be enqueued
474
 * Returns: pointer to enqueued port on success, ERR_PTR on error
L
Linus Torvalds 已提交
475 476 477 478 479
 *
 * All port internal structures are set up and the sysfs entry is generated.
 * d_id is used to enqueue ports with a well known address like the Directory
 * Service for nameserver lookup.
 */
480
struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
481
				     u32 status, u32 d_id)
L
Linus Torvalds 已提交
482
{
483
	struct zfcp_port *port;
484 485 486
	int retval = -ENOMEM;

	kref_get(&adapter->ref);
487

488 489
	port = zfcp_get_port_by_wwpn(adapter, wwpn);
	if (port) {
490
		put_device(&port->dev);
491 492
		retval = -EEXIST;
		goto err_out;
493
	}
L
Linus Torvalds 已提交
494

495
	port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
L
Linus Torvalds 已提交
496
	if (!port)
497
		goto err_out;
L
Linus Torvalds 已提交
498

499 500
	rwlock_init(&port->unit_list_lock);
	INIT_LIST_HEAD(&port->unit_list);
501
	atomic_set(&port->units, 0);
502

503
	INIT_WORK(&port->gid_pn_work, zfcp_fc_port_did_lookup);
504
	INIT_WORK(&port->test_link_work, zfcp_fc_link_test_work);
505
	INIT_WORK(&port->rport_work, zfcp_scsi_rport_work);
L
Linus Torvalds 已提交
506 507

	port->adapter = adapter;
508 509
	port->d_id = d_id;
	port->wwpn = wwpn;
510
	port->rport_task = RPORT_NONE;
511
	port->dev.parent = &adapter->ccw_device->dev;
512
	port->dev.groups = zfcp_port_attr_groups;
513
	port->dev.release = zfcp_port_release;
L
Linus Torvalds 已提交
514

515
	if (dev_set_name(&port->dev, "0x%016llx", (unsigned long long)wwpn)) {
516
		kfree(port);
517
		goto err_out;
518
	}
519
	retval = -EINVAL;
L
Linus Torvalds 已提交
520

521 522
	if (device_register(&port->dev)) {
		put_device(&port->dev);
523
		goto err_out;
524
	}
L
Linus Torvalds 已提交
525

526 527 528 529
	write_lock_irq(&adapter->port_list_lock);
	list_add_tail(&port->list, &adapter->port_list);
	write_unlock_irq(&adapter->port_list_lock);

530
	atomic_set_mask(status | ZFCP_STATUS_COMMON_RUNNING, &port->status);
531

L
Linus Torvalds 已提交
532 533
	return port;

534
err_out:
535
	zfcp_ccw_adapter_put(adapter);
536
	return ERR_PTR(retval);
L
Linus Torvalds 已提交
537 538
}

539 540 541 542 543 544
/**
 * zfcp_sg_free_table - free memory used by scatterlists
 * @sg: pointer to scatterlist
 * @count: number of scatterlist which are to be free'ed
 * the scatterlist are expected to reference pages always
 */
545 546 547 548 549 550 551 552 553 554 555
void zfcp_sg_free_table(struct scatterlist *sg, int count)
{
	int i;

	for (i = 0; i < count; i++, sg++)
		if (sg)
			free_page((unsigned long) sg_virt(sg));
		else
			break;
}

556 557 558 559 560 561 562 563
/**
 * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
 * @sg: pointer to struct scatterlist
 * @count: number of scatterlists which should be assigned with buffers
 * of size page
 *
 * Returns: 0 on success, -ENOMEM otherwise
 */
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
int zfcp_sg_setup_table(struct scatterlist *sg, int count)
{
	void *addr;
	int i;

	sg_init_table(sg, count);
	for (i = 0; i < count; i++, sg++) {
		addr = (void *) get_zeroed_page(GFP_KERNEL);
		if (!addr) {
			zfcp_sg_free_table(sg, i);
			return -ENOMEM;
		}
		sg_set_buf(sg, addr, PAGE_SIZE);
	}
	return 0;
}