blob: dde539ca4b3dcfc7fb8bbc476feb70daffff6639 [file] [log] [blame]
David Somayajuluafaf5a22006-09-19 10:28:00 -07001/*
2 * QLogic iSCSI HBA Driver
Vikas Chaudhary7d01d062010-12-02 22:12:51 -08003 * Copyright (c) 2003-2010 QLogic Corporation
David Somayajuluafaf5a22006-09-19 10:28:00 -07004 *
5 * See LICENSE.qla4xxx for copyright and licensing details.
6 */
7#include <linux/moduleparam.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Manish Rangankar2a991c22011-07-25 13:48:55 -05009#include <linux/blkdev.h>
10#include <linux/iscsi_boot_sysfs.h>
Mike Christie13483732011-12-01 21:38:41 -060011#include <linux/inet.h>
David Somayajuluafaf5a22006-09-19 10:28:00 -070012
13#include <scsi/scsi_tcq.h>
14#include <scsi/scsicam.h>
15
16#include "ql4_def.h"
David C Somayajulubee4fe82007-05-23 18:03:32 -070017#include "ql4_version.h"
18#include "ql4_glbl.h"
19#include "ql4_dbg.h"
20#include "ql4_inline.h"
David Somayajuluafaf5a22006-09-19 10:28:00 -070021
22/*
23 * Driver version
24 */
Adrian Bunk47975472007-04-26 00:35:16 -070025static char qla4xxx_version_str[40];
David Somayajuluafaf5a22006-09-19 10:28:00 -070026
27/*
28 * SRB allocation cache
29 */
Christoph Lametere18b8902006-12-06 20:33:20 -080030static struct kmem_cache *srb_cachep;
David Somayajuluafaf5a22006-09-19 10:28:00 -070031
32/*
33 * Module parameter information and variables
34 */
Mike Christie13483732011-12-01 21:38:41 -060035int ql4xdisablesysfsboot = 1;
36module_param(ql4xdisablesysfsboot, int, S_IRUGO | S_IWUSR);
37MODULE_PARM_DESC(ql4xdisablesysfsboot,
38 "Set to disable exporting boot targets to sysfs\n"
39 " 0 - Export boot targets\n"
40 " 1 - Do not export boot targets (Default)");
41
David Somayajuluafaf5a22006-09-19 10:28:00 -070042int ql4xdontresethba = 0;
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +053043module_param(ql4xdontresethba, int, S_IRUGO | S_IWUSR);
David Somayajuluafaf5a22006-09-19 10:28:00 -070044MODULE_PARM_DESC(ql4xdontresethba,
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +053045 "Don't reset the HBA for driver recovery \n"
46 " 0 - It will reset HBA (Default)\n"
47 " 1 - It will NOT reset HBA");
David Somayajuluafaf5a22006-09-19 10:28:00 -070048
Andrew Vasquez11010fe2006-10-06 09:54:59 -070049int ql4xextended_error_logging = 0; /* 0 = off, 1 = log errors */
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +053050module_param(ql4xextended_error_logging, int, S_IRUGO | S_IWUSR);
Andrew Vasquez11010fe2006-10-06 09:54:59 -070051MODULE_PARM_DESC(ql4xextended_error_logging,
David Somayajuluafaf5a22006-09-19 10:28:00 -070052 "Option to enable extended error logging, "
53 "Default is 0 - no logging, 1 - debug logging");
54
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +053055int ql4xenablemsix = 1;
56module_param(ql4xenablemsix, int, S_IRUGO|S_IWUSR);
57MODULE_PARM_DESC(ql4xenablemsix,
58 "Set to enable MSI or MSI-X interrupt mechanism.\n"
59 " 0 = enable INTx interrupt mechanism.\n"
60 " 1 = enable MSI-X interrupt mechanism (Default).\n"
61 " 2 = enable MSI interrupt mechanism.");
David C Somayajulu477ffb92007-01-22 12:26:11 -080062
Mike Christied510d962008-07-11 19:50:33 -050063#define QL4_DEF_QDEPTH 32
Vikas Chaudhary8bb40332011-03-21 03:34:31 -070064static int ql4xmaxqdepth = QL4_DEF_QDEPTH;
65module_param(ql4xmaxqdepth, int, S_IRUGO | S_IWUSR);
66MODULE_PARM_DESC(ql4xmaxqdepth,
67 "Maximum queue depth to report for target devices.\n"
68 " Default: 32.");
Mike Christied510d962008-07-11 19:50:33 -050069
Vikas Chaudhary30387272011-03-21 03:34:32 -070070static int ql4xsess_recovery_tmo = QL4_SESS_RECOVERY_TMO;
71module_param(ql4xsess_recovery_tmo, int, S_IRUGO);
72MODULE_PARM_DESC(ql4xsess_recovery_tmo,
73 "Target Session Recovery Timeout.\n"
Mike Christie13483732011-12-01 21:38:41 -060074 " Default: 120 sec.");
Vikas Chaudhary30387272011-03-21 03:34:32 -070075
Manish Rangankarb3a271a2011-07-25 13:48:53 -050076static int qla4xxx_wait_for_hba_online(struct scsi_qla_host *ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -070077/*
78 * SCSI host template entry points
79 */
Adrian Bunk47975472007-04-26 00:35:16 -070080static void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -070081
82/*
83 * iSCSI template entry points
84 */
David Somayajuluafaf5a22006-09-19 10:28:00 -070085static int qla4xxx_conn_get_param(struct iscsi_cls_conn *conn,
86 enum iscsi_param param, char *buf);
Mike Christieaa1e93a2007-05-30 12:57:09 -050087static int qla4xxx_host_get_param(struct Scsi_Host *shost,
88 enum iscsi_host_param param, char *buf);
Mike Christie00c31882011-10-06 03:56:59 -050089static int qla4xxx_iface_set_param(struct Scsi_Host *shost, void *data,
90 uint32_t len);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -050091static int qla4xxx_get_iface_param(struct iscsi_iface *iface,
92 enum iscsi_param_type param_type,
93 int param, char *buf);
Mike Christie5c656af2009-07-15 15:02:59 -050094static enum blk_eh_timer_return qla4xxx_eh_cmd_timed_out(struct scsi_cmnd *sc);
Manish Rangankarb3a271a2011-07-25 13:48:53 -050095static struct iscsi_endpoint *qla4xxx_ep_connect(struct Scsi_Host *shost,
96 struct sockaddr *dst_addr,
97 int non_blocking);
98static int qla4xxx_ep_poll(struct iscsi_endpoint *ep, int timeout_ms);
99static void qla4xxx_ep_disconnect(struct iscsi_endpoint *ep);
100static int qla4xxx_get_ep_param(struct iscsi_endpoint *ep,
101 enum iscsi_param param, char *buf);
102static int qla4xxx_conn_start(struct iscsi_cls_conn *conn);
103static struct iscsi_cls_conn *
104qla4xxx_conn_create(struct iscsi_cls_session *cls_sess, uint32_t conn_idx);
105static int qla4xxx_conn_bind(struct iscsi_cls_session *cls_session,
106 struct iscsi_cls_conn *cls_conn,
107 uint64_t transport_fd, int is_leading);
108static void qla4xxx_conn_destroy(struct iscsi_cls_conn *conn);
109static struct iscsi_cls_session *
110qla4xxx_session_create(struct iscsi_endpoint *ep, uint16_t cmds_max,
111 uint16_t qdepth, uint32_t initial_cmdsn);
112static void qla4xxx_session_destroy(struct iscsi_cls_session *sess);
113static void qla4xxx_task_work(struct work_struct *wdata);
114static int qla4xxx_alloc_pdu(struct iscsi_task *, uint8_t);
115static int qla4xxx_task_xmit(struct iscsi_task *);
116static void qla4xxx_task_cleanup(struct iscsi_task *);
117static void qla4xxx_fail_session(struct iscsi_cls_session *cls_session);
118static void qla4xxx_conn_get_stats(struct iscsi_cls_conn *cls_conn,
119 struct iscsi_stats *stats);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700120/*
121 * SCSI host template entry points
122 */
Jeff Garzikf2812332010-11-16 02:10:29 -0500123static int qla4xxx_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +0530124static int qla4xxx_eh_abort(struct scsi_cmnd *cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700125static int qla4xxx_eh_device_reset(struct scsi_cmnd *cmd);
Mike Christiece545032008-02-29 18:25:20 -0600126static int qla4xxx_eh_target_reset(struct scsi_cmnd *cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700127static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd);
128static int qla4xxx_slave_alloc(struct scsi_device *device);
129static int qla4xxx_slave_configure(struct scsi_device *device);
130static void qla4xxx_slave_destroy(struct scsi_device *sdev);
Mike Christie3128c6c2011-07-25 13:48:42 -0500131static mode_t ql4_attr_is_visible(int param_type, int param);
Vikas Chaudhary95d31262011-08-12 02:51:29 -0700132static int qla4xxx_host_reset(struct Scsi_Host *shost, int reset_type);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700133
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +0530134static struct qla4_8xxx_legacy_intr_set legacy_intr[] =
135 QLA82XX_LEGACY_INTR_CONFIG;
136
David Somayajuluafaf5a22006-09-19 10:28:00 -0700137static struct scsi_host_template qla4xxx_driver_template = {
138 .module = THIS_MODULE,
139 .name = DRIVER_NAME,
140 .proc_name = DRIVER_NAME,
141 .queuecommand = qla4xxx_queuecommand,
142
Vikas Chaudhary09a0f712010-04-28 11:42:24 +0530143 .eh_abort_handler = qla4xxx_eh_abort,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700144 .eh_device_reset_handler = qla4xxx_eh_device_reset,
Mike Christiece545032008-02-29 18:25:20 -0600145 .eh_target_reset_handler = qla4xxx_eh_target_reset,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700146 .eh_host_reset_handler = qla4xxx_eh_host_reset,
Mike Christie5c656af2009-07-15 15:02:59 -0500147 .eh_timed_out = qla4xxx_eh_cmd_timed_out,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700148
149 .slave_configure = qla4xxx_slave_configure,
150 .slave_alloc = qla4xxx_slave_alloc,
151 .slave_destroy = qla4xxx_slave_destroy,
152
153 .this_id = -1,
154 .cmd_per_lun = 3,
155 .use_clustering = ENABLE_CLUSTERING,
156 .sg_tablesize = SG_ALL,
157
158 .max_sectors = 0xFFFF,
Harish Zunjarrao7ad633c2011-05-17 23:17:11 -0700159 .shost_attrs = qla4xxx_host_attrs,
Vikas Chaudhary95d31262011-08-12 02:51:29 -0700160 .host_reset = qla4xxx_host_reset,
Vikas Chaudharya3559432011-07-25 13:48:51 -0500161 .vendor_id = SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700162};
163
164static struct iscsi_transport qla4xxx_iscsi_transport = {
165 .owner = THIS_MODULE,
166 .name = DRIVER_NAME,
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500167 .caps = CAP_TEXT_NEGO |
168 CAP_DATA_PATH_OFFLOAD | CAP_HDRDGST |
169 CAP_DATADGST | CAP_LOGIN_OFFLOAD |
170 CAP_MULTI_R2T,
Mike Christie3128c6c2011-07-25 13:48:42 -0500171 .attr_is_visible = ql4_attr_is_visible,
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500172 .create_session = qla4xxx_session_create,
173 .destroy_session = qla4xxx_session_destroy,
174 .start_conn = qla4xxx_conn_start,
175 .create_conn = qla4xxx_conn_create,
176 .bind_conn = qla4xxx_conn_bind,
177 .stop_conn = iscsi_conn_stop,
178 .destroy_conn = qla4xxx_conn_destroy,
179 .set_param = iscsi_set_param,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700180 .get_conn_param = qla4xxx_conn_get_param,
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500181 .get_session_param = iscsi_session_get_param,
182 .get_ep_param = qla4xxx_get_ep_param,
183 .ep_connect = qla4xxx_ep_connect,
184 .ep_poll = qla4xxx_ep_poll,
185 .ep_disconnect = qla4xxx_ep_disconnect,
186 .get_stats = qla4xxx_conn_get_stats,
187 .send_pdu = iscsi_conn_send_pdu,
188 .xmit_task = qla4xxx_task_xmit,
189 .cleanup_task = qla4xxx_task_cleanup,
190 .alloc_pdu = qla4xxx_alloc_pdu,
191
Mike Christieaa1e93a2007-05-30 12:57:09 -0500192 .get_host_param = qla4xxx_host_get_param,
Mike Christied00efe32011-07-25 13:48:38 -0500193 .set_iface_param = qla4xxx_iface_set_param,
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500194 .get_iface_param = qla4xxx_get_iface_param,
Vikas Chaudharya3559432011-07-25 13:48:51 -0500195 .bsg_request = qla4xxx_bsg_request,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700196};
197
198static struct scsi_transport_template *qla4xxx_scsi_transport;
199
Mike Christie3128c6c2011-07-25 13:48:42 -0500200static mode_t ql4_attr_is_visible(int param_type, int param)
201{
202 switch (param_type) {
Mike Christief27fb2e2011-07-25 13:48:45 -0500203 case ISCSI_HOST_PARAM:
204 switch (param) {
205 case ISCSI_HOST_PARAM_HWADDRESS:
206 case ISCSI_HOST_PARAM_IPADDRESS:
207 case ISCSI_HOST_PARAM_INITIATOR_NAME:
208 return S_IRUGO;
209 default:
210 return 0;
211 }
Mike Christie3128c6c2011-07-25 13:48:42 -0500212 case ISCSI_PARAM:
213 switch (param) {
Mike Christie590134f2011-10-17 22:42:13 -0500214 case ISCSI_PARAM_PERSISTENT_ADDRESS:
215 case ISCSI_PARAM_PERSISTENT_PORT:
Mike Christie3128c6c2011-07-25 13:48:42 -0500216 case ISCSI_PARAM_CONN_ADDRESS:
217 case ISCSI_PARAM_CONN_PORT:
Mike Christie1d063c12011-07-25 13:48:43 -0500218 case ISCSI_PARAM_TARGET_NAME:
219 case ISCSI_PARAM_TPGT:
220 case ISCSI_PARAM_TARGET_ALIAS:
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500221 case ISCSI_PARAM_MAX_BURST:
222 case ISCSI_PARAM_MAX_R2T:
223 case ISCSI_PARAM_FIRST_BURST:
224 case ISCSI_PARAM_MAX_RECV_DLENGTH:
225 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
Mike Christiede379202011-08-14 20:42:56 -0500226 case ISCSI_PARAM_IFACE_NAME:
Mike Christie3128c6c2011-07-25 13:48:42 -0500227 return S_IRUGO;
228 default:
229 return 0;
230 }
Mike Christieb78dbba2011-07-25 13:48:44 -0500231 case ISCSI_NET_PARAM:
232 switch (param) {
233 case ISCSI_NET_PARAM_IPV4_ADDR:
234 case ISCSI_NET_PARAM_IPV4_SUBNET:
235 case ISCSI_NET_PARAM_IPV4_GW:
236 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
237 case ISCSI_NET_PARAM_IFACE_ENABLE:
238 case ISCSI_NET_PARAM_IPV6_LINKLOCAL:
239 case ISCSI_NET_PARAM_IPV6_ADDR:
240 case ISCSI_NET_PARAM_IPV6_ROUTER:
241 case ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG:
242 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG:
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -0500243 case ISCSI_NET_PARAM_VLAN_ID:
244 case ISCSI_NET_PARAM_VLAN_PRIORITY:
245 case ISCSI_NET_PARAM_VLAN_ENABLED:
Vikas Chaudhary943c1572011-08-01 03:26:13 -0700246 case ISCSI_NET_PARAM_MTU:
Vikas Chaudhary2ada7fc2011-08-01 03:26:19 -0700247 case ISCSI_NET_PARAM_PORT:
Mike Christieb78dbba2011-07-25 13:48:44 -0500248 return S_IRUGO;
249 default:
250 return 0;
251 }
Mike Christie3128c6c2011-07-25 13:48:42 -0500252 }
253
254 return 0;
255}
256
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500257static int qla4xxx_get_iface_param(struct iscsi_iface *iface,
258 enum iscsi_param_type param_type,
259 int param, char *buf)
260{
261 struct Scsi_Host *shost = iscsi_iface_to_shost(iface);
262 struct scsi_qla_host *ha = to_qla_host(shost);
263 int len = -ENOSYS;
264
265 if (param_type != ISCSI_NET_PARAM)
266 return -ENOSYS;
267
268 switch (param) {
269 case ISCSI_NET_PARAM_IPV4_ADDR:
270 len = sprintf(buf, "%pI4\n", &ha->ip_config.ip_address);
271 break;
272 case ISCSI_NET_PARAM_IPV4_SUBNET:
273 len = sprintf(buf, "%pI4\n", &ha->ip_config.subnet_mask);
274 break;
275 case ISCSI_NET_PARAM_IPV4_GW:
276 len = sprintf(buf, "%pI4\n", &ha->ip_config.gateway);
277 break;
278 case ISCSI_NET_PARAM_IFACE_ENABLE:
279 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
280 len = sprintf(buf, "%s\n",
281 (ha->ip_config.ipv4_options &
282 IPOPT_IPV4_PROTOCOL_ENABLE) ?
283 "enabled" : "disabled");
284 else if (iface->iface_type == ISCSI_IFACE_TYPE_IPV6)
285 len = sprintf(buf, "%s\n",
286 (ha->ip_config.ipv6_options &
287 IPV6_OPT_IPV6_PROTOCOL_ENABLE) ?
288 "enabled" : "disabled");
289 break;
290 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
291 len = sprintf(buf, "%s\n",
292 (ha->ip_config.tcp_options & TCPOPT_DHCP_ENABLE) ?
293 "dhcp" : "static");
294 break;
295 case ISCSI_NET_PARAM_IPV6_ADDR:
296 if (iface->iface_num == 0)
297 len = sprintf(buf, "%pI6\n", &ha->ip_config.ipv6_addr0);
298 if (iface->iface_num == 1)
299 len = sprintf(buf, "%pI6\n", &ha->ip_config.ipv6_addr1);
300 break;
301 case ISCSI_NET_PARAM_IPV6_LINKLOCAL:
302 len = sprintf(buf, "%pI6\n",
303 &ha->ip_config.ipv6_link_local_addr);
304 break;
305 case ISCSI_NET_PARAM_IPV6_ROUTER:
306 len = sprintf(buf, "%pI6\n",
307 &ha->ip_config.ipv6_default_router_addr);
308 break;
309 case ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG:
310 len = sprintf(buf, "%s\n",
311 (ha->ip_config.ipv6_addl_options &
312 IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE) ?
313 "nd" : "static");
314 break;
315 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG:
316 len = sprintf(buf, "%s\n",
317 (ha->ip_config.ipv6_addl_options &
318 IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR) ?
319 "auto" : "static");
320 break;
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -0500321 case ISCSI_NET_PARAM_VLAN_ID:
322 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
323 len = sprintf(buf, "%d\n",
324 (ha->ip_config.ipv4_vlan_tag &
325 ISCSI_MAX_VLAN_ID));
326 else if (iface->iface_type == ISCSI_IFACE_TYPE_IPV6)
327 len = sprintf(buf, "%d\n",
328 (ha->ip_config.ipv6_vlan_tag &
329 ISCSI_MAX_VLAN_ID));
330 break;
331 case ISCSI_NET_PARAM_VLAN_PRIORITY:
332 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
333 len = sprintf(buf, "%d\n",
334 ((ha->ip_config.ipv4_vlan_tag >> 13) &
335 ISCSI_MAX_VLAN_PRIORITY));
336 else if (iface->iface_type == ISCSI_IFACE_TYPE_IPV6)
337 len = sprintf(buf, "%d\n",
338 ((ha->ip_config.ipv6_vlan_tag >> 13) &
339 ISCSI_MAX_VLAN_PRIORITY));
340 break;
341 case ISCSI_NET_PARAM_VLAN_ENABLED:
342 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
343 len = sprintf(buf, "%s\n",
344 (ha->ip_config.ipv4_options &
345 IPOPT_VLAN_TAGGING_ENABLE) ?
346 "enabled" : "disabled");
347 else if (iface->iface_type == ISCSI_IFACE_TYPE_IPV6)
348 len = sprintf(buf, "%s\n",
349 (ha->ip_config.ipv6_options &
350 IPV6_OPT_VLAN_TAGGING_ENABLE) ?
351 "enabled" : "disabled");
352 break;
Vikas Chaudhary943c1572011-08-01 03:26:13 -0700353 case ISCSI_NET_PARAM_MTU:
354 len = sprintf(buf, "%d\n", ha->ip_config.eth_mtu_size);
355 break;
Vikas Chaudhary2ada7fc2011-08-01 03:26:19 -0700356 case ISCSI_NET_PARAM_PORT:
357 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
358 len = sprintf(buf, "%d\n", ha->ip_config.ipv4_port);
359 else if (iface->iface_type == ISCSI_IFACE_TYPE_IPV6)
360 len = sprintf(buf, "%d\n", ha->ip_config.ipv6_port);
361 break;
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500362 default:
363 len = -ENOSYS;
364 }
365
366 return len;
367}
368
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500369static struct iscsi_endpoint *
370qla4xxx_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
371 int non_blocking)
372{
373 int ret;
374 struct iscsi_endpoint *ep;
375 struct qla_endpoint *qla_ep;
376 struct scsi_qla_host *ha;
377 struct sockaddr_in *addr;
378 struct sockaddr_in6 *addr6;
379
380 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
381 if (!shost) {
382 ret = -ENXIO;
383 printk(KERN_ERR "%s: shost is NULL\n",
384 __func__);
385 return ERR_PTR(ret);
386 }
387
388 ha = iscsi_host_priv(shost);
389
390 ep = iscsi_create_endpoint(sizeof(struct qla_endpoint));
391 if (!ep) {
392 ret = -ENOMEM;
393 return ERR_PTR(ret);
394 }
395
396 qla_ep = ep->dd_data;
397 memset(qla_ep, 0, sizeof(struct qla_endpoint));
398 if (dst_addr->sa_family == AF_INET) {
399 memcpy(&qla_ep->dst_addr, dst_addr, sizeof(struct sockaddr_in));
400 addr = (struct sockaddr_in *)&qla_ep->dst_addr;
401 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: %pI4\n", __func__,
402 (char *)&addr->sin_addr));
403 } else if (dst_addr->sa_family == AF_INET6) {
404 memcpy(&qla_ep->dst_addr, dst_addr,
405 sizeof(struct sockaddr_in6));
406 addr6 = (struct sockaddr_in6 *)&qla_ep->dst_addr;
407 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: %pI6\n", __func__,
408 (char *)&addr6->sin6_addr));
409 }
410
411 qla_ep->host = shost;
412
413 return ep;
414}
415
416static int qla4xxx_ep_poll(struct iscsi_endpoint *ep, int timeout_ms)
417{
418 struct qla_endpoint *qla_ep;
419 struct scsi_qla_host *ha;
420 int ret = 0;
421
422 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
423 qla_ep = ep->dd_data;
424 ha = to_qla_host(qla_ep->host);
425
Mike Christie13483732011-12-01 21:38:41 -0600426 if (adapter_up(ha) && !test_bit(AF_BUILD_DDB_LIST, &ha->flags))
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500427 ret = 1;
428
429 return ret;
430}
431
432static void qla4xxx_ep_disconnect(struct iscsi_endpoint *ep)
433{
434 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
435 iscsi_destroy_endpoint(ep);
436}
437
438static int qla4xxx_get_ep_param(struct iscsi_endpoint *ep,
439 enum iscsi_param param,
440 char *buf)
441{
442 struct qla_endpoint *qla_ep = ep->dd_data;
443 struct sockaddr *dst_addr;
444
445 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
446
447 switch (param) {
448 case ISCSI_PARAM_CONN_PORT:
449 case ISCSI_PARAM_CONN_ADDRESS:
450 if (!qla_ep)
451 return -ENOTCONN;
452
453 dst_addr = (struct sockaddr *)&qla_ep->dst_addr;
454 if (!dst_addr)
455 return -ENOTCONN;
456
457 return iscsi_conn_get_addr_param((struct sockaddr_storage *)
458 &qla_ep->dst_addr, param, buf);
459 default:
460 return -ENOSYS;
461 }
462}
463
464static void qla4xxx_conn_get_stats(struct iscsi_cls_conn *cls_conn,
465 struct iscsi_stats *stats)
466{
467 struct iscsi_session *sess;
468 struct iscsi_cls_session *cls_sess;
469 struct ddb_entry *ddb_entry;
470 struct scsi_qla_host *ha;
471 struct ql_iscsi_stats *ql_iscsi_stats;
472 int stats_size;
473 int ret;
474 dma_addr_t iscsi_stats_dma;
475
476 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
477
478 cls_sess = iscsi_conn_to_session(cls_conn);
479 sess = cls_sess->dd_data;
480 ddb_entry = sess->dd_data;
481 ha = ddb_entry->ha;
482
483 stats_size = PAGE_ALIGN(sizeof(struct ql_iscsi_stats));
484 /* Allocate memory */
485 ql_iscsi_stats = dma_alloc_coherent(&ha->pdev->dev, stats_size,
486 &iscsi_stats_dma, GFP_KERNEL);
487 if (!ql_iscsi_stats) {
488 ql4_printk(KERN_ERR, ha,
489 "Unable to allocate memory for iscsi stats\n");
490 goto exit_get_stats;
491 }
492
493 ret = qla4xxx_get_mgmt_data(ha, ddb_entry->fw_ddb_index, stats_size,
494 iscsi_stats_dma);
495 if (ret != QLA_SUCCESS) {
496 ql4_printk(KERN_ERR, ha,
497 "Unable to retreive iscsi stats\n");
498 goto free_stats;
499 }
500
501 /* octets */
502 stats->txdata_octets = le64_to_cpu(ql_iscsi_stats->tx_data_octets);
503 stats->rxdata_octets = le64_to_cpu(ql_iscsi_stats->rx_data_octets);
504 /* xmit pdus */
505 stats->noptx_pdus = le32_to_cpu(ql_iscsi_stats->tx_nopout_pdus);
506 stats->scsicmd_pdus = le32_to_cpu(ql_iscsi_stats->tx_scsi_cmd_pdus);
507 stats->tmfcmd_pdus = le32_to_cpu(ql_iscsi_stats->tx_tmf_cmd_pdus);
508 stats->login_pdus = le32_to_cpu(ql_iscsi_stats->tx_login_cmd_pdus);
509 stats->text_pdus = le32_to_cpu(ql_iscsi_stats->tx_text_cmd_pdus);
510 stats->dataout_pdus = le32_to_cpu(ql_iscsi_stats->tx_scsi_write_pdus);
511 stats->logout_pdus = le32_to_cpu(ql_iscsi_stats->tx_logout_cmd_pdus);
512 stats->snack_pdus = le32_to_cpu(ql_iscsi_stats->tx_snack_req_pdus);
513 /* recv pdus */
514 stats->noprx_pdus = le32_to_cpu(ql_iscsi_stats->rx_nopin_pdus);
515 stats->scsirsp_pdus = le32_to_cpu(ql_iscsi_stats->rx_scsi_resp_pdus);
516 stats->tmfrsp_pdus = le32_to_cpu(ql_iscsi_stats->rx_tmf_resp_pdus);
517 stats->textrsp_pdus = le32_to_cpu(ql_iscsi_stats->rx_text_resp_pdus);
518 stats->datain_pdus = le32_to_cpu(ql_iscsi_stats->rx_scsi_read_pdus);
519 stats->logoutrsp_pdus =
520 le32_to_cpu(ql_iscsi_stats->rx_logout_resp_pdus);
521 stats->r2t_pdus = le32_to_cpu(ql_iscsi_stats->rx_r2t_pdus);
522 stats->async_pdus = le32_to_cpu(ql_iscsi_stats->rx_async_pdus);
523 stats->rjt_pdus = le32_to_cpu(ql_iscsi_stats->rx_reject_pdus);
524
525free_stats:
526 dma_free_coherent(&ha->pdev->dev, stats_size, ql_iscsi_stats,
527 iscsi_stats_dma);
528exit_get_stats:
529 return;
530}
531
Mike Christie5c656af2009-07-15 15:02:59 -0500532static enum blk_eh_timer_return qla4xxx_eh_cmd_timed_out(struct scsi_cmnd *sc)
533{
534 struct iscsi_cls_session *session;
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500535 struct iscsi_session *sess;
536 unsigned long flags;
537 enum blk_eh_timer_return ret = BLK_EH_NOT_HANDLED;
Mike Christie5c656af2009-07-15 15:02:59 -0500538
539 session = starget_to_session(scsi_target(sc->device));
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500540 sess = session->dd_data;
Mike Christie5c656af2009-07-15 15:02:59 -0500541
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500542 spin_lock_irqsave(&session->lock, flags);
543 if (session->state == ISCSI_SESSION_FAILED)
544 ret = BLK_EH_RESET_TIMER;
545 spin_unlock_irqrestore(&session->lock, flags);
Mike Christie5c656af2009-07-15 15:02:59 -0500546
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500547 return ret;
David Somayajuluafaf5a22006-09-19 10:28:00 -0700548}
549
Mike Christieaa1e93a2007-05-30 12:57:09 -0500550static int qla4xxx_host_get_param(struct Scsi_Host *shost,
551 enum iscsi_host_param param, char *buf)
552{
553 struct scsi_qla_host *ha = to_qla_host(shost);
554 int len;
555
556 switch (param) {
557 case ISCSI_HOST_PARAM_HWADDRESS:
Michael Chan7ffc49a2007-12-24 21:28:09 -0800558 len = sysfs_format_mac(buf, ha->my_mac, MAC_ADDR_LEN);
Mike Christieaa1e93a2007-05-30 12:57:09 -0500559 break;
Mike Christie22236962007-05-30 12:57:24 -0500560 case ISCSI_HOST_PARAM_IPADDRESS:
Vikas Chaudhary2bab08f2011-07-25 13:48:39 -0500561 len = sprintf(buf, "%pI4\n", &ha->ip_config.ip_address);
Mike Christie22236962007-05-30 12:57:24 -0500562 break;
Mike Christie8ad57812007-05-30 12:57:13 -0500563 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie22236962007-05-30 12:57:24 -0500564 len = sprintf(buf, "%s\n", ha->name_string);
Mike Christie8ad57812007-05-30 12:57:13 -0500565 break;
Mike Christieaa1e93a2007-05-30 12:57:09 -0500566 default:
567 return -ENOSYS;
568 }
569
570 return len;
571}
572
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500573static void qla4xxx_create_ipv4_iface(struct scsi_qla_host *ha)
574{
575 if (ha->iface_ipv4)
576 return;
577
578 /* IPv4 */
579 ha->iface_ipv4 = iscsi_create_iface(ha->host,
580 &qla4xxx_iscsi_transport,
581 ISCSI_IFACE_TYPE_IPV4, 0, 0);
582 if (!ha->iface_ipv4)
583 ql4_printk(KERN_ERR, ha, "Could not create IPv4 iSCSI "
584 "iface0.\n");
585}
586
587static void qla4xxx_create_ipv6_iface(struct scsi_qla_host *ha)
588{
589 if (!ha->iface_ipv6_0)
590 /* IPv6 iface-0 */
591 ha->iface_ipv6_0 = iscsi_create_iface(ha->host,
592 &qla4xxx_iscsi_transport,
593 ISCSI_IFACE_TYPE_IPV6, 0,
594 0);
595 if (!ha->iface_ipv6_0)
596 ql4_printk(KERN_ERR, ha, "Could not create IPv6 iSCSI "
597 "iface0.\n");
598
599 if (!ha->iface_ipv6_1)
600 /* IPv6 iface-1 */
601 ha->iface_ipv6_1 = iscsi_create_iface(ha->host,
602 &qla4xxx_iscsi_transport,
603 ISCSI_IFACE_TYPE_IPV6, 1,
604 0);
605 if (!ha->iface_ipv6_1)
606 ql4_printk(KERN_ERR, ha, "Could not create IPv6 iSCSI "
607 "iface1.\n");
608}
609
610static void qla4xxx_create_ifaces(struct scsi_qla_host *ha)
611{
612 if (ha->ip_config.ipv4_options & IPOPT_IPV4_PROTOCOL_ENABLE)
613 qla4xxx_create_ipv4_iface(ha);
614
615 if (ha->ip_config.ipv6_options & IPV6_OPT_IPV6_PROTOCOL_ENABLE)
616 qla4xxx_create_ipv6_iface(ha);
617}
618
619static void qla4xxx_destroy_ipv4_iface(struct scsi_qla_host *ha)
620{
621 if (ha->iface_ipv4) {
622 iscsi_destroy_iface(ha->iface_ipv4);
623 ha->iface_ipv4 = NULL;
624 }
625}
626
627static void qla4xxx_destroy_ipv6_iface(struct scsi_qla_host *ha)
628{
629 if (ha->iface_ipv6_0) {
630 iscsi_destroy_iface(ha->iface_ipv6_0);
631 ha->iface_ipv6_0 = NULL;
632 }
633 if (ha->iface_ipv6_1) {
634 iscsi_destroy_iface(ha->iface_ipv6_1);
635 ha->iface_ipv6_1 = NULL;
636 }
637}
638
639static void qla4xxx_destroy_ifaces(struct scsi_qla_host *ha)
640{
641 qla4xxx_destroy_ipv4_iface(ha);
642 qla4xxx_destroy_ipv6_iface(ha);
643}
644
Mike Christied00efe32011-07-25 13:48:38 -0500645static void qla4xxx_set_ipv6(struct scsi_qla_host *ha,
646 struct iscsi_iface_param_info *iface_param,
647 struct addr_ctrl_blk *init_fw_cb)
648{
649 /*
650 * iface_num 0 is valid for IPv6 Addr, linklocal, router, autocfg.
651 * iface_num 1 is valid only for IPv6 Addr.
652 */
653 switch (iface_param->param) {
654 case ISCSI_NET_PARAM_IPV6_ADDR:
655 if (iface_param->iface_num & 0x1)
656 /* IPv6 Addr 1 */
657 memcpy(init_fw_cb->ipv6_addr1, iface_param->value,
658 sizeof(init_fw_cb->ipv6_addr1));
659 else
660 /* IPv6 Addr 0 */
661 memcpy(init_fw_cb->ipv6_addr0, iface_param->value,
662 sizeof(init_fw_cb->ipv6_addr0));
663 break;
664 case ISCSI_NET_PARAM_IPV6_LINKLOCAL:
665 if (iface_param->iface_num & 0x1)
666 break;
667 memcpy(init_fw_cb->ipv6_if_id, &iface_param->value[8],
668 sizeof(init_fw_cb->ipv6_if_id));
669 break;
670 case ISCSI_NET_PARAM_IPV6_ROUTER:
671 if (iface_param->iface_num & 0x1)
672 break;
673 memcpy(init_fw_cb->ipv6_dflt_rtr_addr, iface_param->value,
674 sizeof(init_fw_cb->ipv6_dflt_rtr_addr));
675 break;
676 case ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG:
677 /* Autocfg applies to even interface */
678 if (iface_param->iface_num & 0x1)
679 break;
680
681 if (iface_param->value[0] == ISCSI_IPV6_AUTOCFG_DISABLE)
682 init_fw_cb->ipv6_addtl_opts &=
683 cpu_to_le16(
684 ~IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE);
685 else if (iface_param->value[0] == ISCSI_IPV6_AUTOCFG_ND_ENABLE)
686 init_fw_cb->ipv6_addtl_opts |=
687 cpu_to_le16(
688 IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE);
689 else
690 ql4_printk(KERN_ERR, ha, "Invalid autocfg setting for "
691 "IPv6 addr\n");
692 break;
693 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG:
694 /* Autocfg applies to even interface */
695 if (iface_param->iface_num & 0x1)
696 break;
697
698 if (iface_param->value[0] ==
699 ISCSI_IPV6_LINKLOCAL_AUTOCFG_ENABLE)
700 init_fw_cb->ipv6_addtl_opts |= cpu_to_le16(
701 IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR);
702 else if (iface_param->value[0] ==
703 ISCSI_IPV6_LINKLOCAL_AUTOCFG_DISABLE)
704 init_fw_cb->ipv6_addtl_opts &= cpu_to_le16(
705 ~IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR);
706 else
707 ql4_printk(KERN_ERR, ha, "Invalid autocfg setting for "
708 "IPv6 linklocal addr\n");
709 break;
710 case ISCSI_NET_PARAM_IPV6_ROUTER_AUTOCFG:
711 /* Autocfg applies to even interface */
712 if (iface_param->iface_num & 0x1)
713 break;
714
715 if (iface_param->value[0] == ISCSI_IPV6_ROUTER_AUTOCFG_ENABLE)
716 memset(init_fw_cb->ipv6_dflt_rtr_addr, 0,
717 sizeof(init_fw_cb->ipv6_dflt_rtr_addr));
718 break;
719 case ISCSI_NET_PARAM_IFACE_ENABLE:
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500720 if (iface_param->value[0] == ISCSI_IFACE_ENABLE) {
Mike Christied00efe32011-07-25 13:48:38 -0500721 init_fw_cb->ipv6_opts |=
722 cpu_to_le16(IPV6_OPT_IPV6_PROTOCOL_ENABLE);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500723 qla4xxx_create_ipv6_iface(ha);
724 } else {
Mike Christied00efe32011-07-25 13:48:38 -0500725 init_fw_cb->ipv6_opts &=
726 cpu_to_le16(~IPV6_OPT_IPV6_PROTOCOL_ENABLE &
727 0xFFFF);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500728 qla4xxx_destroy_ipv6_iface(ha);
729 }
Mike Christied00efe32011-07-25 13:48:38 -0500730 break;
Mike Christie2d636732011-10-11 17:55:11 -0500731 case ISCSI_NET_PARAM_VLAN_TAG:
Mike Christied00efe32011-07-25 13:48:38 -0500732 if (iface_param->len != sizeof(init_fw_cb->ipv6_vlan_tag))
733 break;
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -0500734 init_fw_cb->ipv6_vlan_tag =
735 cpu_to_be16(*(uint16_t *)iface_param->value);
736 break;
737 case ISCSI_NET_PARAM_VLAN_ENABLED:
738 if (iface_param->value[0] == ISCSI_VLAN_ENABLE)
739 init_fw_cb->ipv6_opts |=
740 cpu_to_le16(IPV6_OPT_VLAN_TAGGING_ENABLE);
741 else
742 init_fw_cb->ipv6_opts &=
743 cpu_to_le16(~IPV6_OPT_VLAN_TAGGING_ENABLE);
Mike Christied00efe32011-07-25 13:48:38 -0500744 break;
Vikas Chaudhary943c1572011-08-01 03:26:13 -0700745 case ISCSI_NET_PARAM_MTU:
746 init_fw_cb->eth_mtu_size =
747 cpu_to_le16(*(uint16_t *)iface_param->value);
748 break;
Vikas Chaudhary2ada7fc2011-08-01 03:26:19 -0700749 case ISCSI_NET_PARAM_PORT:
750 /* Autocfg applies to even interface */
751 if (iface_param->iface_num & 0x1)
752 break;
753
754 init_fw_cb->ipv6_port =
755 cpu_to_le16(*(uint16_t *)iface_param->value);
756 break;
Mike Christied00efe32011-07-25 13:48:38 -0500757 default:
758 ql4_printk(KERN_ERR, ha, "Unknown IPv6 param = %d\n",
759 iface_param->param);
760 break;
761 }
762}
763
764static void qla4xxx_set_ipv4(struct scsi_qla_host *ha,
765 struct iscsi_iface_param_info *iface_param,
766 struct addr_ctrl_blk *init_fw_cb)
767{
768 switch (iface_param->param) {
769 case ISCSI_NET_PARAM_IPV4_ADDR:
770 memcpy(init_fw_cb->ipv4_addr, iface_param->value,
771 sizeof(init_fw_cb->ipv4_addr));
772 break;
773 case ISCSI_NET_PARAM_IPV4_SUBNET:
774 memcpy(init_fw_cb->ipv4_subnet, iface_param->value,
775 sizeof(init_fw_cb->ipv4_subnet));
776 break;
777 case ISCSI_NET_PARAM_IPV4_GW:
778 memcpy(init_fw_cb->ipv4_gw_addr, iface_param->value,
779 sizeof(init_fw_cb->ipv4_gw_addr));
780 break;
781 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
782 if (iface_param->value[0] == ISCSI_BOOTPROTO_DHCP)
783 init_fw_cb->ipv4_tcp_opts |=
784 cpu_to_le16(TCPOPT_DHCP_ENABLE);
785 else if (iface_param->value[0] == ISCSI_BOOTPROTO_STATIC)
786 init_fw_cb->ipv4_tcp_opts &=
787 cpu_to_le16(~TCPOPT_DHCP_ENABLE);
788 else
789 ql4_printk(KERN_ERR, ha, "Invalid IPv4 bootproto\n");
790 break;
791 case ISCSI_NET_PARAM_IFACE_ENABLE:
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500792 if (iface_param->value[0] == ISCSI_IFACE_ENABLE) {
Mike Christied00efe32011-07-25 13:48:38 -0500793 init_fw_cb->ipv4_ip_opts |=
Vikas Chaudhary2bab08f2011-07-25 13:48:39 -0500794 cpu_to_le16(IPOPT_IPV4_PROTOCOL_ENABLE);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500795 qla4xxx_create_ipv4_iface(ha);
796 } else {
Mike Christied00efe32011-07-25 13:48:38 -0500797 init_fw_cb->ipv4_ip_opts &=
Vikas Chaudhary2bab08f2011-07-25 13:48:39 -0500798 cpu_to_le16(~IPOPT_IPV4_PROTOCOL_ENABLE &
Mike Christied00efe32011-07-25 13:48:38 -0500799 0xFFFF);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500800 qla4xxx_destroy_ipv4_iface(ha);
801 }
Mike Christied00efe32011-07-25 13:48:38 -0500802 break;
Mike Christie2d636732011-10-11 17:55:11 -0500803 case ISCSI_NET_PARAM_VLAN_TAG:
Mike Christied00efe32011-07-25 13:48:38 -0500804 if (iface_param->len != sizeof(init_fw_cb->ipv4_vlan_tag))
805 break;
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -0500806 init_fw_cb->ipv4_vlan_tag =
807 cpu_to_be16(*(uint16_t *)iface_param->value);
808 break;
809 case ISCSI_NET_PARAM_VLAN_ENABLED:
810 if (iface_param->value[0] == ISCSI_VLAN_ENABLE)
811 init_fw_cb->ipv4_ip_opts |=
812 cpu_to_le16(IPOPT_VLAN_TAGGING_ENABLE);
813 else
814 init_fw_cb->ipv4_ip_opts &=
815 cpu_to_le16(~IPOPT_VLAN_TAGGING_ENABLE);
Mike Christied00efe32011-07-25 13:48:38 -0500816 break;
Vikas Chaudhary943c1572011-08-01 03:26:13 -0700817 case ISCSI_NET_PARAM_MTU:
818 init_fw_cb->eth_mtu_size =
819 cpu_to_le16(*(uint16_t *)iface_param->value);
820 break;
Vikas Chaudhary2ada7fc2011-08-01 03:26:19 -0700821 case ISCSI_NET_PARAM_PORT:
822 init_fw_cb->ipv4_port =
823 cpu_to_le16(*(uint16_t *)iface_param->value);
824 break;
Mike Christied00efe32011-07-25 13:48:38 -0500825 default:
826 ql4_printk(KERN_ERR, ha, "Unknown IPv4 param = %d\n",
827 iface_param->param);
828 break;
829 }
830}
831
832static void
833qla4xxx_initcb_to_acb(struct addr_ctrl_blk *init_fw_cb)
834{
835 struct addr_ctrl_blk_def *acb;
836 acb = (struct addr_ctrl_blk_def *)init_fw_cb;
837 memset(acb->reserved1, 0, sizeof(acb->reserved1));
838 memset(acb->reserved2, 0, sizeof(acb->reserved2));
839 memset(acb->reserved3, 0, sizeof(acb->reserved3));
840 memset(acb->reserved4, 0, sizeof(acb->reserved4));
841 memset(acb->reserved5, 0, sizeof(acb->reserved5));
842 memset(acb->reserved6, 0, sizeof(acb->reserved6));
843 memset(acb->reserved7, 0, sizeof(acb->reserved7));
844 memset(acb->reserved8, 0, sizeof(acb->reserved8));
845 memset(acb->reserved9, 0, sizeof(acb->reserved9));
846 memset(acb->reserved10, 0, sizeof(acb->reserved10));
847 memset(acb->reserved11, 0, sizeof(acb->reserved11));
848 memset(acb->reserved12, 0, sizeof(acb->reserved12));
849 memset(acb->reserved13, 0, sizeof(acb->reserved13));
850 memset(acb->reserved14, 0, sizeof(acb->reserved14));
851 memset(acb->reserved15, 0, sizeof(acb->reserved15));
852}
853
854static int
Mike Christie00c31882011-10-06 03:56:59 -0500855qla4xxx_iface_set_param(struct Scsi_Host *shost, void *data, uint32_t len)
Mike Christied00efe32011-07-25 13:48:38 -0500856{
857 struct scsi_qla_host *ha = to_qla_host(shost);
858 int rval = 0;
859 struct iscsi_iface_param_info *iface_param = NULL;
860 struct addr_ctrl_blk *init_fw_cb = NULL;
861 dma_addr_t init_fw_cb_dma;
862 uint32_t mbox_cmd[MBOX_REG_COUNT];
863 uint32_t mbox_sts[MBOX_REG_COUNT];
Mike Christie00c31882011-10-06 03:56:59 -0500864 uint32_t rem = len;
865 struct nlattr *attr;
Mike Christied00efe32011-07-25 13:48:38 -0500866
867 init_fw_cb = dma_alloc_coherent(&ha->pdev->dev,
868 sizeof(struct addr_ctrl_blk),
869 &init_fw_cb_dma, GFP_KERNEL);
870 if (!init_fw_cb) {
871 ql4_printk(KERN_ERR, ha, "%s: Unable to alloc init_cb\n",
872 __func__);
873 return -ENOMEM;
874 }
875
876 memset(init_fw_cb, 0, sizeof(struct addr_ctrl_blk));
877 memset(&mbox_cmd, 0, sizeof(mbox_cmd));
878 memset(&mbox_sts, 0, sizeof(mbox_sts));
879
880 if (qla4xxx_get_ifcb(ha, &mbox_cmd[0], &mbox_sts[0], init_fw_cb_dma)) {
881 ql4_printk(KERN_ERR, ha, "%s: get ifcb failed\n", __func__);
882 rval = -EIO;
883 goto exit_init_fw_cb;
884 }
885
Mike Christie00c31882011-10-06 03:56:59 -0500886 nla_for_each_attr(attr, data, len, rem) {
887 iface_param = nla_data(attr);
Mike Christied00efe32011-07-25 13:48:38 -0500888
889 if (iface_param->param_type != ISCSI_NET_PARAM)
890 continue;
891
892 switch (iface_param->iface_type) {
893 case ISCSI_IFACE_TYPE_IPV4:
894 switch (iface_param->iface_num) {
895 case 0:
896 qla4xxx_set_ipv4(ha, iface_param, init_fw_cb);
897 break;
898 default:
899 /* Cannot have more than one IPv4 interface */
900 ql4_printk(KERN_ERR, ha, "Invalid IPv4 iface "
901 "number = %d\n",
902 iface_param->iface_num);
903 break;
904 }
905 break;
906 case ISCSI_IFACE_TYPE_IPV6:
907 switch (iface_param->iface_num) {
908 case 0:
909 case 1:
910 qla4xxx_set_ipv6(ha, iface_param, init_fw_cb);
911 break;
912 default:
913 /* Cannot have more than two IPv6 interface */
914 ql4_printk(KERN_ERR, ha, "Invalid IPv6 iface "
915 "number = %d\n",
916 iface_param->iface_num);
917 break;
918 }
919 break;
920 default:
921 ql4_printk(KERN_ERR, ha, "Invalid iface type\n");
922 break;
923 }
Mike Christied00efe32011-07-25 13:48:38 -0500924 }
925
926 init_fw_cb->cookie = cpu_to_le32(0x11BEAD5A);
927
928 rval = qla4xxx_set_flash(ha, init_fw_cb_dma, FLASH_SEGMENT_IFCB,
929 sizeof(struct addr_ctrl_blk),
930 FLASH_OPT_RMW_COMMIT);
931 if (rval != QLA_SUCCESS) {
932 ql4_printk(KERN_ERR, ha, "%s: set flash mbx failed\n",
933 __func__);
934 rval = -EIO;
935 goto exit_init_fw_cb;
936 }
937
938 qla4xxx_disable_acb(ha);
939
940 qla4xxx_initcb_to_acb(init_fw_cb);
941
942 rval = qla4xxx_set_acb(ha, &mbox_cmd[0], &mbox_sts[0], init_fw_cb_dma);
943 if (rval != QLA_SUCCESS) {
944 ql4_printk(KERN_ERR, ha, "%s: set acb mbx failed\n",
945 __func__);
946 rval = -EIO;
947 goto exit_init_fw_cb;
948 }
949
950 memset(init_fw_cb, 0, sizeof(struct addr_ctrl_blk));
951 qla4xxx_update_local_ifcb(ha, &mbox_cmd[0], &mbox_sts[0], init_fw_cb,
952 init_fw_cb_dma);
953
954exit_init_fw_cb:
955 dma_free_coherent(&ha->pdev->dev, sizeof(struct addr_ctrl_blk),
956 init_fw_cb, init_fw_cb_dma);
957
958 return rval;
959}
960
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500961static int qla4xxx_conn_get_param(struct iscsi_cls_conn *cls_conn,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700962 enum iscsi_param param, char *buf)
963{
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500964 struct iscsi_conn *conn;
965 struct qla_conn *qla_conn;
966 struct sockaddr *dst_addr;
967 int len = 0;
David Somayajuluafaf5a22006-09-19 10:28:00 -0700968
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500969 conn = cls_conn->dd_data;
970 qla_conn = conn->dd_data;
971 dst_addr = &qla_conn->qla_ep->dst_addr;
David Somayajuluafaf5a22006-09-19 10:28:00 -0700972
973 switch (param) {
974 case ISCSI_PARAM_CONN_PORT:
David Somayajuluafaf5a22006-09-19 10:28:00 -0700975 case ISCSI_PARAM_CONN_ADDRESS:
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500976 return iscsi_conn_get_addr_param((struct sockaddr_storage *)
977 dst_addr, param, buf);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700978 default:
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500979 return iscsi_conn_get_param(cls_conn, param, buf);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700980 }
981
982 return len;
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500983
David Somayajuluafaf5a22006-09-19 10:28:00 -0700984}
985
Mike Christie13483732011-12-01 21:38:41 -0600986int qla4xxx_get_ddb_index(struct scsi_qla_host *ha, uint16_t *ddb_index)
987{
988 uint32_t mbx_sts = 0;
989 uint16_t tmp_ddb_index;
990 int ret;
991
992get_ddb_index:
993 tmp_ddb_index = find_first_zero_bit(ha->ddb_idx_map, MAX_DDB_ENTRIES);
994
995 if (tmp_ddb_index >= MAX_DDB_ENTRIES) {
996 DEBUG2(ql4_printk(KERN_INFO, ha,
997 "Free DDB index not available\n"));
998 ret = QLA_ERROR;
999 goto exit_get_ddb_index;
1000 }
1001
1002 if (test_and_set_bit(tmp_ddb_index, ha->ddb_idx_map))
1003 goto get_ddb_index;
1004
1005 DEBUG2(ql4_printk(KERN_INFO, ha,
1006 "Found a free DDB index at %d\n", tmp_ddb_index));
1007 ret = qla4xxx_req_ddb_entry(ha, tmp_ddb_index, &mbx_sts);
1008 if (ret == QLA_ERROR) {
1009 if (mbx_sts == MBOX_STS_COMMAND_ERROR) {
1010 ql4_printk(KERN_INFO, ha,
1011 "DDB index = %d not available trying next\n",
1012 tmp_ddb_index);
1013 goto get_ddb_index;
1014 }
1015 DEBUG2(ql4_printk(KERN_INFO, ha,
1016 "Free FW DDB not available\n"));
1017 }
1018
1019 *ddb_index = tmp_ddb_index;
1020
1021exit_get_ddb_index:
1022 return ret;
1023}
1024
1025static int qla4xxx_match_ipaddress(struct scsi_qla_host *ha,
1026 struct ddb_entry *ddb_entry,
1027 char *existing_ipaddr,
1028 char *user_ipaddr)
1029{
1030 uint8_t dst_ipaddr[IPv6_ADDR_LEN];
1031 char formatted_ipaddr[DDB_IPADDR_LEN];
1032 int status = QLA_SUCCESS, ret = 0;
1033
1034 if (ddb_entry->fw_ddb_entry.options & DDB_OPT_IPV6_DEVICE) {
1035 ret = in6_pton(user_ipaddr, strlen(user_ipaddr), dst_ipaddr,
1036 '\0', NULL);
1037 if (ret == 0) {
1038 status = QLA_ERROR;
1039 goto out_match;
1040 }
1041 ret = sprintf(formatted_ipaddr, "%pI6", dst_ipaddr);
1042 } else {
1043 ret = in4_pton(user_ipaddr, strlen(user_ipaddr), dst_ipaddr,
1044 '\0', NULL);
1045 if (ret == 0) {
1046 status = QLA_ERROR;
1047 goto out_match;
1048 }
1049 ret = sprintf(formatted_ipaddr, "%pI4", dst_ipaddr);
1050 }
1051
1052 if (strcmp(existing_ipaddr, formatted_ipaddr))
1053 status = QLA_ERROR;
1054
1055out_match:
1056 return status;
1057}
1058
1059static int qla4xxx_match_fwdb_session(struct scsi_qla_host *ha,
1060 struct iscsi_cls_conn *cls_conn)
1061{
1062 int idx = 0, max_ddbs, rval;
1063 struct iscsi_cls_session *cls_sess = iscsi_conn_to_session(cls_conn);
1064 struct iscsi_session *sess, *existing_sess;
1065 struct iscsi_conn *conn, *existing_conn;
1066 struct ddb_entry *ddb_entry;
1067
1068 sess = cls_sess->dd_data;
1069 conn = cls_conn->dd_data;
1070
1071 if (sess->targetname == NULL ||
1072 conn->persistent_address == NULL ||
1073 conn->persistent_port == 0)
1074 return QLA_ERROR;
1075
1076 max_ddbs = is_qla40XX(ha) ? MAX_DEV_DB_ENTRIES_40XX :
1077 MAX_DEV_DB_ENTRIES;
1078
1079 for (idx = 0; idx < max_ddbs; idx++) {
1080 ddb_entry = qla4xxx_lookup_ddb_by_fw_index(ha, idx);
1081 if (ddb_entry == NULL)
1082 continue;
1083
1084 if (ddb_entry->ddb_type != FLASH_DDB)
1085 continue;
1086
1087 existing_sess = ddb_entry->sess->dd_data;
1088 existing_conn = ddb_entry->conn->dd_data;
1089
1090 if (existing_sess->targetname == NULL ||
1091 existing_conn->persistent_address == NULL ||
1092 existing_conn->persistent_port == 0)
1093 continue;
1094
1095 DEBUG2(ql4_printk(KERN_INFO, ha,
1096 "IQN = %s User IQN = %s\n",
1097 existing_sess->targetname,
1098 sess->targetname));
1099
1100 DEBUG2(ql4_printk(KERN_INFO, ha,
1101 "IP = %s User IP = %s\n",
1102 existing_conn->persistent_address,
1103 conn->persistent_address));
1104
1105 DEBUG2(ql4_printk(KERN_INFO, ha,
1106 "Port = %d User Port = %d\n",
1107 existing_conn->persistent_port,
1108 conn->persistent_port));
1109
1110 if (strcmp(existing_sess->targetname, sess->targetname))
1111 continue;
1112 rval = qla4xxx_match_ipaddress(ha, ddb_entry,
1113 existing_conn->persistent_address,
1114 conn->persistent_address);
1115 if (rval == QLA_ERROR)
1116 continue;
1117 if (existing_conn->persistent_port != conn->persistent_port)
1118 continue;
1119 break;
1120 }
1121
1122 if (idx == max_ddbs)
1123 return QLA_ERROR;
1124
1125 DEBUG2(ql4_printk(KERN_INFO, ha,
1126 "Match found in fwdb sessions\n"));
1127 return QLA_SUCCESS;
1128}
1129
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001130static struct iscsi_cls_session *
1131qla4xxx_session_create(struct iscsi_endpoint *ep,
1132 uint16_t cmds_max, uint16_t qdepth,
1133 uint32_t initial_cmdsn)
1134{
1135 struct iscsi_cls_session *cls_sess;
1136 struct scsi_qla_host *ha;
1137 struct qla_endpoint *qla_ep;
1138 struct ddb_entry *ddb_entry;
Mike Christie13483732011-12-01 21:38:41 -06001139 uint16_t ddb_index;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001140 struct iscsi_session *sess;
1141 struct sockaddr *dst_addr;
1142 int ret;
1143
1144 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
1145 if (!ep) {
1146 printk(KERN_ERR "qla4xxx: missing ep.\n");
1147 return NULL;
1148 }
1149
1150 qla_ep = ep->dd_data;
1151 dst_addr = (struct sockaddr *)&qla_ep->dst_addr;
1152 ha = to_qla_host(qla_ep->host);
Manish Rangankar736cf362011-10-07 16:55:46 -07001153
Mike Christie13483732011-12-01 21:38:41 -06001154 ret = qla4xxx_get_ddb_index(ha, &ddb_index);
1155 if (ret == QLA_ERROR)
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001156 return NULL;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001157
1158 cls_sess = iscsi_session_setup(&qla4xxx_iscsi_transport, qla_ep->host,
1159 cmds_max, sizeof(struct ddb_entry),
1160 sizeof(struct ql4_task_data),
1161 initial_cmdsn, ddb_index);
1162 if (!cls_sess)
1163 return NULL;
1164
1165 sess = cls_sess->dd_data;
1166 ddb_entry = sess->dd_data;
1167 ddb_entry->fw_ddb_index = ddb_index;
1168 ddb_entry->fw_ddb_device_state = DDB_DS_NO_CONNECTION_ACTIVE;
1169 ddb_entry->ha = ha;
1170 ddb_entry->sess = cls_sess;
Mike Christie13483732011-12-01 21:38:41 -06001171 ddb_entry->unblock_sess = qla4xxx_unblock_ddb;
1172 ddb_entry->ddb_change = qla4xxx_ddb_change;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001173 cls_sess->recovery_tmo = ql4xsess_recovery_tmo;
1174 ha->fw_ddb_index_map[ddb_entry->fw_ddb_index] = ddb_entry;
1175 ha->tot_ddbs++;
1176
1177 return cls_sess;
1178}
1179
1180static void qla4xxx_session_destroy(struct iscsi_cls_session *cls_sess)
1181{
1182 struct iscsi_session *sess;
1183 struct ddb_entry *ddb_entry;
1184 struct scsi_qla_host *ha;
1185 unsigned long flags;
1186
1187 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
1188 sess = cls_sess->dd_data;
1189 ddb_entry = sess->dd_data;
1190 ha = ddb_entry->ha;
1191
Manish Rangankar736cf362011-10-07 16:55:46 -07001192 qla4xxx_clear_ddb_entry(ha, ddb_entry->fw_ddb_index);
1193
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001194 spin_lock_irqsave(&ha->hardware_lock, flags);
1195 qla4xxx_free_ddb(ha, ddb_entry);
1196 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1197 iscsi_session_teardown(cls_sess);
1198}
1199
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001200static struct iscsi_cls_conn *
1201qla4xxx_conn_create(struct iscsi_cls_session *cls_sess, uint32_t conn_idx)
1202{
1203 struct iscsi_cls_conn *cls_conn;
1204 struct iscsi_session *sess;
1205 struct ddb_entry *ddb_entry;
1206
1207 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
1208 cls_conn = iscsi_conn_setup(cls_sess, sizeof(struct qla_conn),
1209 conn_idx);
Mike Christieff1d0312011-12-01 21:38:43 -06001210 if (!cls_conn)
1211 return NULL;
1212
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001213 sess = cls_sess->dd_data;
1214 ddb_entry = sess->dd_data;
1215 ddb_entry->conn = cls_conn;
1216
1217 return cls_conn;
1218}
1219
1220static int qla4xxx_conn_bind(struct iscsi_cls_session *cls_session,
1221 struct iscsi_cls_conn *cls_conn,
1222 uint64_t transport_fd, int is_leading)
1223{
1224 struct iscsi_conn *conn;
1225 struct qla_conn *qla_conn;
1226 struct iscsi_endpoint *ep;
1227
1228 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
1229
1230 if (iscsi_conn_bind(cls_session, cls_conn, is_leading))
1231 return -EINVAL;
1232 ep = iscsi_lookup_endpoint(transport_fd);
1233 conn = cls_conn->dd_data;
1234 qla_conn = conn->dd_data;
1235 qla_conn->qla_ep = ep->dd_data;
1236 return 0;
1237}
1238
1239static int qla4xxx_conn_start(struct iscsi_cls_conn *cls_conn)
1240{
1241 struct iscsi_cls_session *cls_sess = iscsi_conn_to_session(cls_conn);
1242 struct iscsi_session *sess;
1243 struct ddb_entry *ddb_entry;
1244 struct scsi_qla_host *ha;
Mike Christie13483732011-12-01 21:38:41 -06001245 struct dev_db_entry *fw_ddb_entry = NULL;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001246 dma_addr_t fw_ddb_entry_dma;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001247 uint32_t mbx_sts = 0;
1248 int ret = 0;
1249 int status = QLA_SUCCESS;
1250
1251 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
1252 sess = cls_sess->dd_data;
1253 ddb_entry = sess->dd_data;
1254 ha = ddb_entry->ha;
1255
Mike Christie13483732011-12-01 21:38:41 -06001256 /* Check if we have matching FW DDB, if yes then do not
1257 * login to this target. This could cause target to logout previous
1258 * connection
1259 */
1260 ret = qla4xxx_match_fwdb_session(ha, cls_conn);
1261 if (ret == QLA_SUCCESS) {
1262 ql4_printk(KERN_INFO, ha,
1263 "Session already exist in FW.\n");
1264 ret = -EEXIST;
1265 goto exit_conn_start;
1266 }
1267
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001268 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
1269 &fw_ddb_entry_dma, GFP_KERNEL);
1270 if (!fw_ddb_entry) {
1271 ql4_printk(KERN_ERR, ha,
1272 "%s: Unable to allocate dma buffer\n", __func__);
Mike Christie13483732011-12-01 21:38:41 -06001273 ret = -ENOMEM;
1274 goto exit_conn_start;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001275 }
1276
1277 ret = qla4xxx_set_param_ddbentry(ha, ddb_entry, cls_conn, &mbx_sts);
1278 if (ret) {
1279 /* If iscsid is stopped and started then no need to do
1280 * set param again since ddb state will be already
1281 * active and FW does not allow set ddb to an
1282 * active session.
1283 */
1284 if (mbx_sts)
1285 if (ddb_entry->fw_ddb_device_state ==
Manish Rangankarf922da72011-10-07 16:55:49 -07001286 DDB_DS_SESSION_ACTIVE) {
Mike Christie13483732011-12-01 21:38:41 -06001287 ddb_entry->unblock_sess(ddb_entry->sess);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001288 goto exit_set_param;
Manish Rangankarf922da72011-10-07 16:55:49 -07001289 }
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001290
1291 ql4_printk(KERN_ERR, ha, "%s: Failed set param for index[%d]\n",
1292 __func__, ddb_entry->fw_ddb_index);
1293 goto exit_conn_start;
1294 }
1295
1296 status = qla4xxx_conn_open(ha, ddb_entry->fw_ddb_index);
1297 if (status == QLA_ERROR) {
Manish Rangankar0e7e8502011-07-25 13:48:54 -05001298 ql4_printk(KERN_ERR, ha, "%s: Login failed: %s\n", __func__,
1299 sess->targetname);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001300 ret = -EINVAL;
1301 goto exit_conn_start;
1302 }
1303
Manish Rangankar98270ab2011-10-07 16:55:47 -07001304 if (ddb_entry->fw_ddb_device_state == DDB_DS_NO_CONNECTION_ACTIVE)
1305 ddb_entry->fw_ddb_device_state = DDB_DS_LOGIN_IN_PROCESS;
1306
1307 DEBUG2(printk(KERN_INFO "%s: DDB state [%d]\n", __func__,
1308 ddb_entry->fw_ddb_device_state));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001309
1310exit_set_param:
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001311 ret = 0;
1312
1313exit_conn_start:
Mike Christie13483732011-12-01 21:38:41 -06001314 if (fw_ddb_entry)
1315 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
1316 fw_ddb_entry, fw_ddb_entry_dma);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001317 return ret;
1318}
1319
1320static void qla4xxx_conn_destroy(struct iscsi_cls_conn *cls_conn)
1321{
1322 struct iscsi_cls_session *cls_sess = iscsi_conn_to_session(cls_conn);
1323 struct iscsi_session *sess;
1324 struct scsi_qla_host *ha;
1325 struct ddb_entry *ddb_entry;
1326 int options;
1327
1328 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
1329 sess = cls_sess->dd_data;
1330 ddb_entry = sess->dd_data;
1331 ha = ddb_entry->ha;
1332
1333 options = LOGOUT_OPTION_CLOSE_SESSION;
1334 if (qla4xxx_session_logout_ddb(ha, ddb_entry, options) == QLA_ERROR)
1335 ql4_printk(KERN_ERR, ha, "%s: Logout failed\n", __func__);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001336}
1337
1338static void qla4xxx_task_work(struct work_struct *wdata)
1339{
1340 struct ql4_task_data *task_data;
1341 struct scsi_qla_host *ha;
1342 struct passthru_status *sts;
1343 struct iscsi_task *task;
1344 struct iscsi_hdr *hdr;
1345 uint8_t *data;
1346 uint32_t data_len;
1347 struct iscsi_conn *conn;
1348 int hdr_len;
1349 itt_t itt;
1350
1351 task_data = container_of(wdata, struct ql4_task_data, task_work);
1352 ha = task_data->ha;
1353 task = task_data->task;
1354 sts = &task_data->sts;
1355 hdr_len = sizeof(struct iscsi_hdr);
1356
1357 DEBUG3(printk(KERN_INFO "Status returned\n"));
1358 DEBUG3(qla4xxx_dump_buffer(sts, 64));
1359 DEBUG3(printk(KERN_INFO "Response buffer"));
1360 DEBUG3(qla4xxx_dump_buffer(task_data->resp_buffer, 64));
1361
1362 conn = task->conn;
1363
1364 switch (sts->completionStatus) {
1365 case PASSTHRU_STATUS_COMPLETE:
1366 hdr = (struct iscsi_hdr *)task_data->resp_buffer;
1367 /* Assign back the itt in hdr, until we use the PREASSIGN_TAG */
1368 itt = sts->handle;
1369 hdr->itt = itt;
1370 data = task_data->resp_buffer + hdr_len;
1371 data_len = task_data->resp_len - hdr_len;
1372 iscsi_complete_pdu(conn, hdr, data, data_len);
1373 break;
1374 default:
1375 ql4_printk(KERN_ERR, ha, "Passthru failed status = 0x%x\n",
1376 sts->completionStatus);
1377 break;
1378 }
1379 return;
1380}
1381
1382static int qla4xxx_alloc_pdu(struct iscsi_task *task, uint8_t opcode)
1383{
1384 struct ql4_task_data *task_data;
1385 struct iscsi_session *sess;
1386 struct ddb_entry *ddb_entry;
1387 struct scsi_qla_host *ha;
1388 int hdr_len;
1389
1390 sess = task->conn->session;
1391 ddb_entry = sess->dd_data;
1392 ha = ddb_entry->ha;
1393 task_data = task->dd_data;
1394 memset(task_data, 0, sizeof(struct ql4_task_data));
1395
1396 if (task->sc) {
1397 ql4_printk(KERN_INFO, ha,
1398 "%s: SCSI Commands not implemented\n", __func__);
1399 return -EINVAL;
1400 }
1401
1402 hdr_len = sizeof(struct iscsi_hdr);
1403 task_data->ha = ha;
1404 task_data->task = task;
1405
1406 if (task->data_count) {
1407 task_data->data_dma = dma_map_single(&ha->pdev->dev, task->data,
1408 task->data_count,
1409 PCI_DMA_TODEVICE);
1410 }
1411
1412 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: MaxRecvLen %u, iscsi hrd %d\n",
1413 __func__, task->conn->max_recv_dlength, hdr_len));
1414
Manish Rangankar69ca2162011-10-07 16:55:50 -07001415 task_data->resp_len = task->conn->max_recv_dlength + hdr_len;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001416 task_data->resp_buffer = dma_alloc_coherent(&ha->pdev->dev,
1417 task_data->resp_len,
1418 &task_data->resp_dma,
1419 GFP_ATOMIC);
1420 if (!task_data->resp_buffer)
1421 goto exit_alloc_pdu;
1422
Manish Rangankar69ca2162011-10-07 16:55:50 -07001423 task_data->req_len = task->data_count + hdr_len;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001424 task_data->req_buffer = dma_alloc_coherent(&ha->pdev->dev,
Manish Rangankar69ca2162011-10-07 16:55:50 -07001425 task_data->req_len,
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001426 &task_data->req_dma,
1427 GFP_ATOMIC);
1428 if (!task_data->req_buffer)
1429 goto exit_alloc_pdu;
1430
1431 task->hdr = task_data->req_buffer;
1432
1433 INIT_WORK(&task_data->task_work, qla4xxx_task_work);
1434
1435 return 0;
1436
1437exit_alloc_pdu:
1438 if (task_data->resp_buffer)
1439 dma_free_coherent(&ha->pdev->dev, task_data->resp_len,
1440 task_data->resp_buffer, task_data->resp_dma);
1441
1442 if (task_data->req_buffer)
Manish Rangankar69ca2162011-10-07 16:55:50 -07001443 dma_free_coherent(&ha->pdev->dev, task_data->req_len,
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001444 task_data->req_buffer, task_data->req_dma);
1445 return -ENOMEM;
1446}
1447
1448static void qla4xxx_task_cleanup(struct iscsi_task *task)
1449{
1450 struct ql4_task_data *task_data;
1451 struct iscsi_session *sess;
1452 struct ddb_entry *ddb_entry;
1453 struct scsi_qla_host *ha;
1454 int hdr_len;
1455
1456 hdr_len = sizeof(struct iscsi_hdr);
1457 sess = task->conn->session;
1458 ddb_entry = sess->dd_data;
1459 ha = ddb_entry->ha;
1460 task_data = task->dd_data;
1461
1462 if (task->data_count) {
1463 dma_unmap_single(&ha->pdev->dev, task_data->data_dma,
1464 task->data_count, PCI_DMA_TODEVICE);
1465 }
1466
1467 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: MaxRecvLen %u, iscsi hrd %d\n",
1468 __func__, task->conn->max_recv_dlength, hdr_len));
1469
1470 dma_free_coherent(&ha->pdev->dev, task_data->resp_len,
1471 task_data->resp_buffer, task_data->resp_dma);
Manish Rangankar69ca2162011-10-07 16:55:50 -07001472 dma_free_coherent(&ha->pdev->dev, task_data->req_len,
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001473 task_data->req_buffer, task_data->req_dma);
1474 return;
1475}
1476
1477static int qla4xxx_task_xmit(struct iscsi_task *task)
1478{
1479 struct scsi_cmnd *sc = task->sc;
1480 struct iscsi_session *sess = task->conn->session;
1481 struct ddb_entry *ddb_entry = sess->dd_data;
1482 struct scsi_qla_host *ha = ddb_entry->ha;
1483
1484 if (!sc)
1485 return qla4xxx_send_passthru0(task);
1486
1487 ql4_printk(KERN_INFO, ha, "%s: scsi cmd xmit not implemented\n",
1488 __func__);
1489 return -ENOSYS;
1490}
1491
Mike Christie13483732011-12-01 21:38:41 -06001492static void qla4xxx_copy_fwddb_param(struct scsi_qla_host *ha,
1493 struct dev_db_entry *fw_ddb_entry,
1494 struct iscsi_cls_session *cls_sess,
1495 struct iscsi_cls_conn *cls_conn)
1496{
1497 int buflen = 0;
1498 struct iscsi_session *sess;
1499 struct iscsi_conn *conn;
1500 char ip_addr[DDB_IPADDR_LEN];
1501 uint16_t options = 0;
1502
1503 sess = cls_sess->dd_data;
1504 conn = cls_conn->dd_data;
1505
1506 conn->max_recv_dlength = BYTE_UNITS *
1507 le16_to_cpu(fw_ddb_entry->iscsi_max_rcv_data_seg_len);
1508
1509 conn->max_xmit_dlength = BYTE_UNITS *
1510 le16_to_cpu(fw_ddb_entry->iscsi_max_snd_data_seg_len);
1511
1512 sess->initial_r2t_en =
1513 (BIT_10 & le16_to_cpu(fw_ddb_entry->iscsi_options));
1514
1515 sess->max_r2t = le16_to_cpu(fw_ddb_entry->iscsi_max_outsnd_r2t);
1516
1517 sess->imm_data_en = (BIT_11 & le16_to_cpu(fw_ddb_entry->iscsi_options));
1518
1519 sess->first_burst = BYTE_UNITS *
1520 le16_to_cpu(fw_ddb_entry->iscsi_first_burst_len);
1521
1522 sess->max_burst = BYTE_UNITS *
1523 le16_to_cpu(fw_ddb_entry->iscsi_max_burst_len);
1524
1525 sess->time2wait = le16_to_cpu(fw_ddb_entry->iscsi_def_time2wait);
1526
1527 sess->time2retain = le16_to_cpu(fw_ddb_entry->iscsi_def_time2retain);
1528
1529 conn->persistent_port = le16_to_cpu(fw_ddb_entry->port);
1530
1531 sess->tpgt = le32_to_cpu(fw_ddb_entry->tgt_portal_grp);
1532
1533 options = le16_to_cpu(fw_ddb_entry->options);
1534 if (options & DDB_OPT_IPV6_DEVICE)
1535 sprintf(ip_addr, "%pI6", fw_ddb_entry->ip_addr);
1536 else
1537 sprintf(ip_addr, "%pI4", fw_ddb_entry->ip_addr);
1538
1539 iscsi_set_param(cls_conn, ISCSI_PARAM_TARGET_NAME,
1540 (char *)fw_ddb_entry->iscsi_name, buflen);
1541 iscsi_set_param(cls_conn, ISCSI_PARAM_INITIATOR_NAME,
1542 (char *)ha->name_string, buflen);
1543 iscsi_set_param(cls_conn, ISCSI_PARAM_PERSISTENT_ADDRESS,
1544 (char *)ip_addr, buflen);
1545}
1546
1547void qla4xxx_update_session_conn_fwddb_param(struct scsi_qla_host *ha,
1548 struct ddb_entry *ddb_entry)
1549{
1550 struct iscsi_cls_session *cls_sess;
1551 struct iscsi_cls_conn *cls_conn;
1552 uint32_t ddb_state;
1553 dma_addr_t fw_ddb_entry_dma;
1554 struct dev_db_entry *fw_ddb_entry;
1555
1556 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
1557 &fw_ddb_entry_dma, GFP_KERNEL);
1558 if (!fw_ddb_entry) {
1559 ql4_printk(KERN_ERR, ha,
1560 "%s: Unable to allocate dma buffer\n", __func__);
1561 goto exit_session_conn_fwddb_param;
1562 }
1563
1564 if (qla4xxx_get_fwddb_entry(ha, ddb_entry->fw_ddb_index, fw_ddb_entry,
1565 fw_ddb_entry_dma, NULL, NULL, &ddb_state,
1566 NULL, NULL, NULL) == QLA_ERROR) {
1567 DEBUG2(ql4_printk(KERN_ERR, ha, "scsi%ld: %s: failed "
1568 "get_ddb_entry for fw_ddb_index %d\n",
1569 ha->host_no, __func__,
1570 ddb_entry->fw_ddb_index));
1571 goto exit_session_conn_fwddb_param;
1572 }
1573
1574 cls_sess = ddb_entry->sess;
1575
1576 cls_conn = ddb_entry->conn;
1577
1578 /* Update params */
1579 qla4xxx_copy_fwddb_param(ha, fw_ddb_entry, cls_sess, cls_conn);
1580
1581exit_session_conn_fwddb_param:
1582 if (fw_ddb_entry)
1583 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
1584 fw_ddb_entry, fw_ddb_entry_dma);
1585}
1586
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001587void qla4xxx_update_session_conn_param(struct scsi_qla_host *ha,
1588 struct ddb_entry *ddb_entry)
1589{
1590 struct iscsi_cls_session *cls_sess;
1591 struct iscsi_cls_conn *cls_conn;
1592 struct iscsi_session *sess;
1593 struct iscsi_conn *conn;
1594 uint32_t ddb_state;
1595 dma_addr_t fw_ddb_entry_dma;
1596 struct dev_db_entry *fw_ddb_entry;
1597
1598 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
1599 &fw_ddb_entry_dma, GFP_KERNEL);
1600 if (!fw_ddb_entry) {
1601 ql4_printk(KERN_ERR, ha,
1602 "%s: Unable to allocate dma buffer\n", __func__);
Mike Christie13483732011-12-01 21:38:41 -06001603 goto exit_session_conn_param;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001604 }
1605
1606 if (qla4xxx_get_fwddb_entry(ha, ddb_entry->fw_ddb_index, fw_ddb_entry,
1607 fw_ddb_entry_dma, NULL, NULL, &ddb_state,
1608 NULL, NULL, NULL) == QLA_ERROR) {
1609 DEBUG2(ql4_printk(KERN_ERR, ha, "scsi%ld: %s: failed "
1610 "get_ddb_entry for fw_ddb_index %d\n",
1611 ha->host_no, __func__,
1612 ddb_entry->fw_ddb_index));
Mike Christie13483732011-12-01 21:38:41 -06001613 goto exit_session_conn_param;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001614 }
1615
1616 cls_sess = ddb_entry->sess;
1617 sess = cls_sess->dd_data;
1618
1619 cls_conn = ddb_entry->conn;
1620 conn = cls_conn->dd_data;
1621
Mike Christie13483732011-12-01 21:38:41 -06001622 /* Update timers after login */
1623 ddb_entry->default_relogin_timeout =
1624 le16_to_cpu(fw_ddb_entry->def_timeout);
1625 ddb_entry->default_time2wait =
1626 le16_to_cpu(fw_ddb_entry->iscsi_def_time2wait);
1627
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001628 /* Update params */
1629 conn->max_recv_dlength = BYTE_UNITS *
1630 le16_to_cpu(fw_ddb_entry->iscsi_max_rcv_data_seg_len);
1631
1632 conn->max_xmit_dlength = BYTE_UNITS *
1633 le16_to_cpu(fw_ddb_entry->iscsi_max_snd_data_seg_len);
1634
1635 sess->initial_r2t_en =
1636 (BIT_10 & le16_to_cpu(fw_ddb_entry->iscsi_options));
1637
1638 sess->max_r2t = le16_to_cpu(fw_ddb_entry->iscsi_max_outsnd_r2t);
1639
1640 sess->imm_data_en = (BIT_11 & le16_to_cpu(fw_ddb_entry->iscsi_options));
1641
1642 sess->first_burst = BYTE_UNITS *
1643 le16_to_cpu(fw_ddb_entry->iscsi_first_burst_len);
1644
1645 sess->max_burst = BYTE_UNITS *
1646 le16_to_cpu(fw_ddb_entry->iscsi_max_burst_len);
1647
1648 sess->time2wait = le16_to_cpu(fw_ddb_entry->iscsi_def_time2wait);
1649
1650 sess->time2retain = le16_to_cpu(fw_ddb_entry->iscsi_def_time2retain);
1651
1652 sess->tpgt = le32_to_cpu(fw_ddb_entry->tgt_portal_grp);
1653
1654 memcpy(sess->initiatorname, ha->name_string,
1655 min(sizeof(ha->name_string), sizeof(sess->initiatorname)));
Mike Christie13483732011-12-01 21:38:41 -06001656
1657exit_session_conn_param:
1658 if (fw_ddb_entry)
1659 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
1660 fw_ddb_entry, fw_ddb_entry_dma);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001661}
1662
David Somayajuluafaf5a22006-09-19 10:28:00 -07001663/*
1664 * Timer routines
1665 */
1666
1667static void qla4xxx_start_timer(struct scsi_qla_host *ha, void *func,
1668 unsigned long interval)
1669{
1670 DEBUG(printk("scsi: %s: Starting timer thread for adapter %d\n",
1671 __func__, ha->host->host_no));
1672 init_timer(&ha->timer);
1673 ha->timer.expires = jiffies + interval * HZ;
1674 ha->timer.data = (unsigned long)ha;
1675 ha->timer.function = (void (*)(unsigned long))func;
1676 add_timer(&ha->timer);
1677 ha->timer_active = 1;
1678}
1679
1680static void qla4xxx_stop_timer(struct scsi_qla_host *ha)
1681{
1682 del_timer_sync(&ha->timer);
1683 ha->timer_active = 0;
1684}
1685
1686/***
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001687 * qla4xxx_mark_device_missing - blocks the session
1688 * @cls_session: Pointer to the session to be blocked
David Somayajuluafaf5a22006-09-19 10:28:00 -07001689 * @ddb_entry: Pointer to device database entry
1690 *
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05301691 * This routine marks a device missing and close connection.
David Somayajuluafaf5a22006-09-19 10:28:00 -07001692 **/
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001693void qla4xxx_mark_device_missing(struct iscsi_cls_session *cls_session)
David Somayajuluafaf5a22006-09-19 10:28:00 -07001694{
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001695 iscsi_block_session(cls_session);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001696}
1697
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05301698/**
1699 * qla4xxx_mark_all_devices_missing - mark all devices as missing.
1700 * @ha: Pointer to host adapter structure.
1701 *
1702 * This routine marks a device missing and resets the relogin retry count.
1703 **/
1704void qla4xxx_mark_all_devices_missing(struct scsi_qla_host *ha)
1705{
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001706 iscsi_host_for_each_session(ha->host, qla4xxx_mark_device_missing);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05301707}
1708
David Somayajuluafaf5a22006-09-19 10:28:00 -07001709static struct srb* qla4xxx_get_new_srb(struct scsi_qla_host *ha,
1710 struct ddb_entry *ddb_entry,
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07001711 struct scsi_cmnd *cmd)
David Somayajuluafaf5a22006-09-19 10:28:00 -07001712{
1713 struct srb *srb;
1714
1715 srb = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
1716 if (!srb)
1717 return srb;
1718
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05301719 kref_init(&srb->srb_ref);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001720 srb->ha = ha;
1721 srb->ddb = ddb_entry;
1722 srb->cmd = cmd;
1723 srb->flags = 0;
Vikas Chaudhary53698872010-04-28 11:41:59 +05301724 CMD_SP(cmd) = (void *)srb;
David Somayajuluafaf5a22006-09-19 10:28:00 -07001725
1726 return srb;
1727}
1728
1729static void qla4xxx_srb_free_dma(struct scsi_qla_host *ha, struct srb *srb)
1730{
1731 struct scsi_cmnd *cmd = srb->cmd;
1732
1733 if (srb->flags & SRB_DMA_VALID) {
FUJITA Tomonori5f7186c2007-05-26 14:08:20 +09001734 scsi_dma_unmap(cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001735 srb->flags &= ~SRB_DMA_VALID;
1736 }
Vikas Chaudhary53698872010-04-28 11:41:59 +05301737 CMD_SP(cmd) = NULL;
David Somayajuluafaf5a22006-09-19 10:28:00 -07001738}
1739
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05301740void qla4xxx_srb_compl(struct kref *ref)
David Somayajuluafaf5a22006-09-19 10:28:00 -07001741{
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05301742 struct srb *srb = container_of(ref, struct srb, srb_ref);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001743 struct scsi_cmnd *cmd = srb->cmd;
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05301744 struct scsi_qla_host *ha = srb->ha;
David Somayajuluafaf5a22006-09-19 10:28:00 -07001745
1746 qla4xxx_srb_free_dma(ha, srb);
1747
1748 mempool_free(srb, ha->srb_mempool);
1749
1750 cmd->scsi_done(cmd);
1751}
1752
1753/**
1754 * qla4xxx_queuecommand - scsi layer issues scsi command to driver.
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07001755 * @host: scsi host
David Somayajuluafaf5a22006-09-19 10:28:00 -07001756 * @cmd: Pointer to Linux's SCSI command structure
David Somayajuluafaf5a22006-09-19 10:28:00 -07001757 *
1758 * Remarks:
1759 * This routine is invoked by Linux to send a SCSI command to the driver.
1760 * The mid-level driver tries to ensure that queuecommand never gets
1761 * invoked concurrently with itself or the interrupt handler (although
1762 * the interrupt handler may call this routine as part of request-
1763 * completion handling). Unfortunely, it sometimes calls the scheduler
1764 * in interrupt context which is a big NO! NO!.
1765 **/
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07001766static int qla4xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
David Somayajuluafaf5a22006-09-19 10:28:00 -07001767{
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07001768 struct scsi_qla_host *ha = to_qla_host(host);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001769 struct ddb_entry *ddb_entry = cmd->device->hostdata;
Mike Christie7fb19212008-01-31 13:36:45 -06001770 struct iscsi_cls_session *sess = ddb_entry->sess;
David Somayajuluafaf5a22006-09-19 10:28:00 -07001771 struct srb *srb;
1772 int rval;
1773
Lalit Chandivade2232be02010-07-30 14:38:47 +05301774 if (test_bit(AF_EEH_BUSY, &ha->flags)) {
1775 if (test_bit(AF_PCI_CHANNEL_IO_PERM_FAILURE, &ha->flags))
1776 cmd->result = DID_NO_CONNECT << 16;
1777 else
1778 cmd->result = DID_REQUEUE << 16;
1779 goto qc_fail_command;
1780 }
1781
Mike Christie7fb19212008-01-31 13:36:45 -06001782 if (!sess) {
1783 cmd->result = DID_IMM_RETRY << 16;
1784 goto qc_fail_command;
1785 }
1786
1787 rval = iscsi_session_chkready(sess);
1788 if (rval) {
1789 cmd->result = rval;
1790 goto qc_fail_command;
1791 }
1792
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05301793 if (test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
1794 test_bit(DPC_RESET_ACTIVE, &ha->dpc_flags) ||
1795 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
1796 test_bit(DPC_HA_UNRECOVERABLE, &ha->dpc_flags) ||
1797 test_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags) ||
1798 !test_bit(AF_ONLINE, &ha->flags) ||
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001799 !test_bit(AF_LINK_UP, &ha->flags) ||
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05301800 test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags))
David C Somayajulu477ffb92007-01-22 12:26:11 -08001801 goto qc_host_busy;
1802
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07001803 srb = qla4xxx_get_new_srb(ha, ddb_entry, cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001804 if (!srb)
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07001805 goto qc_host_busy;
David Somayajuluafaf5a22006-09-19 10:28:00 -07001806
1807 rval = qla4xxx_send_command_to_isp(ha, srb);
1808 if (rval != QLA_SUCCESS)
1809 goto qc_host_busy_free_sp;
1810
David Somayajuluafaf5a22006-09-19 10:28:00 -07001811 return 0;
1812
1813qc_host_busy_free_sp:
1814 qla4xxx_srb_free_dma(ha, srb);
1815 mempool_free(srb, ha->srb_mempool);
1816
David Somayajuluafaf5a22006-09-19 10:28:00 -07001817qc_host_busy:
1818 return SCSI_MLQUEUE_HOST_BUSY;
1819
1820qc_fail_command:
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07001821 cmd->scsi_done(cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001822
1823 return 0;
1824}
1825
1826/**
1827 * qla4xxx_mem_free - frees memory allocated to adapter
1828 * @ha: Pointer to host adapter structure.
1829 *
1830 * Frees memory previously allocated by qla4xxx_mem_alloc
1831 **/
1832static void qla4xxx_mem_free(struct scsi_qla_host *ha)
1833{
1834 if (ha->queues)
1835 dma_free_coherent(&ha->pdev->dev, ha->queues_len, ha->queues,
1836 ha->queues_dma);
1837
1838 ha->queues_len = 0;
1839 ha->queues = NULL;
1840 ha->queues_dma = 0;
1841 ha->request_ring = NULL;
1842 ha->request_dma = 0;
1843 ha->response_ring = NULL;
1844 ha->response_dma = 0;
1845 ha->shadow_regs = NULL;
1846 ha->shadow_regs_dma = 0;
1847
1848 /* Free srb pool. */
1849 if (ha->srb_mempool)
1850 mempool_destroy(ha->srb_mempool);
1851
1852 ha->srb_mempool = NULL;
1853
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001854 if (ha->chap_dma_pool)
1855 dma_pool_destroy(ha->chap_dma_pool);
1856
Lalit Chandivade45494152011-10-07 16:55:42 -07001857 if (ha->chap_list)
1858 vfree(ha->chap_list);
1859 ha->chap_list = NULL;
1860
Mike Christie13483732011-12-01 21:38:41 -06001861 if (ha->fw_ddb_dma_pool)
1862 dma_pool_destroy(ha->fw_ddb_dma_pool);
1863
David Somayajuluafaf5a22006-09-19 10:28:00 -07001864 /* release io space registers */
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05301865 if (is_qla8022(ha)) {
1866 if (ha->nx_pcibase)
1867 iounmap(
1868 (struct device_reg_82xx __iomem *)ha->nx_pcibase);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05301869 } else if (ha->reg)
David Somayajuluafaf5a22006-09-19 10:28:00 -07001870 iounmap(ha->reg);
1871 pci_release_regions(ha->pdev);
1872}
1873
1874/**
1875 * qla4xxx_mem_alloc - allocates memory for use by adapter.
1876 * @ha: Pointer to host adapter structure
1877 *
1878 * Allocates DMA memory for request and response queues. Also allocates memory
1879 * for srbs.
1880 **/
1881static int qla4xxx_mem_alloc(struct scsi_qla_host *ha)
1882{
1883 unsigned long align;
1884
1885 /* Allocate contiguous block of DMA memory for queues. */
1886 ha->queues_len = ((REQUEST_QUEUE_DEPTH * QUEUE_SIZE) +
1887 (RESPONSE_QUEUE_DEPTH * QUEUE_SIZE) +
1888 sizeof(struct shadow_regs) +
1889 MEM_ALIGN_VALUE +
1890 (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
1891 ha->queues = dma_alloc_coherent(&ha->pdev->dev, ha->queues_len,
1892 &ha->queues_dma, GFP_KERNEL);
1893 if (ha->queues == NULL) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05301894 ql4_printk(KERN_WARNING, ha,
1895 "Memory Allocation failed - queues.\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07001896
1897 goto mem_alloc_error_exit;
1898 }
1899 memset(ha->queues, 0, ha->queues_len);
1900
1901 /*
1902 * As per RISC alignment requirements -- the bus-address must be a
1903 * multiple of the request-ring size (in bytes).
1904 */
1905 align = 0;
1906 if ((unsigned long)ha->queues_dma & (MEM_ALIGN_VALUE - 1))
1907 align = MEM_ALIGN_VALUE - ((unsigned long)ha->queues_dma &
1908 (MEM_ALIGN_VALUE - 1));
1909
1910 /* Update request and response queue pointers. */
1911 ha->request_dma = ha->queues_dma + align;
1912 ha->request_ring = (struct queue_entry *) (ha->queues + align);
1913 ha->response_dma = ha->queues_dma + align +
1914 (REQUEST_QUEUE_DEPTH * QUEUE_SIZE);
1915 ha->response_ring = (struct queue_entry *) (ha->queues + align +
1916 (REQUEST_QUEUE_DEPTH *
1917 QUEUE_SIZE));
1918 ha->shadow_regs_dma = ha->queues_dma + align +
1919 (REQUEST_QUEUE_DEPTH * QUEUE_SIZE) +
1920 (RESPONSE_QUEUE_DEPTH * QUEUE_SIZE);
1921 ha->shadow_regs = (struct shadow_regs *) (ha->queues + align +
1922 (REQUEST_QUEUE_DEPTH *
1923 QUEUE_SIZE) +
1924 (RESPONSE_QUEUE_DEPTH *
1925 QUEUE_SIZE));
1926
1927 /* Allocate memory for srb pool. */
1928 ha->srb_mempool = mempool_create(SRB_MIN_REQ, mempool_alloc_slab,
1929 mempool_free_slab, srb_cachep);
1930 if (ha->srb_mempool == NULL) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05301931 ql4_printk(KERN_WARNING, ha,
1932 "Memory Allocation failed - SRB Pool.\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07001933
1934 goto mem_alloc_error_exit;
1935 }
1936
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001937 ha->chap_dma_pool = dma_pool_create("ql4_chap", &ha->pdev->dev,
1938 CHAP_DMA_BLOCK_SIZE, 8, 0);
1939
1940 if (ha->chap_dma_pool == NULL) {
1941 ql4_printk(KERN_WARNING, ha,
1942 "%s: chap_dma_pool allocation failed..\n", __func__);
1943 goto mem_alloc_error_exit;
1944 }
1945
Mike Christie13483732011-12-01 21:38:41 -06001946 ha->fw_ddb_dma_pool = dma_pool_create("ql4_fw_ddb", &ha->pdev->dev,
1947 DDB_DMA_BLOCK_SIZE, 8, 0);
1948
1949 if (ha->fw_ddb_dma_pool == NULL) {
1950 ql4_printk(KERN_WARNING, ha,
1951 "%s: fw_ddb_dma_pool allocation failed..\n",
1952 __func__);
1953 goto mem_alloc_error_exit;
1954 }
1955
David Somayajuluafaf5a22006-09-19 10:28:00 -07001956 return QLA_SUCCESS;
1957
1958mem_alloc_error_exit:
1959 qla4xxx_mem_free(ha);
1960 return QLA_ERROR;
1961}
1962
1963/**
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05301964 * qla4_8xxx_check_fw_alive - Check firmware health
1965 * @ha: Pointer to host adapter structure.
1966 *
1967 * Context: Interrupt
1968 **/
1969static void qla4_8xxx_check_fw_alive(struct scsi_qla_host *ha)
1970{
1971 uint32_t fw_heartbeat_counter, halt_status;
1972
1973 fw_heartbeat_counter = qla4_8xxx_rd_32(ha, QLA82XX_PEG_ALIVE_COUNTER);
Lalit Chandivade2232be02010-07-30 14:38:47 +05301974 /* If PEG_ALIVE_COUNTER is 0xffffffff, AER/EEH is in progress, ignore */
1975 if (fw_heartbeat_counter == 0xffffffff) {
1976 DEBUG2(printk(KERN_WARNING "scsi%ld: %s: Device in frozen "
1977 "state, QLA82XX_PEG_ALIVE_COUNTER is 0xffffffff\n",
1978 ha->host_no, __func__));
1979 return;
1980 }
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05301981
1982 if (ha->fw_heartbeat_counter == fw_heartbeat_counter) {
1983 ha->seconds_since_last_heartbeat++;
1984 /* FW not alive after 2 seconds */
1985 if (ha->seconds_since_last_heartbeat == 2) {
1986 ha->seconds_since_last_heartbeat = 0;
1987 halt_status = qla4_8xxx_rd_32(ha,
Vikas Chaudhary68d92eb2011-05-17 23:17:05 -07001988 QLA82XX_PEG_HALT_STATUS1);
1989
1990 ql4_printk(KERN_INFO, ha,
1991 "scsi(%ld): %s, Dumping hw/fw registers:\n "
1992 " PEG_HALT_STATUS1: 0x%x, PEG_HALT_STATUS2:"
1993 " 0x%x,\n PEG_NET_0_PC: 0x%x, PEG_NET_1_PC:"
1994 " 0x%x,\n PEG_NET_2_PC: 0x%x, PEG_NET_3_PC:"
1995 " 0x%x,\n PEG_NET_4_PC: 0x%x\n",
1996 ha->host_no, __func__, halt_status,
1997 qla4_8xxx_rd_32(ha,
1998 QLA82XX_PEG_HALT_STATUS2),
1999 qla4_8xxx_rd_32(ha, QLA82XX_CRB_PEG_NET_0 +
2000 0x3c),
2001 qla4_8xxx_rd_32(ha, QLA82XX_CRB_PEG_NET_1 +
2002 0x3c),
2003 qla4_8xxx_rd_32(ha, QLA82XX_CRB_PEG_NET_2 +
2004 0x3c),
2005 qla4_8xxx_rd_32(ha, QLA82XX_CRB_PEG_NET_3 +
2006 0x3c),
2007 qla4_8xxx_rd_32(ha, QLA82XX_CRB_PEG_NET_4 +
2008 0x3c));
Nilesh Javali21033632010-07-30 14:28:07 +05302009
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302010 /* Since we cannot change dev_state in interrupt
2011 * context, set appropriate DPC flag then wakeup
2012 * DPC */
2013 if (halt_status & HALT_STATUS_UNRECOVERABLE)
2014 set_bit(DPC_HA_UNRECOVERABLE, &ha->dpc_flags);
2015 else {
2016 printk("scsi%ld: %s: detect abort needed!\n",
2017 ha->host_no, __func__);
2018 set_bit(DPC_RESET_HA, &ha->dpc_flags);
2019 }
2020 qla4xxx_wake_dpc(ha);
Nilesh Javali21033632010-07-30 14:28:07 +05302021 qla4xxx_mailbox_premature_completion(ha);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302022 }
Lalit Chandivade99457d72010-10-06 22:49:32 -07002023 } else
2024 ha->seconds_since_last_heartbeat = 0;
2025
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302026 ha->fw_heartbeat_counter = fw_heartbeat_counter;
2027}
2028
2029/**
2030 * qla4_8xxx_watchdog - Poll dev state
2031 * @ha: Pointer to host adapter structure.
2032 *
2033 * Context: Interrupt
2034 **/
2035void qla4_8xxx_watchdog(struct scsi_qla_host *ha)
2036{
2037 uint32_t dev_state;
2038
2039 dev_state = qla4_8xxx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
2040
2041 /* don't poll if reset is going on */
Lalit Chandivaded56a1f72010-12-02 22:12:45 -08002042 if (!(test_bit(DPC_RESET_ACTIVE, &ha->dpc_flags) ||
2043 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
Vikas Chaudhary977f46a2011-05-17 23:17:08 -07002044 test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags))) {
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302045 if (dev_state == QLA82XX_DEV_NEED_RESET &&
2046 !test_bit(DPC_RESET_HA, &ha->dpc_flags)) {
Vikas Chaudhary3930b8c2010-12-02 22:12:47 -08002047 if (!ql4xdontresethba) {
2048 ql4_printk(KERN_INFO, ha, "%s: HW State: "
2049 "NEED RESET!\n", __func__);
2050 set_bit(DPC_RESET_HA, &ha->dpc_flags);
2051 qla4xxx_wake_dpc(ha);
2052 qla4xxx_mailbox_premature_completion(ha);
2053 }
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302054 } else if (dev_state == QLA82XX_DEV_NEED_QUIESCENT &&
2055 !test_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags)) {
Vikas Chaudhary3930b8c2010-12-02 22:12:47 -08002056 ql4_printk(KERN_INFO, ha, "%s: HW State: NEED QUIES!\n",
2057 __func__);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302058 set_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags);
2059 qla4xxx_wake_dpc(ha);
2060 } else {
2061 /* Check firmware health */
2062 qla4_8xxx_check_fw_alive(ha);
2063 }
2064 }
2065}
2066
Mike Christie13483732011-12-01 21:38:41 -06002067void qla4xxx_check_relogin_flash_ddb(struct iscsi_cls_session *cls_sess)
2068{
2069 struct iscsi_session *sess;
2070 struct ddb_entry *ddb_entry;
2071 struct scsi_qla_host *ha;
2072
2073 sess = cls_sess->dd_data;
2074 ddb_entry = sess->dd_data;
2075 ha = ddb_entry->ha;
2076
2077 if (!(ddb_entry->ddb_type == FLASH_DDB))
2078 return;
2079
2080 if (adapter_up(ha) && !test_bit(DF_RELOGIN, &ddb_entry->flags) &&
2081 !iscsi_is_session_online(cls_sess)) {
2082 if (atomic_read(&ddb_entry->retry_relogin_timer) !=
2083 INVALID_ENTRY) {
2084 if (atomic_read(&ddb_entry->retry_relogin_timer) ==
2085 0) {
2086 atomic_set(&ddb_entry->retry_relogin_timer,
2087 INVALID_ENTRY);
2088 set_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags);
2089 set_bit(DF_RELOGIN, &ddb_entry->flags);
2090 DEBUG2(ql4_printk(KERN_INFO, ha,
2091 "%s: index [%d] login device\n",
2092 __func__, ddb_entry->fw_ddb_index));
2093 } else
2094 atomic_dec(&ddb_entry->retry_relogin_timer);
2095 }
2096 }
2097
2098 /* Wait for relogin to timeout */
2099 if (atomic_read(&ddb_entry->relogin_timer) &&
2100 (atomic_dec_and_test(&ddb_entry->relogin_timer) != 0)) {
2101 /*
2102 * If the relogin times out and the device is
2103 * still NOT ONLINE then try and relogin again.
2104 */
2105 if (!iscsi_is_session_online(cls_sess)) {
2106 /* Reset retry relogin timer */
2107 atomic_inc(&ddb_entry->relogin_retry_count);
2108 DEBUG2(ql4_printk(KERN_INFO, ha,
2109 "%s: index[%d] relogin timed out-retrying"
2110 " relogin (%d), retry (%d)\n", __func__,
2111 ddb_entry->fw_ddb_index,
2112 atomic_read(&ddb_entry->relogin_retry_count),
2113 ddb_entry->default_time2wait + 4));
2114 set_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags);
2115 atomic_set(&ddb_entry->retry_relogin_timer,
2116 ddb_entry->default_time2wait + 4);
2117 }
2118 }
2119}
2120
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302121/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07002122 * qla4xxx_timer - checks every second for work to do.
2123 * @ha: Pointer to host adapter structure.
2124 **/
2125static void qla4xxx_timer(struct scsi_qla_host *ha)
2126{
David Somayajuluafaf5a22006-09-19 10:28:00 -07002127 int start_dpc = 0;
Lalit Chandivade2232be02010-07-30 14:38:47 +05302128 uint16_t w;
2129
Mike Christie13483732011-12-01 21:38:41 -06002130 iscsi_host_for_each_session(ha->host, qla4xxx_check_relogin_flash_ddb);
2131
Lalit Chandivade2232be02010-07-30 14:38:47 +05302132 /* If we are in the middle of AER/EEH processing
2133 * skip any processing and reschedule the timer
2134 */
2135 if (test_bit(AF_EEH_BUSY, &ha->flags)) {
2136 mod_timer(&ha->timer, jiffies + HZ);
2137 return;
2138 }
2139
2140 /* Hardware read to trigger an EEH error during mailbox waits. */
2141 if (!pci_channel_offline(ha->pdev))
2142 pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002143
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302144 if (is_qla8022(ha)) {
2145 qla4_8xxx_watchdog(ha);
2146 }
2147
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302148 if (!is_qla8022(ha)) {
2149 /* Check for heartbeat interval. */
2150 if (ha->firmware_options & FWOPT_HEARTBEAT_ENABLE &&
2151 ha->heartbeat_interval != 0) {
2152 ha->seconds_since_last_heartbeat++;
2153 if (ha->seconds_since_last_heartbeat >
2154 ha->heartbeat_interval + 2)
2155 set_bit(DPC_RESET_HA, &ha->dpc_flags);
2156 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07002157 }
2158
David Somayajuluafaf5a22006-09-19 10:28:00 -07002159 /* Wakeup the dpc routine for this adapter, if needed. */
Lalit Chandivade1b468072011-05-17 23:17:09 -07002160 if (start_dpc ||
David Somayajuluafaf5a22006-09-19 10:28:00 -07002161 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
2162 test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags) ||
2163 test_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags) ||
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302164 test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags) ||
David Somayajuluafaf5a22006-09-19 10:28:00 -07002165 test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
2166 test_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags) ||
Vikas Chaudhary065aa1b2010-04-28 11:38:11 +05302167 test_bit(DPC_LINK_CHANGED, &ha->dpc_flags) ||
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302168 test_bit(DPC_HA_UNRECOVERABLE, &ha->dpc_flags) ||
2169 test_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags) ||
Lalit Chandivade1b468072011-05-17 23:17:09 -07002170 test_bit(DPC_AEN, &ha->dpc_flags)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07002171 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine"
2172 " - dpc flags = 0x%lx\n",
2173 ha->host_no, __func__, ha->dpc_flags));
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302174 qla4xxx_wake_dpc(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002175 }
2176
2177 /* Reschedule timer thread to call us back in one second */
2178 mod_timer(&ha->timer, jiffies + HZ);
2179
2180 DEBUG2(ha->seconds_since_last_intr++);
2181}
2182
2183/**
2184 * qla4xxx_cmd_wait - waits for all outstanding commands to complete
2185 * @ha: Pointer to host adapter structure.
2186 *
2187 * This routine stalls the driver until all outstanding commands are returned.
2188 * Caller must release the Hardware Lock prior to calling this routine.
2189 **/
2190static int qla4xxx_cmd_wait(struct scsi_qla_host *ha)
2191{
2192 uint32_t index = 0;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002193 unsigned long flags;
2194 struct scsi_cmnd *cmd;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002195
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302196 unsigned long wtime = jiffies + (WAIT_CMD_TOV * HZ);
2197
2198 DEBUG2(ql4_printk(KERN_INFO, ha, "Wait up to %d seconds for cmds to "
2199 "complete\n", WAIT_CMD_TOV));
2200
2201 while (!time_after_eq(jiffies, wtime)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07002202 spin_lock_irqsave(&ha->hardware_lock, flags);
2203 /* Find a command that hasn't completed. */
2204 for (index = 0; index < ha->host->can_queue; index++) {
2205 cmd = scsi_host_find_tag(ha->host, index);
Mike Christiea1e00632010-10-26 05:45:30 -07002206 /*
2207 * We cannot just check if the index is valid,
2208 * becase if we are run from the scsi eh, then
2209 * the scsi/block layer is going to prevent
2210 * the tag from being released.
2211 */
2212 if (cmd != NULL && CMD_SP(cmd))
David Somayajuluafaf5a22006-09-19 10:28:00 -07002213 break;
2214 }
2215 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2216
2217 /* If No Commands are pending, wait is complete */
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302218 if (index == ha->host->can_queue)
2219 return QLA_SUCCESS;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002220
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302221 msleep(1000);
2222 }
2223 /* If we timed out on waiting for commands to come back
2224 * return ERROR. */
2225 return QLA_ERROR;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002226}
2227
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302228int qla4xxx_hw_reset(struct scsi_qla_host *ha)
David Somayajuluafaf5a22006-09-19 10:28:00 -07002229{
David Somayajuluafaf5a22006-09-19 10:28:00 -07002230 uint32_t ctrl_status;
David C Somayajulu477ffb92007-01-22 12:26:11 -08002231 unsigned long flags = 0;
2232
2233 DEBUG2(printk(KERN_ERR "scsi%ld: %s\n", ha->host_no, __func__));
David Somayajuluafaf5a22006-09-19 10:28:00 -07002234
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302235 if (ql4xxx_lock_drvr_wait(ha) != QLA_SUCCESS)
2236 return QLA_ERROR;
2237
David Somayajuluafaf5a22006-09-19 10:28:00 -07002238 spin_lock_irqsave(&ha->hardware_lock, flags);
2239
2240 /*
2241 * If the SCSI Reset Interrupt bit is set, clear it.
2242 * Otherwise, the Soft Reset won't work.
2243 */
2244 ctrl_status = readw(&ha->reg->ctrl_status);
2245 if ((ctrl_status & CSR_SCSI_RESET_INTR) != 0)
2246 writel(set_rmask(CSR_SCSI_RESET_INTR), &ha->reg->ctrl_status);
2247
2248 /* Issue Soft Reset */
2249 writel(set_rmask(CSR_SOFT_RESET), &ha->reg->ctrl_status);
2250 readl(&ha->reg->ctrl_status);
2251
2252 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302253 return QLA_SUCCESS;
David C Somayajulu477ffb92007-01-22 12:26:11 -08002254}
2255
2256/**
2257 * qla4xxx_soft_reset - performs soft reset.
2258 * @ha: Pointer to host adapter structure.
2259 **/
2260int qla4xxx_soft_reset(struct scsi_qla_host *ha)
2261{
2262 uint32_t max_wait_time;
2263 unsigned long flags = 0;
Vikas Chaudharyf931c532010-10-06 22:48:07 -07002264 int status;
David C Somayajulu477ffb92007-01-22 12:26:11 -08002265 uint32_t ctrl_status;
2266
Vikas Chaudharyf931c532010-10-06 22:48:07 -07002267 status = qla4xxx_hw_reset(ha);
2268 if (status != QLA_SUCCESS)
2269 return status;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002270
Vikas Chaudharyf931c532010-10-06 22:48:07 -07002271 status = QLA_ERROR;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002272 /* Wait until the Network Reset Intr bit is cleared */
2273 max_wait_time = RESET_INTR_TOV;
2274 do {
2275 spin_lock_irqsave(&ha->hardware_lock, flags);
2276 ctrl_status = readw(&ha->reg->ctrl_status);
2277 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2278
2279 if ((ctrl_status & CSR_NET_RESET_INTR) == 0)
2280 break;
2281
2282 msleep(1000);
2283 } while ((--max_wait_time));
2284
2285 if ((ctrl_status & CSR_NET_RESET_INTR) != 0) {
2286 DEBUG2(printk(KERN_WARNING
2287 "scsi%ld: Network Reset Intr not cleared by "
2288 "Network function, clearing it now!\n",
2289 ha->host_no));
2290 spin_lock_irqsave(&ha->hardware_lock, flags);
2291 writel(set_rmask(CSR_NET_RESET_INTR), &ha->reg->ctrl_status);
2292 readl(&ha->reg->ctrl_status);
2293 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2294 }
2295
2296 /* Wait until the firmware tells us the Soft Reset is done */
2297 max_wait_time = SOFT_RESET_TOV;
2298 do {
2299 spin_lock_irqsave(&ha->hardware_lock, flags);
2300 ctrl_status = readw(&ha->reg->ctrl_status);
2301 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2302
2303 if ((ctrl_status & CSR_SOFT_RESET) == 0) {
2304 status = QLA_SUCCESS;
2305 break;
2306 }
2307
2308 msleep(1000);
2309 } while ((--max_wait_time));
2310
2311 /*
2312 * Also, make sure that the SCSI Reset Interrupt bit has been cleared
2313 * after the soft reset has taken place.
2314 */
2315 spin_lock_irqsave(&ha->hardware_lock, flags);
2316 ctrl_status = readw(&ha->reg->ctrl_status);
2317 if ((ctrl_status & CSR_SCSI_RESET_INTR) != 0) {
2318 writel(set_rmask(CSR_SCSI_RESET_INTR), &ha->reg->ctrl_status);
2319 readl(&ha->reg->ctrl_status);
2320 }
2321 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2322
2323 /* If soft reset fails then most probably the bios on other
2324 * function is also enabled.
2325 * Since the initialization is sequential the other fn
2326 * wont be able to acknowledge the soft reset.
2327 * Issue a force soft reset to workaround this scenario.
2328 */
2329 if (max_wait_time == 0) {
2330 /* Issue Force Soft Reset */
2331 spin_lock_irqsave(&ha->hardware_lock, flags);
2332 writel(set_rmask(CSR_FORCE_SOFT_RESET), &ha->reg->ctrl_status);
2333 readl(&ha->reg->ctrl_status);
2334 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2335 /* Wait until the firmware tells us the Soft Reset is done */
2336 max_wait_time = SOFT_RESET_TOV;
2337 do {
2338 spin_lock_irqsave(&ha->hardware_lock, flags);
2339 ctrl_status = readw(&ha->reg->ctrl_status);
2340 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2341
2342 if ((ctrl_status & CSR_FORCE_SOFT_RESET) == 0) {
2343 status = QLA_SUCCESS;
2344 break;
2345 }
2346
2347 msleep(1000);
2348 } while ((--max_wait_time));
2349 }
2350
2351 return status;
2352}
2353
2354/**
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302355 * qla4xxx_abort_active_cmds - returns all outstanding i/o requests to O.S.
David Somayajuluafaf5a22006-09-19 10:28:00 -07002356 * @ha: Pointer to host adapter structure.
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302357 * @res: returned scsi status
David Somayajuluafaf5a22006-09-19 10:28:00 -07002358 *
2359 * This routine is called just prior to a HARD RESET to return all
2360 * outstanding commands back to the Operating System.
2361 * Caller should make sure that the following locks are released
2362 * before this calling routine: Hardware lock, and io_request_lock.
2363 **/
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302364static void qla4xxx_abort_active_cmds(struct scsi_qla_host *ha, int res)
David Somayajuluafaf5a22006-09-19 10:28:00 -07002365{
2366 struct srb *srb;
2367 int i;
2368 unsigned long flags;
2369
2370 spin_lock_irqsave(&ha->hardware_lock, flags);
2371 for (i = 0; i < ha->host->can_queue; i++) {
2372 srb = qla4xxx_del_from_active_array(ha, i);
2373 if (srb != NULL) {
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302374 srb->cmd->result = res;
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05302375 kref_put(&srb->srb_ref, qla4xxx_srb_compl);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002376 }
2377 }
2378 spin_unlock_irqrestore(&ha->hardware_lock, flags);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002379}
2380
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302381void qla4xxx_dead_adapter_cleanup(struct scsi_qla_host *ha)
2382{
2383 clear_bit(AF_ONLINE, &ha->flags);
2384
2385 /* Disable the board */
2386 ql4_printk(KERN_INFO, ha, "Disabling the board\n");
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302387
2388 qla4xxx_abort_active_cmds(ha, DID_NO_CONNECT << 16);
2389 qla4xxx_mark_all_devices_missing(ha);
2390 clear_bit(AF_INIT_DONE, &ha->flags);
2391}
2392
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002393static void qla4xxx_fail_session(struct iscsi_cls_session *cls_session)
2394{
2395 struct iscsi_session *sess;
2396 struct ddb_entry *ddb_entry;
2397
2398 sess = cls_session->dd_data;
2399 ddb_entry = sess->dd_data;
2400 ddb_entry->fw_ddb_device_state = DDB_DS_SESSION_FAILED;
Mike Christie13483732011-12-01 21:38:41 -06002401
2402 if (ddb_entry->ddb_type == FLASH_DDB)
2403 iscsi_block_session(ddb_entry->sess);
2404 else
2405 iscsi_session_failure(cls_session->dd_data,
2406 ISCSI_ERR_CONN_FAILED);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002407}
2408
David Somayajuluafaf5a22006-09-19 10:28:00 -07002409/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07002410 * qla4xxx_recover_adapter - recovers adapter after a fatal error
2411 * @ha: Pointer to host adapter structure.
David Somayajuluafaf5a22006-09-19 10:28:00 -07002412 **/
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302413static int qla4xxx_recover_adapter(struct scsi_qla_host *ha)
David Somayajuluafaf5a22006-09-19 10:28:00 -07002414{
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302415 int status = QLA_ERROR;
2416 uint8_t reset_chip = 0;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002417
2418 /* Stall incoming I/O until we are done */
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302419 scsi_block_requests(ha->host);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002420 clear_bit(AF_ONLINE, &ha->flags);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002421 clear_bit(AF_LINK_UP, &ha->flags);
Mike Christie50a29ae2008-03-04 13:26:53 -06002422
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302423 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: adapter OFFLINE\n", __func__));
David Somayajuluafaf5a22006-09-19 10:28:00 -07002424
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302425 set_bit(DPC_RESET_ACTIVE, &ha->dpc_flags);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002426
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002427 iscsi_host_for_each_session(ha->host, qla4xxx_fail_session);
2428
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302429 if (test_bit(DPC_RESET_HA, &ha->dpc_flags))
2430 reset_chip = 1;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002431
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302432 /* For the DPC_RESET_HA_INTR case (ISP-4xxx specific)
2433 * do not reset adapter, jump to initialize_adapter */
2434 if (test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags)) {
2435 status = QLA_SUCCESS;
2436 goto recover_ha_init_adapter;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002437 }
2438
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302439 /* For the ISP-82xx adapter, issue a stop_firmware if invoked
2440 * from eh_host_reset or ioctl module */
2441 if (is_qla8022(ha) && !reset_chip &&
2442 test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags)) {
2443
2444 DEBUG2(ql4_printk(KERN_INFO, ha,
2445 "scsi%ld: %s - Performing stop_firmware...\n",
2446 ha->host_no, __func__));
2447 status = ha->isp_ops->reset_firmware(ha);
2448 if (status == QLA_SUCCESS) {
Nilesh Javali2bd1e2be2010-10-06 22:49:20 -07002449 if (!test_bit(AF_FW_RECOVERY, &ha->flags))
2450 qla4xxx_cmd_wait(ha);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302451 ha->isp_ops->disable_intrs(ha);
2452 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
2453 qla4xxx_abort_active_cmds(ha, DID_RESET << 16);
2454 } else {
2455 /* If the stop_firmware fails then
2456 * reset the entire chip */
2457 reset_chip = 1;
2458 clear_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags);
2459 set_bit(DPC_RESET_HA, &ha->dpc_flags);
2460 }
2461 }
2462
2463 /* Issue full chip reset if recovering from a catastrophic error,
2464 * or if stop_firmware fails for ISP-82xx.
2465 * This is the default case for ISP-4xxx */
2466 if (!is_qla8022(ha) || reset_chip) {
Nilesh Javali2bd1e2be2010-10-06 22:49:20 -07002467 if (!test_bit(AF_FW_RECOVERY, &ha->flags))
2468 qla4xxx_cmd_wait(ha);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302469 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
2470 qla4xxx_abort_active_cmds(ha, DID_RESET << 16);
2471 DEBUG2(ql4_printk(KERN_INFO, ha,
2472 "scsi%ld: %s - Performing chip reset..\n",
2473 ha->host_no, __func__));
2474 status = ha->isp_ops->reset_chip(ha);
2475 }
2476
2477 /* Flush any pending ddb changed AENs */
2478 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
2479
2480recover_ha_init_adapter:
2481 /* Upon successful firmware/chip reset, re-initialize the adapter */
2482 if (status == QLA_SUCCESS) {
2483 /* For ISP-4xxx, force function 1 to always initialize
2484 * before function 3 to prevent both funcions from
2485 * stepping on top of the other */
2486 if (!is_qla8022(ha) && (ha->mac_index == 3))
2487 ssleep(6);
2488
2489 /* NOTE: AF_ONLINE flag set upon successful completion of
2490 * qla4xxx_initialize_adapter */
Mike Christie13483732011-12-01 21:38:41 -06002491 status = qla4xxx_initialize_adapter(ha, RESET_ADAPTER);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302492 }
2493
2494 /* Retry failed adapter initialization, if necessary
2495 * Do not retry initialize_adapter for RESET_HA_INTR (ISP-4xxx specific)
2496 * case to prevent ping-pong resets between functions */
2497 if (!test_bit(AF_ONLINE, &ha->flags) &&
2498 !test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07002499 /* Adapter initialization failed, see if we can retry
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302500 * resetting the ha.
2501 * Since we don't want to block the DPC for too long
2502 * with multiple resets in the same thread,
2503 * utilize DPC to retry */
David Somayajuluafaf5a22006-09-19 10:28:00 -07002504 if (!test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags)) {
2505 ha->retry_reset_ha_cnt = MAX_RESET_HA_RETRIES;
2506 DEBUG2(printk("scsi%ld: recover adapter - retrying "
2507 "(%d) more times\n", ha->host_no,
2508 ha->retry_reset_ha_cnt));
2509 set_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
2510 status = QLA_ERROR;
2511 } else {
2512 if (ha->retry_reset_ha_cnt > 0) {
2513 /* Schedule another Reset HA--DPC will retry */
2514 ha->retry_reset_ha_cnt--;
2515 DEBUG2(printk("scsi%ld: recover adapter - "
2516 "retry remaining %d\n",
2517 ha->host_no,
2518 ha->retry_reset_ha_cnt));
2519 status = QLA_ERROR;
2520 }
2521
2522 if (ha->retry_reset_ha_cnt == 0) {
2523 /* Recover adapter retries have been exhausted.
2524 * Adapter DEAD */
2525 DEBUG2(printk("scsi%ld: recover adapter "
2526 "failed - board disabled\n",
2527 ha->host_no));
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302528 qla4xxx_dead_adapter_cleanup(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002529 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
2530 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302531 clear_bit(DPC_RESET_HA_FW_CONTEXT,
David Somayajuluafaf5a22006-09-19 10:28:00 -07002532 &ha->dpc_flags);
2533 status = QLA_ERROR;
2534 }
2535 }
2536 } else {
2537 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302538 clear_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002539 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
2540 }
2541
2542 ha->adapter_error_count++;
2543
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302544 if (test_bit(AF_ONLINE, &ha->flags))
2545 ha->isp_ops->enable_intrs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002546
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302547 scsi_unblock_requests(ha->host);
2548
2549 clear_bit(DPC_RESET_ACTIVE, &ha->dpc_flags);
2550 DEBUG2(printk("scsi%ld: recover adapter: %s\n", ha->host_no,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002551 status == QLA_ERROR ? "FAILED" : "SUCCEEDED"));
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302552
David Somayajuluafaf5a22006-09-19 10:28:00 -07002553 return status;
2554}
2555
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002556static void qla4xxx_relogin_devices(struct iscsi_cls_session *cls_session)
Vikas Chaudhary2d7924e2011-03-21 03:34:33 -07002557{
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002558 struct iscsi_session *sess;
2559 struct ddb_entry *ddb_entry;
2560 struct scsi_qla_host *ha;
Vikas Chaudhary2d7924e2011-03-21 03:34:33 -07002561
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002562 sess = cls_session->dd_data;
2563 ddb_entry = sess->dd_data;
2564 ha = ddb_entry->ha;
2565 if (!iscsi_is_session_online(cls_session)) {
2566 if (ddb_entry->fw_ddb_device_state == DDB_DS_SESSION_ACTIVE) {
2567 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: ddb[%d]"
2568 " unblock session\n", ha->host_no, __func__,
2569 ddb_entry->fw_ddb_index);
2570 iscsi_unblock_session(ddb_entry->sess);
2571 } else {
2572 /* Trigger relogin */
Mike Christie13483732011-12-01 21:38:41 -06002573 if (ddb_entry->ddb_type == FLASH_DDB) {
2574 if (!test_bit(DF_RELOGIN, &ddb_entry->flags))
2575 qla4xxx_arm_relogin_timer(ddb_entry);
2576 } else
2577 iscsi_session_failure(cls_session->dd_data,
2578 ISCSI_ERR_CONN_FAILED);
Vikas Chaudhary2d7924e2011-03-21 03:34:33 -07002579 }
2580 }
2581}
2582
Mike Christie13483732011-12-01 21:38:41 -06002583int qla4xxx_unblock_flash_ddb(struct iscsi_cls_session *cls_session)
2584{
2585 struct iscsi_session *sess;
2586 struct ddb_entry *ddb_entry;
2587 struct scsi_qla_host *ha;
2588
2589 sess = cls_session->dd_data;
2590 ddb_entry = sess->dd_data;
2591 ha = ddb_entry->ha;
2592 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: ddb[%d]"
2593 " unblock session\n", ha->host_no, __func__,
2594 ddb_entry->fw_ddb_index);
2595
2596 iscsi_unblock_session(ddb_entry->sess);
2597
2598 /* Start scan target */
2599 if (test_bit(AF_ONLINE, &ha->flags)) {
2600 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: ddb[%d]"
2601 " start scan\n", ha->host_no, __func__,
2602 ddb_entry->fw_ddb_index);
2603 scsi_queue_work(ha->host, &ddb_entry->sess->scan_work);
2604 }
2605 return QLA_SUCCESS;
2606}
2607
2608int qla4xxx_unblock_ddb(struct iscsi_cls_session *cls_session)
2609{
2610 struct iscsi_session *sess;
2611 struct ddb_entry *ddb_entry;
2612 struct scsi_qla_host *ha;
2613
2614 sess = cls_session->dd_data;
2615 ddb_entry = sess->dd_data;
2616 ha = ddb_entry->ha;
2617 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: ddb[%d]"
2618 " unblock user space session\n", ha->host_no, __func__,
2619 ddb_entry->fw_ddb_index);
2620 iscsi_conn_start(ddb_entry->conn);
2621 iscsi_conn_login_event(ddb_entry->conn,
2622 ISCSI_CONN_STATE_LOGGED_IN);
2623
2624 return QLA_SUCCESS;
2625}
2626
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002627static void qla4xxx_relogin_all_devices(struct scsi_qla_host *ha)
2628{
2629 iscsi_host_for_each_session(ha->host, qla4xxx_relogin_devices);
2630}
2631
Mike Christie13483732011-12-01 21:38:41 -06002632static void qla4xxx_relogin_flash_ddb(struct iscsi_cls_session *cls_sess)
2633{
2634 uint16_t relogin_timer;
2635 struct iscsi_session *sess;
2636 struct ddb_entry *ddb_entry;
2637 struct scsi_qla_host *ha;
2638
2639 sess = cls_sess->dd_data;
2640 ddb_entry = sess->dd_data;
2641 ha = ddb_entry->ha;
2642
2643 relogin_timer = max(ddb_entry->default_relogin_timeout,
2644 (uint16_t)RELOGIN_TOV);
2645 atomic_set(&ddb_entry->relogin_timer, relogin_timer);
2646
2647 DEBUG2(ql4_printk(KERN_INFO, ha,
2648 "scsi%ld: Relogin index [%d]. TOV=%d\n", ha->host_no,
2649 ddb_entry->fw_ddb_index, relogin_timer));
2650
2651 qla4xxx_login_flash_ddb(cls_sess);
2652}
2653
2654static void qla4xxx_dpc_relogin(struct iscsi_cls_session *cls_sess)
2655{
2656 struct iscsi_session *sess;
2657 struct ddb_entry *ddb_entry;
2658 struct scsi_qla_host *ha;
2659
2660 sess = cls_sess->dd_data;
2661 ddb_entry = sess->dd_data;
2662 ha = ddb_entry->ha;
2663
2664 if (!(ddb_entry->ddb_type == FLASH_DDB))
2665 return;
2666
2667 if (test_and_clear_bit(DF_RELOGIN, &ddb_entry->flags) &&
2668 !iscsi_is_session_online(cls_sess)) {
2669 DEBUG2(ql4_printk(KERN_INFO, ha,
2670 "relogin issued\n"));
2671 qla4xxx_relogin_flash_ddb(cls_sess);
2672 }
2673}
2674
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302675void qla4xxx_wake_dpc(struct scsi_qla_host *ha)
2676{
Lalit Chandivade1b468072011-05-17 23:17:09 -07002677 if (ha->dpc_thread)
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302678 queue_work(ha->dpc_thread, &ha->dpc_work);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302679}
2680
David Somayajuluafaf5a22006-09-19 10:28:00 -07002681/**
2682 * qla4xxx_do_dpc - dpc routine
2683 * @data: in our case pointer to adapter structure
2684 *
2685 * This routine is a task that is schedule by the interrupt handler
2686 * to perform the background processing for interrupts. We put it
2687 * on a task queue that is consumed whenever the scheduler runs; that's
2688 * so you can do anything (i.e. put the process to sleep etc). In fact,
2689 * the mid-level tries to sleep when it reaches the driver threshold
2690 * "host->can_queue". This can cause a panic if we were in our interrupt code.
2691 **/
David Howellsc4028952006-11-22 14:57:56 +00002692static void qla4xxx_do_dpc(struct work_struct *work)
David Somayajuluafaf5a22006-09-19 10:28:00 -07002693{
David Howellsc4028952006-11-22 14:57:56 +00002694 struct scsi_qla_host *ha =
2695 container_of(work, struct scsi_qla_host, dpc_work);
David C Somayajulu477ffb92007-01-22 12:26:11 -08002696 int status = QLA_ERROR;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002697
David C Somayajuluf26b9042006-11-15 16:41:09 -08002698 DEBUG2(printk("scsi%ld: %s: DPC handler waking up."
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302699 "flags = 0x%08lx, dpc_flags = 0x%08lx\n",
2700 ha->host_no, __func__, ha->flags, ha->dpc_flags))
David Somayajuluafaf5a22006-09-19 10:28:00 -07002701
2702 /* Initialization not yet finished. Don't do anything yet. */
2703 if (!test_bit(AF_INIT_DONE, &ha->flags))
Lalit Chandivade1b468072011-05-17 23:17:09 -07002704 return;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002705
Lalit Chandivade2232be02010-07-30 14:38:47 +05302706 if (test_bit(AF_EEH_BUSY, &ha->flags)) {
2707 DEBUG2(printk(KERN_INFO "scsi%ld: %s: flags = %lx\n",
2708 ha->host_no, __func__, ha->flags));
Lalit Chandivade1b468072011-05-17 23:17:09 -07002709 return;
Lalit Chandivade2232be02010-07-30 14:38:47 +05302710 }
2711
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302712 if (is_qla8022(ha)) {
2713 if (test_bit(DPC_HA_UNRECOVERABLE, &ha->dpc_flags)) {
2714 qla4_8xxx_idc_lock(ha);
2715 qla4_8xxx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
2716 QLA82XX_DEV_FAILED);
2717 qla4_8xxx_idc_unlock(ha);
2718 ql4_printk(KERN_INFO, ha, "HW State: FAILED\n");
2719 qla4_8xxx_device_state_handler(ha);
2720 }
2721 if (test_and_clear_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags)) {
2722 qla4_8xxx_need_qsnt_handler(ha);
2723 }
2724 }
2725
2726 if (!test_bit(DPC_RESET_ACTIVE, &ha->dpc_flags) &&
2727 (test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
David Somayajuluafaf5a22006-09-19 10:28:00 -07002728 test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302729 test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags))) {
2730 if (ql4xdontresethba) {
2731 DEBUG2(printk("scsi%ld: %s: Don't Reset HBA\n",
2732 ha->host_no, __func__));
2733 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
2734 clear_bit(DPC_RESET_HA_INTR, &ha->dpc_flags);
2735 clear_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags);
2736 goto dpc_post_reset_ha;
2737 }
2738 if (test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags) ||
2739 test_bit(DPC_RESET_HA, &ha->dpc_flags))
2740 qla4xxx_recover_adapter(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002741
David C Somayajulu477ffb92007-01-22 12:26:11 -08002742 if (test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07002743 uint8_t wait_time = RESET_INTR_TOV;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002744
David Somayajuluafaf5a22006-09-19 10:28:00 -07002745 while ((readw(&ha->reg->ctrl_status) &
2746 (CSR_SOFT_RESET | CSR_FORCE_SOFT_RESET)) != 0) {
2747 if (--wait_time == 0)
2748 break;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002749 msleep(1000);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002750 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07002751 if (wait_time == 0)
2752 DEBUG2(printk("scsi%ld: %s: SR|FSR "
2753 "bit not cleared-- resetting\n",
2754 ha->host_no, __func__));
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302755 qla4xxx_abort_active_cmds(ha, DID_RESET << 16);
David C Somayajulu477ffb92007-01-22 12:26:11 -08002756 if (ql4xxx_lock_drvr_wait(ha) == QLA_SUCCESS) {
2757 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302758 status = qla4xxx_recover_adapter(ha);
David C Somayajulu477ffb92007-01-22 12:26:11 -08002759 }
2760 clear_bit(DPC_RESET_HA_INTR, &ha->dpc_flags);
2761 if (status == QLA_SUCCESS)
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302762 ha->isp_ops->enable_intrs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002763 }
2764 }
2765
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302766dpc_post_reset_ha:
David Somayajuluafaf5a22006-09-19 10:28:00 -07002767 /* ---- process AEN? --- */
2768 if (test_and_clear_bit(DPC_AEN, &ha->dpc_flags))
2769 qla4xxx_process_aen(ha, PROCESS_ALL_AENS);
2770
2771 /* ---- Get DHCP IP Address? --- */
2772 if (test_and_clear_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags))
2773 qla4xxx_get_dhcp_ip_address(ha);
2774
Mike Christie13483732011-12-01 21:38:41 -06002775 /* ---- relogin device? --- */
2776 if (adapter_up(ha) &&
2777 test_and_clear_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags)) {
2778 iscsi_host_for_each_session(ha->host, qla4xxx_dpc_relogin);
2779 }
2780
Vikas Chaudhary065aa1b2010-04-28 11:38:11 +05302781 /* ---- link change? --- */
2782 if (test_and_clear_bit(DPC_LINK_CHANGED, &ha->dpc_flags)) {
2783 if (!test_bit(AF_LINK_UP, &ha->flags)) {
2784 /* ---- link down? --- */
Vikas Chaudhary2d7924e2011-03-21 03:34:33 -07002785 qla4xxx_mark_all_devices_missing(ha);
Vikas Chaudhary065aa1b2010-04-28 11:38:11 +05302786 } else {
2787 /* ---- link up? --- *
2788 * F/W will auto login to all devices ONLY ONCE after
2789 * link up during driver initialization and runtime
2790 * fatal error recovery. Therefore, the driver must
2791 * manually relogin to devices when recovering from
2792 * connection failures, logouts, expired KATO, etc. */
Mike Christie13483732011-12-01 21:38:41 -06002793 if (test_and_clear_bit(AF_BUILD_DDB_LIST, &ha->flags)) {
2794 qla4xxx_build_ddb_list(ha, ha->is_reset);
2795 iscsi_host_for_each_session(ha->host,
2796 qla4xxx_login_flash_ddb);
2797 } else
2798 qla4xxx_relogin_all_devices(ha);
Vikas Chaudhary065aa1b2010-04-28 11:38:11 +05302799 }
2800 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07002801}
2802
2803/**
2804 * qla4xxx_free_adapter - release the adapter
2805 * @ha: pointer to adapter structure
2806 **/
2807static void qla4xxx_free_adapter(struct scsi_qla_host *ha)
2808{
Sarang Radke8a288962011-12-06 02:34:10 -08002809 qla4xxx_abort_active_cmds(ha, DID_NO_CONNECT << 16);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002810
2811 if (test_bit(AF_INTERRUPTS_ON, &ha->flags)) {
2812 /* Turn-off interrupts on the card. */
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302813 ha->isp_ops->disable_intrs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002814 }
2815
David Somayajuluafaf5a22006-09-19 10:28:00 -07002816 /* Remove timer thread, if present */
2817 if (ha->timer_active)
2818 qla4xxx_stop_timer(ha);
2819
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302820 /* Kill the kernel thread for this host */
2821 if (ha->dpc_thread)
2822 destroy_workqueue(ha->dpc_thread);
2823
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002824 /* Kill the kernel thread for this host */
2825 if (ha->task_wq)
2826 destroy_workqueue(ha->task_wq);
2827
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302828 /* Put firmware in known state */
2829 ha->isp_ops->reset_firmware(ha);
2830
2831 if (is_qla8022(ha)) {
2832 qla4_8xxx_idc_lock(ha);
2833 qla4_8xxx_clear_drv_active(ha);
2834 qla4_8xxx_idc_unlock(ha);
2835 }
2836
David Somayajuluafaf5a22006-09-19 10:28:00 -07002837 /* Detach interrupts */
2838 if (test_and_clear_bit(AF_IRQ_ATTACHED, &ha->flags))
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302839 qla4xxx_free_irqs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002840
David C Somayajulubee4fe82007-05-23 18:03:32 -07002841 /* free extra memory */
2842 qla4xxx_mem_free(ha);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302843}
David C Somayajulubee4fe82007-05-23 18:03:32 -07002844
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302845int qla4_8xxx_iospace_config(struct scsi_qla_host *ha)
2846{
2847 int status = 0;
2848 uint8_t revision_id;
2849 unsigned long mem_base, mem_len, db_base, db_len;
2850 struct pci_dev *pdev = ha->pdev;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002851
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302852 status = pci_request_regions(pdev, DRIVER_NAME);
2853 if (status) {
2854 printk(KERN_WARNING
2855 "scsi(%ld) Failed to reserve PIO regions (%s) "
2856 "status=%d\n", ha->host_no, pci_name(pdev), status);
2857 goto iospace_error_exit;
2858 }
2859
2860 pci_read_config_byte(pdev, PCI_REVISION_ID, &revision_id);
2861 DEBUG2(printk(KERN_INFO "%s: revision-id=%d\n",
2862 __func__, revision_id));
2863 ha->revision_id = revision_id;
2864
2865 /* remap phys address */
2866 mem_base = pci_resource_start(pdev, 0); /* 0 is for BAR 0 */
2867 mem_len = pci_resource_len(pdev, 0);
2868 DEBUG2(printk(KERN_INFO "%s: ioremap from %lx a size of %lx\n",
2869 __func__, mem_base, mem_len));
2870
2871 /* mapping of pcibase pointer */
2872 ha->nx_pcibase = (unsigned long)ioremap(mem_base, mem_len);
2873 if (!ha->nx_pcibase) {
2874 printk(KERN_ERR
2875 "cannot remap MMIO (%s), aborting\n", pci_name(pdev));
2876 pci_release_regions(ha->pdev);
2877 goto iospace_error_exit;
2878 }
2879
2880 /* Mapping of IO base pointer, door bell read and write pointer */
2881
2882 /* mapping of IO base pointer */
2883 ha->qla4_8xxx_reg =
2884 (struct device_reg_82xx __iomem *)((uint8_t *)ha->nx_pcibase +
2885 0xbc000 + (ha->pdev->devfn << 11));
2886
2887 db_base = pci_resource_start(pdev, 4); /* doorbell is on bar 4 */
2888 db_len = pci_resource_len(pdev, 4);
2889
Shyam Sundar2657c802010-10-06 22:50:29 -07002890 ha->nx_db_wr_ptr = (ha->pdev->devfn == 4 ? QLA82XX_CAM_RAM_DB1 :
2891 QLA82XX_CAM_RAM_DB2);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302892
Shyam Sundar2657c802010-10-06 22:50:29 -07002893 return 0;
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302894iospace_error_exit:
2895 return -ENOMEM;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002896}
2897
2898/***
2899 * qla4xxx_iospace_config - maps registers
2900 * @ha: pointer to adapter structure
2901 *
2902 * This routines maps HBA's registers from the pci address space
2903 * into the kernel virtual address space for memory mapped i/o.
2904 **/
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302905int qla4xxx_iospace_config(struct scsi_qla_host *ha)
David Somayajuluafaf5a22006-09-19 10:28:00 -07002906{
2907 unsigned long pio, pio_len, pio_flags;
2908 unsigned long mmio, mmio_len, mmio_flags;
2909
2910 pio = pci_resource_start(ha->pdev, 0);
2911 pio_len = pci_resource_len(ha->pdev, 0);
2912 pio_flags = pci_resource_flags(ha->pdev, 0);
2913 if (pio_flags & IORESOURCE_IO) {
2914 if (pio_len < MIN_IOBASE_LEN) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05302915 ql4_printk(KERN_WARNING, ha,
David Somayajuluafaf5a22006-09-19 10:28:00 -07002916 "Invalid PCI I/O region size\n");
2917 pio = 0;
2918 }
2919 } else {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05302920 ql4_printk(KERN_WARNING, ha, "region #0 not a PIO resource\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07002921 pio = 0;
2922 }
2923
2924 /* Use MMIO operations for all accesses. */
2925 mmio = pci_resource_start(ha->pdev, 1);
2926 mmio_len = pci_resource_len(ha->pdev, 1);
2927 mmio_flags = pci_resource_flags(ha->pdev, 1);
2928
2929 if (!(mmio_flags & IORESOURCE_MEM)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05302930 ql4_printk(KERN_ERR, ha,
2931 "region #0 not an MMIO resource, aborting\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07002932
2933 goto iospace_error_exit;
2934 }
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05302935
David Somayajuluafaf5a22006-09-19 10:28:00 -07002936 if (mmio_len < MIN_IOBASE_LEN) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05302937 ql4_printk(KERN_ERR, ha,
2938 "Invalid PCI mem region size, aborting\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07002939 goto iospace_error_exit;
2940 }
2941
2942 if (pci_request_regions(ha->pdev, DRIVER_NAME)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05302943 ql4_printk(KERN_WARNING, ha,
2944 "Failed to reserve PIO/MMIO regions\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07002945
2946 goto iospace_error_exit;
2947 }
2948
2949 ha->pio_address = pio;
2950 ha->pio_length = pio_len;
2951 ha->reg = ioremap(mmio, MIN_IOBASE_LEN);
2952 if (!ha->reg) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05302953 ql4_printk(KERN_ERR, ha,
2954 "cannot remap MMIO, aborting\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07002955
2956 goto iospace_error_exit;
2957 }
2958
2959 return 0;
2960
2961iospace_error_exit:
2962 return -ENOMEM;
2963}
2964
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05302965static struct isp_operations qla4xxx_isp_ops = {
2966 .iospace_config = qla4xxx_iospace_config,
2967 .pci_config = qla4xxx_pci_config,
2968 .disable_intrs = qla4xxx_disable_intrs,
2969 .enable_intrs = qla4xxx_enable_intrs,
2970 .start_firmware = qla4xxx_start_firmware,
2971 .intr_handler = qla4xxx_intr_handler,
2972 .interrupt_service_routine = qla4xxx_interrupt_service_routine,
2973 .reset_chip = qla4xxx_soft_reset,
2974 .reset_firmware = qla4xxx_hw_reset,
2975 .queue_iocb = qla4xxx_queue_iocb,
2976 .complete_iocb = qla4xxx_complete_iocb,
2977 .rd_shdw_req_q_out = qla4xxx_rd_shdw_req_q_out,
2978 .rd_shdw_rsp_q_in = qla4xxx_rd_shdw_rsp_q_in,
2979 .get_sys_info = qla4xxx_get_sys_info,
2980};
2981
2982static struct isp_operations qla4_8xxx_isp_ops = {
2983 .iospace_config = qla4_8xxx_iospace_config,
2984 .pci_config = qla4_8xxx_pci_config,
2985 .disable_intrs = qla4_8xxx_disable_intrs,
2986 .enable_intrs = qla4_8xxx_enable_intrs,
2987 .start_firmware = qla4_8xxx_load_risc,
2988 .intr_handler = qla4_8xxx_intr_handler,
2989 .interrupt_service_routine = qla4_8xxx_interrupt_service_routine,
2990 .reset_chip = qla4_8xxx_isp_reset,
2991 .reset_firmware = qla4_8xxx_stop_firmware,
2992 .queue_iocb = qla4_8xxx_queue_iocb,
2993 .complete_iocb = qla4_8xxx_complete_iocb,
2994 .rd_shdw_req_q_out = qla4_8xxx_rd_shdw_req_q_out,
2995 .rd_shdw_rsp_q_in = qla4_8xxx_rd_shdw_rsp_q_in,
2996 .get_sys_info = qla4_8xxx_get_sys_info,
2997};
2998
2999uint16_t qla4xxx_rd_shdw_req_q_out(struct scsi_qla_host *ha)
3000{
3001 return (uint16_t)le32_to_cpu(ha->shadow_regs->req_q_out);
3002}
3003
3004uint16_t qla4_8xxx_rd_shdw_req_q_out(struct scsi_qla_host *ha)
3005{
3006 return (uint16_t)le32_to_cpu(readl(&ha->qla4_8xxx_reg->req_q_out));
3007}
3008
3009uint16_t qla4xxx_rd_shdw_rsp_q_in(struct scsi_qla_host *ha)
3010{
3011 return (uint16_t)le32_to_cpu(ha->shadow_regs->rsp_q_in);
3012}
3013
3014uint16_t qla4_8xxx_rd_shdw_rsp_q_in(struct scsi_qla_host *ha)
3015{
3016 return (uint16_t)le32_to_cpu(readl(&ha->qla4_8xxx_reg->rsp_q_in));
3017}
3018
Manish Rangankar2a991c22011-07-25 13:48:55 -05003019static ssize_t qla4xxx_show_boot_eth_info(void *data, int type, char *buf)
3020{
3021 struct scsi_qla_host *ha = data;
3022 char *str = buf;
3023 int rc;
3024
3025 switch (type) {
3026 case ISCSI_BOOT_ETH_FLAGS:
3027 rc = sprintf(str, "%d\n", SYSFS_FLAG_FW_SEL_BOOT);
3028 break;
3029 case ISCSI_BOOT_ETH_INDEX:
3030 rc = sprintf(str, "0\n");
3031 break;
3032 case ISCSI_BOOT_ETH_MAC:
3033 rc = sysfs_format_mac(str, ha->my_mac,
3034 MAC_ADDR_LEN);
3035 break;
3036 default:
3037 rc = -ENOSYS;
3038 break;
3039 }
3040 return rc;
3041}
3042
3043static mode_t qla4xxx_eth_get_attr_visibility(void *data, int type)
3044{
3045 int rc;
3046
3047 switch (type) {
3048 case ISCSI_BOOT_ETH_FLAGS:
3049 case ISCSI_BOOT_ETH_MAC:
3050 case ISCSI_BOOT_ETH_INDEX:
3051 rc = S_IRUGO;
3052 break;
3053 default:
3054 rc = 0;
3055 break;
3056 }
3057 return rc;
3058}
3059
3060static ssize_t qla4xxx_show_boot_ini_info(void *data, int type, char *buf)
3061{
3062 struct scsi_qla_host *ha = data;
3063 char *str = buf;
3064 int rc;
3065
3066 switch (type) {
3067 case ISCSI_BOOT_INI_INITIATOR_NAME:
3068 rc = sprintf(str, "%s\n", ha->name_string);
3069 break;
3070 default:
3071 rc = -ENOSYS;
3072 break;
3073 }
3074 return rc;
3075}
3076
3077static mode_t qla4xxx_ini_get_attr_visibility(void *data, int type)
3078{
3079 int rc;
3080
3081 switch (type) {
3082 case ISCSI_BOOT_INI_INITIATOR_NAME:
3083 rc = S_IRUGO;
3084 break;
3085 default:
3086 rc = 0;
3087 break;
3088 }
3089 return rc;
3090}
3091
3092static ssize_t
3093qla4xxx_show_boot_tgt_info(struct ql4_boot_session_info *boot_sess, int type,
3094 char *buf)
3095{
3096 struct ql4_conn_info *boot_conn = &boot_sess->conn_list[0];
3097 char *str = buf;
3098 int rc;
3099
3100 switch (type) {
3101 case ISCSI_BOOT_TGT_NAME:
3102 rc = sprintf(buf, "%s\n", (char *)&boot_sess->target_name);
3103 break;
3104 case ISCSI_BOOT_TGT_IP_ADDR:
3105 if (boot_sess->conn_list[0].dest_ipaddr.ip_type == 0x1)
3106 rc = sprintf(buf, "%pI4\n",
3107 &boot_conn->dest_ipaddr.ip_address);
3108 else
3109 rc = sprintf(str, "%pI6\n",
3110 &boot_conn->dest_ipaddr.ip_address);
3111 break;
3112 case ISCSI_BOOT_TGT_PORT:
3113 rc = sprintf(str, "%d\n", boot_conn->dest_port);
3114 break;
3115 case ISCSI_BOOT_TGT_CHAP_NAME:
3116 rc = sprintf(str, "%.*s\n",
3117 boot_conn->chap.target_chap_name_length,
3118 (char *)&boot_conn->chap.target_chap_name);
3119 break;
3120 case ISCSI_BOOT_TGT_CHAP_SECRET:
3121 rc = sprintf(str, "%.*s\n",
3122 boot_conn->chap.target_secret_length,
3123 (char *)&boot_conn->chap.target_secret);
3124 break;
3125 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
3126 rc = sprintf(str, "%.*s\n",
3127 boot_conn->chap.intr_chap_name_length,
3128 (char *)&boot_conn->chap.intr_chap_name);
3129 break;
3130 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
3131 rc = sprintf(str, "%.*s\n",
3132 boot_conn->chap.intr_secret_length,
3133 (char *)&boot_conn->chap.intr_secret);
3134 break;
3135 case ISCSI_BOOT_TGT_FLAGS:
3136 rc = sprintf(str, "%d\n", SYSFS_FLAG_FW_SEL_BOOT);
3137 break;
3138 case ISCSI_BOOT_TGT_NIC_ASSOC:
3139 rc = sprintf(str, "0\n");
3140 break;
3141 default:
3142 rc = -ENOSYS;
3143 break;
3144 }
3145 return rc;
3146}
3147
3148static ssize_t qla4xxx_show_boot_tgt_pri_info(void *data, int type, char *buf)
3149{
3150 struct scsi_qla_host *ha = data;
3151 struct ql4_boot_session_info *boot_sess = &(ha->boot_tgt.boot_pri_sess);
3152
3153 return qla4xxx_show_boot_tgt_info(boot_sess, type, buf);
3154}
3155
3156static ssize_t qla4xxx_show_boot_tgt_sec_info(void *data, int type, char *buf)
3157{
3158 struct scsi_qla_host *ha = data;
3159 struct ql4_boot_session_info *boot_sess = &(ha->boot_tgt.boot_sec_sess);
3160
3161 return qla4xxx_show_boot_tgt_info(boot_sess, type, buf);
3162}
3163
3164static mode_t qla4xxx_tgt_get_attr_visibility(void *data, int type)
3165{
3166 int rc;
3167
3168 switch (type) {
3169 case ISCSI_BOOT_TGT_NAME:
3170 case ISCSI_BOOT_TGT_IP_ADDR:
3171 case ISCSI_BOOT_TGT_PORT:
3172 case ISCSI_BOOT_TGT_CHAP_NAME:
3173 case ISCSI_BOOT_TGT_CHAP_SECRET:
3174 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
3175 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
3176 case ISCSI_BOOT_TGT_NIC_ASSOC:
3177 case ISCSI_BOOT_TGT_FLAGS:
3178 rc = S_IRUGO;
3179 break;
3180 default:
3181 rc = 0;
3182 break;
3183 }
3184 return rc;
3185}
3186
3187static void qla4xxx_boot_release(void *data)
3188{
3189 struct scsi_qla_host *ha = data;
3190
3191 scsi_host_put(ha->host);
3192}
3193
3194static int get_fw_boot_info(struct scsi_qla_host *ha, uint16_t ddb_index[])
3195{
3196 dma_addr_t buf_dma;
3197 uint32_t addr, pri_addr, sec_addr;
3198 uint32_t offset;
3199 uint16_t func_num;
3200 uint8_t val;
3201 uint8_t *buf = NULL;
3202 size_t size = 13 * sizeof(uint8_t);
3203 int ret = QLA_SUCCESS;
3204
3205 func_num = PCI_FUNC(ha->pdev->devfn);
3206
Manish Rangankar0d5b36b2011-10-07 16:55:51 -07003207 ql4_printk(KERN_INFO, ha, "%s: Get FW boot info for 0x%x func %d\n",
3208 __func__, ha->pdev->device, func_num);
Manish Rangankar2a991c22011-07-25 13:48:55 -05003209
Manish Rangankar0d5b36b2011-10-07 16:55:51 -07003210 if (is_qla40XX(ha)) {
Manish Rangankar2a991c22011-07-25 13:48:55 -05003211 if (func_num == 1) {
3212 addr = NVRAM_PORT0_BOOT_MODE;
3213 pri_addr = NVRAM_PORT0_BOOT_PRI_TGT;
3214 sec_addr = NVRAM_PORT0_BOOT_SEC_TGT;
3215 } else if (func_num == 3) {
3216 addr = NVRAM_PORT1_BOOT_MODE;
3217 pri_addr = NVRAM_PORT1_BOOT_PRI_TGT;
3218 sec_addr = NVRAM_PORT1_BOOT_SEC_TGT;
3219 } else {
3220 ret = QLA_ERROR;
3221 goto exit_boot_info;
3222 }
3223
3224 /* Check Boot Mode */
3225 val = rd_nvram_byte(ha, addr);
3226 if (!(val & 0x07)) {
3227 DEBUG2(ql4_printk(KERN_ERR, ha,
3228 "%s: Failed Boot options : 0x%x\n",
3229 __func__, val));
3230 ret = QLA_ERROR;
3231 goto exit_boot_info;
3232 }
3233
3234 /* get primary valid target index */
3235 val = rd_nvram_byte(ha, pri_addr);
3236 if (val & BIT_7)
3237 ddb_index[0] = (val & 0x7f);
Manish Rangankar2a991c22011-07-25 13:48:55 -05003238
3239 /* get secondary valid target index */
3240 val = rd_nvram_byte(ha, sec_addr);
3241 if (val & BIT_7)
3242 ddb_index[1] = (val & 0x7f);
Manish Rangankar2a991c22011-07-25 13:48:55 -05003243
3244 } else if (is_qla8022(ha)) {
3245 buf = dma_alloc_coherent(&ha->pdev->dev, size,
3246 &buf_dma, GFP_KERNEL);
3247 if (!buf) {
3248 DEBUG2(ql4_printk(KERN_ERR, ha,
3249 "%s: Unable to allocate dma buffer\n",
3250 __func__));
3251 ret = QLA_ERROR;
3252 goto exit_boot_info;
3253 }
3254
3255 if (ha->port_num == 0)
3256 offset = BOOT_PARAM_OFFSET_PORT0;
3257 else if (ha->port_num == 1)
3258 offset = BOOT_PARAM_OFFSET_PORT1;
3259 else {
3260 ret = QLA_ERROR;
3261 goto exit_boot_info_free;
3262 }
3263 addr = FLASH_RAW_ACCESS_ADDR + (ha->hw.flt_iscsi_param * 4) +
3264 offset;
3265 if (qla4xxx_get_flash(ha, buf_dma, addr,
3266 13 * sizeof(uint8_t)) != QLA_SUCCESS) {
3267 DEBUG2(ql4_printk(KERN_ERR, ha, "scsi%ld: %s: Get Flash"
3268 "failed\n", ha->host_no, __func__));
3269 ret = QLA_ERROR;
3270 goto exit_boot_info_free;
3271 }
3272 /* Check Boot Mode */
3273 if (!(buf[1] & 0x07)) {
3274 DEBUG2(ql4_printk(KERN_INFO, ha,
3275 "Failed: Boot options : 0x%x\n",
3276 buf[1]));
3277 ret = QLA_ERROR;
3278 goto exit_boot_info_free;
3279 }
3280
3281 /* get primary valid target index */
3282 if (buf[2] & BIT_7)
3283 ddb_index[0] = buf[2] & 0x7f;
Manish Rangankar2a991c22011-07-25 13:48:55 -05003284
3285 /* get secondary valid target index */
3286 if (buf[11] & BIT_7)
3287 ddb_index[1] = buf[11] & 0x7f;
Manish Rangankar2a991c22011-07-25 13:48:55 -05003288 } else {
3289 ret = QLA_ERROR;
3290 goto exit_boot_info;
3291 }
3292
3293 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Primary target ID %d, Secondary"
3294 " target ID %d\n", __func__, ddb_index[0],
3295 ddb_index[1]));
3296
Mike Christie13483732011-12-01 21:38:41 -06003297 ha->pri_ddb_idx = ddb_index[0];
3298 ha->sec_ddb_idx = ddb_index[1];
3299
Manish Rangankar2a991c22011-07-25 13:48:55 -05003300exit_boot_info_free:
3301 dma_free_coherent(&ha->pdev->dev, size, buf, buf_dma);
3302exit_boot_info:
3303 return ret;
3304}
3305
Lalit Chandivade28deb452011-10-07 16:55:44 -07003306/**
3307 * qla4xxx_get_bidi_chap - Get a BIDI CHAP user and password
3308 * @ha: pointer to adapter structure
3309 * @username: CHAP username to be returned
3310 * @password: CHAP password to be returned
3311 *
3312 * If a boot entry has BIDI CHAP enabled then we need to set the BIDI CHAP
3313 * user and password in the sysfs entry in /sys/firmware/iscsi_boot#/.
3314 * So from the CHAP cache find the first BIDI CHAP entry and set it
3315 * to the boot record in sysfs.
3316 **/
3317static int qla4xxx_get_bidi_chap(struct scsi_qla_host *ha, char *username,
3318 char *password)
3319{
3320 int i, ret = -EINVAL;
3321 int max_chap_entries = 0;
3322 struct ql4_chap_table *chap_table;
3323
3324 if (is_qla8022(ha))
3325 max_chap_entries = (ha->hw.flt_chap_size / 2) /
3326 sizeof(struct ql4_chap_table);
3327 else
3328 max_chap_entries = MAX_CHAP_ENTRIES_40XX;
3329
3330 if (!ha->chap_list) {
3331 ql4_printk(KERN_ERR, ha, "Do not have CHAP table cache\n");
3332 return ret;
3333 }
3334
3335 mutex_lock(&ha->chap_sem);
3336 for (i = 0; i < max_chap_entries; i++) {
3337 chap_table = (struct ql4_chap_table *)ha->chap_list + i;
3338 if (chap_table->cookie !=
3339 __constant_cpu_to_le16(CHAP_VALID_COOKIE)) {
3340 continue;
3341 }
3342
3343 if (chap_table->flags & BIT_7) /* local */
3344 continue;
3345
3346 if (!(chap_table->flags & BIT_6)) /* Not BIDI */
3347 continue;
3348
3349 strncpy(password, chap_table->secret, QL4_CHAP_MAX_SECRET_LEN);
3350 strncpy(username, chap_table->name, QL4_CHAP_MAX_NAME_LEN);
3351 ret = 0;
3352 break;
3353 }
3354 mutex_unlock(&ha->chap_sem);
3355
3356 return ret;
3357}
3358
3359
Manish Rangankar2a991c22011-07-25 13:48:55 -05003360static int qla4xxx_get_boot_target(struct scsi_qla_host *ha,
3361 struct ql4_boot_session_info *boot_sess,
3362 uint16_t ddb_index)
3363{
3364 struct ql4_conn_info *boot_conn = &boot_sess->conn_list[0];
3365 struct dev_db_entry *fw_ddb_entry;
3366 dma_addr_t fw_ddb_entry_dma;
3367 uint16_t idx;
3368 uint16_t options;
3369 int ret = QLA_SUCCESS;
3370
3371 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3372 &fw_ddb_entry_dma, GFP_KERNEL);
3373 if (!fw_ddb_entry) {
3374 DEBUG2(ql4_printk(KERN_ERR, ha,
3375 "%s: Unable to allocate dma buffer.\n",
3376 __func__));
3377 ret = QLA_ERROR;
3378 return ret;
3379 }
3380
3381 if (qla4xxx_bootdb_by_index(ha, fw_ddb_entry,
3382 fw_ddb_entry_dma, ddb_index)) {
3383 DEBUG2(ql4_printk(KERN_ERR, ha,
3384 "%s: Flash DDB read Failed\n", __func__));
3385 ret = QLA_ERROR;
3386 goto exit_boot_target;
3387 }
3388
3389 /* Update target name and IP from DDB */
3390 memcpy(boot_sess->target_name, fw_ddb_entry->iscsi_name,
3391 min(sizeof(boot_sess->target_name),
3392 sizeof(fw_ddb_entry->iscsi_name)));
3393
3394 options = le16_to_cpu(fw_ddb_entry->options);
3395 if (options & DDB_OPT_IPV6_DEVICE) {
3396 memcpy(&boot_conn->dest_ipaddr.ip_address,
3397 &fw_ddb_entry->ip_addr[0], IPv6_ADDR_LEN);
3398 } else {
3399 boot_conn->dest_ipaddr.ip_type = 0x1;
3400 memcpy(&boot_conn->dest_ipaddr.ip_address,
3401 &fw_ddb_entry->ip_addr[0], IP_ADDR_LEN);
3402 }
3403
3404 boot_conn->dest_port = le16_to_cpu(fw_ddb_entry->port);
3405
3406 /* update chap information */
3407 idx = __le16_to_cpu(fw_ddb_entry->chap_tbl_idx);
3408
3409 if (BIT_7 & le16_to_cpu(fw_ddb_entry->iscsi_options)) {
3410
3411 DEBUG2(ql4_printk(KERN_INFO, ha, "Setting chap\n"));
3412
3413 ret = qla4xxx_get_chap(ha, (char *)&boot_conn->chap.
3414 target_chap_name,
3415 (char *)&boot_conn->chap.target_secret,
3416 idx);
3417 if (ret) {
3418 ql4_printk(KERN_ERR, ha, "Failed to set chap\n");
3419 ret = QLA_ERROR;
3420 goto exit_boot_target;
3421 }
3422
3423 boot_conn->chap.target_chap_name_length = QL4_CHAP_MAX_NAME_LEN;
3424 boot_conn->chap.target_secret_length = QL4_CHAP_MAX_SECRET_LEN;
3425 }
3426
3427 if (BIT_4 & le16_to_cpu(fw_ddb_entry->iscsi_options)) {
3428
3429 DEBUG2(ql4_printk(KERN_INFO, ha, "Setting BIDI chap\n"));
3430
Lalit Chandivade28deb452011-10-07 16:55:44 -07003431 ret = qla4xxx_get_bidi_chap(ha,
3432 (char *)&boot_conn->chap.intr_chap_name,
3433 (char *)&boot_conn->chap.intr_secret);
3434
Manish Rangankar2a991c22011-07-25 13:48:55 -05003435 if (ret) {
3436 ql4_printk(KERN_ERR, ha, "Failed to set BIDI chap\n");
3437 ret = QLA_ERROR;
3438 goto exit_boot_target;
3439 }
3440
3441 boot_conn->chap.intr_chap_name_length = QL4_CHAP_MAX_NAME_LEN;
3442 boot_conn->chap.intr_secret_length = QL4_CHAP_MAX_SECRET_LEN;
3443 }
3444
3445exit_boot_target:
3446 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3447 fw_ddb_entry, fw_ddb_entry_dma);
3448 return ret;
3449}
3450
3451static int qla4xxx_get_boot_info(struct scsi_qla_host *ha)
3452{
3453 uint16_t ddb_index[2];
Lalit Chandivade8de5b952011-10-07 16:55:43 -07003454 int ret = QLA_ERROR;
3455 int rval;
Manish Rangankar2a991c22011-07-25 13:48:55 -05003456
3457 memset(ddb_index, 0, sizeof(ddb_index));
Lalit Chandivade8de5b952011-10-07 16:55:43 -07003458 ddb_index[0] = 0xffff;
3459 ddb_index[1] = 0xffff;
Manish Rangankar2a991c22011-07-25 13:48:55 -05003460 ret = get_fw_boot_info(ha, ddb_index);
3461 if (ret != QLA_SUCCESS) {
3462 DEBUG2(ql4_printk(KERN_ERR, ha,
3463 "%s: Failed to set boot info.\n", __func__));
3464 return ret;
3465 }
3466
Mike Christie13483732011-12-01 21:38:41 -06003467 if (ql4xdisablesysfsboot)
3468 return QLA_SUCCESS;
3469
Lalit Chandivade8de5b952011-10-07 16:55:43 -07003470 if (ddb_index[0] == 0xffff)
3471 goto sec_target;
3472
3473 rval = qla4xxx_get_boot_target(ha, &(ha->boot_tgt.boot_pri_sess),
Manish Rangankar2a991c22011-07-25 13:48:55 -05003474 ddb_index[0]);
Lalit Chandivade8de5b952011-10-07 16:55:43 -07003475 if (rval != QLA_SUCCESS) {
Manish Rangankar2a991c22011-07-25 13:48:55 -05003476 DEBUG2(ql4_printk(KERN_ERR, ha, "%s: Failed to get "
3477 "primary target\n", __func__));
Lalit Chandivade8de5b952011-10-07 16:55:43 -07003478 } else
3479 ret = QLA_SUCCESS;
Manish Rangankar2a991c22011-07-25 13:48:55 -05003480
Lalit Chandivade8de5b952011-10-07 16:55:43 -07003481sec_target:
3482 if (ddb_index[1] == 0xffff)
3483 goto exit_get_boot_info;
3484
3485 rval = qla4xxx_get_boot_target(ha, &(ha->boot_tgt.boot_sec_sess),
Manish Rangankar2a991c22011-07-25 13:48:55 -05003486 ddb_index[1]);
Lalit Chandivade8de5b952011-10-07 16:55:43 -07003487 if (rval != QLA_SUCCESS) {
Manish Rangankar2a991c22011-07-25 13:48:55 -05003488 DEBUG2(ql4_printk(KERN_ERR, ha, "%s: Failed to get "
3489 "secondary target\n", __func__));
Lalit Chandivade8de5b952011-10-07 16:55:43 -07003490 } else
3491 ret = QLA_SUCCESS;
3492
3493exit_get_boot_info:
Manish Rangankar2a991c22011-07-25 13:48:55 -05003494 return ret;
3495}
3496
3497static int qla4xxx_setup_boot_info(struct scsi_qla_host *ha)
3498{
3499 struct iscsi_boot_kobj *boot_kobj;
3500
3501 if (qla4xxx_get_boot_info(ha) != QLA_SUCCESS)
Mike Christie13483732011-12-01 21:38:41 -06003502 return QLA_ERROR;
3503
3504 if (ql4xdisablesysfsboot) {
3505 ql4_printk(KERN_INFO, ha,
3506 "%s: syfsboot disabled - driver will trigger login"
3507 "and publish session for discovery .\n", __func__);
3508 return QLA_SUCCESS;
3509 }
3510
Manish Rangankar2a991c22011-07-25 13:48:55 -05003511
3512 ha->boot_kset = iscsi_boot_create_host_kset(ha->host->host_no);
3513 if (!ha->boot_kset)
3514 goto kset_free;
3515
3516 if (!scsi_host_get(ha->host))
3517 goto kset_free;
3518 boot_kobj = iscsi_boot_create_target(ha->boot_kset, 0, ha,
3519 qla4xxx_show_boot_tgt_pri_info,
3520 qla4xxx_tgt_get_attr_visibility,
3521 qla4xxx_boot_release);
3522 if (!boot_kobj)
3523 goto put_host;
3524
3525 if (!scsi_host_get(ha->host))
3526 goto kset_free;
3527 boot_kobj = iscsi_boot_create_target(ha->boot_kset, 1, ha,
3528 qla4xxx_show_boot_tgt_sec_info,
3529 qla4xxx_tgt_get_attr_visibility,
3530 qla4xxx_boot_release);
3531 if (!boot_kobj)
3532 goto put_host;
3533
3534 if (!scsi_host_get(ha->host))
3535 goto kset_free;
3536 boot_kobj = iscsi_boot_create_initiator(ha->boot_kset, 0, ha,
3537 qla4xxx_show_boot_ini_info,
3538 qla4xxx_ini_get_attr_visibility,
3539 qla4xxx_boot_release);
3540 if (!boot_kobj)
3541 goto put_host;
3542
3543 if (!scsi_host_get(ha->host))
3544 goto kset_free;
3545 boot_kobj = iscsi_boot_create_ethernet(ha->boot_kset, 0, ha,
3546 qla4xxx_show_boot_eth_info,
3547 qla4xxx_eth_get_attr_visibility,
3548 qla4xxx_boot_release);
3549 if (!boot_kobj)
3550 goto put_host;
3551
Mike Christie13483732011-12-01 21:38:41 -06003552 return QLA_SUCCESS;
Manish Rangankar2a991c22011-07-25 13:48:55 -05003553
3554put_host:
3555 scsi_host_put(ha->host);
3556kset_free:
3557 iscsi_boot_destroy_kset(ha->boot_kset);
3558 return -ENOMEM;
3559}
3560
Lalit Chandivade45494152011-10-07 16:55:42 -07003561
3562/**
3563 * qla4xxx_create chap_list - Create CHAP list from FLASH
3564 * @ha: pointer to adapter structure
3565 *
3566 * Read flash and make a list of CHAP entries, during login when a CHAP entry
3567 * is received, it will be checked in this list. If entry exist then the CHAP
3568 * entry index is set in the DDB. If CHAP entry does not exist in this list
3569 * then a new entry is added in FLASH in CHAP table and the index obtained is
3570 * used in the DDB.
3571 **/
3572static void qla4xxx_create_chap_list(struct scsi_qla_host *ha)
3573{
3574 int rval = 0;
3575 uint8_t *chap_flash_data = NULL;
3576 uint32_t offset;
3577 dma_addr_t chap_dma;
3578 uint32_t chap_size = 0;
3579
3580 if (is_qla40XX(ha))
3581 chap_size = MAX_CHAP_ENTRIES_40XX *
3582 sizeof(struct ql4_chap_table);
3583 else /* Single region contains CHAP info for both
3584 * ports which is divided into half for each port.
3585 */
3586 chap_size = ha->hw.flt_chap_size / 2;
3587
3588 chap_flash_data = dma_alloc_coherent(&ha->pdev->dev, chap_size,
3589 &chap_dma, GFP_KERNEL);
3590 if (!chap_flash_data) {
3591 ql4_printk(KERN_ERR, ha, "No memory for chap_flash_data\n");
3592 return;
3593 }
3594 if (is_qla40XX(ha))
3595 offset = FLASH_CHAP_OFFSET;
3596 else {
3597 offset = FLASH_RAW_ACCESS_ADDR + (ha->hw.flt_region_chap << 2);
3598 if (ha->port_num == 1)
3599 offset += chap_size;
3600 }
3601
3602 rval = qla4xxx_get_flash(ha, chap_dma, offset, chap_size);
3603 if (rval != QLA_SUCCESS)
3604 goto exit_chap_list;
3605
3606 if (ha->chap_list == NULL)
3607 ha->chap_list = vmalloc(chap_size);
3608 if (ha->chap_list == NULL) {
3609 ql4_printk(KERN_ERR, ha, "No memory for ha->chap_list\n");
3610 goto exit_chap_list;
3611 }
3612
3613 memcpy(ha->chap_list, chap_flash_data, chap_size);
3614
3615exit_chap_list:
3616 dma_free_coherent(&ha->pdev->dev, chap_size,
3617 chap_flash_data, chap_dma);
Lalit Chandivade45494152011-10-07 16:55:42 -07003618}
3619
Mike Christie13483732011-12-01 21:38:41 -06003620static void qla4xxx_get_param_ddb(struct ddb_entry *ddb_entry,
3621 struct ql4_tuple_ddb *tddb)
3622{
3623 struct scsi_qla_host *ha;
3624 struct iscsi_cls_session *cls_sess;
3625 struct iscsi_cls_conn *cls_conn;
3626 struct iscsi_session *sess;
3627 struct iscsi_conn *conn;
3628
3629 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
3630 ha = ddb_entry->ha;
3631 cls_sess = ddb_entry->sess;
3632 sess = cls_sess->dd_data;
3633 cls_conn = ddb_entry->conn;
3634 conn = cls_conn->dd_data;
3635
3636 tddb->tpgt = sess->tpgt;
3637 tddb->port = conn->persistent_port;
3638 strncpy(tddb->iscsi_name, sess->targetname, ISCSI_NAME_SIZE);
3639 strncpy(tddb->ip_addr, conn->persistent_address, DDB_IPADDR_LEN);
3640}
3641
3642static void qla4xxx_convert_param_ddb(struct dev_db_entry *fw_ddb_entry,
3643 struct ql4_tuple_ddb *tddb)
3644{
3645 uint16_t options = 0;
3646
3647 tddb->tpgt = le32_to_cpu(fw_ddb_entry->tgt_portal_grp);
3648 memcpy(&tddb->iscsi_name[0], &fw_ddb_entry->iscsi_name[0],
3649 min(sizeof(tddb->iscsi_name), sizeof(fw_ddb_entry->iscsi_name)));
3650
3651 options = le16_to_cpu(fw_ddb_entry->options);
3652 if (options & DDB_OPT_IPV6_DEVICE)
3653 sprintf(tddb->ip_addr, "%pI6", fw_ddb_entry->ip_addr);
3654 else
3655 sprintf(tddb->ip_addr, "%pI4", fw_ddb_entry->ip_addr);
3656
3657 tddb->port = le16_to_cpu(fw_ddb_entry->port);
3658}
3659
3660static int qla4xxx_compare_tuple_ddb(struct scsi_qla_host *ha,
3661 struct ql4_tuple_ddb *old_tddb,
3662 struct ql4_tuple_ddb *new_tddb)
3663{
3664 if (strcmp(old_tddb->iscsi_name, new_tddb->iscsi_name))
3665 return QLA_ERROR;
3666
3667 if (strcmp(old_tddb->ip_addr, new_tddb->ip_addr))
3668 return QLA_ERROR;
3669
3670 if (old_tddb->port != new_tddb->port)
3671 return QLA_ERROR;
3672
3673 DEBUG2(ql4_printk(KERN_INFO, ha,
3674 "Match Found, fw[%d,%d,%s,%s], [%d,%d,%s,%s]",
3675 old_tddb->port, old_tddb->tpgt, old_tddb->ip_addr,
3676 old_tddb->iscsi_name, new_tddb->port, new_tddb->tpgt,
3677 new_tddb->ip_addr, new_tddb->iscsi_name));
3678
3679 return QLA_SUCCESS;
3680}
3681
3682static int qla4xxx_is_session_exists(struct scsi_qla_host *ha,
3683 struct dev_db_entry *fw_ddb_entry)
3684{
3685 struct ddb_entry *ddb_entry;
3686 struct ql4_tuple_ddb *fw_tddb = NULL;
3687 struct ql4_tuple_ddb *tmp_tddb = NULL;
3688 int idx;
3689 int ret = QLA_ERROR;
3690
3691 fw_tddb = vzalloc(sizeof(*fw_tddb));
3692 if (!fw_tddb) {
3693 DEBUG2(ql4_printk(KERN_WARNING, ha,
3694 "Memory Allocation failed.\n"));
3695 ret = QLA_SUCCESS;
3696 goto exit_check;
3697 }
3698
3699 tmp_tddb = vzalloc(sizeof(*tmp_tddb));
3700 if (!tmp_tddb) {
3701 DEBUG2(ql4_printk(KERN_WARNING, ha,
3702 "Memory Allocation failed.\n"));
3703 ret = QLA_SUCCESS;
3704 goto exit_check;
3705 }
3706
3707 qla4xxx_convert_param_ddb(fw_ddb_entry, fw_tddb);
3708
3709 for (idx = 0; idx < MAX_DDB_ENTRIES; idx++) {
3710 ddb_entry = qla4xxx_lookup_ddb_by_fw_index(ha, idx);
3711 if (ddb_entry == NULL)
3712 continue;
3713
3714 qla4xxx_get_param_ddb(ddb_entry, tmp_tddb);
3715 if (!qla4xxx_compare_tuple_ddb(ha, fw_tddb, tmp_tddb)) {
3716 ret = QLA_SUCCESS; /* found */
3717 goto exit_check;
3718 }
3719 }
3720
3721exit_check:
3722 if (fw_tddb)
3723 vfree(fw_tddb);
3724 if (tmp_tddb)
3725 vfree(tmp_tddb);
3726 return ret;
3727}
3728
3729static int qla4xxx_is_flash_ddb_exists(struct scsi_qla_host *ha,
3730 struct list_head *list_nt,
3731 struct dev_db_entry *fw_ddb_entry)
3732{
3733 struct qla_ddb_index *nt_ddb_idx, *nt_ddb_idx_tmp;
3734 struct ql4_tuple_ddb *fw_tddb = NULL;
3735 struct ql4_tuple_ddb *tmp_tddb = NULL;
3736 int ret = QLA_ERROR;
3737
3738 fw_tddb = vzalloc(sizeof(*fw_tddb));
3739 if (!fw_tddb) {
3740 DEBUG2(ql4_printk(KERN_WARNING, ha,
3741 "Memory Allocation failed.\n"));
3742 ret = QLA_SUCCESS;
3743 goto exit_check;
3744 }
3745
3746 tmp_tddb = vzalloc(sizeof(*tmp_tddb));
3747 if (!tmp_tddb) {
3748 DEBUG2(ql4_printk(KERN_WARNING, ha,
3749 "Memory Allocation failed.\n"));
3750 ret = QLA_SUCCESS;
3751 goto exit_check;
3752 }
3753
3754 qla4xxx_convert_param_ddb(fw_ddb_entry, fw_tddb);
3755
3756 list_for_each_entry_safe(nt_ddb_idx, nt_ddb_idx_tmp, list_nt, list) {
3757 qla4xxx_convert_param_ddb(&nt_ddb_idx->fw_ddb, tmp_tddb);
3758 if (!qla4xxx_compare_tuple_ddb(ha, fw_tddb, tmp_tddb)) {
3759 ret = QLA_SUCCESS; /* found */
3760 goto exit_check;
3761 }
3762 }
3763
3764exit_check:
3765 if (fw_tddb)
3766 vfree(fw_tddb);
3767 if (tmp_tddb)
3768 vfree(tmp_tddb);
3769 return ret;
3770}
3771
3772static void qla4xxx_free_nt_list(struct list_head *list_nt)
3773{
3774 struct qla_ddb_index *nt_ddb_idx, *nt_ddb_idx_tmp;
3775
3776 /* Free up the normaltargets list */
3777 list_for_each_entry_safe(nt_ddb_idx, nt_ddb_idx_tmp, list_nt, list) {
3778 list_del_init(&nt_ddb_idx->list);
3779 vfree(nt_ddb_idx);
3780 }
3781
3782}
3783
3784static struct iscsi_endpoint *qla4xxx_get_ep_fwdb(struct scsi_qla_host *ha,
3785 struct dev_db_entry *fw_ddb_entry)
3786{
3787 struct iscsi_endpoint *ep;
3788 struct sockaddr_in *addr;
3789 struct sockaddr_in6 *addr6;
3790 struct sockaddr *dst_addr;
3791 char *ip;
3792
3793 /* TODO: need to destroy on unload iscsi_endpoint*/
3794 dst_addr = vmalloc(sizeof(*dst_addr));
3795 if (!dst_addr)
3796 return NULL;
3797
3798 if (fw_ddb_entry->options & DDB_OPT_IPV6_DEVICE) {
3799 dst_addr->sa_family = AF_INET6;
3800 addr6 = (struct sockaddr_in6 *)dst_addr;
3801 ip = (char *)&addr6->sin6_addr;
3802 memcpy(ip, fw_ddb_entry->ip_addr, IPv6_ADDR_LEN);
3803 addr6->sin6_port = htons(le16_to_cpu(fw_ddb_entry->port));
3804
3805 } else {
3806 dst_addr->sa_family = AF_INET;
3807 addr = (struct sockaddr_in *)dst_addr;
3808 ip = (char *)&addr->sin_addr;
3809 memcpy(ip, fw_ddb_entry->ip_addr, IP_ADDR_LEN);
3810 addr->sin_port = htons(le16_to_cpu(fw_ddb_entry->port));
3811 }
3812
3813 ep = qla4xxx_ep_connect(ha->host, dst_addr, 0);
3814 vfree(dst_addr);
3815 return ep;
3816}
3817
3818static int qla4xxx_verify_boot_idx(struct scsi_qla_host *ha, uint16_t idx)
3819{
3820 if (ql4xdisablesysfsboot)
3821 return QLA_SUCCESS;
3822 if (idx == ha->pri_ddb_idx || idx == ha->sec_ddb_idx)
3823 return QLA_ERROR;
3824 return QLA_SUCCESS;
3825}
3826
3827static void qla4xxx_setup_flash_ddb_entry(struct scsi_qla_host *ha,
3828 struct ddb_entry *ddb_entry)
3829{
3830 ddb_entry->ddb_type = FLASH_DDB;
3831 ddb_entry->fw_ddb_index = INVALID_ENTRY;
3832 ddb_entry->fw_ddb_device_state = DDB_DS_NO_CONNECTION_ACTIVE;
3833 ddb_entry->ha = ha;
3834 ddb_entry->unblock_sess = qla4xxx_unblock_flash_ddb;
3835 ddb_entry->ddb_change = qla4xxx_flash_ddb_change;
3836
3837 atomic_set(&ddb_entry->retry_relogin_timer, INVALID_ENTRY);
3838 atomic_set(&ddb_entry->relogin_timer, 0);
3839 atomic_set(&ddb_entry->relogin_retry_count, 0);
3840
3841 ddb_entry->default_relogin_timeout =
3842 le16_to_cpu(ddb_entry->fw_ddb_entry.def_timeout);
3843 ddb_entry->default_time2wait =
3844 le16_to_cpu(ddb_entry->fw_ddb_entry.iscsi_def_time2wait);
3845}
3846
3847static void qla4xxx_wait_for_ip_configuration(struct scsi_qla_host *ha)
3848{
3849 uint32_t idx = 0;
3850 uint32_t ip_idx[IP_ADDR_COUNT] = {0, 1, 2, 3}; /* 4 IP interfaces */
3851 uint32_t sts[MBOX_REG_COUNT];
3852 uint32_t ip_state;
3853 unsigned long wtime;
3854 int ret;
3855
3856 wtime = jiffies + (HZ * IP_CONFIG_TOV);
3857 do {
3858 for (idx = 0; idx < IP_ADDR_COUNT; idx++) {
3859 if (ip_idx[idx] == -1)
3860 continue;
3861
3862 ret = qla4xxx_get_ip_state(ha, 0, ip_idx[idx], sts);
3863
3864 if (ret == QLA_ERROR) {
3865 ip_idx[idx] = -1;
3866 continue;
3867 }
3868
3869 ip_state = (sts[1] & IP_STATE_MASK) >> IP_STATE_SHIFT;
3870
3871 DEBUG2(ql4_printk(KERN_INFO, ha,
3872 "Waiting for IP state for idx = %d, state = 0x%x\n",
3873 ip_idx[idx], ip_state));
3874 if (ip_state == IP_ADDRSTATE_UNCONFIGURED ||
3875 ip_state == IP_ADDRSTATE_INVALID ||
3876 ip_state == IP_ADDRSTATE_PREFERRED ||
3877 ip_state == IP_ADDRSTATE_DEPRICATED ||
3878 ip_state == IP_ADDRSTATE_DISABLING)
3879 ip_idx[idx] = -1;
3880
3881 }
3882
3883 /* Break if all IP states checked */
3884 if ((ip_idx[0] == -1) &&
3885 (ip_idx[1] == -1) &&
3886 (ip_idx[2] == -1) &&
3887 (ip_idx[3] == -1))
3888 break;
3889 schedule_timeout_uninterruptible(HZ);
3890 } while (time_after(wtime, jiffies));
3891}
3892
3893void qla4xxx_build_ddb_list(struct scsi_qla_host *ha, int is_reset)
3894{
3895 int max_ddbs;
3896 int ret;
3897 uint32_t idx = 0, next_idx = 0;
3898 uint32_t state = 0, conn_err = 0;
3899 uint16_t conn_id;
3900 struct dev_db_entry *fw_ddb_entry;
3901 struct ddb_entry *ddb_entry = NULL;
3902 dma_addr_t fw_ddb_dma;
3903 struct iscsi_cls_session *cls_sess;
3904 struct iscsi_session *sess;
3905 struct iscsi_cls_conn *cls_conn;
3906 struct iscsi_endpoint *ep;
3907 uint16_t cmds_max = 32, tmo = 0;
3908 uint32_t initial_cmdsn = 0;
3909 struct list_head list_st, list_nt; /* List of sendtargets */
3910 struct qla_ddb_index *st_ddb_idx, *st_ddb_idx_tmp;
3911 int fw_idx_size;
3912 unsigned long wtime;
3913 struct qla_ddb_index *nt_ddb_idx;
3914
3915 if (!test_bit(AF_LINK_UP, &ha->flags)) {
3916 set_bit(AF_BUILD_DDB_LIST, &ha->flags);
3917 ha->is_reset = is_reset;
3918 return;
3919 }
3920 max_ddbs = is_qla40XX(ha) ? MAX_DEV_DB_ENTRIES_40XX :
3921 MAX_DEV_DB_ENTRIES;
3922
3923 fw_ddb_entry = dma_pool_alloc(ha->fw_ddb_dma_pool, GFP_KERNEL,
3924 &fw_ddb_dma);
3925 if (fw_ddb_entry == NULL) {
3926 DEBUG2(ql4_printk(KERN_ERR, ha, "Out of memory\n"));
3927 goto exit_ddb_list;
3928 }
3929
3930 INIT_LIST_HEAD(&list_st);
3931 INIT_LIST_HEAD(&list_nt);
3932 fw_idx_size = sizeof(struct qla_ddb_index);
3933
3934 for (idx = 0; idx < max_ddbs; idx = next_idx) {
3935 ret = qla4xxx_get_fwddb_entry(ha, idx, fw_ddb_entry,
3936 fw_ddb_dma, NULL,
3937 &next_idx, &state, &conn_err,
3938 NULL, &conn_id);
3939 if (ret == QLA_ERROR)
3940 break;
3941
3942 if (qla4xxx_verify_boot_idx(ha, idx) != QLA_SUCCESS)
3943 goto continue_next_st;
3944
3945 /* Check if ST, add to the list_st */
3946 if (strlen((char *) fw_ddb_entry->iscsi_name) != 0)
3947 goto continue_next_st;
3948
3949 st_ddb_idx = vzalloc(fw_idx_size);
3950 if (!st_ddb_idx)
3951 break;
3952
3953 st_ddb_idx->fw_ddb_idx = idx;
3954
3955 list_add_tail(&st_ddb_idx->list, &list_st);
3956continue_next_st:
3957 if (next_idx == 0)
3958 break;
3959 }
3960
3961 /* Before issuing conn open mbox, ensure all IPs states are configured
3962 * Note, conn open fails if IPs are not configured
3963 */
3964 qla4xxx_wait_for_ip_configuration(ha);
3965
3966 /* Go thru the STs and fire the sendtargets by issuing conn open mbx */
3967 list_for_each_entry_safe(st_ddb_idx, st_ddb_idx_tmp, &list_st, list) {
3968 qla4xxx_conn_open(ha, st_ddb_idx->fw_ddb_idx);
3969 }
3970
3971 /* Wait to ensure all sendtargets are done for min 12 sec wait */
3972 tmo = ((ha->def_timeout < LOGIN_TOV) ? LOGIN_TOV : ha->def_timeout);
3973 DEBUG2(ql4_printk(KERN_INFO, ha,
3974 "Default time to wait for build ddb %d\n", tmo));
3975
3976 wtime = jiffies + (HZ * tmo);
3977 do {
3978 list_for_each_entry_safe(st_ddb_idx, st_ddb_idx_tmp, &list_st,
3979 list) {
3980 ret = qla4xxx_get_fwddb_entry(ha,
3981 st_ddb_idx->fw_ddb_idx,
3982 NULL, 0, NULL, &next_idx,
3983 &state, &conn_err, NULL,
3984 NULL);
3985 if (ret == QLA_ERROR)
3986 continue;
3987
3988 if (state == DDB_DS_NO_CONNECTION_ACTIVE ||
3989 state == DDB_DS_SESSION_FAILED) {
3990 list_del_init(&st_ddb_idx->list);
3991 vfree(st_ddb_idx);
3992 }
3993 }
3994 schedule_timeout_uninterruptible(HZ / 10);
3995 } while (time_after(wtime, jiffies));
3996
3997 /* Free up the sendtargets list */
3998 list_for_each_entry_safe(st_ddb_idx, st_ddb_idx_tmp, &list_st, list) {
3999 list_del_init(&st_ddb_idx->list);
4000 vfree(st_ddb_idx);
4001 }
4002
4003 for (idx = 0; idx < max_ddbs; idx = next_idx) {
4004 ret = qla4xxx_get_fwddb_entry(ha, idx, fw_ddb_entry,
4005 fw_ddb_dma, NULL,
4006 &next_idx, &state, &conn_err,
4007 NULL, &conn_id);
4008 if (ret == QLA_ERROR)
4009 break;
4010
4011 if (qla4xxx_verify_boot_idx(ha, idx) != QLA_SUCCESS)
4012 goto continue_next_nt;
4013
4014 /* Check if NT, then add to list it */
4015 if (strlen((char *) fw_ddb_entry->iscsi_name) == 0)
4016 goto continue_next_nt;
4017
4018 if (state == DDB_DS_NO_CONNECTION_ACTIVE ||
4019 state == DDB_DS_SESSION_FAILED) {
4020 DEBUG2(ql4_printk(KERN_INFO, ha,
4021 "Adding DDB to session = 0x%x\n",
4022 idx));
4023 if (is_reset == INIT_ADAPTER) {
4024 nt_ddb_idx = vmalloc(fw_idx_size);
4025 if (!nt_ddb_idx)
4026 break;
4027
4028 nt_ddb_idx->fw_ddb_idx = idx;
4029
4030 memcpy(&nt_ddb_idx->fw_ddb, fw_ddb_entry,
4031 sizeof(struct dev_db_entry));
4032
4033 if (qla4xxx_is_flash_ddb_exists(ha, &list_nt,
4034 fw_ddb_entry) == QLA_SUCCESS) {
4035 vfree(nt_ddb_idx);
4036 goto continue_next_nt;
4037 }
4038 list_add_tail(&nt_ddb_idx->list, &list_nt);
4039 } else if (is_reset == RESET_ADAPTER) {
4040 if (qla4xxx_is_session_exists(ha,
4041 fw_ddb_entry) == QLA_SUCCESS)
4042 goto continue_next_nt;
4043 }
4044
4045 /* Create session object, with INVALID_ENTRY,
4046 * the targer_id would get set when we issue the login
4047 */
4048 cls_sess = iscsi_session_setup(&qla4xxx_iscsi_transport,
4049 ha->host, cmds_max,
4050 sizeof(struct ddb_entry),
4051 sizeof(struct ql4_task_data),
4052 initial_cmdsn, INVALID_ENTRY);
4053 if (!cls_sess)
4054 goto exit_ddb_list;
4055
4056 /*
4057 * iscsi_session_setup increments the driver reference
4058 * count which wouldn't let the driver to be unloaded.
4059 * so calling module_put function to decrement the
4060 * reference count.
4061 **/
4062 module_put(qla4xxx_iscsi_transport.owner);
4063 sess = cls_sess->dd_data;
4064 ddb_entry = sess->dd_data;
4065 ddb_entry->sess = cls_sess;
4066
4067 cls_sess->recovery_tmo = ql4xsess_recovery_tmo;
4068 memcpy(&ddb_entry->fw_ddb_entry, fw_ddb_entry,
4069 sizeof(struct dev_db_entry));
4070
4071 qla4xxx_setup_flash_ddb_entry(ha, ddb_entry);
4072
4073 cls_conn = iscsi_conn_setup(cls_sess,
4074 sizeof(struct qla_conn),
4075 conn_id);
4076 if (!cls_conn)
4077 goto exit_ddb_list;
4078
4079 ddb_entry->conn = cls_conn;
4080
4081 /* Setup ep, for displaying attributes in sysfs */
4082 ep = qla4xxx_get_ep_fwdb(ha, fw_ddb_entry);
4083 if (ep) {
4084 ep->conn = cls_conn;
4085 cls_conn->ep = ep;
4086 } else {
4087 DEBUG2(ql4_printk(KERN_ERR, ha,
4088 "Unable to get ep\n"));
4089 }
4090
4091 /* Update sess/conn params */
4092 qla4xxx_copy_fwddb_param(ha, fw_ddb_entry, cls_sess,
4093 cls_conn);
4094
4095 if (is_reset == RESET_ADAPTER) {
4096 iscsi_block_session(cls_sess);
4097 /* Use the relogin path to discover new devices
4098 * by short-circuting the logic of setting
4099 * timer to relogin - instead set the flags
4100 * to initiate login right away.
4101 */
4102 set_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags);
4103 set_bit(DF_RELOGIN, &ddb_entry->flags);
4104 }
4105 }
4106continue_next_nt:
4107 if (next_idx == 0)
4108 break;
4109 }
4110exit_ddb_list:
4111 qla4xxx_free_nt_list(&list_nt);
4112 if (fw_ddb_entry)
4113 dma_pool_free(ha->fw_ddb_dma_pool, fw_ddb_entry, fw_ddb_dma);
4114
4115 qla4xxx_free_ddb_index(ha);
4116}
4117
4118
David Somayajuluafaf5a22006-09-19 10:28:00 -07004119/**
4120 * qla4xxx_probe_adapter - callback function to probe HBA
4121 * @pdev: pointer to pci_dev structure
4122 * @pci_device_id: pointer to pci_device entry
4123 *
4124 * This routine will probe for Qlogic 4xxx iSCSI host adapters.
4125 * It returns zero if successful. It also initializes all data necessary for
4126 * the driver.
4127 **/
4128static int __devinit qla4xxx_probe_adapter(struct pci_dev *pdev,
4129 const struct pci_device_id *ent)
4130{
4131 int ret = -ENODEV, status;
4132 struct Scsi_Host *host;
4133 struct scsi_qla_host *ha;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004134 uint8_t init_retry_count = 0;
4135 char buf[34];
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304136 struct qla4_8xxx_legacy_intr_set *nx_legacy_intr;
Prasanna Mumbaif9880e72011-03-21 03:34:26 -07004137 uint32_t dev_state;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004138
4139 if (pci_enable_device(pdev))
4140 return -1;
4141
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004142 host = iscsi_host_alloc(&qla4xxx_driver_template, sizeof(*ha), 0);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004143 if (host == NULL) {
4144 printk(KERN_WARNING
4145 "qla4xxx: Couldn't allocate host from scsi layer!\n");
4146 goto probe_disable_device;
4147 }
4148
4149 /* Clear our data area */
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004150 ha = to_qla_host(host);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004151 memset(ha, 0, sizeof(*ha));
4152
4153 /* Save the information from PCI BIOS. */
4154 ha->pdev = pdev;
4155 ha->host = host;
4156 ha->host_no = host->host_no;
4157
Lalit Chandivade2232be02010-07-30 14:38:47 +05304158 pci_enable_pcie_error_reporting(pdev);
4159
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304160 /* Setup Runtime configurable options */
4161 if (is_qla8022(ha)) {
4162 ha->isp_ops = &qla4_8xxx_isp_ops;
4163 rwlock_init(&ha->hw_lock);
4164 ha->qdr_sn_window = -1;
4165 ha->ddr_mn_window = -1;
4166 ha->curr_window = 255;
4167 ha->func_num = PCI_FUNC(ha->pdev->devfn);
4168 nx_legacy_intr = &legacy_intr[ha->func_num];
4169 ha->nx_legacy_intr.int_vec_bit = nx_legacy_intr->int_vec_bit;
4170 ha->nx_legacy_intr.tgt_status_reg =
4171 nx_legacy_intr->tgt_status_reg;
4172 ha->nx_legacy_intr.tgt_mask_reg = nx_legacy_intr->tgt_mask_reg;
4173 ha->nx_legacy_intr.pci_int_reg = nx_legacy_intr->pci_int_reg;
4174 } else {
4175 ha->isp_ops = &qla4xxx_isp_ops;
4176 }
4177
Lalit Chandivade2232be02010-07-30 14:38:47 +05304178 /* Set EEH reset type to fundamental if required by hba */
4179 if (is_qla8022(ha))
4180 pdev->needs_freset = 1;
4181
David Somayajuluafaf5a22006-09-19 10:28:00 -07004182 /* Configure PCI I/O space. */
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304183 ret = ha->isp_ops->iospace_config(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004184 if (ret)
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304185 goto probe_failed_ioconfig;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004186
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304187 ql4_printk(KERN_INFO, ha, "Found an ISP%04x, irq %d, iobase 0x%p\n",
David Somayajuluafaf5a22006-09-19 10:28:00 -07004188 pdev->device, pdev->irq, ha->reg);
4189
4190 qla4xxx_config_dma_addressing(ha);
4191
4192 /* Initialize lists and spinlocks. */
David Somayajuluafaf5a22006-09-19 10:28:00 -07004193 INIT_LIST_HEAD(&ha->free_srb_q);
4194
4195 mutex_init(&ha->mbox_sem);
Lalit Chandivade45494152011-10-07 16:55:42 -07004196 mutex_init(&ha->chap_sem);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304197 init_completion(&ha->mbx_intr_comp);
Vikas Chaudhary95d31262011-08-12 02:51:29 -07004198 init_completion(&ha->disable_acb_comp);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004199
4200 spin_lock_init(&ha->hardware_lock);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004201
4202 /* Allocate dma buffers */
4203 if (qla4xxx_mem_alloc(ha)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304204 ql4_printk(KERN_WARNING, ha,
4205 "[ERROR] Failed to allocate memory for adapter\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07004206
4207 ret = -ENOMEM;
4208 goto probe_failed;
4209 }
4210
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004211 host->cmd_per_lun = 3;
4212 host->max_channel = 0;
4213 host->max_lun = MAX_LUNS - 1;
4214 host->max_id = MAX_TARGETS;
4215 host->max_cmd_len = IOCB_MAX_CDB_LEN;
4216 host->can_queue = MAX_SRBS ;
4217 host->transportt = qla4xxx_scsi_transport;
4218
4219 ret = scsi_init_shared_tag_map(host, MAX_SRBS);
4220 if (ret) {
4221 ql4_printk(KERN_WARNING, ha,
4222 "%s: scsi_init_shared_tag_map failed\n", __func__);
4223 goto probe_failed;
4224 }
4225
4226 pci_set_drvdata(pdev, ha);
4227
4228 ret = scsi_add_host(host, &pdev->dev);
4229 if (ret)
4230 goto probe_failed;
4231
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304232 if (is_qla8022(ha))
4233 (void) qla4_8xxx_get_flash_info(ha);
4234
David Somayajuluafaf5a22006-09-19 10:28:00 -07004235 /*
4236 * Initialize the Host adapter request/response queues and
4237 * firmware
4238 * NOTE: interrupts enabled upon successful completion
4239 */
Mike Christie13483732011-12-01 21:38:41 -06004240 status = qla4xxx_initialize_adapter(ha, INIT_ADAPTER);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304241 while ((!test_bit(AF_ONLINE, &ha->flags)) &&
4242 init_retry_count++ < MAX_INIT_RETRIES) {
Prasanna Mumbaif9880e72011-03-21 03:34:26 -07004243
4244 if (is_qla8022(ha)) {
4245 qla4_8xxx_idc_lock(ha);
4246 dev_state = qla4_8xxx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
4247 qla4_8xxx_idc_unlock(ha);
4248 if (dev_state == QLA82XX_DEV_FAILED) {
4249 ql4_printk(KERN_WARNING, ha, "%s: don't retry "
4250 "initialize adapter. H/W is in failed state\n",
4251 __func__);
4252 break;
4253 }
4254 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07004255 DEBUG2(printk("scsi: %s: retrying adapter initialization "
4256 "(%d)\n", __func__, init_retry_count));
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304257
4258 if (ha->isp_ops->reset_chip(ha) == QLA_ERROR)
4259 continue;
4260
Mike Christie13483732011-12-01 21:38:41 -06004261 status = qla4xxx_initialize_adapter(ha, INIT_ADAPTER);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004262 }
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304263
4264 if (!test_bit(AF_ONLINE, &ha->flags)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304265 ql4_printk(KERN_WARNING, ha, "Failed to initialize adapter\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07004266
Lalit Chandivadefe998522010-12-02 22:12:36 -08004267 if (is_qla8022(ha) && ql4xdontresethba) {
4268 /* Put the device in failed state. */
4269 DEBUG2(printk(KERN_ERR "HW STATE: FAILED\n"));
4270 qla4_8xxx_idc_lock(ha);
4271 qla4_8xxx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
4272 QLA82XX_DEV_FAILED);
4273 qla4_8xxx_idc_unlock(ha);
4274 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07004275 ret = -ENODEV;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004276 goto remove_host;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004277 }
4278
David Somayajuluafaf5a22006-09-19 10:28:00 -07004279 /* Startup the kernel thread for this host adapter. */
4280 DEBUG2(printk("scsi: %s: Starting kernel thread for "
4281 "qla4xxx_dpc\n", __func__));
4282 sprintf(buf, "qla4xxx_%lu_dpc", ha->host_no);
4283 ha->dpc_thread = create_singlethread_workqueue(buf);
4284 if (!ha->dpc_thread) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304285 ql4_printk(KERN_WARNING, ha, "Unable to start DPC thread!\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07004286 ret = -ENODEV;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004287 goto remove_host;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004288 }
David Howellsc4028952006-11-22 14:57:56 +00004289 INIT_WORK(&ha->dpc_work, qla4xxx_do_dpc);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004290
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004291 sprintf(buf, "qla4xxx_%lu_task", ha->host_no);
4292 ha->task_wq = alloc_workqueue(buf, WQ_MEM_RECLAIM, 1);
4293 if (!ha->task_wq) {
4294 ql4_printk(KERN_WARNING, ha, "Unable to start task thread!\n");
4295 ret = -ENODEV;
4296 goto remove_host;
4297 }
4298
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304299 /* For ISP-82XX, request_irqs is called in qla4_8xxx_load_risc
4300 * (which is called indirectly by qla4xxx_initialize_adapter),
4301 * so that irqs will be registered after crbinit but before
4302 * mbx_intr_enable.
4303 */
4304 if (!is_qla8022(ha)) {
4305 ret = qla4xxx_request_irqs(ha);
4306 if (ret) {
4307 ql4_printk(KERN_WARNING, ha, "Failed to reserve "
4308 "interrupt %d already in use.\n", pdev->irq);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004309 goto remove_host;
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304310 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07004311 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07004312
Lalit Chandivade2232be02010-07-30 14:38:47 +05304313 pci_save_state(ha->pdev);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304314 ha->isp_ops->enable_intrs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004315
4316 /* Start timer thread. */
4317 qla4xxx_start_timer(ha, qla4xxx_timer, 1);
4318
4319 set_bit(AF_INIT_DONE, &ha->flags);
4320
David Somayajuluafaf5a22006-09-19 10:28:00 -07004321 printk(KERN_INFO
4322 " QLogic iSCSI HBA Driver version: %s\n"
4323 " QLogic ISP%04x @ %s, host#=%ld, fw=%02d.%02d.%02d.%02d\n",
4324 qla4xxx_version_str, ha->pdev->device, pci_name(ha->pdev),
4325 ha->host_no, ha->firmware_version[0], ha->firmware_version[1],
4326 ha->patch_number, ha->build_number);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05004327
Manish Rangankar2a991c22011-07-25 13:48:55 -05004328 if (qla4xxx_setup_boot_info(ha))
4329 ql4_printk(KERN_ERR, ha, "%s:ISCSI boot info setup failed\n",
4330 __func__);
4331
Mike Christie13483732011-12-01 21:38:41 -06004332 /* Perform the build ddb list and login to each */
4333 qla4xxx_build_ddb_list(ha, INIT_ADAPTER);
4334 iscsi_host_for_each_session(ha->host, qla4xxx_login_flash_ddb);
4335
4336 qla4xxx_create_chap_list(ha);
4337
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05004338 qla4xxx_create_ifaces(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004339 return 0;
4340
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004341remove_host:
4342 scsi_remove_host(ha->host);
4343
David Somayajuluafaf5a22006-09-19 10:28:00 -07004344probe_failed:
4345 qla4xxx_free_adapter(ha);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304346
4347probe_failed_ioconfig:
Lalit Chandivade2232be02010-07-30 14:38:47 +05304348 pci_disable_pcie_error_reporting(pdev);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004349 scsi_host_put(ha->host);
4350
4351probe_disable_device:
4352 pci_disable_device(pdev);
4353
4354 return ret;
4355}
4356
4357/**
Karen Higgins7eece5a2011-03-21 03:34:29 -07004358 * qla4xxx_prevent_other_port_reinit - prevent other port from re-initialize
4359 * @ha: pointer to adapter structure
4360 *
4361 * Mark the other ISP-4xxx port to indicate that the driver is being removed,
4362 * so that the other port will not re-initialize while in the process of
4363 * removing the ha due to driver unload or hba hotplug.
4364 **/
4365static void qla4xxx_prevent_other_port_reinit(struct scsi_qla_host *ha)
4366{
4367 struct scsi_qla_host *other_ha = NULL;
4368 struct pci_dev *other_pdev = NULL;
4369 int fn = ISP4XXX_PCI_FN_2;
4370
4371 /*iscsi function numbers for ISP4xxx is 1 and 3*/
4372 if (PCI_FUNC(ha->pdev->devfn) & BIT_1)
4373 fn = ISP4XXX_PCI_FN_1;
4374
4375 other_pdev =
4376 pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus),
4377 ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn),
4378 fn));
4379
4380 /* Get other_ha if other_pdev is valid and state is enable*/
4381 if (other_pdev) {
4382 if (atomic_read(&other_pdev->enable_cnt)) {
4383 other_ha = pci_get_drvdata(other_pdev);
4384 if (other_ha) {
4385 set_bit(AF_HA_REMOVAL, &other_ha->flags);
4386 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: "
4387 "Prevent %s reinit\n", __func__,
4388 dev_name(&other_ha->pdev->dev)));
4389 }
4390 }
4391 pci_dev_put(other_pdev);
4392 }
4393}
4394
Mike Christie13483732011-12-01 21:38:41 -06004395static void qla4xxx_destroy_fw_ddb_session(struct scsi_qla_host *ha)
4396{
4397 struct ddb_entry *ddb_entry;
4398 int options;
4399 int idx;
4400
4401 for (idx = 0; idx < MAX_DDB_ENTRIES; idx++) {
4402
4403 ddb_entry = qla4xxx_lookup_ddb_by_fw_index(ha, idx);
4404 if ((ddb_entry != NULL) &&
4405 (ddb_entry->ddb_type == FLASH_DDB)) {
4406
4407 options = LOGOUT_OPTION_CLOSE_SESSION;
4408 if (qla4xxx_session_logout_ddb(ha, ddb_entry, options)
4409 == QLA_ERROR)
4410 ql4_printk(KERN_ERR, ha, "%s: Logout failed\n",
4411 __func__);
4412
4413 qla4xxx_clear_ddb_entry(ha, ddb_entry->fw_ddb_index);
4414 /*
4415 * we have decremented the reference count of the driver
4416 * when we setup the session to have the driver unload
4417 * to be seamless without actually destroying the
4418 * session
4419 **/
4420 try_module_get(qla4xxx_iscsi_transport.owner);
4421 iscsi_destroy_endpoint(ddb_entry->conn->ep);
4422 qla4xxx_free_ddb(ha, ddb_entry);
4423 iscsi_session_teardown(ddb_entry->sess);
4424 }
4425 }
4426}
Karen Higgins7eece5a2011-03-21 03:34:29 -07004427/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07004428 * qla4xxx_remove_adapter - calback function to remove adapter.
4429 * @pci_dev: PCI device pointer
4430 **/
4431static void __devexit qla4xxx_remove_adapter(struct pci_dev *pdev)
4432{
4433 struct scsi_qla_host *ha;
4434
4435 ha = pci_get_drvdata(pdev);
4436
Karen Higgins7eece5a2011-03-21 03:34:29 -07004437 if (!is_qla8022(ha))
4438 qla4xxx_prevent_other_port_reinit(ha);
David C Somayajulubee4fe82007-05-23 18:03:32 -07004439
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05004440 /* destroy iface from sysfs */
4441 qla4xxx_destroy_ifaces(ha);
4442
Mike Christie13483732011-12-01 21:38:41 -06004443 if ((!ql4xdisablesysfsboot) && ha->boot_kset)
Manish Rangankar2a991c22011-07-25 13:48:55 -05004444 iscsi_boot_destroy_kset(ha->boot_kset);
4445
Mike Christie13483732011-12-01 21:38:41 -06004446 qla4xxx_destroy_fw_ddb_session(ha);
4447
David Somayajuluafaf5a22006-09-19 10:28:00 -07004448 scsi_remove_host(ha->host);
4449
4450 qla4xxx_free_adapter(ha);
4451
4452 scsi_host_put(ha->host);
4453
Lalit Chandivade2232be02010-07-30 14:38:47 +05304454 pci_disable_pcie_error_reporting(pdev);
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304455 pci_disable_device(pdev);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004456 pci_set_drvdata(pdev, NULL);
4457}
4458
4459/**
4460 * qla4xxx_config_dma_addressing() - Configure OS DMA addressing method.
4461 * @ha: HA context
4462 *
4463 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
4464 * supported addressing method.
4465 */
Adrian Bunk47975472007-04-26 00:35:16 -07004466static void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004467{
4468 int retval;
4469
4470 /* Update our PCI device dma_mask for full 64 bit mask */
Yang Hongyang6a355282009-04-06 19:01:13 -07004471 if (pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(64)) == 0) {
4472 if (pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07004473 dev_dbg(&ha->pdev->dev,
4474 "Failed to set 64 bit PCI consistent mask; "
4475 "using 32 bit.\n");
4476 retval = pci_set_consistent_dma_mask(ha->pdev,
Yang Hongyang284901a2009-04-06 19:01:15 -07004477 DMA_BIT_MASK(32));
David Somayajuluafaf5a22006-09-19 10:28:00 -07004478 }
4479 } else
Yang Hongyang284901a2009-04-06 19:01:15 -07004480 retval = pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(32));
David Somayajuluafaf5a22006-09-19 10:28:00 -07004481}
4482
4483static int qla4xxx_slave_alloc(struct scsi_device *sdev)
4484{
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004485 struct iscsi_cls_session *cls_sess;
4486 struct iscsi_session *sess;
4487 struct ddb_entry *ddb;
Vikas Chaudhary8bb40332011-03-21 03:34:31 -07004488 int queue_depth = QL4_DEF_QDEPTH;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004489
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004490 cls_sess = starget_to_session(sdev->sdev_target);
4491 sess = cls_sess->dd_data;
4492 ddb = sess->dd_data;
4493
David Somayajuluafaf5a22006-09-19 10:28:00 -07004494 sdev->hostdata = ddb;
4495 sdev->tagged_supported = 1;
Vikas Chaudhary8bb40332011-03-21 03:34:31 -07004496
4497 if (ql4xmaxqdepth != 0 && ql4xmaxqdepth <= 0xffffU)
4498 queue_depth = ql4xmaxqdepth;
4499
4500 scsi_activate_tcq(sdev, queue_depth);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004501 return 0;
4502}
4503
4504static int qla4xxx_slave_configure(struct scsi_device *sdev)
4505{
4506 sdev->tagged_supported = 1;
4507 return 0;
4508}
4509
4510static void qla4xxx_slave_destroy(struct scsi_device *sdev)
4511{
4512 scsi_deactivate_tcq(sdev, 1);
4513}
4514
4515/**
4516 * qla4xxx_del_from_active_array - returns an active srb
4517 * @ha: Pointer to host adapter structure.
Anand Gadiyarfd589a82009-07-16 17:13:03 +02004518 * @index: index into the active_array
David Somayajuluafaf5a22006-09-19 10:28:00 -07004519 *
4520 * This routine removes and returns the srb at the specified index
4521 **/
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304522struct srb *qla4xxx_del_from_active_array(struct scsi_qla_host *ha,
4523 uint32_t index)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004524{
4525 struct srb *srb = NULL;
Vikas Chaudhary53698872010-04-28 11:41:59 +05304526 struct scsi_cmnd *cmd = NULL;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004527
Vikas Chaudhary53698872010-04-28 11:41:59 +05304528 cmd = scsi_host_find_tag(ha->host, index);
4529 if (!cmd)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004530 return srb;
4531
Vikas Chaudhary53698872010-04-28 11:41:59 +05304532 srb = (struct srb *)CMD_SP(cmd);
4533 if (!srb)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004534 return srb;
4535
4536 /* update counters */
4537 if (srb->flags & SRB_DMA_VALID) {
4538 ha->req_q_count += srb->iocb_cnt;
4539 ha->iocb_cnt -= srb->iocb_cnt;
4540 if (srb->cmd)
Vikas Chaudhary53698872010-04-28 11:41:59 +05304541 srb->cmd->host_scribble =
4542 (unsigned char *)(unsigned long) MAX_SRBS;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004543 }
4544 return srb;
4545}
4546
4547/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07004548 * qla4xxx_eh_wait_on_command - waits for command to be returned by firmware
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304549 * @ha: Pointer to host adapter structure.
David Somayajuluafaf5a22006-09-19 10:28:00 -07004550 * @cmd: Scsi Command to wait on.
4551 *
4552 * This routine waits for the command to be returned by the Firmware
4553 * for some max time.
4554 **/
4555static int qla4xxx_eh_wait_on_command(struct scsi_qla_host *ha,
4556 struct scsi_cmnd *cmd)
4557{
4558 int done = 0;
4559 struct srb *rp;
4560 uint32_t max_wait_time = EH_WAIT_CMD_TOV;
Lalit Chandivade2232be02010-07-30 14:38:47 +05304561 int ret = SUCCESS;
4562
4563 /* Dont wait on command if PCI error is being handled
4564 * by PCI AER driver
4565 */
4566 if (unlikely(pci_channel_offline(ha->pdev)) ||
4567 (test_bit(AF_EEH_BUSY, &ha->flags))) {
4568 ql4_printk(KERN_WARNING, ha, "scsi%ld: Return from %s\n",
4569 ha->host_no, __func__);
4570 return ret;
4571 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07004572
4573 do {
4574 /* Checking to see if its returned to OS */
Vikas Chaudhary53698872010-04-28 11:41:59 +05304575 rp = (struct srb *) CMD_SP(cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004576 if (rp == NULL) {
4577 done++;
4578 break;
4579 }
4580
4581 msleep(2000);
4582 } while (max_wait_time--);
4583
4584 return done;
4585}
4586
4587/**
4588 * qla4xxx_wait_for_hba_online - waits for HBA to come online
4589 * @ha: Pointer to host adapter structure
4590 **/
4591static int qla4xxx_wait_for_hba_online(struct scsi_qla_host *ha)
4592{
4593 unsigned long wait_online;
4594
Vikas Chaudharyf581a3f2010-10-06 22:47:48 -07004595 wait_online = jiffies + (HBA_ONLINE_TOV * HZ);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004596 while (time_before(jiffies, wait_online)) {
4597
4598 if (adapter_up(ha))
4599 return QLA_SUCCESS;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004600
4601 msleep(2000);
4602 }
4603
4604 return QLA_ERROR;
4605}
4606
4607/**
Mike Christiece545032008-02-29 18:25:20 -06004608 * qla4xxx_eh_wait_for_commands - wait for active cmds to finish.
Anand Gadiyarfd589a82009-07-16 17:13:03 +02004609 * @ha: pointer to HBA
David Somayajuluafaf5a22006-09-19 10:28:00 -07004610 * @t: target id
4611 * @l: lun id
4612 *
4613 * This function waits for all outstanding commands to a lun to complete. It
4614 * returns 0 if all pending commands are returned and 1 otherwise.
4615 **/
Mike Christiece545032008-02-29 18:25:20 -06004616static int qla4xxx_eh_wait_for_commands(struct scsi_qla_host *ha,
4617 struct scsi_target *stgt,
4618 struct scsi_device *sdev)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004619{
4620 int cnt;
4621 int status = 0;
4622 struct scsi_cmnd *cmd;
4623
4624 /*
Mike Christiece545032008-02-29 18:25:20 -06004625 * Waiting for all commands for the designated target or dev
4626 * in the active array
David Somayajuluafaf5a22006-09-19 10:28:00 -07004627 */
4628 for (cnt = 0; cnt < ha->host->can_queue; cnt++) {
4629 cmd = scsi_host_find_tag(ha->host, cnt);
Mike Christiece545032008-02-29 18:25:20 -06004630 if (cmd && stgt == scsi_target(cmd->device) &&
4631 (!sdev || sdev == cmd->device)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07004632 if (!qla4xxx_eh_wait_on_command(ha, cmd)) {
4633 status++;
4634 break;
4635 }
4636 }
4637 }
4638 return status;
4639}
4640
4641/**
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304642 * qla4xxx_eh_abort - callback for abort task.
4643 * @cmd: Pointer to Linux's SCSI command structure
4644 *
4645 * This routine is called by the Linux OS to abort the specified
4646 * command.
4647 **/
4648static int qla4xxx_eh_abort(struct scsi_cmnd *cmd)
4649{
4650 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
4651 unsigned int id = cmd->device->id;
4652 unsigned int lun = cmd->device->lun;
Mike Christie92b3e5b2010-10-06 22:51:17 -07004653 unsigned long flags;
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304654 struct srb *srb = NULL;
4655 int ret = SUCCESS;
4656 int wait = 0;
4657
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304658 ql4_printk(KERN_INFO, ha,
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04004659 "scsi%ld:%d:%d: Abort command issued cmd=%p\n",
4660 ha->host_no, id, lun, cmd);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304661
Mike Christie92b3e5b2010-10-06 22:51:17 -07004662 spin_lock_irqsave(&ha->hardware_lock, flags);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304663 srb = (struct srb *) CMD_SP(cmd);
Mike Christie92b3e5b2010-10-06 22:51:17 -07004664 if (!srb) {
4665 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304666 return SUCCESS;
Mike Christie92b3e5b2010-10-06 22:51:17 -07004667 }
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304668 kref_get(&srb->srb_ref);
Mike Christie92b3e5b2010-10-06 22:51:17 -07004669 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304670
4671 if (qla4xxx_abort_task(ha, srb) != QLA_SUCCESS) {
4672 DEBUG3(printk("scsi%ld:%d:%d: Abort_task mbx failed.\n",
4673 ha->host_no, id, lun));
4674 ret = FAILED;
4675 } else {
4676 DEBUG3(printk("scsi%ld:%d:%d: Abort_task mbx success.\n",
4677 ha->host_no, id, lun));
4678 wait = 1;
4679 }
4680
4681 kref_put(&srb->srb_ref, qla4xxx_srb_compl);
4682
4683 /* Wait for command to complete */
4684 if (wait) {
4685 if (!qla4xxx_eh_wait_on_command(ha, cmd)) {
4686 DEBUG2(printk("scsi%ld:%d:%d: Abort handler timed out\n",
4687 ha->host_no, id, lun));
4688 ret = FAILED;
4689 }
4690 }
4691
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304692 ql4_printk(KERN_INFO, ha,
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304693 "scsi%ld:%d:%d: Abort command - %s\n",
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004694 ha->host_no, id, lun, (ret == SUCCESS) ? "succeeded" : "failed");
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304695
4696 return ret;
4697}
4698
4699/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07004700 * qla4xxx_eh_device_reset - callback for target reset.
4701 * @cmd: Pointer to Linux's SCSI command structure
4702 *
4703 * This routine is called by the Linux OS to reset all luns on the
4704 * specified target.
4705 **/
4706static int qla4xxx_eh_device_reset(struct scsi_cmnd *cmd)
4707{
4708 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
4709 struct ddb_entry *ddb_entry = cmd->device->hostdata;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004710 int ret = FAILED, stat;
4711
Karen Higgins612f73482009-07-15 15:03:01 -05004712 if (!ddb_entry)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004713 return ret;
4714
Mike Christiec01be6d2010-07-22 16:59:49 +05304715 ret = iscsi_block_scsi_eh(cmd);
4716 if (ret)
4717 return ret;
4718 ret = FAILED;
4719
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304720 ql4_printk(KERN_INFO, ha,
David Somayajuluafaf5a22006-09-19 10:28:00 -07004721 "scsi%ld:%d:%d:%d: DEVICE RESET ISSUED.\n", ha->host_no,
4722 cmd->device->channel, cmd->device->id, cmd->device->lun);
4723
4724 DEBUG2(printk(KERN_INFO
4725 "scsi%ld: DEVICE_RESET cmd=%p jiffies = 0x%lx, to=%x,"
4726 "dpc_flags=%lx, status=%x allowed=%d\n", ha->host_no,
Jens Axboe242f9dc2008-09-14 05:55:09 -07004727 cmd, jiffies, cmd->request->timeout / HZ,
David Somayajuluafaf5a22006-09-19 10:28:00 -07004728 ha->dpc_flags, cmd->result, cmd->allowed));
4729
4730 /* FIXME: wait for hba to go online */
4731 stat = qla4xxx_reset_lun(ha, ddb_entry, cmd->device->lun);
4732 if (stat != QLA_SUCCESS) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304733 ql4_printk(KERN_INFO, ha, "DEVICE RESET FAILED. %d\n", stat);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004734 goto eh_dev_reset_done;
4735 }
4736
Mike Christiece545032008-02-29 18:25:20 -06004737 if (qla4xxx_eh_wait_for_commands(ha, scsi_target(cmd->device),
4738 cmd->device)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304739 ql4_printk(KERN_INFO, ha,
Mike Christiece545032008-02-29 18:25:20 -06004740 "DEVICE RESET FAILED - waiting for "
4741 "commands.\n");
4742 goto eh_dev_reset_done;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004743 }
4744
David C Somayajulu9d562912008-03-19 11:23:03 -07004745 /* Send marker. */
4746 if (qla4xxx_send_marker_iocb(ha, ddb_entry, cmd->device->lun,
4747 MM_LUN_RESET) != QLA_SUCCESS)
4748 goto eh_dev_reset_done;
4749
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304750 ql4_printk(KERN_INFO, ha,
David Somayajuluafaf5a22006-09-19 10:28:00 -07004751 "scsi(%ld:%d:%d:%d): DEVICE RESET SUCCEEDED.\n",
4752 ha->host_no, cmd->device->channel, cmd->device->id,
4753 cmd->device->lun);
4754
4755 ret = SUCCESS;
4756
4757eh_dev_reset_done:
4758
4759 return ret;
4760}
4761
4762/**
Mike Christiece545032008-02-29 18:25:20 -06004763 * qla4xxx_eh_target_reset - callback for target reset.
4764 * @cmd: Pointer to Linux's SCSI command structure
4765 *
4766 * This routine is called by the Linux OS to reset the target.
4767 **/
4768static int qla4xxx_eh_target_reset(struct scsi_cmnd *cmd)
4769{
4770 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
4771 struct ddb_entry *ddb_entry = cmd->device->hostdata;
Mike Christiec01be6d2010-07-22 16:59:49 +05304772 int stat, ret;
Mike Christiece545032008-02-29 18:25:20 -06004773
4774 if (!ddb_entry)
4775 return FAILED;
4776
Mike Christiec01be6d2010-07-22 16:59:49 +05304777 ret = iscsi_block_scsi_eh(cmd);
4778 if (ret)
4779 return ret;
4780
Mike Christiece545032008-02-29 18:25:20 -06004781 starget_printk(KERN_INFO, scsi_target(cmd->device),
4782 "WARM TARGET RESET ISSUED.\n");
4783
4784 DEBUG2(printk(KERN_INFO
4785 "scsi%ld: TARGET_DEVICE_RESET cmd=%p jiffies = 0x%lx, "
4786 "to=%x,dpc_flags=%lx, status=%x allowed=%d\n",
Jens Axboe242f9dc2008-09-14 05:55:09 -07004787 ha->host_no, cmd, jiffies, cmd->request->timeout / HZ,
Mike Christiece545032008-02-29 18:25:20 -06004788 ha->dpc_flags, cmd->result, cmd->allowed));
4789
4790 stat = qla4xxx_reset_target(ha, ddb_entry);
4791 if (stat != QLA_SUCCESS) {
4792 starget_printk(KERN_INFO, scsi_target(cmd->device),
4793 "WARM TARGET RESET FAILED.\n");
4794 return FAILED;
4795 }
4796
Mike Christiece545032008-02-29 18:25:20 -06004797 if (qla4xxx_eh_wait_for_commands(ha, scsi_target(cmd->device),
4798 NULL)) {
4799 starget_printk(KERN_INFO, scsi_target(cmd->device),
4800 "WARM TARGET DEVICE RESET FAILED - "
4801 "waiting for commands.\n");
4802 return FAILED;
4803 }
4804
David C Somayajulu9d562912008-03-19 11:23:03 -07004805 /* Send marker. */
4806 if (qla4xxx_send_marker_iocb(ha, ddb_entry, cmd->device->lun,
4807 MM_TGT_WARM_RESET) != QLA_SUCCESS) {
4808 starget_printk(KERN_INFO, scsi_target(cmd->device),
4809 "WARM TARGET DEVICE RESET FAILED - "
4810 "marker iocb failed.\n");
4811 return FAILED;
4812 }
4813
Mike Christiece545032008-02-29 18:25:20 -06004814 starget_printk(KERN_INFO, scsi_target(cmd->device),
4815 "WARM TARGET RESET SUCCEEDED.\n");
4816 return SUCCESS;
4817}
4818
4819/**
Sarang Radke8a288962011-12-06 02:34:10 -08004820 * qla4xxx_is_eh_active - check if error handler is running
4821 * @shost: Pointer to SCSI Host struct
4822 *
4823 * This routine finds that if reset host is called in EH
4824 * scenario or from some application like sg_reset
4825 **/
4826static int qla4xxx_is_eh_active(struct Scsi_Host *shost)
4827{
4828 if (shost->shost_state == SHOST_RECOVERY)
4829 return 1;
4830 return 0;
4831}
4832
4833/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07004834 * qla4xxx_eh_host_reset - kernel callback
4835 * @cmd: Pointer to Linux's SCSI command structure
4836 *
4837 * This routine is invoked by the Linux kernel to perform fatal error
4838 * recovery on the specified adapter.
4839 **/
4840static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd)
4841{
4842 int return_status = FAILED;
4843 struct scsi_qla_host *ha;
4844
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004845 ha = to_qla_host(cmd->device->host);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004846
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304847 if (ql4xdontresethba) {
4848 DEBUG2(printk("scsi%ld: %s: Don't Reset HBA\n",
4849 ha->host_no, __func__));
Sarang Radke8a288962011-12-06 02:34:10 -08004850
4851 /* Clear outstanding srb in queues */
4852 if (qla4xxx_is_eh_active(cmd->device->host))
4853 qla4xxx_abort_active_cmds(ha, DID_ABORT << 16);
4854
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304855 return FAILED;
4856 }
4857
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304858 ql4_printk(KERN_INFO, ha,
Karen Higginsdca05c42009-07-15 15:03:00 -05004859 "scsi(%ld:%d:%d:%d): HOST RESET ISSUED.\n", ha->host_no,
David Somayajuluafaf5a22006-09-19 10:28:00 -07004860 cmd->device->channel, cmd->device->id, cmd->device->lun);
4861
4862 if (qla4xxx_wait_for_hba_online(ha) != QLA_SUCCESS) {
4863 DEBUG2(printk("scsi%ld:%d: %s: Unable to reset host. Adapter "
4864 "DEAD.\n", ha->host_no, cmd->device->channel,
4865 __func__));
4866
4867 return FAILED;
4868 }
4869
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304870 if (!test_bit(DPC_RESET_HA, &ha->dpc_flags)) {
4871 if (is_qla8022(ha))
4872 set_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags);
4873 else
4874 set_bit(DPC_RESET_HA, &ha->dpc_flags);
4875 }
Mike Christie50a29ae2008-03-04 13:26:53 -06004876
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05304877 if (qla4xxx_recover_adapter(ha) == QLA_SUCCESS)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004878 return_status = SUCCESS;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004879
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304880 ql4_printk(KERN_INFO, ha, "HOST RESET %s.\n",
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004881 return_status == FAILED ? "FAILED" : "SUCCEEDED");
David Somayajuluafaf5a22006-09-19 10:28:00 -07004882
4883 return return_status;
4884}
4885
Vikas Chaudhary95d31262011-08-12 02:51:29 -07004886static int qla4xxx_context_reset(struct scsi_qla_host *ha)
4887{
4888 uint32_t mbox_cmd[MBOX_REG_COUNT];
4889 uint32_t mbox_sts[MBOX_REG_COUNT];
4890 struct addr_ctrl_blk_def *acb = NULL;
4891 uint32_t acb_len = sizeof(struct addr_ctrl_blk_def);
4892 int rval = QLA_SUCCESS;
4893 dma_addr_t acb_dma;
4894
4895 acb = dma_alloc_coherent(&ha->pdev->dev,
4896 sizeof(struct addr_ctrl_blk_def),
4897 &acb_dma, GFP_KERNEL);
4898 if (!acb) {
4899 ql4_printk(KERN_ERR, ha, "%s: Unable to alloc acb\n",
4900 __func__);
4901 rval = -ENOMEM;
4902 goto exit_port_reset;
4903 }
4904
4905 memset(acb, 0, acb_len);
4906
4907 rval = qla4xxx_get_acb(ha, acb_dma, PRIMARI_ACB, acb_len);
4908 if (rval != QLA_SUCCESS) {
4909 rval = -EIO;
4910 goto exit_free_acb;
4911 }
4912
4913 rval = qla4xxx_disable_acb(ha);
4914 if (rval != QLA_SUCCESS) {
4915 rval = -EIO;
4916 goto exit_free_acb;
4917 }
4918
4919 wait_for_completion_timeout(&ha->disable_acb_comp,
4920 DISABLE_ACB_TOV * HZ);
4921
4922 rval = qla4xxx_set_acb(ha, &mbox_cmd[0], &mbox_sts[0], acb_dma);
4923 if (rval != QLA_SUCCESS) {
4924 rval = -EIO;
4925 goto exit_free_acb;
4926 }
4927
4928exit_free_acb:
4929 dma_free_coherent(&ha->pdev->dev, sizeof(struct addr_ctrl_blk_def),
4930 acb, acb_dma);
4931exit_port_reset:
4932 DEBUG2(ql4_printk(KERN_INFO, ha, "%s %s\n", __func__,
4933 rval == QLA_SUCCESS ? "SUCCEEDED" : "FAILED"));
4934 return rval;
4935}
4936
4937static int qla4xxx_host_reset(struct Scsi_Host *shost, int reset_type)
4938{
4939 struct scsi_qla_host *ha = to_qla_host(shost);
4940 int rval = QLA_SUCCESS;
4941
4942 if (ql4xdontresethba) {
4943 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Don't Reset HBA\n",
4944 __func__));
4945 rval = -EPERM;
4946 goto exit_host_reset;
4947 }
4948
4949 rval = qla4xxx_wait_for_hba_online(ha);
4950 if (rval != QLA_SUCCESS) {
4951 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Unable to reset host "
4952 "adapter\n", __func__));
4953 rval = -EIO;
4954 goto exit_host_reset;
4955 }
4956
4957 if (test_bit(DPC_RESET_HA, &ha->dpc_flags))
4958 goto recover_adapter;
4959
4960 switch (reset_type) {
4961 case SCSI_ADAPTER_RESET:
4962 set_bit(DPC_RESET_HA, &ha->dpc_flags);
4963 break;
4964 case SCSI_FIRMWARE_RESET:
4965 if (!test_bit(DPC_RESET_HA, &ha->dpc_flags)) {
4966 if (is_qla8022(ha))
4967 /* set firmware context reset */
4968 set_bit(DPC_RESET_HA_FW_CONTEXT,
4969 &ha->dpc_flags);
4970 else {
4971 rval = qla4xxx_context_reset(ha);
4972 goto exit_host_reset;
4973 }
4974 }
4975 break;
4976 }
4977
4978recover_adapter:
4979 rval = qla4xxx_recover_adapter(ha);
4980 if (rval != QLA_SUCCESS) {
4981 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: recover adapter fail\n",
4982 __func__));
4983 rval = -EIO;
4984 }
4985
4986exit_host_reset:
4987 return rval;
4988}
4989
Lalit Chandivade2232be02010-07-30 14:38:47 +05304990/* PCI AER driver recovers from all correctable errors w/o
4991 * driver intervention. For uncorrectable errors PCI AER
4992 * driver calls the following device driver's callbacks
4993 *
4994 * - Fatal Errors - link_reset
4995 * - Non-Fatal Errors - driver's pci_error_detected() which
4996 * returns CAN_RECOVER, NEED_RESET or DISCONNECT.
4997 *
4998 * PCI AER driver calls
4999 * CAN_RECOVER - driver's pci_mmio_enabled(), mmio_enabled
5000 * returns RECOVERED or NEED_RESET if fw_hung
5001 * NEED_RESET - driver's slot_reset()
5002 * DISCONNECT - device is dead & cannot recover
5003 * RECOVERED - driver's pci_resume()
5004 */
5005static pci_ers_result_t
5006qla4xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
5007{
5008 struct scsi_qla_host *ha = pci_get_drvdata(pdev);
5009
5010 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: error detected:state %x\n",
5011 ha->host_no, __func__, state);
5012
5013 if (!is_aer_supported(ha))
5014 return PCI_ERS_RESULT_NONE;
5015
5016 switch (state) {
5017 case pci_channel_io_normal:
5018 clear_bit(AF_EEH_BUSY, &ha->flags);
5019 return PCI_ERS_RESULT_CAN_RECOVER;
5020 case pci_channel_io_frozen:
5021 set_bit(AF_EEH_BUSY, &ha->flags);
5022 qla4xxx_mailbox_premature_completion(ha);
5023 qla4xxx_free_irqs(ha);
5024 pci_disable_device(pdev);
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07005025 /* Return back all IOs */
5026 qla4xxx_abort_active_cmds(ha, DID_RESET << 16);
Lalit Chandivade2232be02010-07-30 14:38:47 +05305027 return PCI_ERS_RESULT_NEED_RESET;
5028 case pci_channel_io_perm_failure:
5029 set_bit(AF_EEH_BUSY, &ha->flags);
5030 set_bit(AF_PCI_CHANNEL_IO_PERM_FAILURE, &ha->flags);
5031 qla4xxx_abort_active_cmds(ha, DID_NO_CONNECT << 16);
5032 return PCI_ERS_RESULT_DISCONNECT;
5033 }
5034 return PCI_ERS_RESULT_NEED_RESET;
5035}
5036
5037/**
5038 * qla4xxx_pci_mmio_enabled() gets called if
5039 * qla4xxx_pci_error_detected() returns PCI_ERS_RESULT_CAN_RECOVER
5040 * and read/write to the device still works.
5041 **/
5042static pci_ers_result_t
5043qla4xxx_pci_mmio_enabled(struct pci_dev *pdev)
5044{
5045 struct scsi_qla_host *ha = pci_get_drvdata(pdev);
5046
5047 if (!is_aer_supported(ha))
5048 return PCI_ERS_RESULT_NONE;
5049
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07005050 return PCI_ERS_RESULT_RECOVERED;
Lalit Chandivade2232be02010-07-30 14:38:47 +05305051}
5052
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07005053static uint32_t qla4_8xxx_error_recovery(struct scsi_qla_host *ha)
Lalit Chandivade2232be02010-07-30 14:38:47 +05305054{
5055 uint32_t rval = QLA_ERROR;
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07005056 uint32_t ret = 0;
Lalit Chandivade2232be02010-07-30 14:38:47 +05305057 int fn;
5058 struct pci_dev *other_pdev = NULL;
5059
5060 ql4_printk(KERN_WARNING, ha, "scsi%ld: In %s\n", ha->host_no, __func__);
5061
5062 set_bit(DPC_RESET_ACTIVE, &ha->dpc_flags);
5063
5064 if (test_bit(AF_ONLINE, &ha->flags)) {
5065 clear_bit(AF_ONLINE, &ha->flags);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05005066 clear_bit(AF_LINK_UP, &ha->flags);
5067 iscsi_host_for_each_session(ha->host, qla4xxx_fail_session);
Lalit Chandivade2232be02010-07-30 14:38:47 +05305068 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
Lalit Chandivade2232be02010-07-30 14:38:47 +05305069 }
5070
5071 fn = PCI_FUNC(ha->pdev->devfn);
5072 while (fn > 0) {
5073 fn--;
5074 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: Finding PCI device at "
5075 "func %x\n", ha->host_no, __func__, fn);
5076 /* Get the pci device given the domain, bus,
5077 * slot/function number */
5078 other_pdev =
5079 pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus),
5080 ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn),
5081 fn));
5082
5083 if (!other_pdev)
5084 continue;
5085
5086 if (atomic_read(&other_pdev->enable_cnt)) {
5087 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: Found PCI "
5088 "func in enabled state%x\n", ha->host_no,
5089 __func__, fn);
5090 pci_dev_put(other_pdev);
5091 break;
5092 }
5093 pci_dev_put(other_pdev);
5094 }
5095
5096 /* The first function on the card, the reset owner will
5097 * start & initialize the firmware. The other functions
5098 * on the card will reset the firmware context
5099 */
5100 if (!fn) {
5101 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: devfn being reset "
5102 "0x%x is the owner\n", ha->host_no, __func__,
5103 ha->pdev->devfn);
5104
5105 qla4_8xxx_idc_lock(ha);
5106 qla4_8xxx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
5107 QLA82XX_DEV_COLD);
5108
5109 qla4_8xxx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION,
5110 QLA82XX_IDC_VERSION);
5111
5112 qla4_8xxx_idc_unlock(ha);
5113 clear_bit(AF_FW_RECOVERY, &ha->flags);
Mike Christie13483732011-12-01 21:38:41 -06005114 rval = qla4xxx_initialize_adapter(ha, RESET_ADAPTER);
Lalit Chandivade2232be02010-07-30 14:38:47 +05305115 qla4_8xxx_idc_lock(ha);
5116
5117 if (rval != QLA_SUCCESS) {
5118 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: HW State: "
5119 "FAILED\n", ha->host_no, __func__);
5120 qla4_8xxx_clear_drv_active(ha);
5121 qla4_8xxx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
5122 QLA82XX_DEV_FAILED);
5123 } else {
5124 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: HW State: "
5125 "READY\n", ha->host_no, __func__);
5126 qla4_8xxx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
5127 QLA82XX_DEV_READY);
5128 /* Clear driver state register */
5129 qla4_8xxx_wr_32(ha, QLA82XX_CRB_DRV_STATE, 0);
5130 qla4_8xxx_set_drv_active(ha);
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07005131 ret = qla4xxx_request_irqs(ha);
5132 if (ret) {
5133 ql4_printk(KERN_WARNING, ha, "Failed to "
5134 "reserve interrupt %d already in use.\n",
5135 ha->pdev->irq);
5136 rval = QLA_ERROR;
5137 } else {
5138 ha->isp_ops->enable_intrs(ha);
5139 rval = QLA_SUCCESS;
5140 }
Lalit Chandivade2232be02010-07-30 14:38:47 +05305141 }
5142 qla4_8xxx_idc_unlock(ha);
5143 } else {
5144 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: devfn 0x%x is not "
5145 "the reset owner\n", ha->host_no, __func__,
5146 ha->pdev->devfn);
5147 if ((qla4_8xxx_rd_32(ha, QLA82XX_CRB_DEV_STATE) ==
5148 QLA82XX_DEV_READY)) {
5149 clear_bit(AF_FW_RECOVERY, &ha->flags);
Mike Christie13483732011-12-01 21:38:41 -06005150 rval = qla4xxx_initialize_adapter(ha, RESET_ADAPTER);
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07005151 if (rval == QLA_SUCCESS) {
5152 ret = qla4xxx_request_irqs(ha);
5153 if (ret) {
5154 ql4_printk(KERN_WARNING, ha, "Failed to"
5155 " reserve interrupt %d already in"
5156 " use.\n", ha->pdev->irq);
5157 rval = QLA_ERROR;
5158 } else {
5159 ha->isp_ops->enable_intrs(ha);
5160 rval = QLA_SUCCESS;
5161 }
5162 }
Lalit Chandivade2232be02010-07-30 14:38:47 +05305163 qla4_8xxx_idc_lock(ha);
5164 qla4_8xxx_set_drv_active(ha);
5165 qla4_8xxx_idc_unlock(ha);
5166 }
5167 }
5168 clear_bit(DPC_RESET_ACTIVE, &ha->dpc_flags);
5169 return rval;
5170}
5171
5172static pci_ers_result_t
5173qla4xxx_pci_slot_reset(struct pci_dev *pdev)
5174{
5175 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
5176 struct scsi_qla_host *ha = pci_get_drvdata(pdev);
5177 int rc;
5178
5179 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: slot_reset\n",
5180 ha->host_no, __func__);
5181
5182 if (!is_aer_supported(ha))
5183 return PCI_ERS_RESULT_NONE;
5184
5185 /* Restore the saved state of PCIe device -
5186 * BAR registers, PCI Config space, PCIX, MSI,
5187 * IOV states
5188 */
5189 pci_restore_state(pdev);
5190
5191 /* pci_restore_state() clears the saved_state flag of the device
5192 * save restored state which resets saved_state flag
5193 */
5194 pci_save_state(pdev);
5195
5196 /* Initialize device or resume if in suspended state */
5197 rc = pci_enable_device(pdev);
5198 if (rc) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005199 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: Can't re-enable "
Lalit Chandivade2232be02010-07-30 14:38:47 +05305200 "device after reset\n", ha->host_no, __func__);
5201 goto exit_slot_reset;
5202 }
5203
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07005204 ha->isp_ops->disable_intrs(ha);
Lalit Chandivade2232be02010-07-30 14:38:47 +05305205
5206 if (is_qla8022(ha)) {
5207 if (qla4_8xxx_error_recovery(ha) == QLA_SUCCESS) {
5208 ret = PCI_ERS_RESULT_RECOVERED;
5209 goto exit_slot_reset;
5210 } else
5211 goto exit_slot_reset;
5212 }
5213
5214exit_slot_reset:
5215 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: Return=%x\n"
5216 "device after reset\n", ha->host_no, __func__, ret);
5217 return ret;
5218}
5219
5220static void
5221qla4xxx_pci_resume(struct pci_dev *pdev)
5222{
5223 struct scsi_qla_host *ha = pci_get_drvdata(pdev);
5224 int ret;
5225
5226 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: pci_resume\n",
5227 ha->host_no, __func__);
5228
5229 ret = qla4xxx_wait_for_hba_online(ha);
5230 if (ret != QLA_SUCCESS) {
5231 ql4_printk(KERN_ERR, ha, "scsi%ld: %s: the device failed to "
5232 "resume I/O from slot/link_reset\n", ha->host_no,
5233 __func__);
5234 }
5235
5236 pci_cleanup_aer_uncorrect_error_status(pdev);
5237 clear_bit(AF_EEH_BUSY, &ha->flags);
5238}
5239
5240static struct pci_error_handlers qla4xxx_err_handler = {
5241 .error_detected = qla4xxx_pci_error_detected,
5242 .mmio_enabled = qla4xxx_pci_mmio_enabled,
5243 .slot_reset = qla4xxx_pci_slot_reset,
5244 .resume = qla4xxx_pci_resume,
5245};
5246
David Somayajuluafaf5a22006-09-19 10:28:00 -07005247static struct pci_device_id qla4xxx_pci_tbl[] = {
5248 {
5249 .vendor = PCI_VENDOR_ID_QLOGIC,
5250 .device = PCI_DEVICE_ID_QLOGIC_ISP4010,
5251 .subvendor = PCI_ANY_ID,
5252 .subdevice = PCI_ANY_ID,
5253 },
5254 {
5255 .vendor = PCI_VENDOR_ID_QLOGIC,
5256 .device = PCI_DEVICE_ID_QLOGIC_ISP4022,
5257 .subvendor = PCI_ANY_ID,
5258 .subdevice = PCI_ANY_ID,
5259 },
David C Somayajulud9150582006-11-15 17:38:40 -08005260 {
5261 .vendor = PCI_VENDOR_ID_QLOGIC,
5262 .device = PCI_DEVICE_ID_QLOGIC_ISP4032,
5263 .subvendor = PCI_ANY_ID,
5264 .subdevice = PCI_ANY_ID,
5265 },
Vikas Chaudharyf4f5df22010-07-28 15:53:44 +05305266 {
5267 .vendor = PCI_VENDOR_ID_QLOGIC,
5268 .device = PCI_DEVICE_ID_QLOGIC_ISP8022,
5269 .subvendor = PCI_ANY_ID,
5270 .subdevice = PCI_ANY_ID,
5271 },
David Somayajuluafaf5a22006-09-19 10:28:00 -07005272 {0, 0},
5273};
5274MODULE_DEVICE_TABLE(pci, qla4xxx_pci_tbl);
5275
Adrian Bunk47975472007-04-26 00:35:16 -07005276static struct pci_driver qla4xxx_pci_driver = {
David Somayajuluafaf5a22006-09-19 10:28:00 -07005277 .name = DRIVER_NAME,
5278 .id_table = qla4xxx_pci_tbl,
5279 .probe = qla4xxx_probe_adapter,
5280 .remove = qla4xxx_remove_adapter,
Lalit Chandivade2232be02010-07-30 14:38:47 +05305281 .err_handler = &qla4xxx_err_handler,
David Somayajuluafaf5a22006-09-19 10:28:00 -07005282};
5283
5284static int __init qla4xxx_module_init(void)
5285{
5286 int ret;
5287
5288 /* Allocate cache for SRBs. */
5289 srb_cachep = kmem_cache_create("qla4xxx_srbs", sizeof(struct srb), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09005290 SLAB_HWCACHE_ALIGN, NULL);
David Somayajuluafaf5a22006-09-19 10:28:00 -07005291 if (srb_cachep == NULL) {
5292 printk(KERN_ERR
5293 "%s: Unable to allocate SRB cache..."
5294 "Failing load!\n", DRIVER_NAME);
5295 ret = -ENOMEM;
5296 goto no_srp_cache;
5297 }
5298
5299 /* Derive version string. */
5300 strcpy(qla4xxx_version_str, QLA4XXX_DRIVER_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07005301 if (ql4xextended_error_logging)
David Somayajuluafaf5a22006-09-19 10:28:00 -07005302 strcat(qla4xxx_version_str, "-debug");
5303
5304 qla4xxx_scsi_transport =
5305 iscsi_register_transport(&qla4xxx_iscsi_transport);
5306 if (!qla4xxx_scsi_transport){
5307 ret = -ENODEV;
5308 goto release_srb_cache;
5309 }
5310
David Somayajuluafaf5a22006-09-19 10:28:00 -07005311 ret = pci_register_driver(&qla4xxx_pci_driver);
5312 if (ret)
5313 goto unregister_transport;
5314
5315 printk(KERN_INFO "QLogic iSCSI HBA Driver\n");
5316 return 0;
Doug Maxey5ae16db2006-10-05 23:50:07 -05005317
David Somayajuluafaf5a22006-09-19 10:28:00 -07005318unregister_transport:
5319 iscsi_unregister_transport(&qla4xxx_iscsi_transport);
5320release_srb_cache:
5321 kmem_cache_destroy(srb_cachep);
5322no_srp_cache:
5323 return ret;
5324}
5325
5326static void __exit qla4xxx_module_exit(void)
5327{
David Somayajuluafaf5a22006-09-19 10:28:00 -07005328 pci_unregister_driver(&qla4xxx_pci_driver);
5329 iscsi_unregister_transport(&qla4xxx_iscsi_transport);
5330 kmem_cache_destroy(srb_cachep);
5331}
5332
5333module_init(qla4xxx_module_init);
5334module_exit(qla4xxx_module_exit);
5335
5336MODULE_AUTHOR("QLogic Corporation");
5337MODULE_DESCRIPTION("QLogic iSCSI HBA Driver");
5338MODULE_LICENSE("GPL");
5339MODULE_VERSION(QLA4XXX_DRIVER_VERSION);