blob: b9984648aca6ed696a270eee76985f7950b01096 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020033MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
Swen Schillig317e6b62008-07-02 10:56:37 +020034MODULE_DESCRIPTION("FCP HBA driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070035MODULE_LICENSE("GPL");
36
6f71d9b2005-04-10 23:04:28 -050037module_param(device, charp, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038MODULE_PARM_DESC(device, "specify initial device");
39
Heiko Carstensca2d02c2007-05-08 11:17:54 +020040static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter)
Volker Sameskefea9d6c2006-08-02 11:05:16 +020041{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020042 int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020043
44 adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head),
45 GFP_KERNEL);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020046 if (!adapter->req_list)
47 return -ENOMEM;
48
Heiko Carstensca2d02c2007-05-08 11:17:54 +020049 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
50 INIT_LIST_HEAD(&adapter->req_list[idx]);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020051 return 0;
52}
53
Swen Schillig317e6b62008-07-02 10:56:37 +020054/**
55 * zfcp_reqlist_isempty - is the request list empty
56 * @adapter: pointer to struct zfcp_adapter
57 *
58 * Returns: true if list is empty, false otherwise
59 */
Volker Sameskefea9d6c2006-08-02 11:05:16 +020060int zfcp_reqlist_isempty(struct zfcp_adapter *adapter)
61{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020062 unsigned int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020063
Heiko Carstensca2d02c2007-05-08 11:17:54 +020064 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
65 if (!list_empty(&adapter->req_list[idx]))
Volker Sameskefea9d6c2006-08-02 11:05:16 +020066 return 0;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020067 return 1;
68}
69
Swen Schillig317e6b62008-07-02 10:56:37 +020070static int __init zfcp_device_setup(char *devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Swen Schillig317e6b62008-07-02 10:56:37 +020072 char *token;
73 char *str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020075 if (!devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 0;
77
Swen Schillig317e6b62008-07-02 10:56:37 +020078 /* duplicate devstr and keep the original for sysfs presentation*/
79 str = kmalloc(strlen(devstr) + 1, GFP_KERNEL);
80 if (!str)
Christof Schmitt553448f2008-06-10 18:20:58 +020081 return 0;
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020082
Swen Schillig317e6b62008-07-02 10:56:37 +020083 strcpy(str, devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Swen Schillig317e6b62008-07-02 10:56:37 +020085 token = strsep(&str, ",");
86 if (!token || strlen(token) >= BUS_ID_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 goto err_out;
Swen Schillig317e6b62008-07-02 10:56:37 +020088 strncpy(zfcp_data.init_busid, token, BUS_ID_SIZE);
89
90 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +020091 if (!token || strict_strtoull(token, 0,
92 (unsigned long long *) &zfcp_data.init_wwpn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 goto err_out;
94
Swen Schillig317e6b62008-07-02 10:56:37 +020095 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +020096 if (!token || strict_strtoull(token, 0,
97 (unsigned long long *) &zfcp_data.init_fcp_lun))
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 goto err_out;
Swen Schillig317e6b62008-07-02 10:56:37 +020099
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200100 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return 1;
102
103 err_out:
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200104 kfree(str);
Christof Schmittff3b24f2008-10-01 12:42:15 +0200105 pr_err("zfcp: %s is not a valid SCSI device\n", devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return 0;
107}
108
Swen Schillig317e6b62008-07-02 10:56:37 +0200109static void __init zfcp_init_device_configure(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct zfcp_adapter *adapter;
112 struct zfcp_port *port;
113 struct zfcp_unit *unit;
114
115 down(&zfcp_data.config_sema);
116 read_lock_irq(&zfcp_data.config_lock);
117 adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid);
118 if (adapter)
119 zfcp_adapter_get(adapter);
120 read_unlock_irq(&zfcp_data.config_lock);
121
Swen Schillig317e6b62008-07-02 10:56:37 +0200122 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 goto out_adapter;
124 port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0);
Swen Schillig317e6b62008-07-02 10:56:37 +0200125 if (IS_ERR(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 goto out_port;
127 unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun);
Swen Schillig317e6b62008-07-02 10:56:37 +0200128 if (IS_ERR(unit))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 goto out_unit;
130 up(&zfcp_data.config_sema);
131 ccw_device_set_online(adapter->ccw_device);
132 zfcp_erp_wait(adapter);
133 down(&zfcp_data.config_sema);
134 zfcp_unit_put(unit);
Swen Schillig317e6b62008-07-02 10:56:37 +0200135out_unit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 zfcp_port_put(port);
Swen Schillig317e6b62008-07-02 10:56:37 +0200137out_port:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 zfcp_adapter_put(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200139out_adapter:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 up(&zfcp_data.config_sema);
141 return;
142}
143
Swen Schillig317e6b62008-07-02 10:56:37 +0200144static struct kmem_cache *zfcp_cache_create(int size, char *name)
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200145{
146 int align = 1;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200147 while ((size - align) > 0)
148 align <<= 1;
Swen Schillig317e6b62008-07-02 10:56:37 +0200149 return kmem_cache_create(name , size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200150}
151
Swen Schillig317e6b62008-07-02 10:56:37 +0200152static int __init zfcp_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200154 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Swen Schillig317e6b62008-07-02 10:56:37 +0200156 zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create(
157 sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200158 if (!zfcp_data.fsf_req_qtcb_cache)
159 goto out;
160
Swen Schillig317e6b62008-07-02 10:56:37 +0200161 zfcp_data.sr_buffer_cache = zfcp_cache_create(
162 sizeof(struct fsf_status_read_buffer), "zfcp_sr");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200163 if (!zfcp_data.sr_buffer_cache)
164 goto out_sr_cache;
165
Swen Schillig317e6b62008-07-02 10:56:37 +0200166 zfcp_data.gid_pn_cache = zfcp_cache_create(
167 sizeof(struct zfcp_gid_pn_data), "zfcp_gid");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200168 if (!zfcp_data.gid_pn_cache)
169 goto out_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 INIT_LIST_HEAD(&zfcp_data.adapter_list_head);
Swen Schillig317e6b62008-07-02 10:56:37 +0200172 sema_init(&zfcp_data.config_sema, 1);
173 rwlock_init(&zfcp_data.config_lock);
174
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200175 zfcp_data.scsi_transport_template =
176 fc_attach_transport(&zfcp_transport_functions);
177 if (!zfcp_data.scsi_transport_template)
178 goto out_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 retval = misc_register(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200181 if (retval) {
Christof Schmittff3b24f2008-10-01 12:42:15 +0200182 pr_err("zfcp: Registering the misc device zfcp_cfdc failed\n");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200183 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 retval = zfcp_ccw_register();
187 if (retval) {
Christof Schmittff3b24f2008-10-01 12:42:15 +0200188 pr_err("zfcp: The zfcp device driver could not register with "
189 "the common I/O layer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 goto out_ccw_register;
191 }
192
193 if (zfcp_device_setup(device))
194 zfcp_init_device_configure();
195
196 goto out;
197
Swen Schillig317e6b62008-07-02 10:56:37 +0200198out_ccw_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 misc_deregister(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200200out_misc:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200201 fc_release_transport(zfcp_data.scsi_transport_template);
Swen Schillig317e6b62008-07-02 10:56:37 +0200202out_transport:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200203 kmem_cache_destroy(zfcp_data.gid_pn_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200204out_gid_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200205 kmem_cache_destroy(zfcp_data.sr_buffer_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200206out_sr_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200207 kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200208out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return retval;
210}
211
Swen Schillig317e6b62008-07-02 10:56:37 +0200212module_init(zfcp_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/**
215 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
216 * @port: pointer to port to search for unit
217 * @fcp_lun: FCP LUN to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200218 *
219 * Returns: pointer to zfcp_unit or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200221struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Swen Schillig317e6b62008-07-02 10:56:37 +0200225 list_for_each_entry(unit, &port->unit_list_head, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if ((unit->fcp_lun == fcp_lun) &&
Swen Schillig317e6b62008-07-02 10:56:37 +0200227 !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE))
228 return unit;
229 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
232/**
233 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
234 * @adapter: pointer to adapter to search for port
235 * @wwpn: wwpn to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200236 *
237 * Returns: pointer to zfcp_port or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200239struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
Swen Schillig7ba58c92008-10-01 12:42:18 +0200240 u64 wwpn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Swen Schillig317e6b62008-07-02 10:56:37 +0200244 list_for_each_entry(port, &adapter->port_list_head, list)
245 if ((port->wwpn == wwpn) && !(atomic_read(&port->status) &
246 (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE)))
247 return port;
248 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Swen Schillig60221922008-07-02 10:56:38 +0200251static void zfcp_sysfs_unit_release(struct device *dev)
252{
253 kfree(container_of(dev, struct zfcp_unit, sysfs_device));
254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/**
257 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
258 * @port: pointer to port where unit is added
259 * @fcp_lun: FCP LUN of unit to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200260 * Returns: pointer to enqueued unit on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 * Locks: config_sema must be held to serialize changes to the unit list
262 *
263 * Sets up some unit internal structures and creates sysfs entry.
264 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200265struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Christof Schmitt462b7852007-06-19 10:25:30 +0200267 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Swen Schillig317e6b62008-07-02 10:56:37 +0200269 unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (!unit)
Swen Schillig317e6b62008-07-02 10:56:37 +0200271 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 atomic_set(&unit->refcount, 0);
274 init_waitqueue_head(&unit->remove_wq);
275
276 unit->port = port;
277 unit->fcp_lun = fcp_lun;
278
Swen Schillig7ba58c92008-10-01 12:42:18 +0200279 snprintf(unit->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx",
280 (unsigned long long) fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 unit->sysfs_device.parent = &port->sysfs_device;
282 unit->sysfs_device.release = zfcp_sysfs_unit_release;
283 dev_set_drvdata(&unit->sysfs_device, unit);
284
285 /* mark unit unusable as long as sysfs registration is not complete */
286 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
287
Christof Schmittc9615852008-05-06 11:00:05 +0200288 spin_lock_init(&unit->latencies.lock);
289 unit->latencies.write.channel.min = 0xFFFFFFFF;
290 unit->latencies.write.fabric.min = 0xFFFFFFFF;
291 unit->latencies.read.channel.min = 0xFFFFFFFF;
292 unit->latencies.read.fabric.min = 0xFFFFFFFF;
293 unit->latencies.cmd.channel.min = 0xFFFFFFFF;
294 unit->latencies.cmd.fabric.min = 0xFFFFFFFF;
295
Swen Schillig317e6b62008-07-02 10:56:37 +0200296 read_lock_irq(&zfcp_data.config_lock);
297 if (zfcp_get_unit_by_lun(port, fcp_lun)) {
298 read_unlock_irq(&zfcp_data.config_lock);
299 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200301 read_unlock_irq(&zfcp_data.config_lock);
302
303 if (device_register(&unit->sysfs_device))
304 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Swen Schillig60221922008-07-02 10:56:38 +0200306 if (sysfs_create_group(&unit->sysfs_device.kobj,
307 &zfcp_sysfs_unit_attrs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 device_unregister(&unit->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200309 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
312 zfcp_unit_get(unit);
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 write_lock_irq(&zfcp_data.config_lock);
Christof Schmitt462b7852007-06-19 10:25:30 +0200315 list_add_tail(&unit->list, &port->unit_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
317 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 write_unlock_irq(&zfcp_data.config_lock);
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 zfcp_port_get(port);
322
323 return unit;
Swen Schillig317e6b62008-07-02 10:56:37 +0200324
325err_out_free:
326 kfree(unit);
327 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Swen Schillig317e6b62008-07-02 10:56:37 +0200330/**
331 * zfcp_unit_dequeue - dequeue unit
332 * @unit: pointer to zfcp_unit
333 *
334 * waits until all work is done on unit and removes it then from the unit->list
335 * of the associated port.
336 */
337void zfcp_unit_dequeue(struct zfcp_unit *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200339 wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 write_lock_irq(&zfcp_data.config_lock);
341 list_del(&unit->list);
342 write_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 zfcp_port_put(unit->port);
Swen Schillig60221922008-07-02 10:56:38 +0200344 sysfs_remove_group(&unit->sysfs_device.kobj, &zfcp_sysfs_unit_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 device_unregister(&unit->sysfs_device);
346}
347
Swen Schillig317e6b62008-07-02 10:56:37 +0200348static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Swen Schillig317e6b62008-07-02 10:56:37 +0200350 /* must only be called with zfcp_data.config_sema taken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 adapter->pool.fsf_req_erp =
Swen Schillig317e6b62008-07-02 10:56:37 +0200352 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800353 if (!adapter->pool.fsf_req_erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return -ENOMEM;
355
356 adapter->pool.fsf_req_scsi =
Swen Schillig317e6b62008-07-02 10:56:37 +0200357 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800358 if (!adapter->pool.fsf_req_scsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return -ENOMEM;
360
361 adapter->pool.fsf_req_abort =
Swen Schillig317e6b62008-07-02 10:56:37 +0200362 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800363 if (!adapter->pool.fsf_req_abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return -ENOMEM;
365
366 adapter->pool.fsf_req_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200367 mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800368 sizeof(struct zfcp_fsf_req));
369 if (!adapter->pool.fsf_req_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return -ENOMEM;
371
372 adapter->pool.data_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200373 mempool_create_slab_pool(FSF_STATUS_READS_RECOM,
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200374 zfcp_data.sr_buffer_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800375 if (!adapter->pool.data_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return -ENOMEM;
377
378 adapter->pool.data_gid_pn =
Swen Schillig317e6b62008-07-02 10:56:37 +0200379 mempool_create_slab_pool(1, zfcp_data.gid_pn_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800380 if (!adapter->pool.data_gid_pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return -ENOMEM;
382
383 return 0;
384}
385
Swen Schillig317e6b62008-07-02 10:56:37 +0200386static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Swen Schillig317e6b62008-07-02 10:56:37 +0200388 /* zfcp_data.config_sema must be held */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (adapter->pool.fsf_req_erp)
390 mempool_destroy(adapter->pool.fsf_req_erp);
391 if (adapter->pool.fsf_req_scsi)
392 mempool_destroy(adapter->pool.fsf_req_scsi);
393 if (adapter->pool.fsf_req_abort)
394 mempool_destroy(adapter->pool.fsf_req_abort);
395 if (adapter->pool.fsf_req_status_read)
396 mempool_destroy(adapter->pool.fsf_req_status_read);
397 if (adapter->pool.data_status_read)
398 mempool_destroy(adapter->pool.data_status_read);
399 if (adapter->pool.data_gid_pn)
400 mempool_destroy(adapter->pool.data_gid_pn);
401}
402
Swen Schillig317e6b62008-07-02 10:56:37 +0200403/**
404 * zfcp_status_read_refill - refill the long running status_read_requests
405 * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
406 *
407 * Returns: 0 on success, 1 otherwise
408 *
409 * if there are 16 or more status_read requests missing an adapter_reopen
410 * is triggered
411 */
Swen Schilligd26ab062008-05-19 12:17:37 +0200412int zfcp_status_read_refill(struct zfcp_adapter *adapter)
413{
414 while (atomic_read(&adapter->stat_miss) > 0)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200415 if (zfcp_fsf_status_read(adapter)) {
Swen Schillig7afe29f2008-07-02 10:56:33 +0200416 if (atomic_read(&adapter->stat_miss) >= 16) {
417 zfcp_erp_adapter_reopen(adapter, 0, 103, NULL);
418 return 1;
419 }
Swen Schilligd26ab062008-05-19 12:17:37 +0200420 break;
Swen Schillig7afe29f2008-07-02 10:56:33 +0200421 } else
422 atomic_dec(&adapter->stat_miss);
Swen Schilligd26ab062008-05-19 12:17:37 +0200423 return 0;
424}
425
426static void _zfcp_status_read_scheduler(struct work_struct *work)
427{
428 zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
429 stat_work));
430}
431
Swen Schillig317e6b62008-07-02 10:56:37 +0200432/**
433 * zfcp_adapter_enqueue - enqueue a new adapter to the list
434 * @ccw_device: pointer to the struct cc_device
435 *
436 * Returns: 0 if a new adapter was successfully enqueued
437 * -ENOMEM if alloc failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * Enqueues an adapter at the end of the adapter list in the driver data.
439 * All adapter internal structures are set up.
440 * Proc-fs entries are also created.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * locks: config_sema must be held to serialise changes to the adapter list
442 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200443int zfcp_adapter_enqueue(struct ccw_device *ccw_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct zfcp_adapter *adapter;
446
447 /*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200448 * Note: It is safe to release the list_lock, as any list changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 * are protected by the config_sema, which must be held to get here
450 */
451
Swen Schillig317e6b62008-07-02 10:56:37 +0200452 adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200453 if (!adapter)
Swen Schillig317e6b62008-07-02 10:56:37 +0200454 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 ccw_device->handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 adapter->ccw_device = ccw_device;
Swen Schillig317e6b62008-07-02 10:56:37 +0200458 atomic_set(&adapter->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Swen Schillig00bab912008-06-10 18:20:57 +0200460 if (zfcp_qdio_allocate(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 goto qdio_allocate_failed;
462
Swen Schillig00bab912008-06-10 18:20:57 +0200463 if (zfcp_allocate_low_mem_buffers(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Swen Schillig00bab912008-06-10 18:20:57 +0200466 if (zfcp_reqlist_alloc(adapter))
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200467 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Swen Schillig317e6b62008-07-02 10:56:37 +0200469 if (zfcp_adapter_debug_register(adapter))
470 goto debug_register_failed;
471
472 init_waitqueue_head(&adapter->remove_wq);
473 init_waitqueue_head(&adapter->erp_thread_wqh);
474 init_waitqueue_head(&adapter->erp_done_wqh);
475
476 INIT_LIST_HEAD(&adapter->port_list_head);
Swen Schillig317e6b62008-07-02 10:56:37 +0200477 INIT_LIST_HEAD(&adapter->erp_ready_head);
478 INIT_LIST_HEAD(&adapter->erp_running_head);
479
480 spin_lock_init(&adapter->req_list_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100481
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100482 spin_lock_init(&adapter->hba_dbf_lock);
483 spin_lock_init(&adapter->san_dbf_lock);
484 spin_lock_init(&adapter->scsi_dbf_lock);
Martin Peschked79a83d2008-03-27 14:22:00 +0100485 spin_lock_init(&adapter->rec_dbf_lock);
Christof Schmitt04062892008-10-01 12:42:20 +0200486 spin_lock_init(&adapter->req_q_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100487
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100488 rwlock_init(&adapter->erp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 rwlock_init(&adapter->abort_lock);
Swen Schillig317e6b62008-07-02 10:56:37 +0200490
491 sema_init(&adapter->erp_ready_sem, 0);
492
Swen Schilligd26ab062008-05-19 12:17:37 +0200493 INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200494 INIT_WORK(&adapter->scan_work, _zfcp_scan_ports_later);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /* mark adapter unusable as long as sysfs registration is not complete */
497 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 dev_set_drvdata(&ccw_device->dev, adapter);
500
Swen Schillig60221922008-07-02 10:56:38 +0200501 if (sysfs_create_group(&ccw_device->dev.kobj,
502 &zfcp_sysfs_adapter_attrs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 goto sysfs_failed;
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 write_lock_irq(&zfcp_data.config_lock);
506 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
507 list_add_tail(&adapter->list, &zfcp_data.adapter_list_head);
508 write_unlock_irq(&zfcp_data.config_lock);
509
Swen Schillig5ab944f2008-10-01 12:42:17 +0200510 zfcp_fc_nameserver_init(adapter);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200511
Swen Schillig317e6b62008-07-02 10:56:37 +0200512 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Swen Schillig317e6b62008-07-02 10:56:37 +0200514sysfs_failed:
Christof Schmittff17a292007-08-28 09:31:41 +0200515 zfcp_adapter_debug_unregister(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200516debug_register_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 dev_set_drvdata(&ccw_device->dev, NULL);
Swen Schillig317e6b62008-07-02 10:56:37 +0200518 kfree(adapter->req_list);
519failed_low_mem_buffers:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200521qdio_allocate_failed:
Swen Schillig00bab912008-06-10 18:20:57 +0200522 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 kfree(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200524 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
Swen Schillig317e6b62008-07-02 10:56:37 +0200527/**
528 * zfcp_adapter_dequeue - remove the adapter from the resource list
529 * @adapter: pointer to struct zfcp_adapter which should be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * locks: adapter list write lock is assumed to be held by caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200532void zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 int retval = 0;
535 unsigned long flags;
536
Swen Schilligcc8c2822008-06-10 18:21:00 +0200537 cancel_work_sync(&adapter->scan_work);
Swen Schilligd26ab062008-05-19 12:17:37 +0200538 cancel_work_sync(&adapter->stat_work);
Michael Loehr9f287452007-05-09 11:01:24 +0200539 zfcp_adapter_scsi_unregister(adapter);
Swen Schillig60221922008-07-02 10:56:38 +0200540 sysfs_remove_group(&adapter->ccw_device->dev.kobj,
541 &zfcp_sysfs_adapter_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 dev_set_drvdata(&adapter->ccw_device->dev, NULL);
543 /* sanity check: no pending FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200544 spin_lock_irqsave(&adapter->req_list_lock, flags);
545 retval = zfcp_reqlist_isempty(adapter);
546 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
Swen Schillig317e6b62008-07-02 10:56:37 +0200547 if (!retval)
548 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Christof Schmittff17a292007-08-28 09:31:41 +0200550 zfcp_adapter_debug_unregister(adapter);
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 /* remove specified adapter data structure from list */
553 write_lock_irq(&zfcp_data.config_lock);
554 list_del(&adapter->list);
555 write_unlock_irq(&zfcp_data.config_lock);
556
Swen Schillig00bab912008-06-10 18:20:57 +0200557 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200560 kfree(adapter->req_list);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100561 kfree(adapter->fc_stats);
562 kfree(adapter->stats_reset_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Swen Schillig60221922008-07-02 10:56:38 +0200566static void zfcp_sysfs_port_release(struct device *dev)
567{
568 kfree(container_of(dev, struct zfcp_port, sysfs_device));
569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/**
572 * zfcp_port_enqueue - enqueue port to port list of adapter
573 * @adapter: adapter where remote port is added
574 * @wwpn: WWPN of the remote port to be enqueued
575 * @status: initial status for the port
576 * @d_id: destination id of the remote port to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200577 * Returns: pointer to enqueued port on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 * Locks: config_sema must be held to serialize changes to the port list
579 *
580 * All port internal structures are set up and the sysfs entry is generated.
581 * d_id is used to enqueue ports with a well known address like the Directory
582 * Service for nameserver lookup.
583 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200584struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
Swen Schillig317e6b62008-07-02 10:56:37 +0200585 u32 status, u32 d_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700587 struct zfcp_port *port;
Swen Schillig60221922008-07-02 10:56:38 +0200588 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Swen Schillig317e6b62008-07-02 10:56:37 +0200590 port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (!port)
Swen Schillig317e6b62008-07-02 10:56:37 +0200592 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 init_waitqueue_head(&port->remove_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 INIT_LIST_HEAD(&port->unit_list_head);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200596 INIT_WORK(&port->gid_pn_work, zfcp_erp_port_strategy_open_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 port->adapter = adapter;
Swen Schillig317e6b62008-07-02 10:56:37 +0200599 port->d_id = d_id;
600 port->wwpn = wwpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Swen Schillig317e6b62008-07-02 10:56:37 +0200602 /* mark port unusable as long as sysfs registration is not complete */
603 atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status);
604 atomic_set(&port->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Swen Schillig7ba58c92008-10-01 12:42:18 +0200606 snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx",
607 (unsigned long long) wwpn);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200608 port->sysfs_device.parent = &adapter->ccw_device->dev;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 port->sysfs_device.release = zfcp_sysfs_port_release;
611 dev_set_drvdata(&port->sysfs_device, port);
612
Swen Schillig317e6b62008-07-02 10:56:37 +0200613 read_lock_irq(&zfcp_data.config_lock);
614 if (!(status & ZFCP_STATUS_PORT_NO_WWPN))
615 if (zfcp_get_port_by_wwpn(adapter, wwpn)) {
616 read_unlock_irq(&zfcp_data.config_lock);
617 goto err_out_free;
618 }
619 read_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Swen Schillig317e6b62008-07-02 10:56:37 +0200621 if (device_register(&port->sysfs_device))
622 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Swen Schillig5ab944f2008-10-01 12:42:17 +0200624 retval = sysfs_create_group(&port->sysfs_device.kobj,
625 &zfcp_sysfs_port_attrs);
Swen Schillig60221922008-07-02 10:56:38 +0200626
627 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 device_unregister(&port->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200629 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
632 zfcp_port_get(port);
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 write_lock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700635 list_add_tail(&port->list, &adapter->port_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
637 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 write_unlock_irq(&zfcp_data.config_lock);
640
641 zfcp_adapter_get(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return port;
Swen Schillig317e6b62008-07-02 10:56:37 +0200643
644err_out_free:
645 kfree(port);
646err_out:
647 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
Swen Schillig317e6b62008-07-02 10:56:37 +0200650/**
651 * zfcp_port_dequeue - dequeues a port from the port list of the adapter
652 * @port: pointer to struct zfcp_port which should be removed
653 */
654void zfcp_port_dequeue(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200656 wait_event(port->remove_wq, atomic_read(&port->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 write_lock_irq(&zfcp_data.config_lock);
658 list_del(&port->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 write_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700660 if (port->rport)
Heiko Carstens20b17302005-08-28 13:22:37 -0700661 fc_remote_port_delete(port->rport);
662 port->rport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 zfcp_adapter_put(port->adapter);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200664 sysfs_remove_group(&port->sysfs_device.kobj, &zfcp_sysfs_port_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 device_unregister(&port->sysfs_device);
666}
667
Swen Schillig317e6b62008-07-02 10:56:37 +0200668/**
669 * zfcp_sg_free_table - free memory used by scatterlists
670 * @sg: pointer to scatterlist
671 * @count: number of scatterlist which are to be free'ed
672 * the scatterlist are expected to reference pages always
673 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200674void zfcp_sg_free_table(struct scatterlist *sg, int count)
675{
676 int i;
677
678 for (i = 0; i < count; i++, sg++)
679 if (sg)
680 free_page((unsigned long) sg_virt(sg));
681 else
682 break;
683}
684
Swen Schillig317e6b62008-07-02 10:56:37 +0200685/**
686 * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
687 * @sg: pointer to struct scatterlist
688 * @count: number of scatterlists which should be assigned with buffers
689 * of size page
690 *
691 * Returns: 0 on success, -ENOMEM otherwise
692 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200693int zfcp_sg_setup_table(struct scatterlist *sg, int count)
694{
695 void *addr;
696 int i;
697
698 sg_init_table(sg, count);
699 for (i = 0; i < count; i++, sg++) {
700 addr = (void *) get_zeroed_page(GFP_KERNEL);
701 if (!addr) {
702 zfcp_sg_free_table(sg, i);
703 return -ENOMEM;
704 }
705 sg_set_buf(sg, addr, PAGE_SIZE);
706 }
707 return 0;
708}