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 | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 28 | #define KMSG_COMPONENT "zfcp" |
| 29 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 30 | |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 31 | #include <linux/miscdevice.h> |
Christof Schmitt | bd43a42b7 | 2008-12-25 13:38:50 +0100 | [diff] [blame] | 32 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include "zfcp_ext.h" |
| 34 | |
Kay Sievers | 98df67b | 2008-12-25 13:38:55 +0100 | [diff] [blame] | 35 | #define ZFCP_BUS_ID_SIZE 20 |
| 36 | |
Andreas Herrmann | 4a9d2d8 | 2006-05-22 18:14:08 +0200 | [diff] [blame] | 37 | MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com"); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 38 | MODULE_DESCRIPTION("FCP HBA driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | MODULE_LICENSE("GPL"); |
| 40 | |
Christof Schmitt | 3623ecb | 2008-12-19 16:56:57 +0100 | [diff] [blame^] | 41 | static char *init_device; |
| 42 | module_param_named(device, init_device, charp, 0400); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | MODULE_PARM_DESC(device, "specify initial device"); |
| 44 | |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 45 | static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter) |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 46 | { |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 47 | int idx; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 48 | |
| 49 | adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head), |
| 50 | GFP_KERNEL); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 51 | if (!adapter->req_list) |
| 52 | return -ENOMEM; |
| 53 | |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 54 | for (idx = 0; idx < REQUEST_LIST_SIZE; idx++) |
| 55 | INIT_LIST_HEAD(&adapter->req_list[idx]); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 56 | return 0; |
| 57 | } |
| 58 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 59 | /** |
| 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 Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 65 | int zfcp_reqlist_isempty(struct zfcp_adapter *adapter) |
| 66 | { |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 67 | unsigned int idx; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 68 | |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 69 | for (idx = 0; idx < REQUEST_LIST_SIZE; idx++) |
| 70 | if (!list_empty(&adapter->req_list[idx])) |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 71 | return 0; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 72 | return 1; |
| 73 | } |
| 74 | |
Christof Schmitt | 3623ecb | 2008-12-19 16:56:57 +0100 | [diff] [blame^] | 75 | static void __init zfcp_init_device_configure(char *busid, u64 wwpn, u64 lun) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { |
| 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 Schmitt | 3623ecb | 2008-12-19 16:56:57 +0100 | [diff] [blame^] | 83 | adapter = zfcp_get_adapter_by_busid(busid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | if (adapter) |
| 85 | zfcp_adapter_get(adapter); |
| 86 | read_unlock_irq(&zfcp_data.config_lock); |
| 87 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 88 | if (!adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | goto out_adapter; |
Christof Schmitt | 3623ecb | 2008-12-19 16:56:57 +0100 | [diff] [blame^] | 90 | port = zfcp_port_enqueue(adapter, wwpn, 0, 0); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 91 | if (IS_ERR(port)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | goto out_port; |
Christof Schmitt | 3623ecb | 2008-12-19 16:56:57 +0100 | [diff] [blame^] | 93 | unit = zfcp_unit_enqueue(port, lun); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 94 | if (IS_ERR(unit)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | goto out_unit; |
| 96 | up(&zfcp_data.config_sema); |
| 97 | ccw_device_set_online(adapter->ccw_device); |
Swen Schillig | 091694a | 2008-10-01 12:42:25 +0200 | [diff] [blame] | 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | zfcp_erp_wait(adapter); |
Swen Schillig | 091694a | 2008-10-01 12:42:25 +0200 | [diff] [blame] | 100 | wait_event(adapter->erp_done_wqh, |
| 101 | !(atomic_read(&unit->status) & |
| 102 | ZFCP_STATUS_UNIT_SCSI_WORK_PENDING)); |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | down(&zfcp_data.config_sema); |
| 105 | zfcp_unit_put(unit); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 106 | out_unit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | zfcp_port_put(port); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 108 | out_port: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | zfcp_adapter_put(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 110 | out_adapter: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | up(&zfcp_data.config_sema); |
| 112 | return; |
| 113 | } |
| 114 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 115 | static struct kmem_cache *zfcp_cache_create(int size, char *name) |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 116 | { |
| 117 | int align = 1; |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 118 | while ((size - align) > 0) |
| 119 | align <<= 1; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 120 | return kmem_cache_create(name , size, align, 0, NULL); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 121 | } |
| 122 | |
Christof Schmitt | 3623ecb | 2008-12-19 16:56:57 +0100 | [diff] [blame^] | 123 | static 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 Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 159 | static int __init zfcp_module_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 161 | int retval = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 163 | zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create( |
| 164 | sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf"); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 165 | if (!zfcp_data.fsf_req_qtcb_cache) |
| 166 | goto out; |
| 167 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 168 | zfcp_data.sr_buffer_cache = zfcp_cache_create( |
| 169 | sizeof(struct fsf_status_read_buffer), "zfcp_sr"); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 170 | if (!zfcp_data.sr_buffer_cache) |
| 171 | goto out_sr_cache; |
| 172 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 173 | zfcp_data.gid_pn_cache = zfcp_cache_create( |
| 174 | sizeof(struct zfcp_gid_pn_data), "zfcp_gid"); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 175 | if (!zfcp_data.gid_pn_cache) |
| 176 | goto out_gid_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Swen Schillig | b7f15f3 | 2008-10-01 12:42:22 +0200 | [diff] [blame] | 178 | zfcp_data.work_queue = create_singlethread_workqueue("zfcp_wq"); |
| 179 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 180 | sema_init(&zfcp_data.config_sema, 1); |
| 181 | rwlock_init(&zfcp_data.config_lock); |
| 182 | |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 183 | zfcp_data.scsi_transport_template = |
| 184 | fc_attach_transport(&zfcp_transport_functions); |
| 185 | if (!zfcp_data.scsi_transport_template) |
| 186 | goto out_transport; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | retval = misc_register(&zfcp_cfdc_misc); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 189 | if (retval) { |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 190 | pr_err("Registering the misc device zfcp_cfdc failed\n"); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 191 | goto out_misc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | retval = zfcp_ccw_register(); |
| 195 | if (retval) { |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 196 | pr_err("The zfcp device driver could not register with " |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 197 | "the common I/O layer\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | goto out_ccw_register; |
| 199 | } |
| 200 | |
Christof Schmitt | 3623ecb | 2008-12-19 16:56:57 +0100 | [diff] [blame^] | 201 | if (init_device) |
| 202 | zfcp_init_device_setup(init_device); |
| 203 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 205 | out_ccw_register: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | misc_deregister(&zfcp_cfdc_misc); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 207 | out_misc: |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 208 | fc_release_transport(zfcp_data.scsi_transport_template); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 209 | out_transport: |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 210 | kmem_cache_destroy(zfcp_data.gid_pn_cache); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 211 | out_gid_cache: |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 212 | kmem_cache_destroy(zfcp_data.sr_buffer_cache); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 213 | out_sr_cache: |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 214 | kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 215 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | return retval; |
| 217 | } |
| 218 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 219 | module_init(zfcp_module_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | /** |
| 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 Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 225 | * |
| 226 | * Returns: pointer to zfcp_unit or NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | */ |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 228 | struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | { |
| 230 | struct zfcp_unit *unit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 232 | list_for_each_entry(unit, &port->unit_list_head, list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | if ((unit->fcp_lun == fcp_lun) && |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 234 | !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE)) |
| 235 | return unit; |
| 236 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
| 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 Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 243 | * |
| 244 | * Returns: pointer to zfcp_port or NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | */ |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 246 | struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter, |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 247 | u64 wwpn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | { |
| 249 | struct zfcp_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 251 | list_for_each_entry(port, &adapter->port_list_head, list) |
| 252 | if ((port->wwpn == wwpn) && !(atomic_read(&port->status) & |
| 253 | (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE))) |
| 254 | return port; |
| 255 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | } |
| 257 | |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 258 | static void zfcp_sysfs_unit_release(struct device *dev) |
| 259 | { |
| 260 | kfree(container_of(dev, struct zfcp_unit, sysfs_device)); |
| 261 | } |
| 262 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | /** |
| 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 Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 267 | * Returns: pointer to enqueued unit on success, ERR_PTR on error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | * 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 Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 272 | struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { |
Christof Schmitt | 462b785 | 2007-06-19 10:25:30 +0200 | [diff] [blame] | 274 | struct zfcp_unit *unit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 276 | unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | if (!unit) |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 278 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | 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 Huck | 1bf5b28 | 2008-10-10 21:33:10 +0200 | [diff] [blame] | 286 | dev_set_name(&unit->sysfs_device, "0x%016llx", |
| 287 | (unsigned long long) fcp_lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | 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 Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 295 | 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 Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 303 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | } |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 308 | read_unlock_irq(&zfcp_data.config_lock); |
| 309 | |
| 310 | if (device_register(&unit->sysfs_device)) |
| 311 | goto err_out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 313 | if (sysfs_create_group(&unit->sysfs_device.kobj, |
| 314 | &zfcp_sysfs_unit_attrs)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | device_unregister(&unit->sysfs_device); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 316 | return ERR_PTR(-EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | zfcp_unit_get(unit); |
| 320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | write_lock_irq(&zfcp_data.config_lock); |
Christof Schmitt | 462b785 | 2007-06-19 10:25:30 +0200 | [diff] [blame] | 322 | list_add_tail(&unit->list, &port->unit_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status); |
| 324 | atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | write_unlock_irq(&zfcp_data.config_lock); |
| 327 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | zfcp_port_get(port); |
| 329 | |
| 330 | return unit; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 331 | |
| 332 | err_out_free: |
| 333 | kfree(unit); |
| 334 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | } |
| 336 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 337 | /** |
| 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 | */ |
| 344 | void zfcp_unit_dequeue(struct zfcp_unit *unit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 346 | wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | write_lock_irq(&zfcp_data.config_lock); |
| 348 | list_del(&unit->list); |
| 349 | write_unlock_irq(&zfcp_data.config_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | zfcp_port_put(unit->port); |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 351 | sysfs_remove_group(&unit->sysfs_device.kobj, &zfcp_sysfs_unit_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | device_unregister(&unit->sysfs_device); |
| 353 | } |
| 354 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 355 | static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 357 | /* must only be called with zfcp_data.config_sema taken */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | adapter->pool.fsf_req_erp = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 359 | mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 360 | if (!adapter->pool.fsf_req_erp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | return -ENOMEM; |
| 362 | |
| 363 | adapter->pool.fsf_req_scsi = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 364 | mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 365 | if (!adapter->pool.fsf_req_scsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | return -ENOMEM; |
| 367 | |
| 368 | adapter->pool.fsf_req_abort = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 369 | mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 370 | if (!adapter->pool.fsf_req_abort) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | return -ENOMEM; |
| 372 | |
| 373 | adapter->pool.fsf_req_status_read = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 374 | mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM, |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 375 | sizeof(struct zfcp_fsf_req)); |
| 376 | if (!adapter->pool.fsf_req_status_read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | return -ENOMEM; |
| 378 | |
| 379 | adapter->pool.data_status_read = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 380 | mempool_create_slab_pool(FSF_STATUS_READS_RECOM, |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 381 | zfcp_data.sr_buffer_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 382 | if (!adapter->pool.data_status_read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | return -ENOMEM; |
| 384 | |
| 385 | adapter->pool.data_gid_pn = |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 386 | mempool_create_slab_pool(1, zfcp_data.gid_pn_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 387 | if (!adapter->pool.data_gid_pn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | return -ENOMEM; |
| 389 | |
| 390 | return 0; |
| 391 | } |
| 392 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 393 | static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | { |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 395 | /* zfcp_data.config_sema must be held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | 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 Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 410 | /** |
| 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 Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 419 | int zfcp_status_read_refill(struct zfcp_adapter *adapter) |
| 420 | { |
| 421 | while (atomic_read(&adapter->stat_miss) > 0) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 422 | if (zfcp_fsf_status_read(adapter)) { |
Swen Schillig | 7afe29f | 2008-07-02 10:56:33 +0200 | [diff] [blame] | 423 | if (atomic_read(&adapter->stat_miss) >= 16) { |
| 424 | zfcp_erp_adapter_reopen(adapter, 0, 103, NULL); |
| 425 | return 1; |
| 426 | } |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 427 | break; |
Swen Schillig | 7afe29f | 2008-07-02 10:56:33 +0200 | [diff] [blame] | 428 | } else |
| 429 | atomic_dec(&adapter->stat_miss); |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 430 | return 0; |
| 431 | } |
| 432 | |
| 433 | static void _zfcp_status_read_scheduler(struct work_struct *work) |
| 434 | { |
| 435 | zfcp_status_read_refill(container_of(work, struct zfcp_adapter, |
| 436 | stat_work)); |
| 437 | } |
| 438 | |
Christof Schmitt | bd43a42b7 | 2008-12-25 13:38:50 +0100 | [diff] [blame] | 439 | static void zfcp_print_sl(struct seq_file *m, struct service_level *sl) |
| 440 | { |
| 441 | struct zfcp_adapter *adapter = |
| 442 | container_of(sl, struct zfcp_adapter, service_level); |
| 443 | |
| 444 | seq_printf(m, "zfcp: %s microcode level %x\n", |
| 445 | dev_name(&adapter->ccw_device->dev), |
| 446 | adapter->fsf_lic_version); |
| 447 | } |
| 448 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 449 | /** |
| 450 | * zfcp_adapter_enqueue - enqueue a new adapter to the list |
| 451 | * @ccw_device: pointer to the struct cc_device |
| 452 | * |
| 453 | * Returns: 0 if a new adapter was successfully enqueued |
| 454 | * -ENOMEM if alloc failed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | * Enqueues an adapter at the end of the adapter list in the driver data. |
| 456 | * All adapter internal structures are set up. |
| 457 | * Proc-fs entries are also created. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | * locks: config_sema must be held to serialise changes to the adapter list |
| 459 | */ |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 460 | int zfcp_adapter_enqueue(struct ccw_device *ccw_device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | struct zfcp_adapter *adapter; |
| 463 | |
| 464 | /* |
Swen Schillig | 41fa2ada | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 465 | * 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] | 466 | * are protected by the config_sema, which must be held to get here |
| 467 | */ |
| 468 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 469 | adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 470 | if (!adapter) |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 471 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
| 473 | ccw_device->handler = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | adapter->ccw_device = ccw_device; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 475 | atomic_set(&adapter->refcount, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 477 | if (zfcp_qdio_allocate(adapter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | goto qdio_allocate_failed; |
| 479 | |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 480 | if (zfcp_allocate_low_mem_buffers(adapter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | goto failed_low_mem_buffers; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 483 | if (zfcp_reqlist_alloc(adapter)) |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 484 | goto failed_low_mem_buffers; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 486 | if (zfcp_adapter_debug_register(adapter)) |
| 487 | goto debug_register_failed; |
| 488 | |
| 489 | init_waitqueue_head(&adapter->remove_wq); |
| 490 | init_waitqueue_head(&adapter->erp_thread_wqh); |
| 491 | init_waitqueue_head(&adapter->erp_done_wqh); |
| 492 | |
| 493 | INIT_LIST_HEAD(&adapter->port_list_head); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 494 | INIT_LIST_HEAD(&adapter->erp_ready_head); |
| 495 | INIT_LIST_HEAD(&adapter->erp_running_head); |
| 496 | |
| 497 | spin_lock_init(&adapter->req_list_lock); |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 498 | |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 499 | spin_lock_init(&adapter->hba_dbf_lock); |
| 500 | spin_lock_init(&adapter->san_dbf_lock); |
| 501 | spin_lock_init(&adapter->scsi_dbf_lock); |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 502 | spin_lock_init(&adapter->rec_dbf_lock); |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 503 | spin_lock_init(&adapter->req_q_lock); |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 504 | |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 505 | rwlock_init(&adapter->erp_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | rwlock_init(&adapter->abort_lock); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 507 | |
| 508 | sema_init(&adapter->erp_ready_sem, 0); |
| 509 | |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 510 | INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 511 | INIT_WORK(&adapter->scan_work, _zfcp_scan_ports_later); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
Christof Schmitt | bd43a42b7 | 2008-12-25 13:38:50 +0100 | [diff] [blame] | 513 | adapter->service_level.seq_print = zfcp_print_sl; |
| 514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | /* mark adapter unusable as long as sysfs registration is not complete */ |
| 516 | atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status); |
| 517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | dev_set_drvdata(&ccw_device->dev, adapter); |
| 519 | |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 520 | if (sysfs_create_group(&ccw_device->dev.kobj, |
| 521 | &zfcp_sysfs_adapter_attrs)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | goto sysfs_failed; |
| 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 525 | zfcp_fc_nameserver_init(adapter); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 526 | |
Swen Schillig | 1d3aab0 | 2008-12-19 16:56:53 +0100 | [diff] [blame] | 527 | if (!zfcp_adapter_scsi_register(adapter)) |
| 528 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 530 | sysfs_failed: |
Christof Schmitt | ff17a29 | 2007-08-28 09:31:41 +0200 | [diff] [blame] | 531 | zfcp_adapter_debug_unregister(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 532 | debug_register_failed: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | dev_set_drvdata(&ccw_device->dev, NULL); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 534 | kfree(adapter->req_list); |
| 535 | failed_low_mem_buffers: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | zfcp_free_low_mem_buffers(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 537 | qdio_allocate_failed: |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 538 | zfcp_qdio_free(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | kfree(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 540 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 543 | /** |
| 544 | * zfcp_adapter_dequeue - remove the adapter from the resource list |
| 545 | * @adapter: pointer to struct zfcp_adapter which should be removed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | * locks: adapter list write lock is assumed to be held by caller |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | */ |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 548 | void zfcp_adapter_dequeue(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | { |
| 550 | int retval = 0; |
| 551 | unsigned long flags; |
| 552 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 553 | cancel_work_sync(&adapter->scan_work); |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 554 | cancel_work_sync(&adapter->stat_work); |
Michael Loehr | 9f28745 | 2007-05-09 11:01:24 +0200 | [diff] [blame] | 555 | zfcp_adapter_scsi_unregister(adapter); |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 556 | sysfs_remove_group(&adapter->ccw_device->dev.kobj, |
| 557 | &zfcp_sysfs_adapter_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | dev_set_drvdata(&adapter->ccw_device->dev, NULL); |
| 559 | /* sanity check: no pending FSF requests */ |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 560 | spin_lock_irqsave(&adapter->req_list_lock, flags); |
| 561 | retval = zfcp_reqlist_isempty(adapter); |
| 562 | spin_unlock_irqrestore(&adapter->req_list_lock, flags); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 563 | if (!retval) |
| 564 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
Christof Schmitt | ff17a29 | 2007-08-28 09:31:41 +0200 | [diff] [blame] | 566 | zfcp_adapter_debug_unregister(adapter); |
Swen Schillig | 00bab91 | 2008-06-10 18:20:57 +0200 | [diff] [blame] | 567 | zfcp_qdio_free(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | zfcp_free_low_mem_buffers(adapter); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 569 | kfree(adapter->req_list); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 570 | kfree(adapter->fc_stats); |
| 571 | kfree(adapter->stats_reset_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | kfree(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | } |
| 574 | |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 575 | static void zfcp_sysfs_port_release(struct device *dev) |
| 576 | { |
| 577 | kfree(container_of(dev, struct zfcp_port, sysfs_device)); |
| 578 | } |
| 579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | /** |
| 581 | * zfcp_port_enqueue - enqueue port to port list of adapter |
| 582 | * @adapter: adapter where remote port is added |
| 583 | * @wwpn: WWPN of the remote port to be enqueued |
| 584 | * @status: initial status for the port |
| 585 | * @d_id: destination id of the remote port to be enqueued |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 586 | * Returns: pointer to enqueued port on success, ERR_PTR on error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | * Locks: config_sema must be held to serialize changes to the port list |
| 588 | * |
| 589 | * All port internal structures are set up and the sysfs entry is generated. |
| 590 | * d_id is used to enqueue ports with a well known address like the Directory |
| 591 | * Service for nameserver lookup. |
| 592 | */ |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 593 | struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn, |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 594 | u32 status, u32 d_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | { |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 596 | struct zfcp_port *port; |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 597 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 599 | port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | if (!port) |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 601 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | init_waitqueue_head(&port->remove_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | INIT_LIST_HEAD(&port->unit_list_head); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 605 | INIT_WORK(&port->gid_pn_work, zfcp_erp_port_strategy_open_lookup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
| 607 | port->adapter = adapter; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 608 | port->d_id = d_id; |
| 609 | port->wwpn = wwpn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 611 | /* mark port unusable as long as sysfs registration is not complete */ |
| 612 | atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status); |
| 613 | atomic_set(&port->refcount, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Christof Schmitt | adc90da | 2008-11-04 16:35:09 +0100 | [diff] [blame] | 615 | dev_set_name(&port->sysfs_device, "0x%016llx", |
| 616 | (unsigned long long)wwpn); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 617 | port->sysfs_device.parent = &adapter->ccw_device->dev; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | port->sysfs_device.release = zfcp_sysfs_port_release; |
| 620 | dev_set_drvdata(&port->sysfs_device, port); |
| 621 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 622 | read_lock_irq(&zfcp_data.config_lock); |
| 623 | if (!(status & ZFCP_STATUS_PORT_NO_WWPN)) |
| 624 | if (zfcp_get_port_by_wwpn(adapter, wwpn)) { |
| 625 | read_unlock_irq(&zfcp_data.config_lock); |
| 626 | goto err_out_free; |
| 627 | } |
| 628 | read_unlock_irq(&zfcp_data.config_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 630 | if (device_register(&port->sysfs_device)) |
| 631 | goto err_out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 633 | retval = sysfs_create_group(&port->sysfs_device.kobj, |
| 634 | &zfcp_sysfs_port_attrs); |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 635 | |
| 636 | if (retval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | device_unregister(&port->sysfs_device); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 638 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | zfcp_port_get(port); |
| 642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | write_lock_irq(&zfcp_data.config_lock); |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 644 | list_add_tail(&port->list, &adapter->port_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status); |
| 646 | atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | write_unlock_irq(&zfcp_data.config_lock); |
| 649 | |
| 650 | zfcp_adapter_get(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | return port; |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 652 | |
| 653 | err_out_free: |
| 654 | kfree(port); |
| 655 | err_out: |
| 656 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | } |
| 658 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 659 | /** |
| 660 | * zfcp_port_dequeue - dequeues a port from the port list of the adapter |
| 661 | * @port: pointer to struct zfcp_port which should be removed |
| 662 | */ |
| 663 | void zfcp_port_dequeue(struct zfcp_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 665 | wait_event(port->remove_wq, atomic_read(&port->refcount) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | write_lock_irq(&zfcp_data.config_lock); |
| 667 | list_del(&port->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | write_unlock_irq(&zfcp_data.config_lock); |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 669 | if (port->rport) |
Heiko Carstens | 20b1730 | 2005-08-28 13:22:37 -0700 | [diff] [blame] | 670 | fc_remote_port_delete(port->rport); |
| 671 | port->rport = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | zfcp_adapter_put(port->adapter); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 673 | sysfs_remove_group(&port->sysfs_device.kobj, &zfcp_sysfs_port_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | device_unregister(&port->sysfs_device); |
| 675 | } |
| 676 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 677 | /** |
| 678 | * zfcp_sg_free_table - free memory used by scatterlists |
| 679 | * @sg: pointer to scatterlist |
| 680 | * @count: number of scatterlist which are to be free'ed |
| 681 | * the scatterlist are expected to reference pages always |
| 682 | */ |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 683 | void zfcp_sg_free_table(struct scatterlist *sg, int count) |
| 684 | { |
| 685 | int i; |
| 686 | |
| 687 | for (i = 0; i < count; i++, sg++) |
| 688 | if (sg) |
| 689 | free_page((unsigned long) sg_virt(sg)); |
| 690 | else |
| 691 | break; |
| 692 | } |
| 693 | |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 694 | /** |
| 695 | * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers |
| 696 | * @sg: pointer to struct scatterlist |
| 697 | * @count: number of scatterlists which should be assigned with buffers |
| 698 | * of size page |
| 699 | * |
| 700 | * Returns: 0 on success, -ENOMEM otherwise |
| 701 | */ |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 702 | int zfcp_sg_setup_table(struct scatterlist *sg, int count) |
| 703 | { |
| 704 | void *addr; |
| 705 | int i; |
| 706 | |
| 707 | sg_init_table(sg, count); |
| 708 | for (i = 0; i < count; i++, sg++) { |
| 709 | addr = (void *) get_zeroed_page(GFP_KERNEL); |
| 710 | if (!addr) { |
| 711 | zfcp_sg_free_table(sg, i); |
| 712 | return -ENOMEM; |
| 713 | } |
| 714 | sg_set_buf(sg, addr, PAGE_SIZE); |
| 715 | } |
| 716 | return 0; |
| 717 | } |