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
;
206 down(&zfcp_data
.config_sema
);
207 adapter
= dev_get_drvdata(&ccw_device
->dev
);
208 zfcp_erp_adapter_shutdown(adapter
, 0);
209 zfcp_erp_wait(adapter
);
210 zfcp_adapter_scsi_unregister(adapter
);
211 zfcp_erp_thread_kill(adapter
);
212 zfcp_adapter_debug_unregister(adapter
);
213 up(&zfcp_data
.config_sema
);
219 * @ccw_device: pointer to belonging ccw device
220 * @event: indicates if adapter was detached or attached
222 * This function gets called by the common i/o layer if an adapter has gone
226 zfcp_ccw_notify(struct ccw_device
*ccw_device
, int event
)
228 struct zfcp_adapter
*adapter
;
230 down(&zfcp_data
.config_sema
);
231 adapter
= dev_get_drvdata(&ccw_device
->dev
);
234 ZFCP_LOG_NORMAL("adapter %s: device gone\n",
235 zfcp_get_busid_by_adapter(adapter
));
236 debug_text_event(adapter
->erp_dbf
,1,"dev_gone");
237 zfcp_erp_adapter_shutdown(adapter
, 0);
240 ZFCP_LOG_NORMAL("adapter %s: no path\n",
241 zfcp_get_busid_by_adapter(adapter
));
242 debug_text_event(adapter
->erp_dbf
,1,"no_path");
243 zfcp_erp_adapter_shutdown(adapter
, 0);
246 ZFCP_LOG_NORMAL("adapter %s: operational again\n",
247 zfcp_get_busid_by_adapter(adapter
));
248 debug_text_event(adapter
->erp_dbf
,1,"dev_oper");
249 zfcp_erp_modify_adapter_status(adapter
,
250 ZFCP_STATUS_COMMON_RUNNING
,
252 zfcp_erp_adapter_reopen(adapter
,
253 ZFCP_STATUS_COMMON_ERP_FAILED
);
256 zfcp_erp_wait(adapter
);
257 up(&zfcp_data
.config_sema
);
262 * zfcp_ccw_register - ccw register function
264 * Registers the driver at the common i/o layer. This function will be called
265 * at module load time/system start.
268 zfcp_ccw_register(void)
272 retval
= ccw_driver_register(&zfcp_ccw_driver
);
275 retval
= zfcp_sysfs_driver_create_files(&zfcp_ccw_driver
.driver
);
277 ccw_driver_unregister(&zfcp_ccw_driver
);
283 * zfcp_ccw_unregister - ccw unregister function
285 * Unregisters the driver from common i/o layer. Function will be called at
286 * module unload/system shutdown.
289 zfcp_ccw_unregister(void)
291 zfcp_sysfs_driver_remove_files(&zfcp_ccw_driver
.driver
);
292 ccw_driver_unregister(&zfcp_ccw_driver
);
296 * zfcp_ccw_shutdown - gets called on reboot/shutdown
298 * Makes sure that QDIO queues are down when the system gets stopped.
301 zfcp_ccw_shutdown(struct device
*dev
)
303 struct zfcp_adapter
*adapter
;
305 down(&zfcp_data
.config_sema
);
306 adapter
= dev_get_drvdata(dev
);
307 zfcp_erp_adapter_shutdown(adapter
, 0);
308 zfcp_erp_wait(adapter
);
309 up(&zfcp_data
.config_sema
);