2 * linux/drivers/s390/scsi/zfcp_ccw.c
4 * FCP adapter driver for IBM eServer zSeries
6 * CCW driver related routines
8 * (C) Copyright IBM Corp. 2003, 2004
11 * Martin Peschke <mpeschke@de.ibm.com>
12 * Heiko Carstens <heiko.carstens@de.ibm.com>
13 * Andreas Herrmann <aherrman@de.ibm.com>
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2, or (at your option)
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 #define ZFCP_CCW_C_REVISION "$Revision: 1.58 $"
34 #define ZFCP_LOG_AREA ZFCP_LOG_AREA_CONFIG
36 static int zfcp_ccw_probe(struct ccw_device *);
37 static void zfcp_ccw_remove(struct ccw_device *);
38 static int zfcp_ccw_set_online(struct ccw_device *);
39 static int zfcp_ccw_set_offline(struct ccw_device *);
40 static int zfcp_ccw_notify(struct ccw_device *, int);
41 static void zfcp_ccw_shutdown(struct device *);
43 static struct ccw_device_id zfcp_ccw_device_id[] = {
44 {CCW_DEVICE_DEVTYPE(ZFCP_CONTROL_UNIT_TYPE,
45 ZFCP_CONTROL_UNIT_MODEL,
48 {CCW_DEVICE_DEVTYPE(ZFCP_CONTROL_UNIT_TYPE,
49 ZFCP_CONTROL_UNIT_MODEL,
51 ZFCP_DEVICE_MODEL_PRIV)},
55 static struct ccw_driver zfcp_ccw_driver = {
58 .ids = zfcp_ccw_device_id,
59 .probe = zfcp_ccw_probe,
60 .remove = zfcp_ccw_remove,
61 .set_online = zfcp_ccw_set_online,
62 .set_offline = zfcp_ccw_set_offline,
63 .notify = zfcp_ccw_notify,
65 .shutdown = zfcp_ccw_shutdown,
69 MODULE_DEVICE_TABLE(ccw, zfcp_ccw_device_id);
72 * zfcp_ccw_probe - probe function of zfcp driver
73 * @ccw_device: pointer to belonging ccw device
75 * This function gets called by the common i/o layer and sets up the initial
76 * data structures for each fcp adapter, which was detected by the system.
77 * Also the sysfs files for this adapter will be created by this function.
78 * In addition the nameserver port will be added to the ports of the adapter
79 * and its sysfs representation will be created too.
82 zfcp_ccw_probe(struct ccw_device *ccw_device)
84 struct zfcp_adapter *adapter;
87 down(&zfcp_data.config_sema);
88 adapter = zfcp_adapter_enqueue(ccw_device);
92 ZFCP_LOG_DEBUG("Probed adapter %s\n",
93 zfcp_get_busid_by_adapter(adapter));
94 up(&zfcp_data.config_sema);
99 * zfcp_ccw_remove - remove function of zfcp driver
100 * @ccw_device: pointer to belonging ccw device
102 * This function gets called by the common i/o layer and removes an adapter
103 * from the system. Task of this function is to get rid of all units and
104 * ports that belong to this adapter. And in addition all resources of this
105 * adapter will be freed too.
108 zfcp_ccw_remove(struct ccw_device *ccw_device)
110 struct zfcp_adapter *adapter;
111 struct zfcp_port *port, *p;
112 struct zfcp_unit *unit, *u;
114 ccw_device_set_offline(ccw_device);
115 down(&zfcp_data.config_sema);
116 adapter = dev_get_drvdata(&ccw_device->dev);
118 ZFCP_LOG_DEBUG("Removing adapter %s\n",
119 zfcp_get_busid_by_adapter(adapter));
120 write_lock_irq(&zfcp_data.config_lock);
121 list_for_each_entry_safe(port, p, &adapter->port_list_head, list) {
122 list_for_each_entry_safe(unit, u, &port->unit_list_head, list) {
123 list_move(&unit->list, &port->unit_remove_lh);
124 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE,
127 list_move(&port->list, &adapter->port_remove_lh);
128 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
130 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
131 write_unlock_irq(&zfcp_data.config_lock);
133 list_for_each_entry_safe(port, p, &adapter->port_remove_lh, list) {
134 list_for_each_entry_safe(unit, u, &port->unit_remove_lh, list) {
135 zfcp_unit_dequeue(unit);
137 zfcp_port_dequeue(port);
139 zfcp_adapter_wait(adapter);
140 zfcp_adapter_dequeue(adapter);
142 up(&zfcp_data.config_sema);
146 * zfcp_ccw_set_online - set_online function of zfcp driver
147 * @ccw_device: pointer to belonging ccw device
149 * This function gets called by the common i/o layer and sets an adapter
150 * into state online. Setting an fcp device online means that it will be
151 * registered with the SCSI stack, that the QDIO queues will be set up
152 * and that the adapter will be opened (asynchronously).
155 zfcp_ccw_set_online(struct ccw_device *ccw_device)
157 struct zfcp_adapter *adapter;
160 down(&zfcp_data.config_sema);
161 adapter = dev_get_drvdata(&ccw_device->dev);
163 retval = zfcp_adapter_debug_register(adapter);
166 retval = zfcp_erp_thread_setup(adapter);
168 ZFCP_LOG_INFO("error: start of error recovery thread for "
169 "adapter %s failed\n",
170 zfcp_get_busid_by_adapter(adapter));
174 retval = zfcp_adapter_scsi_register(adapter);
176 goto out_scsi_register;
177 zfcp_erp_modify_adapter_status(adapter, ZFCP_STATUS_COMMON_RUNNING,
179 zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED);
180 zfcp_erp_wait(adapter);
184 zfcp_erp_thread_kill(adapter);
186 zfcp_adapter_debug_unregister(adapter);
188 up(&zfcp_data.config_sema);
193 * zfcp_ccw_set_offline - set_offline function of zfcp driver
194 * @ccw_device: pointer to belonging ccw device
196 * This function gets called by the common i/o layer and sets an adapter
197 * into state offline. Setting an fcp device offline means that it will be
198 * unregistered from the SCSI stack and that the adapter will be shut down
202 zfcp_ccw_set_offline(struct ccw_device *ccw_device)
204 struct zfcp_adapter *adapter;
205 struct zfcp_port *port;
206 struct fc_rport *rport;
208 down(&zfcp_data.config_sema);
209 adapter = dev_get_drvdata(&ccw_device->dev);
210 /* might be racy, but we cannot take config_lock due to the fact that
211 fc_remote_port_delete might sleep */
212 list_for_each_entry(port, &adapter->port_list_head, list)
216 fc_remote_port_delete(rport);
218 zfcp_erp_adapter_shutdown(adapter, 0);
219 zfcp_erp_wait(adapter);
220 zfcp_adapter_scsi_unregister(adapter);
221 zfcp_erp_thread_kill(adapter);
222 zfcp_adapter_debug_unregister(adapter);
223 up(&zfcp_data.config_sema);
229 * @ccw_device: pointer to belonging ccw device
230 * @event: indicates if adapter was detached or attached
232 * This function gets called by the common i/o layer if an adapter has gone
236 zfcp_ccw_notify(struct ccw_device *ccw_device, int event)
238 struct zfcp_adapter *adapter;
240 down(&zfcp_data.config_sema);
241 adapter = dev_get_drvdata(&ccw_device->dev);
244 ZFCP_LOG_NORMAL("adapter %s: device gone\n",
245 zfcp_get_busid_by_adapter(adapter));
246 debug_text_event(adapter->erp_dbf,1,"dev_gone");
247 zfcp_erp_adapter_shutdown(adapter, 0);
250 ZFCP_LOG_NORMAL("adapter %s: no path\n",
251 zfcp_get_busid_by_adapter(adapter));
252 debug_text_event(adapter->erp_dbf,1,"no_path");
253 zfcp_erp_adapter_shutdown(adapter, 0);
256 ZFCP_LOG_NORMAL("adapter %s: operational again\n",
257 zfcp_get_busid_by_adapter(adapter));
258 debug_text_event(adapter->erp_dbf,1,"dev_oper");
259 zfcp_erp_modify_adapter_status(adapter,
260 ZFCP_STATUS_COMMON_RUNNING,
262 zfcp_erp_adapter_reopen(adapter,
263 ZFCP_STATUS_COMMON_ERP_FAILED);
266 zfcp_erp_wait(adapter);
267 up(&zfcp_data.config_sema);
272 * zfcp_ccw_register - ccw register function
274 * Registers the driver at the common i/o layer. This function will be called
275 * at module load time/system start.
278 zfcp_ccw_register(void)
282 retval = ccw_driver_register(&zfcp_ccw_driver);
285 retval = zfcp_sysfs_driver_create_files(&zfcp_ccw_driver.driver);
287 ccw_driver_unregister(&zfcp_ccw_driver);
293 * zfcp_ccw_unregister - ccw unregister function
295 * Unregisters the driver from common i/o layer. Function will be called at
296 * module unload/system shutdown.
299 zfcp_ccw_unregister(void)
301 zfcp_sysfs_driver_remove_files(&zfcp_ccw_driver.driver);
302 ccw_driver_unregister(&zfcp_ccw_driver);
306 * zfcp_ccw_shutdown - gets called on reboot/shutdown
308 * Makes sure that QDIO queues are down when the system gets stopped.
311 zfcp_ccw_shutdown(struct device *dev)
313 struct zfcp_adapter *adapter;
315 down(&zfcp_data.config_sema);
316 adapter = dev_get_drvdata(dev);
317 zfcp_erp_adapter_shutdown(adapter, 0);
318 zfcp_erp_wait(adapter);
319 up(&zfcp_data.config_sema);