Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 2 | * zfcp device driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 4 | * Module interface and handling of zfcp data structures. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 6 | * Copyright IBM Corporation 2002, 2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Andreas Herrmann | 4a9d2d8 | 2006-05-22 18:14:08 +0200 | [diff] [blame] | 9 | /* |
| 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 Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 21 | * Michael Loehr |
| 22 | * Swen Schillig |
| 23 | * Christof Schmitt |
| 24 | * Martin Petermann |
| 25 | * Sven Schuetz |
Andreas Herrmann | 4a9d2d8 | 2006-05-22 18:14:08 +0200 | [diff] [blame] | 26 | */ |
| 27 | |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 28 | #include <linux/miscdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include "zfcp_ext.h" |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | static char *device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Andreas Herrmann | 4a9d2d8 | 2006-05-22 18:14:08 +0200 | [diff] [blame] | 33 | MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com"); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 34 | MODULE_DESCRIPTION("FCP HBA driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | MODULE_LICENSE("GPL"); |
| 36 | |
| 6f71d9b | 2005-04-10 23:04:28 -0500 | [diff] [blame] | 37 | module_param(device, charp, 0400); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | MODULE_PARM_DESC(device, "specify initial device"); |
| 39 | |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 40 | static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter) |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 41 | { |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 42 | int idx; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 43 | |
| 44 | adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head), |
| 45 | GFP_KERNEL); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 46 | if (!adapter->req_list) |
| 47 | return -ENOMEM; |
| 48 | |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 49 | for (idx = 0; idx < REQUEST_LIST_SIZE; idx++) |
| 50 | INIT_LIST_HEAD(&adapter->req_list[idx]); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 51 | return 0; |
| 52 | } |
| 53 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 54 | /** |
| 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 Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 60 | int zfcp_reqlist_isempty(struct zfcp_adapter *adapter) |
| 61 | { |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 62 | unsigned int idx; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 63 | |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 64 | for (idx = 0; idx < REQUEST_LIST_SIZE; idx++) |
| 65 | if (!list_empty(&adapter->req_list[idx])) |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 66 | return 0; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 67 | return 1; |
| 68 | } |
| 69 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 70 | static int __init zfcp_device_setup(char *devstr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 72 | char *token; |
| 73 | char *str; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 75 | if (!devstr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | return 0; |
| 77 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 78 | /* duplicate devstr and keep the original for sysfs presentation*/ |
| 79 | str = kmalloc(strlen(devstr) + 1, GFP_KERNEL); |
| 80 | if (!str) |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 81 | return 0; |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 82 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 83 | strcpy(str, devstr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 85 | token = strsep(&str, ","); |
| 86 | if (!token || strlen(token) >= BUS_ID_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | goto err_out; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 88 | strncpy(zfcp_data.init_busid, token, BUS_ID_SIZE); |
| 89 | |
| 90 | token = strsep(&str, ","); |
| 91 | if (!token || strict_strtoull(token, 0, &zfcp_data.init_wwpn)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | goto err_out; |
| 93 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 94 | token = strsep(&str, ","); |
| 95 | if (!token || strict_strtoull(token, 0, &zfcp_data.init_fcp_lun)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | goto err_out; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 97 | |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 98 | kfree(str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | return 1; |
| 100 | |
| 101 | err_out: |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 102 | kfree(str); |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 103 | pr_err("zfcp: %s is not a valid SCSI device\n", devstr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | return 0; |
| 105 | } |
| 106 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 107 | static struct zfcp_adapter *zfcp_get_adapter_by_busid(char *bus_id) |
| 108 | { |
| 109 | struct zfcp_adapter *adapter; |
| 110 | |
| 111 | list_for_each_entry(adapter, &zfcp_data.adapter_list_head, list) |
| 112 | if ((strncmp(bus_id, adapter->ccw_device->dev.bus_id, |
| 113 | BUS_ID_SIZE) == 0) && |
| 114 | !(atomic_read(&adapter->status) & |
| 115 | ZFCP_STATUS_COMMON_REMOVE)) |
| 116 | return adapter; |
| 117 | return NULL; |
| 118 | } |
| 119 | |
| 120 | static void __init zfcp_init_device_configure(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
| 122 | struct zfcp_adapter *adapter; |
| 123 | struct zfcp_port *port; |
| 124 | struct zfcp_unit *unit; |
| 125 | |
| 126 | down(&zfcp_data.config_sema); |
| 127 | read_lock_irq(&zfcp_data.config_lock); |
| 128 | adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid); |
| 129 | if (adapter) |
| 130 | zfcp_adapter_get(adapter); |
| 131 | read_unlock_irq(&zfcp_data.config_lock); |
| 132 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 133 | if (!adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | goto out_adapter; |
| 135 | port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 136 | if (IS_ERR(port)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | goto out_port; |
| 138 | unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 139 | if (IS_ERR(unit)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | goto out_unit; |
| 141 | up(&zfcp_data.config_sema); |
| 142 | ccw_device_set_online(adapter->ccw_device); |
| 143 | zfcp_erp_wait(adapter); |
| 144 | down(&zfcp_data.config_sema); |
| 145 | zfcp_unit_put(unit); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 146 | out_unit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | zfcp_port_put(port); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 148 | out_port: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | zfcp_adapter_put(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 150 | out_adapter: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | up(&zfcp_data.config_sema); |
| 152 | return; |
| 153 | } |
| 154 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 155 | static struct kmem_cache *zfcp_cache_create(int size, char *name) |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 156 | { |
| 157 | int align = 1; |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 158 | while ((size - align) > 0) |
| 159 | align <<= 1; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 160 | return kmem_cache_create(name , size, align, 0, NULL); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 161 | } |
| 162 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 163 | static int __init zfcp_module_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 165 | int retval = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 167 | zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create( |
| 168 | sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf"); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 169 | if (!zfcp_data.fsf_req_qtcb_cache) |
| 170 | goto out; |
| 171 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 172 | zfcp_data.sr_buffer_cache = zfcp_cache_create( |
| 173 | sizeof(struct fsf_status_read_buffer), "zfcp_sr"); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 174 | if (!zfcp_data.sr_buffer_cache) |
| 175 | goto out_sr_cache; |
| 176 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 177 | zfcp_data.gid_pn_cache = zfcp_cache_create( |
| 178 | sizeof(struct zfcp_gid_pn_data), "zfcp_gid"); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 179 | if (!zfcp_data.gid_pn_cache) |
| 180 | goto out_gid_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | INIT_LIST_HEAD(&zfcp_data.adapter_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | INIT_LIST_HEAD(&zfcp_data.adapter_remove_lh); |
| 184 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 185 | sema_init(&zfcp_data.config_sema, 1); |
| 186 | rwlock_init(&zfcp_data.config_lock); |
| 187 | |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 188 | zfcp_data.scsi_transport_template = |
| 189 | fc_attach_transport(&zfcp_transport_functions); |
| 190 | if (!zfcp_data.scsi_transport_template) |
| 191 | goto out_transport; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | retval = misc_register(&zfcp_cfdc_misc); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 194 | if (retval) { |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 195 | pr_err("zfcp: Registering the misc device zfcp_cfdc failed\n"); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 196 | goto out_misc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | retval = zfcp_ccw_register(); |
| 200 | if (retval) { |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 201 | pr_err("zfcp: The zfcp device driver could not register with " |
| 202 | "the common I/O layer\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | goto out_ccw_register; |
| 204 | } |
| 205 | |
| 206 | if (zfcp_device_setup(device)) |
| 207 | zfcp_init_device_configure(); |
| 208 | |
| 209 | goto out; |
| 210 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 211 | out_ccw_register: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | misc_deregister(&zfcp_cfdc_misc); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 213 | out_misc: |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 214 | fc_release_transport(zfcp_data.scsi_transport_template); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 215 | out_transport: |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 216 | kmem_cache_destroy(zfcp_data.gid_pn_cache); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 217 | out_gid_cache: |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 218 | kmem_cache_destroy(zfcp_data.sr_buffer_cache); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 219 | out_sr_cache: |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 220 | kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 221 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | return retval; |
| 223 | } |
| 224 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 225 | module_init(zfcp_module_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | /** |
| 228 | * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN |
| 229 | * @port: pointer to port to search for unit |
| 230 | * @fcp_lun: FCP LUN to search for |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 231 | * |
| 232 | * Returns: pointer to zfcp_unit or NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | */ |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 234 | struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, |
| 235 | fcp_lun_t fcp_lun) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | { |
| 237 | struct zfcp_unit *unit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 239 | list_for_each_entry(unit, &port->unit_list_head, list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | if ((unit->fcp_lun == fcp_lun) && |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 241 | !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE)) |
| 242 | return unit; |
| 243 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | /** |
| 247 | * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn |
| 248 | * @adapter: pointer to adapter to search for port |
| 249 | * @wwpn: wwpn to search for |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 250 | * |
| 251 | * Returns: pointer to zfcp_port or NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | */ |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 253 | struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter, |
| 254 | wwn_t wwpn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
| 256 | struct zfcp_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 258 | list_for_each_entry(port, &adapter->port_list_head, list) |
| 259 | if ((port->wwpn == wwpn) && !(atomic_read(&port->status) & |
| 260 | (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE))) |
| 261 | return port; |
| 262 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
| 264 | |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 265 | static void zfcp_sysfs_unit_release(struct device *dev) |
| 266 | { |
| 267 | kfree(container_of(dev, struct zfcp_unit, sysfs_device)); |
| 268 | } |
| 269 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | /** |
| 271 | * zfcp_unit_enqueue - enqueue unit to unit list of a port. |
| 272 | * @port: pointer to port where unit is added |
| 273 | * @fcp_lun: FCP LUN of unit to be enqueued |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 274 | * Returns: pointer to enqueued unit on success, ERR_PTR on error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | * Locks: config_sema must be held to serialize changes to the unit list |
| 276 | * |
| 277 | * Sets up some unit internal structures and creates sysfs entry. |
| 278 | */ |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 279 | struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, fcp_lun_t fcp_lun) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | { |
Christof Schmitt | 462b785 | 2007-06-19 10:25:30 +0200 | [diff] [blame] | 281 | struct zfcp_unit *unit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 283 | unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | if (!unit) |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 285 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | atomic_set(&unit->refcount, 0); |
| 288 | init_waitqueue_head(&unit->remove_wq); |
| 289 | |
| 290 | unit->port = port; |
| 291 | unit->fcp_lun = fcp_lun; |
| 292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | snprintf(unit->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx", fcp_lun); |
| 294 | unit->sysfs_device.parent = &port->sysfs_device; |
| 295 | unit->sysfs_device.release = zfcp_sysfs_unit_release; |
| 296 | dev_set_drvdata(&unit->sysfs_device, unit); |
| 297 | |
| 298 | /* mark unit unusable as long as sysfs registration is not complete */ |
| 299 | atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status); |
| 300 | |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 301 | spin_lock_init(&unit->latencies.lock); |
| 302 | unit->latencies.write.channel.min = 0xFFFFFFFF; |
| 303 | unit->latencies.write.fabric.min = 0xFFFFFFFF; |
| 304 | unit->latencies.read.channel.min = 0xFFFFFFFF; |
| 305 | unit->latencies.read.fabric.min = 0xFFFFFFFF; |
| 306 | unit->latencies.cmd.channel.min = 0xFFFFFFFF; |
| 307 | unit->latencies.cmd.fabric.min = 0xFFFFFFFF; |
| 308 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 309 | read_lock_irq(&zfcp_data.config_lock); |
| 310 | if (zfcp_get_unit_by_lun(port, fcp_lun)) { |
| 311 | read_unlock_irq(&zfcp_data.config_lock); |
| 312 | goto err_out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 314 | read_unlock_irq(&zfcp_data.config_lock); |
| 315 | |
| 316 | if (device_register(&unit->sysfs_device)) |
| 317 | goto err_out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 319 | if (sysfs_create_group(&unit->sysfs_device.kobj, |
| 320 | &zfcp_sysfs_unit_attrs)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | device_unregister(&unit->sysfs_device); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 322 | return ERR_PTR(-EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | zfcp_unit_get(unit); |
Christof Schmitt | 462b785 | 2007-06-19 10:25:30 +0200 | [diff] [blame] | 326 | unit->scsi_lun = scsilun_to_int((struct scsi_lun *)&unit->fcp_lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | write_lock_irq(&zfcp_data.config_lock); |
Christof Schmitt | 462b785 | 2007-06-19 10:25:30 +0200 | [diff] [blame] | 329 | list_add_tail(&unit->list, &port->unit_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status); |
| 331 | atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 332 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | write_unlock_irq(&zfcp_data.config_lock); |
| 334 | |
| 335 | port->units++; |
| 336 | zfcp_port_get(port); |
| 337 | |
| 338 | return unit; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 339 | |
| 340 | err_out_free: |
| 341 | kfree(unit); |
| 342 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 345 | /** |
| 346 | * zfcp_unit_dequeue - dequeue unit |
| 347 | * @unit: pointer to zfcp_unit |
| 348 | * |
| 349 | * waits until all work is done on unit and removes it then from the unit->list |
| 350 | * of the associated port. |
| 351 | */ |
| 352 | void zfcp_unit_dequeue(struct zfcp_unit *unit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 354 | wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | write_lock_irq(&zfcp_data.config_lock); |
| 356 | list_del(&unit->list); |
| 357 | write_unlock_irq(&zfcp_data.config_lock); |
| 358 | unit->port->units--; |
| 359 | zfcp_port_put(unit->port); |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 360 | sysfs_remove_group(&unit->sysfs_device.kobj, &zfcp_sysfs_unit_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | device_unregister(&unit->sysfs_device); |
| 362 | } |
| 363 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 364 | static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 366 | /* must only be called with zfcp_data.config_sema taken */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | adapter->pool.fsf_req_erp = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 368 | mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 369 | if (!adapter->pool.fsf_req_erp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | return -ENOMEM; |
| 371 | |
| 372 | adapter->pool.fsf_req_scsi = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 373 | mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 374 | if (!adapter->pool.fsf_req_scsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | return -ENOMEM; |
| 376 | |
| 377 | adapter->pool.fsf_req_abort = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 378 | mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 379 | if (!adapter->pool.fsf_req_abort) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | return -ENOMEM; |
| 381 | |
| 382 | adapter->pool.fsf_req_status_read = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 383 | mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM, |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 384 | sizeof(struct zfcp_fsf_req)); |
| 385 | if (!adapter->pool.fsf_req_status_read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | return -ENOMEM; |
| 387 | |
| 388 | adapter->pool.data_status_read = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 389 | mempool_create_slab_pool(FSF_STATUS_READS_RECOM, |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 390 | zfcp_data.sr_buffer_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 391 | if (!adapter->pool.data_status_read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | return -ENOMEM; |
| 393 | |
| 394 | adapter->pool.data_gid_pn = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 395 | mempool_create_slab_pool(1, zfcp_data.gid_pn_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 396 | if (!adapter->pool.data_gid_pn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | return -ENOMEM; |
| 398 | |
| 399 | return 0; |
| 400 | } |
| 401 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 402 | static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | { |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 404 | /* zfcp_data.config_sema must be held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | if (adapter->pool.fsf_req_erp) |
| 406 | mempool_destroy(adapter->pool.fsf_req_erp); |
| 407 | if (adapter->pool.fsf_req_scsi) |
| 408 | mempool_destroy(adapter->pool.fsf_req_scsi); |
| 409 | if (adapter->pool.fsf_req_abort) |
| 410 | mempool_destroy(adapter->pool.fsf_req_abort); |
| 411 | if (adapter->pool.fsf_req_status_read) |
| 412 | mempool_destroy(adapter->pool.fsf_req_status_read); |
| 413 | if (adapter->pool.data_status_read) |
| 414 | mempool_destroy(adapter->pool.data_status_read); |
| 415 | if (adapter->pool.data_gid_pn) |
| 416 | mempool_destroy(adapter->pool.data_gid_pn); |
| 417 | } |
| 418 | |
Heiko Carstens | 763968e | 2007-05-10 15:45:46 +0200 | [diff] [blame] | 419 | static void zfcp_dummy_release(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | { |
| 421 | return; |
| 422 | } |
| 423 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 424 | /** |
| 425 | * zfcp_status_read_refill - refill the long running status_read_requests |
| 426 | * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled |
| 427 | * |
| 428 | * Returns: 0 on success, 1 otherwise |
| 429 | * |
| 430 | * if there are 16 or more status_read requests missing an adapter_reopen |
| 431 | * is triggered |
| 432 | */ |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 433 | int zfcp_status_read_refill(struct zfcp_adapter *adapter) |
| 434 | { |
| 435 | while (atomic_read(&adapter->stat_miss) > 0) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 436 | if (zfcp_fsf_status_read(adapter)) { |
Swen Schillig | 7afe29f | 2008-07-02 10:56:33 +0200 | [diff] [blame] | 437 | if (atomic_read(&adapter->stat_miss) >= 16) { |
| 438 | zfcp_erp_adapter_reopen(adapter, 0, 103, NULL); |
| 439 | return 1; |
| 440 | } |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 441 | break; |
Swen Schillig | 7afe29f | 2008-07-02 10:56:33 +0200 | [diff] [blame] | 442 | } else |
| 443 | atomic_dec(&adapter->stat_miss); |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 444 | return 0; |
| 445 | } |
| 446 | |
| 447 | static void _zfcp_status_read_scheduler(struct work_struct *work) |
| 448 | { |
| 449 | zfcp_status_read_refill(container_of(work, struct zfcp_adapter, |
| 450 | stat_work)); |
| 451 | } |
| 452 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 453 | /** |
| 454 | * zfcp_adapter_enqueue - enqueue a new adapter to the list |
| 455 | * @ccw_device: pointer to the struct cc_device |
| 456 | * |
| 457 | * Returns: 0 if a new adapter was successfully enqueued |
| 458 | * -ENOMEM if alloc failed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | * Enqueues an adapter at the end of the adapter list in the driver data. |
| 460 | * All adapter internal structures are set up. |
| 461 | * Proc-fs entries are also created. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | * locks: config_sema must be held to serialise changes to the adapter list |
| 463 | */ |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 464 | int zfcp_adapter_enqueue(struct ccw_device *ccw_device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | struct zfcp_adapter *adapter; |
| 467 | |
| 468 | /* |
Swen Schillig | 41fa2ad | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 469 | * Note: It is safe to release the list_lock, as any list changes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | * are protected by the config_sema, which must be held to get here |
| 471 | */ |
| 472 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 473 | adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 474 | if (!adapter) |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 475 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
| 477 | ccw_device->handler = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | adapter->ccw_device = ccw_device; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 479 | atomic_set(&adapter->refcount, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 481 | if (zfcp_qdio_allocate(adapter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | goto qdio_allocate_failed; |
| 483 | |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 484 | if (zfcp_allocate_low_mem_buffers(adapter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | goto failed_low_mem_buffers; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 487 | if (zfcp_reqlist_alloc(adapter)) |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 488 | goto failed_low_mem_buffers; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 490 | if (zfcp_adapter_debug_register(adapter)) |
| 491 | goto debug_register_failed; |
| 492 | |
| 493 | init_waitqueue_head(&adapter->remove_wq); |
| 494 | init_waitqueue_head(&adapter->erp_thread_wqh); |
| 495 | init_waitqueue_head(&adapter->erp_done_wqh); |
| 496 | |
| 497 | INIT_LIST_HEAD(&adapter->port_list_head); |
| 498 | INIT_LIST_HEAD(&adapter->port_remove_lh); |
| 499 | INIT_LIST_HEAD(&adapter->erp_ready_head); |
| 500 | INIT_LIST_HEAD(&adapter->erp_running_head); |
| 501 | |
| 502 | spin_lock_init(&adapter->req_list_lock); |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 503 | |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 504 | spin_lock_init(&adapter->hba_dbf_lock); |
| 505 | spin_lock_init(&adapter->san_dbf_lock); |
| 506 | spin_lock_init(&adapter->scsi_dbf_lock); |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 507 | spin_lock_init(&adapter->rec_dbf_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 508 | spin_lock_init(&adapter->req_q.lock); |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 509 | |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 510 | rwlock_init(&adapter->erp_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | rwlock_init(&adapter->abort_lock); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 512 | |
| 513 | sema_init(&adapter->erp_ready_sem, 0); |
| 514 | |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 515 | INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 516 | INIT_WORK(&adapter->scan_work, _zfcp_scan_ports_later); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | /* mark adapter unusable as long as sysfs registration is not complete */ |
| 519 | atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status); |
| 520 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | dev_set_drvdata(&ccw_device->dev, adapter); |
| 522 | |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 523 | if (sysfs_create_group(&ccw_device->dev.kobj, |
| 524 | &zfcp_sysfs_adapter_attrs)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | goto sysfs_failed; |
| 526 | |
| 527 | adapter->generic_services.parent = &adapter->ccw_device->dev; |
| 528 | adapter->generic_services.release = zfcp_dummy_release; |
| 529 | snprintf(adapter->generic_services.bus_id, BUS_ID_SIZE, |
| 530 | "generic_services"); |
| 531 | |
| 532 | if (device_register(&adapter->generic_services)) |
| 533 | goto generic_services_failed; |
| 534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | write_lock_irq(&zfcp_data.config_lock); |
| 536 | atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status); |
| 537 | list_add_tail(&adapter->list, &zfcp_data.adapter_list_head); |
| 538 | write_unlock_irq(&zfcp_data.config_lock); |
| 539 | |
| 540 | zfcp_data.adapters++; |
| 541 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame^] | 542 | zfcp_fc_nameserver_init(adapter); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 543 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 544 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 546 | generic_services_failed: |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 547 | sysfs_remove_group(&ccw_device->dev.kobj, |
| 548 | &zfcp_sysfs_adapter_attrs); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 549 | sysfs_failed: |
Christof Schmitt | ff17a29 | 2007-08-28 09:31:41 +0200 | [diff] [blame] | 550 | zfcp_adapter_debug_unregister(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 551 | debug_register_failed: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | dev_set_drvdata(&ccw_device->dev, NULL); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 553 | kfree(adapter->req_list); |
| 554 | failed_low_mem_buffers: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | zfcp_free_low_mem_buffers(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 556 | qdio_allocate_failed: |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 557 | zfcp_qdio_free(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | kfree(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 559 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | } |
| 561 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 562 | /** |
| 563 | * zfcp_adapter_dequeue - remove the adapter from the resource list |
| 564 | * @adapter: pointer to struct zfcp_adapter which should be removed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | * locks: adapter list write lock is assumed to be held by caller |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | */ |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 567 | void zfcp_adapter_dequeue(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | { |
| 569 | int retval = 0; |
| 570 | unsigned long flags; |
| 571 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 572 | cancel_work_sync(&adapter->scan_work); |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 573 | cancel_work_sync(&adapter->stat_work); |
Michael Loehr | 9f28745 | 2007-05-09 11:01:24 +0200 | [diff] [blame] | 574 | zfcp_adapter_scsi_unregister(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | device_unregister(&adapter->generic_services); |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 576 | sysfs_remove_group(&adapter->ccw_device->dev.kobj, |
| 577 | &zfcp_sysfs_adapter_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | dev_set_drvdata(&adapter->ccw_device->dev, NULL); |
| 579 | /* sanity check: no pending FSF requests */ |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 580 | spin_lock_irqsave(&adapter->req_list_lock, flags); |
| 581 | retval = zfcp_reqlist_isempty(adapter); |
| 582 | spin_unlock_irqrestore(&adapter->req_list_lock, flags); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 583 | if (!retval) |
| 584 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
Christof Schmitt | ff17a29 | 2007-08-28 09:31:41 +0200 | [diff] [blame] | 586 | zfcp_adapter_debug_unregister(adapter); |
| 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | /* remove specified adapter data structure from list */ |
| 589 | write_lock_irq(&zfcp_data.config_lock); |
| 590 | list_del(&adapter->list); |
| 591 | write_unlock_irq(&zfcp_data.config_lock); |
| 592 | |
| 593 | /* decrease number of adapters in list */ |
| 594 | zfcp_data.adapters--; |
| 595 | |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 596 | zfcp_qdio_free(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
| 598 | zfcp_free_low_mem_buffers(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 599 | kfree(adapter->req_list); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 600 | kfree(adapter->fc_stats); |
| 601 | kfree(adapter->stats_reset_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | kfree(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | } |
| 604 | |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 605 | static void zfcp_sysfs_port_release(struct device *dev) |
| 606 | { |
| 607 | kfree(container_of(dev, struct zfcp_port, sysfs_device)); |
| 608 | } |
| 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | /** |
| 611 | * zfcp_port_enqueue - enqueue port to port list of adapter |
| 612 | * @adapter: adapter where remote port is added |
| 613 | * @wwpn: WWPN of the remote port to be enqueued |
| 614 | * @status: initial status for the port |
| 615 | * @d_id: destination id of the remote port to be enqueued |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 616 | * Returns: pointer to enqueued port on success, ERR_PTR on error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | * Locks: config_sema must be held to serialize changes to the port list |
| 618 | * |
| 619 | * All port internal structures are set up and the sysfs entry is generated. |
| 620 | * d_id is used to enqueue ports with a well known address like the Directory |
| 621 | * Service for nameserver lookup. |
| 622 | */ |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 623 | struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, wwn_t wwpn, |
| 624 | u32 status, u32 d_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | { |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 626 | struct zfcp_port *port; |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 627 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 629 | port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | if (!port) |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 631 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | init_waitqueue_head(&port->remove_wq); |
| 634 | |
| 635 | INIT_LIST_HEAD(&port->unit_list_head); |
| 636 | INIT_LIST_HEAD(&port->unit_remove_lh); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame^] | 637 | INIT_WORK(&port->gid_pn_work, zfcp_erp_port_strategy_open_lookup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
| 639 | port->adapter = adapter; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 640 | port->d_id = d_id; |
| 641 | port->wwpn = wwpn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 643 | /* mark port unusable as long as sysfs registration is not complete */ |
| 644 | atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status); |
| 645 | atomic_set(&port->refcount, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame^] | 647 | snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx", wwpn); |
| 648 | port->sysfs_device.parent = &adapter->ccw_device->dev; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 649 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | port->sysfs_device.release = zfcp_sysfs_port_release; |
| 651 | dev_set_drvdata(&port->sysfs_device, port); |
| 652 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 653 | read_lock_irq(&zfcp_data.config_lock); |
| 654 | if (!(status & ZFCP_STATUS_PORT_NO_WWPN)) |
| 655 | if (zfcp_get_port_by_wwpn(adapter, wwpn)) { |
| 656 | read_unlock_irq(&zfcp_data.config_lock); |
| 657 | goto err_out_free; |
| 658 | } |
| 659 | read_unlock_irq(&zfcp_data.config_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 661 | if (device_register(&port->sysfs_device)) |
| 662 | goto err_out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame^] | 664 | retval = sysfs_create_group(&port->sysfs_device.kobj, |
| 665 | &zfcp_sysfs_port_attrs); |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 666 | |
| 667 | if (retval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | device_unregister(&port->sysfs_device); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 669 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | } |
| 671 | |
| 672 | zfcp_port_get(port); |
| 673 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | write_lock_irq(&zfcp_data.config_lock); |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 675 | list_add_tail(&port->list, &adapter->port_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status); |
| 677 | atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | adapter->ports++; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 679 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | write_unlock_irq(&zfcp_data.config_lock); |
| 681 | |
| 682 | zfcp_adapter_get(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | return port; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 684 | |
| 685 | err_out_free: |
| 686 | kfree(port); |
| 687 | err_out: |
| 688 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | } |
| 690 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 691 | /** |
| 692 | * zfcp_port_dequeue - dequeues a port from the port list of the adapter |
| 693 | * @port: pointer to struct zfcp_port which should be removed |
| 694 | */ |
| 695 | void zfcp_port_dequeue(struct zfcp_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 697 | wait_event(port->remove_wq, atomic_read(&port->refcount) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | write_lock_irq(&zfcp_data.config_lock); |
| 699 | list_del(&port->list); |
| 700 | port->adapter->ports--; |
| 701 | write_unlock_irq(&zfcp_data.config_lock); |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 702 | if (port->rport) |
Heiko Carstens | 20b1730 | 2005-08-28 13:22:37 -0700 | [diff] [blame] | 703 | fc_remote_port_delete(port->rport); |
| 704 | port->rport = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | zfcp_adapter_put(port->adapter); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame^] | 706 | sysfs_remove_group(&port->sysfs_device.kobj, &zfcp_sysfs_port_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | device_unregister(&port->sysfs_device); |
| 708 | } |
| 709 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 710 | /** |
| 711 | * zfcp_sg_free_table - free memory used by scatterlists |
| 712 | * @sg: pointer to scatterlist |
| 713 | * @count: number of scatterlist which are to be free'ed |
| 714 | * the scatterlist are expected to reference pages always |
| 715 | */ |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 716 | void zfcp_sg_free_table(struct scatterlist *sg, int count) |
| 717 | { |
| 718 | int i; |
| 719 | |
| 720 | for (i = 0; i < count; i++, sg++) |
| 721 | if (sg) |
| 722 | free_page((unsigned long) sg_virt(sg)); |
| 723 | else |
| 724 | break; |
| 725 | } |
| 726 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 727 | /** |
| 728 | * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers |
| 729 | * @sg: pointer to struct scatterlist |
| 730 | * @count: number of scatterlists which should be assigned with buffers |
| 731 | * of size page |
| 732 | * |
| 733 | * Returns: 0 on success, -ENOMEM otherwise |
| 734 | */ |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 735 | int zfcp_sg_setup_table(struct scatterlist *sg, int count) |
| 736 | { |
| 737 | void *addr; |
| 738 | int i; |
| 739 | |
| 740 | sg_init_table(sg, count); |
| 741 | for (i = 0; i < count; i++, sg++) { |
| 742 | addr = (void *) get_zeroed_page(GFP_KERNEL); |
| 743 | if (!addr) { |
| 744 | zfcp_sg_free_table(sg, i); |
| 745 | return -ENOMEM; |
| 746 | } |
| 747 | sg_set_buf(sg, addr, PAGE_SIZE); |
| 748 | } |
| 749 | return 0; |
| 750 | } |