blob: 69a31187e54df871f0f4e5aff530f1fa8921d2e2 [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 Schmittecf39d42008-12-25 13:39:53 +010028#define KMSG_COMPONENT "zfcp"
29#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
30
Christof Schmitt45633fd2008-06-10 18:20:55 +020031#include <linux/miscdevice.h>
Christof Schmittbd43a42b72008-12-25 13:38:50 +010032#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "zfcp_ext.h"
34
Kay Sievers98df67b2008-12-25 13:38:55 +010035#define ZFCP_BUS_ID_SIZE 20
36
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020037MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
Swen Schillig317e6b62008-07-02 10:56:37 +020038MODULE_DESCRIPTION("FCP HBA driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070039MODULE_LICENSE("GPL");
40
Christof Schmitt3623ecb2008-12-19 16:56:57 +010041static char *init_device;
42module_param_named(device, init_device, charp, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043MODULE_PARM_DESC(device, "specify initial device");
44
Heiko Carstensca2d02c2007-05-08 11:17:54 +020045static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter)
Volker Sameskefea9d6c2006-08-02 11:05:16 +020046{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020047 int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020048
49 adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head),
50 GFP_KERNEL);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020051 if (!adapter->req_list)
52 return -ENOMEM;
53
Heiko Carstensca2d02c2007-05-08 11:17:54 +020054 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
55 INIT_LIST_HEAD(&adapter->req_list[idx]);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020056 return 0;
57}
58
Swen Schillig317e6b62008-07-02 10:56:37 +020059/**
60 * zfcp_reqlist_isempty - is the request list empty
61 * @adapter: pointer to struct zfcp_adapter
62 *
63 * Returns: true if list is empty, false otherwise
64 */
Volker Sameskefea9d6c2006-08-02 11:05:16 +020065int zfcp_reqlist_isempty(struct zfcp_adapter *adapter)
66{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020067 unsigned int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020068
Heiko Carstensca2d02c2007-05-08 11:17:54 +020069 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
70 if (!list_empty(&adapter->req_list[idx]))
Volker Sameskefea9d6c2006-08-02 11:05:16 +020071 return 0;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020072 return 1;
73}
74
Christof Schmitt3623ecb2008-12-19 16:56:57 +010075static void __init zfcp_init_device_configure(char *busid, u64 wwpn, u64 lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 struct zfcp_adapter *adapter;
78 struct zfcp_port *port;
79 struct zfcp_unit *unit;
80
81 down(&zfcp_data.config_sema);
82 read_lock_irq(&zfcp_data.config_lock);
Christof Schmitt3623ecb2008-12-19 16:56:57 +010083 adapter = zfcp_get_adapter_by_busid(busid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (adapter)
85 zfcp_adapter_get(adapter);
86 read_unlock_irq(&zfcp_data.config_lock);
87
Swen Schillig317e6b62008-07-02 10:56:37 +020088 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 goto out_adapter;
Christof Schmitt3623ecb2008-12-19 16:56:57 +010090 port = zfcp_port_enqueue(adapter, wwpn, 0, 0);
Swen Schillig317e6b62008-07-02 10:56:37 +020091 if (IS_ERR(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 goto out_port;
Christof Schmitt3623ecb2008-12-19 16:56:57 +010093 unit = zfcp_unit_enqueue(port, lun);
Swen Schillig317e6b62008-07-02 10:56:37 +020094 if (IS_ERR(unit))
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 goto out_unit;
96 up(&zfcp_data.config_sema);
97 ccw_device_set_online(adapter->ccw_device);
Swen Schillig091694a2008-10-01 12:42:25 +020098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 zfcp_erp_wait(adapter);
Swen Schillig091694a2008-10-01 12:42:25 +0200100 wait_event(adapter->erp_done_wqh,
101 !(atomic_read(&unit->status) &
102 ZFCP_STATUS_UNIT_SCSI_WORK_PENDING));
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 down(&zfcp_data.config_sema);
105 zfcp_unit_put(unit);
Swen Schillig317e6b62008-07-02 10:56:37 +0200106out_unit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 zfcp_port_put(port);
Swen Schillig317e6b62008-07-02 10:56:37 +0200108out_port:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 zfcp_adapter_put(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200110out_adapter:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 up(&zfcp_data.config_sema);
112 return;
113}
114
Swen Schillig317e6b62008-07-02 10:56:37 +0200115static struct kmem_cache *zfcp_cache_create(int size, char *name)
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200116{
117 int align = 1;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200118 while ((size - align) > 0)
119 align <<= 1;
Swen Schillig317e6b62008-07-02 10:56:37 +0200120 return kmem_cache_create(name , size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200121}
122
Christof Schmitt3623ecb2008-12-19 16:56:57 +0100123static void __init zfcp_init_device_setup(char *devstr)
124{
125 char *token;
126 char *str;
127 char busid[ZFCP_BUS_ID_SIZE];
128 u64 wwpn, lun;
129
130 /* duplicate devstr and keep the original for sysfs presentation*/
131 str = kmalloc(strlen(devstr) + 1, GFP_KERNEL);
132 if (!str)
133 return;
134
135 strcpy(str, devstr);
136
137 token = strsep(&str, ",");
138 if (!token || strlen(token) >= ZFCP_BUS_ID_SIZE)
139 goto err_out;
140 strncpy(busid, token, ZFCP_BUS_ID_SIZE);
141
142 token = strsep(&str, ",");
143 if (!token || strict_strtoull(token, 0, (unsigned long long *) &wwpn))
144 goto err_out;
145
146 token = strsep(&str, ",");
147 if (!token || strict_strtoull(token, 0, (unsigned long long *) &lun))
148 goto err_out;
149
150 kfree(str);
151 zfcp_init_device_configure(busid, wwpn, lun);
152 return;
153
154 err_out:
155 kfree(str);
156 pr_err("%s is not a valid SCSI device\n", devstr);
157}
158
Swen Schillig317e6b62008-07-02 10:56:37 +0200159static int __init zfcp_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200161 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Swen Schillig317e6b62008-07-02 10:56:37 +0200163 zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create(
164 sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200165 if (!zfcp_data.fsf_req_qtcb_cache)
166 goto out;
167
Swen Schillig317e6b62008-07-02 10:56:37 +0200168 zfcp_data.sr_buffer_cache = zfcp_cache_create(
169 sizeof(struct fsf_status_read_buffer), "zfcp_sr");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200170 if (!zfcp_data.sr_buffer_cache)
171 goto out_sr_cache;
172
Swen Schillig317e6b62008-07-02 10:56:37 +0200173 zfcp_data.gid_pn_cache = zfcp_cache_create(
174 sizeof(struct zfcp_gid_pn_data), "zfcp_gid");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200175 if (!zfcp_data.gid_pn_cache)
176 goto out_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Swen Schilligb7f15f32008-10-01 12:42:22 +0200178 zfcp_data.work_queue = create_singlethread_workqueue("zfcp_wq");
179
Swen Schillig317e6b62008-07-02 10:56:37 +0200180 sema_init(&zfcp_data.config_sema, 1);
181 rwlock_init(&zfcp_data.config_lock);
182
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200183 zfcp_data.scsi_transport_template =
184 fc_attach_transport(&zfcp_transport_functions);
185 if (!zfcp_data.scsi_transport_template)
186 goto out_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 retval = misc_register(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200189 if (retval) {
Christof Schmittecf39d42008-12-25 13:39:53 +0100190 pr_err("Registering the misc device zfcp_cfdc failed\n");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200191 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 retval = zfcp_ccw_register();
195 if (retval) {
Christof Schmittecf39d42008-12-25 13:39:53 +0100196 pr_err("The zfcp device driver could not register with "
Christof Schmittff3b24f2008-10-01 12:42:15 +0200197 "the common I/O layer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 goto out_ccw_register;
199 }
200
Christof Schmitt3623ecb2008-12-19 16:56:57 +0100201 if (init_device)
202 zfcp_init_device_setup(init_device);
203 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Swen Schillig317e6b62008-07-02 10:56:37 +0200205out_ccw_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 misc_deregister(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200207out_misc:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200208 fc_release_transport(zfcp_data.scsi_transport_template);
Swen Schillig317e6b62008-07-02 10:56:37 +0200209out_transport:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200210 kmem_cache_destroy(zfcp_data.gid_pn_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200211out_gid_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200212 kmem_cache_destroy(zfcp_data.sr_buffer_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200213out_sr_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200214 kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200215out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return retval;
217}
218
Swen Schillig317e6b62008-07-02 10:56:37 +0200219module_init(zfcp_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221/**
222 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
223 * @port: pointer to port to search for unit
224 * @fcp_lun: FCP LUN to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200225 *
226 * Returns: pointer to zfcp_unit or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200228struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Swen Schillig317e6b62008-07-02 10:56:37 +0200232 list_for_each_entry(unit, &port->unit_list_head, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if ((unit->fcp_lun == fcp_lun) &&
Swen Schillig317e6b62008-07-02 10:56:37 +0200234 !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE))
235 return unit;
236 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239/**
240 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
241 * @adapter: pointer to adapter to search for port
242 * @wwpn: wwpn to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200243 *
244 * Returns: pointer to zfcp_port or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200246struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
Swen Schillig7ba58c92008-10-01 12:42:18 +0200247 u64 wwpn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Swen Schillig317e6b62008-07-02 10:56:37 +0200251 list_for_each_entry(port, &adapter->port_list_head, list)
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100252 if ((port->wwpn == wwpn) &&
253 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_REMOVE))
Swen Schillig317e6b62008-07-02 10:56:37 +0200254 return port;
255 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Swen Schillig60221922008-07-02 10:56:38 +0200258static void zfcp_sysfs_unit_release(struct device *dev)
259{
260 kfree(container_of(dev, struct zfcp_unit, sysfs_device));
261}
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/**
264 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
265 * @port: pointer to port where unit is added
266 * @fcp_lun: FCP LUN of unit to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200267 * Returns: pointer to enqueued unit on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * Locks: config_sema must be held to serialize changes to the unit list
269 *
270 * Sets up some unit internal structures and creates sysfs entry.
271 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200272struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Christof Schmitt462b7852007-06-19 10:25:30 +0200274 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Swen Schillig317e6b62008-07-02 10:56:37 +0200276 unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (!unit)
Swen Schillig317e6b62008-07-02 10:56:37 +0200278 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 atomic_set(&unit->refcount, 0);
281 init_waitqueue_head(&unit->remove_wq);
282
283 unit->port = port;
284 unit->fcp_lun = fcp_lun;
285
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200286 dev_set_name(&unit->sysfs_device, "0x%016llx",
287 (unsigned long long) fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 unit->sysfs_device.parent = &port->sysfs_device;
289 unit->sysfs_device.release = zfcp_sysfs_unit_release;
290 dev_set_drvdata(&unit->sysfs_device, unit);
291
292 /* mark unit unusable as long as sysfs registration is not complete */
293 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
294
Christof Schmittc9615852008-05-06 11:00:05 +0200295 spin_lock_init(&unit->latencies.lock);
296 unit->latencies.write.channel.min = 0xFFFFFFFF;
297 unit->latencies.write.fabric.min = 0xFFFFFFFF;
298 unit->latencies.read.channel.min = 0xFFFFFFFF;
299 unit->latencies.read.fabric.min = 0xFFFFFFFF;
300 unit->latencies.cmd.channel.min = 0xFFFFFFFF;
301 unit->latencies.cmd.fabric.min = 0xFFFFFFFF;
302
Swen Schillig317e6b62008-07-02 10:56:37 +0200303 read_lock_irq(&zfcp_data.config_lock);
304 if (zfcp_get_unit_by_lun(port, fcp_lun)) {
305 read_unlock_irq(&zfcp_data.config_lock);
306 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200308 read_unlock_irq(&zfcp_data.config_lock);
309
310 if (device_register(&unit->sysfs_device))
311 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Swen Schillig60221922008-07-02 10:56:38 +0200313 if (sysfs_create_group(&unit->sysfs_device.kobj,
314 &zfcp_sysfs_unit_attrs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 device_unregister(&unit->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200316 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
319 zfcp_unit_get(unit);
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 write_lock_irq(&zfcp_data.config_lock);
Christof Schmitt462b7852007-06-19 10:25:30 +0200322 list_add_tail(&unit->list, &port->unit_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
324 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 write_unlock_irq(&zfcp_data.config_lock);
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 zfcp_port_get(port);
329
330 return unit;
Swen Schillig317e6b62008-07-02 10:56:37 +0200331
332err_out_free:
333 kfree(unit);
334 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Swen Schillig317e6b62008-07-02 10:56:37 +0200337/**
338 * zfcp_unit_dequeue - dequeue unit
339 * @unit: pointer to zfcp_unit
340 *
341 * waits until all work is done on unit and removes it then from the unit->list
342 * of the associated port.
343 */
344void zfcp_unit_dequeue(struct zfcp_unit *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200346 wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 write_lock_irq(&zfcp_data.config_lock);
348 list_del(&unit->list);
349 write_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 zfcp_port_put(unit->port);
Swen Schillig60221922008-07-02 10:56:38 +0200351 sysfs_remove_group(&unit->sysfs_device.kobj, &zfcp_sysfs_unit_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 device_unregister(&unit->sysfs_device);
353}
354
Swen Schillig317e6b62008-07-02 10:56:37 +0200355static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Swen Schillig317e6b62008-07-02 10:56:37 +0200357 /* must only be called with zfcp_data.config_sema taken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 adapter->pool.fsf_req_erp =
Swen Schillig317e6b62008-07-02 10:56:37 +0200359 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800360 if (!adapter->pool.fsf_req_erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return -ENOMEM;
362
363 adapter->pool.fsf_req_scsi =
Swen Schillig317e6b62008-07-02 10:56:37 +0200364 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800365 if (!adapter->pool.fsf_req_scsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return -ENOMEM;
367
368 adapter->pool.fsf_req_abort =
Swen Schillig317e6b62008-07-02 10:56:37 +0200369 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800370 if (!adapter->pool.fsf_req_abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return -ENOMEM;
372
373 adapter->pool.fsf_req_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200374 mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800375 sizeof(struct zfcp_fsf_req));
376 if (!adapter->pool.fsf_req_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return -ENOMEM;
378
379 adapter->pool.data_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200380 mempool_create_slab_pool(FSF_STATUS_READS_RECOM,
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200381 zfcp_data.sr_buffer_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800382 if (!adapter->pool.data_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return -ENOMEM;
384
385 adapter->pool.data_gid_pn =
Swen Schillig317e6b62008-07-02 10:56:37 +0200386 mempool_create_slab_pool(1, zfcp_data.gid_pn_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800387 if (!adapter->pool.data_gid_pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -ENOMEM;
389
390 return 0;
391}
392
Swen Schillig317e6b62008-07-02 10:56:37 +0200393static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Swen Schillig317e6b62008-07-02 10:56:37 +0200395 /* zfcp_data.config_sema must be held */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (adapter->pool.fsf_req_erp)
397 mempool_destroy(adapter->pool.fsf_req_erp);
398 if (adapter->pool.fsf_req_scsi)
399 mempool_destroy(adapter->pool.fsf_req_scsi);
400 if (adapter->pool.fsf_req_abort)
401 mempool_destroy(adapter->pool.fsf_req_abort);
402 if (adapter->pool.fsf_req_status_read)
403 mempool_destroy(adapter->pool.fsf_req_status_read);
404 if (adapter->pool.data_status_read)
405 mempool_destroy(adapter->pool.data_status_read);
406 if (adapter->pool.data_gid_pn)
407 mempool_destroy(adapter->pool.data_gid_pn);
408}
409
Swen Schillig317e6b62008-07-02 10:56:37 +0200410/**
411 * zfcp_status_read_refill - refill the long running status_read_requests
412 * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
413 *
414 * Returns: 0 on success, 1 otherwise
415 *
416 * if there are 16 or more status_read requests missing an adapter_reopen
417 * is triggered
418 */
Swen Schilligd26ab062008-05-19 12:17:37 +0200419int zfcp_status_read_refill(struct zfcp_adapter *adapter)
420{
421 while (atomic_read(&adapter->stat_miss) > 0)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200422 if (zfcp_fsf_status_read(adapter)) {
Swen Schillig7afe29f2008-07-02 10:56:33 +0200423 if (atomic_read(&adapter->stat_miss) >= 16) {
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100424 zfcp_erp_adapter_reopen(adapter, 0, "axsref1",
425 NULL);
Swen Schillig7afe29f2008-07-02 10:56:33 +0200426 return 1;
427 }
Swen Schilligd26ab062008-05-19 12:17:37 +0200428 break;
Swen Schillig7afe29f2008-07-02 10:56:33 +0200429 } else
430 atomic_dec(&adapter->stat_miss);
Swen Schilligd26ab062008-05-19 12:17:37 +0200431 return 0;
432}
433
434static void _zfcp_status_read_scheduler(struct work_struct *work)
435{
436 zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
437 stat_work));
438}
439
Christof Schmittbd43a42b72008-12-25 13:38:50 +0100440static void zfcp_print_sl(struct seq_file *m, struct service_level *sl)
441{
442 struct zfcp_adapter *adapter =
443 container_of(sl, struct zfcp_adapter, service_level);
444
445 seq_printf(m, "zfcp: %s microcode level %x\n",
446 dev_name(&adapter->ccw_device->dev),
447 adapter->fsf_lic_version);
448}
449
Swen Schillig317e6b62008-07-02 10:56:37 +0200450/**
451 * zfcp_adapter_enqueue - enqueue a new adapter to the list
452 * @ccw_device: pointer to the struct cc_device
453 *
454 * Returns: 0 if a new adapter was successfully enqueued
455 * -ENOMEM if alloc failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * Enqueues an adapter at the end of the adapter list in the driver data.
457 * All adapter internal structures are set up.
458 * Proc-fs entries are also created.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 * locks: config_sema must be held to serialise changes to the adapter list
460 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200461int zfcp_adapter_enqueue(struct ccw_device *ccw_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct zfcp_adapter *adapter;
464
465 /*
Swen Schillig41fa2ada2007-09-07 09:15:31 +0200466 * Note: It is safe to release the list_lock, as any list changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * are protected by the config_sema, which must be held to get here
468 */
469
Swen Schillig317e6b62008-07-02 10:56:37 +0200470 adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200471 if (!adapter)
Swen Schillig317e6b62008-07-02 10:56:37 +0200472 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 ccw_device->handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 adapter->ccw_device = ccw_device;
Swen Schillig317e6b62008-07-02 10:56:37 +0200476 atomic_set(&adapter->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Swen Schillig00bab912008-06-10 18:20:57 +0200478 if (zfcp_qdio_allocate(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 goto qdio_allocate_failed;
480
Swen Schillig00bab912008-06-10 18:20:57 +0200481 if (zfcp_allocate_low_mem_buffers(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Swen Schillig00bab912008-06-10 18:20:57 +0200484 if (zfcp_reqlist_alloc(adapter))
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200485 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Swen Schillig317e6b62008-07-02 10:56:37 +0200487 if (zfcp_adapter_debug_register(adapter))
488 goto debug_register_failed;
489
490 init_waitqueue_head(&adapter->remove_wq);
491 init_waitqueue_head(&adapter->erp_thread_wqh);
492 init_waitqueue_head(&adapter->erp_done_wqh);
493
494 INIT_LIST_HEAD(&adapter->port_list_head);
Swen Schillig317e6b62008-07-02 10:56:37 +0200495 INIT_LIST_HEAD(&adapter->erp_ready_head);
496 INIT_LIST_HEAD(&adapter->erp_running_head);
497
498 spin_lock_init(&adapter->req_list_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100499
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100500 spin_lock_init(&adapter->hba_dbf_lock);
501 spin_lock_init(&adapter->san_dbf_lock);
502 spin_lock_init(&adapter->scsi_dbf_lock);
Martin Peschked79a83d2008-03-27 14:22:00 +0100503 spin_lock_init(&adapter->rec_dbf_lock);
Christof Schmitt04062892008-10-01 12:42:20 +0200504 spin_lock_init(&adapter->req_q_lock);
Martin Peschke94506fd2009-03-02 13:08:56 +0100505 spin_lock_init(&adapter->qdio_stat_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100506
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100507 rwlock_init(&adapter->erp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 rwlock_init(&adapter->abort_lock);
Swen Schillig317e6b62008-07-02 10:56:37 +0200509
510 sema_init(&adapter->erp_ready_sem, 0);
511
Swen Schilligd26ab062008-05-19 12:17:37 +0200512 INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200513 INIT_WORK(&adapter->scan_work, _zfcp_scan_ports_later);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Christof Schmittbd43a42b72008-12-25 13:38:50 +0100515 adapter->service_level.seq_print = zfcp_print_sl;
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* mark adapter unusable as long as sysfs registration is not complete */
518 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 dev_set_drvdata(&ccw_device->dev, adapter);
521
Swen Schillig60221922008-07-02 10:56:38 +0200522 if (sysfs_create_group(&ccw_device->dev.kobj,
523 &zfcp_sysfs_adapter_attrs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 goto sysfs_failed;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200527 zfcp_fc_nameserver_init(adapter);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200528
Swen Schillig1d3aab02008-12-19 16:56:53 +0100529 if (!zfcp_adapter_scsi_register(adapter))
530 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Swen Schillig317e6b62008-07-02 10:56:37 +0200532sysfs_failed:
Christof Schmittff17a292007-08-28 09:31:41 +0200533 zfcp_adapter_debug_unregister(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200534debug_register_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 dev_set_drvdata(&ccw_device->dev, NULL);
Swen Schillig317e6b62008-07-02 10:56:37 +0200536 kfree(adapter->req_list);
537failed_low_mem_buffers:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200539qdio_allocate_failed:
Swen Schillig00bab912008-06-10 18:20:57 +0200540 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 kfree(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200542 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Swen Schillig317e6b62008-07-02 10:56:37 +0200545/**
546 * zfcp_adapter_dequeue - remove the adapter from the resource list
547 * @adapter: pointer to struct zfcp_adapter which should be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 * locks: adapter list write lock is assumed to be held by caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200550void zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
552 int retval = 0;
553 unsigned long flags;
554
Swen Schilligcc8c2822008-06-10 18:21:00 +0200555 cancel_work_sync(&adapter->scan_work);
Swen Schilligd26ab062008-05-19 12:17:37 +0200556 cancel_work_sync(&adapter->stat_work);
Michael Loehr9f287452007-05-09 11:01:24 +0200557 zfcp_adapter_scsi_unregister(adapter);
Swen Schillig60221922008-07-02 10:56:38 +0200558 sysfs_remove_group(&adapter->ccw_device->dev.kobj,
559 &zfcp_sysfs_adapter_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 dev_set_drvdata(&adapter->ccw_device->dev, NULL);
561 /* sanity check: no pending FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200562 spin_lock_irqsave(&adapter->req_list_lock, flags);
563 retval = zfcp_reqlist_isempty(adapter);
564 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
Swen Schillig317e6b62008-07-02 10:56:37 +0200565 if (!retval)
566 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Christof Schmittff17a292007-08-28 09:31:41 +0200568 zfcp_adapter_debug_unregister(adapter);
Swen Schillig00bab912008-06-10 18:20:57 +0200569 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200571 kfree(adapter->req_list);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100572 kfree(adapter->fc_stats);
573 kfree(adapter->stats_reset_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Swen Schillig60221922008-07-02 10:56:38 +0200577static void zfcp_sysfs_port_release(struct device *dev)
578{
579 kfree(container_of(dev, struct zfcp_port, sysfs_device));
580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582/**
583 * zfcp_port_enqueue - enqueue port to port list of adapter
584 * @adapter: adapter where remote port is added
585 * @wwpn: WWPN of the remote port to be enqueued
586 * @status: initial status for the port
587 * @d_id: destination id of the remote port to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200588 * Returns: pointer to enqueued port on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 * Locks: config_sema must be held to serialize changes to the port list
590 *
591 * All port internal structures are set up and the sysfs entry is generated.
592 * d_id is used to enqueue ports with a well known address like the Directory
593 * Service for nameserver lookup.
594 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200595struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
Swen Schillig317e6b62008-07-02 10:56:37 +0200596 u32 status, u32 d_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700598 struct zfcp_port *port;
Swen Schillig60221922008-07-02 10:56:38 +0200599 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Swen Schillig317e6b62008-07-02 10:56:37 +0200601 port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!port)
Swen Schillig317e6b62008-07-02 10:56:37 +0200603 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 init_waitqueue_head(&port->remove_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 INIT_LIST_HEAD(&port->unit_list_head);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200607 INIT_WORK(&port->gid_pn_work, zfcp_erp_port_strategy_open_lookup);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100608 INIT_WORK(&port->test_link_work, zfcp_fc_link_test_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 port->adapter = adapter;
Swen Schillig317e6b62008-07-02 10:56:37 +0200611 port->d_id = d_id;
612 port->wwpn = wwpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Swen Schillig317e6b62008-07-02 10:56:37 +0200614 /* mark port unusable as long as sysfs registration is not complete */
615 atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status);
616 atomic_set(&port->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Christof Schmittadc90da2008-11-04 16:35:09 +0100618 dev_set_name(&port->sysfs_device, "0x%016llx",
619 (unsigned long long)wwpn);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200620 port->sysfs_device.parent = &adapter->ccw_device->dev;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 port->sysfs_device.release = zfcp_sysfs_port_release;
623 dev_set_drvdata(&port->sysfs_device, port);
624
Swen Schillig317e6b62008-07-02 10:56:37 +0200625 read_lock_irq(&zfcp_data.config_lock);
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100626 if (zfcp_get_port_by_wwpn(adapter, wwpn)) {
627 read_unlock_irq(&zfcp_data.config_lock);
628 goto err_out_free;
629 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200630 read_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Swen Schillig317e6b62008-07-02 10:56:37 +0200632 if (device_register(&port->sysfs_device))
633 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Swen Schillig5ab944f2008-10-01 12:42:17 +0200635 retval = sysfs_create_group(&port->sysfs_device.kobj,
636 &zfcp_sysfs_port_attrs);
Swen Schillig60221922008-07-02 10:56:38 +0200637
638 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 device_unregister(&port->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200640 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
643 zfcp_port_get(port);
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 write_lock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700646 list_add_tail(&port->list, &adapter->port_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
648 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 write_unlock_irq(&zfcp_data.config_lock);
651
652 zfcp_adapter_get(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return port;
Swen Schillig317e6b62008-07-02 10:56:37 +0200654
655err_out_free:
656 kfree(port);
657err_out:
658 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Swen Schillig317e6b62008-07-02 10:56:37 +0200661/**
662 * zfcp_port_dequeue - dequeues a port from the port list of the adapter
663 * @port: pointer to struct zfcp_port which should be removed
664 */
665void zfcp_port_dequeue(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200667 wait_event(port->remove_wq, atomic_read(&port->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 write_lock_irq(&zfcp_data.config_lock);
669 list_del(&port->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 write_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700671 if (port->rport)
Heiko Carstens20b17302005-08-28 13:22:37 -0700672 fc_remote_port_delete(port->rport);
673 port->rport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 zfcp_adapter_put(port->adapter);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200675 sysfs_remove_group(&port->sysfs_device.kobj, &zfcp_sysfs_port_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 device_unregister(&port->sysfs_device);
677}
678
Swen Schillig317e6b62008-07-02 10:56:37 +0200679/**
680 * zfcp_sg_free_table - free memory used by scatterlists
681 * @sg: pointer to scatterlist
682 * @count: number of scatterlist which are to be free'ed
683 * the scatterlist are expected to reference pages always
684 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200685void zfcp_sg_free_table(struct scatterlist *sg, int count)
686{
687 int i;
688
689 for (i = 0; i < count; i++, sg++)
690 if (sg)
691 free_page((unsigned long) sg_virt(sg));
692 else
693 break;
694}
695
Swen Schillig317e6b62008-07-02 10:56:37 +0200696/**
697 * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
698 * @sg: pointer to struct scatterlist
699 * @count: number of scatterlists which should be assigned with buffers
700 * of size page
701 *
702 * Returns: 0 on success, -ENOMEM otherwise
703 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200704int zfcp_sg_setup_table(struct scatterlist *sg, int count)
705{
706 void *addr;
707 int i;
708
709 sg_init_table(sg, count);
710 for (i = 0; i < count; i++, sg++) {
711 addr = (void *) get_zeroed_page(GFP_KERNEL);
712 if (!addr) {
713 zfcp_sg_free_table(sg, i);
714 return -ENOMEM;
715 }
716 sg_set_buf(sg, addr, PAGE_SIZE);
717 }
718 return 0;
719}