zfcp_aux.c 18.9 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 Corporation 2002, 2009
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 27
 */

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

31
#include <linux/miscdevice.h>
32
#include <linux/seq_file.h>
L
Linus Torvalds 已提交
33 34
#include "zfcp_ext.h"

35 36
#define ZFCP_BUS_ID_SIZE	20

37
MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
38
MODULE_DESCRIPTION("FCP HBA driver");
L
Linus Torvalds 已提交
39 40
MODULE_LICENSE("GPL");

41 42
static char *init_device;
module_param_named(device, init_device, charp, 0400);
L
Linus Torvalds 已提交
43 44
MODULE_PARM_DESC(device, "specify initial device");

45 46 47 48 49 50
static struct kmem_cache *zfcp_cache_hw_align(const char *name,
					      unsigned long size)
{
	return kmem_cache_create(name, size, roundup_pow_of_two(size), 0, NULL);
}

51
static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter)
52
{
53
	int idx;
54 55 56 57 58 59

	adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head),
				    GFP_KERNEL);
	if (!adapter->req_list)
		return -ENOMEM;

60 61
	for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
		INIT_LIST_HEAD(&adapter->req_list[idx]);
62 63 64
	return 0;
}

65 66 67 68 69 70
/**
 * zfcp_reqlist_isempty - is the request list empty
 * @adapter: pointer to struct zfcp_adapter
 *
 * Returns: true if list is empty, false otherwise
 */
71 72
int zfcp_reqlist_isempty(struct zfcp_adapter *adapter)
{
73
	unsigned int idx;
74

75 76
	for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
		if (!list_empty(&adapter->req_list[idx]))
77 78 79 80
			return 0;
	return 1;
}

81
static void __init zfcp_init_device_configure(char *busid, u64 wwpn, u64 lun)
L
Linus Torvalds 已提交
82
{
83
	struct ccw_device *cdev;
L
Linus Torvalds 已提交
84 85 86 87
	struct zfcp_adapter *adapter;
	struct zfcp_port *port;
	struct zfcp_unit *unit;

88 89
	cdev = get_ccwdev_by_busid(&zfcp_ccw_driver, busid);
	if (!cdev)
90 91
		return;

92 93
	if (ccw_device_set_online(cdev))
		goto out_ccw_device;
L
Linus Torvalds 已提交
94

95
	adapter = zfcp_ccw_adapter_by_cdev(cdev);
96
	if (!adapter)
97
		goto out_ccw_device;
98 99 100

	port = zfcp_get_port_by_wwpn(adapter, wwpn);
	if (!port)
L
Linus Torvalds 已提交
101
		goto out_port;
102

103
	unit = zfcp_unit_enqueue(port, lun);
104
	if (IS_ERR(unit))
L
Linus Torvalds 已提交
105
		goto out_unit;
106

107
	zfcp_erp_unit_reopen(unit, 0, "auidc_1", NULL);
L
Linus Torvalds 已提交
108
	zfcp_erp_wait(adapter);
109
	flush_work(&unit->scsi_work);
110

111
out_unit:
112
	put_device(&port->sysfs_device);
113
out_port:
114 115 116
	zfcp_ccw_adapter_put(adapter);
out_ccw_device:
	put_device(&cdev->dev);
L
Linus Torvalds 已提交
117 118 119
	return;
}

120 121 122
static void __init zfcp_init_device_setup(char *devstr)
{
	char *token;
123
	char *str, *str_saved;
124 125 126 127
	char busid[ZFCP_BUS_ID_SIZE];
	u64 wwpn, lun;

	/* duplicate devstr and keep the original for sysfs presentation*/
128 129
	str_saved = kmalloc(strlen(devstr) + 1, GFP_KERNEL);
	str = str_saved;
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
	if (!str)
		return;

	strcpy(str, devstr);

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

	token = strsep(&str, ",");
	if (!token || strict_strtoull(token, 0, (unsigned long long *) &wwpn))
		goto err_out;

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

148
	kfree(str_saved);
149 150 151
	zfcp_init_device_configure(busid, wwpn, lun);
	return;

152 153
err_out:
	kfree(str_saved);
154 155 156
	pr_err("%s is not a valid SCSI device\n", devstr);
}

157
static int __init zfcp_module_init(void)
L
Linus Torvalds 已提交
158
{
159 160
	int retval = -ENOMEM;

161 162 163
	zfcp_data.gpn_ft_cache = zfcp_cache_hw_align("zfcp_gpn",
					sizeof(struct ct_iu_gpn_ft_req));
	if (!zfcp_data.gpn_ft_cache)
164
		goto out;
L
Linus Torvalds 已提交
165

166 167 168 169 170 171 172
	zfcp_data.qtcb_cache = zfcp_cache_hw_align("zfcp_qtcb",
					sizeof(struct fsf_qtcb));
	if (!zfcp_data.qtcb_cache)
		goto out_qtcb_cache;

	zfcp_data.sr_buffer_cache = zfcp_cache_hw_align("zfcp_sr",
					sizeof(struct fsf_status_read_buffer));
173 174 175
	if (!zfcp_data.sr_buffer_cache)
		goto out_sr_cache;

176 177
	zfcp_data.gid_pn_cache = zfcp_cache_hw_align("zfcp_gid",
					sizeof(struct zfcp_gid_pn_data));
178 179
	if (!zfcp_data.gid_pn_cache)
		goto out_gid_cache;
L
Linus Torvalds 已提交
180

181 182 183 184
	zfcp_data.scsi_transport_template =
		fc_attach_transport(&zfcp_transport_functions);
	if (!zfcp_data.scsi_transport_template)
		goto out_transport;
L
Linus Torvalds 已提交
185 186

	retval = misc_register(&zfcp_cfdc_misc);
187
	if (retval) {
188
		pr_err("Registering the misc device zfcp_cfdc failed\n");
189
		goto out_misc;
L
Linus Torvalds 已提交
190 191
	}

192
	retval = ccw_driver_register(&zfcp_ccw_driver);
L
Linus Torvalds 已提交
193
	if (retval) {
194
		pr_err("The zfcp device driver could not register with "
195
		       "the common I/O layer\n");
L
Linus Torvalds 已提交
196 197 198
		goto out_ccw_register;
	}

199 200 201
	if (init_device)
		zfcp_init_device_setup(init_device);
	return 0;
L
Linus Torvalds 已提交
202

203
out_ccw_register:
L
Linus Torvalds 已提交
204
	misc_deregister(&zfcp_cfdc_misc);
205
out_misc:
206
	fc_release_transport(zfcp_data.scsi_transport_template);
207
out_transport:
208
	kmem_cache_destroy(zfcp_data.gid_pn_cache);
209
out_gid_cache:
210
	kmem_cache_destroy(zfcp_data.sr_buffer_cache);
211
out_sr_cache:
212 213 214
	kmem_cache_destroy(zfcp_data.qtcb_cache);
out_qtcb_cache:
	kmem_cache_destroy(zfcp_data.gpn_ft_cache);
215
out:
L
Linus Torvalds 已提交
216 217 218
	return retval;
}

219
module_init(zfcp_module_init);
L
Linus Torvalds 已提交
220

221 222 223 224 225 226 227 228 229 230 231 232 233
static void __exit zfcp_module_exit(void)
{
	ccw_driver_unregister(&zfcp_ccw_driver);
	misc_deregister(&zfcp_cfdc_misc);
	fc_release_transport(zfcp_data.scsi_transport_template);
	kmem_cache_destroy(zfcp_data.gid_pn_cache);
	kmem_cache_destroy(zfcp_data.sr_buffer_cache);
	kmem_cache_destroy(zfcp_data.qtcb_cache);
	kmem_cache_destroy(zfcp_data.gpn_ft_cache);
}

module_exit(zfcp_module_exit);

L
Linus Torvalds 已提交
234 235 236 237
/**
 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
 * @port: pointer to port to search for unit
 * @fcp_lun: FCP LUN to search for
238 239
 *
 * Returns: pointer to zfcp_unit or NULL
L
Linus Torvalds 已提交
240
 */
241
struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun)
L
Linus Torvalds 已提交
242
{
243
	unsigned long flags;
L
Linus Torvalds 已提交
244 245
	struct zfcp_unit *unit;

246 247
	read_lock_irqsave(&port->unit_list_lock, flags);
	list_for_each_entry(unit, &port->unit_list, list)
248 249 250
		if (unit->fcp_lun == fcp_lun) {
			if (!get_device(&unit->sysfs_device))
				unit = NULL;
251 252 253 254
			read_unlock_irqrestore(&port->unit_list_lock, flags);
			return unit;
		}
	read_unlock_irqrestore(&port->unit_list_lock, flags);
255
	return NULL;
L
Linus Torvalds 已提交
256 257 258 259 260 261
}

/**
 * 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
262 263
 *
 * Returns: pointer to zfcp_port or NULL
L
Linus Torvalds 已提交
264
 */
265
struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
266
					u64 wwpn)
L
Linus Torvalds 已提交
267
{
268
	unsigned long flags;
L
Linus Torvalds 已提交
269 270
	struct zfcp_port *port;

271 272
	read_lock_irqsave(&adapter->port_list_lock, flags);
	list_for_each_entry(port, &adapter->port_list, list)
273 274 275
		if (port->wwpn == wwpn) {
			if (!get_device(&port->sysfs_device))
				port = NULL;
276
			read_unlock_irqrestore(&adapter->port_list_lock, flags);
277
			return port;
278 279
		}
	read_unlock_irqrestore(&adapter->port_list_lock, flags);
280
	return NULL;
L
Linus Torvalds 已提交
281 282
}

283 284 285 286 287 288 289 290
/**
 * zfcp_unit_release - dequeue unit
 * @dev: pointer to device
 *
 * waits until all work is done on unit and removes it then from the unit->list
 * of the associated port.
 */
static void zfcp_unit_release(struct device *dev)
291
{
292 293 294 295 296
	struct zfcp_unit *unit = container_of(dev, struct zfcp_unit,
					      sysfs_device);

	put_device(&unit->port->sysfs_device);
	kfree(unit);
297 298
}

L
Linus Torvalds 已提交
299 300 301 302
/**
 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
 * @port: pointer to port where unit is added
 * @fcp_lun: FCP LUN of unit to be enqueued
303
 * Returns: pointer to enqueued unit on success, ERR_PTR on error
L
Linus Torvalds 已提交
304 305 306
 *
 * Sets up some unit internal structures and creates sysfs entry.
 */
307
struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
L
Linus Torvalds 已提交
308
{
309
	struct zfcp_unit *unit;
310 311 312
	int retval = -ENOMEM;

	get_device(&port->sysfs_device);
L
Linus Torvalds 已提交
313

314 315
	unit = zfcp_get_unit_by_lun(port, fcp_lun);
	if (unit) {
316 317 318
		put_device(&unit->sysfs_device);
		retval = -EEXIST;
		goto err_out;
319 320
	}

321
	unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
L
Linus Torvalds 已提交
322
	if (!unit)
323
		goto err_out;
L
Linus Torvalds 已提交
324 325 326

	unit->port = port;
	unit->fcp_lun = fcp_lun;
327 328
	unit->sysfs_device.parent = &port->sysfs_device;
	unit->sysfs_device.release = zfcp_unit_release;
L
Linus Torvalds 已提交
329

330 331 332
	if (dev_set_name(&unit->sysfs_device, "0x%016llx",
			 (unsigned long long) fcp_lun)) {
		kfree(unit);
333
		goto err_out;
334
	}
335
	retval = -EINVAL;
L
Linus Torvalds 已提交
336

337 338
	INIT_WORK(&unit->scsi_work, zfcp_scsi_scan);

339 340 341 342 343 344 345 346
	spin_lock_init(&unit->latencies.lock);
	unit->latencies.write.channel.min = 0xFFFFFFFF;
	unit->latencies.write.fabric.min = 0xFFFFFFFF;
	unit->latencies.read.channel.min = 0xFFFFFFFF;
	unit->latencies.read.fabric.min = 0xFFFFFFFF;
	unit->latencies.cmd.channel.min = 0xFFFFFFFF;
	unit->latencies.cmd.fabric.min = 0xFFFFFFFF;

347 348
	if (device_register(&unit->sysfs_device)) {
		put_device(&unit->sysfs_device);
349
		goto err_out;
350
	}
L
Linus Torvalds 已提交
351

352
	if (sysfs_create_group(&unit->sysfs_device.kobj,
353 354
			       &zfcp_sysfs_unit_attrs))
		goto err_out_put;
L
Linus Torvalds 已提交
355

356 357 358 359
	write_lock_irq(&port->unit_list_lock);
	list_add_tail(&unit->list, &port->unit_list);
	write_unlock_irq(&port->unit_list_lock);

L
Linus Torvalds 已提交
360
	atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
361

L
Linus Torvalds 已提交
362
	return unit;
363

364
err_out_put:
L
Linus Torvalds 已提交
365
	device_unregister(&unit->sysfs_device);
366 367 368
err_out:
	put_device(&port->sysfs_device);
	return ERR_PTR(retval);
L
Linus Torvalds 已提交
369 370
}

371
static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
L
Linus Torvalds 已提交
372
{
373 374 375
	adapter->pool.erp_req =
		mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
	if (!adapter->pool.erp_req)
L
Linus Torvalds 已提交
376 377
		return -ENOMEM;

378 379 380 381 382
	adapter->pool.gid_pn_req =
		mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
	if (!adapter->pool.gid_pn_req)
		return -ENOMEM;

383 384 385
	adapter->pool.scsi_req =
		mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
	if (!adapter->pool.scsi_req)
L
Linus Torvalds 已提交
386 387
		return -ENOMEM;

388 389 390
	adapter->pool.scsi_abort =
		mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
	if (!adapter->pool.scsi_abort)
L
Linus Torvalds 已提交
391 392
		return -ENOMEM;

393
	adapter->pool.status_read_req =
394
		mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
395
					    sizeof(struct zfcp_fsf_req));
396 397 398 399
	if (!adapter->pool.status_read_req)
		return -ENOMEM;

	adapter->pool.qtcb_pool =
400
		mempool_create_slab_pool(4, zfcp_data.qtcb_cache);
401
	if (!adapter->pool.qtcb_pool)
L
Linus Torvalds 已提交
402 403
		return -ENOMEM;

404
	adapter->pool.status_read_data =
405
		mempool_create_slab_pool(FSF_STATUS_READS_RECOM,
406
					 zfcp_data.sr_buffer_cache);
407
	if (!adapter->pool.status_read_data)
L
Linus Torvalds 已提交
408 409
		return -ENOMEM;

410
	adapter->pool.gid_pn_data =
411
		mempool_create_slab_pool(1, zfcp_data.gid_pn_cache);
412
	if (!adapter->pool.gid_pn_data)
L
Linus Torvalds 已提交
413 414 415 416 417
		return -ENOMEM;

	return 0;
}

418
static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
L
Linus Torvalds 已提交
419
{
420 421 422 423 424 425 426 427 428 429 430 431 432 433
	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);
	if (adapter->pool.status_read_data)
		mempool_destroy(adapter->pool.status_read_data);
	if (adapter->pool.gid_pn_data)
		mempool_destroy(adapter->pool.gid_pn_data);
L
Linus Torvalds 已提交
434 435
}

436 437 438 439 440 441 442 443 444
/**
 * 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
 */
445 446 447
int zfcp_status_read_refill(struct zfcp_adapter *adapter)
{
	while (atomic_read(&adapter->stat_miss) > 0)
448
		if (zfcp_fsf_status_read(adapter->qdio)) {
449
			if (atomic_read(&adapter->stat_miss) >= 16) {
450 451
				zfcp_erp_adapter_reopen(adapter, 0, "axsref1",
							NULL);
452 453
				return 1;
			}
454
			break;
455 456
		} else
			atomic_dec(&adapter->stat_miss);
457 458 459 460 461 462 463 464 465
	return 0;
}

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

466 467 468 469 470 471 472 473 474 475
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);
}

476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
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;

}

497 498 499 500
/**
 * zfcp_adapter_enqueue - enqueue a new adapter to the list
 * @ccw_device: pointer to the struct cc_device
 *
501
 * Returns:	struct zfcp_adapter*
L
Linus Torvalds 已提交
502 503 504 505
 * 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.
 */
506
struct zfcp_adapter *zfcp_adapter_enqueue(struct ccw_device *ccw_device)
L
Linus Torvalds 已提交
507 508 509
{
	struct zfcp_adapter *adapter;

510
	if (!get_device(&ccw_device->dev))
511
		return ERR_PTR(-ENODEV);
L
Linus Torvalds 已提交
512

513
	adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
514 515
	if (!adapter) {
		put_device(&ccw_device->dev);
516
		return ERR_PTR(-ENOMEM);
517 518 519
	}

	kref_init(&adapter->ref);
L
Linus Torvalds 已提交
520 521 522

	ccw_device->handler = NULL;
	adapter->ccw_device = ccw_device;
523 524

	INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
525
	INIT_WORK(&adapter->scan_work, zfcp_fc_scan_ports);
L
Linus Torvalds 已提交
526

527
	if (zfcp_qdio_setup(adapter))
528
		goto failed;
L
Linus Torvalds 已提交
529

S
Swen Schillig 已提交
530
	if (zfcp_allocate_low_mem_buffers(adapter))
531
		goto failed;
L
Linus Torvalds 已提交
532

533
	if (zfcp_reqlist_alloc(adapter))
534
		goto failed;
535

S
Swen Schillig 已提交
536
	if (zfcp_dbf_adapter_register(adapter))
537
		goto failed;
538

539
	if (zfcp_setup_adapter_work_queue(adapter))
540
		goto failed;
541

542
	if (zfcp_fc_gs_setup(adapter))
543
		goto failed;
544

545 546 547
	rwlock_init(&adapter->port_list_lock);
	INIT_LIST_HEAD(&adapter->port_list);

548
	init_waitqueue_head(&adapter->erp_ready_wq);
549
	init_waitqueue_head(&adapter->erp_done_wqh);
L
Linus Torvalds 已提交
550

551 552
	INIT_LIST_HEAD(&adapter->erp_ready_head);
	INIT_LIST_HEAD(&adapter->erp_running_head);
L
Linus Torvalds 已提交
553

554
	spin_lock_init(&adapter->req_list_lock);
555 556

	rwlock_init(&adapter->erp_lock);
L
Linus Torvalds 已提交
557 558
	rwlock_init(&adapter->abort_lock);

559
	if (zfcp_erp_thread_setup(adapter))
560
		goto failed;
L
Linus Torvalds 已提交
561

562 563
	adapter->service_level.seq_print = zfcp_print_sl;

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

566 567
	if (sysfs_create_group(&ccw_device->dev.kobj,
			       &zfcp_sysfs_adapter_attrs))
568
		goto failed;
L
Linus Torvalds 已提交
569

570
	if (!zfcp_adapter_scsi_register(adapter))
571
		return adapter;
L
Linus Torvalds 已提交
572

573
failed:
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
	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);
	zfcp_destroy_adapter_work_queue(adapter);

	zfcp_fc_wka_ports_force_offline(adapter->gs);
	zfcp_adapter_scsi_unregister(adapter);
	sysfs_remove_group(&cdev->dev.kobj, &zfcp_sysfs_adapter_attrs);

	zfcp_erp_thread_kill(adapter);
	zfcp_dbf_adapter_unregister(adapter->dbf);
	zfcp_qdio_destroy(adapter->qdio);

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

597
/**
598 599
 * zfcp_adapter_release - remove the adapter from the resource list
 * @ref: pointer to struct kref
L
Linus Torvalds 已提交
600 601
 * locks:	adapter list write lock is assumed to be held by caller
 */
602
void zfcp_adapter_release(struct kref *ref)
L
Linus Torvalds 已提交
603
{
604 605
	struct zfcp_adapter *adapter = container_of(ref, struct zfcp_adapter,
						    ref);
606
	struct ccw_device *cdev = adapter->ccw_device;
L
Linus Torvalds 已提交
607

608
	dev_set_drvdata(&adapter->ccw_device->dev, NULL);
609
	zfcp_fc_gs_destroy(adapter);
L
Linus Torvalds 已提交
610
	zfcp_free_low_mem_buffers(adapter);
611
	kfree(adapter->req_list);
612 613
	kfree(adapter->fc_stats);
	kfree(adapter->stats_reset_data);
L
Linus Torvalds 已提交
614
	kfree(adapter);
615
	put_device(&cdev->dev);
616 617 618 619 620 621 622 623 624 625 626 627 628 629
}

/**
 * zfcp_device_unregister - remove port, unit from system
 * @dev: reference to device which is to be removed
 * @grp: related reference to attribute group
 *
 * Helper function to unregister port, unit from system
 */
void zfcp_device_unregister(struct device *dev,
			    const struct attribute_group *grp)
{
	sysfs_remove_group(&dev->kobj, grp);
	device_unregister(dev);
L
Linus Torvalds 已提交
630 631
}

632
static void zfcp_port_release(struct device *dev)
633
{
634 635 636
	struct zfcp_port *port = container_of(dev, struct zfcp_port,
					      sysfs_device);

637
	zfcp_ccw_adapter_put(port->adapter);
638
	kfree(port);
639 640
}

L
Linus Torvalds 已提交
641 642 643 644 645 646
/**
 * 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
647
 * Returns: pointer to enqueued port on success, ERR_PTR on error
L
Linus Torvalds 已提交
648 649 650 651 652
 *
 * 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.
 */
653
struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
654
				     u32 status, u32 d_id)
L
Linus Torvalds 已提交
655
{
656
	struct zfcp_port *port;
657 658 659
	int retval = -ENOMEM;

	kref_get(&adapter->ref);
660

661 662
	port = zfcp_get_port_by_wwpn(adapter, wwpn);
	if (port) {
663 664 665
		put_device(&port->sysfs_device);
		retval = -EEXIST;
		goto err_out;
666
	}
L
Linus Torvalds 已提交
667

668
	port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
L
Linus Torvalds 已提交
669
	if (!port)
670
		goto err_out;
L
Linus Torvalds 已提交
671

672 673 674
	rwlock_init(&port->unit_list_lock);
	INIT_LIST_HEAD(&port->unit_list);

675
	INIT_WORK(&port->gid_pn_work, zfcp_fc_port_did_lookup);
676
	INIT_WORK(&port->test_link_work, zfcp_fc_link_test_work);
677
	INIT_WORK(&port->rport_work, zfcp_scsi_rport_work);
L
Linus Torvalds 已提交
678 679

	port->adapter = adapter;
680 681
	port->d_id = d_id;
	port->wwpn = wwpn;
682
	port->rport_task = RPORT_NONE;
683 684
	port->sysfs_device.parent = &adapter->ccw_device->dev;
	port->sysfs_device.release = zfcp_port_release;
L
Linus Torvalds 已提交
685

686 687 688
	if (dev_set_name(&port->sysfs_device, "0x%016llx",
			 (unsigned long long)wwpn)) {
		kfree(port);
689
		goto err_out;
690
	}
691
	retval = -EINVAL;
L
Linus Torvalds 已提交
692

693 694
	if (device_register(&port->sysfs_device)) {
		put_device(&port->sysfs_device);
695
		goto err_out;
696
	}
L
Linus Torvalds 已提交
697

698
	if (sysfs_create_group(&port->sysfs_device.kobj,
699 700
			       &zfcp_sysfs_port_attrs))
		goto err_out_put;
L
Linus Torvalds 已提交
701

702 703 704 705
	write_lock_irq(&adapter->port_list_lock);
	list_add_tail(&port->list, &adapter->port_list);
	write_unlock_irq(&adapter->port_list_lock);

706
	atomic_set_mask(status | ZFCP_STATUS_COMMON_RUNNING, &port->status);
707

L
Linus Torvalds 已提交
708 709
	return port;

710
err_out_put:
L
Linus Torvalds 已提交
711
	device_unregister(&port->sysfs_device);
712
err_out:
713
	zfcp_ccw_adapter_put(adapter);
714
	return ERR_PTR(retval);
L
Linus Torvalds 已提交
715 716
}

717 718 719 720 721 722
/**
 * 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
 */
723 724 725 726 727 728 729 730 731 732 733
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;
}

734 735 736 737 738 739 740 741
/**
 * 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
 */
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
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;
}