blob: bb160409b7cb90279481567b75c2b79770c7fb2f [file] [log] [blame]
David Somayajuluafaf5a22006-09-19 10:28:00 -07001/*
2 * QLogic iSCSI HBA Driver
Vikas Chaudhary4a4f51e2013-08-16 07:03:04 -04003 * Copyright (c) 2003-2013 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"
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -040021#include "ql4_83xx.h"
David Somayajuluafaf5a22006-09-19 10:28:00 -070022
23/*
24 * Driver version
25 */
Adrian Bunk47975472007-04-26 00:35:16 -070026static char qla4xxx_version_str[40];
David Somayajuluafaf5a22006-09-19 10:28:00 -070027
28/*
29 * SRB allocation cache
30 */
Christoph Lametere18b8902006-12-06 20:33:20 -080031static struct kmem_cache *srb_cachep;
David Somayajuluafaf5a22006-09-19 10:28:00 -070032
33/*
34 * Module parameter information and variables
35 */
Vikas Chaudharya7380a62012-02-27 03:08:56 -080036static int ql4xdisablesysfsboot = 1;
Mike Christie13483732011-12-01 21:38:41 -060037module_param(ql4xdisablesysfsboot, int, S_IRUGO | S_IWUSR);
38MODULE_PARM_DESC(ql4xdisablesysfsboot,
Karen Higginsa4e8a712012-01-11 02:44:20 -080039 " Set to disable exporting boot targets to sysfs.\n"
40 "\t\t 0 - Export boot targets\n"
41 "\t\t 1 - Do not export boot targets (Default)");
Mike Christie13483732011-12-01 21:38:41 -060042
Vikas Chaudhary3573bfb2012-02-27 03:08:57 -080043int ql4xdontresethba;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +053044module_param(ql4xdontresethba, int, S_IRUGO | S_IWUSR);
David Somayajuluafaf5a22006-09-19 10:28:00 -070045MODULE_PARM_DESC(ql4xdontresethba,
Karen Higginsa4e8a712012-01-11 02:44:20 -080046 " Don't reset the HBA for driver recovery.\n"
47 "\t\t 0 - It will reset HBA (Default)\n"
48 "\t\t 1 - It will NOT reset HBA");
David Somayajuluafaf5a22006-09-19 10:28:00 -070049
Karen Higginsa4e8a712012-01-11 02:44:20 -080050int ql4xextended_error_logging;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +053051module_param(ql4xextended_error_logging, int, S_IRUGO | S_IWUSR);
Andrew Vasquez11010fe2006-10-06 09:54:59 -070052MODULE_PARM_DESC(ql4xextended_error_logging,
Karen Higginsa4e8a712012-01-11 02:44:20 -080053 " Option to enable extended error logging.\n"
54 "\t\t 0 - no logging (Default)\n"
55 "\t\t 2 - debug logging");
David Somayajuluafaf5a22006-09-19 10:28:00 -070056
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +053057int ql4xenablemsix = 1;
58module_param(ql4xenablemsix, int, S_IRUGO|S_IWUSR);
59MODULE_PARM_DESC(ql4xenablemsix,
Karen Higginsa4e8a712012-01-11 02:44:20 -080060 " Set to enable MSI or MSI-X interrupt mechanism.\n"
61 "\t\t 0 = enable INTx interrupt mechanism.\n"
62 "\t\t 1 = enable MSI-X interrupt mechanism (Default).\n"
63 "\t\t 2 = enable MSI interrupt mechanism.");
David C Somayajulu477ffb92007-01-22 12:26:11 -080064
Mike Christied510d962008-07-11 19:50:33 -050065#define QL4_DEF_QDEPTH 32
Vikas Chaudhary8bb40332011-03-21 03:34:31 -070066static int ql4xmaxqdepth = QL4_DEF_QDEPTH;
67module_param(ql4xmaxqdepth, int, S_IRUGO | S_IWUSR);
68MODULE_PARM_DESC(ql4xmaxqdepth,
Karen Higginsa4e8a712012-01-11 02:44:20 -080069 " Maximum queue depth to report for target devices.\n"
70 "\t\t Default: 32.");
Mike Christied510d962008-07-11 19:50:33 -050071
Tej Parkashf7b4aa62012-04-30 04:12:19 -070072static int ql4xqfulltracking = 1;
73module_param(ql4xqfulltracking, int, S_IRUGO | S_IWUSR);
74MODULE_PARM_DESC(ql4xqfulltracking,
75 " Enable or disable dynamic tracking and adjustment of\n"
76 "\t\t scsi device queue depth.\n"
77 "\t\t 0 - Disable.\n"
78 "\t\t 1 - Enable. (Default)");
79
Vikas Chaudhary30387272011-03-21 03:34:32 -070080static int ql4xsess_recovery_tmo = QL4_SESS_RECOVERY_TMO;
81module_param(ql4xsess_recovery_tmo, int, S_IRUGO);
82MODULE_PARM_DESC(ql4xsess_recovery_tmo,
Vikas Chaudhary3573bfb2012-02-27 03:08:57 -080083 " Target Session Recovery Timeout.\n"
Karen Higginsa4e8a712012-01-11 02:44:20 -080084 "\t\t Default: 120 sec.");
Vikas Chaudhary30387272011-03-21 03:34:32 -070085
Tej Parkasha511b4a2014-02-24 22:06:57 -050086int ql4xmdcapmask = 0;
Tej Parkash068237c82012-05-18 04:41:44 -040087module_param(ql4xmdcapmask, int, S_IRUGO);
88MODULE_PARM_DESC(ql4xmdcapmask,
89 " Set the Minidump driver capture mask level.\n"
Tej Parkasha511b4a2014-02-24 22:06:57 -050090 "\t\t Default is 0 (firmware default capture mask)\n"
Tej Parkashb4109822014-02-24 22:06:58 -050091 "\t\t Can be set to 0x3, 0x7, 0xF, 0x1F, 0x3F, 0x7F, 0xFF");
Tej Parkash068237c82012-05-18 04:41:44 -040092
93int ql4xenablemd = 1;
94module_param(ql4xenablemd, int, S_IRUGO | S_IWUSR);
95MODULE_PARM_DESC(ql4xenablemd,
96 " Set to enable minidump.\n"
97 "\t\t 0 - disable minidump\n"
98 "\t\t 1 - enable minidump (Default)");
99
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500100static int qla4xxx_wait_for_hba_online(struct scsi_qla_host *ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700101/*
102 * SCSI host template entry points
103 */
Adrian Bunk47975472007-04-26 00:35:16 -0700104static void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700105
106/*
107 * iSCSI template entry points
108 */
Mike Christiefca9f042012-02-27 03:08:54 -0800109static int qla4xxx_session_get_param(struct iscsi_cls_session *cls_sess,
110 enum iscsi_param param, char *buf);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700111static int qla4xxx_conn_get_param(struct iscsi_cls_conn *conn,
112 enum iscsi_param param, char *buf);
Mike Christieaa1e93a2007-05-30 12:57:09 -0500113static int qla4xxx_host_get_param(struct Scsi_Host *shost,
114 enum iscsi_host_param param, char *buf);
Mike Christie00c31882011-10-06 03:56:59 -0500115static int qla4xxx_iface_set_param(struct Scsi_Host *shost, void *data,
116 uint32_t len);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500117static int qla4xxx_get_iface_param(struct iscsi_iface *iface,
118 enum iscsi_param_type param_type,
119 int param, char *buf);
Mike Christie5c656af2009-07-15 15:02:59 -0500120static enum blk_eh_timer_return qla4xxx_eh_cmd_timed_out(struct scsi_cmnd *sc);
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500121static struct iscsi_endpoint *qla4xxx_ep_connect(struct Scsi_Host *shost,
122 struct sockaddr *dst_addr,
123 int non_blocking);
124static int qla4xxx_ep_poll(struct iscsi_endpoint *ep, int timeout_ms);
125static void qla4xxx_ep_disconnect(struct iscsi_endpoint *ep);
126static int qla4xxx_get_ep_param(struct iscsi_endpoint *ep,
127 enum iscsi_param param, char *buf);
128static int qla4xxx_conn_start(struct iscsi_cls_conn *conn);
129static struct iscsi_cls_conn *
130qla4xxx_conn_create(struct iscsi_cls_session *cls_sess, uint32_t conn_idx);
131static int qla4xxx_conn_bind(struct iscsi_cls_session *cls_session,
132 struct iscsi_cls_conn *cls_conn,
133 uint64_t transport_fd, int is_leading);
134static void qla4xxx_conn_destroy(struct iscsi_cls_conn *conn);
135static struct iscsi_cls_session *
136qla4xxx_session_create(struct iscsi_endpoint *ep, uint16_t cmds_max,
137 uint16_t qdepth, uint32_t initial_cmdsn);
138static void qla4xxx_session_destroy(struct iscsi_cls_session *sess);
139static void qla4xxx_task_work(struct work_struct *wdata);
140static int qla4xxx_alloc_pdu(struct iscsi_task *, uint8_t);
141static int qla4xxx_task_xmit(struct iscsi_task *);
142static void qla4xxx_task_cleanup(struct iscsi_task *);
143static void qla4xxx_fail_session(struct iscsi_cls_session *cls_session);
144static void qla4xxx_conn_get_stats(struct iscsi_cls_conn *cls_conn,
145 struct iscsi_stats *stats);
Vikas Chaudharyc0b9d3f2012-02-13 18:30:49 +0530146static int qla4xxx_send_ping(struct Scsi_Host *shost, uint32_t iface_num,
147 uint32_t iface_type, uint32_t payload_size,
148 uint32_t pid, struct sockaddr *dst_addr);
Nilesh Javali376738a2012-02-27 03:08:52 -0800149static int qla4xxx_get_chap_list(struct Scsi_Host *shost, uint16_t chap_tbl_idx,
150 uint32_t *num_entries, char *buf);
151static int qla4xxx_delete_chap(struct Scsi_Host *shost, uint16_t chap_tbl_idx);
Adheer Chandravanshi26ffd7b2013-09-17 07:54:49 -0400152static int qla4xxx_set_chap_entry(struct Scsi_Host *shost, void *data,
153 int len);
Lalit Chandivade4161cee2013-11-22 05:28:19 -0500154static int qla4xxx_get_host_stats(struct Scsi_Host *shost, char *buf, int len);
Vikas Chaudharyc0b9d3f2012-02-13 18:30:49 +0530155
David Somayajuluafaf5a22006-09-19 10:28:00 -0700156/*
157 * SCSI host template entry points
158 */
Jeff Garzikf2812332010-11-16 02:10:29 -0500159static int qla4xxx_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +0530160static int qla4xxx_eh_abort(struct scsi_cmnd *cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700161static int qla4xxx_eh_device_reset(struct scsi_cmnd *cmd);
Mike Christiece545032008-02-29 18:25:20 -0600162static int qla4xxx_eh_target_reset(struct scsi_cmnd *cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700163static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd);
164static int qla4xxx_slave_alloc(struct scsi_device *device);
165static int qla4xxx_slave_configure(struct scsi_device *device);
166static void qla4xxx_slave_destroy(struct scsi_device *sdev);
Vikas Chaudhary5e9bcec2012-08-22 07:55:01 -0400167static umode_t qla4_attr_is_visible(int param_type, int param);
Vikas Chaudhary95d31262011-08-12 02:51:29 -0700168static int qla4xxx_host_reset(struct Scsi_Host *shost, int reset_type);
Tej Parkashf7b4aa62012-04-30 04:12:19 -0700169static int qla4xxx_change_queue_depth(struct scsi_device *sdev, int qdepth,
170 int reason);
David Somayajuluafaf5a22006-09-19 10:28:00 -0700171
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -0400172/*
173 * iSCSI Flash DDB sysfs entry points
174 */
175static int
176qla4xxx_sysfs_ddb_set_param(struct iscsi_bus_flash_session *fnode_sess,
177 struct iscsi_bus_flash_conn *fnode_conn,
178 void *data, int len);
179static int
180qla4xxx_sysfs_ddb_get_param(struct iscsi_bus_flash_session *fnode_sess,
181 int param, char *buf);
182static int qla4xxx_sysfs_ddb_add(struct Scsi_Host *shost, const char *buf,
183 int len);
184static int
185qla4xxx_sysfs_ddb_delete(struct iscsi_bus_flash_session *fnode_sess);
186static int qla4xxx_sysfs_ddb_login(struct iscsi_bus_flash_session *fnode_sess,
187 struct iscsi_bus_flash_conn *fnode_conn);
188static int qla4xxx_sysfs_ddb_logout(struct iscsi_bus_flash_session *fnode_sess,
189 struct iscsi_bus_flash_conn *fnode_conn);
190static int qla4xxx_sysfs_ddb_logout_sid(struct iscsi_cls_session *cls_sess);
191
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +0530192static struct qla4_8xxx_legacy_intr_set legacy_intr[] =
193 QLA82XX_LEGACY_INTR_CONFIG;
194
David Somayajuluafaf5a22006-09-19 10:28:00 -0700195static struct scsi_host_template qla4xxx_driver_template = {
196 .module = THIS_MODULE,
197 .name = DRIVER_NAME,
198 .proc_name = DRIVER_NAME,
199 .queuecommand = qla4xxx_queuecommand,
200
Vikas Chaudhary09a0f712010-04-28 11:42:24 +0530201 .eh_abort_handler = qla4xxx_eh_abort,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700202 .eh_device_reset_handler = qla4xxx_eh_device_reset,
Mike Christiece545032008-02-29 18:25:20 -0600203 .eh_target_reset_handler = qla4xxx_eh_target_reset,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700204 .eh_host_reset_handler = qla4xxx_eh_host_reset,
Mike Christie5c656af2009-07-15 15:02:59 -0500205 .eh_timed_out = qla4xxx_eh_cmd_timed_out,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700206
207 .slave_configure = qla4xxx_slave_configure,
208 .slave_alloc = qla4xxx_slave_alloc,
209 .slave_destroy = qla4xxx_slave_destroy,
Tej Parkashf7b4aa62012-04-30 04:12:19 -0700210 .change_queue_depth = qla4xxx_change_queue_depth,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700211
212 .this_id = -1,
213 .cmd_per_lun = 3,
214 .use_clustering = ENABLE_CLUSTERING,
215 .sg_tablesize = SG_ALL,
216
217 .max_sectors = 0xFFFF,
Harish Zunjarrao7ad633c2011-05-17 23:17:11 -0700218 .shost_attrs = qla4xxx_host_attrs,
Vikas Chaudhary95d31262011-08-12 02:51:29 -0700219 .host_reset = qla4xxx_host_reset,
Vikas Chaudharya3559432011-07-25 13:48:51 -0500220 .vendor_id = SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700221};
222
223static struct iscsi_transport qla4xxx_iscsi_transport = {
224 .owner = THIS_MODULE,
225 .name = DRIVER_NAME,
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500226 .caps = CAP_TEXT_NEGO |
227 CAP_DATA_PATH_OFFLOAD | CAP_HDRDGST |
228 CAP_DATADGST | CAP_LOGIN_OFFLOAD |
229 CAP_MULTI_R2T,
Vikas Chaudhary5e9bcec2012-08-22 07:55:01 -0400230 .attr_is_visible = qla4_attr_is_visible,
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500231 .create_session = qla4xxx_session_create,
232 .destroy_session = qla4xxx_session_destroy,
233 .start_conn = qla4xxx_conn_start,
234 .create_conn = qla4xxx_conn_create,
235 .bind_conn = qla4xxx_conn_bind,
236 .stop_conn = iscsi_conn_stop,
237 .destroy_conn = qla4xxx_conn_destroy,
238 .set_param = iscsi_set_param,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700239 .get_conn_param = qla4xxx_conn_get_param,
Mike Christiefca9f042012-02-27 03:08:54 -0800240 .get_session_param = qla4xxx_session_get_param,
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500241 .get_ep_param = qla4xxx_get_ep_param,
242 .ep_connect = qla4xxx_ep_connect,
243 .ep_poll = qla4xxx_ep_poll,
244 .ep_disconnect = qla4xxx_ep_disconnect,
245 .get_stats = qla4xxx_conn_get_stats,
246 .send_pdu = iscsi_conn_send_pdu,
247 .xmit_task = qla4xxx_task_xmit,
248 .cleanup_task = qla4xxx_task_cleanup,
249 .alloc_pdu = qla4xxx_alloc_pdu,
250
Mike Christieaa1e93a2007-05-30 12:57:09 -0500251 .get_host_param = qla4xxx_host_get_param,
Mike Christied00efe32011-07-25 13:48:38 -0500252 .set_iface_param = qla4xxx_iface_set_param,
Vikas Chaudharyed1086e2011-07-25 13:48:41 -0500253 .get_iface_param = qla4xxx_get_iface_param,
Vikas Chaudharya3559432011-07-25 13:48:51 -0500254 .bsg_request = qla4xxx_bsg_request,
Vikas Chaudharyc0b9d3f2012-02-13 18:30:49 +0530255 .send_ping = qla4xxx_send_ping,
Nilesh Javali376738a2012-02-27 03:08:52 -0800256 .get_chap = qla4xxx_get_chap_list,
257 .delete_chap = qla4xxx_delete_chap,
Adheer Chandravanshi26ffd7b2013-09-17 07:54:49 -0400258 .set_chap = qla4xxx_set_chap_entry,
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -0400259 .get_flashnode_param = qla4xxx_sysfs_ddb_get_param,
260 .set_flashnode_param = qla4xxx_sysfs_ddb_set_param,
261 .new_flashnode = qla4xxx_sysfs_ddb_add,
262 .del_flashnode = qla4xxx_sysfs_ddb_delete,
263 .login_flashnode = qla4xxx_sysfs_ddb_login,
264 .logout_flashnode = qla4xxx_sysfs_ddb_logout,
265 .logout_flashnode_sid = qla4xxx_sysfs_ddb_logout_sid,
Lalit Chandivade4161cee2013-11-22 05:28:19 -0500266 .get_host_stats = qla4xxx_get_host_stats,
David Somayajuluafaf5a22006-09-19 10:28:00 -0700267};
268
269static struct scsi_transport_template *qla4xxx_scsi_transport;
270
Vikas Chaudharyc0b9d3f2012-02-13 18:30:49 +0530271static int qla4xxx_send_ping(struct Scsi_Host *shost, uint32_t iface_num,
272 uint32_t iface_type, uint32_t payload_size,
273 uint32_t pid, struct sockaddr *dst_addr)
274{
275 struct scsi_qla_host *ha = to_qla_host(shost);
276 struct sockaddr_in *addr;
277 struct sockaddr_in6 *addr6;
278 uint32_t options = 0;
279 uint8_t ipaddr[IPv6_ADDR_LEN];
280 int rval;
281
282 memset(ipaddr, 0, IPv6_ADDR_LEN);
283 /* IPv4 to IPv4 */
284 if ((iface_type == ISCSI_IFACE_TYPE_IPV4) &&
285 (dst_addr->sa_family == AF_INET)) {
286 addr = (struct sockaddr_in *)dst_addr;
287 memcpy(ipaddr, &addr->sin_addr.s_addr, IP_ADDR_LEN);
288 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: IPv4 Ping src: %pI4 "
289 "dest: %pI4\n", __func__,
290 &ha->ip_config.ip_address, ipaddr));
291 rval = qla4xxx_ping_iocb(ha, options, payload_size, pid,
292 ipaddr);
293 if (rval)
294 rval = -EINVAL;
295 } else if ((iface_type == ISCSI_IFACE_TYPE_IPV6) &&
296 (dst_addr->sa_family == AF_INET6)) {
297 /* IPv6 to IPv6 */
298 addr6 = (struct sockaddr_in6 *)dst_addr;
299 memcpy(ipaddr, &addr6->sin6_addr.in6_u.u6_addr8, IPv6_ADDR_LEN);
300
301 options |= PING_IPV6_PROTOCOL_ENABLE;
302
303 /* Ping using LinkLocal address */
304 if ((iface_num == 0) || (iface_num == 1)) {
305 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: LinkLocal Ping "
306 "src: %pI6 dest: %pI6\n", __func__,
307 &ha->ip_config.ipv6_link_local_addr,
308 ipaddr));
309 options |= PING_IPV6_LINKLOCAL_ADDR;
310 rval = qla4xxx_ping_iocb(ha, options, payload_size,
311 pid, ipaddr);
312 } else {
313 ql4_printk(KERN_WARNING, ha, "%s: iface num = %d "
314 "not supported\n", __func__, iface_num);
315 rval = -ENOSYS;
316 goto exit_send_ping;
317 }
318
319 /*
320 * If ping using LinkLocal address fails, try ping using
321 * IPv6 address
322 */
323 if (rval != QLA_SUCCESS) {
324 options &= ~PING_IPV6_LINKLOCAL_ADDR;
325 if (iface_num == 0) {
326 options |= PING_IPV6_ADDR0;
327 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: IPv6 "
328 "Ping src: %pI6 "
329 "dest: %pI6\n", __func__,
330 &ha->ip_config.ipv6_addr0,
331 ipaddr));
332 } else if (iface_num == 1) {
333 options |= PING_IPV6_ADDR1;
334 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: IPv6 "
335 "Ping src: %pI6 "
336 "dest: %pI6\n", __func__,
337 &ha->ip_config.ipv6_addr1,
338 ipaddr));
339 }
340 rval = qla4xxx_ping_iocb(ha, options, payload_size,
341 pid, ipaddr);
342 if (rval)
343 rval = -EINVAL;
344 }
345 } else
346 rval = -ENOSYS;
347exit_send_ping:
348 return rval;
349}
350
Vikas Chaudhary5e9bcec2012-08-22 07:55:01 -0400351static umode_t qla4_attr_is_visible(int param_type, int param)
Mike Christie3128c6c2011-07-25 13:48:42 -0500352{
353 switch (param_type) {
Mike Christief27fb2e2011-07-25 13:48:45 -0500354 case ISCSI_HOST_PARAM:
355 switch (param) {
356 case ISCSI_HOST_PARAM_HWADDRESS:
357 case ISCSI_HOST_PARAM_IPADDRESS:
358 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Vikas Chaudhary3254dbe2012-01-19 03:06:56 -0800359 case ISCSI_HOST_PARAM_PORT_STATE:
360 case ISCSI_HOST_PARAM_PORT_SPEED:
Mike Christief27fb2e2011-07-25 13:48:45 -0500361 return S_IRUGO;
362 default:
363 return 0;
364 }
Mike Christie3128c6c2011-07-25 13:48:42 -0500365 case ISCSI_PARAM:
366 switch (param) {
Mike Christie590134f2011-10-17 22:42:13 -0500367 case ISCSI_PARAM_PERSISTENT_ADDRESS:
368 case ISCSI_PARAM_PERSISTENT_PORT:
Mike Christie3128c6c2011-07-25 13:48:42 -0500369 case ISCSI_PARAM_CONN_ADDRESS:
370 case ISCSI_PARAM_CONN_PORT:
Mike Christie1d063c12011-07-25 13:48:43 -0500371 case ISCSI_PARAM_TARGET_NAME:
372 case ISCSI_PARAM_TPGT:
373 case ISCSI_PARAM_TARGET_ALIAS:
Manish Rangankarb3a271a2011-07-25 13:48:53 -0500374 case ISCSI_PARAM_MAX_BURST:
375 case ISCSI_PARAM_MAX_R2T:
376 case ISCSI_PARAM_FIRST_BURST:
377 case ISCSI_PARAM_MAX_RECV_DLENGTH:
378 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
Mike Christiede379202011-08-14 20:42:56 -0500379 case ISCSI_PARAM_IFACE_NAME:
Mike Christiefca9f042012-02-27 03:08:54 -0800380 case ISCSI_PARAM_CHAP_OUT_IDX:
381 case ISCSI_PARAM_CHAP_IN_IDX:
382 case ISCSI_PARAM_USERNAME:
383 case ISCSI_PARAM_PASSWORD:
384 case ISCSI_PARAM_USERNAME_IN:
385 case ISCSI_PARAM_PASSWORD_IN:
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -0400386 case ISCSI_PARAM_AUTO_SND_TGT_DISABLE:
387 case ISCSI_PARAM_DISCOVERY_SESS:
388 case ISCSI_PARAM_PORTAL_TYPE:
389 case ISCSI_PARAM_CHAP_AUTH_EN:
390 case ISCSI_PARAM_DISCOVERY_LOGOUT_EN:
391 case ISCSI_PARAM_BIDI_CHAP_EN:
392 case ISCSI_PARAM_DISCOVERY_AUTH_OPTIONAL:
393 case ISCSI_PARAM_DEF_TIME2WAIT:
394 case ISCSI_PARAM_DEF_TIME2RETAIN:
395 case ISCSI_PARAM_HDRDGST_EN:
396 case ISCSI_PARAM_DATADGST_EN:
397 case ISCSI_PARAM_INITIAL_R2T_EN:
398 case ISCSI_PARAM_IMM_DATA_EN:
399 case ISCSI_PARAM_PDU_INORDER_EN:
400 case ISCSI_PARAM_DATASEQ_INORDER_EN:
401 case ISCSI_PARAM_MAX_SEGMENT_SIZE:
402 case ISCSI_PARAM_TCP_TIMESTAMP_STAT:
403 case ISCSI_PARAM_TCP_WSF_DISABLE:
404 case ISCSI_PARAM_TCP_NAGLE_DISABLE:
405 case ISCSI_PARAM_TCP_TIMER_SCALE:
406 case ISCSI_PARAM_TCP_TIMESTAMP_EN:
407 case ISCSI_PARAM_TCP_XMIT_WSF:
408 case ISCSI_PARAM_TCP_RECV_WSF:
409 case ISCSI_PARAM_IP_FRAGMENT_DISABLE:
410 case ISCSI_PARAM_IPV4_TOS:
411 case ISCSI_PARAM_IPV6_TC:
412 case ISCSI_PARAM_IPV6_FLOW_LABEL:
413 case ISCSI_PARAM_IS_FW_ASSIGNED_IPV6:
414 case ISCSI_PARAM_KEEPALIVE_TMO:
415 case ISCSI_PARAM_LOCAL_PORT:
416 case ISCSI_PARAM_ISID:
417 case ISCSI_PARAM_TSID:
418 case ISCSI_PARAM_DEF_TASKMGMT_TMO:
419 case ISCSI_PARAM_ERL:
420 case ISCSI_PARAM_STATSN:
421 case ISCSI_PARAM_EXP_STATSN:
422 case ISCSI_PARAM_DISCOVERY_PARENT_IDX:
423 case ISCSI_PARAM_DISCOVERY_PARENT_TYPE:
Adheer Chandravanshifb734ee32013-11-22 05:28:22 -0500424 case ISCSI_PARAM_LOCAL_IPADDR:
Mike Christie3128c6c2011-07-25 13:48:42 -0500425 return S_IRUGO;
426 default:
427 return 0;
428 }
Mike Christieb78dbba2011-07-25 13:48:44 -0500429 case ISCSI_NET_PARAM:
430 switch (param) {
431 case ISCSI_NET_PARAM_IPV4_ADDR:
432 case ISCSI_NET_PARAM_IPV4_SUBNET:
433 case ISCSI_NET_PARAM_IPV4_GW:
434 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
435 case ISCSI_NET_PARAM_IFACE_ENABLE:
436 case ISCSI_NET_PARAM_IPV6_LINKLOCAL:
437 case ISCSI_NET_PARAM_IPV6_ADDR:
438 case ISCSI_NET_PARAM_IPV6_ROUTER:
439 case ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG:
440 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG:
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -0500441 case ISCSI_NET_PARAM_VLAN_ID:
442 case ISCSI_NET_PARAM_VLAN_PRIORITY:
443 case ISCSI_NET_PARAM_VLAN_ENABLED:
Vikas Chaudhary943c1572011-08-01 03:26:13 -0700444 case ISCSI_NET_PARAM_MTU:
Vikas Chaudhary2ada7fc2011-08-01 03:26:19 -0700445 case ISCSI_NET_PARAM_PORT:
Harish Zunjarraof8e93412013-10-18 09:01:42 -0400446 case ISCSI_NET_PARAM_IPADDR_STATE:
447 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_STATE:
448 case ISCSI_NET_PARAM_IPV6_ROUTER_STATE:
449 case ISCSI_NET_PARAM_DELAYED_ACK_EN:
450 case ISCSI_NET_PARAM_TCP_NAGLE_DISABLE:
451 case ISCSI_NET_PARAM_TCP_WSF_DISABLE:
452 case ISCSI_NET_PARAM_TCP_WSF:
453 case ISCSI_NET_PARAM_TCP_TIMER_SCALE:
454 case ISCSI_NET_PARAM_TCP_TIMESTAMP_EN:
455 case ISCSI_NET_PARAM_CACHE_ID:
456 case ISCSI_NET_PARAM_IPV4_DHCP_DNS_ADDR_EN:
457 case ISCSI_NET_PARAM_IPV4_DHCP_SLP_DA_EN:
458 case ISCSI_NET_PARAM_IPV4_TOS_EN:
459 case ISCSI_NET_PARAM_IPV4_TOS:
460 case ISCSI_NET_PARAM_IPV4_GRAT_ARP_EN:
461 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID_EN:
462 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID:
463 case ISCSI_NET_PARAM_IPV4_DHCP_REQ_VENDOR_ID_EN:
464 case ISCSI_NET_PARAM_IPV4_DHCP_USE_VENDOR_ID_EN:
465 case ISCSI_NET_PARAM_IPV4_DHCP_VENDOR_ID:
466 case ISCSI_NET_PARAM_IPV4_DHCP_LEARN_IQN_EN:
467 case ISCSI_NET_PARAM_IPV4_FRAGMENT_DISABLE:
468 case ISCSI_NET_PARAM_IPV4_IN_FORWARD_EN:
469 case ISCSI_NET_PARAM_REDIRECT_EN:
470 case ISCSI_NET_PARAM_IPV4_TTL:
471 case ISCSI_NET_PARAM_IPV6_GRAT_NEIGHBOR_ADV_EN:
472 case ISCSI_NET_PARAM_IPV6_MLD_EN:
473 case ISCSI_NET_PARAM_IPV6_FLOW_LABEL:
474 case ISCSI_NET_PARAM_IPV6_TRAFFIC_CLASS:
475 case ISCSI_NET_PARAM_IPV6_HOP_LIMIT:
476 case ISCSI_NET_PARAM_IPV6_ND_REACHABLE_TMO:
477 case ISCSI_NET_PARAM_IPV6_ND_REXMIT_TIME:
478 case ISCSI_NET_PARAM_IPV6_ND_STALE_TMO:
479 case ISCSI_NET_PARAM_IPV6_DUP_ADDR_DETECT_CNT:
480 case ISCSI_NET_PARAM_IPV6_RTR_ADV_LINK_MTU:
481 return S_IRUGO;
482 default:
483 return 0;
484 }
485 case ISCSI_IFACE_PARAM:
486 switch (param) {
487 case ISCSI_IFACE_PARAM_DEF_TASKMGMT_TMO:
488 case ISCSI_IFACE_PARAM_HDRDGST_EN:
489 case ISCSI_IFACE_PARAM_DATADGST_EN:
490 case ISCSI_IFACE_PARAM_IMM_DATA_EN:
491 case ISCSI_IFACE_PARAM_INITIAL_R2T_EN:
492 case ISCSI_IFACE_PARAM_DATASEQ_INORDER_EN:
493 case ISCSI_IFACE_PARAM_PDU_INORDER_EN:
494 case ISCSI_IFACE_PARAM_ERL:
495 case ISCSI_IFACE_PARAM_MAX_RECV_DLENGTH:
496 case ISCSI_IFACE_PARAM_FIRST_BURST:
497 case ISCSI_IFACE_PARAM_MAX_R2T:
498 case ISCSI_IFACE_PARAM_MAX_BURST:
499 case ISCSI_IFACE_PARAM_CHAP_AUTH_EN:
500 case ISCSI_IFACE_PARAM_BIDI_CHAP_EN:
501 case ISCSI_IFACE_PARAM_DISCOVERY_AUTH_OPTIONAL:
502 case ISCSI_IFACE_PARAM_DISCOVERY_LOGOUT_EN:
503 case ISCSI_IFACE_PARAM_STRICT_LOGIN_COMP_EN:
504 case ISCSI_IFACE_PARAM_INITIATOR_NAME:
Mike Christieb78dbba2011-07-25 13:48:44 -0500505 return S_IRUGO;
506 default:
507 return 0;
508 }
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -0400509 case ISCSI_FLASHNODE_PARAM:
510 switch (param) {
511 case ISCSI_FLASHNODE_IS_FW_ASSIGNED_IPV6:
512 case ISCSI_FLASHNODE_PORTAL_TYPE:
513 case ISCSI_FLASHNODE_AUTO_SND_TGT_DISABLE:
514 case ISCSI_FLASHNODE_DISCOVERY_SESS:
515 case ISCSI_FLASHNODE_ENTRY_EN:
516 case ISCSI_FLASHNODE_HDR_DGST_EN:
517 case ISCSI_FLASHNODE_DATA_DGST_EN:
518 case ISCSI_FLASHNODE_IMM_DATA_EN:
519 case ISCSI_FLASHNODE_INITIAL_R2T_EN:
520 case ISCSI_FLASHNODE_DATASEQ_INORDER:
521 case ISCSI_FLASHNODE_PDU_INORDER:
522 case ISCSI_FLASHNODE_CHAP_AUTH_EN:
523 case ISCSI_FLASHNODE_SNACK_REQ_EN:
524 case ISCSI_FLASHNODE_DISCOVERY_LOGOUT_EN:
525 case ISCSI_FLASHNODE_BIDI_CHAP_EN:
526 case ISCSI_FLASHNODE_DISCOVERY_AUTH_OPTIONAL:
527 case ISCSI_FLASHNODE_ERL:
528 case ISCSI_FLASHNODE_TCP_TIMESTAMP_STAT:
529 case ISCSI_FLASHNODE_TCP_NAGLE_DISABLE:
530 case ISCSI_FLASHNODE_TCP_WSF_DISABLE:
531 case ISCSI_FLASHNODE_TCP_TIMER_SCALE:
532 case ISCSI_FLASHNODE_TCP_TIMESTAMP_EN:
533 case ISCSI_FLASHNODE_IP_FRAG_DISABLE:
534 case ISCSI_FLASHNODE_MAX_RECV_DLENGTH:
535 case ISCSI_FLASHNODE_MAX_XMIT_DLENGTH:
536 case ISCSI_FLASHNODE_FIRST_BURST:
537 case ISCSI_FLASHNODE_DEF_TIME2WAIT:
538 case ISCSI_FLASHNODE_DEF_TIME2RETAIN:
539 case ISCSI_FLASHNODE_MAX_R2T:
540 case ISCSI_FLASHNODE_KEEPALIVE_TMO:
541 case ISCSI_FLASHNODE_ISID:
542 case ISCSI_FLASHNODE_TSID:
543 case ISCSI_FLASHNODE_PORT:
544 case ISCSI_FLASHNODE_MAX_BURST:
545 case ISCSI_FLASHNODE_DEF_TASKMGMT_TMO:
546 case ISCSI_FLASHNODE_IPADDR:
547 case ISCSI_FLASHNODE_ALIAS:
548 case ISCSI_FLASHNODE_REDIRECT_IPADDR:
549 case ISCSI_FLASHNODE_MAX_SEGMENT_SIZE:
550 case ISCSI_FLASHNODE_LOCAL_PORT:
551 case ISCSI_FLASHNODE_IPV4_TOS:
552 case ISCSI_FLASHNODE_IPV6_TC:
553 case ISCSI_FLASHNODE_IPV6_FLOW_LABEL:
554 case ISCSI_FLASHNODE_NAME:
555 case ISCSI_FLASHNODE_TPGT:
556 case ISCSI_FLASHNODE_LINK_LOCAL_IPV6:
557 case ISCSI_FLASHNODE_DISCOVERY_PARENT_IDX:
558 case ISCSI_FLASHNODE_DISCOVERY_PARENT_TYPE:
559 case ISCSI_FLASHNODE_TCP_XMIT_WSF:
560 case ISCSI_FLASHNODE_TCP_RECV_WSF:
561 case ISCSI_FLASHNODE_CHAP_OUT_IDX:
562 case ISCSI_FLASHNODE_USERNAME:
563 case ISCSI_FLASHNODE_PASSWORD:
564 case ISCSI_FLASHNODE_STATSN:
565 case ISCSI_FLASHNODE_EXP_STATSN:
566 case ISCSI_FLASHNODE_IS_BOOT_TGT:
567 return S_IRUGO;
568 default:
569 return 0;
570 }
Mike Christie3128c6c2011-07-25 13:48:42 -0500571 }
572
573 return 0;
574}
575
Adheer Chandravanshiea507a22013-11-22 05:28:23 -0500576/**
577 * qla4xxx_create chap_list - Create CHAP list from FLASH
578 * @ha: pointer to adapter structure
579 *
580 * Read flash and make a list of CHAP entries, during login when a CHAP entry
581 * is received, it will be checked in this list. If entry exist then the CHAP
582 * entry index is set in the DDB. If CHAP entry does not exist in this list
583 * then a new entry is added in FLASH in CHAP table and the index obtained is
584 * used in the DDB.
585 **/
586static void qla4xxx_create_chap_list(struct scsi_qla_host *ha)
587{
588 int rval = 0;
589 uint8_t *chap_flash_data = NULL;
590 uint32_t offset;
591 dma_addr_t chap_dma;
592 uint32_t chap_size = 0;
593
594 if (is_qla40XX(ha))
595 chap_size = MAX_CHAP_ENTRIES_40XX *
596 sizeof(struct ql4_chap_table);
597 else /* Single region contains CHAP info for both
598 * ports which is divided into half for each port.
599 */
600 chap_size = ha->hw.flt_chap_size / 2;
601
602 chap_flash_data = dma_alloc_coherent(&ha->pdev->dev, chap_size,
603 &chap_dma, GFP_KERNEL);
604 if (!chap_flash_data) {
605 ql4_printk(KERN_ERR, ha, "No memory for chap_flash_data\n");
606 return;
607 }
608
609 if (is_qla40XX(ha)) {
610 offset = FLASH_CHAP_OFFSET;
611 } else {
612 offset = FLASH_RAW_ACCESS_ADDR + (ha->hw.flt_region_chap << 2);
613 if (ha->port_num == 1)
614 offset += chap_size;
615 }
616
617 rval = qla4xxx_get_flash(ha, chap_dma, offset, chap_size);
618 if (rval != QLA_SUCCESS)
619 goto exit_chap_list;
620
621 if (ha->chap_list == NULL)
622 ha->chap_list = vmalloc(chap_size);
623 if (ha->chap_list == NULL) {
624 ql4_printk(KERN_ERR, ha, "No memory for ha->chap_list\n");
625 goto exit_chap_list;
626 }
627
628 memset(ha->chap_list, 0, chap_size);
629 memcpy(ha->chap_list, chap_flash_data, chap_size);
630
631exit_chap_list:
632 dma_free_coherent(&ha->pdev->dev, chap_size, chap_flash_data, chap_dma);
633}
634
Adheer Chandravanshi26ffd7b2013-09-17 07:54:49 -0400635static int qla4xxx_get_chap_by_index(struct scsi_qla_host *ha,
636 int16_t chap_index,
637 struct ql4_chap_table **chap_entry)
638{
639 int rval = QLA_ERROR;
640 int max_chap_entries;
641
642 if (!ha->chap_list) {
643 ql4_printk(KERN_ERR, ha, "CHAP table cache is empty!\n");
644 rval = QLA_ERROR;
645 goto exit_get_chap;
646 }
647
648 if (is_qla80XX(ha))
649 max_chap_entries = (ha->hw.flt_chap_size / 2) /
650 sizeof(struct ql4_chap_table);
651 else
652 max_chap_entries = MAX_CHAP_ENTRIES_40XX;
653
654 if (chap_index > max_chap_entries) {
655 ql4_printk(KERN_ERR, ha, "Invalid Chap index\n");
656 rval = QLA_ERROR;
657 goto exit_get_chap;
658 }
659
660 *chap_entry = (struct ql4_chap_table *)ha->chap_list + chap_index;
661 if ((*chap_entry)->cookie !=
662 __constant_cpu_to_le16(CHAP_VALID_COOKIE)) {
663 rval = QLA_ERROR;
664 *chap_entry = NULL;
665 } else {
666 rval = QLA_SUCCESS;
667 }
668
669exit_get_chap:
670 return rval;
671}
672
673/**
674 * qla4xxx_find_free_chap_index - Find the first free chap index
675 * @ha: pointer to adapter structure
676 * @chap_index: CHAP index to be returned
677 *
678 * Find the first free chap index available in the chap table
679 *
680 * Note: Caller should acquire the chap lock before getting here.
681 **/
682static int qla4xxx_find_free_chap_index(struct scsi_qla_host *ha,
683 uint16_t *chap_index)
684{
685 int i, rval;
686 int free_index = -1;
687 int max_chap_entries = 0;
688 struct ql4_chap_table *chap_table;
689
690 if (is_qla80XX(ha))
691 max_chap_entries = (ha->hw.flt_chap_size / 2) /
692 sizeof(struct ql4_chap_table);
693 else
694 max_chap_entries = MAX_CHAP_ENTRIES_40XX;
695
696 if (!ha->chap_list) {
697 ql4_printk(KERN_ERR, ha, "CHAP table cache is empty!\n");
698 rval = QLA_ERROR;
699 goto exit_find_chap;
700 }
701
702 for (i = 0; i < max_chap_entries; i++) {
703 chap_table = (struct ql4_chap_table *)ha->chap_list + i;
704
705 if ((chap_table->cookie !=
706 __constant_cpu_to_le16(CHAP_VALID_COOKIE)) &&
707 (i > MAX_RESRV_CHAP_IDX)) {
708 free_index = i;
709 break;
710 }
711 }
712
713 if (free_index != -1) {
714 *chap_index = free_index;
715 rval = QLA_SUCCESS;
716 } else {
717 rval = QLA_ERROR;
718 }
719
720exit_find_chap:
721 return rval;
722}
723
Nilesh Javali376738a2012-02-27 03:08:52 -0800724static int qla4xxx_get_chap_list(struct Scsi_Host *shost, uint16_t chap_tbl_idx,
725 uint32_t *num_entries, char *buf)
726{
727 struct scsi_qla_host *ha = to_qla_host(shost);
728 struct ql4_chap_table *chap_table;
729 struct iscsi_chap_rec *chap_rec;
730 int max_chap_entries = 0;
731 int valid_chap_entries = 0;
732 int ret = 0, i;
733
Vikas Chaudharyd11b0ca2013-03-22 07:08:31 -0400734 if (is_qla80XX(ha))
Nilesh Javali376738a2012-02-27 03:08:52 -0800735 max_chap_entries = (ha->hw.flt_chap_size / 2) /
736 sizeof(struct ql4_chap_table);
737 else
738 max_chap_entries = MAX_CHAP_ENTRIES_40XX;
739
740 ql4_printk(KERN_INFO, ha, "%s: num_entries = %d, CHAP idx = %d\n",
741 __func__, *num_entries, chap_tbl_idx);
742
743 if (!buf) {
744 ret = -ENOMEM;
745 goto exit_get_chap_list;
746 }
747
Adheer Chandravanshiea507a22013-11-22 05:28:23 -0500748 qla4xxx_create_chap_list(ha);
749
Nilesh Javali376738a2012-02-27 03:08:52 -0800750 chap_rec = (struct iscsi_chap_rec *) buf;
751 mutex_lock(&ha->chap_sem);
752 for (i = chap_tbl_idx; i < max_chap_entries; i++) {
753 chap_table = (struct ql4_chap_table *)ha->chap_list + i;
754 if (chap_table->cookie !=
755 __constant_cpu_to_le16(CHAP_VALID_COOKIE))
756 continue;
757
758 chap_rec->chap_tbl_idx = i;
759 strncpy(chap_rec->username, chap_table->name,
760 ISCSI_CHAP_AUTH_NAME_MAX_LEN);
761 strncpy(chap_rec->password, chap_table->secret,
762 QL4_CHAP_MAX_SECRET_LEN);
763 chap_rec->password_length = chap_table->secret_len;
764
765 if (chap_table->flags & BIT_7) /* local */
766 chap_rec->chap_type = CHAP_TYPE_OUT;
767
768 if (chap_table->flags & BIT_6) /* peer */
769 chap_rec->chap_type = CHAP_TYPE_IN;
770
771 chap_rec++;
772
773 valid_chap_entries++;
774 if (valid_chap_entries == *num_entries)
775 break;
776 else
777 continue;
778 }
779 mutex_unlock(&ha->chap_sem);
780
781exit_get_chap_list:
782 ql4_printk(KERN_INFO, ha, "%s: Valid CHAP Entries = %d\n",
783 __func__, valid_chap_entries);
784 *num_entries = valid_chap_entries;
785 return ret;
786}
787
788static int __qla4xxx_is_chap_active(struct device *dev, void *data)
789{
790 int ret = 0;
791 uint16_t *chap_tbl_idx = (uint16_t *) data;
792 struct iscsi_cls_session *cls_session;
793 struct iscsi_session *sess;
794 struct ddb_entry *ddb_entry;
795
796 if (!iscsi_is_session_dev(dev))
797 goto exit_is_chap_active;
798
799 cls_session = iscsi_dev_to_session(dev);
800 sess = cls_session->dd_data;
801 ddb_entry = sess->dd_data;
802
803 if (iscsi_session_chkready(cls_session))
804 goto exit_is_chap_active;
805
806 if (ddb_entry->chap_tbl_idx == *chap_tbl_idx)
807 ret = 1;
808
809exit_is_chap_active:
810 return ret;
811}
812
813static int qla4xxx_is_chap_active(struct Scsi_Host *shost,
814 uint16_t chap_tbl_idx)
815{
816 int ret = 0;
817
818 ret = device_for_each_child(&shost->shost_gendev, &chap_tbl_idx,
819 __qla4xxx_is_chap_active);
820
821 return ret;
822}
823
824static int qla4xxx_delete_chap(struct Scsi_Host *shost, uint16_t chap_tbl_idx)
825{
826 struct scsi_qla_host *ha = to_qla_host(shost);
827 struct ql4_chap_table *chap_table;
828 dma_addr_t chap_dma;
829 int max_chap_entries = 0;
830 uint32_t offset = 0;
831 uint32_t chap_size;
832 int ret = 0;
833
834 chap_table = dma_pool_alloc(ha->chap_dma_pool, GFP_KERNEL, &chap_dma);
835 if (chap_table == NULL)
836 return -ENOMEM;
837
838 memset(chap_table, 0, sizeof(struct ql4_chap_table));
839
Vikas Chaudharyd11b0ca2013-03-22 07:08:31 -0400840 if (is_qla80XX(ha))
Nilesh Javali376738a2012-02-27 03:08:52 -0800841 max_chap_entries = (ha->hw.flt_chap_size / 2) /
842 sizeof(struct ql4_chap_table);
843 else
844 max_chap_entries = MAX_CHAP_ENTRIES_40XX;
845
846 if (chap_tbl_idx > max_chap_entries) {
847 ret = -EINVAL;
848 goto exit_delete_chap;
849 }
850
851 /* Check if chap index is in use.
852 * If chap is in use don't delet chap entry */
853 ret = qla4xxx_is_chap_active(shost, chap_tbl_idx);
854 if (ret) {
855 ql4_printk(KERN_INFO, ha, "CHAP entry %d is in use, cannot "
856 "delete from flash\n", chap_tbl_idx);
857 ret = -EBUSY;
858 goto exit_delete_chap;
859 }
860
861 chap_size = sizeof(struct ql4_chap_table);
862 if (is_qla40XX(ha))
863 offset = FLASH_CHAP_OFFSET | (chap_tbl_idx * chap_size);
864 else {
865 offset = FLASH_RAW_ACCESS_ADDR + (ha->hw.flt_region_chap << 2);
866 /* flt_chap_size is CHAP table size for both ports
867 * so divide it by 2 to calculate the offset for second port
868 */
869 if (ha->port_num == 1)
870 offset += (ha->hw.flt_chap_size / 2);
871 offset += (chap_tbl_idx * chap_size);
872 }
873
874 ret = qla4xxx_get_flash(ha, chap_dma, offset, chap_size);
875 if (ret != QLA_SUCCESS) {
876 ret = -EINVAL;
877 goto exit_delete_chap;
878 }
879
880 DEBUG2(ql4_printk(KERN_INFO, ha, "Chap Cookie: x%x\n",
881 __le16_to_cpu(chap_table->cookie)));
882
883 if (__le16_to_cpu(chap_table->cookie) != CHAP_VALID_COOKIE) {
884 ql4_printk(KERN_ERR, ha, "No valid chap entry found\n");
885 goto exit_delete_chap;
886 }
887
888 chap_table->cookie = __constant_cpu_to_le16(0xFFFF);
889
890 offset = FLASH_CHAP_OFFSET |
891 (chap_tbl_idx * sizeof(struct ql4_chap_table));
892 ret = qla4xxx_set_flash(ha, chap_dma, offset, chap_size,
893 FLASH_OPT_RMW_COMMIT);
894 if (ret == QLA_SUCCESS && ha->chap_list) {
895 mutex_lock(&ha->chap_sem);
896 /* Update ha chap_list cache */
897 memcpy((struct ql4_chap_table *)ha->chap_list + chap_tbl_idx,
898 chap_table, sizeof(struct ql4_chap_table));
899 mutex_unlock(&ha->chap_sem);
900 }
901 if (ret != QLA_SUCCESS)
902 ret = -EINVAL;
903
904exit_delete_chap:
905 dma_pool_free(ha->chap_dma_pool, chap_table, chap_dma);
906 return ret;
907}
908
Adheer Chandravanshi26ffd7b2013-09-17 07:54:49 -0400909/**
910 * qla4xxx_set_chap_entry - Make chap entry with given information
911 * @shost: pointer to host
912 * @data: chap info - credentials, index and type to make chap entry
913 * @len: length of data
914 *
915 * Add or update chap entry with the given information
916 **/
917static int qla4xxx_set_chap_entry(struct Scsi_Host *shost, void *data, int len)
918{
919 struct scsi_qla_host *ha = to_qla_host(shost);
920 struct iscsi_chap_rec chap_rec;
921 struct ql4_chap_table *chap_entry = NULL;
922 struct iscsi_param_info *param_info;
923 struct nlattr *attr;
924 int max_chap_entries = 0;
925 int type;
926 int rem = len;
927 int rc = 0;
Dan Carpenter3c60cfd2013-11-13 10:48:11 +0300928 int size;
Adheer Chandravanshi26ffd7b2013-09-17 07:54:49 -0400929
930 memset(&chap_rec, 0, sizeof(chap_rec));
931
932 nla_for_each_attr(attr, data, len, rem) {
933 param_info = nla_data(attr);
934
935 switch (param_info->param) {
936 case ISCSI_CHAP_PARAM_INDEX:
937 chap_rec.chap_tbl_idx = *(uint16_t *)param_info->value;
938 break;
939 case ISCSI_CHAP_PARAM_CHAP_TYPE:
940 chap_rec.chap_type = param_info->value[0];
941 break;
942 case ISCSI_CHAP_PARAM_USERNAME:
Dan Carpenter3c60cfd2013-11-13 10:48:11 +0300943 size = min_t(size_t, sizeof(chap_rec.username),
944 param_info->len);
945 memcpy(chap_rec.username, param_info->value, size);
Adheer Chandravanshi26ffd7b2013-09-17 07:54:49 -0400946 break;
947 case ISCSI_CHAP_PARAM_PASSWORD:
Dan Carpenter3c60cfd2013-11-13 10:48:11 +0300948 size = min_t(size_t, sizeof(chap_rec.password),
949 param_info->len);
950 memcpy(chap_rec.password, param_info->value, size);
Adheer Chandravanshi26ffd7b2013-09-17 07:54:49 -0400951 break;
952 case ISCSI_CHAP_PARAM_PASSWORD_LEN:
953 chap_rec.password_length = param_info->value[0];
954 break;
955 default:
956 ql4_printk(KERN_ERR, ha,
957 "%s: No such sysfs attribute\n", __func__);
958 rc = -ENOSYS;
959 goto exit_set_chap;
960 };
961 }
962
963 if (chap_rec.chap_type == CHAP_TYPE_IN)
964 type = BIDI_CHAP;
965 else
966 type = LOCAL_CHAP;
967
968 if (is_qla80XX(ha))
969 max_chap_entries = (ha->hw.flt_chap_size / 2) /
970 sizeof(struct ql4_chap_table);
971 else
972 max_chap_entries = MAX_CHAP_ENTRIES_40XX;
973
974 mutex_lock(&ha->chap_sem);
975 if (chap_rec.chap_tbl_idx < max_chap_entries) {
976 rc = qla4xxx_get_chap_by_index(ha, chap_rec.chap_tbl_idx,
977 &chap_entry);
978 if (!rc) {
979 if (!(type == qla4xxx_get_chap_type(chap_entry))) {
980 ql4_printk(KERN_INFO, ha,
981 "Type mismatch for CHAP entry %d\n",
982 chap_rec.chap_tbl_idx);
983 rc = -EINVAL;
984 goto exit_unlock_chap;
985 }
986
987 /* If chap index is in use then don't modify it */
988 rc = qla4xxx_is_chap_active(shost,
989 chap_rec.chap_tbl_idx);
990 if (rc) {
991 ql4_printk(KERN_INFO, ha,
992 "CHAP entry %d is in use\n",
993 chap_rec.chap_tbl_idx);
994 rc = -EBUSY;
995 goto exit_unlock_chap;
996 }
997 }
998 } else {
999 rc = qla4xxx_find_free_chap_index(ha, &chap_rec.chap_tbl_idx);
1000 if (rc) {
1001 ql4_printk(KERN_INFO, ha, "CHAP entry not available\n");
1002 rc = -EBUSY;
1003 goto exit_unlock_chap;
1004 }
1005 }
1006
1007 rc = qla4xxx_set_chap(ha, chap_rec.username, chap_rec.password,
1008 chap_rec.chap_tbl_idx, type);
1009
1010exit_unlock_chap:
1011 mutex_unlock(&ha->chap_sem);
1012
1013exit_set_chap:
1014 return rc;
1015}
1016
Lalit Chandivade4161cee2013-11-22 05:28:19 -05001017
1018static int qla4xxx_get_host_stats(struct Scsi_Host *shost, char *buf, int len)
1019{
1020 struct scsi_qla_host *ha = to_qla_host(shost);
1021 struct iscsi_offload_host_stats *host_stats = NULL;
1022 int host_stats_size;
1023 int ret = 0;
1024 int ddb_idx = 0;
1025 struct ql_iscsi_stats *ql_iscsi_stats = NULL;
1026 int stats_size;
1027 dma_addr_t iscsi_stats_dma;
1028
1029 DEBUG2(ql4_printk(KERN_INFO, ha, "Func: %s\n", __func__));
1030
1031 host_stats_size = sizeof(struct iscsi_offload_host_stats);
1032
1033 if (host_stats_size != len) {
1034 ql4_printk(KERN_INFO, ha, "%s: host_stats size mismatch expected = %d, is = %d\n",
1035 __func__, len, host_stats_size);
1036 ret = -EINVAL;
1037 goto exit_host_stats;
1038 }
1039 host_stats = (struct iscsi_offload_host_stats *)buf;
1040
1041 if (!buf) {
1042 ret = -ENOMEM;
1043 goto exit_host_stats;
1044 }
1045
1046 stats_size = PAGE_ALIGN(sizeof(struct ql_iscsi_stats));
1047
1048 ql_iscsi_stats = dma_alloc_coherent(&ha->pdev->dev, stats_size,
1049 &iscsi_stats_dma, GFP_KERNEL);
1050 if (!ql_iscsi_stats) {
1051 ql4_printk(KERN_ERR, ha,
1052 "Unable to allocate memory for iscsi stats\n");
1053 goto exit_host_stats;
1054 }
1055
1056 ret = qla4xxx_get_mgmt_data(ha, ddb_idx, stats_size,
1057 iscsi_stats_dma);
1058 if (ret != QLA_SUCCESS) {
1059 ql4_printk(KERN_ERR, ha,
1060 "Unable to retrieve iscsi stats\n");
1061 goto exit_host_stats;
1062 }
1063 host_stats->mactx_frames = le64_to_cpu(ql_iscsi_stats->mac_tx_frames);
1064 host_stats->mactx_bytes = le64_to_cpu(ql_iscsi_stats->mac_tx_bytes);
1065 host_stats->mactx_multicast_frames =
1066 le64_to_cpu(ql_iscsi_stats->mac_tx_multicast_frames);
1067 host_stats->mactx_broadcast_frames =
1068 le64_to_cpu(ql_iscsi_stats->mac_tx_broadcast_frames);
1069 host_stats->mactx_pause_frames =
1070 le64_to_cpu(ql_iscsi_stats->mac_tx_pause_frames);
1071 host_stats->mactx_control_frames =
1072 le64_to_cpu(ql_iscsi_stats->mac_tx_control_frames);
1073 host_stats->mactx_deferral =
1074 le64_to_cpu(ql_iscsi_stats->mac_tx_deferral);
1075 host_stats->mactx_excess_deferral =
1076 le64_to_cpu(ql_iscsi_stats->mac_tx_excess_deferral);
1077 host_stats->mactx_late_collision =
1078 le64_to_cpu(ql_iscsi_stats->mac_tx_late_collision);
1079 host_stats->mactx_abort = le64_to_cpu(ql_iscsi_stats->mac_tx_abort);
1080 host_stats->mactx_single_collision =
1081 le64_to_cpu(ql_iscsi_stats->mac_tx_single_collision);
1082 host_stats->mactx_multiple_collision =
1083 le64_to_cpu(ql_iscsi_stats->mac_tx_multiple_collision);
1084 host_stats->mactx_collision =
1085 le64_to_cpu(ql_iscsi_stats->mac_tx_collision);
1086 host_stats->mactx_frames_dropped =
1087 le64_to_cpu(ql_iscsi_stats->mac_tx_frames_dropped);
1088 host_stats->mactx_jumbo_frames =
1089 le64_to_cpu(ql_iscsi_stats->mac_tx_jumbo_frames);
1090 host_stats->macrx_frames = le64_to_cpu(ql_iscsi_stats->mac_rx_frames);
1091 host_stats->macrx_bytes = le64_to_cpu(ql_iscsi_stats->mac_rx_bytes);
1092 host_stats->macrx_unknown_control_frames =
1093 le64_to_cpu(ql_iscsi_stats->mac_rx_unknown_control_frames);
1094 host_stats->macrx_pause_frames =
1095 le64_to_cpu(ql_iscsi_stats->mac_rx_pause_frames);
1096 host_stats->macrx_control_frames =
1097 le64_to_cpu(ql_iscsi_stats->mac_rx_control_frames);
1098 host_stats->macrx_dribble =
1099 le64_to_cpu(ql_iscsi_stats->mac_rx_dribble);
1100 host_stats->macrx_frame_length_error =
1101 le64_to_cpu(ql_iscsi_stats->mac_rx_frame_length_error);
1102 host_stats->macrx_jabber = le64_to_cpu(ql_iscsi_stats->mac_rx_jabber);
1103 host_stats->macrx_carrier_sense_error =
1104 le64_to_cpu(ql_iscsi_stats->mac_rx_carrier_sense_error);
1105 host_stats->macrx_frame_discarded =
1106 le64_to_cpu(ql_iscsi_stats->mac_rx_frame_discarded);
1107 host_stats->macrx_frames_dropped =
1108 le64_to_cpu(ql_iscsi_stats->mac_rx_frames_dropped);
1109 host_stats->mac_crc_error = le64_to_cpu(ql_iscsi_stats->mac_crc_error);
1110 host_stats->mac_encoding_error =
1111 le64_to_cpu(ql_iscsi_stats->mac_encoding_error);
1112 host_stats->macrx_length_error_large =
1113 le64_to_cpu(ql_iscsi_stats->mac_rx_length_error_large);
1114 host_stats->macrx_length_error_small =
1115 le64_to_cpu(ql_iscsi_stats->mac_rx_length_error_small);
1116 host_stats->macrx_multicast_frames =
1117 le64_to_cpu(ql_iscsi_stats->mac_rx_multicast_frames);
1118 host_stats->macrx_broadcast_frames =
1119 le64_to_cpu(ql_iscsi_stats->mac_rx_broadcast_frames);
1120 host_stats->iptx_packets = le64_to_cpu(ql_iscsi_stats->ip_tx_packets);
1121 host_stats->iptx_bytes = le64_to_cpu(ql_iscsi_stats->ip_tx_bytes);
1122 host_stats->iptx_fragments =
1123 le64_to_cpu(ql_iscsi_stats->ip_tx_fragments);
1124 host_stats->iprx_packets = le64_to_cpu(ql_iscsi_stats->ip_rx_packets);
1125 host_stats->iprx_bytes = le64_to_cpu(ql_iscsi_stats->ip_rx_bytes);
1126 host_stats->iprx_fragments =
1127 le64_to_cpu(ql_iscsi_stats->ip_rx_fragments);
1128 host_stats->ip_datagram_reassembly =
1129 le64_to_cpu(ql_iscsi_stats->ip_datagram_reassembly);
1130 host_stats->ip_invalid_address_error =
1131 le64_to_cpu(ql_iscsi_stats->ip_invalid_address_error);
1132 host_stats->ip_error_packets =
1133 le64_to_cpu(ql_iscsi_stats->ip_error_packets);
1134 host_stats->ip_fragrx_overlap =
1135 le64_to_cpu(ql_iscsi_stats->ip_fragrx_overlap);
1136 host_stats->ip_fragrx_outoforder =
1137 le64_to_cpu(ql_iscsi_stats->ip_fragrx_outoforder);
1138 host_stats->ip_datagram_reassembly_timeout =
1139 le64_to_cpu(ql_iscsi_stats->ip_datagram_reassembly_timeout);
1140 host_stats->ipv6tx_packets =
1141 le64_to_cpu(ql_iscsi_stats->ipv6_tx_packets);
1142 host_stats->ipv6tx_bytes = le64_to_cpu(ql_iscsi_stats->ipv6_tx_bytes);
1143 host_stats->ipv6tx_fragments =
1144 le64_to_cpu(ql_iscsi_stats->ipv6_tx_fragments);
1145 host_stats->ipv6rx_packets =
1146 le64_to_cpu(ql_iscsi_stats->ipv6_rx_packets);
1147 host_stats->ipv6rx_bytes = le64_to_cpu(ql_iscsi_stats->ipv6_rx_bytes);
1148 host_stats->ipv6rx_fragments =
1149 le64_to_cpu(ql_iscsi_stats->ipv6_rx_fragments);
1150 host_stats->ipv6_datagram_reassembly =
1151 le64_to_cpu(ql_iscsi_stats->ipv6_datagram_reassembly);
1152 host_stats->ipv6_invalid_address_error =
1153 le64_to_cpu(ql_iscsi_stats->ipv6_invalid_address_error);
1154 host_stats->ipv6_error_packets =
1155 le64_to_cpu(ql_iscsi_stats->ipv6_error_packets);
1156 host_stats->ipv6_fragrx_overlap =
1157 le64_to_cpu(ql_iscsi_stats->ipv6_fragrx_overlap);
1158 host_stats->ipv6_fragrx_outoforder =
1159 le64_to_cpu(ql_iscsi_stats->ipv6_fragrx_outoforder);
1160 host_stats->ipv6_datagram_reassembly_timeout =
1161 le64_to_cpu(ql_iscsi_stats->ipv6_datagram_reassembly_timeout);
1162 host_stats->tcptx_segments =
1163 le64_to_cpu(ql_iscsi_stats->tcp_tx_segments);
1164 host_stats->tcptx_bytes = le64_to_cpu(ql_iscsi_stats->tcp_tx_bytes);
1165 host_stats->tcprx_segments =
1166 le64_to_cpu(ql_iscsi_stats->tcp_rx_segments);
1167 host_stats->tcprx_byte = le64_to_cpu(ql_iscsi_stats->tcp_rx_byte);
1168 host_stats->tcp_duplicate_ack_retx =
1169 le64_to_cpu(ql_iscsi_stats->tcp_duplicate_ack_retx);
1170 host_stats->tcp_retx_timer_expired =
1171 le64_to_cpu(ql_iscsi_stats->tcp_retx_timer_expired);
1172 host_stats->tcprx_duplicate_ack =
1173 le64_to_cpu(ql_iscsi_stats->tcp_rx_duplicate_ack);
1174 host_stats->tcprx_pure_ackr =
1175 le64_to_cpu(ql_iscsi_stats->tcp_rx_pure_ackr);
1176 host_stats->tcptx_delayed_ack =
1177 le64_to_cpu(ql_iscsi_stats->tcp_tx_delayed_ack);
1178 host_stats->tcptx_pure_ack =
1179 le64_to_cpu(ql_iscsi_stats->tcp_tx_pure_ack);
1180 host_stats->tcprx_segment_error =
1181 le64_to_cpu(ql_iscsi_stats->tcp_rx_segment_error);
1182 host_stats->tcprx_segment_outoforder =
1183 le64_to_cpu(ql_iscsi_stats->tcp_rx_segment_outoforder);
1184 host_stats->tcprx_window_probe =
1185 le64_to_cpu(ql_iscsi_stats->tcp_rx_window_probe);
1186 host_stats->tcprx_window_update =
1187 le64_to_cpu(ql_iscsi_stats->tcp_rx_window_update);
1188 host_stats->tcptx_window_probe_persist =
1189 le64_to_cpu(ql_iscsi_stats->tcp_tx_window_probe_persist);
1190 host_stats->ecc_error_correction =
1191 le64_to_cpu(ql_iscsi_stats->ecc_error_correction);
1192 host_stats->iscsi_pdu_tx = le64_to_cpu(ql_iscsi_stats->iscsi_pdu_tx);
1193 host_stats->iscsi_data_bytes_tx =
1194 le64_to_cpu(ql_iscsi_stats->iscsi_data_bytes_tx);
1195 host_stats->iscsi_pdu_rx = le64_to_cpu(ql_iscsi_stats->iscsi_pdu_rx);
1196 host_stats->iscsi_data_bytes_rx =
1197 le64_to_cpu(ql_iscsi_stats->iscsi_data_bytes_rx);
1198 host_stats->iscsi_io_completed =
1199 le64_to_cpu(ql_iscsi_stats->iscsi_io_completed);
1200 host_stats->iscsi_unexpected_io_rx =
1201 le64_to_cpu(ql_iscsi_stats->iscsi_unexpected_io_rx);
1202 host_stats->iscsi_format_error =
1203 le64_to_cpu(ql_iscsi_stats->iscsi_format_error);
1204 host_stats->iscsi_hdr_digest_error =
1205 le64_to_cpu(ql_iscsi_stats->iscsi_hdr_digest_error);
1206 host_stats->iscsi_data_digest_error =
1207 le64_to_cpu(ql_iscsi_stats->iscsi_data_digest_error);
1208 host_stats->iscsi_sequence_error =
1209 le64_to_cpu(ql_iscsi_stats->iscsi_sequence_error);
1210exit_host_stats:
1211 if (ql_iscsi_stats)
1212 dma_free_coherent(&ha->pdev->dev, host_stats_size,
1213 ql_iscsi_stats, iscsi_stats_dma);
1214
1215 ql4_printk(KERN_INFO, ha, "%s: Get host stats done\n",
1216 __func__);
1217 return ret;
1218}
1219
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05001220static int qla4xxx_get_iface_param(struct iscsi_iface *iface,
1221 enum iscsi_param_type param_type,
1222 int param, char *buf)
1223{
1224 struct Scsi_Host *shost = iscsi_iface_to_shost(iface);
1225 struct scsi_qla_host *ha = to_qla_host(shost);
Harish Zunjarraof8e93412013-10-18 09:01:42 -04001226 int ival;
1227 char *pval = NULL;
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05001228 int len = -ENOSYS;
1229
Harish Zunjarraof8e93412013-10-18 09:01:42 -04001230 if (param_type == ISCSI_NET_PARAM) {
1231 switch (param) {
1232 case ISCSI_NET_PARAM_IPV4_ADDR:
1233 len = sprintf(buf, "%pI4\n", &ha->ip_config.ip_address);
1234 break;
1235 case ISCSI_NET_PARAM_IPV4_SUBNET:
1236 len = sprintf(buf, "%pI4\n",
1237 &ha->ip_config.subnet_mask);
1238 break;
1239 case ISCSI_NET_PARAM_IPV4_GW:
1240 len = sprintf(buf, "%pI4\n", &ha->ip_config.gateway);
1241 break;
1242 case ISCSI_NET_PARAM_IFACE_ENABLE:
1243 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) {
1244 OP_STATE(ha->ip_config.ipv4_options,
1245 IPOPT_IPV4_PROTOCOL_ENABLE, pval);
1246 } else {
1247 OP_STATE(ha->ip_config.ipv6_options,
1248 IPV6_OPT_IPV6_PROTOCOL_ENABLE, pval);
1249 }
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05001250
Harish Zunjarraof8e93412013-10-18 09:01:42 -04001251 len = sprintf(buf, "%s\n", pval);
1252 break;
1253 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05001254 len = sprintf(buf, "%s\n",
Harish Zunjarraof8e93412013-10-18 09:01:42 -04001255 (ha->ip_config.tcp_options &
1256 TCPOPT_DHCP_ENABLE) ?
1257 "dhcp" : "static");
1258 break;
1259 case ISCSI_NET_PARAM_IPV6_ADDR:
1260 if (iface->iface_num == 0)
1261 len = sprintf(buf, "%pI6\n",
1262 &ha->ip_config.ipv6_addr0);
1263 if (iface->iface_num == 1)
1264 len = sprintf(buf, "%pI6\n",
1265 &ha->ip_config.ipv6_addr1);
1266 break;
1267 case ISCSI_NET_PARAM_IPV6_LINKLOCAL:
1268 len = sprintf(buf, "%pI6\n",
1269 &ha->ip_config.ipv6_link_local_addr);
1270 break;
1271 case ISCSI_NET_PARAM_IPV6_ROUTER:
1272 len = sprintf(buf, "%pI6\n",
1273 &ha->ip_config.ipv6_default_router_addr);
1274 break;
1275 case ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG:
1276 pval = (ha->ip_config.ipv6_addl_options &
1277 IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE) ?
1278 "nd" : "static";
1279
1280 len = sprintf(buf, "%s\n", pval);
1281 break;
1282 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG:
1283 pval = (ha->ip_config.ipv6_addl_options &
1284 IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR) ?
1285 "auto" : "static";
1286
1287 len = sprintf(buf, "%s\n", pval);
1288 break;
1289 case ISCSI_NET_PARAM_VLAN_ID:
1290 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
1291 ival = ha->ip_config.ipv4_vlan_tag &
1292 ISCSI_MAX_VLAN_ID;
1293 else
1294 ival = ha->ip_config.ipv6_vlan_tag &
1295 ISCSI_MAX_VLAN_ID;
1296
1297 len = sprintf(buf, "%d\n", ival);
1298 break;
1299 case ISCSI_NET_PARAM_VLAN_PRIORITY:
1300 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
1301 ival = (ha->ip_config.ipv4_vlan_tag >> 13) &
1302 ISCSI_MAX_VLAN_PRIORITY;
1303 else
1304 ival = (ha->ip_config.ipv6_vlan_tag >> 13) &
1305 ISCSI_MAX_VLAN_PRIORITY;
1306
1307 len = sprintf(buf, "%d\n", ival);
1308 break;
1309 case ISCSI_NET_PARAM_VLAN_ENABLED:
1310 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) {
1311 OP_STATE(ha->ip_config.ipv4_options,
1312 IPOPT_VLAN_TAGGING_ENABLE, pval);
1313 } else {
1314 OP_STATE(ha->ip_config.ipv6_options,
1315 IPV6_OPT_VLAN_TAGGING_ENABLE, pval);
1316 }
1317 len = sprintf(buf, "%s\n", pval);
1318 break;
1319 case ISCSI_NET_PARAM_MTU:
1320 len = sprintf(buf, "%d\n", ha->ip_config.eth_mtu_size);
1321 break;
1322 case ISCSI_NET_PARAM_PORT:
1323 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
1324 len = sprintf(buf, "%d\n",
1325 ha->ip_config.ipv4_port);
1326 else
1327 len = sprintf(buf, "%d\n",
1328 ha->ip_config.ipv6_port);
1329 break;
1330 case ISCSI_NET_PARAM_IPADDR_STATE:
1331 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) {
1332 pval = iscsi_get_ipaddress_state_name(
1333 ha->ip_config.ipv4_addr_state);
1334 } else {
1335 if (iface->iface_num == 0)
1336 pval = iscsi_get_ipaddress_state_name(
1337 ha->ip_config.ipv6_addr0_state);
1338 else if (iface->iface_num == 1)
1339 pval = iscsi_get_ipaddress_state_name(
1340 ha->ip_config.ipv6_addr1_state);
1341 }
1342
1343 len = sprintf(buf, "%s\n", pval);
1344 break;
1345 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_STATE:
1346 pval = iscsi_get_ipaddress_state_name(
1347 ha->ip_config.ipv6_link_local_state);
1348 len = sprintf(buf, "%s\n", pval);
1349 break;
1350 case ISCSI_NET_PARAM_IPV6_ROUTER_STATE:
1351 pval = iscsi_get_router_state_name(
1352 ha->ip_config.ipv6_default_router_state);
1353 len = sprintf(buf, "%s\n", pval);
1354 break;
1355 case ISCSI_NET_PARAM_DELAYED_ACK_EN:
1356 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) {
1357 OP_STATE(~ha->ip_config.tcp_options,
1358 TCPOPT_DELAYED_ACK_DISABLE, pval);
1359 } else {
1360 OP_STATE(~ha->ip_config.ipv6_tcp_options,
1361 IPV6_TCPOPT_DELAYED_ACK_DISABLE, pval);
1362 }
1363 len = sprintf(buf, "%s\n", pval);
1364 break;
1365 case ISCSI_NET_PARAM_TCP_NAGLE_DISABLE:
1366 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) {
1367 OP_STATE(~ha->ip_config.tcp_options,
1368 TCPOPT_NAGLE_ALGO_DISABLE, pval);
1369 } else {
1370 OP_STATE(~ha->ip_config.ipv6_tcp_options,
1371 IPV6_TCPOPT_NAGLE_ALGO_DISABLE, pval);
1372 }
1373 len = sprintf(buf, "%s\n", pval);
1374 break;
1375 case ISCSI_NET_PARAM_TCP_WSF_DISABLE:
1376 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) {
1377 OP_STATE(~ha->ip_config.tcp_options,
1378 TCPOPT_WINDOW_SCALE_DISABLE, pval);
1379 } else {
1380 OP_STATE(~ha->ip_config.ipv6_tcp_options,
1381 IPV6_TCPOPT_WINDOW_SCALE_DISABLE,
1382 pval);
1383 }
1384 len = sprintf(buf, "%s\n", pval);
1385 break;
1386 case ISCSI_NET_PARAM_TCP_WSF:
1387 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
1388 len = sprintf(buf, "%d\n",
1389 ha->ip_config.tcp_wsf);
1390 else
1391 len = sprintf(buf, "%d\n",
1392 ha->ip_config.ipv6_tcp_wsf);
1393 break;
1394 case ISCSI_NET_PARAM_TCP_TIMER_SCALE:
1395 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
1396 ival = (ha->ip_config.tcp_options &
1397 TCPOPT_TIMER_SCALE) >> 1;
1398 else
1399 ival = (ha->ip_config.ipv6_tcp_options &
1400 IPV6_TCPOPT_TIMER_SCALE) >> 1;
1401
1402 len = sprintf(buf, "%d\n", ival);
1403 break;
1404 case ISCSI_NET_PARAM_TCP_TIMESTAMP_EN:
1405 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) {
1406 OP_STATE(ha->ip_config.tcp_options,
1407 TCPOPT_TIMESTAMP_ENABLE, pval);
1408 } else {
1409 OP_STATE(ha->ip_config.ipv6_tcp_options,
1410 IPV6_TCPOPT_TIMESTAMP_EN, pval);
1411 }
1412 len = sprintf(buf, "%s\n", pval);
1413 break;
1414 case ISCSI_NET_PARAM_CACHE_ID:
1415 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
1416 len = sprintf(buf, "%d\n",
1417 ha->ip_config.ipv4_cache_id);
1418 else
1419 len = sprintf(buf, "%d\n",
1420 ha->ip_config.ipv6_cache_id);
1421 break;
1422 case ISCSI_NET_PARAM_IPV4_DHCP_DNS_ADDR_EN:
1423 OP_STATE(ha->ip_config.tcp_options,
1424 TCPOPT_DNS_SERVER_IP_EN, pval);
1425
1426 len = sprintf(buf, "%s\n", pval);
1427 break;
1428 case ISCSI_NET_PARAM_IPV4_DHCP_SLP_DA_EN:
1429 OP_STATE(ha->ip_config.tcp_options,
1430 TCPOPT_SLP_DA_INFO_EN, pval);
1431
1432 len = sprintf(buf, "%s\n", pval);
1433 break;
1434 case ISCSI_NET_PARAM_IPV4_TOS_EN:
1435 OP_STATE(ha->ip_config.ipv4_options,
1436 IPOPT_IPV4_TOS_EN, pval);
1437
1438 len = sprintf(buf, "%s\n", pval);
1439 break;
1440 case ISCSI_NET_PARAM_IPV4_TOS:
1441 len = sprintf(buf, "%d\n", ha->ip_config.ipv4_tos);
1442 break;
1443 case ISCSI_NET_PARAM_IPV4_GRAT_ARP_EN:
1444 OP_STATE(ha->ip_config.ipv4_options,
1445 IPOPT_GRAT_ARP_EN, pval);
1446
1447 len = sprintf(buf, "%s\n", pval);
1448 break;
1449 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID_EN:
1450 OP_STATE(ha->ip_config.ipv4_options, IPOPT_ALT_CID_EN,
1451 pval);
1452
1453 len = sprintf(buf, "%s\n", pval);
1454 break;
1455 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID:
1456 pval = (ha->ip_config.ipv4_alt_cid_len) ?
1457 (char *)ha->ip_config.ipv4_alt_cid : "";
1458
1459 len = sprintf(buf, "%s\n", pval);
1460 break;
1461 case ISCSI_NET_PARAM_IPV4_DHCP_REQ_VENDOR_ID_EN:
1462 OP_STATE(ha->ip_config.ipv4_options,
1463 IPOPT_REQ_VID_EN, pval);
1464
1465 len = sprintf(buf, "%s\n", pval);
1466 break;
1467 case ISCSI_NET_PARAM_IPV4_DHCP_USE_VENDOR_ID_EN:
1468 OP_STATE(ha->ip_config.ipv4_options,
1469 IPOPT_USE_VID_EN, pval);
1470
1471 len = sprintf(buf, "%s\n", pval);
1472 break;
1473 case ISCSI_NET_PARAM_IPV4_DHCP_VENDOR_ID:
1474 pval = (ha->ip_config.ipv4_vid_len) ?
1475 (char *)ha->ip_config.ipv4_vid : "";
1476
1477 len = sprintf(buf, "%s\n", pval);
1478 break;
1479 case ISCSI_NET_PARAM_IPV4_DHCP_LEARN_IQN_EN:
1480 OP_STATE(ha->ip_config.ipv4_options,
1481 IPOPT_LEARN_IQN_EN, pval);
1482
1483 len = sprintf(buf, "%s\n", pval);
1484 break;
1485 case ISCSI_NET_PARAM_IPV4_FRAGMENT_DISABLE:
1486 OP_STATE(~ha->ip_config.ipv4_options,
1487 IPOPT_FRAGMENTATION_DISABLE, pval);
1488
1489 len = sprintf(buf, "%s\n", pval);
1490 break;
1491 case ISCSI_NET_PARAM_IPV4_IN_FORWARD_EN:
1492 OP_STATE(ha->ip_config.ipv4_options,
1493 IPOPT_IN_FORWARD_EN, pval);
1494
1495 len = sprintf(buf, "%s\n", pval);
1496 break;
1497 case ISCSI_NET_PARAM_REDIRECT_EN:
1498 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) {
1499 OP_STATE(ha->ip_config.ipv4_options,
1500 IPOPT_ARP_REDIRECT_EN, pval);
1501 } else {
1502 OP_STATE(ha->ip_config.ipv6_options,
1503 IPV6_OPT_REDIRECT_EN, pval);
1504 }
1505 len = sprintf(buf, "%s\n", pval);
1506 break;
1507 case ISCSI_NET_PARAM_IPV4_TTL:
1508 len = sprintf(buf, "%d\n", ha->ip_config.ipv4_ttl);
1509 break;
1510 case ISCSI_NET_PARAM_IPV6_GRAT_NEIGHBOR_ADV_EN:
1511 OP_STATE(ha->ip_config.ipv6_options,
1512 IPV6_OPT_GRAT_NEIGHBOR_ADV_EN, pval);
1513
1514 len = sprintf(buf, "%s\n", pval);
1515 break;
1516 case ISCSI_NET_PARAM_IPV6_MLD_EN:
1517 OP_STATE(ha->ip_config.ipv6_addl_options,
1518 IPV6_ADDOPT_MLD_EN, pval);
1519
1520 len = sprintf(buf, "%s\n", pval);
1521 break;
1522 case ISCSI_NET_PARAM_IPV6_FLOW_LABEL:
1523 len = sprintf(buf, "%u\n", ha->ip_config.ipv6_flow_lbl);
1524 break;
1525 case ISCSI_NET_PARAM_IPV6_TRAFFIC_CLASS:
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -05001526 len = sprintf(buf, "%d\n",
Harish Zunjarraof8e93412013-10-18 09:01:42 -04001527 ha->ip_config.ipv6_traffic_class);
1528 break;
1529 case ISCSI_NET_PARAM_IPV6_HOP_LIMIT:
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -05001530 len = sprintf(buf, "%d\n",
Harish Zunjarraof8e93412013-10-18 09:01:42 -04001531 ha->ip_config.ipv6_hop_limit);
1532 break;
1533 case ISCSI_NET_PARAM_IPV6_ND_REACHABLE_TMO:
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -05001534 len = sprintf(buf, "%d\n",
Harish Zunjarraof8e93412013-10-18 09:01:42 -04001535 ha->ip_config.ipv6_nd_reach_time);
1536 break;
1537 case ISCSI_NET_PARAM_IPV6_ND_REXMIT_TIME:
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -05001538 len = sprintf(buf, "%d\n",
Harish Zunjarraof8e93412013-10-18 09:01:42 -04001539 ha->ip_config.ipv6_nd_rexmit_timer);
1540 break;
1541 case ISCSI_NET_PARAM_IPV6_ND_STALE_TMO:
1542 len = sprintf(buf, "%d\n",
1543 ha->ip_config.ipv6_nd_stale_timeout);
1544 break;
1545 case ISCSI_NET_PARAM_IPV6_DUP_ADDR_DETECT_CNT:
1546 len = sprintf(buf, "%d\n",
1547 ha->ip_config.ipv6_dup_addr_detect_count);
1548 break;
1549 case ISCSI_NET_PARAM_IPV6_RTR_ADV_LINK_MTU:
1550 len = sprintf(buf, "%d\n",
1551 ha->ip_config.ipv6_gw_advrt_mtu);
1552 break;
1553 default:
1554 len = -ENOSYS;
1555 }
1556 } else if (param_type == ISCSI_IFACE_PARAM) {
1557 switch (param) {
1558 case ISCSI_IFACE_PARAM_DEF_TASKMGMT_TMO:
1559 len = sprintf(buf, "%d\n", ha->ip_config.def_timeout);
1560 break;
1561 case ISCSI_IFACE_PARAM_HDRDGST_EN:
1562 OP_STATE(ha->ip_config.iscsi_options,
1563 ISCSIOPTS_HEADER_DIGEST_EN, pval);
1564
1565 len = sprintf(buf, "%s\n", pval);
1566 break;
1567 case ISCSI_IFACE_PARAM_DATADGST_EN:
1568 OP_STATE(ha->ip_config.iscsi_options,
1569 ISCSIOPTS_DATA_DIGEST_EN, pval);
1570
1571 len = sprintf(buf, "%s\n", pval);
1572 break;
1573 case ISCSI_IFACE_PARAM_IMM_DATA_EN:
1574 OP_STATE(ha->ip_config.iscsi_options,
1575 ISCSIOPTS_IMMEDIATE_DATA_EN, pval);
1576
1577 len = sprintf(buf, "%s\n", pval);
1578 break;
1579 case ISCSI_IFACE_PARAM_INITIAL_R2T_EN:
1580 OP_STATE(ha->ip_config.iscsi_options,
1581 ISCSIOPTS_INITIAL_R2T_EN, pval);
1582
1583 len = sprintf(buf, "%s\n", pval);
1584 break;
1585 case ISCSI_IFACE_PARAM_DATASEQ_INORDER_EN:
1586 OP_STATE(ha->ip_config.iscsi_options,
1587 ISCSIOPTS_DATA_SEQ_INORDER_EN, pval);
1588
1589 len = sprintf(buf, "%s\n", pval);
1590 break;
1591 case ISCSI_IFACE_PARAM_PDU_INORDER_EN:
1592 OP_STATE(ha->ip_config.iscsi_options,
1593 ISCSIOPTS_DATA_PDU_INORDER_EN, pval);
1594
1595 len = sprintf(buf, "%s\n", pval);
1596 break;
1597 case ISCSI_IFACE_PARAM_ERL:
1598 len = sprintf(buf, "%d\n",
1599 (ha->ip_config.iscsi_options &
1600 ISCSIOPTS_ERL));
1601 break;
1602 case ISCSI_IFACE_PARAM_MAX_RECV_DLENGTH:
1603 len = sprintf(buf, "%u\n",
1604 ha->ip_config.iscsi_max_pdu_size *
1605 BYTE_UNITS);
1606 break;
1607 case ISCSI_IFACE_PARAM_FIRST_BURST:
1608 len = sprintf(buf, "%u\n",
1609 ha->ip_config.iscsi_first_burst_len *
1610 BYTE_UNITS);
1611 break;
1612 case ISCSI_IFACE_PARAM_MAX_R2T:
1613 len = sprintf(buf, "%d\n",
1614 ha->ip_config.iscsi_max_outstnd_r2t);
1615 break;
1616 case ISCSI_IFACE_PARAM_MAX_BURST:
1617 len = sprintf(buf, "%u\n",
1618 ha->ip_config.iscsi_max_burst_len *
1619 BYTE_UNITS);
1620 break;
1621 case ISCSI_IFACE_PARAM_CHAP_AUTH_EN:
1622 OP_STATE(ha->ip_config.iscsi_options,
1623 ISCSIOPTS_CHAP_AUTH_EN, pval);
1624
1625 len = sprintf(buf, "%s\n", pval);
1626 break;
1627 case ISCSI_IFACE_PARAM_BIDI_CHAP_EN:
1628 OP_STATE(ha->ip_config.iscsi_options,
1629 ISCSIOPTS_BIDI_CHAP_EN, pval);
1630
1631 len = sprintf(buf, "%s\n", pval);
1632 break;
1633 case ISCSI_IFACE_PARAM_DISCOVERY_AUTH_OPTIONAL:
1634 OP_STATE(ha->ip_config.iscsi_options,
1635 ISCSIOPTS_DISCOVERY_AUTH_EN, pval);
1636
1637 len = sprintf(buf, "%s\n", pval);
1638 break;
1639 case ISCSI_IFACE_PARAM_DISCOVERY_LOGOUT_EN:
1640 OP_STATE(ha->ip_config.iscsi_options,
1641 ISCSIOPTS_DISCOVERY_LOGOUT_EN, pval);
1642
1643 len = sprintf(buf, "%s\n", pval);
1644 break;
1645 case ISCSI_IFACE_PARAM_STRICT_LOGIN_COMP_EN:
1646 OP_STATE(ha->ip_config.iscsi_options,
1647 ISCSIOPTS_STRICT_LOGIN_COMP_EN, pval);
1648
1649 len = sprintf(buf, "%s\n", pval);
1650 break;
1651 case ISCSI_IFACE_PARAM_INITIATOR_NAME:
1652 len = sprintf(buf, "%s\n", ha->ip_config.iscsi_name);
1653 break;
1654 default:
1655 len = -ENOSYS;
1656 }
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05001657 }
1658
1659 return len;
1660}
1661
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001662static struct iscsi_endpoint *
1663qla4xxx_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
1664 int non_blocking)
1665{
1666 int ret;
1667 struct iscsi_endpoint *ep;
1668 struct qla_endpoint *qla_ep;
1669 struct scsi_qla_host *ha;
1670 struct sockaddr_in *addr;
1671 struct sockaddr_in6 *addr6;
1672
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001673 if (!shost) {
1674 ret = -ENXIO;
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05001675 pr_err("%s: shost is NULL\n", __func__);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001676 return ERR_PTR(ret);
1677 }
1678
1679 ha = iscsi_host_priv(shost);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001680 ep = iscsi_create_endpoint(sizeof(struct qla_endpoint));
1681 if (!ep) {
1682 ret = -ENOMEM;
1683 return ERR_PTR(ret);
1684 }
1685
1686 qla_ep = ep->dd_data;
1687 memset(qla_ep, 0, sizeof(struct qla_endpoint));
1688 if (dst_addr->sa_family == AF_INET) {
1689 memcpy(&qla_ep->dst_addr, dst_addr, sizeof(struct sockaddr_in));
1690 addr = (struct sockaddr_in *)&qla_ep->dst_addr;
1691 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: %pI4\n", __func__,
1692 (char *)&addr->sin_addr));
1693 } else if (dst_addr->sa_family == AF_INET6) {
1694 memcpy(&qla_ep->dst_addr, dst_addr,
1695 sizeof(struct sockaddr_in6));
1696 addr6 = (struct sockaddr_in6 *)&qla_ep->dst_addr;
1697 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: %pI6\n", __func__,
1698 (char *)&addr6->sin6_addr));
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05001699 } else {
1700 ql4_printk(KERN_WARNING, ha, "%s: Invalid endpoint\n",
1701 __func__);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001702 }
1703
1704 qla_ep->host = shost;
1705
1706 return ep;
1707}
1708
1709static int qla4xxx_ep_poll(struct iscsi_endpoint *ep, int timeout_ms)
1710{
1711 struct qla_endpoint *qla_ep;
1712 struct scsi_qla_host *ha;
1713 int ret = 0;
1714
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001715 qla_ep = ep->dd_data;
1716 ha = to_qla_host(qla_ep->host);
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05001717 DEBUG2(pr_info_ratelimited("%s: host: %ld\n", __func__, ha->host_no));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001718
Mike Christie13483732011-12-01 21:38:41 -06001719 if (adapter_up(ha) && !test_bit(AF_BUILD_DDB_LIST, &ha->flags))
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001720 ret = 1;
1721
1722 return ret;
1723}
1724
1725static void qla4xxx_ep_disconnect(struct iscsi_endpoint *ep)
1726{
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05001727 struct qla_endpoint *qla_ep;
1728 struct scsi_qla_host *ha;
1729
1730 qla_ep = ep->dd_data;
1731 ha = to_qla_host(qla_ep->host);
1732 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: host: %ld\n", __func__,
1733 ha->host_no));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001734 iscsi_destroy_endpoint(ep);
1735}
1736
1737static int qla4xxx_get_ep_param(struct iscsi_endpoint *ep,
1738 enum iscsi_param param,
1739 char *buf)
1740{
1741 struct qla_endpoint *qla_ep = ep->dd_data;
1742 struct sockaddr *dst_addr;
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05001743 struct scsi_qla_host *ha;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001744
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05001745 ha = to_qla_host(qla_ep->host);
1746 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: host: %ld\n", __func__,
1747 ha->host_no));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001748
1749 switch (param) {
1750 case ISCSI_PARAM_CONN_PORT:
1751 case ISCSI_PARAM_CONN_ADDRESS:
1752 if (!qla_ep)
1753 return -ENOTCONN;
1754
1755 dst_addr = (struct sockaddr *)&qla_ep->dst_addr;
1756 if (!dst_addr)
1757 return -ENOTCONN;
1758
1759 return iscsi_conn_get_addr_param((struct sockaddr_storage *)
1760 &qla_ep->dst_addr, param, buf);
1761 default:
1762 return -ENOSYS;
1763 }
1764}
1765
1766static void qla4xxx_conn_get_stats(struct iscsi_cls_conn *cls_conn,
1767 struct iscsi_stats *stats)
1768{
1769 struct iscsi_session *sess;
1770 struct iscsi_cls_session *cls_sess;
1771 struct ddb_entry *ddb_entry;
1772 struct scsi_qla_host *ha;
1773 struct ql_iscsi_stats *ql_iscsi_stats;
1774 int stats_size;
1775 int ret;
1776 dma_addr_t iscsi_stats_dma;
1777
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001778 cls_sess = iscsi_conn_to_session(cls_conn);
1779 sess = cls_sess->dd_data;
1780 ddb_entry = sess->dd_data;
1781 ha = ddb_entry->ha;
1782
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05001783 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: host: %ld\n", __func__,
1784 ha->host_no));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001785 stats_size = PAGE_ALIGN(sizeof(struct ql_iscsi_stats));
1786 /* Allocate memory */
1787 ql_iscsi_stats = dma_alloc_coherent(&ha->pdev->dev, stats_size,
1788 &iscsi_stats_dma, GFP_KERNEL);
1789 if (!ql_iscsi_stats) {
1790 ql4_printk(KERN_ERR, ha,
1791 "Unable to allocate memory for iscsi stats\n");
1792 goto exit_get_stats;
1793 }
1794
1795 ret = qla4xxx_get_mgmt_data(ha, ddb_entry->fw_ddb_index, stats_size,
1796 iscsi_stats_dma);
1797 if (ret != QLA_SUCCESS) {
1798 ql4_printk(KERN_ERR, ha,
Masanari Iida59e13d42012-04-25 00:24:16 +09001799 "Unable to retrieve iscsi stats\n");
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001800 goto free_stats;
1801 }
1802
1803 /* octets */
1804 stats->txdata_octets = le64_to_cpu(ql_iscsi_stats->tx_data_octets);
1805 stats->rxdata_octets = le64_to_cpu(ql_iscsi_stats->rx_data_octets);
1806 /* xmit pdus */
1807 stats->noptx_pdus = le32_to_cpu(ql_iscsi_stats->tx_nopout_pdus);
1808 stats->scsicmd_pdus = le32_to_cpu(ql_iscsi_stats->tx_scsi_cmd_pdus);
1809 stats->tmfcmd_pdus = le32_to_cpu(ql_iscsi_stats->tx_tmf_cmd_pdus);
1810 stats->login_pdus = le32_to_cpu(ql_iscsi_stats->tx_login_cmd_pdus);
1811 stats->text_pdus = le32_to_cpu(ql_iscsi_stats->tx_text_cmd_pdus);
1812 stats->dataout_pdus = le32_to_cpu(ql_iscsi_stats->tx_scsi_write_pdus);
1813 stats->logout_pdus = le32_to_cpu(ql_iscsi_stats->tx_logout_cmd_pdus);
1814 stats->snack_pdus = le32_to_cpu(ql_iscsi_stats->tx_snack_req_pdus);
1815 /* recv pdus */
1816 stats->noprx_pdus = le32_to_cpu(ql_iscsi_stats->rx_nopin_pdus);
1817 stats->scsirsp_pdus = le32_to_cpu(ql_iscsi_stats->rx_scsi_resp_pdus);
1818 stats->tmfrsp_pdus = le32_to_cpu(ql_iscsi_stats->rx_tmf_resp_pdus);
1819 stats->textrsp_pdus = le32_to_cpu(ql_iscsi_stats->rx_text_resp_pdus);
1820 stats->datain_pdus = le32_to_cpu(ql_iscsi_stats->rx_scsi_read_pdus);
1821 stats->logoutrsp_pdus =
1822 le32_to_cpu(ql_iscsi_stats->rx_logout_resp_pdus);
1823 stats->r2t_pdus = le32_to_cpu(ql_iscsi_stats->rx_r2t_pdus);
1824 stats->async_pdus = le32_to_cpu(ql_iscsi_stats->rx_async_pdus);
1825 stats->rjt_pdus = le32_to_cpu(ql_iscsi_stats->rx_reject_pdus);
1826
1827free_stats:
1828 dma_free_coherent(&ha->pdev->dev, stats_size, ql_iscsi_stats,
1829 iscsi_stats_dma);
1830exit_get_stats:
1831 return;
1832}
1833
Mike Christie5c656af2009-07-15 15:02:59 -05001834static enum blk_eh_timer_return qla4xxx_eh_cmd_timed_out(struct scsi_cmnd *sc)
1835{
1836 struct iscsi_cls_session *session;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001837 struct iscsi_session *sess;
1838 unsigned long flags;
1839 enum blk_eh_timer_return ret = BLK_EH_NOT_HANDLED;
Mike Christie5c656af2009-07-15 15:02:59 -05001840
1841 session = starget_to_session(scsi_target(sc->device));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001842 sess = session->dd_data;
Mike Christie5c656af2009-07-15 15:02:59 -05001843
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001844 spin_lock_irqsave(&session->lock, flags);
1845 if (session->state == ISCSI_SESSION_FAILED)
1846 ret = BLK_EH_RESET_TIMER;
1847 spin_unlock_irqrestore(&session->lock, flags);
Mike Christie5c656af2009-07-15 15:02:59 -05001848
Manish Rangankarb3a271a2011-07-25 13:48:53 -05001849 return ret;
David Somayajuluafaf5a22006-09-19 10:28:00 -07001850}
1851
Vikas Chaudhary3254dbe2012-01-19 03:06:56 -08001852static void qla4xxx_set_port_speed(struct Scsi_Host *shost)
1853{
1854 struct scsi_qla_host *ha = to_qla_host(shost);
Vikas Chaudharye16d1662012-03-02 01:55:31 -08001855 struct iscsi_cls_host *ihost = shost->shost_data;
Vikas Chaudhary3254dbe2012-01-19 03:06:56 -08001856 uint32_t speed = ISCSI_PORT_SPEED_UNKNOWN;
1857
1858 qla4xxx_get_firmware_state(ha);
1859
1860 switch (ha->addl_fw_state & 0x0F00) {
1861 case FW_ADDSTATE_LINK_SPEED_10MBPS:
1862 speed = ISCSI_PORT_SPEED_10MBPS;
1863 break;
1864 case FW_ADDSTATE_LINK_SPEED_100MBPS:
1865 speed = ISCSI_PORT_SPEED_100MBPS;
1866 break;
1867 case FW_ADDSTATE_LINK_SPEED_1GBPS:
1868 speed = ISCSI_PORT_SPEED_1GBPS;
1869 break;
1870 case FW_ADDSTATE_LINK_SPEED_10GBPS:
1871 speed = ISCSI_PORT_SPEED_10GBPS;
1872 break;
1873 }
1874 ihost->port_speed = speed;
1875}
1876
1877static void qla4xxx_set_port_state(struct Scsi_Host *shost)
1878{
1879 struct scsi_qla_host *ha = to_qla_host(shost);
Vikas Chaudharye16d1662012-03-02 01:55:31 -08001880 struct iscsi_cls_host *ihost = shost->shost_data;
Vikas Chaudhary3254dbe2012-01-19 03:06:56 -08001881 uint32_t state = ISCSI_PORT_STATE_DOWN;
1882
1883 if (test_bit(AF_LINK_UP, &ha->flags))
1884 state = ISCSI_PORT_STATE_UP;
1885
1886 ihost->port_state = state;
1887}
1888
Mike Christieaa1e93a2007-05-30 12:57:09 -05001889static int qla4xxx_host_get_param(struct Scsi_Host *shost,
1890 enum iscsi_host_param param, char *buf)
1891{
1892 struct scsi_qla_host *ha = to_qla_host(shost);
1893 int len;
1894
1895 switch (param) {
1896 case ISCSI_HOST_PARAM_HWADDRESS:
Michael Chan7ffc49a2007-12-24 21:28:09 -08001897 len = sysfs_format_mac(buf, ha->my_mac, MAC_ADDR_LEN);
Mike Christieaa1e93a2007-05-30 12:57:09 -05001898 break;
Mike Christie22236962007-05-30 12:57:24 -05001899 case ISCSI_HOST_PARAM_IPADDRESS:
Vikas Chaudhary2bab08f2011-07-25 13:48:39 -05001900 len = sprintf(buf, "%pI4\n", &ha->ip_config.ip_address);
Mike Christie22236962007-05-30 12:57:24 -05001901 break;
Mike Christie8ad57812007-05-30 12:57:13 -05001902 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie22236962007-05-30 12:57:24 -05001903 len = sprintf(buf, "%s\n", ha->name_string);
Mike Christie8ad57812007-05-30 12:57:13 -05001904 break;
Vikas Chaudhary3254dbe2012-01-19 03:06:56 -08001905 case ISCSI_HOST_PARAM_PORT_STATE:
1906 qla4xxx_set_port_state(shost);
1907 len = sprintf(buf, "%s\n", iscsi_get_port_state_name(shost));
1908 break;
1909 case ISCSI_HOST_PARAM_PORT_SPEED:
1910 qla4xxx_set_port_speed(shost);
1911 len = sprintf(buf, "%s\n", iscsi_get_port_speed_name(shost));
1912 break;
Mike Christieaa1e93a2007-05-30 12:57:09 -05001913 default:
1914 return -ENOSYS;
1915 }
1916
1917 return len;
1918}
1919
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05001920static void qla4xxx_create_ipv4_iface(struct scsi_qla_host *ha)
1921{
1922 if (ha->iface_ipv4)
1923 return;
1924
1925 /* IPv4 */
1926 ha->iface_ipv4 = iscsi_create_iface(ha->host,
1927 &qla4xxx_iscsi_transport,
1928 ISCSI_IFACE_TYPE_IPV4, 0, 0);
1929 if (!ha->iface_ipv4)
1930 ql4_printk(KERN_ERR, ha, "Could not create IPv4 iSCSI "
1931 "iface0.\n");
1932}
1933
1934static void qla4xxx_create_ipv6_iface(struct scsi_qla_host *ha)
1935{
1936 if (!ha->iface_ipv6_0)
1937 /* IPv6 iface-0 */
1938 ha->iface_ipv6_0 = iscsi_create_iface(ha->host,
1939 &qla4xxx_iscsi_transport,
1940 ISCSI_IFACE_TYPE_IPV6, 0,
1941 0);
1942 if (!ha->iface_ipv6_0)
1943 ql4_printk(KERN_ERR, ha, "Could not create IPv6 iSCSI "
1944 "iface0.\n");
1945
1946 if (!ha->iface_ipv6_1)
1947 /* IPv6 iface-1 */
1948 ha->iface_ipv6_1 = iscsi_create_iface(ha->host,
1949 &qla4xxx_iscsi_transport,
1950 ISCSI_IFACE_TYPE_IPV6, 1,
1951 0);
1952 if (!ha->iface_ipv6_1)
1953 ql4_printk(KERN_ERR, ha, "Could not create IPv6 iSCSI "
1954 "iface1.\n");
1955}
1956
1957static void qla4xxx_create_ifaces(struct scsi_qla_host *ha)
1958{
1959 if (ha->ip_config.ipv4_options & IPOPT_IPV4_PROTOCOL_ENABLE)
1960 qla4xxx_create_ipv4_iface(ha);
1961
1962 if (ha->ip_config.ipv6_options & IPV6_OPT_IPV6_PROTOCOL_ENABLE)
1963 qla4xxx_create_ipv6_iface(ha);
1964}
1965
1966static void qla4xxx_destroy_ipv4_iface(struct scsi_qla_host *ha)
1967{
1968 if (ha->iface_ipv4) {
1969 iscsi_destroy_iface(ha->iface_ipv4);
1970 ha->iface_ipv4 = NULL;
1971 }
1972}
1973
1974static void qla4xxx_destroy_ipv6_iface(struct scsi_qla_host *ha)
1975{
1976 if (ha->iface_ipv6_0) {
1977 iscsi_destroy_iface(ha->iface_ipv6_0);
1978 ha->iface_ipv6_0 = NULL;
1979 }
1980 if (ha->iface_ipv6_1) {
1981 iscsi_destroy_iface(ha->iface_ipv6_1);
1982 ha->iface_ipv6_1 = NULL;
1983 }
1984}
1985
1986static void qla4xxx_destroy_ifaces(struct scsi_qla_host *ha)
1987{
1988 qla4xxx_destroy_ipv4_iface(ha);
1989 qla4xxx_destroy_ipv6_iface(ha);
1990}
1991
Mike Christied00efe32011-07-25 13:48:38 -05001992static void qla4xxx_set_ipv6(struct scsi_qla_host *ha,
1993 struct iscsi_iface_param_info *iface_param,
1994 struct addr_ctrl_blk *init_fw_cb)
1995{
1996 /*
1997 * iface_num 0 is valid for IPv6 Addr, linklocal, router, autocfg.
1998 * iface_num 1 is valid only for IPv6 Addr.
1999 */
2000 switch (iface_param->param) {
2001 case ISCSI_NET_PARAM_IPV6_ADDR:
2002 if (iface_param->iface_num & 0x1)
2003 /* IPv6 Addr 1 */
2004 memcpy(init_fw_cb->ipv6_addr1, iface_param->value,
2005 sizeof(init_fw_cb->ipv6_addr1));
2006 else
2007 /* IPv6 Addr 0 */
2008 memcpy(init_fw_cb->ipv6_addr0, iface_param->value,
2009 sizeof(init_fw_cb->ipv6_addr0));
2010 break;
2011 case ISCSI_NET_PARAM_IPV6_LINKLOCAL:
2012 if (iface_param->iface_num & 0x1)
2013 break;
2014 memcpy(init_fw_cb->ipv6_if_id, &iface_param->value[8],
2015 sizeof(init_fw_cb->ipv6_if_id));
2016 break;
2017 case ISCSI_NET_PARAM_IPV6_ROUTER:
2018 if (iface_param->iface_num & 0x1)
2019 break;
2020 memcpy(init_fw_cb->ipv6_dflt_rtr_addr, iface_param->value,
2021 sizeof(init_fw_cb->ipv6_dflt_rtr_addr));
2022 break;
2023 case ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG:
2024 /* Autocfg applies to even interface */
2025 if (iface_param->iface_num & 0x1)
2026 break;
2027
2028 if (iface_param->value[0] == ISCSI_IPV6_AUTOCFG_DISABLE)
2029 init_fw_cb->ipv6_addtl_opts &=
2030 cpu_to_le16(
2031 ~IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE);
2032 else if (iface_param->value[0] == ISCSI_IPV6_AUTOCFG_ND_ENABLE)
2033 init_fw_cb->ipv6_addtl_opts |=
2034 cpu_to_le16(
2035 IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE);
2036 else
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002037 ql4_printk(KERN_ERR, ha,
2038 "Invalid autocfg setting for IPv6 addr\n");
Mike Christied00efe32011-07-25 13:48:38 -05002039 break;
2040 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG:
2041 /* Autocfg applies to even interface */
2042 if (iface_param->iface_num & 0x1)
2043 break;
2044
2045 if (iface_param->value[0] ==
2046 ISCSI_IPV6_LINKLOCAL_AUTOCFG_ENABLE)
2047 init_fw_cb->ipv6_addtl_opts |= cpu_to_le16(
2048 IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR);
2049 else if (iface_param->value[0] ==
2050 ISCSI_IPV6_LINKLOCAL_AUTOCFG_DISABLE)
2051 init_fw_cb->ipv6_addtl_opts &= cpu_to_le16(
2052 ~IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR);
2053 else
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002054 ql4_printk(KERN_ERR, ha,
2055 "Invalid autocfg setting for IPv6 linklocal addr\n");
Mike Christied00efe32011-07-25 13:48:38 -05002056 break;
2057 case ISCSI_NET_PARAM_IPV6_ROUTER_AUTOCFG:
2058 /* Autocfg applies to even interface */
2059 if (iface_param->iface_num & 0x1)
2060 break;
2061
2062 if (iface_param->value[0] == ISCSI_IPV6_ROUTER_AUTOCFG_ENABLE)
2063 memset(init_fw_cb->ipv6_dflt_rtr_addr, 0,
2064 sizeof(init_fw_cb->ipv6_dflt_rtr_addr));
2065 break;
2066 case ISCSI_NET_PARAM_IFACE_ENABLE:
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05002067 if (iface_param->value[0] == ISCSI_IFACE_ENABLE) {
Mike Christied00efe32011-07-25 13:48:38 -05002068 init_fw_cb->ipv6_opts |=
2069 cpu_to_le16(IPV6_OPT_IPV6_PROTOCOL_ENABLE);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05002070 qla4xxx_create_ipv6_iface(ha);
2071 } else {
Mike Christied00efe32011-07-25 13:48:38 -05002072 init_fw_cb->ipv6_opts &=
2073 cpu_to_le16(~IPV6_OPT_IPV6_PROTOCOL_ENABLE &
2074 0xFFFF);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05002075 qla4xxx_destroy_ipv6_iface(ha);
2076 }
Mike Christied00efe32011-07-25 13:48:38 -05002077 break;
Mike Christie2d636732011-10-11 17:55:11 -05002078 case ISCSI_NET_PARAM_VLAN_TAG:
Mike Christied00efe32011-07-25 13:48:38 -05002079 if (iface_param->len != sizeof(init_fw_cb->ipv6_vlan_tag))
2080 break;
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -05002081 init_fw_cb->ipv6_vlan_tag =
2082 cpu_to_be16(*(uint16_t *)iface_param->value);
2083 break;
2084 case ISCSI_NET_PARAM_VLAN_ENABLED:
2085 if (iface_param->value[0] == ISCSI_VLAN_ENABLE)
2086 init_fw_cb->ipv6_opts |=
2087 cpu_to_le16(IPV6_OPT_VLAN_TAGGING_ENABLE);
2088 else
2089 init_fw_cb->ipv6_opts &=
2090 cpu_to_le16(~IPV6_OPT_VLAN_TAGGING_ENABLE);
Mike Christied00efe32011-07-25 13:48:38 -05002091 break;
Vikas Chaudhary943c1572011-08-01 03:26:13 -07002092 case ISCSI_NET_PARAM_MTU:
2093 init_fw_cb->eth_mtu_size =
2094 cpu_to_le16(*(uint16_t *)iface_param->value);
2095 break;
Vikas Chaudhary2ada7fc2011-08-01 03:26:19 -07002096 case ISCSI_NET_PARAM_PORT:
2097 /* Autocfg applies to even interface */
2098 if (iface_param->iface_num & 0x1)
2099 break;
2100
2101 init_fw_cb->ipv6_port =
2102 cpu_to_le16(*(uint16_t *)iface_param->value);
2103 break;
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002104 case ISCSI_NET_PARAM_DELAYED_ACK_EN:
2105 if (iface_param->iface_num & 0x1)
2106 break;
2107 if (iface_param->value[0] == ISCSI_NET_PARAM_DISABLE)
2108 init_fw_cb->ipv6_tcp_opts |=
2109 cpu_to_le16(IPV6_TCPOPT_DELAYED_ACK_DISABLE);
2110 else
2111 init_fw_cb->ipv6_tcp_opts &=
Vikas Chaudhary8f108722013-12-16 06:49:53 -05002112 cpu_to_le16(~IPV6_TCPOPT_DELAYED_ACK_DISABLE &
2113 0xFFFF);
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002114 break;
2115 case ISCSI_NET_PARAM_TCP_NAGLE_DISABLE:
2116 if (iface_param->iface_num & 0x1)
2117 break;
2118 if (iface_param->value[0] == ISCSI_NET_PARAM_DISABLE)
2119 init_fw_cb->ipv6_tcp_opts |=
2120 cpu_to_le16(IPV6_TCPOPT_NAGLE_ALGO_DISABLE);
2121 else
2122 init_fw_cb->ipv6_tcp_opts &=
2123 cpu_to_le16(~IPV6_TCPOPT_NAGLE_ALGO_DISABLE);
2124 break;
2125 case ISCSI_NET_PARAM_TCP_WSF_DISABLE:
2126 if (iface_param->iface_num & 0x1)
2127 break;
2128 if (iface_param->value[0] == ISCSI_NET_PARAM_DISABLE)
2129 init_fw_cb->ipv6_tcp_opts |=
2130 cpu_to_le16(IPV6_TCPOPT_WINDOW_SCALE_DISABLE);
2131 else
2132 init_fw_cb->ipv6_tcp_opts &=
2133 cpu_to_le16(~IPV6_TCPOPT_WINDOW_SCALE_DISABLE);
2134 break;
2135 case ISCSI_NET_PARAM_TCP_WSF:
2136 if (iface_param->iface_num & 0x1)
2137 break;
2138 init_fw_cb->ipv6_tcp_wsf = iface_param->value[0];
2139 break;
2140 case ISCSI_NET_PARAM_TCP_TIMER_SCALE:
2141 if (iface_param->iface_num & 0x1)
2142 break;
2143 init_fw_cb->ipv6_tcp_opts &=
2144 cpu_to_le16(~IPV6_TCPOPT_TIMER_SCALE);
2145 init_fw_cb->ipv6_tcp_opts |=
2146 cpu_to_le16((iface_param->value[0] << 1) &
2147 IPV6_TCPOPT_TIMER_SCALE);
2148 break;
2149 case ISCSI_NET_PARAM_TCP_TIMESTAMP_EN:
2150 if (iface_param->iface_num & 0x1)
2151 break;
2152 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2153 init_fw_cb->ipv6_tcp_opts |=
2154 cpu_to_le16(IPV6_TCPOPT_TIMESTAMP_EN);
2155 else
2156 init_fw_cb->ipv6_tcp_opts &=
2157 cpu_to_le16(~IPV6_TCPOPT_TIMESTAMP_EN);
2158 break;
2159 case ISCSI_NET_PARAM_IPV6_GRAT_NEIGHBOR_ADV_EN:
2160 if (iface_param->iface_num & 0x1)
2161 break;
2162 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2163 init_fw_cb->ipv6_opts |=
2164 cpu_to_le16(IPV6_OPT_GRAT_NEIGHBOR_ADV_EN);
2165 else
2166 init_fw_cb->ipv6_opts &=
2167 cpu_to_le16(~IPV6_OPT_GRAT_NEIGHBOR_ADV_EN);
2168 break;
2169 case ISCSI_NET_PARAM_REDIRECT_EN:
2170 if (iface_param->iface_num & 0x1)
2171 break;
2172 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2173 init_fw_cb->ipv6_opts |=
2174 cpu_to_le16(IPV6_OPT_REDIRECT_EN);
2175 else
2176 init_fw_cb->ipv6_opts &=
2177 cpu_to_le16(~IPV6_OPT_REDIRECT_EN);
2178 break;
2179 case ISCSI_NET_PARAM_IPV6_MLD_EN:
2180 if (iface_param->iface_num & 0x1)
2181 break;
2182 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2183 init_fw_cb->ipv6_addtl_opts |=
2184 cpu_to_le16(IPV6_ADDOPT_MLD_EN);
2185 else
2186 init_fw_cb->ipv6_addtl_opts &=
2187 cpu_to_le16(~IPV6_ADDOPT_MLD_EN);
2188 break;
2189 case ISCSI_NET_PARAM_IPV6_FLOW_LABEL:
2190 if (iface_param->iface_num & 0x1)
2191 break;
2192 init_fw_cb->ipv6_flow_lbl =
2193 cpu_to_le16(*(uint16_t *)iface_param->value);
2194 break;
2195 case ISCSI_NET_PARAM_IPV6_TRAFFIC_CLASS:
2196 if (iface_param->iface_num & 0x1)
2197 break;
2198 init_fw_cb->ipv6_traffic_class = iface_param->value[0];
2199 break;
2200 case ISCSI_NET_PARAM_IPV6_HOP_LIMIT:
2201 if (iface_param->iface_num & 0x1)
2202 break;
2203 init_fw_cb->ipv6_hop_limit = iface_param->value[0];
2204 break;
2205 case ISCSI_NET_PARAM_IPV6_ND_REACHABLE_TMO:
2206 if (iface_param->iface_num & 0x1)
2207 break;
2208 init_fw_cb->ipv6_nd_reach_time =
2209 cpu_to_le32(*(uint32_t *)iface_param->value);
2210 break;
2211 case ISCSI_NET_PARAM_IPV6_ND_REXMIT_TIME:
2212 if (iface_param->iface_num & 0x1)
2213 break;
2214 init_fw_cb->ipv6_nd_rexmit_timer =
2215 cpu_to_le32(*(uint32_t *)iface_param->value);
2216 break;
2217 case ISCSI_NET_PARAM_IPV6_ND_STALE_TMO:
2218 if (iface_param->iface_num & 0x1)
2219 break;
2220 init_fw_cb->ipv6_nd_stale_timeout =
2221 cpu_to_le32(*(uint32_t *)iface_param->value);
2222 break;
2223 case ISCSI_NET_PARAM_IPV6_DUP_ADDR_DETECT_CNT:
2224 if (iface_param->iface_num & 0x1)
2225 break;
2226 init_fw_cb->ipv6_dup_addr_detect_count = iface_param->value[0];
2227 break;
2228 case ISCSI_NET_PARAM_IPV6_RTR_ADV_LINK_MTU:
2229 if (iface_param->iface_num & 0x1)
2230 break;
2231 init_fw_cb->ipv6_gw_advrt_mtu =
2232 cpu_to_le32(*(uint32_t *)iface_param->value);
2233 break;
Mike Christied00efe32011-07-25 13:48:38 -05002234 default:
2235 ql4_printk(KERN_ERR, ha, "Unknown IPv6 param = %d\n",
2236 iface_param->param);
2237 break;
2238 }
2239}
2240
2241static void qla4xxx_set_ipv4(struct scsi_qla_host *ha,
2242 struct iscsi_iface_param_info *iface_param,
2243 struct addr_ctrl_blk *init_fw_cb)
2244{
2245 switch (iface_param->param) {
2246 case ISCSI_NET_PARAM_IPV4_ADDR:
2247 memcpy(init_fw_cb->ipv4_addr, iface_param->value,
2248 sizeof(init_fw_cb->ipv4_addr));
2249 break;
2250 case ISCSI_NET_PARAM_IPV4_SUBNET:
2251 memcpy(init_fw_cb->ipv4_subnet, iface_param->value,
2252 sizeof(init_fw_cb->ipv4_subnet));
2253 break;
2254 case ISCSI_NET_PARAM_IPV4_GW:
2255 memcpy(init_fw_cb->ipv4_gw_addr, iface_param->value,
2256 sizeof(init_fw_cb->ipv4_gw_addr));
2257 break;
2258 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
2259 if (iface_param->value[0] == ISCSI_BOOTPROTO_DHCP)
2260 init_fw_cb->ipv4_tcp_opts |=
2261 cpu_to_le16(TCPOPT_DHCP_ENABLE);
2262 else if (iface_param->value[0] == ISCSI_BOOTPROTO_STATIC)
2263 init_fw_cb->ipv4_tcp_opts &=
2264 cpu_to_le16(~TCPOPT_DHCP_ENABLE);
2265 else
2266 ql4_printk(KERN_ERR, ha, "Invalid IPv4 bootproto\n");
2267 break;
2268 case ISCSI_NET_PARAM_IFACE_ENABLE:
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05002269 if (iface_param->value[0] == ISCSI_IFACE_ENABLE) {
Mike Christied00efe32011-07-25 13:48:38 -05002270 init_fw_cb->ipv4_ip_opts |=
Vikas Chaudhary2bab08f2011-07-25 13:48:39 -05002271 cpu_to_le16(IPOPT_IPV4_PROTOCOL_ENABLE);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05002272 qla4xxx_create_ipv4_iface(ha);
2273 } else {
Mike Christied00efe32011-07-25 13:48:38 -05002274 init_fw_cb->ipv4_ip_opts &=
Vikas Chaudhary2bab08f2011-07-25 13:48:39 -05002275 cpu_to_le16(~IPOPT_IPV4_PROTOCOL_ENABLE &
Mike Christied00efe32011-07-25 13:48:38 -05002276 0xFFFF);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05002277 qla4xxx_destroy_ipv4_iface(ha);
2278 }
Mike Christied00efe32011-07-25 13:48:38 -05002279 break;
Mike Christie2d636732011-10-11 17:55:11 -05002280 case ISCSI_NET_PARAM_VLAN_TAG:
Mike Christied00efe32011-07-25 13:48:38 -05002281 if (iface_param->len != sizeof(init_fw_cb->ipv4_vlan_tag))
2282 break;
Vikas Chaudhary6ac73e82011-07-25 13:48:49 -05002283 init_fw_cb->ipv4_vlan_tag =
2284 cpu_to_be16(*(uint16_t *)iface_param->value);
2285 break;
2286 case ISCSI_NET_PARAM_VLAN_ENABLED:
2287 if (iface_param->value[0] == ISCSI_VLAN_ENABLE)
2288 init_fw_cb->ipv4_ip_opts |=
2289 cpu_to_le16(IPOPT_VLAN_TAGGING_ENABLE);
2290 else
2291 init_fw_cb->ipv4_ip_opts &=
2292 cpu_to_le16(~IPOPT_VLAN_TAGGING_ENABLE);
Mike Christied00efe32011-07-25 13:48:38 -05002293 break;
Vikas Chaudhary943c1572011-08-01 03:26:13 -07002294 case ISCSI_NET_PARAM_MTU:
2295 init_fw_cb->eth_mtu_size =
2296 cpu_to_le16(*(uint16_t *)iface_param->value);
2297 break;
Vikas Chaudhary2ada7fc2011-08-01 03:26:19 -07002298 case ISCSI_NET_PARAM_PORT:
2299 init_fw_cb->ipv4_port =
2300 cpu_to_le16(*(uint16_t *)iface_param->value);
2301 break;
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002302 case ISCSI_NET_PARAM_DELAYED_ACK_EN:
2303 if (iface_param->iface_num & 0x1)
2304 break;
2305 if (iface_param->value[0] == ISCSI_NET_PARAM_DISABLE)
2306 init_fw_cb->ipv4_tcp_opts |=
2307 cpu_to_le16(TCPOPT_DELAYED_ACK_DISABLE);
2308 else
2309 init_fw_cb->ipv4_tcp_opts &=
Vikas Chaudhary8f108722013-12-16 06:49:53 -05002310 cpu_to_le16(~TCPOPT_DELAYED_ACK_DISABLE &
2311 0xFFFF);
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002312 break;
2313 case ISCSI_NET_PARAM_TCP_NAGLE_DISABLE:
2314 if (iface_param->iface_num & 0x1)
2315 break;
2316 if (iface_param->value[0] == ISCSI_NET_PARAM_DISABLE)
2317 init_fw_cb->ipv4_tcp_opts |=
2318 cpu_to_le16(TCPOPT_NAGLE_ALGO_DISABLE);
2319 else
2320 init_fw_cb->ipv4_tcp_opts &=
2321 cpu_to_le16(~TCPOPT_NAGLE_ALGO_DISABLE);
2322 break;
2323 case ISCSI_NET_PARAM_TCP_WSF_DISABLE:
2324 if (iface_param->iface_num & 0x1)
2325 break;
2326 if (iface_param->value[0] == ISCSI_NET_PARAM_DISABLE)
2327 init_fw_cb->ipv4_tcp_opts |=
2328 cpu_to_le16(TCPOPT_WINDOW_SCALE_DISABLE);
2329 else
2330 init_fw_cb->ipv4_tcp_opts &=
2331 cpu_to_le16(~TCPOPT_WINDOW_SCALE_DISABLE);
2332 break;
2333 case ISCSI_NET_PARAM_TCP_WSF:
2334 if (iface_param->iface_num & 0x1)
2335 break;
2336 init_fw_cb->ipv4_tcp_wsf = iface_param->value[0];
2337 break;
2338 case ISCSI_NET_PARAM_TCP_TIMER_SCALE:
2339 if (iface_param->iface_num & 0x1)
2340 break;
2341 init_fw_cb->ipv4_tcp_opts &= cpu_to_le16(~TCPOPT_TIMER_SCALE);
2342 init_fw_cb->ipv4_tcp_opts |=
2343 cpu_to_le16((iface_param->value[0] << 1) &
2344 TCPOPT_TIMER_SCALE);
2345 break;
2346 case ISCSI_NET_PARAM_TCP_TIMESTAMP_EN:
2347 if (iface_param->iface_num & 0x1)
2348 break;
2349 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2350 init_fw_cb->ipv4_tcp_opts |=
2351 cpu_to_le16(TCPOPT_TIMESTAMP_ENABLE);
2352 else
2353 init_fw_cb->ipv4_tcp_opts &=
2354 cpu_to_le16(~TCPOPT_TIMESTAMP_ENABLE);
2355 break;
2356 case ISCSI_NET_PARAM_IPV4_DHCP_DNS_ADDR_EN:
2357 if (iface_param->iface_num & 0x1)
2358 break;
2359 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2360 init_fw_cb->ipv4_tcp_opts |=
2361 cpu_to_le16(TCPOPT_DNS_SERVER_IP_EN);
2362 else
2363 init_fw_cb->ipv4_tcp_opts &=
2364 cpu_to_le16(~TCPOPT_DNS_SERVER_IP_EN);
2365 break;
2366 case ISCSI_NET_PARAM_IPV4_DHCP_SLP_DA_EN:
2367 if (iface_param->iface_num & 0x1)
2368 break;
2369 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2370 init_fw_cb->ipv4_tcp_opts |=
2371 cpu_to_le16(TCPOPT_SLP_DA_INFO_EN);
2372 else
2373 init_fw_cb->ipv4_tcp_opts &=
2374 cpu_to_le16(~TCPOPT_SLP_DA_INFO_EN);
2375 break;
2376 case ISCSI_NET_PARAM_IPV4_TOS_EN:
2377 if (iface_param->iface_num & 0x1)
2378 break;
2379 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2380 init_fw_cb->ipv4_ip_opts |=
2381 cpu_to_le16(IPOPT_IPV4_TOS_EN);
2382 else
2383 init_fw_cb->ipv4_ip_opts &=
2384 cpu_to_le16(~IPOPT_IPV4_TOS_EN);
2385 break;
2386 case ISCSI_NET_PARAM_IPV4_TOS:
2387 if (iface_param->iface_num & 0x1)
2388 break;
2389 init_fw_cb->ipv4_tos = iface_param->value[0];
2390 break;
2391 case ISCSI_NET_PARAM_IPV4_GRAT_ARP_EN:
2392 if (iface_param->iface_num & 0x1)
2393 break;
2394 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2395 init_fw_cb->ipv4_ip_opts |=
2396 cpu_to_le16(IPOPT_GRAT_ARP_EN);
2397 else
2398 init_fw_cb->ipv4_ip_opts &=
2399 cpu_to_le16(~IPOPT_GRAT_ARP_EN);
2400 break;
2401 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID_EN:
2402 if (iface_param->iface_num & 0x1)
2403 break;
2404 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2405 init_fw_cb->ipv4_ip_opts |=
2406 cpu_to_le16(IPOPT_ALT_CID_EN);
2407 else
2408 init_fw_cb->ipv4_ip_opts &=
2409 cpu_to_le16(~IPOPT_ALT_CID_EN);
2410 break;
2411 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID:
2412 if (iface_param->iface_num & 0x1)
2413 break;
2414 memcpy(init_fw_cb->ipv4_dhcp_alt_cid, iface_param->value,
2415 (sizeof(init_fw_cb->ipv4_dhcp_alt_cid) - 1));
2416 init_fw_cb->ipv4_dhcp_alt_cid_len =
2417 strlen(init_fw_cb->ipv4_dhcp_alt_cid);
2418 break;
2419 case ISCSI_NET_PARAM_IPV4_DHCP_REQ_VENDOR_ID_EN:
2420 if (iface_param->iface_num & 0x1)
2421 break;
2422 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2423 init_fw_cb->ipv4_ip_opts |=
2424 cpu_to_le16(IPOPT_REQ_VID_EN);
2425 else
2426 init_fw_cb->ipv4_ip_opts &=
2427 cpu_to_le16(~IPOPT_REQ_VID_EN);
2428 break;
2429 case ISCSI_NET_PARAM_IPV4_DHCP_USE_VENDOR_ID_EN:
2430 if (iface_param->iface_num & 0x1)
2431 break;
2432 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2433 init_fw_cb->ipv4_ip_opts |=
2434 cpu_to_le16(IPOPT_USE_VID_EN);
2435 else
2436 init_fw_cb->ipv4_ip_opts &=
2437 cpu_to_le16(~IPOPT_USE_VID_EN);
2438 break;
2439 case ISCSI_NET_PARAM_IPV4_DHCP_VENDOR_ID:
2440 if (iface_param->iface_num & 0x1)
2441 break;
2442 memcpy(init_fw_cb->ipv4_dhcp_vid, iface_param->value,
2443 (sizeof(init_fw_cb->ipv4_dhcp_vid) - 1));
2444 init_fw_cb->ipv4_dhcp_vid_len =
2445 strlen(init_fw_cb->ipv4_dhcp_vid);
2446 break;
2447 case ISCSI_NET_PARAM_IPV4_DHCP_LEARN_IQN_EN:
2448 if (iface_param->iface_num & 0x1)
2449 break;
2450 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2451 init_fw_cb->ipv4_ip_opts |=
2452 cpu_to_le16(IPOPT_LEARN_IQN_EN);
2453 else
2454 init_fw_cb->ipv4_ip_opts &=
2455 cpu_to_le16(~IPOPT_LEARN_IQN_EN);
2456 break;
2457 case ISCSI_NET_PARAM_IPV4_FRAGMENT_DISABLE:
2458 if (iface_param->iface_num & 0x1)
2459 break;
2460 if (iface_param->value[0] == ISCSI_NET_PARAM_DISABLE)
2461 init_fw_cb->ipv4_ip_opts |=
2462 cpu_to_le16(IPOPT_FRAGMENTATION_DISABLE);
2463 else
2464 init_fw_cb->ipv4_ip_opts &=
2465 cpu_to_le16(~IPOPT_FRAGMENTATION_DISABLE);
2466 break;
2467 case ISCSI_NET_PARAM_IPV4_IN_FORWARD_EN:
2468 if (iface_param->iface_num & 0x1)
2469 break;
2470 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2471 init_fw_cb->ipv4_ip_opts |=
2472 cpu_to_le16(IPOPT_IN_FORWARD_EN);
2473 else
2474 init_fw_cb->ipv4_ip_opts &=
2475 cpu_to_le16(~IPOPT_IN_FORWARD_EN);
2476 break;
2477 case ISCSI_NET_PARAM_REDIRECT_EN:
2478 if (iface_param->iface_num & 0x1)
2479 break;
2480 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2481 init_fw_cb->ipv4_ip_opts |=
2482 cpu_to_le16(IPOPT_ARP_REDIRECT_EN);
2483 else
2484 init_fw_cb->ipv4_ip_opts &=
2485 cpu_to_le16(~IPOPT_ARP_REDIRECT_EN);
2486 break;
2487 case ISCSI_NET_PARAM_IPV4_TTL:
2488 if (iface_param->iface_num & 0x1)
2489 break;
2490 init_fw_cb->ipv4_ttl = iface_param->value[0];
2491 break;
Mike Christied00efe32011-07-25 13:48:38 -05002492 default:
2493 ql4_printk(KERN_ERR, ha, "Unknown IPv4 param = %d\n",
2494 iface_param->param);
2495 break;
2496 }
2497}
2498
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002499static void qla4xxx_set_iscsi_param(struct scsi_qla_host *ha,
2500 struct iscsi_iface_param_info *iface_param,
2501 struct addr_ctrl_blk *init_fw_cb)
2502{
2503 switch (iface_param->param) {
2504 case ISCSI_IFACE_PARAM_DEF_TASKMGMT_TMO:
2505 if (iface_param->iface_num & 0x1)
2506 break;
2507 init_fw_cb->def_timeout =
2508 cpu_to_le16(*(uint16_t *)iface_param->value);
2509 break;
2510 case ISCSI_IFACE_PARAM_HDRDGST_EN:
2511 if (iface_param->iface_num & 0x1)
2512 break;
2513 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2514 init_fw_cb->iscsi_opts |=
2515 cpu_to_le16(ISCSIOPTS_HEADER_DIGEST_EN);
2516 else
2517 init_fw_cb->iscsi_opts &=
2518 cpu_to_le16(~ISCSIOPTS_HEADER_DIGEST_EN);
2519 break;
2520 case ISCSI_IFACE_PARAM_DATADGST_EN:
2521 if (iface_param->iface_num & 0x1)
2522 break;
2523 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2524 init_fw_cb->iscsi_opts |=
2525 cpu_to_le16(ISCSIOPTS_DATA_DIGEST_EN);
2526 else
2527 init_fw_cb->iscsi_opts &=
2528 cpu_to_le16(~ISCSIOPTS_DATA_DIGEST_EN);
2529 break;
2530 case ISCSI_IFACE_PARAM_IMM_DATA_EN:
2531 if (iface_param->iface_num & 0x1)
2532 break;
2533 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2534 init_fw_cb->iscsi_opts |=
2535 cpu_to_le16(ISCSIOPTS_IMMEDIATE_DATA_EN);
2536 else
2537 init_fw_cb->iscsi_opts &=
2538 cpu_to_le16(~ISCSIOPTS_IMMEDIATE_DATA_EN);
2539 break;
2540 case ISCSI_IFACE_PARAM_INITIAL_R2T_EN:
2541 if (iface_param->iface_num & 0x1)
2542 break;
2543 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2544 init_fw_cb->iscsi_opts |=
2545 cpu_to_le16(ISCSIOPTS_INITIAL_R2T_EN);
2546 else
2547 init_fw_cb->iscsi_opts &=
2548 cpu_to_le16(~ISCSIOPTS_INITIAL_R2T_EN);
2549 break;
2550 case ISCSI_IFACE_PARAM_DATASEQ_INORDER_EN:
2551 if (iface_param->iface_num & 0x1)
2552 break;
2553 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2554 init_fw_cb->iscsi_opts |=
2555 cpu_to_le16(ISCSIOPTS_DATA_SEQ_INORDER_EN);
2556 else
2557 init_fw_cb->iscsi_opts &=
2558 cpu_to_le16(~ISCSIOPTS_DATA_SEQ_INORDER_EN);
2559 break;
2560 case ISCSI_IFACE_PARAM_PDU_INORDER_EN:
2561 if (iface_param->iface_num & 0x1)
2562 break;
2563 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2564 init_fw_cb->iscsi_opts |=
2565 cpu_to_le16(ISCSIOPTS_DATA_PDU_INORDER_EN);
2566 else
2567 init_fw_cb->iscsi_opts &=
2568 cpu_to_le16(~ISCSIOPTS_DATA_PDU_INORDER_EN);
2569 break;
2570 case ISCSI_IFACE_PARAM_ERL:
2571 if (iface_param->iface_num & 0x1)
2572 break;
2573 init_fw_cb->iscsi_opts &= cpu_to_le16(~ISCSIOPTS_ERL);
2574 init_fw_cb->iscsi_opts |= cpu_to_le16(iface_param->value[0] &
2575 ISCSIOPTS_ERL);
2576 break;
2577 case ISCSI_IFACE_PARAM_MAX_RECV_DLENGTH:
2578 if (iface_param->iface_num & 0x1)
2579 break;
2580 init_fw_cb->iscsi_max_pdu_size =
2581 cpu_to_le32(*(uint32_t *)iface_param->value) /
2582 BYTE_UNITS;
2583 break;
2584 case ISCSI_IFACE_PARAM_FIRST_BURST:
2585 if (iface_param->iface_num & 0x1)
2586 break;
2587 init_fw_cb->iscsi_fburst_len =
2588 cpu_to_le32(*(uint32_t *)iface_param->value) /
2589 BYTE_UNITS;
2590 break;
2591 case ISCSI_IFACE_PARAM_MAX_R2T:
2592 if (iface_param->iface_num & 0x1)
2593 break;
2594 init_fw_cb->iscsi_max_outstnd_r2t =
2595 cpu_to_le16(*(uint16_t *)iface_param->value);
2596 break;
2597 case ISCSI_IFACE_PARAM_MAX_BURST:
2598 if (iface_param->iface_num & 0x1)
2599 break;
2600 init_fw_cb->iscsi_max_burst_len =
2601 cpu_to_le32(*(uint32_t *)iface_param->value) /
2602 BYTE_UNITS;
2603 break;
2604 case ISCSI_IFACE_PARAM_CHAP_AUTH_EN:
2605 if (iface_param->iface_num & 0x1)
2606 break;
2607 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2608 init_fw_cb->iscsi_opts |=
2609 cpu_to_le16(ISCSIOPTS_CHAP_AUTH_EN);
2610 else
2611 init_fw_cb->iscsi_opts &=
2612 cpu_to_le16(~ISCSIOPTS_CHAP_AUTH_EN);
2613 break;
2614 case ISCSI_IFACE_PARAM_BIDI_CHAP_EN:
2615 if (iface_param->iface_num & 0x1)
2616 break;
2617 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2618 init_fw_cb->iscsi_opts |=
2619 cpu_to_le16(ISCSIOPTS_BIDI_CHAP_EN);
2620 else
2621 init_fw_cb->iscsi_opts &=
2622 cpu_to_le16(~ISCSIOPTS_BIDI_CHAP_EN);
2623 break;
2624 case ISCSI_IFACE_PARAM_DISCOVERY_AUTH_OPTIONAL:
2625 if (iface_param->iface_num & 0x1)
2626 break;
2627 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2628 init_fw_cb->iscsi_opts |=
2629 cpu_to_le16(ISCSIOPTS_DISCOVERY_AUTH_EN);
2630 else
2631 init_fw_cb->iscsi_opts &=
2632 cpu_to_le16(~ISCSIOPTS_DISCOVERY_AUTH_EN);
2633 break;
2634 case ISCSI_IFACE_PARAM_DISCOVERY_LOGOUT_EN:
2635 if (iface_param->iface_num & 0x1)
2636 break;
2637 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2638 init_fw_cb->iscsi_opts |=
2639 cpu_to_le16(ISCSIOPTS_DISCOVERY_LOGOUT_EN);
2640 else
2641 init_fw_cb->iscsi_opts &=
2642 cpu_to_le16(~ISCSIOPTS_DISCOVERY_LOGOUT_EN);
2643 break;
2644 case ISCSI_IFACE_PARAM_STRICT_LOGIN_COMP_EN:
2645 if (iface_param->iface_num & 0x1)
2646 break;
2647 if (iface_param->value[0] == ISCSI_NET_PARAM_ENABLE)
2648 init_fw_cb->iscsi_opts |=
2649 cpu_to_le16(ISCSIOPTS_STRICT_LOGIN_COMP_EN);
2650 else
2651 init_fw_cb->iscsi_opts &=
2652 cpu_to_le16(~ISCSIOPTS_STRICT_LOGIN_COMP_EN);
2653 break;
2654 default:
2655 ql4_printk(KERN_ERR, ha, "Unknown iscsi param = %d\n",
2656 iface_param->param);
2657 break;
2658 }
2659}
2660
Mike Christied00efe32011-07-25 13:48:38 -05002661static void
2662qla4xxx_initcb_to_acb(struct addr_ctrl_blk *init_fw_cb)
2663{
2664 struct addr_ctrl_blk_def *acb;
2665 acb = (struct addr_ctrl_blk_def *)init_fw_cb;
2666 memset(acb->reserved1, 0, sizeof(acb->reserved1));
2667 memset(acb->reserved2, 0, sizeof(acb->reserved2));
2668 memset(acb->reserved3, 0, sizeof(acb->reserved3));
2669 memset(acb->reserved4, 0, sizeof(acb->reserved4));
2670 memset(acb->reserved5, 0, sizeof(acb->reserved5));
2671 memset(acb->reserved6, 0, sizeof(acb->reserved6));
2672 memset(acb->reserved7, 0, sizeof(acb->reserved7));
2673 memset(acb->reserved8, 0, sizeof(acb->reserved8));
2674 memset(acb->reserved9, 0, sizeof(acb->reserved9));
2675 memset(acb->reserved10, 0, sizeof(acb->reserved10));
2676 memset(acb->reserved11, 0, sizeof(acb->reserved11));
2677 memset(acb->reserved12, 0, sizeof(acb->reserved12));
2678 memset(acb->reserved13, 0, sizeof(acb->reserved13));
2679 memset(acb->reserved14, 0, sizeof(acb->reserved14));
2680 memset(acb->reserved15, 0, sizeof(acb->reserved15));
2681}
2682
2683static int
Mike Christie00c31882011-10-06 03:56:59 -05002684qla4xxx_iface_set_param(struct Scsi_Host *shost, void *data, uint32_t len)
Mike Christied00efe32011-07-25 13:48:38 -05002685{
2686 struct scsi_qla_host *ha = to_qla_host(shost);
2687 int rval = 0;
2688 struct iscsi_iface_param_info *iface_param = NULL;
2689 struct addr_ctrl_blk *init_fw_cb = NULL;
2690 dma_addr_t init_fw_cb_dma;
2691 uint32_t mbox_cmd[MBOX_REG_COUNT];
2692 uint32_t mbox_sts[MBOX_REG_COUNT];
Mike Christie00c31882011-10-06 03:56:59 -05002693 uint32_t rem = len;
2694 struct nlattr *attr;
Mike Christied00efe32011-07-25 13:48:38 -05002695
2696 init_fw_cb = dma_alloc_coherent(&ha->pdev->dev,
2697 sizeof(struct addr_ctrl_blk),
2698 &init_fw_cb_dma, GFP_KERNEL);
2699 if (!init_fw_cb) {
2700 ql4_printk(KERN_ERR, ha, "%s: Unable to alloc init_cb\n",
2701 __func__);
2702 return -ENOMEM;
2703 }
2704
2705 memset(init_fw_cb, 0, sizeof(struct addr_ctrl_blk));
2706 memset(&mbox_cmd, 0, sizeof(mbox_cmd));
2707 memset(&mbox_sts, 0, sizeof(mbox_sts));
2708
2709 if (qla4xxx_get_ifcb(ha, &mbox_cmd[0], &mbox_sts[0], init_fw_cb_dma)) {
2710 ql4_printk(KERN_ERR, ha, "%s: get ifcb failed\n", __func__);
2711 rval = -EIO;
2712 goto exit_init_fw_cb;
2713 }
2714
Mike Christie00c31882011-10-06 03:56:59 -05002715 nla_for_each_attr(attr, data, len, rem) {
2716 iface_param = nla_data(attr);
Mike Christied00efe32011-07-25 13:48:38 -05002717
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002718 if (iface_param->param_type == ISCSI_NET_PARAM) {
2719 switch (iface_param->iface_type) {
2720 case ISCSI_IFACE_TYPE_IPV4:
2721 switch (iface_param->iface_num) {
2722 case 0:
2723 qla4xxx_set_ipv4(ha, iface_param,
2724 init_fw_cb);
2725 break;
2726 default:
Mike Christied00efe32011-07-25 13:48:38 -05002727 /* Cannot have more than one IPv4 interface */
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002728 ql4_printk(KERN_ERR, ha,
2729 "Invalid IPv4 iface number = %d\n",
2730 iface_param->iface_num);
2731 break;
2732 }
Mike Christied00efe32011-07-25 13:48:38 -05002733 break;
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002734 case ISCSI_IFACE_TYPE_IPV6:
2735 switch (iface_param->iface_num) {
2736 case 0:
2737 case 1:
2738 qla4xxx_set_ipv6(ha, iface_param,
2739 init_fw_cb);
2740 break;
2741 default:
2742 /* Cannot have more than two IPv6 interface */
2743 ql4_printk(KERN_ERR, ha,
2744 "Invalid IPv6 iface number = %d\n",
2745 iface_param->iface_num);
2746 break;
2747 }
Mike Christied00efe32011-07-25 13:48:38 -05002748 break;
2749 default:
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002750 ql4_printk(KERN_ERR, ha,
2751 "Invalid iface type\n");
Mike Christied00efe32011-07-25 13:48:38 -05002752 break;
2753 }
Harish Zunjarraof8e93412013-10-18 09:01:42 -04002754 } else if (iface_param->param_type == ISCSI_IFACE_PARAM) {
2755 qla4xxx_set_iscsi_param(ha, iface_param,
2756 init_fw_cb);
2757 } else {
2758 continue;
Mike Christied00efe32011-07-25 13:48:38 -05002759 }
Mike Christied00efe32011-07-25 13:48:38 -05002760 }
2761
2762 init_fw_cb->cookie = cpu_to_le32(0x11BEAD5A);
2763
2764 rval = qla4xxx_set_flash(ha, init_fw_cb_dma, FLASH_SEGMENT_IFCB,
2765 sizeof(struct addr_ctrl_blk),
2766 FLASH_OPT_RMW_COMMIT);
2767 if (rval != QLA_SUCCESS) {
2768 ql4_printk(KERN_ERR, ha, "%s: set flash mbx failed\n",
2769 __func__);
2770 rval = -EIO;
2771 goto exit_init_fw_cb;
2772 }
2773
Vikas Chaudharyce505f92011-12-01 22:42:10 -08002774 rval = qla4xxx_disable_acb(ha);
2775 if (rval != QLA_SUCCESS) {
2776 ql4_printk(KERN_ERR, ha, "%s: disable acb mbx failed\n",
2777 __func__);
2778 rval = -EIO;
2779 goto exit_init_fw_cb;
2780 }
2781
2782 wait_for_completion_timeout(&ha->disable_acb_comp,
2783 DISABLE_ACB_TOV * HZ);
Mike Christied00efe32011-07-25 13:48:38 -05002784
2785 qla4xxx_initcb_to_acb(init_fw_cb);
2786
2787 rval = qla4xxx_set_acb(ha, &mbox_cmd[0], &mbox_sts[0], init_fw_cb_dma);
2788 if (rval != QLA_SUCCESS) {
2789 ql4_printk(KERN_ERR, ha, "%s: set acb mbx failed\n",
2790 __func__);
2791 rval = -EIO;
2792 goto exit_init_fw_cb;
2793 }
2794
2795 memset(init_fw_cb, 0, sizeof(struct addr_ctrl_blk));
2796 qla4xxx_update_local_ifcb(ha, &mbox_cmd[0], &mbox_sts[0], init_fw_cb,
2797 init_fw_cb_dma);
2798
2799exit_init_fw_cb:
2800 dma_free_coherent(&ha->pdev->dev, sizeof(struct addr_ctrl_blk),
2801 init_fw_cb, init_fw_cb_dma);
2802
2803 return rval;
2804}
2805
Mike Christiefca9f042012-02-27 03:08:54 -08002806static int qla4xxx_session_get_param(struct iscsi_cls_session *cls_sess,
2807 enum iscsi_param param, char *buf)
2808{
2809 struct iscsi_session *sess = cls_sess->dd_data;
2810 struct ddb_entry *ddb_entry = sess->dd_data;
2811 struct scsi_qla_host *ha = ddb_entry->ha;
Adheer Chandravanshi97c27302013-09-17 07:54:50 -04002812 struct iscsi_cls_conn *cls_conn = ddb_entry->conn;
2813 struct ql4_chap_table chap_tbl;
Mike Christiefca9f042012-02-27 03:08:54 -08002814 int rval, len;
2815 uint16_t idx;
2816
Adheer Chandravanshi97c27302013-09-17 07:54:50 -04002817 memset(&chap_tbl, 0, sizeof(chap_tbl));
Mike Christiefca9f042012-02-27 03:08:54 -08002818 switch (param) {
2819 case ISCSI_PARAM_CHAP_IN_IDX:
2820 rval = qla4xxx_get_chap_index(ha, sess->username_in,
2821 sess->password_in, BIDI_CHAP,
2822 &idx);
2823 if (rval)
Manish Rangankarc7a5e0d2013-01-20 23:51:04 -05002824 len = sprintf(buf, "\n");
2825 else
2826 len = sprintf(buf, "%hu\n", idx);
Mike Christiefca9f042012-02-27 03:08:54 -08002827 break;
2828 case ISCSI_PARAM_CHAP_OUT_IDX:
Adheer Chandravanshi97c27302013-09-17 07:54:50 -04002829 if (ddb_entry->ddb_type == FLASH_DDB) {
2830 if (ddb_entry->chap_tbl_idx != INVALID_ENTRY) {
2831 idx = ddb_entry->chap_tbl_idx;
2832 rval = QLA_SUCCESS;
2833 } else {
2834 rval = QLA_ERROR;
2835 }
2836 } else {
2837 rval = qla4xxx_get_chap_index(ha, sess->username,
2838 sess->password,
2839 LOCAL_CHAP, &idx);
2840 }
Mike Christiefca9f042012-02-27 03:08:54 -08002841 if (rval)
Manish Rangankarc7a5e0d2013-01-20 23:51:04 -05002842 len = sprintf(buf, "\n");
2843 else
2844 len = sprintf(buf, "%hu\n", idx);
Mike Christiefca9f042012-02-27 03:08:54 -08002845 break;
Adheer Chandravanshi97c27302013-09-17 07:54:50 -04002846 case ISCSI_PARAM_USERNAME:
2847 case ISCSI_PARAM_PASSWORD:
2848 /* First, populate session username and password for FLASH DDB,
2849 * if not already done. This happens when session login fails
2850 * for a FLASH DDB.
2851 */
2852 if (ddb_entry->ddb_type == FLASH_DDB &&
2853 ddb_entry->chap_tbl_idx != INVALID_ENTRY &&
2854 !sess->username && !sess->password) {
2855 idx = ddb_entry->chap_tbl_idx;
2856 rval = qla4xxx_get_uni_chap_at_index(ha, chap_tbl.name,
2857 chap_tbl.secret,
2858 idx);
2859 if (!rval) {
2860 iscsi_set_param(cls_conn, ISCSI_PARAM_USERNAME,
2861 (char *)chap_tbl.name,
2862 strlen((char *)chap_tbl.name));
2863 iscsi_set_param(cls_conn, ISCSI_PARAM_PASSWORD,
2864 (char *)chap_tbl.secret,
2865 chap_tbl.secret_len);
2866 }
2867 }
2868 /* allow fall-through */
Mike Christiefca9f042012-02-27 03:08:54 -08002869 default:
2870 return iscsi_session_get_param(cls_sess, param, buf);
2871 }
2872
2873 return len;
2874}
2875
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002876static int qla4xxx_conn_get_param(struct iscsi_cls_conn *cls_conn,
David Somayajuluafaf5a22006-09-19 10:28:00 -07002877 enum iscsi_param param, char *buf)
2878{
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002879 struct iscsi_conn *conn;
2880 struct qla_conn *qla_conn;
2881 struct sockaddr *dst_addr;
2882 int len = 0;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002883
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002884 conn = cls_conn->dd_data;
2885 qla_conn = conn->dd_data;
Manish Rangankard46bdeb12012-08-07 07:57:13 -04002886 dst_addr = (struct sockaddr *)&qla_conn->qla_ep->dst_addr;
David Somayajuluafaf5a22006-09-19 10:28:00 -07002887
2888 switch (param) {
2889 case ISCSI_PARAM_CONN_PORT:
David Somayajuluafaf5a22006-09-19 10:28:00 -07002890 case ISCSI_PARAM_CONN_ADDRESS:
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002891 return iscsi_conn_get_addr_param((struct sockaddr_storage *)
2892 dst_addr, param, buf);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002893 default:
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002894 return iscsi_conn_get_param(cls_conn, param, buf);
David Somayajuluafaf5a22006-09-19 10:28:00 -07002895 }
2896
2897 return len;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05002898
David Somayajuluafaf5a22006-09-19 10:28:00 -07002899}
2900
Mike Christie13483732011-12-01 21:38:41 -06002901int qla4xxx_get_ddb_index(struct scsi_qla_host *ha, uint16_t *ddb_index)
2902{
2903 uint32_t mbx_sts = 0;
2904 uint16_t tmp_ddb_index;
2905 int ret;
2906
2907get_ddb_index:
2908 tmp_ddb_index = find_first_zero_bit(ha->ddb_idx_map, MAX_DDB_ENTRIES);
2909
2910 if (tmp_ddb_index >= MAX_DDB_ENTRIES) {
2911 DEBUG2(ql4_printk(KERN_INFO, ha,
2912 "Free DDB index not available\n"));
2913 ret = QLA_ERROR;
2914 goto exit_get_ddb_index;
2915 }
2916
2917 if (test_and_set_bit(tmp_ddb_index, ha->ddb_idx_map))
2918 goto get_ddb_index;
2919
2920 DEBUG2(ql4_printk(KERN_INFO, ha,
2921 "Found a free DDB index at %d\n", tmp_ddb_index));
2922 ret = qla4xxx_req_ddb_entry(ha, tmp_ddb_index, &mbx_sts);
2923 if (ret == QLA_ERROR) {
2924 if (mbx_sts == MBOX_STS_COMMAND_ERROR) {
2925 ql4_printk(KERN_INFO, ha,
2926 "DDB index = %d not available trying next\n",
2927 tmp_ddb_index);
2928 goto get_ddb_index;
2929 }
2930 DEBUG2(ql4_printk(KERN_INFO, ha,
2931 "Free FW DDB not available\n"));
2932 }
2933
2934 *ddb_index = tmp_ddb_index;
2935
2936exit_get_ddb_index:
2937 return ret;
2938}
2939
2940static int qla4xxx_match_ipaddress(struct scsi_qla_host *ha,
2941 struct ddb_entry *ddb_entry,
2942 char *existing_ipaddr,
2943 char *user_ipaddr)
2944{
2945 uint8_t dst_ipaddr[IPv6_ADDR_LEN];
2946 char formatted_ipaddr[DDB_IPADDR_LEN];
2947 int status = QLA_SUCCESS, ret = 0;
2948
2949 if (ddb_entry->fw_ddb_entry.options & DDB_OPT_IPV6_DEVICE) {
2950 ret = in6_pton(user_ipaddr, strlen(user_ipaddr), dst_ipaddr,
2951 '\0', NULL);
2952 if (ret == 0) {
2953 status = QLA_ERROR;
2954 goto out_match;
2955 }
2956 ret = sprintf(formatted_ipaddr, "%pI6", dst_ipaddr);
2957 } else {
2958 ret = in4_pton(user_ipaddr, strlen(user_ipaddr), dst_ipaddr,
2959 '\0', NULL);
2960 if (ret == 0) {
2961 status = QLA_ERROR;
2962 goto out_match;
2963 }
2964 ret = sprintf(formatted_ipaddr, "%pI4", dst_ipaddr);
2965 }
2966
2967 if (strcmp(existing_ipaddr, formatted_ipaddr))
2968 status = QLA_ERROR;
2969
2970out_match:
2971 return status;
2972}
2973
2974static int qla4xxx_match_fwdb_session(struct scsi_qla_host *ha,
2975 struct iscsi_cls_conn *cls_conn)
2976{
2977 int idx = 0, max_ddbs, rval;
2978 struct iscsi_cls_session *cls_sess = iscsi_conn_to_session(cls_conn);
2979 struct iscsi_session *sess, *existing_sess;
2980 struct iscsi_conn *conn, *existing_conn;
2981 struct ddb_entry *ddb_entry;
2982
2983 sess = cls_sess->dd_data;
2984 conn = cls_conn->dd_data;
2985
2986 if (sess->targetname == NULL ||
2987 conn->persistent_address == NULL ||
2988 conn->persistent_port == 0)
2989 return QLA_ERROR;
2990
2991 max_ddbs = is_qla40XX(ha) ? MAX_DEV_DB_ENTRIES_40XX :
2992 MAX_DEV_DB_ENTRIES;
2993
2994 for (idx = 0; idx < max_ddbs; idx++) {
2995 ddb_entry = qla4xxx_lookup_ddb_by_fw_index(ha, idx);
2996 if (ddb_entry == NULL)
2997 continue;
2998
2999 if (ddb_entry->ddb_type != FLASH_DDB)
3000 continue;
3001
3002 existing_sess = ddb_entry->sess->dd_data;
3003 existing_conn = ddb_entry->conn->dd_data;
3004
3005 if (existing_sess->targetname == NULL ||
3006 existing_conn->persistent_address == NULL ||
3007 existing_conn->persistent_port == 0)
3008 continue;
3009
3010 DEBUG2(ql4_printk(KERN_INFO, ha,
3011 "IQN = %s User IQN = %s\n",
3012 existing_sess->targetname,
3013 sess->targetname));
3014
3015 DEBUG2(ql4_printk(KERN_INFO, ha,
3016 "IP = %s User IP = %s\n",
3017 existing_conn->persistent_address,
3018 conn->persistent_address));
3019
3020 DEBUG2(ql4_printk(KERN_INFO, ha,
3021 "Port = %d User Port = %d\n",
3022 existing_conn->persistent_port,
3023 conn->persistent_port));
3024
3025 if (strcmp(existing_sess->targetname, sess->targetname))
3026 continue;
3027 rval = qla4xxx_match_ipaddress(ha, ddb_entry,
3028 existing_conn->persistent_address,
3029 conn->persistent_address);
3030 if (rval == QLA_ERROR)
3031 continue;
3032 if (existing_conn->persistent_port != conn->persistent_port)
3033 continue;
3034 break;
3035 }
3036
3037 if (idx == max_ddbs)
3038 return QLA_ERROR;
3039
3040 DEBUG2(ql4_printk(KERN_INFO, ha,
3041 "Match found in fwdb sessions\n"));
3042 return QLA_SUCCESS;
3043}
3044
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003045static struct iscsi_cls_session *
3046qla4xxx_session_create(struct iscsi_endpoint *ep,
3047 uint16_t cmds_max, uint16_t qdepth,
3048 uint32_t initial_cmdsn)
3049{
3050 struct iscsi_cls_session *cls_sess;
3051 struct scsi_qla_host *ha;
3052 struct qla_endpoint *qla_ep;
3053 struct ddb_entry *ddb_entry;
Mike Christie13483732011-12-01 21:38:41 -06003054 uint16_t ddb_index;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003055 struct iscsi_session *sess;
3056 struct sockaddr *dst_addr;
3057 int ret;
3058
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003059 if (!ep) {
3060 printk(KERN_ERR "qla4xxx: missing ep.\n");
3061 return NULL;
3062 }
3063
3064 qla_ep = ep->dd_data;
3065 dst_addr = (struct sockaddr *)&qla_ep->dst_addr;
3066 ha = to_qla_host(qla_ep->host);
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003067 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: host: %ld\n", __func__,
3068 ha->host_no));
Manish Rangankar736cf362011-10-07 16:55:46 -07003069
Mike Christie13483732011-12-01 21:38:41 -06003070 ret = qla4xxx_get_ddb_index(ha, &ddb_index);
3071 if (ret == QLA_ERROR)
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003072 return NULL;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003073
3074 cls_sess = iscsi_session_setup(&qla4xxx_iscsi_transport, qla_ep->host,
3075 cmds_max, sizeof(struct ddb_entry),
3076 sizeof(struct ql4_task_data),
3077 initial_cmdsn, ddb_index);
3078 if (!cls_sess)
3079 return NULL;
3080
3081 sess = cls_sess->dd_data;
3082 ddb_entry = sess->dd_data;
3083 ddb_entry->fw_ddb_index = ddb_index;
3084 ddb_entry->fw_ddb_device_state = DDB_DS_NO_CONNECTION_ACTIVE;
3085 ddb_entry->ha = ha;
3086 ddb_entry->sess = cls_sess;
Mike Christie13483732011-12-01 21:38:41 -06003087 ddb_entry->unblock_sess = qla4xxx_unblock_ddb;
3088 ddb_entry->ddb_change = qla4xxx_ddb_change;
Nilesh Javalide2efea2013-12-16 06:49:40 -05003089 clear_bit(DDB_CONN_CLOSE_FAILURE, &ddb_entry->flags);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003090 cls_sess->recovery_tmo = ql4xsess_recovery_tmo;
3091 ha->fw_ddb_index_map[ddb_entry->fw_ddb_index] = ddb_entry;
3092 ha->tot_ddbs++;
3093
3094 return cls_sess;
3095}
3096
3097static void qla4xxx_session_destroy(struct iscsi_cls_session *cls_sess)
3098{
3099 struct iscsi_session *sess;
3100 struct ddb_entry *ddb_entry;
3101 struct scsi_qla_host *ha;
Manish Rangankar90599b62012-04-23 22:32:34 -07003102 unsigned long flags, wtime;
3103 struct dev_db_entry *fw_ddb_entry = NULL;
3104 dma_addr_t fw_ddb_entry_dma;
3105 uint32_t ddb_state;
3106 int ret;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003107
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003108 sess = cls_sess->dd_data;
3109 ddb_entry = sess->dd_data;
3110 ha = ddb_entry->ha;
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003111 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: host: %ld\n", __func__,
3112 ha->host_no));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003113
Manish Rangankar90599b62012-04-23 22:32:34 -07003114 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3115 &fw_ddb_entry_dma, GFP_KERNEL);
3116 if (!fw_ddb_entry) {
3117 ql4_printk(KERN_ERR, ha,
3118 "%s: Unable to allocate dma buffer\n", __func__);
3119 goto destroy_session;
3120 }
3121
3122 wtime = jiffies + (HZ * LOGOUT_TOV);
3123 do {
3124 ret = qla4xxx_get_fwddb_entry(ha, ddb_entry->fw_ddb_index,
3125 fw_ddb_entry, fw_ddb_entry_dma,
3126 NULL, NULL, &ddb_state, NULL,
3127 NULL, NULL);
3128 if (ret == QLA_ERROR)
3129 goto destroy_session;
3130
3131 if ((ddb_state == DDB_DS_NO_CONNECTION_ACTIVE) ||
3132 (ddb_state == DDB_DS_SESSION_FAILED))
3133 goto destroy_session;
3134
3135 schedule_timeout_uninterruptible(HZ);
3136 } while ((time_after(wtime, jiffies)));
3137
3138destroy_session:
Manish Rangankar736cf362011-10-07 16:55:46 -07003139 qla4xxx_clear_ddb_entry(ha, ddb_entry->fw_ddb_index);
Nilesh Javalide2efea2013-12-16 06:49:40 -05003140 if (test_and_clear_bit(DDB_CONN_CLOSE_FAILURE, &ddb_entry->flags))
3141 clear_bit(ddb_entry->fw_ddb_index, ha->ddb_idx_map);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003142 spin_lock_irqsave(&ha->hardware_lock, flags);
3143 qla4xxx_free_ddb(ha, ddb_entry);
3144 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Manish Rangankar90599b62012-04-23 22:32:34 -07003145
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003146 iscsi_session_teardown(cls_sess);
Manish Rangankar90599b62012-04-23 22:32:34 -07003147
3148 if (fw_ddb_entry)
3149 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3150 fw_ddb_entry, fw_ddb_entry_dma);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003151}
3152
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003153static struct iscsi_cls_conn *
3154qla4xxx_conn_create(struct iscsi_cls_session *cls_sess, uint32_t conn_idx)
3155{
3156 struct iscsi_cls_conn *cls_conn;
3157 struct iscsi_session *sess;
3158 struct ddb_entry *ddb_entry;
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003159 struct scsi_qla_host *ha;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003160
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003161 cls_conn = iscsi_conn_setup(cls_sess, sizeof(struct qla_conn),
3162 conn_idx);
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003163 if (!cls_conn) {
3164 pr_info("%s: Can not create connection for conn_idx = %u\n",
3165 __func__, conn_idx);
Mike Christieff1d0312011-12-01 21:38:43 -06003166 return NULL;
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003167 }
Mike Christieff1d0312011-12-01 21:38:43 -06003168
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003169 sess = cls_sess->dd_data;
3170 ddb_entry = sess->dd_data;
3171 ddb_entry->conn = cls_conn;
3172
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003173 ha = ddb_entry->ha;
3174 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: conn_idx = %u\n", __func__,
3175 conn_idx));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003176 return cls_conn;
3177}
3178
3179static int qla4xxx_conn_bind(struct iscsi_cls_session *cls_session,
3180 struct iscsi_cls_conn *cls_conn,
3181 uint64_t transport_fd, int is_leading)
3182{
3183 struct iscsi_conn *conn;
3184 struct qla_conn *qla_conn;
3185 struct iscsi_endpoint *ep;
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003186 struct ddb_entry *ddb_entry;
3187 struct scsi_qla_host *ha;
3188 struct iscsi_session *sess;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003189
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003190 sess = cls_session->dd_data;
3191 ddb_entry = sess->dd_data;
3192 ha = ddb_entry->ha;
3193
3194 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: sid = %d, cid = %d\n", __func__,
3195 cls_session->sid, cls_conn->cid));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003196
3197 if (iscsi_conn_bind(cls_session, cls_conn, is_leading))
3198 return -EINVAL;
3199 ep = iscsi_lookup_endpoint(transport_fd);
3200 conn = cls_conn->dd_data;
3201 qla_conn = conn->dd_data;
3202 qla_conn->qla_ep = ep->dd_data;
3203 return 0;
3204}
3205
3206static int qla4xxx_conn_start(struct iscsi_cls_conn *cls_conn)
3207{
3208 struct iscsi_cls_session *cls_sess = iscsi_conn_to_session(cls_conn);
3209 struct iscsi_session *sess;
3210 struct ddb_entry *ddb_entry;
3211 struct scsi_qla_host *ha;
Mike Christie13483732011-12-01 21:38:41 -06003212 struct dev_db_entry *fw_ddb_entry = NULL;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003213 dma_addr_t fw_ddb_entry_dma;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003214 uint32_t mbx_sts = 0;
3215 int ret = 0;
3216 int status = QLA_SUCCESS;
3217
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003218 sess = cls_sess->dd_data;
3219 ddb_entry = sess->dd_data;
3220 ha = ddb_entry->ha;
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003221 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: sid = %d, cid = %d\n", __func__,
3222 cls_sess->sid, cls_conn->cid));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003223
Mike Christie13483732011-12-01 21:38:41 -06003224 /* Check if we have matching FW DDB, if yes then do not
3225 * login to this target. This could cause target to logout previous
3226 * connection
3227 */
3228 ret = qla4xxx_match_fwdb_session(ha, cls_conn);
3229 if (ret == QLA_SUCCESS) {
3230 ql4_printk(KERN_INFO, ha,
3231 "Session already exist in FW.\n");
3232 ret = -EEXIST;
3233 goto exit_conn_start;
3234 }
3235
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003236 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3237 &fw_ddb_entry_dma, GFP_KERNEL);
3238 if (!fw_ddb_entry) {
3239 ql4_printk(KERN_ERR, ha,
3240 "%s: Unable to allocate dma buffer\n", __func__);
Mike Christie13483732011-12-01 21:38:41 -06003241 ret = -ENOMEM;
3242 goto exit_conn_start;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003243 }
3244
3245 ret = qla4xxx_set_param_ddbentry(ha, ddb_entry, cls_conn, &mbx_sts);
3246 if (ret) {
3247 /* If iscsid is stopped and started then no need to do
3248 * set param again since ddb state will be already
3249 * active and FW does not allow set ddb to an
3250 * active session.
3251 */
3252 if (mbx_sts)
3253 if (ddb_entry->fw_ddb_device_state ==
Manish Rangankarf922da72011-10-07 16:55:49 -07003254 DDB_DS_SESSION_ACTIVE) {
Mike Christie13483732011-12-01 21:38:41 -06003255 ddb_entry->unblock_sess(ddb_entry->sess);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003256 goto exit_set_param;
Manish Rangankarf922da72011-10-07 16:55:49 -07003257 }
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003258
3259 ql4_printk(KERN_ERR, ha, "%s: Failed set param for index[%d]\n",
3260 __func__, ddb_entry->fw_ddb_index);
3261 goto exit_conn_start;
3262 }
3263
3264 status = qla4xxx_conn_open(ha, ddb_entry->fw_ddb_index);
3265 if (status == QLA_ERROR) {
Manish Rangankar0e7e8502011-07-25 13:48:54 -05003266 ql4_printk(KERN_ERR, ha, "%s: Login failed: %s\n", __func__,
3267 sess->targetname);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003268 ret = -EINVAL;
3269 goto exit_conn_start;
3270 }
3271
Manish Rangankar98270ab2011-10-07 16:55:47 -07003272 if (ddb_entry->fw_ddb_device_state == DDB_DS_NO_CONNECTION_ACTIVE)
3273 ddb_entry->fw_ddb_device_state = DDB_DS_LOGIN_IN_PROCESS;
3274
3275 DEBUG2(printk(KERN_INFO "%s: DDB state [%d]\n", __func__,
3276 ddb_entry->fw_ddb_device_state));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003277
3278exit_set_param:
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003279 ret = 0;
3280
3281exit_conn_start:
Mike Christie13483732011-12-01 21:38:41 -06003282 if (fw_ddb_entry)
3283 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3284 fw_ddb_entry, fw_ddb_entry_dma);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003285 return ret;
3286}
3287
3288static void qla4xxx_conn_destroy(struct iscsi_cls_conn *cls_conn)
3289{
3290 struct iscsi_cls_session *cls_sess = iscsi_conn_to_session(cls_conn);
3291 struct iscsi_session *sess;
3292 struct scsi_qla_host *ha;
3293 struct ddb_entry *ddb_entry;
3294 int options;
3295
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003296 sess = cls_sess->dd_data;
3297 ddb_entry = sess->dd_data;
3298 ha = ddb_entry->ha;
Vikas Chaudharyc343c5e2013-12-16 06:49:48 -05003299 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: cid = %d\n", __func__,
3300 cls_conn->cid));
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003301
3302 options = LOGOUT_OPTION_CLOSE_SESSION;
3303 if (qla4xxx_session_logout_ddb(ha, ddb_entry, options) == QLA_ERROR)
3304 ql4_printk(KERN_ERR, ha, "%s: Logout failed\n", __func__);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003305}
3306
3307static void qla4xxx_task_work(struct work_struct *wdata)
3308{
3309 struct ql4_task_data *task_data;
3310 struct scsi_qla_host *ha;
3311 struct passthru_status *sts;
3312 struct iscsi_task *task;
3313 struct iscsi_hdr *hdr;
3314 uint8_t *data;
3315 uint32_t data_len;
3316 struct iscsi_conn *conn;
3317 int hdr_len;
3318 itt_t itt;
3319
3320 task_data = container_of(wdata, struct ql4_task_data, task_work);
3321 ha = task_data->ha;
3322 task = task_data->task;
3323 sts = &task_data->sts;
3324 hdr_len = sizeof(struct iscsi_hdr);
3325
3326 DEBUG3(printk(KERN_INFO "Status returned\n"));
3327 DEBUG3(qla4xxx_dump_buffer(sts, 64));
3328 DEBUG3(printk(KERN_INFO "Response buffer"));
3329 DEBUG3(qla4xxx_dump_buffer(task_data->resp_buffer, 64));
3330
3331 conn = task->conn;
3332
3333 switch (sts->completionStatus) {
3334 case PASSTHRU_STATUS_COMPLETE:
3335 hdr = (struct iscsi_hdr *)task_data->resp_buffer;
3336 /* Assign back the itt in hdr, until we use the PREASSIGN_TAG */
3337 itt = sts->handle;
3338 hdr->itt = itt;
3339 data = task_data->resp_buffer + hdr_len;
3340 data_len = task_data->resp_len - hdr_len;
3341 iscsi_complete_pdu(conn, hdr, data, data_len);
3342 break;
3343 default:
3344 ql4_printk(KERN_ERR, ha, "Passthru failed status = 0x%x\n",
3345 sts->completionStatus);
3346 break;
3347 }
3348 return;
3349}
3350
3351static int qla4xxx_alloc_pdu(struct iscsi_task *task, uint8_t opcode)
3352{
3353 struct ql4_task_data *task_data;
3354 struct iscsi_session *sess;
3355 struct ddb_entry *ddb_entry;
3356 struct scsi_qla_host *ha;
3357 int hdr_len;
3358
3359 sess = task->conn->session;
3360 ddb_entry = sess->dd_data;
3361 ha = ddb_entry->ha;
3362 task_data = task->dd_data;
3363 memset(task_data, 0, sizeof(struct ql4_task_data));
3364
3365 if (task->sc) {
3366 ql4_printk(KERN_INFO, ha,
3367 "%s: SCSI Commands not implemented\n", __func__);
3368 return -EINVAL;
3369 }
3370
3371 hdr_len = sizeof(struct iscsi_hdr);
3372 task_data->ha = ha;
3373 task_data->task = task;
3374
3375 if (task->data_count) {
3376 task_data->data_dma = dma_map_single(&ha->pdev->dev, task->data,
3377 task->data_count,
3378 PCI_DMA_TODEVICE);
3379 }
3380
3381 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: MaxRecvLen %u, iscsi hrd %d\n",
3382 __func__, task->conn->max_recv_dlength, hdr_len));
3383
Manish Rangankar69ca2162011-10-07 16:55:50 -07003384 task_data->resp_len = task->conn->max_recv_dlength + hdr_len;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003385 task_data->resp_buffer = dma_alloc_coherent(&ha->pdev->dev,
3386 task_data->resp_len,
3387 &task_data->resp_dma,
3388 GFP_ATOMIC);
3389 if (!task_data->resp_buffer)
3390 goto exit_alloc_pdu;
3391
Manish Rangankar69ca2162011-10-07 16:55:50 -07003392 task_data->req_len = task->data_count + hdr_len;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003393 task_data->req_buffer = dma_alloc_coherent(&ha->pdev->dev,
Manish Rangankar69ca2162011-10-07 16:55:50 -07003394 task_data->req_len,
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003395 &task_data->req_dma,
3396 GFP_ATOMIC);
3397 if (!task_data->req_buffer)
3398 goto exit_alloc_pdu;
3399
3400 task->hdr = task_data->req_buffer;
3401
3402 INIT_WORK(&task_data->task_work, qla4xxx_task_work);
3403
3404 return 0;
3405
3406exit_alloc_pdu:
3407 if (task_data->resp_buffer)
3408 dma_free_coherent(&ha->pdev->dev, task_data->resp_len,
3409 task_data->resp_buffer, task_data->resp_dma);
3410
3411 if (task_data->req_buffer)
Manish Rangankar69ca2162011-10-07 16:55:50 -07003412 dma_free_coherent(&ha->pdev->dev, task_data->req_len,
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003413 task_data->req_buffer, task_data->req_dma);
3414 return -ENOMEM;
3415}
3416
3417static void qla4xxx_task_cleanup(struct iscsi_task *task)
3418{
3419 struct ql4_task_data *task_data;
3420 struct iscsi_session *sess;
3421 struct ddb_entry *ddb_entry;
3422 struct scsi_qla_host *ha;
3423 int hdr_len;
3424
3425 hdr_len = sizeof(struct iscsi_hdr);
3426 sess = task->conn->session;
3427 ddb_entry = sess->dd_data;
3428 ha = ddb_entry->ha;
3429 task_data = task->dd_data;
3430
3431 if (task->data_count) {
3432 dma_unmap_single(&ha->pdev->dev, task_data->data_dma,
3433 task->data_count, PCI_DMA_TODEVICE);
3434 }
3435
3436 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: MaxRecvLen %u, iscsi hrd %d\n",
3437 __func__, task->conn->max_recv_dlength, hdr_len));
3438
3439 dma_free_coherent(&ha->pdev->dev, task_data->resp_len,
3440 task_data->resp_buffer, task_data->resp_dma);
Manish Rangankar69ca2162011-10-07 16:55:50 -07003441 dma_free_coherent(&ha->pdev->dev, task_data->req_len,
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003442 task_data->req_buffer, task_data->req_dma);
3443 return;
3444}
3445
3446static int qla4xxx_task_xmit(struct iscsi_task *task)
3447{
3448 struct scsi_cmnd *sc = task->sc;
3449 struct iscsi_session *sess = task->conn->session;
3450 struct ddb_entry *ddb_entry = sess->dd_data;
3451 struct scsi_qla_host *ha = ddb_entry->ha;
3452
3453 if (!sc)
3454 return qla4xxx_send_passthru0(task);
3455
3456 ql4_printk(KERN_INFO, ha, "%s: scsi cmd xmit not implemented\n",
3457 __func__);
3458 return -ENOSYS;
3459}
3460
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04003461static int qla4xxx_copy_from_fwddb_param(struct iscsi_bus_flash_session *sess,
3462 struct iscsi_bus_flash_conn *conn,
3463 struct dev_db_entry *fw_ddb_entry)
3464{
3465 unsigned long options = 0;
3466 int rc = 0;
3467
3468 options = le16_to_cpu(fw_ddb_entry->options);
3469 conn->is_fw_assigned_ipv6 = test_bit(OPT_IS_FW_ASSIGNED_IPV6, &options);
3470 if (test_bit(OPT_IPV6_DEVICE, &options)) {
Adheer Chandravanshic962c182013-03-25 08:08:32 -04003471 rc = iscsi_switch_str_param(&sess->portal_type,
3472 PORTAL_TYPE_IPV6);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04003473 if (rc)
3474 goto exit_copy;
3475 } else {
Adheer Chandravanshic962c182013-03-25 08:08:32 -04003476 rc = iscsi_switch_str_param(&sess->portal_type,
3477 PORTAL_TYPE_IPV4);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04003478 if (rc)
3479 goto exit_copy;
3480 }
3481
3482 sess->auto_snd_tgt_disable = test_bit(OPT_AUTO_SENDTGTS_DISABLE,
3483 &options);
3484 sess->discovery_sess = test_bit(OPT_DISC_SESSION, &options);
3485 sess->entry_state = test_bit(OPT_ENTRY_STATE, &options);
3486
3487 options = le16_to_cpu(fw_ddb_entry->iscsi_options);
3488 conn->hdrdgst_en = test_bit(ISCSIOPT_HEADER_DIGEST_EN, &options);
3489 conn->datadgst_en = test_bit(ISCSIOPT_DATA_DIGEST_EN, &options);
3490 sess->imm_data_en = test_bit(ISCSIOPT_IMMEDIATE_DATA_EN, &options);
3491 sess->initial_r2t_en = test_bit(ISCSIOPT_INITIAL_R2T_EN, &options);
3492 sess->dataseq_inorder_en = test_bit(ISCSIOPT_DATA_SEQ_IN_ORDER,
3493 &options);
3494 sess->pdu_inorder_en = test_bit(ISCSIOPT_DATA_PDU_IN_ORDER, &options);
3495 sess->chap_auth_en = test_bit(ISCSIOPT_CHAP_AUTH_EN, &options);
3496 conn->snack_req_en = test_bit(ISCSIOPT_SNACK_REQ_EN, &options);
3497 sess->discovery_logout_en = test_bit(ISCSIOPT_DISCOVERY_LOGOUT_EN,
3498 &options);
3499 sess->bidi_chap_en = test_bit(ISCSIOPT_BIDI_CHAP_EN, &options);
3500 sess->discovery_auth_optional =
3501 test_bit(ISCSIOPT_DISCOVERY_AUTH_OPTIONAL, &options);
3502 if (test_bit(ISCSIOPT_ERL1, &options))
3503 sess->erl |= BIT_1;
3504 if (test_bit(ISCSIOPT_ERL0, &options))
3505 sess->erl |= BIT_0;
3506
3507 options = le16_to_cpu(fw_ddb_entry->tcp_options);
3508 conn->tcp_timestamp_stat = test_bit(TCPOPT_TIMESTAMP_STAT, &options);
3509 conn->tcp_nagle_disable = test_bit(TCPOPT_NAGLE_DISABLE, &options);
3510 conn->tcp_wsf_disable = test_bit(TCPOPT_WSF_DISABLE, &options);
3511 if (test_bit(TCPOPT_TIMER_SCALE3, &options))
3512 conn->tcp_timer_scale |= BIT_3;
3513 if (test_bit(TCPOPT_TIMER_SCALE2, &options))
3514 conn->tcp_timer_scale |= BIT_2;
3515 if (test_bit(TCPOPT_TIMER_SCALE1, &options))
3516 conn->tcp_timer_scale |= BIT_1;
3517
3518 conn->tcp_timer_scale >>= 1;
3519 conn->tcp_timestamp_en = test_bit(TCPOPT_TIMESTAMP_EN, &options);
3520
3521 options = le16_to_cpu(fw_ddb_entry->ip_options);
3522 conn->fragment_disable = test_bit(IPOPT_FRAGMENT_DISABLE, &options);
3523
3524 conn->max_recv_dlength = BYTE_UNITS *
3525 le16_to_cpu(fw_ddb_entry->iscsi_max_rcv_data_seg_len);
3526 conn->max_xmit_dlength = BYTE_UNITS *
3527 le16_to_cpu(fw_ddb_entry->iscsi_max_snd_data_seg_len);
3528 sess->first_burst = BYTE_UNITS *
3529 le16_to_cpu(fw_ddb_entry->iscsi_first_burst_len);
3530 sess->max_burst = BYTE_UNITS *
3531 le16_to_cpu(fw_ddb_entry->iscsi_max_burst_len);
3532 sess->max_r2t = le16_to_cpu(fw_ddb_entry->iscsi_max_outsnd_r2t);
3533 sess->time2wait = le16_to_cpu(fw_ddb_entry->iscsi_def_time2wait);
3534 sess->time2retain = le16_to_cpu(fw_ddb_entry->iscsi_def_time2retain);
3535 sess->tpgt = le32_to_cpu(fw_ddb_entry->tgt_portal_grp);
3536 conn->max_segment_size = le16_to_cpu(fw_ddb_entry->mss);
3537 conn->tcp_xmit_wsf = fw_ddb_entry->tcp_xmt_wsf;
3538 conn->tcp_recv_wsf = fw_ddb_entry->tcp_rcv_wsf;
3539 conn->ipv6_flow_label = le16_to_cpu(fw_ddb_entry->ipv6_flow_lbl);
3540 conn->keepalive_timeout = le16_to_cpu(fw_ddb_entry->ka_timeout);
3541 conn->local_port = le16_to_cpu(fw_ddb_entry->lcl_port);
3542 conn->statsn = le32_to_cpu(fw_ddb_entry->stat_sn);
3543 conn->exp_statsn = le32_to_cpu(fw_ddb_entry->exp_stat_sn);
3544 sess->discovery_parent_idx = le16_to_cpu(fw_ddb_entry->ddb_link);
3545 sess->discovery_parent_type = le16_to_cpu(fw_ddb_entry->ddb_link);
3546 sess->chap_out_idx = le16_to_cpu(fw_ddb_entry->chap_tbl_idx);
3547 sess->tsid = le16_to_cpu(fw_ddb_entry->tsid);
3548
3549 sess->default_taskmgmt_timeout =
3550 le16_to_cpu(fw_ddb_entry->def_timeout);
3551 conn->port = le16_to_cpu(fw_ddb_entry->port);
3552
3553 options = le16_to_cpu(fw_ddb_entry->options);
3554 conn->ipaddress = kzalloc(IPv6_ADDR_LEN, GFP_KERNEL);
3555 if (!conn->ipaddress) {
3556 rc = -ENOMEM;
3557 goto exit_copy;
3558 }
3559
3560 conn->redirect_ipaddr = kzalloc(IPv6_ADDR_LEN, GFP_KERNEL);
3561 if (!conn->redirect_ipaddr) {
3562 rc = -ENOMEM;
3563 goto exit_copy;
3564 }
3565
3566 memcpy(conn->ipaddress, fw_ddb_entry->ip_addr, IPv6_ADDR_LEN);
3567 memcpy(conn->redirect_ipaddr, fw_ddb_entry->tgt_addr, IPv6_ADDR_LEN);
3568
3569 if (test_bit(OPT_IPV6_DEVICE, &options)) {
3570 conn->ipv6_traffic_class = fw_ddb_entry->ipv4_tos;
3571
3572 conn->link_local_ipv6_addr = kzalloc(IPv6_ADDR_LEN, GFP_KERNEL);
3573 if (!conn->link_local_ipv6_addr) {
3574 rc = -ENOMEM;
3575 goto exit_copy;
3576 }
3577
3578 memcpy(conn->link_local_ipv6_addr,
3579 fw_ddb_entry->link_local_ipv6_addr, IPv6_ADDR_LEN);
3580 } else {
3581 conn->ipv4_tos = fw_ddb_entry->ipv4_tos;
3582 }
3583
3584 if (fw_ddb_entry->iscsi_name[0]) {
3585 rc = iscsi_switch_str_param(&sess->targetname,
3586 (char *)fw_ddb_entry->iscsi_name);
3587 if (rc)
3588 goto exit_copy;
3589 }
3590
3591 if (fw_ddb_entry->iscsi_alias[0]) {
3592 rc = iscsi_switch_str_param(&sess->targetalias,
3593 (char *)fw_ddb_entry->iscsi_alias);
3594 if (rc)
3595 goto exit_copy;
3596 }
3597
3598 COPY_ISID(sess->isid, fw_ddb_entry->isid);
3599
3600exit_copy:
3601 return rc;
3602}
3603
3604static int qla4xxx_copy_to_fwddb_param(struct iscsi_bus_flash_session *sess,
3605 struct iscsi_bus_flash_conn *conn,
3606 struct dev_db_entry *fw_ddb_entry)
3607{
3608 uint16_t options;
3609 int rc = 0;
3610
3611 options = le16_to_cpu(fw_ddb_entry->options);
3612 SET_BITVAL(conn->is_fw_assigned_ipv6, options, BIT_11);
Adheer Chandravanshic962c182013-03-25 08:08:32 -04003613 if (!strncmp(sess->portal_type, PORTAL_TYPE_IPV6, 4))
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04003614 options |= BIT_8;
3615 else
3616 options &= ~BIT_8;
3617
3618 SET_BITVAL(sess->auto_snd_tgt_disable, options, BIT_6);
3619 SET_BITVAL(sess->discovery_sess, options, BIT_4);
3620 SET_BITVAL(sess->entry_state, options, BIT_3);
3621 fw_ddb_entry->options = cpu_to_le16(options);
3622
3623 options = le16_to_cpu(fw_ddb_entry->iscsi_options);
3624 SET_BITVAL(conn->hdrdgst_en, options, BIT_13);
3625 SET_BITVAL(conn->datadgst_en, options, BIT_12);
3626 SET_BITVAL(sess->imm_data_en, options, BIT_11);
3627 SET_BITVAL(sess->initial_r2t_en, options, BIT_10);
3628 SET_BITVAL(sess->dataseq_inorder_en, options, BIT_9);
3629 SET_BITVAL(sess->pdu_inorder_en, options, BIT_8);
3630 SET_BITVAL(sess->chap_auth_en, options, BIT_7);
3631 SET_BITVAL(conn->snack_req_en, options, BIT_6);
3632 SET_BITVAL(sess->discovery_logout_en, options, BIT_5);
3633 SET_BITVAL(sess->bidi_chap_en, options, BIT_4);
3634 SET_BITVAL(sess->discovery_auth_optional, options, BIT_3);
3635 SET_BITVAL(sess->erl & BIT_1, options, BIT_1);
3636 SET_BITVAL(sess->erl & BIT_0, options, BIT_0);
3637 fw_ddb_entry->iscsi_options = cpu_to_le16(options);
3638
3639 options = le16_to_cpu(fw_ddb_entry->tcp_options);
3640 SET_BITVAL(conn->tcp_timestamp_stat, options, BIT_6);
3641 SET_BITVAL(conn->tcp_nagle_disable, options, BIT_5);
3642 SET_BITVAL(conn->tcp_wsf_disable, options, BIT_4);
3643 SET_BITVAL(conn->tcp_timer_scale & BIT_2, options, BIT_3);
3644 SET_BITVAL(conn->tcp_timer_scale & BIT_1, options, BIT_2);
3645 SET_BITVAL(conn->tcp_timer_scale & BIT_0, options, BIT_1);
3646 SET_BITVAL(conn->tcp_timestamp_en, options, BIT_0);
3647 fw_ddb_entry->tcp_options = cpu_to_le16(options);
3648
3649 options = le16_to_cpu(fw_ddb_entry->ip_options);
3650 SET_BITVAL(conn->fragment_disable, options, BIT_4);
3651 fw_ddb_entry->ip_options = cpu_to_le16(options);
3652
3653 fw_ddb_entry->iscsi_max_outsnd_r2t = cpu_to_le16(sess->max_r2t);
3654 fw_ddb_entry->iscsi_max_rcv_data_seg_len =
3655 cpu_to_le16(conn->max_recv_dlength / BYTE_UNITS);
3656 fw_ddb_entry->iscsi_max_snd_data_seg_len =
3657 cpu_to_le16(conn->max_xmit_dlength / BYTE_UNITS);
3658 fw_ddb_entry->iscsi_first_burst_len =
3659 cpu_to_le16(sess->first_burst / BYTE_UNITS);
3660 fw_ddb_entry->iscsi_max_burst_len = cpu_to_le16(sess->max_burst /
3661 BYTE_UNITS);
3662 fw_ddb_entry->iscsi_def_time2wait = cpu_to_le16(sess->time2wait);
3663 fw_ddb_entry->iscsi_def_time2retain = cpu_to_le16(sess->time2retain);
3664 fw_ddb_entry->tgt_portal_grp = cpu_to_le16(sess->tpgt);
3665 fw_ddb_entry->mss = cpu_to_le16(conn->max_segment_size);
Adheer Chandravanshifbcd4832013-04-17 05:15:29 -04003666 fw_ddb_entry->tcp_xmt_wsf = (uint8_t) cpu_to_le32(conn->tcp_xmit_wsf);
3667 fw_ddb_entry->tcp_rcv_wsf = (uint8_t) cpu_to_le32(conn->tcp_recv_wsf);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04003668 fw_ddb_entry->ipv6_flow_lbl = cpu_to_le16(conn->ipv6_flow_label);
3669 fw_ddb_entry->ka_timeout = cpu_to_le16(conn->keepalive_timeout);
3670 fw_ddb_entry->lcl_port = cpu_to_le16(conn->local_port);
Adheer Chandravanshifbcd4832013-04-17 05:15:29 -04003671 fw_ddb_entry->stat_sn = cpu_to_le32(conn->statsn);
3672 fw_ddb_entry->exp_stat_sn = cpu_to_le32(conn->exp_statsn);
Adheer Chandravanshi65560162013-07-08 08:33:06 -04003673 fw_ddb_entry->ddb_link = cpu_to_le16(sess->discovery_parent_idx);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04003674 fw_ddb_entry->chap_tbl_idx = cpu_to_le16(sess->chap_out_idx);
3675 fw_ddb_entry->tsid = cpu_to_le16(sess->tsid);
3676 fw_ddb_entry->port = cpu_to_le16(conn->port);
3677 fw_ddb_entry->def_timeout =
3678 cpu_to_le16(sess->default_taskmgmt_timeout);
3679
Adheer Chandravanshi84595802013-07-08 08:33:07 -04003680 if (!strncmp(sess->portal_type, PORTAL_TYPE_IPV6, 4))
3681 fw_ddb_entry->ipv4_tos = conn->ipv6_traffic_class;
3682 else
3683 fw_ddb_entry->ipv4_tos = conn->ipv4_tos;
3684
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04003685 if (conn->ipaddress)
3686 memcpy(fw_ddb_entry->ip_addr, conn->ipaddress,
3687 sizeof(fw_ddb_entry->ip_addr));
3688
3689 if (conn->redirect_ipaddr)
3690 memcpy(fw_ddb_entry->tgt_addr, conn->redirect_ipaddr,
3691 sizeof(fw_ddb_entry->tgt_addr));
3692
3693 if (conn->link_local_ipv6_addr)
3694 memcpy(fw_ddb_entry->link_local_ipv6_addr,
3695 conn->link_local_ipv6_addr,
3696 sizeof(fw_ddb_entry->link_local_ipv6_addr));
3697
3698 if (sess->targetname)
3699 memcpy(fw_ddb_entry->iscsi_name, sess->targetname,
3700 sizeof(fw_ddb_entry->iscsi_name));
3701
3702 if (sess->targetalias)
3703 memcpy(fw_ddb_entry->iscsi_alias, sess->targetalias,
3704 sizeof(fw_ddb_entry->iscsi_alias));
3705
3706 COPY_ISID(fw_ddb_entry->isid, sess->isid);
3707
3708 return rc;
3709}
3710
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003711static void qla4xxx_copy_to_sess_conn_params(struct iscsi_conn *conn,
3712 struct iscsi_session *sess,
3713 struct dev_db_entry *fw_ddb_entry)
3714{
3715 unsigned long options = 0;
3716 uint16_t ddb_link;
3717 uint16_t disc_parent;
Adheer Chandravanshifb734ee32013-11-22 05:28:22 -05003718 char ip_addr[DDB_IPADDR_LEN];
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003719
3720 options = le16_to_cpu(fw_ddb_entry->options);
3721 conn->is_fw_assigned_ipv6 = test_bit(OPT_IS_FW_ASSIGNED_IPV6, &options);
3722 sess->auto_snd_tgt_disable = test_bit(OPT_AUTO_SENDTGTS_DISABLE,
3723 &options);
3724 sess->discovery_sess = test_bit(OPT_DISC_SESSION, &options);
3725
3726 options = le16_to_cpu(fw_ddb_entry->iscsi_options);
3727 conn->hdrdgst_en = test_bit(ISCSIOPT_HEADER_DIGEST_EN, &options);
3728 conn->datadgst_en = test_bit(ISCSIOPT_DATA_DIGEST_EN, &options);
3729 sess->imm_data_en = test_bit(ISCSIOPT_IMMEDIATE_DATA_EN, &options);
3730 sess->initial_r2t_en = test_bit(ISCSIOPT_INITIAL_R2T_EN, &options);
3731 sess->dataseq_inorder_en = test_bit(ISCSIOPT_DATA_SEQ_IN_ORDER,
3732 &options);
3733 sess->pdu_inorder_en = test_bit(ISCSIOPT_DATA_PDU_IN_ORDER, &options);
3734 sess->chap_auth_en = test_bit(ISCSIOPT_CHAP_AUTH_EN, &options);
3735 sess->discovery_logout_en = test_bit(ISCSIOPT_DISCOVERY_LOGOUT_EN,
3736 &options);
3737 sess->bidi_chap_en = test_bit(ISCSIOPT_BIDI_CHAP_EN, &options);
3738 sess->discovery_auth_optional =
3739 test_bit(ISCSIOPT_DISCOVERY_AUTH_OPTIONAL, &options);
3740 if (test_bit(ISCSIOPT_ERL1, &options))
3741 sess->erl |= BIT_1;
3742 if (test_bit(ISCSIOPT_ERL0, &options))
3743 sess->erl |= BIT_0;
3744
3745 options = le16_to_cpu(fw_ddb_entry->tcp_options);
3746 conn->tcp_timestamp_stat = test_bit(TCPOPT_TIMESTAMP_STAT, &options);
3747 conn->tcp_nagle_disable = test_bit(TCPOPT_NAGLE_DISABLE, &options);
3748 conn->tcp_wsf_disable = test_bit(TCPOPT_WSF_DISABLE, &options);
3749 if (test_bit(TCPOPT_TIMER_SCALE3, &options))
3750 conn->tcp_timer_scale |= BIT_3;
3751 if (test_bit(TCPOPT_TIMER_SCALE2, &options))
3752 conn->tcp_timer_scale |= BIT_2;
3753 if (test_bit(TCPOPT_TIMER_SCALE1, &options))
3754 conn->tcp_timer_scale |= BIT_1;
3755
3756 conn->tcp_timer_scale >>= 1;
3757 conn->tcp_timestamp_en = test_bit(TCPOPT_TIMESTAMP_EN, &options);
3758
3759 options = le16_to_cpu(fw_ddb_entry->ip_options);
3760 conn->fragment_disable = test_bit(IPOPT_FRAGMENT_DISABLE, &options);
3761
3762 conn->max_recv_dlength = BYTE_UNITS *
3763 le16_to_cpu(fw_ddb_entry->iscsi_max_rcv_data_seg_len);
3764 conn->max_xmit_dlength = BYTE_UNITS *
3765 le16_to_cpu(fw_ddb_entry->iscsi_max_snd_data_seg_len);
3766 sess->max_r2t = le16_to_cpu(fw_ddb_entry->iscsi_max_outsnd_r2t);
3767 sess->first_burst = BYTE_UNITS *
3768 le16_to_cpu(fw_ddb_entry->iscsi_first_burst_len);
3769 sess->max_burst = BYTE_UNITS *
3770 le16_to_cpu(fw_ddb_entry->iscsi_max_burst_len);
3771 sess->time2wait = le16_to_cpu(fw_ddb_entry->iscsi_def_time2wait);
3772 sess->time2retain = le16_to_cpu(fw_ddb_entry->iscsi_def_time2retain);
3773 sess->tpgt = le32_to_cpu(fw_ddb_entry->tgt_portal_grp);
3774 conn->max_segment_size = le16_to_cpu(fw_ddb_entry->mss);
3775 conn->tcp_xmit_wsf = fw_ddb_entry->tcp_xmt_wsf;
3776 conn->tcp_recv_wsf = fw_ddb_entry->tcp_rcv_wsf;
3777 conn->ipv4_tos = fw_ddb_entry->ipv4_tos;
3778 conn->keepalive_tmo = le16_to_cpu(fw_ddb_entry->ka_timeout);
3779 conn->local_port = le16_to_cpu(fw_ddb_entry->lcl_port);
3780 conn->statsn = le32_to_cpu(fw_ddb_entry->stat_sn);
3781 conn->exp_statsn = le32_to_cpu(fw_ddb_entry->exp_stat_sn);
3782 sess->tsid = le16_to_cpu(fw_ddb_entry->tsid);
3783 COPY_ISID(sess->isid, fw_ddb_entry->isid);
3784
3785 ddb_link = le16_to_cpu(fw_ddb_entry->ddb_link);
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003786 if (ddb_link == DDB_ISNS)
3787 disc_parent = ISCSI_DISC_PARENT_ISNS;
3788 else if (ddb_link == DDB_NO_LINK)
3789 disc_parent = ISCSI_DISC_PARENT_UNKNOWN;
3790 else if (ddb_link < MAX_DDB_ENTRIES)
3791 disc_parent = ISCSI_DISC_PARENT_SENDTGT;
3792 else
3793 disc_parent = ISCSI_DISC_PARENT_UNKNOWN;
3794
3795 iscsi_set_param(conn->cls_conn, ISCSI_PARAM_DISCOVERY_PARENT_TYPE,
3796 iscsi_get_discovery_parent_name(disc_parent), 0);
3797
3798 iscsi_set_param(conn->cls_conn, ISCSI_PARAM_TARGET_ALIAS,
3799 (char *)fw_ddb_entry->iscsi_alias, 0);
Adheer Chandravanshifb734ee32013-11-22 05:28:22 -05003800
3801 options = le16_to_cpu(fw_ddb_entry->options);
3802 if (options & DDB_OPT_IPV6_DEVICE) {
3803 memset(ip_addr, 0, sizeof(ip_addr));
3804 sprintf(ip_addr, "%pI6", fw_ddb_entry->link_local_ipv6_addr);
3805 iscsi_set_param(conn->cls_conn, ISCSI_PARAM_LOCAL_IPADDR,
3806 (char *)ip_addr, 0);
3807 }
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003808}
3809
Mike Christie13483732011-12-01 21:38:41 -06003810static void qla4xxx_copy_fwddb_param(struct scsi_qla_host *ha,
3811 struct dev_db_entry *fw_ddb_entry,
3812 struct iscsi_cls_session *cls_sess,
3813 struct iscsi_cls_conn *cls_conn)
3814{
3815 int buflen = 0;
3816 struct iscsi_session *sess;
Nilesh Javali376738a2012-02-27 03:08:52 -08003817 struct ddb_entry *ddb_entry;
Adheer Chandravanshi946ac572013-09-17 07:54:46 -04003818 struct ql4_chap_table chap_tbl;
Mike Christie13483732011-12-01 21:38:41 -06003819 struct iscsi_conn *conn;
3820 char ip_addr[DDB_IPADDR_LEN];
3821 uint16_t options = 0;
3822
3823 sess = cls_sess->dd_data;
Nilesh Javali376738a2012-02-27 03:08:52 -08003824 ddb_entry = sess->dd_data;
Mike Christie13483732011-12-01 21:38:41 -06003825 conn = cls_conn->dd_data;
Adheer Chandravanshi946ac572013-09-17 07:54:46 -04003826 memset(&chap_tbl, 0, sizeof(chap_tbl));
Mike Christie13483732011-12-01 21:38:41 -06003827
Nilesh Javali376738a2012-02-27 03:08:52 -08003828 ddb_entry->chap_tbl_idx = le16_to_cpu(fw_ddb_entry->chap_tbl_idx);
3829
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003830 qla4xxx_copy_to_sess_conn_params(conn, sess, fw_ddb_entry);
Mike Christie13483732011-12-01 21:38:41 -06003831
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003832 sess->def_taskmgmt_tmo = le16_to_cpu(fw_ddb_entry->def_timeout);
Mike Christie13483732011-12-01 21:38:41 -06003833 conn->persistent_port = le16_to_cpu(fw_ddb_entry->port);
3834
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003835 memset(ip_addr, 0, sizeof(ip_addr));
Mike Christie13483732011-12-01 21:38:41 -06003836 options = le16_to_cpu(fw_ddb_entry->options);
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003837 if (options & DDB_OPT_IPV6_DEVICE) {
3838 iscsi_set_param(cls_conn, ISCSI_PARAM_PORTAL_TYPE, "ipv6", 4);
Mike Christie13483732011-12-01 21:38:41 -06003839
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003840 memset(ip_addr, 0, sizeof(ip_addr));
3841 sprintf(ip_addr, "%pI6", fw_ddb_entry->ip_addr);
3842 } else {
3843 iscsi_set_param(cls_conn, ISCSI_PARAM_PORTAL_TYPE, "ipv4", 4);
3844 sprintf(ip_addr, "%pI4", fw_ddb_entry->ip_addr);
3845 }
3846
3847 iscsi_set_param(cls_conn, ISCSI_PARAM_PERSISTENT_ADDRESS,
3848 (char *)ip_addr, buflen);
Mike Christie13483732011-12-01 21:38:41 -06003849 iscsi_set_param(cls_conn, ISCSI_PARAM_TARGET_NAME,
3850 (char *)fw_ddb_entry->iscsi_name, buflen);
3851 iscsi_set_param(cls_conn, ISCSI_PARAM_INITIATOR_NAME,
3852 (char *)ha->name_string, buflen);
Adheer Chandravanshi946ac572013-09-17 07:54:46 -04003853
3854 if (ddb_entry->chap_tbl_idx != INVALID_ENTRY) {
3855 if (!qla4xxx_get_uni_chap_at_index(ha, chap_tbl.name,
3856 chap_tbl.secret,
3857 ddb_entry->chap_tbl_idx)) {
3858 iscsi_set_param(cls_conn, ISCSI_PARAM_USERNAME,
3859 (char *)chap_tbl.name,
3860 strlen((char *)chap_tbl.name));
3861 iscsi_set_param(cls_conn, ISCSI_PARAM_PASSWORD,
3862 (char *)chap_tbl.secret,
3863 chap_tbl.secret_len);
3864 }
3865 }
Mike Christie13483732011-12-01 21:38:41 -06003866}
3867
3868void qla4xxx_update_session_conn_fwddb_param(struct scsi_qla_host *ha,
3869 struct ddb_entry *ddb_entry)
3870{
3871 struct iscsi_cls_session *cls_sess;
3872 struct iscsi_cls_conn *cls_conn;
3873 uint32_t ddb_state;
3874 dma_addr_t fw_ddb_entry_dma;
3875 struct dev_db_entry *fw_ddb_entry;
3876
3877 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3878 &fw_ddb_entry_dma, GFP_KERNEL);
3879 if (!fw_ddb_entry) {
3880 ql4_printk(KERN_ERR, ha,
3881 "%s: Unable to allocate dma buffer\n", __func__);
3882 goto exit_session_conn_fwddb_param;
3883 }
3884
3885 if (qla4xxx_get_fwddb_entry(ha, ddb_entry->fw_ddb_index, fw_ddb_entry,
3886 fw_ddb_entry_dma, NULL, NULL, &ddb_state,
3887 NULL, NULL, NULL) == QLA_ERROR) {
3888 DEBUG2(ql4_printk(KERN_ERR, ha, "scsi%ld: %s: failed "
3889 "get_ddb_entry for fw_ddb_index %d\n",
3890 ha->host_no, __func__,
3891 ddb_entry->fw_ddb_index));
3892 goto exit_session_conn_fwddb_param;
3893 }
3894
3895 cls_sess = ddb_entry->sess;
3896
3897 cls_conn = ddb_entry->conn;
3898
3899 /* Update params */
3900 qla4xxx_copy_fwddb_param(ha, fw_ddb_entry, cls_sess, cls_conn);
3901
3902exit_session_conn_fwddb_param:
3903 if (fw_ddb_entry)
3904 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3905 fw_ddb_entry, fw_ddb_entry_dma);
3906}
3907
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003908void qla4xxx_update_session_conn_param(struct scsi_qla_host *ha,
3909 struct ddb_entry *ddb_entry)
3910{
3911 struct iscsi_cls_session *cls_sess;
3912 struct iscsi_cls_conn *cls_conn;
3913 struct iscsi_session *sess;
3914 struct iscsi_conn *conn;
3915 uint32_t ddb_state;
3916 dma_addr_t fw_ddb_entry_dma;
3917 struct dev_db_entry *fw_ddb_entry;
3918
3919 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3920 &fw_ddb_entry_dma, GFP_KERNEL);
3921 if (!fw_ddb_entry) {
3922 ql4_printk(KERN_ERR, ha,
3923 "%s: Unable to allocate dma buffer\n", __func__);
Mike Christie13483732011-12-01 21:38:41 -06003924 goto exit_session_conn_param;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003925 }
3926
3927 if (qla4xxx_get_fwddb_entry(ha, ddb_entry->fw_ddb_index, fw_ddb_entry,
3928 fw_ddb_entry_dma, NULL, NULL, &ddb_state,
3929 NULL, NULL, NULL) == QLA_ERROR) {
3930 DEBUG2(ql4_printk(KERN_ERR, ha, "scsi%ld: %s: failed "
3931 "get_ddb_entry for fw_ddb_index %d\n",
3932 ha->host_no, __func__,
3933 ddb_entry->fw_ddb_index));
Mike Christie13483732011-12-01 21:38:41 -06003934 goto exit_session_conn_param;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003935 }
3936
3937 cls_sess = ddb_entry->sess;
3938 sess = cls_sess->dd_data;
3939
3940 cls_conn = ddb_entry->conn;
3941 conn = cls_conn->dd_data;
3942
Mike Christie13483732011-12-01 21:38:41 -06003943 /* Update timers after login */
3944 ddb_entry->default_relogin_timeout =
Nilesh Javalic28eaac2011-12-18 21:40:44 -08003945 (le16_to_cpu(fw_ddb_entry->def_timeout) > LOGIN_TOV) &&
3946 (le16_to_cpu(fw_ddb_entry->def_timeout) < LOGIN_TOV * 10) ?
3947 le16_to_cpu(fw_ddb_entry->def_timeout) : LOGIN_TOV;
Mike Christie13483732011-12-01 21:38:41 -06003948 ddb_entry->default_time2wait =
3949 le16_to_cpu(fw_ddb_entry->iscsi_def_time2wait);
3950
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003951 /* Update params */
Nilesh Javali376738a2012-02-27 03:08:52 -08003952 ddb_entry->chap_tbl_idx = le16_to_cpu(fw_ddb_entry->chap_tbl_idx);
Adheer Chandravanshi8cc91d42013-07-01 05:54:13 -04003953 qla4xxx_copy_to_sess_conn_params(conn, sess, fw_ddb_entry);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003954
3955 memcpy(sess->initiatorname, ha->name_string,
3956 min(sizeof(ha->name_string), sizeof(sess->initiatorname)));
Mike Christie13483732011-12-01 21:38:41 -06003957
3958exit_session_conn_param:
3959 if (fw_ddb_entry)
3960 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
3961 fw_ddb_entry, fw_ddb_entry_dma);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003962}
3963
David Somayajuluafaf5a22006-09-19 10:28:00 -07003964/*
3965 * Timer routines
3966 */
3967
3968static void qla4xxx_start_timer(struct scsi_qla_host *ha, void *func,
3969 unsigned long interval)
3970{
3971 DEBUG(printk("scsi: %s: Starting timer thread for adapter %d\n",
3972 __func__, ha->host->host_no));
3973 init_timer(&ha->timer);
3974 ha->timer.expires = jiffies + interval * HZ;
3975 ha->timer.data = (unsigned long)ha;
3976 ha->timer.function = (void (*)(unsigned long))func;
3977 add_timer(&ha->timer);
3978 ha->timer_active = 1;
3979}
3980
3981static void qla4xxx_stop_timer(struct scsi_qla_host *ha)
3982{
3983 del_timer_sync(&ha->timer);
3984 ha->timer_active = 0;
3985}
3986
3987/***
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003988 * qla4xxx_mark_device_missing - blocks the session
3989 * @cls_session: Pointer to the session to be blocked
David Somayajuluafaf5a22006-09-19 10:28:00 -07003990 * @ddb_entry: Pointer to device database entry
3991 *
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05303992 * This routine marks a device missing and close connection.
David Somayajuluafaf5a22006-09-19 10:28:00 -07003993 **/
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003994void qla4xxx_mark_device_missing(struct iscsi_cls_session *cls_session)
David Somayajuluafaf5a22006-09-19 10:28:00 -07003995{
Manish Rangankarb3a271a2011-07-25 13:48:53 -05003996 iscsi_block_session(cls_session);
David Somayajuluafaf5a22006-09-19 10:28:00 -07003997}
3998
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05303999/**
4000 * qla4xxx_mark_all_devices_missing - mark all devices as missing.
4001 * @ha: Pointer to host adapter structure.
4002 *
4003 * This routine marks a device missing and resets the relogin retry count.
4004 **/
4005void qla4xxx_mark_all_devices_missing(struct scsi_qla_host *ha)
4006{
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004007 iscsi_host_for_each_session(ha->host, qla4xxx_mark_device_missing);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304008}
4009
David Somayajuluafaf5a22006-09-19 10:28:00 -07004010static struct srb* qla4xxx_get_new_srb(struct scsi_qla_host *ha,
4011 struct ddb_entry *ddb_entry,
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07004012 struct scsi_cmnd *cmd)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004013{
4014 struct srb *srb;
4015
4016 srb = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
4017 if (!srb)
4018 return srb;
4019
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304020 kref_init(&srb->srb_ref);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004021 srb->ha = ha;
4022 srb->ddb = ddb_entry;
4023 srb->cmd = cmd;
4024 srb->flags = 0;
Vikas Chaudhary53698872010-04-28 11:41:59 +05304025 CMD_SP(cmd) = (void *)srb;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004026
4027 return srb;
4028}
4029
4030static void qla4xxx_srb_free_dma(struct scsi_qla_host *ha, struct srb *srb)
4031{
4032 struct scsi_cmnd *cmd = srb->cmd;
4033
4034 if (srb->flags & SRB_DMA_VALID) {
FUJITA Tomonori5f7186c2007-05-26 14:08:20 +09004035 scsi_dma_unmap(cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004036 srb->flags &= ~SRB_DMA_VALID;
4037 }
Vikas Chaudhary53698872010-04-28 11:41:59 +05304038 CMD_SP(cmd) = NULL;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004039}
4040
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304041void qla4xxx_srb_compl(struct kref *ref)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004042{
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304043 struct srb *srb = container_of(ref, struct srb, srb_ref);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004044 struct scsi_cmnd *cmd = srb->cmd;
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304045 struct scsi_qla_host *ha = srb->ha;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004046
4047 qla4xxx_srb_free_dma(ha, srb);
4048
4049 mempool_free(srb, ha->srb_mempool);
4050
4051 cmd->scsi_done(cmd);
4052}
4053
4054/**
4055 * qla4xxx_queuecommand - scsi layer issues scsi command to driver.
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07004056 * @host: scsi host
David Somayajuluafaf5a22006-09-19 10:28:00 -07004057 * @cmd: Pointer to Linux's SCSI command structure
David Somayajuluafaf5a22006-09-19 10:28:00 -07004058 *
4059 * Remarks:
4060 * This routine is invoked by Linux to send a SCSI command to the driver.
4061 * The mid-level driver tries to ensure that queuecommand never gets
4062 * invoked concurrently with itself or the interrupt handler (although
4063 * the interrupt handler may call this routine as part of request-
4064 * completion handling). Unfortunely, it sometimes calls the scheduler
4065 * in interrupt context which is a big NO! NO!.
4066 **/
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07004067static int qla4xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004068{
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07004069 struct scsi_qla_host *ha = to_qla_host(host);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004070 struct ddb_entry *ddb_entry = cmd->device->hostdata;
Mike Christie7fb19212008-01-31 13:36:45 -06004071 struct iscsi_cls_session *sess = ddb_entry->sess;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004072 struct srb *srb;
4073 int rval;
4074
Lalit Chandivade2232be02010-07-30 14:38:47 +05304075 if (test_bit(AF_EEH_BUSY, &ha->flags)) {
4076 if (test_bit(AF_PCI_CHANNEL_IO_PERM_FAILURE, &ha->flags))
4077 cmd->result = DID_NO_CONNECT << 16;
4078 else
4079 cmd->result = DID_REQUEUE << 16;
4080 goto qc_fail_command;
4081 }
4082
Mike Christie7fb19212008-01-31 13:36:45 -06004083 if (!sess) {
4084 cmd->result = DID_IMM_RETRY << 16;
4085 goto qc_fail_command;
4086 }
4087
4088 rval = iscsi_session_chkready(sess);
4089 if (rval) {
4090 cmd->result = rval;
4091 goto qc_fail_command;
4092 }
4093
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304094 if (test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
4095 test_bit(DPC_RESET_ACTIVE, &ha->dpc_flags) ||
4096 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
4097 test_bit(DPC_HA_UNRECOVERABLE, &ha->dpc_flags) ||
4098 test_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags) ||
4099 !test_bit(AF_ONLINE, &ha->flags) ||
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004100 !test_bit(AF_LINK_UP, &ha->flags) ||
Nilesh Javali026fbd32013-01-20 23:50:58 -05004101 test_bit(AF_LOOPBACK, &ha->flags) ||
Nilesh Javali7ab284c2013-08-16 07:03:03 -04004102 test_bit(DPC_POST_IDC_ACK, &ha->dpc_flags) ||
4103 test_bit(DPC_RESTORE_ACB, &ha->dpc_flags) ||
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304104 test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags))
David C Somayajulu477ffb92007-01-22 12:26:11 -08004105 goto qc_host_busy;
4106
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07004107 srb = qla4xxx_get_new_srb(ha, ddb_entry, cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004108 if (!srb)
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07004109 goto qc_host_busy;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004110
4111 rval = qla4xxx_send_command_to_isp(ha, srb);
4112 if (rval != QLA_SUCCESS)
4113 goto qc_host_busy_free_sp;
4114
David Somayajuluafaf5a22006-09-19 10:28:00 -07004115 return 0;
4116
4117qc_host_busy_free_sp:
4118 qla4xxx_srb_free_dma(ha, srb);
4119 mempool_free(srb, ha->srb_mempool);
4120
David Somayajuluafaf5a22006-09-19 10:28:00 -07004121qc_host_busy:
4122 return SCSI_MLQUEUE_HOST_BUSY;
4123
4124qc_fail_command:
Vikas Chaudhary8f0722c2011-05-17 23:17:10 -07004125 cmd->scsi_done(cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004126
4127 return 0;
4128}
4129
4130/**
4131 * qla4xxx_mem_free - frees memory allocated to adapter
4132 * @ha: Pointer to host adapter structure.
4133 *
4134 * Frees memory previously allocated by qla4xxx_mem_alloc
4135 **/
4136static void qla4xxx_mem_free(struct scsi_qla_host *ha)
4137{
4138 if (ha->queues)
4139 dma_free_coherent(&ha->pdev->dev, ha->queues_len, ha->queues,
4140 ha->queues_dma);
4141
Tej Parkash068237c82012-05-18 04:41:44 -04004142 if (ha->fw_dump)
4143 vfree(ha->fw_dump);
4144
David Somayajuluafaf5a22006-09-19 10:28:00 -07004145 ha->queues_len = 0;
4146 ha->queues = NULL;
4147 ha->queues_dma = 0;
4148 ha->request_ring = NULL;
4149 ha->request_dma = 0;
4150 ha->response_ring = NULL;
4151 ha->response_dma = 0;
4152 ha->shadow_regs = NULL;
4153 ha->shadow_regs_dma = 0;
Tej Parkash068237c82012-05-18 04:41:44 -04004154 ha->fw_dump = NULL;
4155 ha->fw_dump_size = 0;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004156
4157 /* Free srb pool. */
4158 if (ha->srb_mempool)
4159 mempool_destroy(ha->srb_mempool);
4160
4161 ha->srb_mempool = NULL;
4162
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004163 if (ha->chap_dma_pool)
4164 dma_pool_destroy(ha->chap_dma_pool);
4165
Lalit Chandivade45494152011-10-07 16:55:42 -07004166 if (ha->chap_list)
4167 vfree(ha->chap_list);
4168 ha->chap_list = NULL;
4169
Mike Christie13483732011-12-01 21:38:41 -06004170 if (ha->fw_ddb_dma_pool)
4171 dma_pool_destroy(ha->fw_ddb_dma_pool);
4172
David Somayajuluafaf5a22006-09-19 10:28:00 -07004173 /* release io space registers */
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304174 if (is_qla8022(ha)) {
4175 if (ha->nx_pcibase)
4176 iounmap(
4177 (struct device_reg_82xx __iomem *)ha->nx_pcibase);
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04004178 } else if (is_qla8032(ha) || is_qla8042(ha)) {
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004179 if (ha->nx_pcibase)
4180 iounmap(
4181 (struct device_reg_83xx __iomem *)ha->nx_pcibase);
4182 } else if (ha->reg) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07004183 iounmap(ha->reg);
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004184 }
4185
4186 if (ha->reset_tmplt.buff)
4187 vfree(ha->reset_tmplt.buff);
4188
David Somayajuluafaf5a22006-09-19 10:28:00 -07004189 pci_release_regions(ha->pdev);
4190}
4191
4192/**
4193 * qla4xxx_mem_alloc - allocates memory for use by adapter.
4194 * @ha: Pointer to host adapter structure
4195 *
4196 * Allocates DMA memory for request and response queues. Also allocates memory
4197 * for srbs.
4198 **/
4199static int qla4xxx_mem_alloc(struct scsi_qla_host *ha)
4200{
4201 unsigned long align;
4202
4203 /* Allocate contiguous block of DMA memory for queues. */
4204 ha->queues_len = ((REQUEST_QUEUE_DEPTH * QUEUE_SIZE) +
4205 (RESPONSE_QUEUE_DEPTH * QUEUE_SIZE) +
4206 sizeof(struct shadow_regs) +
4207 MEM_ALIGN_VALUE +
4208 (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
4209 ha->queues = dma_alloc_coherent(&ha->pdev->dev, ha->queues_len,
4210 &ha->queues_dma, GFP_KERNEL);
4211 if (ha->queues == NULL) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304212 ql4_printk(KERN_WARNING, ha,
4213 "Memory Allocation failed - queues.\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07004214
4215 goto mem_alloc_error_exit;
4216 }
4217 memset(ha->queues, 0, ha->queues_len);
4218
4219 /*
4220 * As per RISC alignment requirements -- the bus-address must be a
4221 * multiple of the request-ring size (in bytes).
4222 */
4223 align = 0;
4224 if ((unsigned long)ha->queues_dma & (MEM_ALIGN_VALUE - 1))
4225 align = MEM_ALIGN_VALUE - ((unsigned long)ha->queues_dma &
4226 (MEM_ALIGN_VALUE - 1));
4227
4228 /* Update request and response queue pointers. */
4229 ha->request_dma = ha->queues_dma + align;
4230 ha->request_ring = (struct queue_entry *) (ha->queues + align);
4231 ha->response_dma = ha->queues_dma + align +
4232 (REQUEST_QUEUE_DEPTH * QUEUE_SIZE);
4233 ha->response_ring = (struct queue_entry *) (ha->queues + align +
4234 (REQUEST_QUEUE_DEPTH *
4235 QUEUE_SIZE));
4236 ha->shadow_regs_dma = ha->queues_dma + align +
4237 (REQUEST_QUEUE_DEPTH * QUEUE_SIZE) +
4238 (RESPONSE_QUEUE_DEPTH * QUEUE_SIZE);
4239 ha->shadow_regs = (struct shadow_regs *) (ha->queues + align +
4240 (REQUEST_QUEUE_DEPTH *
4241 QUEUE_SIZE) +
4242 (RESPONSE_QUEUE_DEPTH *
4243 QUEUE_SIZE));
4244
4245 /* Allocate memory for srb pool. */
4246 ha->srb_mempool = mempool_create(SRB_MIN_REQ, mempool_alloc_slab,
4247 mempool_free_slab, srb_cachep);
4248 if (ha->srb_mempool == NULL) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05304249 ql4_printk(KERN_WARNING, ha,
4250 "Memory Allocation failed - SRB Pool.\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07004251
4252 goto mem_alloc_error_exit;
4253 }
4254
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004255 ha->chap_dma_pool = dma_pool_create("ql4_chap", &ha->pdev->dev,
4256 CHAP_DMA_BLOCK_SIZE, 8, 0);
4257
4258 if (ha->chap_dma_pool == NULL) {
4259 ql4_printk(KERN_WARNING, ha,
4260 "%s: chap_dma_pool allocation failed..\n", __func__);
4261 goto mem_alloc_error_exit;
4262 }
4263
Mike Christie13483732011-12-01 21:38:41 -06004264 ha->fw_ddb_dma_pool = dma_pool_create("ql4_fw_ddb", &ha->pdev->dev,
4265 DDB_DMA_BLOCK_SIZE, 8, 0);
4266
4267 if (ha->fw_ddb_dma_pool == NULL) {
4268 ql4_printk(KERN_WARNING, ha,
4269 "%s: fw_ddb_dma_pool allocation failed..\n",
4270 __func__);
4271 goto mem_alloc_error_exit;
4272 }
4273
David Somayajuluafaf5a22006-09-19 10:28:00 -07004274 return QLA_SUCCESS;
4275
4276mem_alloc_error_exit:
4277 qla4xxx_mem_free(ha);
4278 return QLA_ERROR;
4279}
4280
4281/**
Mike Hernandez4f770832012-01-11 02:44:15 -08004282 * qla4_8xxx_check_temp - Check the ISP82XX temperature.
4283 * @ha: adapter block pointer.
4284 *
4285 * Note: The caller should not hold the idc lock.
4286 **/
4287static int qla4_8xxx_check_temp(struct scsi_qla_host *ha)
4288{
4289 uint32_t temp, temp_state, temp_val;
4290 int status = QLA_SUCCESS;
4291
Vikas Chaudhary33693c72012-08-22 07:55:04 -04004292 temp = qla4_8xxx_rd_direct(ha, QLA8XXX_CRB_TEMP_STATE);
Mike Hernandez4f770832012-01-11 02:44:15 -08004293
4294 temp_state = qla82xx_get_temp_state(temp);
4295 temp_val = qla82xx_get_temp_val(temp);
4296
4297 if (temp_state == QLA82XX_TEMP_PANIC) {
4298 ql4_printk(KERN_WARNING, ha, "Device temperature %d degrees C"
4299 " exceeds maximum allowed. Hardware has been shut"
4300 " down.\n", temp_val);
4301 status = QLA_ERROR;
4302 } else if (temp_state == QLA82XX_TEMP_WARN) {
4303 if (ha->temperature == QLA82XX_TEMP_NORMAL)
4304 ql4_printk(KERN_WARNING, ha, "Device temperature %d"
4305 " degrees C exceeds operating range."
4306 " Immediate action needed.\n", temp_val);
4307 } else {
4308 if (ha->temperature == QLA82XX_TEMP_WARN)
4309 ql4_printk(KERN_INFO, ha, "Device temperature is"
4310 " now %d degrees C in normal range.\n",
4311 temp_val);
4312 }
4313 ha->temperature = temp_state;
4314 return status;
4315}
4316
4317/**
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304318 * qla4_8xxx_check_fw_alive - Check firmware health
4319 * @ha: Pointer to host adapter structure.
4320 *
4321 * Context: Interrupt
4322 **/
Shyam Sunder9ee91a32011-12-01 22:42:13 -08004323static int qla4_8xxx_check_fw_alive(struct scsi_qla_host *ha)
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304324{
Shyam Sunder9ee91a32011-12-01 22:42:13 -08004325 uint32_t fw_heartbeat_counter;
4326 int status = QLA_SUCCESS;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304327
Vikas Chaudhary33693c72012-08-22 07:55:04 -04004328 fw_heartbeat_counter = qla4_8xxx_rd_direct(ha,
4329 QLA8XXX_PEG_ALIVE_COUNTER);
Lalit Chandivade2232be02010-07-30 14:38:47 +05304330 /* If PEG_ALIVE_COUNTER is 0xffffffff, AER/EEH is in progress, ignore */
4331 if (fw_heartbeat_counter == 0xffffffff) {
4332 DEBUG2(printk(KERN_WARNING "scsi%ld: %s: Device in frozen "
4333 "state, QLA82XX_PEG_ALIVE_COUNTER is 0xffffffff\n",
4334 ha->host_no, __func__));
Shyam Sunder9ee91a32011-12-01 22:42:13 -08004335 return status;
Lalit Chandivade2232be02010-07-30 14:38:47 +05304336 }
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304337
4338 if (ha->fw_heartbeat_counter == fw_heartbeat_counter) {
4339 ha->seconds_since_last_heartbeat++;
4340 /* FW not alive after 2 seconds */
4341 if (ha->seconds_since_last_heartbeat == 2) {
4342 ha->seconds_since_last_heartbeat = 0;
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004343 qla4_8xxx_dump_peg_reg(ha);
Shyam Sunder9ee91a32011-12-01 22:42:13 -08004344 status = QLA_ERROR;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304345 }
Lalit Chandivade99457d72010-10-06 22:49:32 -07004346 } else
4347 ha->seconds_since_last_heartbeat = 0;
4348
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304349 ha->fw_heartbeat_counter = fw_heartbeat_counter;
Shyam Sunder9ee91a32011-12-01 22:42:13 -08004350 return status;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304351}
4352
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004353static void qla4_8xxx_process_fw_error(struct scsi_qla_host *ha)
4354{
4355 uint32_t halt_status;
4356 int halt_status_unrecoverable = 0;
4357
4358 halt_status = qla4_8xxx_rd_direct(ha, QLA8XXX_PEG_HALT_STATUS1);
4359
4360 if (is_qla8022(ha)) {
4361 ql4_printk(KERN_INFO, ha, "%s: disabling pause transmit on port 0 & 1.\n",
4362 __func__);
4363 qla4_82xx_wr_32(ha, QLA82XX_CRB_NIU + 0x98,
4364 CRB_NIU_XG_PAUSE_CTL_P0 |
4365 CRB_NIU_XG_PAUSE_CTL_P1);
4366
4367 if (QLA82XX_FWERROR_CODE(halt_status) == 0x67)
4368 ql4_printk(KERN_ERR, ha, "%s: Firmware aborted with error code 0x00006700. Device is being reset\n",
4369 __func__);
4370 if (halt_status & HALT_STATUS_UNRECOVERABLE)
4371 halt_status_unrecoverable = 1;
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04004372 } else if (is_qla8032(ha) || is_qla8042(ha)) {
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004373 if (halt_status & QLA83XX_HALT_STATUS_FW_RESET)
4374 ql4_printk(KERN_ERR, ha, "%s: Firmware error detected device is being reset\n",
4375 __func__);
4376 else if (halt_status & QLA83XX_HALT_STATUS_UNRECOVERABLE)
4377 halt_status_unrecoverable = 1;
4378 }
4379
4380 /*
4381 * Since we cannot change dev_state in interrupt context,
4382 * set appropriate DPC flag then wakeup DPC
4383 */
4384 if (halt_status_unrecoverable) {
4385 set_bit(DPC_HA_UNRECOVERABLE, &ha->dpc_flags);
4386 } else {
4387 ql4_printk(KERN_INFO, ha, "%s: detect abort needed!\n",
4388 __func__);
4389 set_bit(DPC_RESET_HA, &ha->dpc_flags);
4390 }
4391 qla4xxx_mailbox_premature_completion(ha);
4392 qla4xxx_wake_dpc(ha);
4393}
4394
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304395/**
4396 * qla4_8xxx_watchdog - Poll dev state
4397 * @ha: Pointer to host adapter structure.
4398 *
4399 * Context: Interrupt
4400 **/
4401void qla4_8xxx_watchdog(struct scsi_qla_host *ha)
4402{
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004403 uint32_t dev_state;
Vikas Chaudhary6cf94122013-03-07 05:43:10 -05004404 uint32_t idc_ctrl;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304405
Vikas Chaudharya083e8b2013-12-16 06:49:32 -05004406 if (is_qla8032(ha) &&
4407 (qla4_83xx_is_detached(ha) == QLA_SUCCESS))
4408 WARN_ONCE(1, "%s: iSCSI function %d marked invisible\n",
4409 __func__, ha->func_num);
4410
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304411 /* don't poll if reset is going on */
Lalit Chandivaded56a1f72010-12-02 22:12:45 -08004412 if (!(test_bit(DPC_RESET_ACTIVE, &ha->dpc_flags) ||
4413 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
Vikas Chaudhary977f46a2011-05-17 23:17:08 -07004414 test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags))) {
Vikas Chaudhary33693c72012-08-22 07:55:04 -04004415 dev_state = qla4_8xxx_rd_direct(ha, QLA8XXX_CRB_DEV_STATE);
Mike Hernandez4f770832012-01-11 02:44:15 -08004416
4417 if (qla4_8xxx_check_temp(ha)) {
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004418 if (is_qla8022(ha)) {
4419 ql4_printk(KERN_INFO, ha, "disabling pause transmit on port 0 & 1.\n");
4420 qla4_82xx_wr_32(ha, QLA82XX_CRB_NIU + 0x98,
4421 CRB_NIU_XG_PAUSE_CTL_P0 |
4422 CRB_NIU_XG_PAUSE_CTL_P1);
4423 }
Mike Hernandez4f770832012-01-11 02:44:15 -08004424 set_bit(DPC_HA_UNRECOVERABLE, &ha->dpc_flags);
4425 qla4xxx_wake_dpc(ha);
Vikas Chaudharyde8c72d2012-08-22 09:14:24 -04004426 } else if (dev_state == QLA8XXX_DEV_NEED_RESET &&
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004427 !test_bit(DPC_RESET_HA, &ha->dpc_flags)) {
Vikas Chaudhary6cf94122013-03-07 05:43:10 -05004428
4429 ql4_printk(KERN_INFO, ha, "%s: HW State: NEED RESET!\n",
4430 __func__);
4431
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04004432 if (is_qla8032(ha) || is_qla8042(ha)) {
Vikas Chaudhary6cf94122013-03-07 05:43:10 -05004433 idc_ctrl = qla4_83xx_rd_reg(ha,
4434 QLA83XX_IDC_DRV_CTRL);
4435 if (!(idc_ctrl & GRACEFUL_RESET_BIT1)) {
4436 ql4_printk(KERN_INFO, ha, "%s: Graceful reset bit is not set\n",
4437 __func__);
4438 qla4xxx_mailbox_premature_completion(
4439 ha);
4440 }
4441 }
4442
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04004443 if ((is_qla8032(ha) || is_qla8042(ha)) ||
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004444 (is_qla8022(ha) && !ql4xdontresethba)) {
Vikas Chaudhary3930b8c2010-12-02 22:12:47 -08004445 set_bit(DPC_RESET_HA, &ha->dpc_flags);
4446 qla4xxx_wake_dpc(ha);
Vikas Chaudhary3930b8c2010-12-02 22:12:47 -08004447 }
Vikas Chaudharyde8c72d2012-08-22 09:14:24 -04004448 } else if (dev_state == QLA8XXX_DEV_NEED_QUIESCENT &&
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304449 !test_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags)) {
Vikas Chaudhary3930b8c2010-12-02 22:12:47 -08004450 ql4_printk(KERN_INFO, ha, "%s: HW State: NEED QUIES!\n",
4451 __func__);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304452 set_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags);
4453 qla4xxx_wake_dpc(ha);
4454 } else {
4455 /* Check firmware health */
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004456 if (qla4_8xxx_check_fw_alive(ha))
4457 qla4_8xxx_process_fw_error(ha);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304458 }
4459 }
4460}
4461
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08004462static void qla4xxx_check_relogin_flash_ddb(struct iscsi_cls_session *cls_sess)
Mike Christie13483732011-12-01 21:38:41 -06004463{
4464 struct iscsi_session *sess;
4465 struct ddb_entry *ddb_entry;
4466 struct scsi_qla_host *ha;
4467
4468 sess = cls_sess->dd_data;
4469 ddb_entry = sess->dd_data;
4470 ha = ddb_entry->ha;
4471
4472 if (!(ddb_entry->ddb_type == FLASH_DDB))
4473 return;
4474
4475 if (adapter_up(ha) && !test_bit(DF_RELOGIN, &ddb_entry->flags) &&
4476 !iscsi_is_session_online(cls_sess)) {
4477 if (atomic_read(&ddb_entry->retry_relogin_timer) !=
4478 INVALID_ENTRY) {
4479 if (atomic_read(&ddb_entry->retry_relogin_timer) ==
4480 0) {
4481 atomic_set(&ddb_entry->retry_relogin_timer,
4482 INVALID_ENTRY);
4483 set_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags);
4484 set_bit(DF_RELOGIN, &ddb_entry->flags);
4485 DEBUG2(ql4_printk(KERN_INFO, ha,
4486 "%s: index [%d] login device\n",
4487 __func__, ddb_entry->fw_ddb_index));
4488 } else
4489 atomic_dec(&ddb_entry->retry_relogin_timer);
4490 }
4491 }
4492
4493 /* Wait for relogin to timeout */
4494 if (atomic_read(&ddb_entry->relogin_timer) &&
4495 (atomic_dec_and_test(&ddb_entry->relogin_timer) != 0)) {
4496 /*
4497 * If the relogin times out and the device is
4498 * still NOT ONLINE then try and relogin again.
4499 */
4500 if (!iscsi_is_session_online(cls_sess)) {
4501 /* Reset retry relogin timer */
4502 atomic_inc(&ddb_entry->relogin_retry_count);
4503 DEBUG2(ql4_printk(KERN_INFO, ha,
4504 "%s: index[%d] relogin timed out-retrying"
4505 " relogin (%d), retry (%d)\n", __func__,
4506 ddb_entry->fw_ddb_index,
4507 atomic_read(&ddb_entry->relogin_retry_count),
4508 ddb_entry->default_time2wait + 4));
4509 set_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags);
4510 atomic_set(&ddb_entry->retry_relogin_timer,
4511 ddb_entry->default_time2wait + 4);
4512 }
4513 }
4514}
4515
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304516/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07004517 * qla4xxx_timer - checks every second for work to do.
4518 * @ha: Pointer to host adapter structure.
4519 **/
4520static void qla4xxx_timer(struct scsi_qla_host *ha)
4521{
David Somayajuluafaf5a22006-09-19 10:28:00 -07004522 int start_dpc = 0;
Lalit Chandivade2232be02010-07-30 14:38:47 +05304523 uint16_t w;
4524
Mike Christie13483732011-12-01 21:38:41 -06004525 iscsi_host_for_each_session(ha->host, qla4xxx_check_relogin_flash_ddb);
4526
Lalit Chandivade2232be02010-07-30 14:38:47 +05304527 /* If we are in the middle of AER/EEH processing
4528 * skip any processing and reschedule the timer
4529 */
4530 if (test_bit(AF_EEH_BUSY, &ha->flags)) {
4531 mod_timer(&ha->timer, jiffies + HZ);
4532 return;
4533 }
4534
4535 /* Hardware read to trigger an EEH error during mailbox waits. */
4536 if (!pci_channel_offline(ha->pdev))
4537 pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004538
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004539 if (is_qla80XX(ha))
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304540 qla4_8xxx_watchdog(ha);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304541
Vikas Chaudharyee996a62012-08-22 07:55:05 -04004542 if (is_qla40XX(ha)) {
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304543 /* Check for heartbeat interval. */
4544 if (ha->firmware_options & FWOPT_HEARTBEAT_ENABLE &&
4545 ha->heartbeat_interval != 0) {
4546 ha->seconds_since_last_heartbeat++;
4547 if (ha->seconds_since_last_heartbeat >
4548 ha->heartbeat_interval + 2)
4549 set_bit(DPC_RESET_HA, &ha->dpc_flags);
4550 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07004551 }
4552
Vikas Chaudharyff884432011-08-29 23:43:02 +05304553 /* Process any deferred work. */
4554 if (!list_empty(&ha->work_list))
4555 start_dpc++;
4556
David Somayajuluafaf5a22006-09-19 10:28:00 -07004557 /* Wakeup the dpc routine for this adapter, if needed. */
Lalit Chandivade1b468072011-05-17 23:17:09 -07004558 if (start_dpc ||
David Somayajuluafaf5a22006-09-19 10:28:00 -07004559 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
4560 test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags) ||
4561 test_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags) ||
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304562 test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags) ||
David Somayajuluafaf5a22006-09-19 10:28:00 -07004563 test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
4564 test_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags) ||
Vikas Chaudhary065aa1b2010-04-28 11:38:11 +05304565 test_bit(DPC_LINK_CHANGED, &ha->dpc_flags) ||
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304566 test_bit(DPC_HA_UNRECOVERABLE, &ha->dpc_flags) ||
4567 test_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags) ||
Lalit Chandivade1b468072011-05-17 23:17:09 -07004568 test_bit(DPC_AEN, &ha->dpc_flags)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07004569 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine"
4570 " - dpc flags = 0x%lx\n",
4571 ha->host_no, __func__, ha->dpc_flags));
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304572 qla4xxx_wake_dpc(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004573 }
4574
4575 /* Reschedule timer thread to call us back in one second */
4576 mod_timer(&ha->timer, jiffies + HZ);
4577
4578 DEBUG2(ha->seconds_since_last_intr++);
4579}
4580
4581/**
4582 * qla4xxx_cmd_wait - waits for all outstanding commands to complete
4583 * @ha: Pointer to host adapter structure.
4584 *
4585 * This routine stalls the driver until all outstanding commands are returned.
4586 * Caller must release the Hardware Lock prior to calling this routine.
4587 **/
4588static int qla4xxx_cmd_wait(struct scsi_qla_host *ha)
4589{
4590 uint32_t index = 0;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004591 unsigned long flags;
4592 struct scsi_cmnd *cmd;
Tej Parkash61d9a2b2013-12-16 06:49:43 -05004593 unsigned long wtime;
4594 uint32_t wtmo;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004595
Tej Parkash61d9a2b2013-12-16 06:49:43 -05004596 if (is_qla40XX(ha))
4597 wtmo = WAIT_CMD_TOV;
4598 else
4599 wtmo = ha->nx_reset_timeout / 2;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304600
Tej Parkash61d9a2b2013-12-16 06:49:43 -05004601 wtime = jiffies + (wtmo * HZ);
4602
4603 DEBUG2(ql4_printk(KERN_INFO, ha,
4604 "Wait up to %u seconds for cmds to complete\n",
4605 wtmo));
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304606
4607 while (!time_after_eq(jiffies, wtime)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07004608 spin_lock_irqsave(&ha->hardware_lock, flags);
4609 /* Find a command that hasn't completed. */
4610 for (index = 0; index < ha->host->can_queue; index++) {
4611 cmd = scsi_host_find_tag(ha->host, index);
Mike Christiea1e00632010-10-26 05:45:30 -07004612 /*
4613 * We cannot just check if the index is valid,
4614 * becase if we are run from the scsi eh, then
4615 * the scsi/block layer is going to prevent
4616 * the tag from being released.
4617 */
4618 if (cmd != NULL && CMD_SP(cmd))
David Somayajuluafaf5a22006-09-19 10:28:00 -07004619 break;
4620 }
4621 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4622
4623 /* If No Commands are pending, wait is complete */
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304624 if (index == ha->host->can_queue)
4625 return QLA_SUCCESS;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004626
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304627 msleep(1000);
4628 }
4629 /* If we timed out on waiting for commands to come back
4630 * return ERROR. */
4631 return QLA_ERROR;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004632}
4633
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304634int qla4xxx_hw_reset(struct scsi_qla_host *ha)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004635{
David Somayajuluafaf5a22006-09-19 10:28:00 -07004636 uint32_t ctrl_status;
David C Somayajulu477ffb92007-01-22 12:26:11 -08004637 unsigned long flags = 0;
4638
4639 DEBUG2(printk(KERN_ERR "scsi%ld: %s\n", ha->host_no, __func__));
David Somayajuluafaf5a22006-09-19 10:28:00 -07004640
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304641 if (ql4xxx_lock_drvr_wait(ha) != QLA_SUCCESS)
4642 return QLA_ERROR;
4643
David Somayajuluafaf5a22006-09-19 10:28:00 -07004644 spin_lock_irqsave(&ha->hardware_lock, flags);
4645
4646 /*
4647 * If the SCSI Reset Interrupt bit is set, clear it.
4648 * Otherwise, the Soft Reset won't work.
4649 */
4650 ctrl_status = readw(&ha->reg->ctrl_status);
4651 if ((ctrl_status & CSR_SCSI_RESET_INTR) != 0)
4652 writel(set_rmask(CSR_SCSI_RESET_INTR), &ha->reg->ctrl_status);
4653
4654 /* Issue Soft Reset */
4655 writel(set_rmask(CSR_SOFT_RESET), &ha->reg->ctrl_status);
4656 readl(&ha->reg->ctrl_status);
4657
4658 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304659 return QLA_SUCCESS;
David C Somayajulu477ffb92007-01-22 12:26:11 -08004660}
4661
4662/**
4663 * qla4xxx_soft_reset - performs soft reset.
4664 * @ha: Pointer to host adapter structure.
4665 **/
4666int qla4xxx_soft_reset(struct scsi_qla_host *ha)
4667{
4668 uint32_t max_wait_time;
4669 unsigned long flags = 0;
Vikas Chaudharyf931c532010-10-06 22:48:07 -07004670 int status;
David C Somayajulu477ffb92007-01-22 12:26:11 -08004671 uint32_t ctrl_status;
4672
Vikas Chaudharyf931c532010-10-06 22:48:07 -07004673 status = qla4xxx_hw_reset(ha);
4674 if (status != QLA_SUCCESS)
4675 return status;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004676
Vikas Chaudharyf931c532010-10-06 22:48:07 -07004677 status = QLA_ERROR;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004678 /* Wait until the Network Reset Intr bit is cleared */
4679 max_wait_time = RESET_INTR_TOV;
4680 do {
4681 spin_lock_irqsave(&ha->hardware_lock, flags);
4682 ctrl_status = readw(&ha->reg->ctrl_status);
4683 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4684
4685 if ((ctrl_status & CSR_NET_RESET_INTR) == 0)
4686 break;
4687
4688 msleep(1000);
4689 } while ((--max_wait_time));
4690
4691 if ((ctrl_status & CSR_NET_RESET_INTR) != 0) {
4692 DEBUG2(printk(KERN_WARNING
4693 "scsi%ld: Network Reset Intr not cleared by "
4694 "Network function, clearing it now!\n",
4695 ha->host_no));
4696 spin_lock_irqsave(&ha->hardware_lock, flags);
4697 writel(set_rmask(CSR_NET_RESET_INTR), &ha->reg->ctrl_status);
4698 readl(&ha->reg->ctrl_status);
4699 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4700 }
4701
4702 /* Wait until the firmware tells us the Soft Reset is done */
4703 max_wait_time = SOFT_RESET_TOV;
4704 do {
4705 spin_lock_irqsave(&ha->hardware_lock, flags);
4706 ctrl_status = readw(&ha->reg->ctrl_status);
4707 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4708
4709 if ((ctrl_status & CSR_SOFT_RESET) == 0) {
4710 status = QLA_SUCCESS;
4711 break;
4712 }
4713
4714 msleep(1000);
4715 } while ((--max_wait_time));
4716
4717 /*
4718 * Also, make sure that the SCSI Reset Interrupt bit has been cleared
4719 * after the soft reset has taken place.
4720 */
4721 spin_lock_irqsave(&ha->hardware_lock, flags);
4722 ctrl_status = readw(&ha->reg->ctrl_status);
4723 if ((ctrl_status & CSR_SCSI_RESET_INTR) != 0) {
4724 writel(set_rmask(CSR_SCSI_RESET_INTR), &ha->reg->ctrl_status);
4725 readl(&ha->reg->ctrl_status);
4726 }
4727 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4728
4729 /* If soft reset fails then most probably the bios on other
4730 * function is also enabled.
4731 * Since the initialization is sequential the other fn
4732 * wont be able to acknowledge the soft reset.
4733 * Issue a force soft reset to workaround this scenario.
4734 */
4735 if (max_wait_time == 0) {
4736 /* Issue Force Soft Reset */
4737 spin_lock_irqsave(&ha->hardware_lock, flags);
4738 writel(set_rmask(CSR_FORCE_SOFT_RESET), &ha->reg->ctrl_status);
4739 readl(&ha->reg->ctrl_status);
4740 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4741 /* Wait until the firmware tells us the Soft Reset is done */
4742 max_wait_time = SOFT_RESET_TOV;
4743 do {
4744 spin_lock_irqsave(&ha->hardware_lock, flags);
4745 ctrl_status = readw(&ha->reg->ctrl_status);
4746 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4747
4748 if ((ctrl_status & CSR_FORCE_SOFT_RESET) == 0) {
4749 status = QLA_SUCCESS;
4750 break;
4751 }
4752
4753 msleep(1000);
4754 } while ((--max_wait_time));
4755 }
4756
4757 return status;
4758}
4759
4760/**
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304761 * qla4xxx_abort_active_cmds - returns all outstanding i/o requests to O.S.
David Somayajuluafaf5a22006-09-19 10:28:00 -07004762 * @ha: Pointer to host adapter structure.
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304763 * @res: returned scsi status
David Somayajuluafaf5a22006-09-19 10:28:00 -07004764 *
4765 * This routine is called just prior to a HARD RESET to return all
4766 * outstanding commands back to the Operating System.
4767 * Caller should make sure that the following locks are released
4768 * before this calling routine: Hardware lock, and io_request_lock.
4769 **/
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304770static void qla4xxx_abort_active_cmds(struct scsi_qla_host *ha, int res)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004771{
4772 struct srb *srb;
4773 int i;
4774 unsigned long flags;
4775
4776 spin_lock_irqsave(&ha->hardware_lock, flags);
4777 for (i = 0; i < ha->host->can_queue; i++) {
4778 srb = qla4xxx_del_from_active_array(ha, i);
4779 if (srb != NULL) {
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304780 srb->cmd->result = res;
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05304781 kref_put(&srb->srb_ref, qla4xxx_srb_compl);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004782 }
4783 }
4784 spin_unlock_irqrestore(&ha->hardware_lock, flags);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004785}
4786
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304787void qla4xxx_dead_adapter_cleanup(struct scsi_qla_host *ha)
4788{
4789 clear_bit(AF_ONLINE, &ha->flags);
4790
4791 /* Disable the board */
4792 ql4_printk(KERN_INFO, ha, "Disabling the board\n");
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304793
4794 qla4xxx_abort_active_cmds(ha, DID_NO_CONNECT << 16);
4795 qla4xxx_mark_all_devices_missing(ha);
4796 clear_bit(AF_INIT_DONE, &ha->flags);
4797}
4798
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004799static void qla4xxx_fail_session(struct iscsi_cls_session *cls_session)
4800{
4801 struct iscsi_session *sess;
4802 struct ddb_entry *ddb_entry;
4803
4804 sess = cls_session->dd_data;
4805 ddb_entry = sess->dd_data;
4806 ddb_entry->fw_ddb_device_state = DDB_DS_SESSION_FAILED;
Mike Christie13483732011-12-01 21:38:41 -06004807
4808 if (ddb_entry->ddb_type == FLASH_DDB)
4809 iscsi_block_session(ddb_entry->sess);
4810 else
4811 iscsi_session_failure(cls_session->dd_data,
4812 ISCSI_ERR_CONN_FAILED);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004813}
4814
David Somayajuluafaf5a22006-09-19 10:28:00 -07004815/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07004816 * qla4xxx_recover_adapter - recovers adapter after a fatal error
4817 * @ha: Pointer to host adapter structure.
David Somayajuluafaf5a22006-09-19 10:28:00 -07004818 **/
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304819static int qla4xxx_recover_adapter(struct scsi_qla_host *ha)
David Somayajuluafaf5a22006-09-19 10:28:00 -07004820{
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304821 int status = QLA_ERROR;
4822 uint8_t reset_chip = 0;
Sarang Radke8e0f3a62011-12-01 22:42:09 -08004823 uint32_t dev_state;
Shyam Sunder9ee91a32011-12-01 22:42:13 -08004824 unsigned long wait;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004825
4826 /* Stall incoming I/O until we are done */
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304827 scsi_block_requests(ha->host);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004828 clear_bit(AF_ONLINE, &ha->flags);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004829 clear_bit(AF_LINK_UP, &ha->flags);
Mike Christie50a29ae2008-03-04 13:26:53 -06004830
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304831 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: adapter OFFLINE\n", __func__));
David Somayajuluafaf5a22006-09-19 10:28:00 -07004832
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304833 set_bit(DPC_RESET_ACTIVE, &ha->dpc_flags);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004834
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04004835 if ((is_qla8032(ha) || is_qla8042(ha)) &&
Tej Parkash546fef22012-09-20 07:35:12 -04004836 !test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags)) {
4837 ql4_printk(KERN_INFO, ha, "%s: disabling pause transmit on port 0 & 1.\n",
4838 __func__);
4839 /* disable pause frame for ISP83xx */
4840 qla4_83xx_disable_pause(ha);
4841 }
4842
Manish Rangankarb3a271a2011-07-25 13:48:53 -05004843 iscsi_host_for_each_session(ha->host, qla4xxx_fail_session);
4844
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304845 if (test_bit(DPC_RESET_HA, &ha->dpc_flags))
4846 reset_chip = 1;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004847
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304848 /* For the DPC_RESET_HA_INTR case (ISP-4xxx specific)
4849 * do not reset adapter, jump to initialize_adapter */
4850 if (test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags)) {
4851 status = QLA_SUCCESS;
4852 goto recover_ha_init_adapter;
David Somayajuluafaf5a22006-09-19 10:28:00 -07004853 }
4854
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004855 /* For the ISP-8xxx adapter, issue a stop_firmware if invoked
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304856 * from eh_host_reset or ioctl module */
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004857 if (is_qla80XX(ha) && !reset_chip &&
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304858 test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags)) {
4859
4860 DEBUG2(ql4_printk(KERN_INFO, ha,
4861 "scsi%ld: %s - Performing stop_firmware...\n",
4862 ha->host_no, __func__));
4863 status = ha->isp_ops->reset_firmware(ha);
4864 if (status == QLA_SUCCESS) {
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304865 ha->isp_ops->disable_intrs(ha);
4866 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
4867 qla4xxx_abort_active_cmds(ha, DID_RESET << 16);
4868 } else {
4869 /* If the stop_firmware fails then
4870 * reset the entire chip */
4871 reset_chip = 1;
4872 clear_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags);
4873 set_bit(DPC_RESET_HA, &ha->dpc_flags);
4874 }
4875 }
4876
4877 /* Issue full chip reset if recovering from a catastrophic error,
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004878 * or if stop_firmware fails for ISP-8xxx.
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304879 * This is the default case for ISP-4xxx */
Vikas Chaudharyee996a62012-08-22 07:55:05 -04004880 if (is_qla40XX(ha) || reset_chip) {
4881 if (is_qla40XX(ha))
Shyam Sunder9ee91a32011-12-01 22:42:13 -08004882 goto chip_reset;
4883
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004884 /* Check if 8XXX firmware is alive or not
Shyam Sunder9ee91a32011-12-01 22:42:13 -08004885 * We may have arrived here from NEED_RESET
4886 * detection only */
4887 if (test_bit(AF_FW_RECOVERY, &ha->flags))
4888 goto chip_reset;
4889
4890 wait = jiffies + (FW_ALIVE_WAIT_TOV * HZ);
4891 while (time_before(jiffies, wait)) {
4892 if (qla4_8xxx_check_fw_alive(ha)) {
4893 qla4xxx_mailbox_premature_completion(ha);
4894 break;
4895 }
4896
4897 set_current_state(TASK_UNINTERRUPTIBLE);
4898 schedule_timeout(HZ);
4899 }
Vikas Chaudharyda106212012-08-22 07:45:26 -04004900chip_reset:
Nilesh Javali2bd1e2b2010-10-06 22:49:20 -07004901 if (!test_bit(AF_FW_RECOVERY, &ha->flags))
4902 qla4xxx_cmd_wait(ha);
Vikas Chaudharyda106212012-08-22 07:45:26 -04004903
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304904 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304905 DEBUG2(ql4_printk(KERN_INFO, ha,
4906 "scsi%ld: %s - Performing chip reset..\n",
4907 ha->host_no, __func__));
4908 status = ha->isp_ops->reset_chip(ha);
Tej Parkash61d9a2b2013-12-16 06:49:43 -05004909 qla4xxx_abort_active_cmds(ha, DID_RESET << 16);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304910 }
4911
4912 /* Flush any pending ddb changed AENs */
4913 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
4914
4915recover_ha_init_adapter:
4916 /* Upon successful firmware/chip reset, re-initialize the adapter */
4917 if (status == QLA_SUCCESS) {
4918 /* For ISP-4xxx, force function 1 to always initialize
4919 * before function 3 to prevent both funcions from
4920 * stepping on top of the other */
Vikas Chaudharyee996a62012-08-22 07:55:05 -04004921 if (is_qla40XX(ha) && (ha->mac_index == 3))
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304922 ssleep(6);
4923
4924 /* NOTE: AF_ONLINE flag set upon successful completion of
Nilesh Javali37418cc2013-12-16 06:49:31 -05004925 * qla4xxx_initialize_adapter */
Mike Christie13483732011-12-01 21:38:41 -06004926 status = qla4xxx_initialize_adapter(ha, RESET_ADAPTER);
Nilesh Javali37418cc2013-12-16 06:49:31 -05004927 if (is_qla80XX(ha) && (status == QLA_ERROR)) {
4928 status = qla4_8xxx_check_init_adapter_retry(ha);
4929 if (status == QLA_ERROR) {
4930 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: Don't retry recover adapter\n",
4931 ha->host_no, __func__);
4932 qla4xxx_dead_adapter_cleanup(ha);
4933 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
4934 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
4935 clear_bit(DPC_RESET_HA_FW_CONTEXT,
4936 &ha->dpc_flags);
4937 goto exit_recover;
4938 }
4939 }
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304940 }
4941
4942 /* Retry failed adapter initialization, if necessary
4943 * Do not retry initialize_adapter for RESET_HA_INTR (ISP-4xxx specific)
4944 * case to prevent ping-pong resets between functions */
4945 if (!test_bit(AF_ONLINE, &ha->flags) &&
4946 !test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07004947 /* Adapter initialization failed, see if we can retry
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304948 * resetting the ha.
4949 * Since we don't want to block the DPC for too long
4950 * with multiple resets in the same thread,
4951 * utilize DPC to retry */
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04004952 if (is_qla80XX(ha)) {
Vikas Chaudhary33693c72012-08-22 07:55:04 -04004953 ha->isp_ops->idc_lock(ha);
4954 dev_state = qla4_8xxx_rd_direct(ha,
4955 QLA8XXX_CRB_DEV_STATE);
4956 ha->isp_ops->idc_unlock(ha);
Vikas Chaudharyde8c72d2012-08-22 09:14:24 -04004957 if (dev_state == QLA8XXX_DEV_FAILED) {
Sarang Radke8e0f3a62011-12-01 22:42:09 -08004958 ql4_printk(KERN_INFO, ha, "%s: don't retry "
4959 "recover adapter. H/W is in Failed "
4960 "state\n", __func__);
4961 qla4xxx_dead_adapter_cleanup(ha);
4962 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
4963 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
4964 clear_bit(DPC_RESET_HA_FW_CONTEXT,
4965 &ha->dpc_flags);
4966 status = QLA_ERROR;
4967
4968 goto exit_recover;
4969 }
4970 }
4971
David Somayajuluafaf5a22006-09-19 10:28:00 -07004972 if (!test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags)) {
4973 ha->retry_reset_ha_cnt = MAX_RESET_HA_RETRIES;
4974 DEBUG2(printk("scsi%ld: recover adapter - retrying "
4975 "(%d) more times\n", ha->host_no,
4976 ha->retry_reset_ha_cnt));
4977 set_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
4978 status = QLA_ERROR;
4979 } else {
4980 if (ha->retry_reset_ha_cnt > 0) {
4981 /* Schedule another Reset HA--DPC will retry */
4982 ha->retry_reset_ha_cnt--;
4983 DEBUG2(printk("scsi%ld: recover adapter - "
4984 "retry remaining %d\n",
4985 ha->host_no,
4986 ha->retry_reset_ha_cnt));
4987 status = QLA_ERROR;
4988 }
4989
4990 if (ha->retry_reset_ha_cnt == 0) {
4991 /* Recover adapter retries have been exhausted.
4992 * Adapter DEAD */
4993 DEBUG2(printk("scsi%ld: recover adapter "
4994 "failed - board disabled\n",
4995 ha->host_no));
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304996 qla4xxx_dead_adapter_cleanup(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07004997 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
4998 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05304999 clear_bit(DPC_RESET_HA_FW_CONTEXT,
David Somayajuluafaf5a22006-09-19 10:28:00 -07005000 &ha->dpc_flags);
5001 status = QLA_ERROR;
5002 }
5003 }
5004 } else {
5005 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305006 clear_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags);
David Somayajuluafaf5a22006-09-19 10:28:00 -07005007 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
5008 }
5009
Sarang Radke8e0f3a62011-12-01 22:42:09 -08005010exit_recover:
David Somayajuluafaf5a22006-09-19 10:28:00 -07005011 ha->adapter_error_count++;
5012
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305013 if (test_bit(AF_ONLINE, &ha->flags))
5014 ha->isp_ops->enable_intrs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07005015
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305016 scsi_unblock_requests(ha->host);
5017
5018 clear_bit(DPC_RESET_ACTIVE, &ha->dpc_flags);
5019 DEBUG2(printk("scsi%ld: recover adapter: %s\n", ha->host_no,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005020 status == QLA_ERROR ? "FAILED" : "SUCCEEDED"));
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305021
David Somayajuluafaf5a22006-09-19 10:28:00 -07005022 return status;
5023}
5024
Manish Rangankarb3a271a2011-07-25 13:48:53 -05005025static void qla4xxx_relogin_devices(struct iscsi_cls_session *cls_session)
Vikas Chaudhary2d7924e2011-03-21 03:34:33 -07005026{
Manish Rangankarb3a271a2011-07-25 13:48:53 -05005027 struct iscsi_session *sess;
5028 struct ddb_entry *ddb_entry;
5029 struct scsi_qla_host *ha;
Vikas Chaudhary2d7924e2011-03-21 03:34:33 -07005030
Manish Rangankarb3a271a2011-07-25 13:48:53 -05005031 sess = cls_session->dd_data;
5032 ddb_entry = sess->dd_data;
5033 ha = ddb_entry->ha;
5034 if (!iscsi_is_session_online(cls_session)) {
5035 if (ddb_entry->fw_ddb_device_state == DDB_DS_SESSION_ACTIVE) {
5036 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: ddb[%d]"
5037 " unblock session\n", ha->host_no, __func__,
5038 ddb_entry->fw_ddb_index);
5039 iscsi_unblock_session(ddb_entry->sess);
5040 } else {
5041 /* Trigger relogin */
Mike Christie13483732011-12-01 21:38:41 -06005042 if (ddb_entry->ddb_type == FLASH_DDB) {
Adheer Chandravanshi99c6a332013-07-08 08:33:05 -04005043 if (!(test_bit(DF_RELOGIN, &ddb_entry->flags) ||
5044 test_bit(DF_DISABLE_RELOGIN,
5045 &ddb_entry->flags)))
Mike Christie13483732011-12-01 21:38:41 -06005046 qla4xxx_arm_relogin_timer(ddb_entry);
5047 } else
5048 iscsi_session_failure(cls_session->dd_data,
5049 ISCSI_ERR_CONN_FAILED);
Vikas Chaudhary2d7924e2011-03-21 03:34:33 -07005050 }
5051 }
5052}
5053
Mike Christie13483732011-12-01 21:38:41 -06005054int qla4xxx_unblock_flash_ddb(struct iscsi_cls_session *cls_session)
5055{
5056 struct iscsi_session *sess;
5057 struct ddb_entry *ddb_entry;
5058 struct scsi_qla_host *ha;
5059
5060 sess = cls_session->dd_data;
5061 ddb_entry = sess->dd_data;
5062 ha = ddb_entry->ha;
5063 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: ddb[%d]"
5064 " unblock session\n", ha->host_no, __func__,
5065 ddb_entry->fw_ddb_index);
5066
5067 iscsi_unblock_session(ddb_entry->sess);
5068
5069 /* Start scan target */
5070 if (test_bit(AF_ONLINE, &ha->flags)) {
5071 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: ddb[%d]"
5072 " start scan\n", ha->host_no, __func__,
5073 ddb_entry->fw_ddb_index);
5074 scsi_queue_work(ha->host, &ddb_entry->sess->scan_work);
5075 }
5076 return QLA_SUCCESS;
5077}
5078
5079int qla4xxx_unblock_ddb(struct iscsi_cls_session *cls_session)
5080{
5081 struct iscsi_session *sess;
5082 struct ddb_entry *ddb_entry;
5083 struct scsi_qla_host *ha;
Manish Rangankar80c53e62012-08-07 07:57:15 -04005084 int status = QLA_SUCCESS;
Mike Christie13483732011-12-01 21:38:41 -06005085
5086 sess = cls_session->dd_data;
5087 ddb_entry = sess->dd_data;
5088 ha = ddb_entry->ha;
5089 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: ddb[%d]"
5090 " unblock user space session\n", ha->host_no, __func__,
5091 ddb_entry->fw_ddb_index);
Mike Christie13483732011-12-01 21:38:41 -06005092
Manish Rangankar80c53e62012-08-07 07:57:15 -04005093 if (!iscsi_is_session_online(cls_session)) {
5094 iscsi_conn_start(ddb_entry->conn);
5095 iscsi_conn_login_event(ddb_entry->conn,
5096 ISCSI_CONN_STATE_LOGGED_IN);
5097 } else {
5098 ql4_printk(KERN_INFO, ha,
5099 "scsi%ld: %s: ddb[%d] session [%d] already logged in\n",
5100 ha->host_no, __func__, ddb_entry->fw_ddb_index,
5101 cls_session->sid);
5102 status = QLA_ERROR;
5103 }
5104
5105 return status;
Mike Christie13483732011-12-01 21:38:41 -06005106}
5107
Manish Rangankarb3a271a2011-07-25 13:48:53 -05005108static void qla4xxx_relogin_all_devices(struct scsi_qla_host *ha)
5109{
5110 iscsi_host_for_each_session(ha->host, qla4xxx_relogin_devices);
5111}
5112
Mike Christie13483732011-12-01 21:38:41 -06005113static void qla4xxx_relogin_flash_ddb(struct iscsi_cls_session *cls_sess)
5114{
5115 uint16_t relogin_timer;
5116 struct iscsi_session *sess;
5117 struct ddb_entry *ddb_entry;
5118 struct scsi_qla_host *ha;
5119
5120 sess = cls_sess->dd_data;
5121 ddb_entry = sess->dd_data;
5122 ha = ddb_entry->ha;
5123
5124 relogin_timer = max(ddb_entry->default_relogin_timeout,
5125 (uint16_t)RELOGIN_TOV);
5126 atomic_set(&ddb_entry->relogin_timer, relogin_timer);
5127
5128 DEBUG2(ql4_printk(KERN_INFO, ha,
5129 "scsi%ld: Relogin index [%d]. TOV=%d\n", ha->host_no,
5130 ddb_entry->fw_ddb_index, relogin_timer));
5131
5132 qla4xxx_login_flash_ddb(cls_sess);
5133}
5134
5135static void qla4xxx_dpc_relogin(struct iscsi_cls_session *cls_sess)
5136{
5137 struct iscsi_session *sess;
5138 struct ddb_entry *ddb_entry;
5139 struct scsi_qla_host *ha;
5140
5141 sess = cls_sess->dd_data;
5142 ddb_entry = sess->dd_data;
5143 ha = ddb_entry->ha;
5144
5145 if (!(ddb_entry->ddb_type == FLASH_DDB))
5146 return;
5147
Adheer Chandravanshi99c6a332013-07-08 08:33:05 -04005148 if (test_bit(DF_DISABLE_RELOGIN, &ddb_entry->flags))
5149 return;
5150
Mike Christie13483732011-12-01 21:38:41 -06005151 if (test_and_clear_bit(DF_RELOGIN, &ddb_entry->flags) &&
5152 !iscsi_is_session_online(cls_sess)) {
5153 DEBUG2(ql4_printk(KERN_INFO, ha,
5154 "relogin issued\n"));
5155 qla4xxx_relogin_flash_ddb(cls_sess);
5156 }
5157}
5158
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305159void qla4xxx_wake_dpc(struct scsi_qla_host *ha)
5160{
Lalit Chandivade1b468072011-05-17 23:17:09 -07005161 if (ha->dpc_thread)
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305162 queue_work(ha->dpc_thread, &ha->dpc_work);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305163}
5164
Vikas Chaudharyff884432011-08-29 23:43:02 +05305165static struct qla4_work_evt *
5166qla4xxx_alloc_work(struct scsi_qla_host *ha, uint32_t data_size,
5167 enum qla4_work_type type)
5168{
5169 struct qla4_work_evt *e;
5170 uint32_t size = sizeof(struct qla4_work_evt) + data_size;
5171
5172 e = kzalloc(size, GFP_ATOMIC);
5173 if (!e)
5174 return NULL;
5175
5176 INIT_LIST_HEAD(&e->list);
5177 e->type = type;
5178 return e;
5179}
5180
5181static void qla4xxx_post_work(struct scsi_qla_host *ha,
5182 struct qla4_work_evt *e)
5183{
5184 unsigned long flags;
5185
5186 spin_lock_irqsave(&ha->work_lock, flags);
5187 list_add_tail(&e->list, &ha->work_list);
5188 spin_unlock_irqrestore(&ha->work_lock, flags);
5189 qla4xxx_wake_dpc(ha);
5190}
5191
5192int qla4xxx_post_aen_work(struct scsi_qla_host *ha,
5193 enum iscsi_host_event_code aen_code,
5194 uint32_t data_size, uint8_t *data)
5195{
5196 struct qla4_work_evt *e;
5197
5198 e = qla4xxx_alloc_work(ha, data_size, QLA4_EVENT_AEN);
5199 if (!e)
5200 return QLA_ERROR;
5201
5202 e->u.aen.code = aen_code;
5203 e->u.aen.data_size = data_size;
5204 memcpy(e->u.aen.data, data, data_size);
5205
5206 qla4xxx_post_work(ha, e);
5207
5208 return QLA_SUCCESS;
5209}
5210
Vikas Chaudharyc0b9d3f2012-02-13 18:30:49 +05305211int qla4xxx_post_ping_evt_work(struct scsi_qla_host *ha,
5212 uint32_t status, uint32_t pid,
5213 uint32_t data_size, uint8_t *data)
5214{
5215 struct qla4_work_evt *e;
5216
5217 e = qla4xxx_alloc_work(ha, data_size, QLA4_EVENT_PING_STATUS);
5218 if (!e)
5219 return QLA_ERROR;
5220
5221 e->u.ping.status = status;
5222 e->u.ping.pid = pid;
5223 e->u.ping.data_size = data_size;
5224 memcpy(e->u.ping.data, data, data_size);
5225
5226 qla4xxx_post_work(ha, e);
5227
5228 return QLA_SUCCESS;
5229}
5230
Vikas Chaudharya7380a62012-02-27 03:08:56 -08005231static void qla4xxx_do_work(struct scsi_qla_host *ha)
Vikas Chaudharyff884432011-08-29 23:43:02 +05305232{
5233 struct qla4_work_evt *e, *tmp;
5234 unsigned long flags;
5235 LIST_HEAD(work);
5236
5237 spin_lock_irqsave(&ha->work_lock, flags);
5238 list_splice_init(&ha->work_list, &work);
5239 spin_unlock_irqrestore(&ha->work_lock, flags);
5240
5241 list_for_each_entry_safe(e, tmp, &work, list) {
5242 list_del_init(&e->list);
5243
5244 switch (e->type) {
5245 case QLA4_EVENT_AEN:
5246 iscsi_post_host_event(ha->host_no,
5247 &qla4xxx_iscsi_transport,
5248 e->u.aen.code,
5249 e->u.aen.data_size,
5250 e->u.aen.data);
5251 break;
Vikas Chaudharyc0b9d3f2012-02-13 18:30:49 +05305252 case QLA4_EVENT_PING_STATUS:
5253 iscsi_ping_comp_event(ha->host_no,
5254 &qla4xxx_iscsi_transport,
5255 e->u.ping.status,
5256 e->u.ping.pid,
5257 e->u.ping.data_size,
5258 e->u.ping.data);
5259 break;
Vikas Chaudharyff884432011-08-29 23:43:02 +05305260 default:
5261 ql4_printk(KERN_WARNING, ha, "event type: 0x%x not "
5262 "supported", e->type);
5263 }
5264 kfree(e);
5265 }
5266}
5267
David Somayajuluafaf5a22006-09-19 10:28:00 -07005268/**
5269 * qla4xxx_do_dpc - dpc routine
5270 * @data: in our case pointer to adapter structure
5271 *
5272 * This routine is a task that is schedule by the interrupt handler
5273 * to perform the background processing for interrupts. We put it
5274 * on a task queue that is consumed whenever the scheduler runs; that's
5275 * so you can do anything (i.e. put the process to sleep etc). In fact,
5276 * the mid-level tries to sleep when it reaches the driver threshold
5277 * "host->can_queue". This can cause a panic if we were in our interrupt code.
5278 **/
David Howellsc4028952006-11-22 14:57:56 +00005279static void qla4xxx_do_dpc(struct work_struct *work)
David Somayajuluafaf5a22006-09-19 10:28:00 -07005280{
David Howellsc4028952006-11-22 14:57:56 +00005281 struct scsi_qla_host *ha =
5282 container_of(work, struct scsi_qla_host, dpc_work);
David C Somayajulu477ffb92007-01-22 12:26:11 -08005283 int status = QLA_ERROR;
David Somayajuluafaf5a22006-09-19 10:28:00 -07005284
Vikas Chaudharya7e56882013-12-16 06:49:51 -05005285 DEBUG2(ql4_printk(KERN_INFO, ha,
5286 "scsi%ld: %s: DPC handler waking up. flags = 0x%08lx, dpc_flags = 0x%08lx\n",
5287 ha->host_no, __func__, ha->flags, ha->dpc_flags));
David Somayajuluafaf5a22006-09-19 10:28:00 -07005288
5289 /* Initialization not yet finished. Don't do anything yet. */
5290 if (!test_bit(AF_INIT_DONE, &ha->flags))
Lalit Chandivade1b468072011-05-17 23:17:09 -07005291 return;
David Somayajuluafaf5a22006-09-19 10:28:00 -07005292
Lalit Chandivade2232be02010-07-30 14:38:47 +05305293 if (test_bit(AF_EEH_BUSY, &ha->flags)) {
5294 DEBUG2(printk(KERN_INFO "scsi%ld: %s: flags = %lx\n",
5295 ha->host_no, __func__, ha->flags));
Lalit Chandivade1b468072011-05-17 23:17:09 -07005296 return;
Lalit Chandivade2232be02010-07-30 14:38:47 +05305297 }
5298
Vikas Chaudharyff884432011-08-29 23:43:02 +05305299 /* post events to application */
5300 qla4xxx_do_work(ha);
5301
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04005302 if (is_qla80XX(ha)) {
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305303 if (test_bit(DPC_HA_UNRECOVERABLE, &ha->dpc_flags)) {
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04005304 if (is_qla8032(ha) || is_qla8042(ha)) {
Tej Parkash546fef22012-09-20 07:35:12 -04005305 ql4_printk(KERN_INFO, ha, "%s: disabling pause transmit on port 0 & 1.\n",
5306 __func__);
5307 /* disable pause frame for ISP83xx */
5308 qla4_83xx_disable_pause(ha);
5309 }
5310
Vikas Chaudhary33693c72012-08-22 07:55:04 -04005311 ha->isp_ops->idc_lock(ha);
5312 qla4_8xxx_wr_direct(ha, QLA8XXX_CRB_DEV_STATE,
5313 QLA8XXX_DEV_FAILED);
5314 ha->isp_ops->idc_unlock(ha);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305315 ql4_printk(KERN_INFO, ha, "HW State: FAILED\n");
5316 qla4_8xxx_device_state_handler(ha);
5317 }
Nilesh Javali320a61d2012-09-20 07:35:10 -04005318
Nilesh Javali7ab284c2013-08-16 07:03:03 -04005319 if (test_bit(DPC_POST_IDC_ACK, &ha->dpc_flags)) {
5320 if (is_qla8042(ha)) {
5321 if (ha->idc_info.info2 &
5322 ENABLE_INTERNAL_LOOPBACK) {
5323 ql4_printk(KERN_INFO, ha, "%s: Disabling ACB\n",
5324 __func__);
5325 status = qla4_84xx_config_acb(ha,
5326 ACB_CONFIG_DISABLE);
5327 if (status != QLA_SUCCESS) {
5328 ql4_printk(KERN_INFO, ha, "%s: ACB config failed\n",
5329 __func__);
5330 }
5331 }
5332 }
Nilesh Javali320a61d2012-09-20 07:35:10 -04005333 qla4_83xx_post_idc_ack(ha);
Nilesh Javali7ab284c2013-08-16 07:03:03 -04005334 clear_bit(DPC_POST_IDC_ACK, &ha->dpc_flags);
5335 }
5336
5337 if (is_qla8042(ha) &&
5338 test_bit(DPC_RESTORE_ACB, &ha->dpc_flags)) {
5339 ql4_printk(KERN_INFO, ha, "%s: Restoring ACB\n",
5340 __func__);
5341 if (qla4_84xx_config_acb(ha, ACB_CONFIG_SET) !=
5342 QLA_SUCCESS) {
5343 ql4_printk(KERN_INFO, ha, "%s: ACB config failed ",
5344 __func__);
5345 }
5346 clear_bit(DPC_RESTORE_ACB, &ha->dpc_flags);
5347 }
Nilesh Javali320a61d2012-09-20 07:35:10 -04005348
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305349 if (test_and_clear_bit(DPC_HA_NEED_QUIESCENT, &ha->dpc_flags)) {
5350 qla4_8xxx_need_qsnt_handler(ha);
5351 }
5352 }
5353
5354 if (!test_bit(DPC_RESET_ACTIVE, &ha->dpc_flags) &&
5355 (test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
David Somayajuluafaf5a22006-09-19 10:28:00 -07005356 test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305357 test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags))) {
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04005358 if ((is_qla8022(ha) && ql4xdontresethba) ||
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04005359 ((is_qla8032(ha) || is_qla8042(ha)) &&
5360 qla4_83xx_idc_dontreset(ha))) {
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305361 DEBUG2(printk("scsi%ld: %s: Don't Reset HBA\n",
5362 ha->host_no, __func__));
5363 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
5364 clear_bit(DPC_RESET_HA_INTR, &ha->dpc_flags);
5365 clear_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags);
5366 goto dpc_post_reset_ha;
5367 }
5368 if (test_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags) ||
5369 test_bit(DPC_RESET_HA, &ha->dpc_flags))
5370 qla4xxx_recover_adapter(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07005371
David C Somayajulu477ffb92007-01-22 12:26:11 -08005372 if (test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07005373 uint8_t wait_time = RESET_INTR_TOV;
David Somayajuluafaf5a22006-09-19 10:28:00 -07005374
David Somayajuluafaf5a22006-09-19 10:28:00 -07005375 while ((readw(&ha->reg->ctrl_status) &
5376 (CSR_SOFT_RESET | CSR_FORCE_SOFT_RESET)) != 0) {
5377 if (--wait_time == 0)
5378 break;
David Somayajuluafaf5a22006-09-19 10:28:00 -07005379 msleep(1000);
David Somayajuluafaf5a22006-09-19 10:28:00 -07005380 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07005381 if (wait_time == 0)
5382 DEBUG2(printk("scsi%ld: %s: SR|FSR "
5383 "bit not cleared-- resetting\n",
5384 ha->host_no, __func__));
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305385 qla4xxx_abort_active_cmds(ha, DID_RESET << 16);
David C Somayajulu477ffb92007-01-22 12:26:11 -08005386 if (ql4xxx_lock_drvr_wait(ha) == QLA_SUCCESS) {
5387 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305388 status = qla4xxx_recover_adapter(ha);
David C Somayajulu477ffb92007-01-22 12:26:11 -08005389 }
5390 clear_bit(DPC_RESET_HA_INTR, &ha->dpc_flags);
5391 if (status == QLA_SUCCESS)
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305392 ha->isp_ops->enable_intrs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07005393 }
5394 }
5395
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305396dpc_post_reset_ha:
David Somayajuluafaf5a22006-09-19 10:28:00 -07005397 /* ---- process AEN? --- */
5398 if (test_and_clear_bit(DPC_AEN, &ha->dpc_flags))
5399 qla4xxx_process_aen(ha, PROCESS_ALL_AENS);
5400
5401 /* ---- Get DHCP IP Address? --- */
5402 if (test_and_clear_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags))
5403 qla4xxx_get_dhcp_ip_address(ha);
5404
Mike Christie13483732011-12-01 21:38:41 -06005405 /* ---- relogin device? --- */
5406 if (adapter_up(ha) &&
5407 test_and_clear_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags)) {
5408 iscsi_host_for_each_session(ha->host, qla4xxx_dpc_relogin);
5409 }
5410
Vikas Chaudhary065aa1b2010-04-28 11:38:11 +05305411 /* ---- link change? --- */
Nilesh Javali026fbd32013-01-20 23:50:58 -05005412 if (!test_bit(AF_LOOPBACK, &ha->flags) &&
5413 test_and_clear_bit(DPC_LINK_CHANGED, &ha->dpc_flags)) {
Vikas Chaudhary065aa1b2010-04-28 11:38:11 +05305414 if (!test_bit(AF_LINK_UP, &ha->flags)) {
5415 /* ---- link down? --- */
Vikas Chaudhary2d7924e2011-03-21 03:34:33 -07005416 qla4xxx_mark_all_devices_missing(ha);
Vikas Chaudhary065aa1b2010-04-28 11:38:11 +05305417 } else {
5418 /* ---- link up? --- *
5419 * F/W will auto login to all devices ONLY ONCE after
5420 * link up during driver initialization and runtime
5421 * fatal error recovery. Therefore, the driver must
5422 * manually relogin to devices when recovering from
5423 * connection failures, logouts, expired KATO, etc. */
Mike Christie13483732011-12-01 21:38:41 -06005424 if (test_and_clear_bit(AF_BUILD_DDB_LIST, &ha->flags)) {
5425 qla4xxx_build_ddb_list(ha, ha->is_reset);
5426 iscsi_host_for_each_session(ha->host,
5427 qla4xxx_login_flash_ddb);
5428 } else
5429 qla4xxx_relogin_all_devices(ha);
Vikas Chaudhary065aa1b2010-04-28 11:38:11 +05305430 }
5431 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07005432}
5433
5434/**
5435 * qla4xxx_free_adapter - release the adapter
5436 * @ha: pointer to adapter structure
5437 **/
5438static void qla4xxx_free_adapter(struct scsi_qla_host *ha)
5439{
Sarang Radke8a288962011-12-06 02:34:10 -08005440 qla4xxx_abort_active_cmds(ha, DID_NO_CONNECT << 16);
David Somayajuluafaf5a22006-09-19 10:28:00 -07005441
Vikas Chaudhary5c19b922012-11-23 06:58:38 -05005442 /* Turn-off interrupts on the card. */
5443 ha->isp_ops->disable_intrs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07005444
Vikas Chaudharyd9e62e52012-08-22 07:45:25 -04005445 if (is_qla40XX(ha)) {
5446 writel(set_rmask(CSR_SCSI_PROCESSOR_INTR),
5447 &ha->reg->ctrl_status);
5448 readl(&ha->reg->ctrl_status);
5449 } else if (is_qla8022(ha)) {
Vikas Chaudhary7664a1f2012-08-22 07:55:00 -04005450 writel(0, &ha->qla4_82xx_reg->host_int);
5451 readl(&ha->qla4_82xx_reg->host_int);
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04005452 } else if (is_qla8032(ha) || is_qla8042(ha)) {
Vikas Chaudharyfbd81072012-09-20 07:35:03 -04005453 writel(0, &ha->qla4_83xx_reg->risc_intr);
5454 readl(&ha->qla4_83xx_reg->risc_intr);
Vikas Chaudharyd9e62e52012-08-22 07:45:25 -04005455 }
5456
David Somayajuluafaf5a22006-09-19 10:28:00 -07005457 /* Remove timer thread, if present */
5458 if (ha->timer_active)
5459 qla4xxx_stop_timer(ha);
5460
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305461 /* Kill the kernel thread for this host */
5462 if (ha->dpc_thread)
5463 destroy_workqueue(ha->dpc_thread);
5464
Manish Rangankarb3a271a2011-07-25 13:48:53 -05005465 /* Kill the kernel thread for this host */
5466 if (ha->task_wq)
5467 destroy_workqueue(ha->task_wq);
5468
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305469 /* Put firmware in known state */
5470 ha->isp_ops->reset_firmware(ha);
5471
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04005472 if (is_qla80XX(ha)) {
Vikas Chaudhary33693c72012-08-22 07:55:04 -04005473 ha->isp_ops->idc_lock(ha);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305474 qla4_8xxx_clear_drv_active(ha);
Vikas Chaudhary33693c72012-08-22 07:55:04 -04005475 ha->isp_ops->idc_unlock(ha);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305476 }
5477
David Somayajuluafaf5a22006-09-19 10:28:00 -07005478 /* Detach interrupts */
Vikas Chaudhary5c19b922012-11-23 06:58:38 -05005479 qla4xxx_free_irqs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07005480
David C Somayajulubee4fe82007-05-23 18:03:32 -07005481 /* free extra memory */
5482 qla4xxx_mem_free(ha);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305483}
David C Somayajulubee4fe82007-05-23 18:03:32 -07005484
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305485int qla4_8xxx_iospace_config(struct scsi_qla_host *ha)
5486{
5487 int status = 0;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305488 unsigned long mem_base, mem_len, db_base, db_len;
5489 struct pci_dev *pdev = ha->pdev;
David Somayajuluafaf5a22006-09-19 10:28:00 -07005490
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305491 status = pci_request_regions(pdev, DRIVER_NAME);
5492 if (status) {
5493 printk(KERN_WARNING
5494 "scsi(%ld) Failed to reserve PIO regions (%s) "
5495 "status=%d\n", ha->host_no, pci_name(pdev), status);
5496 goto iospace_error_exit;
5497 }
5498
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305499 DEBUG2(printk(KERN_INFO "%s: revision-id=%d\n",
Sergei Shtylyov7d7311c2012-03-14 22:04:30 +03005500 __func__, pdev->revision));
5501 ha->revision_id = pdev->revision;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305502
5503 /* remap phys address */
5504 mem_base = pci_resource_start(pdev, 0); /* 0 is for BAR 0 */
5505 mem_len = pci_resource_len(pdev, 0);
5506 DEBUG2(printk(KERN_INFO "%s: ioremap from %lx a size of %lx\n",
5507 __func__, mem_base, mem_len));
5508
5509 /* mapping of pcibase pointer */
5510 ha->nx_pcibase = (unsigned long)ioremap(mem_base, mem_len);
5511 if (!ha->nx_pcibase) {
5512 printk(KERN_ERR
5513 "cannot remap MMIO (%s), aborting\n", pci_name(pdev));
5514 pci_release_regions(ha->pdev);
5515 goto iospace_error_exit;
5516 }
5517
5518 /* Mapping of IO base pointer, door bell read and write pointer */
5519
5520 /* mapping of IO base pointer */
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04005521 if (is_qla8022(ha)) {
5522 ha->qla4_82xx_reg = (struct device_reg_82xx __iomem *)
5523 ((uint8_t *)ha->nx_pcibase + 0xbc000 +
5524 (ha->pdev->devfn << 11));
5525 ha->nx_db_wr_ptr = (ha->pdev->devfn == 4 ? QLA82XX_CAM_RAM_DB1 :
5526 QLA82XX_CAM_RAM_DB2);
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04005527 } else if (is_qla8032(ha) || is_qla8042(ha)) {
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04005528 ha->qla4_83xx_reg = (struct device_reg_83xx __iomem *)
5529 ((uint8_t *)ha->nx_pcibase);
5530 }
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305531
5532 db_base = pci_resource_start(pdev, 4); /* doorbell is on bar 4 */
5533 db_len = pci_resource_len(pdev, 4);
5534
Shyam Sundar2657c802010-10-06 22:50:29 -07005535 return 0;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305536iospace_error_exit:
5537 return -ENOMEM;
David Somayajuluafaf5a22006-09-19 10:28:00 -07005538}
5539
5540/***
5541 * qla4xxx_iospace_config - maps registers
5542 * @ha: pointer to adapter structure
5543 *
5544 * This routines maps HBA's registers from the pci address space
5545 * into the kernel virtual address space for memory mapped i/o.
5546 **/
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305547int qla4xxx_iospace_config(struct scsi_qla_host *ha)
David Somayajuluafaf5a22006-09-19 10:28:00 -07005548{
5549 unsigned long pio, pio_len, pio_flags;
5550 unsigned long mmio, mmio_len, mmio_flags;
5551
5552 pio = pci_resource_start(ha->pdev, 0);
5553 pio_len = pci_resource_len(ha->pdev, 0);
5554 pio_flags = pci_resource_flags(ha->pdev, 0);
5555 if (pio_flags & IORESOURCE_IO) {
5556 if (pio_len < MIN_IOBASE_LEN) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05305557 ql4_printk(KERN_WARNING, ha,
David Somayajuluafaf5a22006-09-19 10:28:00 -07005558 "Invalid PCI I/O region size\n");
5559 pio = 0;
5560 }
5561 } else {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05305562 ql4_printk(KERN_WARNING, ha, "region #0 not a PIO resource\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07005563 pio = 0;
5564 }
5565
5566 /* Use MMIO operations for all accesses. */
5567 mmio = pci_resource_start(ha->pdev, 1);
5568 mmio_len = pci_resource_len(ha->pdev, 1);
5569 mmio_flags = pci_resource_flags(ha->pdev, 1);
5570
5571 if (!(mmio_flags & IORESOURCE_MEM)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05305572 ql4_printk(KERN_ERR, ha,
5573 "region #0 not an MMIO resource, aborting\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07005574
5575 goto iospace_error_exit;
5576 }
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05305577
David Somayajuluafaf5a22006-09-19 10:28:00 -07005578 if (mmio_len < MIN_IOBASE_LEN) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05305579 ql4_printk(KERN_ERR, ha,
5580 "Invalid PCI mem region size, aborting\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07005581 goto iospace_error_exit;
5582 }
5583
5584 if (pci_request_regions(ha->pdev, DRIVER_NAME)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05305585 ql4_printk(KERN_WARNING, ha,
5586 "Failed to reserve PIO/MMIO regions\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07005587
5588 goto iospace_error_exit;
5589 }
5590
5591 ha->pio_address = pio;
5592 ha->pio_length = pio_len;
5593 ha->reg = ioremap(mmio, MIN_IOBASE_LEN);
5594 if (!ha->reg) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05305595 ql4_printk(KERN_ERR, ha,
5596 "cannot remap MMIO, aborting\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07005597
5598 goto iospace_error_exit;
5599 }
5600
5601 return 0;
5602
5603iospace_error_exit:
5604 return -ENOMEM;
5605}
5606
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305607static struct isp_operations qla4xxx_isp_ops = {
5608 .iospace_config = qla4xxx_iospace_config,
5609 .pci_config = qla4xxx_pci_config,
5610 .disable_intrs = qla4xxx_disable_intrs,
5611 .enable_intrs = qla4xxx_enable_intrs,
5612 .start_firmware = qla4xxx_start_firmware,
5613 .intr_handler = qla4xxx_intr_handler,
5614 .interrupt_service_routine = qla4xxx_interrupt_service_routine,
5615 .reset_chip = qla4xxx_soft_reset,
5616 .reset_firmware = qla4xxx_hw_reset,
5617 .queue_iocb = qla4xxx_queue_iocb,
5618 .complete_iocb = qla4xxx_complete_iocb,
5619 .rd_shdw_req_q_out = qla4xxx_rd_shdw_req_q_out,
5620 .rd_shdw_rsp_q_in = qla4xxx_rd_shdw_rsp_q_in,
5621 .get_sys_info = qla4xxx_get_sys_info,
Vikas Chaudhary33693c72012-08-22 07:55:04 -04005622 .queue_mailbox_command = qla4xxx_queue_mbox_cmd,
5623 .process_mailbox_interrupt = qla4xxx_process_mbox_intr,
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305624};
5625
Vikas Chaudhary7664a1f2012-08-22 07:55:00 -04005626static struct isp_operations qla4_82xx_isp_ops = {
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305627 .iospace_config = qla4_8xxx_iospace_config,
5628 .pci_config = qla4_8xxx_pci_config,
Vikas Chaudharyf8086f42012-08-22 07:54:59 -04005629 .disable_intrs = qla4_82xx_disable_intrs,
5630 .enable_intrs = qla4_82xx_enable_intrs,
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305631 .start_firmware = qla4_8xxx_load_risc,
Vikas Chaudhary33693c72012-08-22 07:55:04 -04005632 .restart_firmware = qla4_82xx_try_start_fw,
Vikas Chaudharyf8086f42012-08-22 07:54:59 -04005633 .intr_handler = qla4_82xx_intr_handler,
5634 .interrupt_service_routine = qla4_82xx_interrupt_service_routine,
Vikas Chaudhary33693c72012-08-22 07:55:04 -04005635 .need_reset = qla4_8xxx_need_reset,
Vikas Chaudharyf8086f42012-08-22 07:54:59 -04005636 .reset_chip = qla4_82xx_isp_reset,
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305637 .reset_firmware = qla4_8xxx_stop_firmware,
Vikas Chaudharyf8086f42012-08-22 07:54:59 -04005638 .queue_iocb = qla4_82xx_queue_iocb,
5639 .complete_iocb = qla4_82xx_complete_iocb,
5640 .rd_shdw_req_q_out = qla4_82xx_rd_shdw_req_q_out,
5641 .rd_shdw_rsp_q_in = qla4_82xx_rd_shdw_rsp_q_in,
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305642 .get_sys_info = qla4_8xxx_get_sys_info,
Vikas Chaudhary33693c72012-08-22 07:55:04 -04005643 .rd_reg_direct = qla4_82xx_rd_32,
5644 .wr_reg_direct = qla4_82xx_wr_32,
5645 .rd_reg_indirect = qla4_82xx_md_rd_32,
5646 .wr_reg_indirect = qla4_82xx_md_wr_32,
5647 .idc_lock = qla4_82xx_idc_lock,
5648 .idc_unlock = qla4_82xx_idc_unlock,
5649 .rom_lock_recovery = qla4_82xx_rom_lock_recovery,
5650 .queue_mailbox_command = qla4_82xx_queue_mbox_cmd,
5651 .process_mailbox_interrupt = qla4_82xx_process_mbox_intr,
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305652};
5653
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04005654static struct isp_operations qla4_83xx_isp_ops = {
5655 .iospace_config = qla4_8xxx_iospace_config,
5656 .pci_config = qla4_8xxx_pci_config,
5657 .disable_intrs = qla4_83xx_disable_intrs,
5658 .enable_intrs = qla4_83xx_enable_intrs,
5659 .start_firmware = qla4_8xxx_load_risc,
5660 .restart_firmware = qla4_83xx_start_firmware,
5661 .intr_handler = qla4_83xx_intr_handler,
5662 .interrupt_service_routine = qla4_83xx_interrupt_service_routine,
5663 .need_reset = qla4_8xxx_need_reset,
5664 .reset_chip = qla4_83xx_isp_reset,
5665 .reset_firmware = qla4_8xxx_stop_firmware,
5666 .queue_iocb = qla4_83xx_queue_iocb,
5667 .complete_iocb = qla4_83xx_complete_iocb,
Tej Parkasha24058f92013-03-07 05:43:13 -05005668 .rd_shdw_req_q_out = qla4xxx_rd_shdw_req_q_out,
5669 .rd_shdw_rsp_q_in = qla4xxx_rd_shdw_rsp_q_in,
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04005670 .get_sys_info = qla4_8xxx_get_sys_info,
5671 .rd_reg_direct = qla4_83xx_rd_reg,
5672 .wr_reg_direct = qla4_83xx_wr_reg,
5673 .rd_reg_indirect = qla4_83xx_rd_reg_indirect,
5674 .wr_reg_indirect = qla4_83xx_wr_reg_indirect,
5675 .idc_lock = qla4_83xx_drv_lock,
5676 .idc_unlock = qla4_83xx_drv_unlock,
5677 .rom_lock_recovery = qla4_83xx_rom_lock_recovery,
5678 .queue_mailbox_command = qla4_83xx_queue_mbox_cmd,
5679 .process_mailbox_interrupt = qla4_83xx_process_mbox_intr,
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305680};
5681
5682uint16_t qla4xxx_rd_shdw_req_q_out(struct scsi_qla_host *ha)
5683{
5684 return (uint16_t)le32_to_cpu(ha->shadow_regs->req_q_out);
5685}
5686
Vikas Chaudharyf8086f42012-08-22 07:54:59 -04005687uint16_t qla4_82xx_rd_shdw_req_q_out(struct scsi_qla_host *ha)
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305688{
Vikas Chaudhary7664a1f2012-08-22 07:55:00 -04005689 return (uint16_t)le32_to_cpu(readl(&ha->qla4_82xx_reg->req_q_out));
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305690}
5691
5692uint16_t qla4xxx_rd_shdw_rsp_q_in(struct scsi_qla_host *ha)
5693{
5694 return (uint16_t)le32_to_cpu(ha->shadow_regs->rsp_q_in);
5695}
5696
Vikas Chaudharyf8086f42012-08-22 07:54:59 -04005697uint16_t qla4_82xx_rd_shdw_rsp_q_in(struct scsi_qla_host *ha)
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305698{
Vikas Chaudhary7664a1f2012-08-22 07:55:00 -04005699 return (uint16_t)le32_to_cpu(readl(&ha->qla4_82xx_reg->rsp_q_in));
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05305700}
5701
Manish Rangankar2a991c22011-07-25 13:48:55 -05005702static ssize_t qla4xxx_show_boot_eth_info(void *data, int type, char *buf)
5703{
5704 struct scsi_qla_host *ha = data;
5705 char *str = buf;
5706 int rc;
5707
5708 switch (type) {
5709 case ISCSI_BOOT_ETH_FLAGS:
5710 rc = sprintf(str, "%d\n", SYSFS_FLAG_FW_SEL_BOOT);
5711 break;
5712 case ISCSI_BOOT_ETH_INDEX:
5713 rc = sprintf(str, "0\n");
5714 break;
5715 case ISCSI_BOOT_ETH_MAC:
5716 rc = sysfs_format_mac(str, ha->my_mac,
5717 MAC_ADDR_LEN);
5718 break;
5719 default:
5720 rc = -ENOSYS;
5721 break;
5722 }
5723 return rc;
5724}
5725
Al Viro587a1f12011-07-23 23:11:19 -04005726static umode_t qla4xxx_eth_get_attr_visibility(void *data, int type)
Manish Rangankar2a991c22011-07-25 13:48:55 -05005727{
5728 int rc;
5729
5730 switch (type) {
5731 case ISCSI_BOOT_ETH_FLAGS:
5732 case ISCSI_BOOT_ETH_MAC:
5733 case ISCSI_BOOT_ETH_INDEX:
5734 rc = S_IRUGO;
5735 break;
5736 default:
5737 rc = 0;
5738 break;
5739 }
5740 return rc;
5741}
5742
5743static ssize_t qla4xxx_show_boot_ini_info(void *data, int type, char *buf)
5744{
5745 struct scsi_qla_host *ha = data;
5746 char *str = buf;
5747 int rc;
5748
5749 switch (type) {
5750 case ISCSI_BOOT_INI_INITIATOR_NAME:
5751 rc = sprintf(str, "%s\n", ha->name_string);
5752 break;
5753 default:
5754 rc = -ENOSYS;
5755 break;
5756 }
5757 return rc;
5758}
5759
Al Viro587a1f12011-07-23 23:11:19 -04005760static umode_t qla4xxx_ini_get_attr_visibility(void *data, int type)
Manish Rangankar2a991c22011-07-25 13:48:55 -05005761{
5762 int rc;
5763
5764 switch (type) {
5765 case ISCSI_BOOT_INI_INITIATOR_NAME:
5766 rc = S_IRUGO;
5767 break;
5768 default:
5769 rc = 0;
5770 break;
5771 }
5772 return rc;
5773}
5774
5775static ssize_t
5776qla4xxx_show_boot_tgt_info(struct ql4_boot_session_info *boot_sess, int type,
5777 char *buf)
5778{
5779 struct ql4_conn_info *boot_conn = &boot_sess->conn_list[0];
5780 char *str = buf;
5781 int rc;
5782
5783 switch (type) {
5784 case ISCSI_BOOT_TGT_NAME:
5785 rc = sprintf(buf, "%s\n", (char *)&boot_sess->target_name);
5786 break;
5787 case ISCSI_BOOT_TGT_IP_ADDR:
5788 if (boot_sess->conn_list[0].dest_ipaddr.ip_type == 0x1)
5789 rc = sprintf(buf, "%pI4\n",
5790 &boot_conn->dest_ipaddr.ip_address);
5791 else
5792 rc = sprintf(str, "%pI6\n",
5793 &boot_conn->dest_ipaddr.ip_address);
5794 break;
5795 case ISCSI_BOOT_TGT_PORT:
5796 rc = sprintf(str, "%d\n", boot_conn->dest_port);
5797 break;
5798 case ISCSI_BOOT_TGT_CHAP_NAME:
5799 rc = sprintf(str, "%.*s\n",
5800 boot_conn->chap.target_chap_name_length,
5801 (char *)&boot_conn->chap.target_chap_name);
5802 break;
5803 case ISCSI_BOOT_TGT_CHAP_SECRET:
5804 rc = sprintf(str, "%.*s\n",
5805 boot_conn->chap.target_secret_length,
5806 (char *)&boot_conn->chap.target_secret);
5807 break;
5808 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
5809 rc = sprintf(str, "%.*s\n",
5810 boot_conn->chap.intr_chap_name_length,
5811 (char *)&boot_conn->chap.intr_chap_name);
5812 break;
5813 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
5814 rc = sprintf(str, "%.*s\n",
5815 boot_conn->chap.intr_secret_length,
5816 (char *)&boot_conn->chap.intr_secret);
5817 break;
5818 case ISCSI_BOOT_TGT_FLAGS:
5819 rc = sprintf(str, "%d\n", SYSFS_FLAG_FW_SEL_BOOT);
5820 break;
5821 case ISCSI_BOOT_TGT_NIC_ASSOC:
5822 rc = sprintf(str, "0\n");
5823 break;
5824 default:
5825 rc = -ENOSYS;
5826 break;
5827 }
5828 return rc;
5829}
5830
5831static ssize_t qla4xxx_show_boot_tgt_pri_info(void *data, int type, char *buf)
5832{
5833 struct scsi_qla_host *ha = data;
5834 struct ql4_boot_session_info *boot_sess = &(ha->boot_tgt.boot_pri_sess);
5835
5836 return qla4xxx_show_boot_tgt_info(boot_sess, type, buf);
5837}
5838
5839static ssize_t qla4xxx_show_boot_tgt_sec_info(void *data, int type, char *buf)
5840{
5841 struct scsi_qla_host *ha = data;
5842 struct ql4_boot_session_info *boot_sess = &(ha->boot_tgt.boot_sec_sess);
5843
5844 return qla4xxx_show_boot_tgt_info(boot_sess, type, buf);
5845}
5846
Al Viro587a1f12011-07-23 23:11:19 -04005847static umode_t qla4xxx_tgt_get_attr_visibility(void *data, int type)
Manish Rangankar2a991c22011-07-25 13:48:55 -05005848{
5849 int rc;
5850
5851 switch (type) {
5852 case ISCSI_BOOT_TGT_NAME:
5853 case ISCSI_BOOT_TGT_IP_ADDR:
5854 case ISCSI_BOOT_TGT_PORT:
5855 case ISCSI_BOOT_TGT_CHAP_NAME:
5856 case ISCSI_BOOT_TGT_CHAP_SECRET:
5857 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
5858 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
5859 case ISCSI_BOOT_TGT_NIC_ASSOC:
5860 case ISCSI_BOOT_TGT_FLAGS:
5861 rc = S_IRUGO;
5862 break;
5863 default:
5864 rc = 0;
5865 break;
5866 }
5867 return rc;
5868}
5869
5870static void qla4xxx_boot_release(void *data)
5871{
5872 struct scsi_qla_host *ha = data;
5873
5874 scsi_host_put(ha->host);
5875}
5876
5877static int get_fw_boot_info(struct scsi_qla_host *ha, uint16_t ddb_index[])
5878{
5879 dma_addr_t buf_dma;
5880 uint32_t addr, pri_addr, sec_addr;
5881 uint32_t offset;
5882 uint16_t func_num;
5883 uint8_t val;
5884 uint8_t *buf = NULL;
5885 size_t size = 13 * sizeof(uint8_t);
5886 int ret = QLA_SUCCESS;
5887
5888 func_num = PCI_FUNC(ha->pdev->devfn);
5889
Manish Rangankar0d5b36b2011-10-07 16:55:51 -07005890 ql4_printk(KERN_INFO, ha, "%s: Get FW boot info for 0x%x func %d\n",
5891 __func__, ha->pdev->device, func_num);
Manish Rangankar2a991c22011-07-25 13:48:55 -05005892
Manish Rangankar0d5b36b2011-10-07 16:55:51 -07005893 if (is_qla40XX(ha)) {
Manish Rangankar2a991c22011-07-25 13:48:55 -05005894 if (func_num == 1) {
5895 addr = NVRAM_PORT0_BOOT_MODE;
5896 pri_addr = NVRAM_PORT0_BOOT_PRI_TGT;
5897 sec_addr = NVRAM_PORT0_BOOT_SEC_TGT;
5898 } else if (func_num == 3) {
5899 addr = NVRAM_PORT1_BOOT_MODE;
5900 pri_addr = NVRAM_PORT1_BOOT_PRI_TGT;
5901 sec_addr = NVRAM_PORT1_BOOT_SEC_TGT;
5902 } else {
5903 ret = QLA_ERROR;
5904 goto exit_boot_info;
5905 }
5906
5907 /* Check Boot Mode */
5908 val = rd_nvram_byte(ha, addr);
5909 if (!(val & 0x07)) {
Manish Rangankare8fb00e2012-02-13 18:30:43 +05305910 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Adapter boot "
5911 "options : 0x%x\n", __func__, val));
Manish Rangankar2a991c22011-07-25 13:48:55 -05005912 ret = QLA_ERROR;
5913 goto exit_boot_info;
5914 }
5915
5916 /* get primary valid target index */
5917 val = rd_nvram_byte(ha, pri_addr);
5918 if (val & BIT_7)
5919 ddb_index[0] = (val & 0x7f);
Manish Rangankar2a991c22011-07-25 13:48:55 -05005920
5921 /* get secondary valid target index */
5922 val = rd_nvram_byte(ha, sec_addr);
5923 if (val & BIT_7)
5924 ddb_index[1] = (val & 0x7f);
Manish Rangankar2a991c22011-07-25 13:48:55 -05005925
Vikas Chaudhary3e788fb2013-03-07 05:43:08 -05005926 } else if (is_qla80XX(ha)) {
Manish Rangankar2a991c22011-07-25 13:48:55 -05005927 buf = dma_alloc_coherent(&ha->pdev->dev, size,
5928 &buf_dma, GFP_KERNEL);
5929 if (!buf) {
5930 DEBUG2(ql4_printk(KERN_ERR, ha,
5931 "%s: Unable to allocate dma buffer\n",
5932 __func__));
5933 ret = QLA_ERROR;
5934 goto exit_boot_info;
5935 }
5936
5937 if (ha->port_num == 0)
5938 offset = BOOT_PARAM_OFFSET_PORT0;
5939 else if (ha->port_num == 1)
5940 offset = BOOT_PARAM_OFFSET_PORT1;
5941 else {
5942 ret = QLA_ERROR;
5943 goto exit_boot_info_free;
5944 }
5945 addr = FLASH_RAW_ACCESS_ADDR + (ha->hw.flt_iscsi_param * 4) +
5946 offset;
5947 if (qla4xxx_get_flash(ha, buf_dma, addr,
5948 13 * sizeof(uint8_t)) != QLA_SUCCESS) {
5949 DEBUG2(ql4_printk(KERN_ERR, ha, "scsi%ld: %s: Get Flash"
Petr Uzel0bd7f842012-02-24 16:32:59 +01005950 " failed\n", ha->host_no, __func__));
Manish Rangankar2a991c22011-07-25 13:48:55 -05005951 ret = QLA_ERROR;
5952 goto exit_boot_info_free;
5953 }
5954 /* Check Boot Mode */
5955 if (!(buf[1] & 0x07)) {
Manish Rangankare8fb00e2012-02-13 18:30:43 +05305956 DEBUG2(ql4_printk(KERN_INFO, ha, "Firmware boot options"
5957 " : 0x%x\n", buf[1]));
Manish Rangankar2a991c22011-07-25 13:48:55 -05005958 ret = QLA_ERROR;
5959 goto exit_boot_info_free;
5960 }
5961
5962 /* get primary valid target index */
5963 if (buf[2] & BIT_7)
5964 ddb_index[0] = buf[2] & 0x7f;
Manish Rangankar2a991c22011-07-25 13:48:55 -05005965
5966 /* get secondary valid target index */
5967 if (buf[11] & BIT_7)
5968 ddb_index[1] = buf[11] & 0x7f;
Manish Rangankar2a991c22011-07-25 13:48:55 -05005969 } else {
5970 ret = QLA_ERROR;
5971 goto exit_boot_info;
5972 }
5973
5974 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Primary target ID %d, Secondary"
5975 " target ID %d\n", __func__, ddb_index[0],
5976 ddb_index[1]));
5977
5978exit_boot_info_free:
5979 dma_free_coherent(&ha->pdev->dev, size, buf, buf_dma);
5980exit_boot_info:
Lalit Chandivade20e835b2012-02-13 18:30:42 +05305981 ha->pri_ddb_idx = ddb_index[0];
5982 ha->sec_ddb_idx = ddb_index[1];
Manish Rangankar2a991c22011-07-25 13:48:55 -05005983 return ret;
5984}
5985
Lalit Chandivade28deb452011-10-07 16:55:44 -07005986/**
5987 * qla4xxx_get_bidi_chap - Get a BIDI CHAP user and password
5988 * @ha: pointer to adapter structure
5989 * @username: CHAP username to be returned
5990 * @password: CHAP password to be returned
5991 *
5992 * If a boot entry has BIDI CHAP enabled then we need to set the BIDI CHAP
5993 * user and password in the sysfs entry in /sys/firmware/iscsi_boot#/.
5994 * So from the CHAP cache find the first BIDI CHAP entry and set it
5995 * to the boot record in sysfs.
5996 **/
5997static int qla4xxx_get_bidi_chap(struct scsi_qla_host *ha, char *username,
5998 char *password)
5999{
6000 int i, ret = -EINVAL;
6001 int max_chap_entries = 0;
6002 struct ql4_chap_table *chap_table;
6003
Vikas Chaudharyd11b0ca2013-03-22 07:08:31 -04006004 if (is_qla80XX(ha))
Lalit Chandivade28deb452011-10-07 16:55:44 -07006005 max_chap_entries = (ha->hw.flt_chap_size / 2) /
6006 sizeof(struct ql4_chap_table);
6007 else
6008 max_chap_entries = MAX_CHAP_ENTRIES_40XX;
6009
6010 if (!ha->chap_list) {
6011 ql4_printk(KERN_ERR, ha, "Do not have CHAP table cache\n");
6012 return ret;
6013 }
6014
6015 mutex_lock(&ha->chap_sem);
6016 for (i = 0; i < max_chap_entries; i++) {
6017 chap_table = (struct ql4_chap_table *)ha->chap_list + i;
6018 if (chap_table->cookie !=
6019 __constant_cpu_to_le16(CHAP_VALID_COOKIE)) {
6020 continue;
6021 }
6022
6023 if (chap_table->flags & BIT_7) /* local */
6024 continue;
6025
6026 if (!(chap_table->flags & BIT_6)) /* Not BIDI */
6027 continue;
6028
6029 strncpy(password, chap_table->secret, QL4_CHAP_MAX_SECRET_LEN);
6030 strncpy(username, chap_table->name, QL4_CHAP_MAX_NAME_LEN);
6031 ret = 0;
6032 break;
6033 }
6034 mutex_unlock(&ha->chap_sem);
6035
6036 return ret;
6037}
6038
6039
Manish Rangankar2a991c22011-07-25 13:48:55 -05006040static int qla4xxx_get_boot_target(struct scsi_qla_host *ha,
6041 struct ql4_boot_session_info *boot_sess,
6042 uint16_t ddb_index)
6043{
6044 struct ql4_conn_info *boot_conn = &boot_sess->conn_list[0];
6045 struct dev_db_entry *fw_ddb_entry;
6046 dma_addr_t fw_ddb_entry_dma;
6047 uint16_t idx;
6048 uint16_t options;
6049 int ret = QLA_SUCCESS;
6050
6051 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
6052 &fw_ddb_entry_dma, GFP_KERNEL);
6053 if (!fw_ddb_entry) {
6054 DEBUG2(ql4_printk(KERN_ERR, ha,
6055 "%s: Unable to allocate dma buffer.\n",
6056 __func__));
6057 ret = QLA_ERROR;
6058 return ret;
6059 }
6060
6061 if (qla4xxx_bootdb_by_index(ha, fw_ddb_entry,
6062 fw_ddb_entry_dma, ddb_index)) {
Manish Rangankare8fb00e2012-02-13 18:30:43 +05306063 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: No Flash DDB found at "
6064 "index [%d]\n", __func__, ddb_index));
Manish Rangankar2a991c22011-07-25 13:48:55 -05006065 ret = QLA_ERROR;
6066 goto exit_boot_target;
6067 }
6068
6069 /* Update target name and IP from DDB */
6070 memcpy(boot_sess->target_name, fw_ddb_entry->iscsi_name,
6071 min(sizeof(boot_sess->target_name),
6072 sizeof(fw_ddb_entry->iscsi_name)));
6073
6074 options = le16_to_cpu(fw_ddb_entry->options);
6075 if (options & DDB_OPT_IPV6_DEVICE) {
6076 memcpy(&boot_conn->dest_ipaddr.ip_address,
6077 &fw_ddb_entry->ip_addr[0], IPv6_ADDR_LEN);
6078 } else {
6079 boot_conn->dest_ipaddr.ip_type = 0x1;
6080 memcpy(&boot_conn->dest_ipaddr.ip_address,
6081 &fw_ddb_entry->ip_addr[0], IP_ADDR_LEN);
6082 }
6083
6084 boot_conn->dest_port = le16_to_cpu(fw_ddb_entry->port);
6085
6086 /* update chap information */
6087 idx = __le16_to_cpu(fw_ddb_entry->chap_tbl_idx);
6088
6089 if (BIT_7 & le16_to_cpu(fw_ddb_entry->iscsi_options)) {
6090
6091 DEBUG2(ql4_printk(KERN_INFO, ha, "Setting chap\n"));
6092
6093 ret = qla4xxx_get_chap(ha, (char *)&boot_conn->chap.
6094 target_chap_name,
6095 (char *)&boot_conn->chap.target_secret,
6096 idx);
6097 if (ret) {
6098 ql4_printk(KERN_ERR, ha, "Failed to set chap\n");
6099 ret = QLA_ERROR;
6100 goto exit_boot_target;
6101 }
6102
6103 boot_conn->chap.target_chap_name_length = QL4_CHAP_MAX_NAME_LEN;
6104 boot_conn->chap.target_secret_length = QL4_CHAP_MAX_SECRET_LEN;
6105 }
6106
6107 if (BIT_4 & le16_to_cpu(fw_ddb_entry->iscsi_options)) {
6108
6109 DEBUG2(ql4_printk(KERN_INFO, ha, "Setting BIDI chap\n"));
6110
Lalit Chandivade28deb452011-10-07 16:55:44 -07006111 ret = qla4xxx_get_bidi_chap(ha,
6112 (char *)&boot_conn->chap.intr_chap_name,
6113 (char *)&boot_conn->chap.intr_secret);
6114
Manish Rangankar2a991c22011-07-25 13:48:55 -05006115 if (ret) {
6116 ql4_printk(KERN_ERR, ha, "Failed to set BIDI chap\n");
6117 ret = QLA_ERROR;
6118 goto exit_boot_target;
6119 }
6120
6121 boot_conn->chap.intr_chap_name_length = QL4_CHAP_MAX_NAME_LEN;
6122 boot_conn->chap.intr_secret_length = QL4_CHAP_MAX_SECRET_LEN;
6123 }
6124
6125exit_boot_target:
6126 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
6127 fw_ddb_entry, fw_ddb_entry_dma);
6128 return ret;
6129}
6130
6131static int qla4xxx_get_boot_info(struct scsi_qla_host *ha)
6132{
6133 uint16_t ddb_index[2];
Lalit Chandivade8de5b952011-10-07 16:55:43 -07006134 int ret = QLA_ERROR;
6135 int rval;
Manish Rangankar2a991c22011-07-25 13:48:55 -05006136
6137 memset(ddb_index, 0, sizeof(ddb_index));
Lalit Chandivade8de5b952011-10-07 16:55:43 -07006138 ddb_index[0] = 0xffff;
6139 ddb_index[1] = 0xffff;
Manish Rangankar2a991c22011-07-25 13:48:55 -05006140 ret = get_fw_boot_info(ha, ddb_index);
6141 if (ret != QLA_SUCCESS) {
Manish Rangankare8fb00e2012-02-13 18:30:43 +05306142 DEBUG2(ql4_printk(KERN_INFO, ha,
6143 "%s: No boot target configured.\n", __func__));
Manish Rangankar2a991c22011-07-25 13:48:55 -05006144 return ret;
6145 }
6146
Mike Christie13483732011-12-01 21:38:41 -06006147 if (ql4xdisablesysfsboot)
6148 return QLA_SUCCESS;
6149
Lalit Chandivade8de5b952011-10-07 16:55:43 -07006150 if (ddb_index[0] == 0xffff)
6151 goto sec_target;
6152
6153 rval = qla4xxx_get_boot_target(ha, &(ha->boot_tgt.boot_pri_sess),
Manish Rangankar2a991c22011-07-25 13:48:55 -05006154 ddb_index[0]);
Lalit Chandivade8de5b952011-10-07 16:55:43 -07006155 if (rval != QLA_SUCCESS) {
Manish Rangankare8fb00e2012-02-13 18:30:43 +05306156 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Primary boot target not "
6157 "configured\n", __func__));
Lalit Chandivade8de5b952011-10-07 16:55:43 -07006158 } else
6159 ret = QLA_SUCCESS;
Manish Rangankar2a991c22011-07-25 13:48:55 -05006160
Lalit Chandivade8de5b952011-10-07 16:55:43 -07006161sec_target:
6162 if (ddb_index[1] == 0xffff)
6163 goto exit_get_boot_info;
6164
6165 rval = qla4xxx_get_boot_target(ha, &(ha->boot_tgt.boot_sec_sess),
Manish Rangankar2a991c22011-07-25 13:48:55 -05006166 ddb_index[1]);
Lalit Chandivade8de5b952011-10-07 16:55:43 -07006167 if (rval != QLA_SUCCESS) {
Manish Rangankare8fb00e2012-02-13 18:30:43 +05306168 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Secondary boot target not"
6169 " configured\n", __func__));
Lalit Chandivade8de5b952011-10-07 16:55:43 -07006170 } else
6171 ret = QLA_SUCCESS;
6172
6173exit_get_boot_info:
Manish Rangankar2a991c22011-07-25 13:48:55 -05006174 return ret;
6175}
6176
6177static int qla4xxx_setup_boot_info(struct scsi_qla_host *ha)
6178{
6179 struct iscsi_boot_kobj *boot_kobj;
6180
6181 if (qla4xxx_get_boot_info(ha) != QLA_SUCCESS)
Mike Christie13483732011-12-01 21:38:41 -06006182 return QLA_ERROR;
6183
6184 if (ql4xdisablesysfsboot) {
6185 ql4_printk(KERN_INFO, ha,
Petr Uzel0bd7f842012-02-24 16:32:59 +01006186 "%s: syfsboot disabled - driver will trigger login "
Mike Christie13483732011-12-01 21:38:41 -06006187 "and publish session for discovery .\n", __func__);
6188 return QLA_SUCCESS;
6189 }
6190
Manish Rangankar2a991c22011-07-25 13:48:55 -05006191
6192 ha->boot_kset = iscsi_boot_create_host_kset(ha->host->host_no);
6193 if (!ha->boot_kset)
6194 goto kset_free;
6195
6196 if (!scsi_host_get(ha->host))
6197 goto kset_free;
6198 boot_kobj = iscsi_boot_create_target(ha->boot_kset, 0, ha,
6199 qla4xxx_show_boot_tgt_pri_info,
6200 qla4xxx_tgt_get_attr_visibility,
6201 qla4xxx_boot_release);
6202 if (!boot_kobj)
6203 goto put_host;
6204
6205 if (!scsi_host_get(ha->host))
6206 goto kset_free;
6207 boot_kobj = iscsi_boot_create_target(ha->boot_kset, 1, ha,
6208 qla4xxx_show_boot_tgt_sec_info,
6209 qla4xxx_tgt_get_attr_visibility,
6210 qla4xxx_boot_release);
6211 if (!boot_kobj)
6212 goto put_host;
6213
6214 if (!scsi_host_get(ha->host))
6215 goto kset_free;
6216 boot_kobj = iscsi_boot_create_initiator(ha->boot_kset, 0, ha,
6217 qla4xxx_show_boot_ini_info,
6218 qla4xxx_ini_get_attr_visibility,
6219 qla4xxx_boot_release);
6220 if (!boot_kobj)
6221 goto put_host;
6222
6223 if (!scsi_host_get(ha->host))
6224 goto kset_free;
6225 boot_kobj = iscsi_boot_create_ethernet(ha->boot_kset, 0, ha,
6226 qla4xxx_show_boot_eth_info,
6227 qla4xxx_eth_get_attr_visibility,
6228 qla4xxx_boot_release);
6229 if (!boot_kobj)
6230 goto put_host;
6231
Mike Christie13483732011-12-01 21:38:41 -06006232 return QLA_SUCCESS;
Manish Rangankar2a991c22011-07-25 13:48:55 -05006233
6234put_host:
6235 scsi_host_put(ha->host);
6236kset_free:
6237 iscsi_boot_destroy_kset(ha->boot_kset);
6238 return -ENOMEM;
6239}
6240
Lalit Chandivade45494152011-10-07 16:55:42 -07006241
Mike Christie13483732011-12-01 21:38:41 -06006242static void qla4xxx_get_param_ddb(struct ddb_entry *ddb_entry,
6243 struct ql4_tuple_ddb *tddb)
6244{
6245 struct scsi_qla_host *ha;
6246 struct iscsi_cls_session *cls_sess;
6247 struct iscsi_cls_conn *cls_conn;
6248 struct iscsi_session *sess;
6249 struct iscsi_conn *conn;
6250
6251 DEBUG2(printk(KERN_INFO "Func: %s\n", __func__));
6252 ha = ddb_entry->ha;
6253 cls_sess = ddb_entry->sess;
6254 sess = cls_sess->dd_data;
6255 cls_conn = ddb_entry->conn;
6256 conn = cls_conn->dd_data;
6257
6258 tddb->tpgt = sess->tpgt;
6259 tddb->port = conn->persistent_port;
6260 strncpy(tddb->iscsi_name, sess->targetname, ISCSI_NAME_SIZE);
6261 strncpy(tddb->ip_addr, conn->persistent_address, DDB_IPADDR_LEN);
6262}
6263
6264static void qla4xxx_convert_param_ddb(struct dev_db_entry *fw_ddb_entry,
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04006265 struct ql4_tuple_ddb *tddb,
6266 uint8_t *flash_isid)
Mike Christie13483732011-12-01 21:38:41 -06006267{
6268 uint16_t options = 0;
6269
6270 tddb->tpgt = le32_to_cpu(fw_ddb_entry->tgt_portal_grp);
6271 memcpy(&tddb->iscsi_name[0], &fw_ddb_entry->iscsi_name[0],
6272 min(sizeof(tddb->iscsi_name), sizeof(fw_ddb_entry->iscsi_name)));
6273
6274 options = le16_to_cpu(fw_ddb_entry->options);
6275 if (options & DDB_OPT_IPV6_DEVICE)
6276 sprintf(tddb->ip_addr, "%pI6", fw_ddb_entry->ip_addr);
6277 else
6278 sprintf(tddb->ip_addr, "%pI4", fw_ddb_entry->ip_addr);
6279
6280 tddb->port = le16_to_cpu(fw_ddb_entry->port);
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04006281
6282 if (flash_isid == NULL)
6283 memcpy(&tddb->isid[0], &fw_ddb_entry->isid[0],
6284 sizeof(tddb->isid));
6285 else
6286 memcpy(&tddb->isid[0], &flash_isid[0], sizeof(tddb->isid));
Mike Christie13483732011-12-01 21:38:41 -06006287}
6288
6289static int qla4xxx_compare_tuple_ddb(struct scsi_qla_host *ha,
6290 struct ql4_tuple_ddb *old_tddb,
Manish Rangankar173269e2012-02-27 03:08:55 -08006291 struct ql4_tuple_ddb *new_tddb,
6292 uint8_t is_isid_compare)
Mike Christie13483732011-12-01 21:38:41 -06006293{
6294 if (strcmp(old_tddb->iscsi_name, new_tddb->iscsi_name))
6295 return QLA_ERROR;
6296
6297 if (strcmp(old_tddb->ip_addr, new_tddb->ip_addr))
6298 return QLA_ERROR;
6299
6300 if (old_tddb->port != new_tddb->port)
6301 return QLA_ERROR;
6302
Manish Rangankar173269e2012-02-27 03:08:55 -08006303 /* For multi sessions, driver generates the ISID, so do not compare
Masanari Iida59e13d42012-04-25 00:24:16 +09006304 * ISID in reset path since it would be a comparison between the
Manish Rangankar173269e2012-02-27 03:08:55 -08006305 * driver generated ISID and firmware generated ISID. This could
6306 * lead to adding duplicated DDBs in the list as driver generated
6307 * ISID would not match firmware generated ISID.
6308 */
6309 if (is_isid_compare) {
6310 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: old ISID [%02x%02x%02x"
6311 "%02x%02x%02x] New ISID [%02x%02x%02x%02x%02x%02x]\n",
6312 __func__, old_tddb->isid[5], old_tddb->isid[4],
6313 old_tddb->isid[3], old_tddb->isid[2], old_tddb->isid[1],
6314 old_tddb->isid[0], new_tddb->isid[5], new_tddb->isid[4],
6315 new_tddb->isid[3], new_tddb->isid[2], new_tddb->isid[1],
6316 new_tddb->isid[0]));
6317
6318 if (memcmp(&old_tddb->isid[0], &new_tddb->isid[0],
6319 sizeof(old_tddb->isid)))
6320 return QLA_ERROR;
6321 }
6322
Mike Christie13483732011-12-01 21:38:41 -06006323 DEBUG2(ql4_printk(KERN_INFO, ha,
6324 "Match Found, fw[%d,%d,%s,%s], [%d,%d,%s,%s]",
6325 old_tddb->port, old_tddb->tpgt, old_tddb->ip_addr,
6326 old_tddb->iscsi_name, new_tddb->port, new_tddb->tpgt,
6327 new_tddb->ip_addr, new_tddb->iscsi_name));
6328
6329 return QLA_SUCCESS;
6330}
6331
6332static int qla4xxx_is_session_exists(struct scsi_qla_host *ha,
Manish Rangankarad8bd452013-09-17 07:30:02 -04006333 struct dev_db_entry *fw_ddb_entry,
6334 uint32_t *index)
Mike Christie13483732011-12-01 21:38:41 -06006335{
6336 struct ddb_entry *ddb_entry;
6337 struct ql4_tuple_ddb *fw_tddb = NULL;
6338 struct ql4_tuple_ddb *tmp_tddb = NULL;
6339 int idx;
6340 int ret = QLA_ERROR;
6341
6342 fw_tddb = vzalloc(sizeof(*fw_tddb));
6343 if (!fw_tddb) {
6344 DEBUG2(ql4_printk(KERN_WARNING, ha,
6345 "Memory Allocation failed.\n"));
6346 ret = QLA_SUCCESS;
6347 goto exit_check;
6348 }
6349
6350 tmp_tddb = vzalloc(sizeof(*tmp_tddb));
6351 if (!tmp_tddb) {
6352 DEBUG2(ql4_printk(KERN_WARNING, ha,
6353 "Memory Allocation failed.\n"));
6354 ret = QLA_SUCCESS;
6355 goto exit_check;
6356 }
6357
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04006358 qla4xxx_convert_param_ddb(fw_ddb_entry, fw_tddb, NULL);
Mike Christie13483732011-12-01 21:38:41 -06006359
6360 for (idx = 0; idx < MAX_DDB_ENTRIES; idx++) {
6361 ddb_entry = qla4xxx_lookup_ddb_by_fw_index(ha, idx);
6362 if (ddb_entry == NULL)
6363 continue;
6364
6365 qla4xxx_get_param_ddb(ddb_entry, tmp_tddb);
Manish Rangankar173269e2012-02-27 03:08:55 -08006366 if (!qla4xxx_compare_tuple_ddb(ha, fw_tddb, tmp_tddb, false)) {
Mike Christie13483732011-12-01 21:38:41 -06006367 ret = QLA_SUCCESS; /* found */
Manish Rangankarad8bd452013-09-17 07:30:02 -04006368 if (index != NULL)
6369 *index = idx;
Mike Christie13483732011-12-01 21:38:41 -06006370 goto exit_check;
6371 }
6372 }
6373
6374exit_check:
6375 if (fw_tddb)
6376 vfree(fw_tddb);
6377 if (tmp_tddb)
6378 vfree(tmp_tddb);
6379 return ret;
6380}
6381
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04006382/**
6383 * qla4xxx_check_existing_isid - check if target with same isid exist
6384 * in target list
6385 * @list_nt: list of target
6386 * @isid: isid to check
6387 *
6388 * This routine return QLA_SUCCESS if target with same isid exist
6389 **/
6390static int qla4xxx_check_existing_isid(struct list_head *list_nt, uint8_t *isid)
6391{
6392 struct qla_ddb_index *nt_ddb_idx, *nt_ddb_idx_tmp;
6393 struct dev_db_entry *fw_ddb_entry;
6394
6395 list_for_each_entry_safe(nt_ddb_idx, nt_ddb_idx_tmp, list_nt, list) {
6396 fw_ddb_entry = &nt_ddb_idx->fw_ddb;
6397
6398 if (memcmp(&fw_ddb_entry->isid[0], &isid[0],
6399 sizeof(nt_ddb_idx->fw_ddb.isid)) == 0) {
6400 return QLA_SUCCESS;
6401 }
6402 }
6403 return QLA_ERROR;
6404}
6405
6406/**
6407 * qla4xxx_update_isid - compare ddbs and updated isid
6408 * @ha: Pointer to host adapter structure.
6409 * @list_nt: list of nt target
6410 * @fw_ddb_entry: firmware ddb entry
6411 *
6412 * This routine update isid if ddbs have same iqn, same isid and
6413 * different IP addr.
6414 * Return QLA_SUCCESS if isid is updated.
6415 **/
6416static int qla4xxx_update_isid(struct scsi_qla_host *ha,
6417 struct list_head *list_nt,
6418 struct dev_db_entry *fw_ddb_entry)
6419{
6420 uint8_t base_value, i;
6421
6422 base_value = fw_ddb_entry->isid[1] & 0x1f;
6423 for (i = 0; i < 8; i++) {
6424 fw_ddb_entry->isid[1] = (base_value | (i << 5));
6425 if (qla4xxx_check_existing_isid(list_nt, fw_ddb_entry->isid))
6426 break;
6427 }
6428
6429 if (!qla4xxx_check_existing_isid(list_nt, fw_ddb_entry->isid))
6430 return QLA_ERROR;
6431
6432 return QLA_SUCCESS;
6433}
6434
6435/**
6436 * qla4xxx_should_update_isid - check if isid need to update
6437 * @ha: Pointer to host adapter structure.
6438 * @old_tddb: ddb tuple
6439 * @new_tddb: ddb tuple
6440 *
6441 * Return QLA_SUCCESS if different IP, different PORT, same iqn,
6442 * same isid
6443 **/
6444static int qla4xxx_should_update_isid(struct scsi_qla_host *ha,
6445 struct ql4_tuple_ddb *old_tddb,
6446 struct ql4_tuple_ddb *new_tddb)
6447{
6448 if (strcmp(old_tddb->ip_addr, new_tddb->ip_addr) == 0) {
6449 /* Same ip */
6450 if (old_tddb->port == new_tddb->port)
6451 return QLA_ERROR;
6452 }
6453
6454 if (strcmp(old_tddb->iscsi_name, new_tddb->iscsi_name))
6455 /* different iqn */
6456 return QLA_ERROR;
6457
6458 if (memcmp(&old_tddb->isid[0], &new_tddb->isid[0],
6459 sizeof(old_tddb->isid)))
6460 /* different isid */
6461 return QLA_ERROR;
6462
6463 return QLA_SUCCESS;
6464}
6465
6466/**
6467 * qla4xxx_is_flash_ddb_exists - check if fw_ddb_entry already exists in list_nt
6468 * @ha: Pointer to host adapter structure.
6469 * @list_nt: list of nt target.
6470 * @fw_ddb_entry: firmware ddb entry.
6471 *
6472 * This routine check if fw_ddb_entry already exists in list_nt to avoid
6473 * duplicate ddb in list_nt.
6474 * Return QLA_SUCCESS if duplicate ddb exit in list_nl.
6475 * Note: This function also update isid of DDB if required.
6476 **/
6477
Mike Christie13483732011-12-01 21:38:41 -06006478static int qla4xxx_is_flash_ddb_exists(struct scsi_qla_host *ha,
6479 struct list_head *list_nt,
6480 struct dev_db_entry *fw_ddb_entry)
6481{
6482 struct qla_ddb_index *nt_ddb_idx, *nt_ddb_idx_tmp;
6483 struct ql4_tuple_ddb *fw_tddb = NULL;
6484 struct ql4_tuple_ddb *tmp_tddb = NULL;
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04006485 int rval, ret = QLA_ERROR;
Mike Christie13483732011-12-01 21:38:41 -06006486
6487 fw_tddb = vzalloc(sizeof(*fw_tddb));
6488 if (!fw_tddb) {
6489 DEBUG2(ql4_printk(KERN_WARNING, ha,
6490 "Memory Allocation failed.\n"));
6491 ret = QLA_SUCCESS;
6492 goto exit_check;
6493 }
6494
6495 tmp_tddb = vzalloc(sizeof(*tmp_tddb));
6496 if (!tmp_tddb) {
6497 DEBUG2(ql4_printk(KERN_WARNING, ha,
6498 "Memory Allocation failed.\n"));
6499 ret = QLA_SUCCESS;
6500 goto exit_check;
6501 }
6502
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04006503 qla4xxx_convert_param_ddb(fw_ddb_entry, fw_tddb, NULL);
Mike Christie13483732011-12-01 21:38:41 -06006504
6505 list_for_each_entry_safe(nt_ddb_idx, nt_ddb_idx_tmp, list_nt, list) {
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04006506 qla4xxx_convert_param_ddb(&nt_ddb_idx->fw_ddb, tmp_tddb,
6507 nt_ddb_idx->flash_isid);
6508 ret = qla4xxx_compare_tuple_ddb(ha, fw_tddb, tmp_tddb, true);
6509 /* found duplicate ddb */
6510 if (ret == QLA_SUCCESS)
6511 goto exit_check;
6512 }
6513
6514 list_for_each_entry_safe(nt_ddb_idx, nt_ddb_idx_tmp, list_nt, list) {
6515 qla4xxx_convert_param_ddb(&nt_ddb_idx->fw_ddb, tmp_tddb, NULL);
6516
6517 ret = qla4xxx_should_update_isid(ha, tmp_tddb, fw_tddb);
6518 if (ret == QLA_SUCCESS) {
6519 rval = qla4xxx_update_isid(ha, list_nt, fw_ddb_entry);
6520 if (rval == QLA_SUCCESS)
6521 ret = QLA_ERROR;
6522 else
6523 ret = QLA_SUCCESS;
6524
Mike Christie13483732011-12-01 21:38:41 -06006525 goto exit_check;
6526 }
6527 }
6528
6529exit_check:
6530 if (fw_tddb)
6531 vfree(fw_tddb);
6532 if (tmp_tddb)
6533 vfree(tmp_tddb);
6534 return ret;
6535}
6536
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006537static void qla4xxx_free_ddb_list(struct list_head *list_ddb)
Mike Christie13483732011-12-01 21:38:41 -06006538{
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006539 struct qla_ddb_index *ddb_idx, *ddb_idx_tmp;
Mike Christie13483732011-12-01 21:38:41 -06006540
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006541 list_for_each_entry_safe(ddb_idx, ddb_idx_tmp, list_ddb, list) {
6542 list_del_init(&ddb_idx->list);
6543 vfree(ddb_idx);
Mike Christie13483732011-12-01 21:38:41 -06006544 }
Mike Christie13483732011-12-01 21:38:41 -06006545}
6546
6547static struct iscsi_endpoint *qla4xxx_get_ep_fwdb(struct scsi_qla_host *ha,
6548 struct dev_db_entry *fw_ddb_entry)
6549{
6550 struct iscsi_endpoint *ep;
6551 struct sockaddr_in *addr;
6552 struct sockaddr_in6 *addr6;
Manish Rangankar3dd48492012-11-23 06:58:40 -05006553 struct sockaddr *t_addr;
6554 struct sockaddr_storage *dst_addr;
Mike Christie13483732011-12-01 21:38:41 -06006555 char *ip;
6556
6557 /* TODO: need to destroy on unload iscsi_endpoint*/
6558 dst_addr = vmalloc(sizeof(*dst_addr));
6559 if (!dst_addr)
6560 return NULL;
6561
6562 if (fw_ddb_entry->options & DDB_OPT_IPV6_DEVICE) {
Manish Rangankar3dd48492012-11-23 06:58:40 -05006563 t_addr = (struct sockaddr *)dst_addr;
6564 t_addr->sa_family = AF_INET6;
Mike Christie13483732011-12-01 21:38:41 -06006565 addr6 = (struct sockaddr_in6 *)dst_addr;
6566 ip = (char *)&addr6->sin6_addr;
6567 memcpy(ip, fw_ddb_entry->ip_addr, IPv6_ADDR_LEN);
6568 addr6->sin6_port = htons(le16_to_cpu(fw_ddb_entry->port));
6569
6570 } else {
Manish Rangankar3dd48492012-11-23 06:58:40 -05006571 t_addr = (struct sockaddr *)dst_addr;
6572 t_addr->sa_family = AF_INET;
Mike Christie13483732011-12-01 21:38:41 -06006573 addr = (struct sockaddr_in *)dst_addr;
6574 ip = (char *)&addr->sin_addr;
6575 memcpy(ip, fw_ddb_entry->ip_addr, IP_ADDR_LEN);
6576 addr->sin_port = htons(le16_to_cpu(fw_ddb_entry->port));
6577 }
6578
Manish Rangankar3dd48492012-11-23 06:58:40 -05006579 ep = qla4xxx_ep_connect(ha->host, (struct sockaddr *)dst_addr, 0);
Mike Christie13483732011-12-01 21:38:41 -06006580 vfree(dst_addr);
6581 return ep;
6582}
6583
6584static int qla4xxx_verify_boot_idx(struct scsi_qla_host *ha, uint16_t idx)
6585{
6586 if (ql4xdisablesysfsboot)
6587 return QLA_SUCCESS;
6588 if (idx == ha->pri_ddb_idx || idx == ha->sec_ddb_idx)
6589 return QLA_ERROR;
6590 return QLA_SUCCESS;
6591}
6592
6593static void qla4xxx_setup_flash_ddb_entry(struct scsi_qla_host *ha,
Manish Rangankar1dc8ed52013-01-20 23:51:03 -05006594 struct ddb_entry *ddb_entry,
6595 uint16_t idx)
Mike Christie13483732011-12-01 21:38:41 -06006596{
Nilesh Javalic28eaac2011-12-18 21:40:44 -08006597 uint16_t def_timeout;
6598
Mike Christie13483732011-12-01 21:38:41 -06006599 ddb_entry->ddb_type = FLASH_DDB;
6600 ddb_entry->fw_ddb_index = INVALID_ENTRY;
6601 ddb_entry->fw_ddb_device_state = DDB_DS_NO_CONNECTION_ACTIVE;
6602 ddb_entry->ha = ha;
6603 ddb_entry->unblock_sess = qla4xxx_unblock_flash_ddb;
6604 ddb_entry->ddb_change = qla4xxx_flash_ddb_change;
Adheer Chandravanshi946ac572013-09-17 07:54:46 -04006605 ddb_entry->chap_tbl_idx = INVALID_ENTRY;
Mike Christie13483732011-12-01 21:38:41 -06006606
6607 atomic_set(&ddb_entry->retry_relogin_timer, INVALID_ENTRY);
6608 atomic_set(&ddb_entry->relogin_timer, 0);
6609 atomic_set(&ddb_entry->relogin_retry_count, 0);
Nilesh Javalic28eaac2011-12-18 21:40:44 -08006610 def_timeout = le16_to_cpu(ddb_entry->fw_ddb_entry.def_timeout);
Mike Christie13483732011-12-01 21:38:41 -06006611 ddb_entry->default_relogin_timeout =
Nilesh Javalic28eaac2011-12-18 21:40:44 -08006612 (def_timeout > LOGIN_TOV) && (def_timeout < LOGIN_TOV * 10) ?
6613 def_timeout : LOGIN_TOV;
Mike Christie13483732011-12-01 21:38:41 -06006614 ddb_entry->default_time2wait =
6615 le16_to_cpu(ddb_entry->fw_ddb_entry.iscsi_def_time2wait);
Manish Rangankar1dc8ed52013-01-20 23:51:03 -05006616
6617 if (ql4xdisablesysfsboot &&
6618 (idx == ha->pri_ddb_idx || idx == ha->sec_ddb_idx))
6619 set_bit(DF_BOOT_TGT, &ddb_entry->flags);
Mike Christie13483732011-12-01 21:38:41 -06006620}
6621
6622static void qla4xxx_wait_for_ip_configuration(struct scsi_qla_host *ha)
6623{
6624 uint32_t idx = 0;
6625 uint32_t ip_idx[IP_ADDR_COUNT] = {0, 1, 2, 3}; /* 4 IP interfaces */
6626 uint32_t sts[MBOX_REG_COUNT];
6627 uint32_t ip_state;
6628 unsigned long wtime;
6629 int ret;
6630
6631 wtime = jiffies + (HZ * IP_CONFIG_TOV);
6632 do {
6633 for (idx = 0; idx < IP_ADDR_COUNT; idx++) {
6634 if (ip_idx[idx] == -1)
6635 continue;
6636
6637 ret = qla4xxx_get_ip_state(ha, 0, ip_idx[idx], sts);
6638
6639 if (ret == QLA_ERROR) {
6640 ip_idx[idx] = -1;
6641 continue;
6642 }
6643
6644 ip_state = (sts[1] & IP_STATE_MASK) >> IP_STATE_SHIFT;
6645
6646 DEBUG2(ql4_printk(KERN_INFO, ha,
6647 "Waiting for IP state for idx = %d, state = 0x%x\n",
6648 ip_idx[idx], ip_state));
6649 if (ip_state == IP_ADDRSTATE_UNCONFIGURED ||
6650 ip_state == IP_ADDRSTATE_INVALID ||
6651 ip_state == IP_ADDRSTATE_PREFERRED ||
6652 ip_state == IP_ADDRSTATE_DEPRICATED ||
6653 ip_state == IP_ADDRSTATE_DISABLING)
6654 ip_idx[idx] = -1;
Mike Christie13483732011-12-01 21:38:41 -06006655 }
6656
6657 /* Break if all IP states checked */
6658 if ((ip_idx[0] == -1) &&
6659 (ip_idx[1] == -1) &&
6660 (ip_idx[2] == -1) &&
6661 (ip_idx[3] == -1))
6662 break;
6663 schedule_timeout_uninterruptible(HZ);
6664 } while (time_after(wtime, jiffies));
6665}
6666
Manish Rangankarad8bd452013-09-17 07:30:02 -04006667static int qla4xxx_cmp_fw_stentry(struct dev_db_entry *fw_ddb_entry,
6668 struct dev_db_entry *flash_ddb_entry)
6669{
6670 uint16_t options = 0;
6671 size_t ip_len = IP_ADDR_LEN;
6672
6673 options = le16_to_cpu(fw_ddb_entry->options);
6674 if (options & DDB_OPT_IPV6_DEVICE)
6675 ip_len = IPv6_ADDR_LEN;
6676
6677 if (memcmp(fw_ddb_entry->ip_addr, flash_ddb_entry->ip_addr, ip_len))
6678 return QLA_ERROR;
6679
6680 if (memcmp(&fw_ddb_entry->isid[0], &flash_ddb_entry->isid[0],
6681 sizeof(fw_ddb_entry->isid)))
6682 return QLA_ERROR;
6683
6684 if (memcmp(&fw_ddb_entry->port, &flash_ddb_entry->port,
6685 sizeof(fw_ddb_entry->port)))
6686 return QLA_ERROR;
6687
6688 return QLA_SUCCESS;
6689}
6690
6691static int qla4xxx_find_flash_st_idx(struct scsi_qla_host *ha,
6692 struct dev_db_entry *fw_ddb_entry,
6693 uint32_t fw_idx, uint32_t *flash_index)
6694{
6695 struct dev_db_entry *flash_ddb_entry;
6696 dma_addr_t flash_ddb_entry_dma;
6697 uint32_t idx = 0;
6698 int max_ddbs;
6699 int ret = QLA_ERROR, status;
6700
6701 max_ddbs = is_qla40XX(ha) ? MAX_DEV_DB_ENTRIES_40XX :
6702 MAX_DEV_DB_ENTRIES;
6703
6704 flash_ddb_entry = dma_pool_alloc(ha->fw_ddb_dma_pool, GFP_KERNEL,
6705 &flash_ddb_entry_dma);
6706 if (flash_ddb_entry == NULL || fw_ddb_entry == NULL) {
6707 ql4_printk(KERN_ERR, ha, "Out of memory\n");
6708 goto exit_find_st_idx;
6709 }
6710
6711 status = qla4xxx_flashdb_by_index(ha, flash_ddb_entry,
6712 flash_ddb_entry_dma, fw_idx);
6713 if (status == QLA_SUCCESS) {
6714 status = qla4xxx_cmp_fw_stentry(fw_ddb_entry, flash_ddb_entry);
6715 if (status == QLA_SUCCESS) {
6716 *flash_index = fw_idx;
6717 ret = QLA_SUCCESS;
6718 goto exit_find_st_idx;
6719 }
6720 }
6721
6722 for (idx = 0; idx < max_ddbs; idx++) {
6723 status = qla4xxx_flashdb_by_index(ha, flash_ddb_entry,
6724 flash_ddb_entry_dma, idx);
6725 if (status == QLA_ERROR)
6726 continue;
6727
6728 status = qla4xxx_cmp_fw_stentry(fw_ddb_entry, flash_ddb_entry);
6729 if (status == QLA_SUCCESS) {
6730 *flash_index = idx;
6731 ret = QLA_SUCCESS;
6732 goto exit_find_st_idx;
6733 }
6734 }
6735
6736 if (idx == max_ddbs)
6737 ql4_printk(KERN_ERR, ha, "Failed to find ST [%d] in flash\n",
6738 fw_idx);
6739
6740exit_find_st_idx:
6741 if (flash_ddb_entry)
6742 dma_pool_free(ha->fw_ddb_dma_pool, flash_ddb_entry,
6743 flash_ddb_entry_dma);
6744
6745 return ret;
6746}
6747
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006748static void qla4xxx_build_st_list(struct scsi_qla_host *ha,
6749 struct list_head *list_st)
Mike Christie13483732011-12-01 21:38:41 -06006750{
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006751 struct qla_ddb_index *st_ddb_idx;
Mike Christie13483732011-12-01 21:38:41 -06006752 int max_ddbs;
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006753 int fw_idx_size;
6754 struct dev_db_entry *fw_ddb_entry;
6755 dma_addr_t fw_ddb_dma;
Mike Christie13483732011-12-01 21:38:41 -06006756 int ret;
6757 uint32_t idx = 0, next_idx = 0;
6758 uint32_t state = 0, conn_err = 0;
Manish Rangankarad8bd452013-09-17 07:30:02 -04006759 uint32_t flash_index = -1;
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006760 uint16_t conn_id = 0;
Mike Christie13483732011-12-01 21:38:41 -06006761
6762 fw_ddb_entry = dma_pool_alloc(ha->fw_ddb_dma_pool, GFP_KERNEL,
6763 &fw_ddb_dma);
6764 if (fw_ddb_entry == NULL) {
6765 DEBUG2(ql4_printk(KERN_ERR, ha, "Out of memory\n"));
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006766 goto exit_st_list;
Mike Christie13483732011-12-01 21:38:41 -06006767 }
6768
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006769 max_ddbs = is_qla40XX(ha) ? MAX_DEV_DB_ENTRIES_40XX :
6770 MAX_DEV_DB_ENTRIES;
Mike Christie13483732011-12-01 21:38:41 -06006771 fw_idx_size = sizeof(struct qla_ddb_index);
6772
6773 for (idx = 0; idx < max_ddbs; idx = next_idx) {
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006774 ret = qla4xxx_get_fwddb_entry(ha, idx, fw_ddb_entry, fw_ddb_dma,
6775 NULL, &next_idx, &state,
6776 &conn_err, NULL, &conn_id);
Mike Christie13483732011-12-01 21:38:41 -06006777 if (ret == QLA_ERROR)
6778 break;
6779
Lalit Chandivade981c9822012-02-13 18:30:41 +05306780 /* Ignore DDB if invalid state (unassigned) */
6781 if (state == DDB_DS_UNASSIGNED)
6782 goto continue_next_st;
6783
Mike Christie13483732011-12-01 21:38:41 -06006784 /* Check if ST, add to the list_st */
6785 if (strlen((char *) fw_ddb_entry->iscsi_name) != 0)
6786 goto continue_next_st;
6787
6788 st_ddb_idx = vzalloc(fw_idx_size);
6789 if (!st_ddb_idx)
6790 break;
6791
Manish Rangankarad8bd452013-09-17 07:30:02 -04006792 ret = qla4xxx_find_flash_st_idx(ha, fw_ddb_entry, idx,
6793 &flash_index);
6794 if (ret == QLA_ERROR) {
6795 ql4_printk(KERN_ERR, ha,
6796 "No flash entry for ST at idx [%d]\n", idx);
6797 st_ddb_idx->flash_ddb_idx = idx;
6798 } else {
6799 ql4_printk(KERN_INFO, ha,
6800 "ST at idx [%d] is stored at flash [%d]\n",
6801 idx, flash_index);
6802 st_ddb_idx->flash_ddb_idx = flash_index;
6803 }
6804
Mike Christie13483732011-12-01 21:38:41 -06006805 st_ddb_idx->fw_ddb_idx = idx;
6806
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006807 list_add_tail(&st_ddb_idx->list, list_st);
Mike Christie13483732011-12-01 21:38:41 -06006808continue_next_st:
6809 if (next_idx == 0)
6810 break;
6811 }
6812
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006813exit_st_list:
6814 if (fw_ddb_entry)
6815 dma_pool_free(ha->fw_ddb_dma_pool, fw_ddb_entry, fw_ddb_dma);
6816}
6817
6818/**
6819 * qla4xxx_remove_failed_ddb - Remove inactive or failed ddb from list
6820 * @ha: pointer to adapter structure
6821 * @list_ddb: List from which failed ddb to be removed
6822 *
6823 * Iterate over the list of DDBs and find and remove DDBs that are either in
6824 * no connection active state or failed state
6825 **/
6826static void qla4xxx_remove_failed_ddb(struct scsi_qla_host *ha,
6827 struct list_head *list_ddb)
6828{
6829 struct qla_ddb_index *ddb_idx, *ddb_idx_tmp;
6830 uint32_t next_idx = 0;
6831 uint32_t state = 0, conn_err = 0;
6832 int ret;
6833
6834 list_for_each_entry_safe(ddb_idx, ddb_idx_tmp, list_ddb, list) {
6835 ret = qla4xxx_get_fwddb_entry(ha, ddb_idx->fw_ddb_idx,
6836 NULL, 0, NULL, &next_idx, &state,
6837 &conn_err, NULL, NULL);
6838 if (ret == QLA_ERROR)
6839 continue;
6840
6841 if (state == DDB_DS_NO_CONNECTION_ACTIVE ||
6842 state == DDB_DS_SESSION_FAILED) {
6843 list_del_init(&ddb_idx->list);
6844 vfree(ddb_idx);
6845 }
6846 }
6847}
6848
Manish Rangankarad8bd452013-09-17 07:30:02 -04006849static void qla4xxx_update_sess_disc_idx(struct scsi_qla_host *ha,
6850 struct ddb_entry *ddb_entry,
6851 struct dev_db_entry *fw_ddb_entry)
6852{
6853 struct iscsi_cls_session *cls_sess;
6854 struct iscsi_session *sess;
6855 uint32_t max_ddbs = 0;
6856 uint16_t ddb_link = -1;
6857
6858 max_ddbs = is_qla40XX(ha) ? MAX_DEV_DB_ENTRIES_40XX :
6859 MAX_DEV_DB_ENTRIES;
6860
6861 cls_sess = ddb_entry->sess;
6862 sess = cls_sess->dd_data;
6863
6864 ddb_link = le16_to_cpu(fw_ddb_entry->ddb_link);
6865 if (ddb_link < max_ddbs)
6866 sess->discovery_parent_idx = ddb_link;
6867 else
6868 sess->discovery_parent_idx = DDB_NO_LINK;
6869}
6870
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006871static int qla4xxx_sess_conn_setup(struct scsi_qla_host *ha,
6872 struct dev_db_entry *fw_ddb_entry,
Manish Rangankar1dc8ed52013-01-20 23:51:03 -05006873 int is_reset, uint16_t idx)
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006874{
6875 struct iscsi_cls_session *cls_sess;
6876 struct iscsi_session *sess;
6877 struct iscsi_cls_conn *cls_conn;
6878 struct iscsi_endpoint *ep;
6879 uint16_t cmds_max = 32;
6880 uint16_t conn_id = 0;
6881 uint32_t initial_cmdsn = 0;
6882 int ret = QLA_SUCCESS;
6883
6884 struct ddb_entry *ddb_entry = NULL;
6885
6886 /* Create session object, with INVALID_ENTRY,
6887 * the targer_id would get set when we issue the login
6888 */
6889 cls_sess = iscsi_session_setup(&qla4xxx_iscsi_transport, ha->host,
6890 cmds_max, sizeof(struct ddb_entry),
6891 sizeof(struct ql4_task_data),
6892 initial_cmdsn, INVALID_ENTRY);
6893 if (!cls_sess) {
6894 ret = QLA_ERROR;
6895 goto exit_setup;
6896 }
6897
6898 /*
6899 * so calling module_put function to decrement the
6900 * reference count.
6901 **/
6902 module_put(qla4xxx_iscsi_transport.owner);
6903 sess = cls_sess->dd_data;
6904 ddb_entry = sess->dd_data;
6905 ddb_entry->sess = cls_sess;
6906
6907 cls_sess->recovery_tmo = ql4xsess_recovery_tmo;
6908 memcpy(&ddb_entry->fw_ddb_entry, fw_ddb_entry,
6909 sizeof(struct dev_db_entry));
6910
Manish Rangankar1dc8ed52013-01-20 23:51:03 -05006911 qla4xxx_setup_flash_ddb_entry(ha, ddb_entry, idx);
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006912
6913 cls_conn = iscsi_conn_setup(cls_sess, sizeof(struct qla_conn), conn_id);
6914
6915 if (!cls_conn) {
6916 ret = QLA_ERROR;
6917 goto exit_setup;
6918 }
6919
6920 ddb_entry->conn = cls_conn;
6921
6922 /* Setup ep, for displaying attributes in sysfs */
6923 ep = qla4xxx_get_ep_fwdb(ha, fw_ddb_entry);
6924 if (ep) {
6925 ep->conn = cls_conn;
6926 cls_conn->ep = ep;
6927 } else {
6928 DEBUG2(ql4_printk(KERN_ERR, ha, "Unable to get ep\n"));
6929 ret = QLA_ERROR;
6930 goto exit_setup;
6931 }
6932
6933 /* Update sess/conn params */
6934 qla4xxx_copy_fwddb_param(ha, fw_ddb_entry, cls_sess, cls_conn);
Manish Rangankarad8bd452013-09-17 07:30:02 -04006935 qla4xxx_update_sess_disc_idx(ha, ddb_entry, fw_ddb_entry);
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006936
6937 if (is_reset == RESET_ADAPTER) {
6938 iscsi_block_session(cls_sess);
6939 /* Use the relogin path to discover new devices
6940 * by short-circuting the logic of setting
6941 * timer to relogin - instead set the flags
6942 * to initiate login right away.
6943 */
6944 set_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags);
6945 set_bit(DF_RELOGIN, &ddb_entry->flags);
6946 }
6947
6948exit_setup:
6949 return ret;
6950}
6951
Manish Rangankarad8bd452013-09-17 07:30:02 -04006952static void qla4xxx_update_fw_ddb_link(struct scsi_qla_host *ha,
6953 struct list_head *list_ddb,
6954 struct dev_db_entry *fw_ddb_entry)
6955{
6956 struct qla_ddb_index *ddb_idx, *ddb_idx_tmp;
6957 uint16_t ddb_link;
6958
6959 ddb_link = le16_to_cpu(fw_ddb_entry->ddb_link);
6960
6961 list_for_each_entry_safe(ddb_idx, ddb_idx_tmp, list_ddb, list) {
6962 if (ddb_idx->fw_ddb_idx == ddb_link) {
6963 DEBUG2(ql4_printk(KERN_INFO, ha,
6964 "Updating NT parent idx from [%d] to [%d]\n",
6965 ddb_link, ddb_idx->flash_ddb_idx));
6966 fw_ddb_entry->ddb_link =
6967 cpu_to_le16(ddb_idx->flash_ddb_idx);
6968 return;
6969 }
6970 }
6971}
6972
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006973static void qla4xxx_build_nt_list(struct scsi_qla_host *ha,
Manish Rangankarad8bd452013-09-17 07:30:02 -04006974 struct list_head *list_nt,
6975 struct list_head *list_st,
6976 int is_reset)
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006977{
6978 struct dev_db_entry *fw_ddb_entry;
Manish Rangankarad8bd452013-09-17 07:30:02 -04006979 struct ddb_entry *ddb_entry = NULL;
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006980 dma_addr_t fw_ddb_dma;
6981 int max_ddbs;
6982 int fw_idx_size;
6983 int ret;
6984 uint32_t idx = 0, next_idx = 0;
6985 uint32_t state = 0, conn_err = 0;
Manish Rangankarad8bd452013-09-17 07:30:02 -04006986 uint32_t ddb_idx = -1;
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006987 uint16_t conn_id = 0;
Manish Rangankarad8bd452013-09-17 07:30:02 -04006988 uint16_t ddb_link = -1;
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08006989 struct qla_ddb_index *nt_ddb_idx;
6990
6991 fw_ddb_entry = dma_pool_alloc(ha->fw_ddb_dma_pool, GFP_KERNEL,
6992 &fw_ddb_dma);
6993 if (fw_ddb_entry == NULL) {
6994 DEBUG2(ql4_printk(KERN_ERR, ha, "Out of memory\n"));
6995 goto exit_nt_list;
6996 }
6997 max_ddbs = is_qla40XX(ha) ? MAX_DEV_DB_ENTRIES_40XX :
6998 MAX_DEV_DB_ENTRIES;
6999 fw_idx_size = sizeof(struct qla_ddb_index);
7000
7001 for (idx = 0; idx < max_ddbs; idx = next_idx) {
7002 ret = qla4xxx_get_fwddb_entry(ha, idx, fw_ddb_entry, fw_ddb_dma,
7003 NULL, &next_idx, &state,
7004 &conn_err, NULL, &conn_id);
7005 if (ret == QLA_ERROR)
7006 break;
7007
7008 if (qla4xxx_verify_boot_idx(ha, idx) != QLA_SUCCESS)
7009 goto continue_next_nt;
7010
7011 /* Check if NT, then add to list it */
7012 if (strlen((char *) fw_ddb_entry->iscsi_name) == 0)
7013 goto continue_next_nt;
7014
Manish Rangankarad8bd452013-09-17 07:30:02 -04007015 ddb_link = le16_to_cpu(fw_ddb_entry->ddb_link);
7016 if (ddb_link < max_ddbs)
7017 qla4xxx_update_fw_ddb_link(ha, list_st, fw_ddb_entry);
7018
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08007019 if (!(state == DDB_DS_NO_CONNECTION_ACTIVE ||
Manish Rangankarad8bd452013-09-17 07:30:02 -04007020 state == DDB_DS_SESSION_FAILED) &&
7021 (is_reset == INIT_ADAPTER))
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08007022 goto continue_next_nt;
7023
7024 DEBUG2(ql4_printk(KERN_INFO, ha,
7025 "Adding DDB to session = 0x%x\n", idx));
Manish Rangankarad8bd452013-09-17 07:30:02 -04007026
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08007027 if (is_reset == INIT_ADAPTER) {
7028 nt_ddb_idx = vmalloc(fw_idx_size);
7029 if (!nt_ddb_idx)
7030 break;
7031
7032 nt_ddb_idx->fw_ddb_idx = idx;
7033
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04007034 /* Copy original isid as it may get updated in function
7035 * qla4xxx_update_isid(). We need original isid in
7036 * function qla4xxx_compare_tuple_ddb to find duplicate
7037 * target */
7038 memcpy(&nt_ddb_idx->flash_isid[0],
7039 &fw_ddb_entry->isid[0],
7040 sizeof(nt_ddb_idx->flash_isid));
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08007041
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04007042 ret = qla4xxx_is_flash_ddb_exists(ha, list_nt,
7043 fw_ddb_entry);
7044 if (ret == QLA_SUCCESS) {
7045 /* free nt_ddb_idx and do not add to list_nt */
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08007046 vfree(nt_ddb_idx);
7047 goto continue_next_nt;
7048 }
Vikas Chaudhary1cb78d72012-06-14 06:35:48 -04007049
7050 /* Copy updated isid */
7051 memcpy(&nt_ddb_idx->fw_ddb, fw_ddb_entry,
7052 sizeof(struct dev_db_entry));
7053
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08007054 list_add_tail(&nt_ddb_idx->list, list_nt);
7055 } else if (is_reset == RESET_ADAPTER) {
Manish Rangankarad8bd452013-09-17 07:30:02 -04007056 ret = qla4xxx_is_session_exists(ha, fw_ddb_entry,
7057 &ddb_idx);
7058 if (ret == QLA_SUCCESS) {
7059 ddb_entry = qla4xxx_lookup_ddb_by_fw_index(ha,
7060 ddb_idx);
7061 if (ddb_entry != NULL)
7062 qla4xxx_update_sess_disc_idx(ha,
7063 ddb_entry,
7064 fw_ddb_entry);
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08007065 goto continue_next_nt;
Manish Rangankarad8bd452013-09-17 07:30:02 -04007066 }
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08007067 }
7068
Manish Rangankar1dc8ed52013-01-20 23:51:03 -05007069 ret = qla4xxx_sess_conn_setup(ha, fw_ddb_entry, is_reset, idx);
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08007070 if (ret == QLA_ERROR)
7071 goto exit_nt_list;
7072
7073continue_next_nt:
7074 if (next_idx == 0)
7075 break;
7076 }
7077
7078exit_nt_list:
7079 if (fw_ddb_entry)
7080 dma_pool_free(ha->fw_ddb_dma_pool, fw_ddb_entry, fw_ddb_dma);
7081}
7082
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007083static void qla4xxx_build_new_nt_list(struct scsi_qla_host *ha,
Manish Rangankarad8bd452013-09-17 07:30:02 -04007084 struct list_head *list_nt,
7085 uint16_t target_id)
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007086{
7087 struct dev_db_entry *fw_ddb_entry;
7088 dma_addr_t fw_ddb_dma;
7089 int max_ddbs;
7090 int fw_idx_size;
7091 int ret;
7092 uint32_t idx = 0, next_idx = 0;
7093 uint32_t state = 0, conn_err = 0;
7094 uint16_t conn_id = 0;
7095 struct qla_ddb_index *nt_ddb_idx;
7096
7097 fw_ddb_entry = dma_pool_alloc(ha->fw_ddb_dma_pool, GFP_KERNEL,
7098 &fw_ddb_dma);
7099 if (fw_ddb_entry == NULL) {
7100 DEBUG2(ql4_printk(KERN_ERR, ha, "Out of memory\n"));
7101 goto exit_new_nt_list;
7102 }
7103 max_ddbs = is_qla40XX(ha) ? MAX_DEV_DB_ENTRIES_40XX :
7104 MAX_DEV_DB_ENTRIES;
7105 fw_idx_size = sizeof(struct qla_ddb_index);
7106
7107 for (idx = 0; idx < max_ddbs; idx = next_idx) {
7108 ret = qla4xxx_get_fwddb_entry(ha, idx, fw_ddb_entry, fw_ddb_dma,
7109 NULL, &next_idx, &state,
7110 &conn_err, NULL, &conn_id);
7111 if (ret == QLA_ERROR)
7112 break;
7113
7114 /* Check if NT, then add it to list */
7115 if (strlen((char *)fw_ddb_entry->iscsi_name) == 0)
7116 goto continue_next_new_nt;
7117
7118 if (!(state == DDB_DS_NO_CONNECTION_ACTIVE))
7119 goto continue_next_new_nt;
7120
7121 DEBUG2(ql4_printk(KERN_INFO, ha,
7122 "Adding DDB to session = 0x%x\n", idx));
7123
7124 nt_ddb_idx = vmalloc(fw_idx_size);
7125 if (!nt_ddb_idx)
7126 break;
7127
7128 nt_ddb_idx->fw_ddb_idx = idx;
7129
Manish Rangankarad8bd452013-09-17 07:30:02 -04007130 ret = qla4xxx_is_session_exists(ha, fw_ddb_entry, NULL);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007131 if (ret == QLA_SUCCESS) {
7132 /* free nt_ddb_idx and do not add to list_nt */
7133 vfree(nt_ddb_idx);
7134 goto continue_next_new_nt;
7135 }
7136
Manish Rangankarad8bd452013-09-17 07:30:02 -04007137 if (target_id < max_ddbs)
7138 fw_ddb_entry->ddb_link = cpu_to_le16(target_id);
7139
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007140 list_add_tail(&nt_ddb_idx->list, list_nt);
7141
7142 ret = qla4xxx_sess_conn_setup(ha, fw_ddb_entry, RESET_ADAPTER,
7143 idx);
7144 if (ret == QLA_ERROR)
7145 goto exit_new_nt_list;
7146
7147continue_next_new_nt:
7148 if (next_idx == 0)
7149 break;
7150 }
7151
7152exit_new_nt_list:
7153 if (fw_ddb_entry)
7154 dma_pool_free(ha->fw_ddb_dma_pool, fw_ddb_entry, fw_ddb_dma);
7155}
7156
7157/**
7158 * qla4xxx_sysfs_ddb_is_non_persistent - check for non-persistence of ddb entry
7159 * @dev: dev associated with the sysfs entry
7160 * @data: pointer to flashnode session object
7161 *
7162 * Returns:
7163 * 1: if flashnode entry is non-persistent
7164 * 0: if flashnode entry is persistent
7165 **/
7166static int qla4xxx_sysfs_ddb_is_non_persistent(struct device *dev, void *data)
7167{
7168 struct iscsi_bus_flash_session *fnode_sess;
7169
7170 if (!iscsi_flashnode_bus_match(dev, NULL))
7171 return 0;
7172
7173 fnode_sess = iscsi_dev_to_flash_session(dev);
7174
7175 return (fnode_sess->flash_state == DEV_DB_NON_PERSISTENT);
7176}
7177
7178/**
7179 * qla4xxx_sysfs_ddb_tgt_create - Create sysfs entry for target
7180 * @ha: pointer to host
7181 * @fw_ddb_entry: flash ddb data
7182 * @idx: target index
7183 * @user: if set then this call is made from userland else from kernel
7184 *
7185 * Returns:
7186 * On sucess: QLA_SUCCESS
7187 * On failure: QLA_ERROR
7188 *
7189 * This create separate sysfs entries for session and connection attributes of
7190 * the given fw ddb entry.
7191 * If this is invoked as a result of a userspace call then the entry is marked
7192 * as nonpersistent using flash_state field.
7193 **/
Vikas Chaudhary28e02f12013-04-17 05:15:27 -04007194static int qla4xxx_sysfs_ddb_tgt_create(struct scsi_qla_host *ha,
7195 struct dev_db_entry *fw_ddb_entry,
7196 uint16_t *idx, int user)
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007197{
7198 struct iscsi_bus_flash_session *fnode_sess = NULL;
7199 struct iscsi_bus_flash_conn *fnode_conn = NULL;
7200 int rc = QLA_ERROR;
7201
7202 fnode_sess = iscsi_create_flashnode_sess(ha->host, *idx,
7203 &qla4xxx_iscsi_transport, 0);
7204 if (!fnode_sess) {
7205 ql4_printk(KERN_ERR, ha,
7206 "%s: Unable to create session sysfs entry for flashnode %d of host%lu\n",
7207 __func__, *idx, ha->host_no);
7208 goto exit_tgt_create;
7209 }
7210
7211 fnode_conn = iscsi_create_flashnode_conn(ha->host, fnode_sess,
7212 &qla4xxx_iscsi_transport, 0);
7213 if (!fnode_conn) {
7214 ql4_printk(KERN_ERR, ha,
7215 "%s: Unable to create conn sysfs entry for flashnode %d of host%lu\n",
7216 __func__, *idx, ha->host_no);
7217 goto free_sess;
7218 }
7219
7220 if (user) {
7221 fnode_sess->flash_state = DEV_DB_NON_PERSISTENT;
7222 } else {
7223 fnode_sess->flash_state = DEV_DB_PERSISTENT;
7224
7225 if (*idx == ha->pri_ddb_idx || *idx == ha->sec_ddb_idx)
7226 fnode_sess->is_boot_target = 1;
7227 else
7228 fnode_sess->is_boot_target = 0;
7229 }
7230
7231 rc = qla4xxx_copy_from_fwddb_param(fnode_sess, fnode_conn,
7232 fw_ddb_entry);
7233
7234 ql4_printk(KERN_INFO, ha, "%s: sysfs entry %s created\n",
7235 __func__, fnode_sess->dev.kobj.name);
7236
7237 ql4_printk(KERN_INFO, ha, "%s: sysfs entry %s created\n",
7238 __func__, fnode_conn->dev.kobj.name);
7239
7240 return QLA_SUCCESS;
7241
7242free_sess:
7243 iscsi_destroy_flashnode_sess(fnode_sess);
7244
7245exit_tgt_create:
7246 return QLA_ERROR;
7247}
7248
7249/**
7250 * qla4xxx_sysfs_ddb_add - Add new ddb entry in flash
7251 * @shost: pointer to host
7252 * @buf: type of ddb entry (ipv4/ipv6)
7253 * @len: length of buf
7254 *
7255 * This creates new ddb entry in the flash by finding first free index and
7256 * storing default ddb there. And then create sysfs entry for the new ddb entry.
7257 **/
7258static int qla4xxx_sysfs_ddb_add(struct Scsi_Host *shost, const char *buf,
7259 int len)
7260{
7261 struct scsi_qla_host *ha = to_qla_host(shost);
7262 struct dev_db_entry *fw_ddb_entry = NULL;
7263 dma_addr_t fw_ddb_entry_dma;
7264 struct device *dev;
7265 uint16_t idx = 0;
7266 uint16_t max_ddbs = 0;
7267 uint32_t options = 0;
7268 uint32_t rval = QLA_ERROR;
7269
Adheer Chandravanshic962c182013-03-25 08:08:32 -04007270 if (strncasecmp(PORTAL_TYPE_IPV4, buf, 4) &&
7271 strncasecmp(PORTAL_TYPE_IPV6, buf, 4)) {
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007272 DEBUG2(ql4_printk(KERN_ERR, ha, "%s: Invalid portal type\n",
7273 __func__));
7274 goto exit_ddb_add;
7275 }
7276
Adheer Chandravanshia957a7d2013-04-05 07:06:08 -04007277 max_ddbs = is_qla40XX(ha) ? MAX_PRST_DEV_DB_ENTRIES :
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007278 MAX_DEV_DB_ENTRIES;
7279
7280 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
7281 &fw_ddb_entry_dma, GFP_KERNEL);
7282 if (!fw_ddb_entry) {
7283 DEBUG2(ql4_printk(KERN_ERR, ha,
7284 "%s: Unable to allocate dma buffer\n",
7285 __func__));
7286 goto exit_ddb_add;
7287 }
7288
7289 dev = iscsi_find_flashnode_sess(ha->host, NULL,
7290 qla4xxx_sysfs_ddb_is_non_persistent);
7291 if (dev) {
7292 ql4_printk(KERN_ERR, ha,
7293 "%s: A non-persistent entry %s found\n",
7294 __func__, dev->kobj.name);
Mike Christie8526cb12013-05-06 12:06:56 -05007295 put_device(dev);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007296 goto exit_ddb_add;
7297 }
7298
Adheer Chandravanshi99937572013-07-08 08:33:09 -04007299 /* Index 0 and 1 are reserved for boot target entries */
7300 for (idx = 2; idx < max_ddbs; idx++) {
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007301 if (qla4xxx_flashdb_by_index(ha, fw_ddb_entry,
7302 fw_ddb_entry_dma, idx))
7303 break;
7304 }
7305
7306 if (idx == max_ddbs)
7307 goto exit_ddb_add;
7308
7309 if (!strncasecmp("ipv6", buf, 4))
7310 options |= IPV6_DEFAULT_DDB_ENTRY;
7311
7312 rval = qla4xxx_get_default_ddb(ha, options, fw_ddb_entry_dma);
7313 if (rval == QLA_ERROR)
7314 goto exit_ddb_add;
7315
7316 rval = qla4xxx_sysfs_ddb_tgt_create(ha, fw_ddb_entry, &idx, 1);
7317
7318exit_ddb_add:
7319 if (fw_ddb_entry)
7320 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
7321 fw_ddb_entry, fw_ddb_entry_dma);
7322 if (rval == QLA_SUCCESS)
7323 return idx;
7324 else
7325 return -EIO;
7326}
7327
7328/**
7329 * qla4xxx_sysfs_ddb_apply - write the target ddb contents to Flash
7330 * @fnode_sess: pointer to session attrs of flash ddb entry
7331 * @fnode_conn: pointer to connection attrs of flash ddb entry
7332 *
7333 * This writes the contents of target ddb buffer to Flash with a valid cookie
7334 * value in order to make the ddb entry persistent.
7335 **/
7336static int qla4xxx_sysfs_ddb_apply(struct iscsi_bus_flash_session *fnode_sess,
7337 struct iscsi_bus_flash_conn *fnode_conn)
7338{
7339 struct Scsi_Host *shost = iscsi_flash_session_to_shost(fnode_sess);
7340 struct scsi_qla_host *ha = to_qla_host(shost);
7341 uint32_t dev_db_start_offset = FLASH_OFFSET_DB_INFO;
7342 struct dev_db_entry *fw_ddb_entry = NULL;
7343 dma_addr_t fw_ddb_entry_dma;
7344 uint32_t options = 0;
7345 int rval = 0;
7346
7347 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
7348 &fw_ddb_entry_dma, GFP_KERNEL);
7349 if (!fw_ddb_entry) {
7350 DEBUG2(ql4_printk(KERN_ERR, ha,
7351 "%s: Unable to allocate dma buffer\n",
7352 __func__));
7353 rval = -ENOMEM;
7354 goto exit_ddb_apply;
7355 }
7356
Adheer Chandravanshic962c182013-03-25 08:08:32 -04007357 if (!strncasecmp(fnode_sess->portal_type, PORTAL_TYPE_IPV6, 4))
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007358 options |= IPV6_DEFAULT_DDB_ENTRY;
7359
7360 rval = qla4xxx_get_default_ddb(ha, options, fw_ddb_entry_dma);
7361 if (rval == QLA_ERROR)
7362 goto exit_ddb_apply;
7363
7364 dev_db_start_offset += (fnode_sess->target_id *
7365 sizeof(*fw_ddb_entry));
7366
7367 qla4xxx_copy_to_fwddb_param(fnode_sess, fnode_conn, fw_ddb_entry);
7368 fw_ddb_entry->cookie = DDB_VALID_COOKIE;
7369
7370 rval = qla4xxx_set_flash(ha, fw_ddb_entry_dma, dev_db_start_offset,
7371 sizeof(*fw_ddb_entry), FLASH_OPT_RMW_COMMIT);
7372
7373 if (rval == QLA_SUCCESS) {
7374 fnode_sess->flash_state = DEV_DB_PERSISTENT;
7375 ql4_printk(KERN_INFO, ha,
7376 "%s: flash node %u of host %lu written to flash\n",
7377 __func__, fnode_sess->target_id, ha->host_no);
7378 } else {
7379 rval = -EIO;
7380 ql4_printk(KERN_ERR, ha,
7381 "%s: Error while writing flash node %u of host %lu to flash\n",
7382 __func__, fnode_sess->target_id, ha->host_no);
7383 }
7384
7385exit_ddb_apply:
7386 if (fw_ddb_entry)
7387 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
7388 fw_ddb_entry, fw_ddb_entry_dma);
7389 return rval;
7390}
7391
7392static ssize_t qla4xxx_sysfs_ddb_conn_open(struct scsi_qla_host *ha,
7393 struct dev_db_entry *fw_ddb_entry,
7394 uint16_t idx)
7395{
7396 struct dev_db_entry *ddb_entry = NULL;
7397 dma_addr_t ddb_entry_dma;
7398 unsigned long wtime;
7399 uint32_t mbx_sts = 0;
7400 uint32_t state = 0, conn_err = 0;
7401 uint16_t tmo = 0;
7402 int ret = 0;
7403
7404 ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*ddb_entry),
7405 &ddb_entry_dma, GFP_KERNEL);
7406 if (!ddb_entry) {
7407 DEBUG2(ql4_printk(KERN_ERR, ha,
7408 "%s: Unable to allocate dma buffer\n",
7409 __func__));
7410 return QLA_ERROR;
7411 }
7412
7413 memcpy(ddb_entry, fw_ddb_entry, sizeof(*ddb_entry));
7414
7415 ret = qla4xxx_set_ddb_entry(ha, idx, ddb_entry_dma, &mbx_sts);
7416 if (ret != QLA_SUCCESS) {
7417 DEBUG2(ql4_printk(KERN_ERR, ha,
7418 "%s: Unable to set ddb entry for index %d\n",
7419 __func__, idx));
7420 goto exit_ddb_conn_open;
7421 }
7422
7423 qla4xxx_conn_open(ha, idx);
7424
7425 /* To ensure that sendtargets is done, wait for at least 12 secs */
7426 tmo = ((ha->def_timeout > LOGIN_TOV) &&
7427 (ha->def_timeout < LOGIN_TOV * 10) ?
7428 ha->def_timeout : LOGIN_TOV);
7429
7430 DEBUG2(ql4_printk(KERN_INFO, ha,
7431 "Default time to wait for login to ddb %d\n", tmo));
7432
7433 wtime = jiffies + (HZ * tmo);
7434 do {
7435 ret = qla4xxx_get_fwddb_entry(ha, idx, NULL, 0, NULL,
7436 NULL, &state, &conn_err, NULL,
7437 NULL);
7438 if (ret == QLA_ERROR)
7439 continue;
7440
7441 if (state == DDB_DS_NO_CONNECTION_ACTIVE ||
7442 state == DDB_DS_SESSION_FAILED)
7443 break;
7444
7445 schedule_timeout_uninterruptible(HZ / 10);
7446 } while (time_after(wtime, jiffies));
7447
7448exit_ddb_conn_open:
7449 if (ddb_entry)
7450 dma_free_coherent(&ha->pdev->dev, sizeof(*ddb_entry),
7451 ddb_entry, ddb_entry_dma);
7452 return ret;
7453}
7454
7455static int qla4xxx_ddb_login_st(struct scsi_qla_host *ha,
Manish Rangankarad8bd452013-09-17 07:30:02 -04007456 struct dev_db_entry *fw_ddb_entry,
7457 uint16_t target_id)
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007458{
7459 struct qla_ddb_index *ddb_idx, *ddb_idx_tmp;
7460 struct list_head list_nt;
7461 uint16_t ddb_index;
7462 int ret = 0;
7463
7464 if (test_bit(AF_ST_DISCOVERY_IN_PROGRESS, &ha->flags)) {
7465 ql4_printk(KERN_WARNING, ha,
7466 "%s: A discovery already in progress!\n", __func__);
7467 return QLA_ERROR;
7468 }
7469
7470 INIT_LIST_HEAD(&list_nt);
7471
7472 set_bit(AF_ST_DISCOVERY_IN_PROGRESS, &ha->flags);
7473
7474 ret = qla4xxx_get_ddb_index(ha, &ddb_index);
7475 if (ret == QLA_ERROR)
7476 goto exit_login_st_clr_bit;
7477
7478 ret = qla4xxx_sysfs_ddb_conn_open(ha, fw_ddb_entry, ddb_index);
7479 if (ret == QLA_ERROR)
7480 goto exit_login_st;
7481
Manish Rangankarad8bd452013-09-17 07:30:02 -04007482 qla4xxx_build_new_nt_list(ha, &list_nt, target_id);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007483
7484 list_for_each_entry_safe(ddb_idx, ddb_idx_tmp, &list_nt, list) {
7485 list_del_init(&ddb_idx->list);
7486 qla4xxx_clear_ddb_entry(ha, ddb_idx->fw_ddb_idx);
7487 vfree(ddb_idx);
7488 }
7489
7490exit_login_st:
7491 if (qla4xxx_clear_ddb_entry(ha, ddb_index) == QLA_ERROR) {
7492 ql4_printk(KERN_ERR, ha,
7493 "Unable to clear DDB index = 0x%x\n", ddb_index);
7494 }
7495
7496 clear_bit(ddb_index, ha->ddb_idx_map);
7497
7498exit_login_st_clr_bit:
7499 clear_bit(AF_ST_DISCOVERY_IN_PROGRESS, &ha->flags);
7500 return ret;
7501}
7502
7503static int qla4xxx_ddb_login_nt(struct scsi_qla_host *ha,
7504 struct dev_db_entry *fw_ddb_entry,
7505 uint16_t idx)
7506{
7507 int ret = QLA_ERROR;
7508
Manish Rangankarad8bd452013-09-17 07:30:02 -04007509 ret = qla4xxx_is_session_exists(ha, fw_ddb_entry, NULL);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007510 if (ret != QLA_SUCCESS)
7511 ret = qla4xxx_sess_conn_setup(ha, fw_ddb_entry, RESET_ADAPTER,
7512 idx);
7513 else
7514 ret = -EPERM;
7515
7516 return ret;
7517}
7518
7519/**
7520 * qla4xxx_sysfs_ddb_login - Login to the specified target
7521 * @fnode_sess: pointer to session attrs of flash ddb entry
7522 * @fnode_conn: pointer to connection attrs of flash ddb entry
7523 *
7524 * This logs in to the specified target
7525 **/
7526static int qla4xxx_sysfs_ddb_login(struct iscsi_bus_flash_session *fnode_sess,
7527 struct iscsi_bus_flash_conn *fnode_conn)
7528{
7529 struct Scsi_Host *shost = iscsi_flash_session_to_shost(fnode_sess);
7530 struct scsi_qla_host *ha = to_qla_host(shost);
7531 struct dev_db_entry *fw_ddb_entry = NULL;
7532 dma_addr_t fw_ddb_entry_dma;
7533 uint32_t options = 0;
7534 int ret = 0;
7535
7536 if (fnode_sess->flash_state == DEV_DB_NON_PERSISTENT) {
7537 ql4_printk(KERN_ERR, ha,
7538 "%s: Target info is not persistent\n", __func__);
7539 ret = -EIO;
7540 goto exit_ddb_login;
7541 }
7542
7543 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
7544 &fw_ddb_entry_dma, GFP_KERNEL);
7545 if (!fw_ddb_entry) {
7546 DEBUG2(ql4_printk(KERN_ERR, ha,
7547 "%s: Unable to allocate dma buffer\n",
7548 __func__));
7549 ret = -ENOMEM;
7550 goto exit_ddb_login;
7551 }
7552
Adheer Chandravanshic962c182013-03-25 08:08:32 -04007553 if (!strncasecmp(fnode_sess->portal_type, PORTAL_TYPE_IPV6, 4))
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007554 options |= IPV6_DEFAULT_DDB_ENTRY;
7555
7556 ret = qla4xxx_get_default_ddb(ha, options, fw_ddb_entry_dma);
7557 if (ret == QLA_ERROR)
7558 goto exit_ddb_login;
7559
7560 qla4xxx_copy_to_fwddb_param(fnode_sess, fnode_conn, fw_ddb_entry);
7561 fw_ddb_entry->cookie = DDB_VALID_COOKIE;
7562
7563 if (strlen((char *)fw_ddb_entry->iscsi_name) == 0)
Manish Rangankarad8bd452013-09-17 07:30:02 -04007564 ret = qla4xxx_ddb_login_st(ha, fw_ddb_entry,
7565 fnode_sess->target_id);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007566 else
7567 ret = qla4xxx_ddb_login_nt(ha, fw_ddb_entry,
7568 fnode_sess->target_id);
7569
7570 if (ret > 0)
7571 ret = -EIO;
7572
7573exit_ddb_login:
7574 if (fw_ddb_entry)
7575 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
7576 fw_ddb_entry, fw_ddb_entry_dma);
7577 return ret;
7578}
7579
7580/**
7581 * qla4xxx_sysfs_ddb_logout_sid - Logout session for the specified target
7582 * @cls_sess: pointer to session to be logged out
7583 *
7584 * This performs session log out from the specified target
7585 **/
7586static int qla4xxx_sysfs_ddb_logout_sid(struct iscsi_cls_session *cls_sess)
7587{
7588 struct iscsi_session *sess;
7589 struct ddb_entry *ddb_entry = NULL;
7590 struct scsi_qla_host *ha;
7591 struct dev_db_entry *fw_ddb_entry = NULL;
7592 dma_addr_t fw_ddb_entry_dma;
7593 unsigned long flags;
7594 unsigned long wtime;
7595 uint32_t ddb_state;
7596 int options;
7597 int ret = 0;
7598
7599 sess = cls_sess->dd_data;
7600 ddb_entry = sess->dd_data;
7601 ha = ddb_entry->ha;
7602
7603 if (ddb_entry->ddb_type != FLASH_DDB) {
7604 ql4_printk(KERN_ERR, ha, "%s: Not a flash node session\n",
7605 __func__);
7606 ret = -ENXIO;
7607 goto exit_ddb_logout;
7608 }
7609
Adheer Chandravanshi37719c22013-04-05 07:06:07 -04007610 if (test_bit(DF_BOOT_TGT, &ddb_entry->flags)) {
7611 ql4_printk(KERN_ERR, ha,
7612 "%s: Logout from boot target entry is not permitted.\n",
7613 __func__);
7614 ret = -EPERM;
7615 goto exit_ddb_logout;
7616 }
7617
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007618 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
7619 &fw_ddb_entry_dma, GFP_KERNEL);
7620 if (!fw_ddb_entry) {
7621 ql4_printk(KERN_ERR, ha,
7622 "%s: Unable to allocate dma buffer\n", __func__);
7623 ret = -ENOMEM;
7624 goto exit_ddb_logout;
7625 }
7626
Adheer Chandravanshi99c6a332013-07-08 08:33:05 -04007627 if (test_and_set_bit(DF_DISABLE_RELOGIN, &ddb_entry->flags))
7628 goto ddb_logout_init;
7629
7630 ret = qla4xxx_get_fwddb_entry(ha, ddb_entry->fw_ddb_index,
7631 fw_ddb_entry, fw_ddb_entry_dma,
7632 NULL, NULL, &ddb_state, NULL,
7633 NULL, NULL);
7634 if (ret == QLA_ERROR)
7635 goto ddb_logout_init;
7636
7637 if (ddb_state == DDB_DS_SESSION_ACTIVE)
7638 goto ddb_logout_init;
7639
7640 /* wait until next relogin is triggered using DF_RELOGIN and
7641 * clear DF_RELOGIN to avoid invocation of further relogin
7642 */
7643 wtime = jiffies + (HZ * RELOGIN_TOV);
7644 do {
7645 if (test_and_clear_bit(DF_RELOGIN, &ddb_entry->flags))
7646 goto ddb_logout_init;
7647
7648 schedule_timeout_uninterruptible(HZ);
7649 } while ((time_after(wtime, jiffies)));
7650
7651ddb_logout_init:
7652 atomic_set(&ddb_entry->retry_relogin_timer, INVALID_ENTRY);
7653 atomic_set(&ddb_entry->relogin_timer, 0);
7654
7655 options = LOGOUT_OPTION_CLOSE_SESSION;
7656 qla4xxx_session_logout_ddb(ha, ddb_entry, options);
7657
7658 memset(fw_ddb_entry, 0, sizeof(*fw_ddb_entry));
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007659 wtime = jiffies + (HZ * LOGOUT_TOV);
7660 do {
7661 ret = qla4xxx_get_fwddb_entry(ha, ddb_entry->fw_ddb_index,
7662 fw_ddb_entry, fw_ddb_entry_dma,
7663 NULL, NULL, &ddb_state, NULL,
7664 NULL, NULL);
7665 if (ret == QLA_ERROR)
7666 goto ddb_logout_clr_sess;
7667
7668 if ((ddb_state == DDB_DS_NO_CONNECTION_ACTIVE) ||
7669 (ddb_state == DDB_DS_SESSION_FAILED))
7670 goto ddb_logout_clr_sess;
7671
7672 schedule_timeout_uninterruptible(HZ);
7673 } while ((time_after(wtime, jiffies)));
7674
7675ddb_logout_clr_sess:
7676 qla4xxx_clear_ddb_entry(ha, ddb_entry->fw_ddb_index);
7677 /*
7678 * we have decremented the reference count of the driver
7679 * when we setup the session to have the driver unload
7680 * to be seamless without actually destroying the
7681 * session
7682 **/
7683 try_module_get(qla4xxx_iscsi_transport.owner);
7684 iscsi_destroy_endpoint(ddb_entry->conn->ep);
7685
7686 spin_lock_irqsave(&ha->hardware_lock, flags);
7687 qla4xxx_free_ddb(ha, ddb_entry);
Adheer Chandravanshi99c6a332013-07-08 08:33:05 -04007688 clear_bit(ddb_entry->fw_ddb_index, ha->ddb_idx_map);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007689 spin_unlock_irqrestore(&ha->hardware_lock, flags);
7690
7691 iscsi_session_teardown(ddb_entry->sess);
7692
Adheer Chandravanshi99c6a332013-07-08 08:33:05 -04007693 clear_bit(DF_DISABLE_RELOGIN, &ddb_entry->flags);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007694 ret = QLA_SUCCESS;
7695
7696exit_ddb_logout:
7697 if (fw_ddb_entry)
7698 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
7699 fw_ddb_entry, fw_ddb_entry_dma);
7700 return ret;
7701}
7702
7703/**
7704 * qla4xxx_sysfs_ddb_logout - Logout from the specified target
7705 * @fnode_sess: pointer to session attrs of flash ddb entry
7706 * @fnode_conn: pointer to connection attrs of flash ddb entry
7707 *
7708 * This performs log out from the specified target
7709 **/
7710static int qla4xxx_sysfs_ddb_logout(struct iscsi_bus_flash_session *fnode_sess,
7711 struct iscsi_bus_flash_conn *fnode_conn)
7712{
7713 struct Scsi_Host *shost = iscsi_flash_session_to_shost(fnode_sess);
7714 struct scsi_qla_host *ha = to_qla_host(shost);
7715 struct ql4_tuple_ddb *flash_tddb = NULL;
7716 struct ql4_tuple_ddb *tmp_tddb = NULL;
7717 struct dev_db_entry *fw_ddb_entry = NULL;
7718 struct ddb_entry *ddb_entry = NULL;
7719 dma_addr_t fw_ddb_dma;
7720 uint32_t next_idx = 0;
7721 uint32_t state = 0, conn_err = 0;
7722 uint16_t conn_id = 0;
7723 int idx, index;
7724 int status, ret = 0;
7725
7726 fw_ddb_entry = dma_pool_alloc(ha->fw_ddb_dma_pool, GFP_KERNEL,
7727 &fw_ddb_dma);
7728 if (fw_ddb_entry == NULL) {
7729 ql4_printk(KERN_ERR, ha, "%s:Out of memory\n", __func__);
7730 ret = -ENOMEM;
7731 goto exit_ddb_logout;
7732 }
7733
7734 flash_tddb = vzalloc(sizeof(*flash_tddb));
7735 if (!flash_tddb) {
7736 ql4_printk(KERN_WARNING, ha,
7737 "%s:Memory Allocation failed.\n", __func__);
7738 ret = -ENOMEM;
7739 goto exit_ddb_logout;
7740 }
7741
7742 tmp_tddb = vzalloc(sizeof(*tmp_tddb));
7743 if (!tmp_tddb) {
7744 ql4_printk(KERN_WARNING, ha,
7745 "%s:Memory Allocation failed.\n", __func__);
7746 ret = -ENOMEM;
7747 goto exit_ddb_logout;
7748 }
7749
7750 if (!fnode_sess->targetname) {
7751 ql4_printk(KERN_ERR, ha,
7752 "%s:Cannot logout from SendTarget entry\n",
7753 __func__);
7754 ret = -EPERM;
7755 goto exit_ddb_logout;
7756 }
7757
7758 if (fnode_sess->is_boot_target) {
7759 ql4_printk(KERN_ERR, ha,
7760 "%s: Logout from boot target entry is not permitted.\n",
7761 __func__);
7762 ret = -EPERM;
7763 goto exit_ddb_logout;
7764 }
7765
7766 strncpy(flash_tddb->iscsi_name, fnode_sess->targetname,
7767 ISCSI_NAME_SIZE);
7768
Adheer Chandravanshic962c182013-03-25 08:08:32 -04007769 if (!strncmp(fnode_sess->portal_type, PORTAL_TYPE_IPV6, 4))
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007770 sprintf(flash_tddb->ip_addr, "%pI6", fnode_conn->ipaddress);
7771 else
7772 sprintf(flash_tddb->ip_addr, "%pI4", fnode_conn->ipaddress);
7773
7774 flash_tddb->tpgt = fnode_sess->tpgt;
7775 flash_tddb->port = fnode_conn->port;
7776
7777 COPY_ISID(flash_tddb->isid, fnode_sess->isid);
7778
7779 for (idx = 0; idx < MAX_DDB_ENTRIES; idx++) {
7780 ddb_entry = qla4xxx_lookup_ddb_by_fw_index(ha, idx);
7781 if (ddb_entry == NULL)
7782 continue;
7783
7784 if (ddb_entry->ddb_type != FLASH_DDB)
7785 continue;
7786
7787 index = ddb_entry->sess->target_id;
7788 status = qla4xxx_get_fwddb_entry(ha, index, fw_ddb_entry,
7789 fw_ddb_dma, NULL, &next_idx,
7790 &state, &conn_err, NULL,
7791 &conn_id);
7792 if (status == QLA_ERROR) {
7793 ret = -ENOMEM;
7794 break;
7795 }
7796
7797 qla4xxx_convert_param_ddb(fw_ddb_entry, tmp_tddb, NULL);
7798
7799 status = qla4xxx_compare_tuple_ddb(ha, flash_tddb, tmp_tddb,
7800 true);
7801 if (status == QLA_SUCCESS) {
7802 ret = qla4xxx_sysfs_ddb_logout_sid(ddb_entry->sess);
7803 break;
7804 }
7805 }
7806
7807 if (idx == MAX_DDB_ENTRIES)
7808 ret = -ESRCH;
7809
7810exit_ddb_logout:
7811 if (flash_tddb)
7812 vfree(flash_tddb);
7813 if (tmp_tddb)
7814 vfree(tmp_tddb);
7815 if (fw_ddb_entry)
7816 dma_pool_free(ha->fw_ddb_dma_pool, fw_ddb_entry, fw_ddb_dma);
7817
7818 return ret;
7819}
7820
7821static int
7822qla4xxx_sysfs_ddb_get_param(struct iscsi_bus_flash_session *fnode_sess,
7823 int param, char *buf)
7824{
7825 struct Scsi_Host *shost = iscsi_flash_session_to_shost(fnode_sess);
7826 struct scsi_qla_host *ha = to_qla_host(shost);
7827 struct iscsi_bus_flash_conn *fnode_conn;
7828 struct ql4_chap_table chap_tbl;
7829 struct device *dev;
Adheer Chandravanshia2f76632013-07-08 08:33:08 -04007830 int parent_type;
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007831 int rc = 0;
7832
Mike Christie8526cb12013-05-06 12:06:56 -05007833 dev = iscsi_find_flashnode_conn(fnode_sess);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007834 if (!dev)
7835 return -EIO;
7836
7837 fnode_conn = iscsi_dev_to_flash_conn(dev);
7838
7839 switch (param) {
7840 case ISCSI_FLASHNODE_IS_FW_ASSIGNED_IPV6:
7841 rc = sprintf(buf, "%u\n", fnode_conn->is_fw_assigned_ipv6);
7842 break;
7843 case ISCSI_FLASHNODE_PORTAL_TYPE:
7844 rc = sprintf(buf, "%s\n", fnode_sess->portal_type);
7845 break;
7846 case ISCSI_FLASHNODE_AUTO_SND_TGT_DISABLE:
7847 rc = sprintf(buf, "%u\n", fnode_sess->auto_snd_tgt_disable);
7848 break;
7849 case ISCSI_FLASHNODE_DISCOVERY_SESS:
7850 rc = sprintf(buf, "%u\n", fnode_sess->discovery_sess);
7851 break;
7852 case ISCSI_FLASHNODE_ENTRY_EN:
7853 rc = sprintf(buf, "%u\n", fnode_sess->entry_state);
7854 break;
7855 case ISCSI_FLASHNODE_HDR_DGST_EN:
7856 rc = sprintf(buf, "%u\n", fnode_conn->hdrdgst_en);
7857 break;
7858 case ISCSI_FLASHNODE_DATA_DGST_EN:
7859 rc = sprintf(buf, "%u\n", fnode_conn->datadgst_en);
7860 break;
7861 case ISCSI_FLASHNODE_IMM_DATA_EN:
7862 rc = sprintf(buf, "%u\n", fnode_sess->imm_data_en);
7863 break;
7864 case ISCSI_FLASHNODE_INITIAL_R2T_EN:
7865 rc = sprintf(buf, "%u\n", fnode_sess->initial_r2t_en);
7866 break;
7867 case ISCSI_FLASHNODE_DATASEQ_INORDER:
7868 rc = sprintf(buf, "%u\n", fnode_sess->dataseq_inorder_en);
7869 break;
7870 case ISCSI_FLASHNODE_PDU_INORDER:
7871 rc = sprintf(buf, "%u\n", fnode_sess->pdu_inorder_en);
7872 break;
7873 case ISCSI_FLASHNODE_CHAP_AUTH_EN:
7874 rc = sprintf(buf, "%u\n", fnode_sess->chap_auth_en);
7875 break;
7876 case ISCSI_FLASHNODE_SNACK_REQ_EN:
7877 rc = sprintf(buf, "%u\n", fnode_conn->snack_req_en);
7878 break;
7879 case ISCSI_FLASHNODE_DISCOVERY_LOGOUT_EN:
7880 rc = sprintf(buf, "%u\n", fnode_sess->discovery_logout_en);
7881 break;
7882 case ISCSI_FLASHNODE_BIDI_CHAP_EN:
7883 rc = sprintf(buf, "%u\n", fnode_sess->bidi_chap_en);
7884 break;
7885 case ISCSI_FLASHNODE_DISCOVERY_AUTH_OPTIONAL:
7886 rc = sprintf(buf, "%u\n", fnode_sess->discovery_auth_optional);
7887 break;
7888 case ISCSI_FLASHNODE_ERL:
7889 rc = sprintf(buf, "%u\n", fnode_sess->erl);
7890 break;
7891 case ISCSI_FLASHNODE_TCP_TIMESTAMP_STAT:
7892 rc = sprintf(buf, "%u\n", fnode_conn->tcp_timestamp_stat);
7893 break;
7894 case ISCSI_FLASHNODE_TCP_NAGLE_DISABLE:
7895 rc = sprintf(buf, "%u\n", fnode_conn->tcp_nagle_disable);
7896 break;
7897 case ISCSI_FLASHNODE_TCP_WSF_DISABLE:
7898 rc = sprintf(buf, "%u\n", fnode_conn->tcp_wsf_disable);
7899 break;
7900 case ISCSI_FLASHNODE_TCP_TIMER_SCALE:
7901 rc = sprintf(buf, "%u\n", fnode_conn->tcp_timer_scale);
7902 break;
7903 case ISCSI_FLASHNODE_TCP_TIMESTAMP_EN:
7904 rc = sprintf(buf, "%u\n", fnode_conn->tcp_timestamp_en);
7905 break;
7906 case ISCSI_FLASHNODE_IP_FRAG_DISABLE:
7907 rc = sprintf(buf, "%u\n", fnode_conn->fragment_disable);
7908 break;
7909 case ISCSI_FLASHNODE_MAX_RECV_DLENGTH:
7910 rc = sprintf(buf, "%u\n", fnode_conn->max_recv_dlength);
7911 break;
7912 case ISCSI_FLASHNODE_MAX_XMIT_DLENGTH:
7913 rc = sprintf(buf, "%u\n", fnode_conn->max_xmit_dlength);
7914 break;
7915 case ISCSI_FLASHNODE_FIRST_BURST:
7916 rc = sprintf(buf, "%u\n", fnode_sess->first_burst);
7917 break;
7918 case ISCSI_FLASHNODE_DEF_TIME2WAIT:
7919 rc = sprintf(buf, "%u\n", fnode_sess->time2wait);
7920 break;
7921 case ISCSI_FLASHNODE_DEF_TIME2RETAIN:
7922 rc = sprintf(buf, "%u\n", fnode_sess->time2retain);
7923 break;
7924 case ISCSI_FLASHNODE_MAX_R2T:
7925 rc = sprintf(buf, "%u\n", fnode_sess->max_r2t);
7926 break;
7927 case ISCSI_FLASHNODE_KEEPALIVE_TMO:
7928 rc = sprintf(buf, "%u\n", fnode_conn->keepalive_timeout);
7929 break;
7930 case ISCSI_FLASHNODE_ISID:
7931 rc = sprintf(buf, "%02x%02x%02x%02x%02x%02x\n",
7932 fnode_sess->isid[0], fnode_sess->isid[1],
7933 fnode_sess->isid[2], fnode_sess->isid[3],
7934 fnode_sess->isid[4], fnode_sess->isid[5]);
7935 break;
7936 case ISCSI_FLASHNODE_TSID:
7937 rc = sprintf(buf, "%u\n", fnode_sess->tsid);
7938 break;
7939 case ISCSI_FLASHNODE_PORT:
7940 rc = sprintf(buf, "%d\n", fnode_conn->port);
7941 break;
7942 case ISCSI_FLASHNODE_MAX_BURST:
7943 rc = sprintf(buf, "%u\n", fnode_sess->max_burst);
7944 break;
7945 case ISCSI_FLASHNODE_DEF_TASKMGMT_TMO:
7946 rc = sprintf(buf, "%u\n",
7947 fnode_sess->default_taskmgmt_timeout);
7948 break;
7949 case ISCSI_FLASHNODE_IPADDR:
Adheer Chandravanshic962c182013-03-25 08:08:32 -04007950 if (!strncmp(fnode_sess->portal_type, PORTAL_TYPE_IPV6, 4))
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007951 rc = sprintf(buf, "%pI6\n", fnode_conn->ipaddress);
7952 else
7953 rc = sprintf(buf, "%pI4\n", fnode_conn->ipaddress);
7954 break;
7955 case ISCSI_FLASHNODE_ALIAS:
7956 if (fnode_sess->targetalias)
7957 rc = sprintf(buf, "%s\n", fnode_sess->targetalias);
7958 else
7959 rc = sprintf(buf, "\n");
7960 break;
7961 case ISCSI_FLASHNODE_REDIRECT_IPADDR:
Adheer Chandravanshic962c182013-03-25 08:08:32 -04007962 if (!strncmp(fnode_sess->portal_type, PORTAL_TYPE_IPV6, 4))
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007963 rc = sprintf(buf, "%pI6\n",
7964 fnode_conn->redirect_ipaddr);
7965 else
7966 rc = sprintf(buf, "%pI4\n",
7967 fnode_conn->redirect_ipaddr);
7968 break;
7969 case ISCSI_FLASHNODE_MAX_SEGMENT_SIZE:
7970 rc = sprintf(buf, "%u\n", fnode_conn->max_segment_size);
7971 break;
7972 case ISCSI_FLASHNODE_LOCAL_PORT:
7973 rc = sprintf(buf, "%u\n", fnode_conn->local_port);
7974 break;
7975 case ISCSI_FLASHNODE_IPV4_TOS:
7976 rc = sprintf(buf, "%u\n", fnode_conn->ipv4_tos);
7977 break;
7978 case ISCSI_FLASHNODE_IPV6_TC:
Adheer Chandravanshic962c182013-03-25 08:08:32 -04007979 if (!strncmp(fnode_sess->portal_type, PORTAL_TYPE_IPV6, 4))
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007980 rc = sprintf(buf, "%u\n",
7981 fnode_conn->ipv6_traffic_class);
7982 else
7983 rc = sprintf(buf, "\n");
7984 break;
7985 case ISCSI_FLASHNODE_IPV6_FLOW_LABEL:
7986 rc = sprintf(buf, "%u\n", fnode_conn->ipv6_flow_label);
7987 break;
7988 case ISCSI_FLASHNODE_LINK_LOCAL_IPV6:
Adheer Chandravanshic962c182013-03-25 08:08:32 -04007989 if (!strncmp(fnode_sess->portal_type, PORTAL_TYPE_IPV6, 4))
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007990 rc = sprintf(buf, "%pI6\n",
7991 fnode_conn->link_local_ipv6_addr);
7992 else
7993 rc = sprintf(buf, "\n");
7994 break;
7995 case ISCSI_FLASHNODE_DISCOVERY_PARENT_IDX:
Adheer Chandravanshia2f76632013-07-08 08:33:08 -04007996 rc = sprintf(buf, "%u\n", fnode_sess->discovery_parent_idx);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04007997 break;
7998 case ISCSI_FLASHNODE_DISCOVERY_PARENT_TYPE:
7999 if (fnode_sess->discovery_parent_type == DDB_ISNS)
8000 parent_type = ISCSI_DISC_PARENT_ISNS;
8001 else if (fnode_sess->discovery_parent_type == DDB_NO_LINK)
8002 parent_type = ISCSI_DISC_PARENT_UNKNOWN;
Vikas Chaudharyb6130ce2013-04-17 05:15:26 -04008003 else if (fnode_sess->discovery_parent_type < MAX_DDB_ENTRIES)
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008004 parent_type = ISCSI_DISC_PARENT_SENDTGT;
8005 else
8006 parent_type = ISCSI_DISC_PARENT_UNKNOWN;
8007
8008 rc = sprintf(buf, "%s\n",
8009 iscsi_get_discovery_parent_name(parent_type));
8010 break;
8011 case ISCSI_FLASHNODE_NAME:
8012 if (fnode_sess->targetname)
8013 rc = sprintf(buf, "%s\n", fnode_sess->targetname);
8014 else
8015 rc = sprintf(buf, "\n");
8016 break;
8017 case ISCSI_FLASHNODE_TPGT:
8018 rc = sprintf(buf, "%u\n", fnode_sess->tpgt);
8019 break;
8020 case ISCSI_FLASHNODE_TCP_XMIT_WSF:
8021 rc = sprintf(buf, "%u\n", fnode_conn->tcp_xmit_wsf);
8022 break;
8023 case ISCSI_FLASHNODE_TCP_RECV_WSF:
8024 rc = sprintf(buf, "%u\n", fnode_conn->tcp_recv_wsf);
8025 break;
8026 case ISCSI_FLASHNODE_CHAP_OUT_IDX:
8027 rc = sprintf(buf, "%u\n", fnode_sess->chap_out_idx);
8028 break;
8029 case ISCSI_FLASHNODE_USERNAME:
8030 if (fnode_sess->chap_auth_en) {
8031 qla4xxx_get_uni_chap_at_index(ha,
8032 chap_tbl.name,
8033 chap_tbl.secret,
8034 fnode_sess->chap_out_idx);
8035 rc = sprintf(buf, "%s\n", chap_tbl.name);
8036 } else {
8037 rc = sprintf(buf, "\n");
8038 }
8039 break;
8040 case ISCSI_FLASHNODE_PASSWORD:
8041 if (fnode_sess->chap_auth_en) {
8042 qla4xxx_get_uni_chap_at_index(ha,
8043 chap_tbl.name,
8044 chap_tbl.secret,
8045 fnode_sess->chap_out_idx);
8046 rc = sprintf(buf, "%s\n", chap_tbl.secret);
8047 } else {
8048 rc = sprintf(buf, "\n");
8049 }
8050 break;
8051 case ISCSI_FLASHNODE_STATSN:
8052 rc = sprintf(buf, "%u\n", fnode_conn->statsn);
8053 break;
8054 case ISCSI_FLASHNODE_EXP_STATSN:
8055 rc = sprintf(buf, "%u\n", fnode_conn->exp_statsn);
8056 break;
8057 case ISCSI_FLASHNODE_IS_BOOT_TGT:
8058 rc = sprintf(buf, "%u\n", fnode_sess->is_boot_target);
8059 break;
8060 default:
8061 rc = -ENOSYS;
8062 break;
8063 }
Mike Christie8526cb12013-05-06 12:06:56 -05008064
8065 put_device(dev);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008066 return rc;
8067}
8068
8069/**
8070 * qla4xxx_sysfs_ddb_set_param - Set parameter for firmware DDB entry
8071 * @fnode_sess: pointer to session attrs of flash ddb entry
8072 * @fnode_conn: pointer to connection attrs of flash ddb entry
8073 * @data: Parameters and their values to update
8074 * @len: len of data
8075 *
8076 * This sets the parameter of flash ddb entry and writes them to flash
8077 **/
8078static int
8079qla4xxx_sysfs_ddb_set_param(struct iscsi_bus_flash_session *fnode_sess,
8080 struct iscsi_bus_flash_conn *fnode_conn,
8081 void *data, int len)
8082{
8083 struct Scsi_Host *shost = iscsi_flash_session_to_shost(fnode_sess);
8084 struct scsi_qla_host *ha = to_qla_host(shost);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008085 struct iscsi_flashnode_param_info *fnode_param;
Adheer Chandravanshi244c0792013-09-17 07:54:45 -04008086 struct ql4_chap_table chap_tbl;
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008087 struct nlattr *attr;
Adheer Chandravanshi244c0792013-09-17 07:54:45 -04008088 uint16_t chap_out_idx = INVALID_ENTRY;
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008089 int rc = QLA_ERROR;
8090 uint32_t rem = len;
8091
Adheer Chandravanshi244c0792013-09-17 07:54:45 -04008092 memset((void *)&chap_tbl, 0, sizeof(chap_tbl));
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008093 nla_for_each_attr(attr, data, len, rem) {
8094 fnode_param = nla_data(attr);
8095
8096 switch (fnode_param->param) {
8097 case ISCSI_FLASHNODE_IS_FW_ASSIGNED_IPV6:
8098 fnode_conn->is_fw_assigned_ipv6 = fnode_param->value[0];
8099 break;
8100 case ISCSI_FLASHNODE_PORTAL_TYPE:
8101 memcpy(fnode_sess->portal_type, fnode_param->value,
8102 strlen(fnode_sess->portal_type));
8103 break;
8104 case ISCSI_FLASHNODE_AUTO_SND_TGT_DISABLE:
8105 fnode_sess->auto_snd_tgt_disable =
8106 fnode_param->value[0];
8107 break;
8108 case ISCSI_FLASHNODE_DISCOVERY_SESS:
8109 fnode_sess->discovery_sess = fnode_param->value[0];
8110 break;
8111 case ISCSI_FLASHNODE_ENTRY_EN:
8112 fnode_sess->entry_state = fnode_param->value[0];
8113 break;
8114 case ISCSI_FLASHNODE_HDR_DGST_EN:
8115 fnode_conn->hdrdgst_en = fnode_param->value[0];
8116 break;
8117 case ISCSI_FLASHNODE_DATA_DGST_EN:
8118 fnode_conn->datadgst_en = fnode_param->value[0];
8119 break;
8120 case ISCSI_FLASHNODE_IMM_DATA_EN:
8121 fnode_sess->imm_data_en = fnode_param->value[0];
8122 break;
8123 case ISCSI_FLASHNODE_INITIAL_R2T_EN:
8124 fnode_sess->initial_r2t_en = fnode_param->value[0];
8125 break;
8126 case ISCSI_FLASHNODE_DATASEQ_INORDER:
8127 fnode_sess->dataseq_inorder_en = fnode_param->value[0];
8128 break;
8129 case ISCSI_FLASHNODE_PDU_INORDER:
8130 fnode_sess->pdu_inorder_en = fnode_param->value[0];
8131 break;
8132 case ISCSI_FLASHNODE_CHAP_AUTH_EN:
8133 fnode_sess->chap_auth_en = fnode_param->value[0];
Adheer Chandravanshi244c0792013-09-17 07:54:45 -04008134 /* Invalidate chap index if chap auth is disabled */
8135 if (!fnode_sess->chap_auth_en)
8136 fnode_sess->chap_out_idx = INVALID_ENTRY;
8137
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008138 break;
8139 case ISCSI_FLASHNODE_SNACK_REQ_EN:
8140 fnode_conn->snack_req_en = fnode_param->value[0];
8141 break;
8142 case ISCSI_FLASHNODE_DISCOVERY_LOGOUT_EN:
8143 fnode_sess->discovery_logout_en = fnode_param->value[0];
8144 break;
8145 case ISCSI_FLASHNODE_BIDI_CHAP_EN:
8146 fnode_sess->bidi_chap_en = fnode_param->value[0];
8147 break;
8148 case ISCSI_FLASHNODE_DISCOVERY_AUTH_OPTIONAL:
8149 fnode_sess->discovery_auth_optional =
8150 fnode_param->value[0];
8151 break;
8152 case ISCSI_FLASHNODE_ERL:
8153 fnode_sess->erl = fnode_param->value[0];
8154 break;
8155 case ISCSI_FLASHNODE_TCP_TIMESTAMP_STAT:
8156 fnode_conn->tcp_timestamp_stat = fnode_param->value[0];
8157 break;
8158 case ISCSI_FLASHNODE_TCP_NAGLE_DISABLE:
8159 fnode_conn->tcp_nagle_disable = fnode_param->value[0];
8160 break;
8161 case ISCSI_FLASHNODE_TCP_WSF_DISABLE:
8162 fnode_conn->tcp_wsf_disable = fnode_param->value[0];
8163 break;
8164 case ISCSI_FLASHNODE_TCP_TIMER_SCALE:
8165 fnode_conn->tcp_timer_scale = fnode_param->value[0];
8166 break;
8167 case ISCSI_FLASHNODE_TCP_TIMESTAMP_EN:
8168 fnode_conn->tcp_timestamp_en = fnode_param->value[0];
8169 break;
8170 case ISCSI_FLASHNODE_IP_FRAG_DISABLE:
8171 fnode_conn->fragment_disable = fnode_param->value[0];
8172 break;
8173 case ISCSI_FLASHNODE_MAX_RECV_DLENGTH:
8174 fnode_conn->max_recv_dlength =
8175 *(unsigned *)fnode_param->value;
8176 break;
8177 case ISCSI_FLASHNODE_MAX_XMIT_DLENGTH:
8178 fnode_conn->max_xmit_dlength =
8179 *(unsigned *)fnode_param->value;
8180 break;
8181 case ISCSI_FLASHNODE_FIRST_BURST:
8182 fnode_sess->first_burst =
8183 *(unsigned *)fnode_param->value;
8184 break;
8185 case ISCSI_FLASHNODE_DEF_TIME2WAIT:
8186 fnode_sess->time2wait = *(uint16_t *)fnode_param->value;
8187 break;
8188 case ISCSI_FLASHNODE_DEF_TIME2RETAIN:
8189 fnode_sess->time2retain =
8190 *(uint16_t *)fnode_param->value;
8191 break;
8192 case ISCSI_FLASHNODE_MAX_R2T:
8193 fnode_sess->max_r2t =
8194 *(uint16_t *)fnode_param->value;
8195 break;
8196 case ISCSI_FLASHNODE_KEEPALIVE_TMO:
8197 fnode_conn->keepalive_timeout =
8198 *(uint16_t *)fnode_param->value;
8199 break;
8200 case ISCSI_FLASHNODE_ISID:
8201 memcpy(fnode_sess->isid, fnode_param->value,
8202 sizeof(fnode_sess->isid));
8203 break;
8204 case ISCSI_FLASHNODE_TSID:
8205 fnode_sess->tsid = *(uint16_t *)fnode_param->value;
8206 break;
8207 case ISCSI_FLASHNODE_PORT:
8208 fnode_conn->port = *(uint16_t *)fnode_param->value;
8209 break;
8210 case ISCSI_FLASHNODE_MAX_BURST:
8211 fnode_sess->max_burst = *(unsigned *)fnode_param->value;
8212 break;
8213 case ISCSI_FLASHNODE_DEF_TASKMGMT_TMO:
8214 fnode_sess->default_taskmgmt_timeout =
8215 *(uint16_t *)fnode_param->value;
8216 break;
8217 case ISCSI_FLASHNODE_IPADDR:
8218 memcpy(fnode_conn->ipaddress, fnode_param->value,
8219 IPv6_ADDR_LEN);
8220 break;
8221 case ISCSI_FLASHNODE_ALIAS:
8222 rc = iscsi_switch_str_param(&fnode_sess->targetalias,
8223 (char *)fnode_param->value);
8224 break;
8225 case ISCSI_FLASHNODE_REDIRECT_IPADDR:
8226 memcpy(fnode_conn->redirect_ipaddr, fnode_param->value,
8227 IPv6_ADDR_LEN);
8228 break;
8229 case ISCSI_FLASHNODE_MAX_SEGMENT_SIZE:
8230 fnode_conn->max_segment_size =
8231 *(unsigned *)fnode_param->value;
8232 break;
8233 case ISCSI_FLASHNODE_LOCAL_PORT:
8234 fnode_conn->local_port =
8235 *(uint16_t *)fnode_param->value;
8236 break;
8237 case ISCSI_FLASHNODE_IPV4_TOS:
8238 fnode_conn->ipv4_tos = fnode_param->value[0];
8239 break;
8240 case ISCSI_FLASHNODE_IPV6_TC:
8241 fnode_conn->ipv6_traffic_class = fnode_param->value[0];
8242 break;
8243 case ISCSI_FLASHNODE_IPV6_FLOW_LABEL:
8244 fnode_conn->ipv6_flow_label = fnode_param->value[0];
8245 break;
8246 case ISCSI_FLASHNODE_NAME:
8247 rc = iscsi_switch_str_param(&fnode_sess->targetname,
8248 (char *)fnode_param->value);
8249 break;
8250 case ISCSI_FLASHNODE_TPGT:
8251 fnode_sess->tpgt = *(uint16_t *)fnode_param->value;
8252 break;
8253 case ISCSI_FLASHNODE_LINK_LOCAL_IPV6:
8254 memcpy(fnode_conn->link_local_ipv6_addr,
8255 fnode_param->value, IPv6_ADDR_LEN);
8256 break;
Adheer Chandravanshi65560162013-07-08 08:33:06 -04008257 case ISCSI_FLASHNODE_DISCOVERY_PARENT_IDX:
8258 fnode_sess->discovery_parent_idx =
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008259 *(uint16_t *)fnode_param->value;
8260 break;
8261 case ISCSI_FLASHNODE_TCP_XMIT_WSF:
8262 fnode_conn->tcp_xmit_wsf =
8263 *(uint8_t *)fnode_param->value;
8264 break;
8265 case ISCSI_FLASHNODE_TCP_RECV_WSF:
8266 fnode_conn->tcp_recv_wsf =
8267 *(uint8_t *)fnode_param->value;
8268 break;
8269 case ISCSI_FLASHNODE_STATSN:
8270 fnode_conn->statsn = *(uint32_t *)fnode_param->value;
8271 break;
8272 case ISCSI_FLASHNODE_EXP_STATSN:
8273 fnode_conn->exp_statsn =
8274 *(uint32_t *)fnode_param->value;
8275 break;
Adheer Chandravanshi244c0792013-09-17 07:54:45 -04008276 case ISCSI_FLASHNODE_CHAP_OUT_IDX:
8277 chap_out_idx = *(uint16_t *)fnode_param->value;
8278 if (!qla4xxx_get_uni_chap_at_index(ha,
8279 chap_tbl.name,
8280 chap_tbl.secret,
8281 chap_out_idx)) {
8282 fnode_sess->chap_out_idx = chap_out_idx;
8283 /* Enable chap auth if chap index is valid */
8284 fnode_sess->chap_auth_en = QL4_PARAM_ENABLE;
8285 }
8286 break;
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008287 default:
8288 ql4_printk(KERN_ERR, ha,
8289 "%s: No such sysfs attribute\n", __func__);
8290 rc = -ENOSYS;
8291 goto exit_set_param;
8292 }
8293 }
8294
8295 rc = qla4xxx_sysfs_ddb_apply(fnode_sess, fnode_conn);
8296
8297exit_set_param:
8298 return rc;
8299}
8300
8301/**
8302 * qla4xxx_sysfs_ddb_delete - Delete firmware DDB entry
8303 * @fnode_sess: pointer to session attrs of flash ddb entry
8304 *
8305 * This invalidates the flash ddb entry at the given index
8306 **/
8307static int qla4xxx_sysfs_ddb_delete(struct iscsi_bus_flash_session *fnode_sess)
8308{
8309 struct Scsi_Host *shost = iscsi_flash_session_to_shost(fnode_sess);
8310 struct scsi_qla_host *ha = to_qla_host(shost);
8311 uint32_t dev_db_start_offset;
8312 uint32_t dev_db_end_offset;
8313 struct dev_db_entry *fw_ddb_entry = NULL;
8314 dma_addr_t fw_ddb_entry_dma;
8315 uint16_t *ddb_cookie = NULL;
Vikas Chaudharyb6130ce2013-04-17 05:15:26 -04008316 size_t ddb_size = 0;
Adheer Chandravanshi039acc12013-04-05 07:06:06 -04008317 void *pddb = NULL;
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008318 int target_id;
8319 int rc = 0;
8320
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008321 if (fnode_sess->is_boot_target) {
8322 rc = -EPERM;
8323 DEBUG2(ql4_printk(KERN_ERR, ha,
8324 "%s: Deletion of boot target entry is not permitted.\n",
8325 __func__));
8326 goto exit_ddb_del;
8327 }
8328
8329 if (fnode_sess->flash_state == DEV_DB_NON_PERSISTENT)
8330 goto sysfs_ddb_del;
8331
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008332 if (is_qla40XX(ha)) {
8333 dev_db_start_offset = FLASH_OFFSET_DB_INFO;
Adheer Chandravanshi039acc12013-04-05 07:06:06 -04008334 dev_db_end_offset = FLASH_OFFSET_DB_END;
8335 dev_db_start_offset += (fnode_sess->target_id *
8336 sizeof(*fw_ddb_entry));
8337 ddb_size = sizeof(*fw_ddb_entry);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008338 } else {
8339 dev_db_start_offset = FLASH_RAW_ACCESS_ADDR +
8340 (ha->hw.flt_region_ddb << 2);
8341 /* flt_ddb_size is DDB table size for both ports
8342 * so divide it by 2 to calculate the offset for second port
8343 */
8344 if (ha->port_num == 1)
8345 dev_db_start_offset += (ha->hw.flt_ddb_size / 2);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008346
Adheer Chandravanshi039acc12013-04-05 07:06:06 -04008347 dev_db_end_offset = dev_db_start_offset +
8348 (ha->hw.flt_ddb_size / 2);
8349
8350 dev_db_start_offset += (fnode_sess->target_id *
8351 sizeof(*fw_ddb_entry));
Adheer Chandravanshi1bcb5612013-04-17 05:15:28 -04008352 dev_db_start_offset += offsetof(struct dev_db_entry, cookie);
Adheer Chandravanshi039acc12013-04-05 07:06:06 -04008353
8354 ddb_size = sizeof(*ddb_cookie);
8355 }
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008356
8357 DEBUG2(ql4_printk(KERN_ERR, ha, "%s: start offset=%u, end offset=%u\n",
8358 __func__, dev_db_start_offset, dev_db_end_offset));
8359
8360 if (dev_db_start_offset > dev_db_end_offset) {
8361 rc = -EIO;
8362 DEBUG2(ql4_printk(KERN_ERR, ha, "%s:Invalid DDB index %u\n",
8363 __func__, fnode_sess->target_id));
8364 goto exit_ddb_del;
8365 }
8366
Adheer Chandravanshi039acc12013-04-05 07:06:06 -04008367 pddb = dma_alloc_coherent(&ha->pdev->dev, ddb_size,
8368 &fw_ddb_entry_dma, GFP_KERNEL);
8369 if (!pddb) {
8370 rc = -ENOMEM;
8371 DEBUG2(ql4_printk(KERN_ERR, ha,
8372 "%s: Unable to allocate dma buffer\n",
8373 __func__));
8374 goto exit_ddb_del;
8375 }
8376
8377 if (is_qla40XX(ha)) {
8378 fw_ddb_entry = pddb;
8379 memset(fw_ddb_entry, 0, ddb_size);
8380 ddb_cookie = &fw_ddb_entry->cookie;
8381 } else {
8382 ddb_cookie = pddb;
8383 }
8384
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008385 /* invalidate the cookie */
8386 *ddb_cookie = 0xFFEE;
8387 qla4xxx_set_flash(ha, fw_ddb_entry_dma, dev_db_start_offset,
Adheer Chandravanshi039acc12013-04-05 07:06:06 -04008388 ddb_size, FLASH_OPT_RMW_COMMIT);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008389
8390sysfs_ddb_del:
8391 target_id = fnode_sess->target_id;
8392 iscsi_destroy_flashnode_sess(fnode_sess);
8393 ql4_printk(KERN_INFO, ha,
8394 "%s: session and conn entries for flashnode %u of host %lu deleted\n",
8395 __func__, target_id, ha->host_no);
8396exit_ddb_del:
Adheer Chandravanshi039acc12013-04-05 07:06:06 -04008397 if (pddb)
8398 dma_free_coherent(&ha->pdev->dev, ddb_size, pddb,
8399 fw_ddb_entry_dma);
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008400 return rc;
8401}
8402
8403/**
8404 * qla4xxx_sysfs_ddb_export - Create sysfs entries for firmware DDBs
8405 * @ha: pointer to adapter structure
8406 *
8407 * Export the firmware DDB for all send targets and normal targets to sysfs.
8408 **/
8409static int qla4xxx_sysfs_ddb_export(struct scsi_qla_host *ha)
8410{
8411 struct dev_db_entry *fw_ddb_entry = NULL;
8412 dma_addr_t fw_ddb_entry_dma;
8413 uint16_t max_ddbs;
8414 uint16_t idx = 0;
8415 int ret = QLA_SUCCESS;
8416
8417 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev,
8418 sizeof(*fw_ddb_entry),
8419 &fw_ddb_entry_dma, GFP_KERNEL);
8420 if (!fw_ddb_entry) {
8421 DEBUG2(ql4_printk(KERN_ERR, ha,
8422 "%s: Unable to allocate dma buffer\n",
8423 __func__));
8424 return -ENOMEM;
8425 }
8426
Adheer Chandravanshia957a7d2013-04-05 07:06:08 -04008427 max_ddbs = is_qla40XX(ha) ? MAX_PRST_DEV_DB_ENTRIES :
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008428 MAX_DEV_DB_ENTRIES;
8429
8430 for (idx = 0; idx < max_ddbs; idx++) {
8431 if (qla4xxx_flashdb_by_index(ha, fw_ddb_entry, fw_ddb_entry_dma,
8432 idx))
8433 continue;
8434
8435 ret = qla4xxx_sysfs_ddb_tgt_create(ha, fw_ddb_entry, &idx, 0);
8436 if (ret) {
8437 ret = -EIO;
8438 break;
8439 }
8440 }
8441
8442 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry), fw_ddb_entry,
8443 fw_ddb_entry_dma);
8444
8445 return ret;
8446}
8447
8448static void qla4xxx_sysfs_ddb_remove(struct scsi_qla_host *ha)
8449{
8450 iscsi_destroy_all_flashnode(ha->host);
8451}
8452
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08008453/**
8454 * qla4xxx_build_ddb_list - Build ddb list and setup sessions
8455 * @ha: pointer to adapter structure
8456 * @is_reset: Is this init path or reset path
8457 *
8458 * Create a list of sendtargets (st) from firmware DDBs, issue send targets
8459 * using connection open, then create the list of normal targets (nt)
8460 * from firmware DDBs. Based on the list of nt setup session and connection
8461 * objects.
8462 **/
8463void qla4xxx_build_ddb_list(struct scsi_qla_host *ha, int is_reset)
8464{
8465 uint16_t tmo = 0;
8466 struct list_head list_st, list_nt;
8467 struct qla_ddb_index *st_ddb_idx, *st_ddb_idx_tmp;
8468 unsigned long wtime;
8469
8470 if (!test_bit(AF_LINK_UP, &ha->flags)) {
8471 set_bit(AF_BUILD_DDB_LIST, &ha->flags);
8472 ha->is_reset = is_reset;
8473 return;
8474 }
8475
8476 INIT_LIST_HEAD(&list_st);
8477 INIT_LIST_HEAD(&list_nt);
8478
8479 qla4xxx_build_st_list(ha, &list_st);
8480
Mike Christie13483732011-12-01 21:38:41 -06008481 /* Before issuing conn open mbox, ensure all IPs states are configured
8482 * Note, conn open fails if IPs are not configured
8483 */
8484 qla4xxx_wait_for_ip_configuration(ha);
8485
8486 /* Go thru the STs and fire the sendtargets by issuing conn open mbx */
8487 list_for_each_entry_safe(st_ddb_idx, st_ddb_idx_tmp, &list_st, list) {
8488 qla4xxx_conn_open(ha, st_ddb_idx->fw_ddb_idx);
8489 }
8490
8491 /* Wait to ensure all sendtargets are done for min 12 sec wait */
Nilesh Javalic28eaac2011-12-18 21:40:44 -08008492 tmo = ((ha->def_timeout > LOGIN_TOV) &&
8493 (ha->def_timeout < LOGIN_TOV * 10) ?
8494 ha->def_timeout : LOGIN_TOV);
8495
Mike Christie13483732011-12-01 21:38:41 -06008496 DEBUG2(ql4_printk(KERN_INFO, ha,
8497 "Default time to wait for build ddb %d\n", tmo));
8498
8499 wtime = jiffies + (HZ * tmo);
8500 do {
Nilesh Javalif1f2e602011-12-16 01:58:57 -08008501 if (list_empty(&list_st))
8502 break;
8503
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08008504 qla4xxx_remove_failed_ddb(ha, &list_st);
Mike Christie13483732011-12-01 21:38:41 -06008505 schedule_timeout_uninterruptible(HZ / 10);
8506 } while (time_after(wtime, jiffies));
8507
Manish Rangankarad8bd452013-09-17 07:30:02 -04008508
8509 qla4xxx_build_nt_list(ha, &list_nt, &list_st, is_reset);
8510
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08008511 qla4xxx_free_ddb_list(&list_st);
Lalit Chandivade4a4bc2e2011-12-16 01:58:55 -08008512 qla4xxx_free_ddb_list(&list_nt);
Mike Christie13483732011-12-01 21:38:41 -06008513
8514 qla4xxx_free_ddb_index(ha);
8515}
8516
David Somayajuluafaf5a22006-09-19 10:28:00 -07008517/**
Manish Rangankar1dc8ed52013-01-20 23:51:03 -05008518 * qla4xxx_wait_login_resp_boot_tgt - Wait for iSCSI boot target login
8519 * response.
8520 * @ha: pointer to adapter structure
8521 *
8522 * When the boot entry is normal iSCSI target then DF_BOOT_TGT flag will be
8523 * set in DDB and we will wait for login response of boot targets during
8524 * probe.
8525 **/
8526static void qla4xxx_wait_login_resp_boot_tgt(struct scsi_qla_host *ha)
8527{
8528 struct ddb_entry *ddb_entry;
8529 struct dev_db_entry *fw_ddb_entry = NULL;
8530 dma_addr_t fw_ddb_entry_dma;
8531 unsigned long wtime;
8532 uint32_t ddb_state;
8533 int max_ddbs, idx, ret;
8534
8535 max_ddbs = is_qla40XX(ha) ? MAX_DEV_DB_ENTRIES_40XX :
8536 MAX_DEV_DB_ENTRIES;
8537
8538 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
8539 &fw_ddb_entry_dma, GFP_KERNEL);
8540 if (!fw_ddb_entry) {
8541 ql4_printk(KERN_ERR, ha,
8542 "%s: Unable to allocate dma buffer\n", __func__);
8543 goto exit_login_resp;
8544 }
8545
8546 wtime = jiffies + (HZ * BOOT_LOGIN_RESP_TOV);
8547
8548 for (idx = 0; idx < max_ddbs; idx++) {
8549 ddb_entry = qla4xxx_lookup_ddb_by_fw_index(ha, idx);
8550 if (ddb_entry == NULL)
8551 continue;
8552
8553 if (test_bit(DF_BOOT_TGT, &ddb_entry->flags)) {
8554 DEBUG2(ql4_printk(KERN_INFO, ha,
8555 "%s: DDB index [%d]\n", __func__,
8556 ddb_entry->fw_ddb_index));
8557 do {
8558 ret = qla4xxx_get_fwddb_entry(ha,
8559 ddb_entry->fw_ddb_index,
8560 fw_ddb_entry, fw_ddb_entry_dma,
8561 NULL, NULL, &ddb_state, NULL,
8562 NULL, NULL);
8563 if (ret == QLA_ERROR)
8564 goto exit_login_resp;
8565
8566 if ((ddb_state == DDB_DS_SESSION_ACTIVE) ||
8567 (ddb_state == DDB_DS_SESSION_FAILED))
8568 break;
8569
8570 schedule_timeout_uninterruptible(HZ);
8571
8572 } while ((time_after(wtime, jiffies)));
8573
8574 if (!time_after(wtime, jiffies)) {
8575 DEBUG2(ql4_printk(KERN_INFO, ha,
8576 "%s: Login response wait timer expired\n",
8577 __func__));
8578 goto exit_login_resp;
8579 }
8580 }
8581 }
8582
8583exit_login_resp:
8584 if (fw_ddb_entry)
8585 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
8586 fw_ddb_entry, fw_ddb_entry_dma);
8587}
8588
8589/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07008590 * qla4xxx_probe_adapter - callback function to probe HBA
8591 * @pdev: pointer to pci_dev structure
8592 * @pci_device_id: pointer to pci_device entry
8593 *
8594 * This routine will probe for Qlogic 4xxx iSCSI host adapters.
8595 * It returns zero if successful. It also initializes all data necessary for
8596 * the driver.
8597 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008598static int qla4xxx_probe_adapter(struct pci_dev *pdev,
8599 const struct pci_device_id *ent)
David Somayajuluafaf5a22006-09-19 10:28:00 -07008600{
8601 int ret = -ENODEV, status;
8602 struct Scsi_Host *host;
8603 struct scsi_qla_host *ha;
David Somayajuluafaf5a22006-09-19 10:28:00 -07008604 uint8_t init_retry_count = 0;
8605 char buf[34];
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308606 struct qla4_8xxx_legacy_intr_set *nx_legacy_intr;
Prasanna Mumbaif9880e72011-03-21 03:34:26 -07008607 uint32_t dev_state;
David Somayajuluafaf5a22006-09-19 10:28:00 -07008608
8609 if (pci_enable_device(pdev))
8610 return -1;
8611
Manish Rangankarb3a271a2011-07-25 13:48:53 -05008612 host = iscsi_host_alloc(&qla4xxx_driver_template, sizeof(*ha), 0);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008613 if (host == NULL) {
8614 printk(KERN_WARNING
8615 "qla4xxx: Couldn't allocate host from scsi layer!\n");
8616 goto probe_disable_device;
8617 }
8618
8619 /* Clear our data area */
Manish Rangankarb3a271a2011-07-25 13:48:53 -05008620 ha = to_qla_host(host);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008621 memset(ha, 0, sizeof(*ha));
8622
8623 /* Save the information from PCI BIOS. */
8624 ha->pdev = pdev;
8625 ha->host = host;
8626 ha->host_no = host->host_no;
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04008627 ha->func_num = PCI_FUNC(ha->pdev->devfn);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008628
Lalit Chandivade2232be02010-07-30 14:38:47 +05308629 pci_enable_pcie_error_reporting(pdev);
8630
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308631 /* Setup Runtime configurable options */
8632 if (is_qla8022(ha)) {
Vikas Chaudhary7664a1f2012-08-22 07:55:00 -04008633 ha->isp_ops = &qla4_82xx_isp_ops;
Vikas Chaudhary33693c72012-08-22 07:55:04 -04008634 ha->reg_tbl = (uint32_t *) qla4_82xx_reg_tbl;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308635 ha->qdr_sn_window = -1;
8636 ha->ddr_mn_window = -1;
8637 ha->curr_window = 255;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308638 nx_legacy_intr = &legacy_intr[ha->func_num];
8639 ha->nx_legacy_intr.int_vec_bit = nx_legacy_intr->int_vec_bit;
8640 ha->nx_legacy_intr.tgt_status_reg =
8641 nx_legacy_intr->tgt_status_reg;
8642 ha->nx_legacy_intr.tgt_mask_reg = nx_legacy_intr->tgt_mask_reg;
8643 ha->nx_legacy_intr.pci_int_reg = nx_legacy_intr->pci_int_reg;
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04008644 } else if (is_qla8032(ha) || is_qla8042(ha)) {
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04008645 ha->isp_ops = &qla4_83xx_isp_ops;
8646 ha->reg_tbl = (uint32_t *)qla4_83xx_reg_tbl;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308647 } else {
8648 ha->isp_ops = &qla4xxx_isp_ops;
8649 }
8650
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04008651 if (is_qla80XX(ha)) {
8652 rwlock_init(&ha->hw_lock);
8653 ha->pf_bit = ha->func_num << 16;
8654 /* Set EEH reset type to fundamental if required by hba */
Lalit Chandivade2232be02010-07-30 14:38:47 +05308655 pdev->needs_freset = 1;
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04008656 }
Lalit Chandivade2232be02010-07-30 14:38:47 +05308657
David Somayajuluafaf5a22006-09-19 10:28:00 -07008658 /* Configure PCI I/O space. */
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308659 ret = ha->isp_ops->iospace_config(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008660 if (ret)
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308661 goto probe_failed_ioconfig;
David Somayajuluafaf5a22006-09-19 10:28:00 -07008662
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05308663 ql4_printk(KERN_INFO, ha, "Found an ISP%04x, irq %d, iobase 0x%p\n",
David Somayajuluafaf5a22006-09-19 10:28:00 -07008664 pdev->device, pdev->irq, ha->reg);
8665
8666 qla4xxx_config_dma_addressing(ha);
8667
8668 /* Initialize lists and spinlocks. */
David Somayajuluafaf5a22006-09-19 10:28:00 -07008669 INIT_LIST_HEAD(&ha->free_srb_q);
8670
8671 mutex_init(&ha->mbox_sem);
Lalit Chandivade45494152011-10-07 16:55:42 -07008672 mutex_init(&ha->chap_sem);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308673 init_completion(&ha->mbx_intr_comp);
Vikas Chaudhary95d31262011-08-12 02:51:29 -07008674 init_completion(&ha->disable_acb_comp);
Vikas Chaudharydf86f772013-11-22 05:28:17 -05008675 init_completion(&ha->idc_comp);
8676 init_completion(&ha->link_up_comp);
8677 init_completion(&ha->disable_acb_comp);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008678
8679 spin_lock_init(&ha->hardware_lock);
Vikas Chaudhary8e9157c2012-08-22 07:45:24 -04008680 spin_lock_init(&ha->work_lock);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008681
Vikas Chaudharyff884432011-08-29 23:43:02 +05308682 /* Initialize work list */
8683 INIT_LIST_HEAD(&ha->work_list);
8684
David Somayajuluafaf5a22006-09-19 10:28:00 -07008685 /* Allocate dma buffers */
8686 if (qla4xxx_mem_alloc(ha)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05308687 ql4_printk(KERN_WARNING, ha,
8688 "[ERROR] Failed to allocate memory for adapter\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07008689
8690 ret = -ENOMEM;
8691 goto probe_failed;
8692 }
8693
Manish Rangankarb3a271a2011-07-25 13:48:53 -05008694 host->cmd_per_lun = 3;
8695 host->max_channel = 0;
8696 host->max_lun = MAX_LUNS - 1;
8697 host->max_id = MAX_TARGETS;
8698 host->max_cmd_len = IOCB_MAX_CDB_LEN;
8699 host->can_queue = MAX_SRBS ;
8700 host->transportt = qla4xxx_scsi_transport;
8701
8702 ret = scsi_init_shared_tag_map(host, MAX_SRBS);
8703 if (ret) {
8704 ql4_printk(KERN_WARNING, ha,
8705 "%s: scsi_init_shared_tag_map failed\n", __func__);
8706 goto probe_failed;
8707 }
8708
8709 pci_set_drvdata(pdev, ha);
8710
8711 ret = scsi_add_host(host, &pdev->dev);
8712 if (ret)
8713 goto probe_failed;
8714
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04008715 if (is_qla80XX(ha))
8716 qla4_8xxx_get_flash_info(ha);
8717
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04008718 if (is_qla8032(ha) || is_qla8042(ha)) {
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04008719 qla4_83xx_read_reset_template(ha);
8720 /*
8721 * NOTE: If ql4dontresethba==1, set IDC_CTRL DONTRESET_BIT0.
8722 * If DONRESET_BIT0 is set, drivers should not set dev_state
8723 * to NEED_RESET. But if NEED_RESET is set, drivers should
8724 * should honor the reset.
8725 */
8726 if (ql4xdontresethba == 1)
8727 qla4_83xx_set_idc_dontreset(ha);
8728 }
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308729
David Somayajuluafaf5a22006-09-19 10:28:00 -07008730 /*
8731 * Initialize the Host adapter request/response queues and
8732 * firmware
8733 * NOTE: interrupts enabled upon successful completion
8734 */
Mike Christie13483732011-12-01 21:38:41 -06008735 status = qla4xxx_initialize_adapter(ha, INIT_ADAPTER);
Poornima Vonti7977f822012-09-20 07:35:07 -04008736
8737 /* Dont retry adapter initialization if IRQ allocation failed */
Nilesh Javali37418cc2013-12-16 06:49:31 -05008738 if (is_qla80XX(ha) && (status == QLA_ERROR))
Poornima Vonti7977f822012-09-20 07:35:07 -04008739 goto skip_retry_init;
8740
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308741 while ((!test_bit(AF_ONLINE, &ha->flags)) &&
8742 init_retry_count++ < MAX_INIT_RETRIES) {
Prasanna Mumbaif9880e72011-03-21 03:34:26 -07008743
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04008744 if (is_qla80XX(ha)) {
Vikas Chaudhary33693c72012-08-22 07:55:04 -04008745 ha->isp_ops->idc_lock(ha);
8746 dev_state = qla4_8xxx_rd_direct(ha,
Vikas Chaudharye951aca2012-12-29 02:24:52 -05008747 QLA8XXX_CRB_DEV_STATE);
Vikas Chaudhary33693c72012-08-22 07:55:04 -04008748 ha->isp_ops->idc_unlock(ha);
Vikas Chaudharyde8c72d2012-08-22 09:14:24 -04008749 if (dev_state == QLA8XXX_DEV_FAILED) {
Prasanna Mumbaif9880e72011-03-21 03:34:26 -07008750 ql4_printk(KERN_WARNING, ha, "%s: don't retry "
8751 "initialize adapter. H/W is in failed state\n",
8752 __func__);
8753 break;
8754 }
8755 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07008756 DEBUG2(printk("scsi: %s: retrying adapter initialization "
8757 "(%d)\n", __func__, init_retry_count));
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308758
8759 if (ha->isp_ops->reset_chip(ha) == QLA_ERROR)
8760 continue;
8761
Mike Christie13483732011-12-01 21:38:41 -06008762 status = qla4xxx_initialize_adapter(ha, INIT_ADAPTER);
Nilesh Javali37418cc2013-12-16 06:49:31 -05008763 if (is_qla80XX(ha) && (status == QLA_ERROR)) {
8764 if (qla4_8xxx_check_init_adapter_retry(ha) == QLA_ERROR)
8765 goto skip_retry_init;
8766 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07008767 }
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308768
Poornima Vonti7977f822012-09-20 07:35:07 -04008769skip_retry_init:
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308770 if (!test_bit(AF_ONLINE, &ha->flags)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05308771 ql4_printk(KERN_WARNING, ha, "Failed to initialize adapter\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07008772
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04008773 if ((is_qla8022(ha) && ql4xdontresethba) ||
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04008774 ((is_qla8032(ha) || is_qla8042(ha)) &&
8775 qla4_83xx_idc_dontreset(ha))) {
Lalit Chandivadefe998522010-12-02 22:12:36 -08008776 /* Put the device in failed state. */
8777 DEBUG2(printk(KERN_ERR "HW STATE: FAILED\n"));
Vikas Chaudhary33693c72012-08-22 07:55:04 -04008778 ha->isp_ops->idc_lock(ha);
8779 qla4_8xxx_wr_direct(ha, QLA8XXX_CRB_DEV_STATE,
8780 QLA8XXX_DEV_FAILED);
8781 ha->isp_ops->idc_unlock(ha);
Lalit Chandivadefe998522010-12-02 22:12:36 -08008782 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07008783 ret = -ENODEV;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05008784 goto remove_host;
David Somayajuluafaf5a22006-09-19 10:28:00 -07008785 }
8786
David Somayajuluafaf5a22006-09-19 10:28:00 -07008787 /* Startup the kernel thread for this host adapter. */
8788 DEBUG2(printk("scsi: %s: Starting kernel thread for "
8789 "qla4xxx_dpc\n", __func__));
8790 sprintf(buf, "qla4xxx_%lu_dpc", ha->host_no);
8791 ha->dpc_thread = create_singlethread_workqueue(buf);
8792 if (!ha->dpc_thread) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05308793 ql4_printk(KERN_WARNING, ha, "Unable to start DPC thread!\n");
David Somayajuluafaf5a22006-09-19 10:28:00 -07008794 ret = -ENODEV;
Manish Rangankarb3a271a2011-07-25 13:48:53 -05008795 goto remove_host;
David Somayajuluafaf5a22006-09-19 10:28:00 -07008796 }
David Howellsc4028952006-11-22 14:57:56 +00008797 INIT_WORK(&ha->dpc_work, qla4xxx_do_dpc);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008798
Kees Cookd8537542013-07-03 15:04:57 -07008799 ha->task_wq = alloc_workqueue("qla4xxx_%lu_task", WQ_MEM_RECLAIM, 1,
8800 ha->host_no);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05008801 if (!ha->task_wq) {
8802 ql4_printk(KERN_WARNING, ha, "Unable to start task thread!\n");
8803 ret = -ENODEV;
8804 goto remove_host;
8805 }
8806
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04008807 /*
8808 * For ISP-8XXX, request_irqs is called in qla4_8xxx_load_risc
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308809 * (which is called indirectly by qla4xxx_initialize_adapter),
8810 * so that irqs will be registered after crbinit but before
8811 * mbx_intr_enable.
8812 */
Vikas Chaudharyee996a62012-08-22 07:55:05 -04008813 if (is_qla40XX(ha)) {
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308814 ret = qla4xxx_request_irqs(ha);
8815 if (ret) {
8816 ql4_printk(KERN_WARNING, ha, "Failed to reserve "
8817 "interrupt %d already in use.\n", pdev->irq);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05008818 goto remove_host;
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308819 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07008820 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07008821
Lalit Chandivade2232be02010-07-30 14:38:47 +05308822 pci_save_state(ha->pdev);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308823 ha->isp_ops->enable_intrs(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008824
8825 /* Start timer thread. */
8826 qla4xxx_start_timer(ha, qla4xxx_timer, 1);
8827
8828 set_bit(AF_INIT_DONE, &ha->flags);
8829
Tej Parkash068237c82012-05-18 04:41:44 -04008830 qla4_8xxx_alloc_sysfs_attr(ha);
8831
David Somayajuluafaf5a22006-09-19 10:28:00 -07008832 printk(KERN_INFO
8833 " QLogic iSCSI HBA Driver version: %s\n"
8834 " QLogic ISP%04x @ %s, host#=%ld, fw=%02d.%02d.%02d.%02d\n",
8835 qla4xxx_version_str, ha->pdev->device, pci_name(ha->pdev),
Adheer Chandravanshieee06a02013-07-08 08:33:10 -04008836 ha->host_no, ha->fw_info.fw_major, ha->fw_info.fw_minor,
8837 ha->fw_info.fw_patch, ha->fw_info.fw_build);
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05008838
Manish Dusanecfb27872012-09-20 07:35:01 -04008839 /* Set the driver version */
8840 if (is_qla80XX(ha))
8841 qla4_8xxx_set_param(ha, SET_DRVR_VERSION);
8842
Manish Rangankar2a991c22011-07-25 13:48:55 -05008843 if (qla4xxx_setup_boot_info(ha))
Vikas Chaudhary3573bfb2012-02-27 03:08:57 -08008844 ql4_printk(KERN_ERR, ha,
8845 "%s: No iSCSI boot target configured\n", __func__);
Manish Rangankar2a991c22011-07-25 13:48:55 -05008846
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04008847 if (qla4xxx_sysfs_ddb_export(ha))
8848 ql4_printk(KERN_ERR, ha,
8849 "%s: Error exporting ddb to sysfs\n", __func__);
8850
Mike Christie13483732011-12-01 21:38:41 -06008851 /* Perform the build ddb list and login to each */
8852 qla4xxx_build_ddb_list(ha, INIT_ADAPTER);
8853 iscsi_host_for_each_session(ha->host, qla4xxx_login_flash_ddb);
Manish Rangankar1dc8ed52013-01-20 23:51:03 -05008854 qla4xxx_wait_login_resp_boot_tgt(ha);
Mike Christie13483732011-12-01 21:38:41 -06008855
8856 qla4xxx_create_chap_list(ha);
8857
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05008858 qla4xxx_create_ifaces(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008859 return 0;
8860
Manish Rangankarb3a271a2011-07-25 13:48:53 -05008861remove_host:
8862 scsi_remove_host(ha->host);
8863
David Somayajuluafaf5a22006-09-19 10:28:00 -07008864probe_failed:
8865 qla4xxx_free_adapter(ha);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05308866
8867probe_failed_ioconfig:
Lalit Chandivade2232be02010-07-30 14:38:47 +05308868 pci_disable_pcie_error_reporting(pdev);
David Somayajuluafaf5a22006-09-19 10:28:00 -07008869 scsi_host_put(ha->host);
8870
8871probe_disable_device:
8872 pci_disable_device(pdev);
8873
8874 return ret;
8875}
8876
8877/**
Karen Higgins7eece5a2011-03-21 03:34:29 -07008878 * qla4xxx_prevent_other_port_reinit - prevent other port from re-initialize
8879 * @ha: pointer to adapter structure
8880 *
8881 * Mark the other ISP-4xxx port to indicate that the driver is being removed,
8882 * so that the other port will not re-initialize while in the process of
8883 * removing the ha due to driver unload or hba hotplug.
8884 **/
8885static void qla4xxx_prevent_other_port_reinit(struct scsi_qla_host *ha)
8886{
8887 struct scsi_qla_host *other_ha = NULL;
8888 struct pci_dev *other_pdev = NULL;
8889 int fn = ISP4XXX_PCI_FN_2;
8890
8891 /*iscsi function numbers for ISP4xxx is 1 and 3*/
8892 if (PCI_FUNC(ha->pdev->devfn) & BIT_1)
8893 fn = ISP4XXX_PCI_FN_1;
8894
8895 other_pdev =
8896 pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus),
8897 ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn),
8898 fn));
8899
8900 /* Get other_ha if other_pdev is valid and state is enable*/
8901 if (other_pdev) {
8902 if (atomic_read(&other_pdev->enable_cnt)) {
8903 other_ha = pci_get_drvdata(other_pdev);
8904 if (other_ha) {
8905 set_bit(AF_HA_REMOVAL, &other_ha->flags);
8906 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: "
8907 "Prevent %s reinit\n", __func__,
8908 dev_name(&other_ha->pdev->dev)));
8909 }
8910 }
8911 pci_dev_put(other_pdev);
8912 }
8913}
8914
Vikas Chaudhary28d958b2014-01-17 04:43:28 -05008915static void qla4xxx_destroy_ddb(struct scsi_qla_host *ha,
8916 struct ddb_entry *ddb_entry)
8917{
8918 struct dev_db_entry *fw_ddb_entry = NULL;
8919 dma_addr_t fw_ddb_entry_dma;
8920 unsigned long wtime;
8921 uint32_t ddb_state;
8922 int options;
8923 int status;
8924
8925 options = LOGOUT_OPTION_CLOSE_SESSION;
8926 if (qla4xxx_session_logout_ddb(ha, ddb_entry, options) == QLA_ERROR) {
8927 ql4_printk(KERN_ERR, ha, "%s: Logout failed\n", __func__);
8928 goto clear_ddb;
8929 }
8930
8931 fw_ddb_entry = dma_alloc_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
8932 &fw_ddb_entry_dma, GFP_KERNEL);
8933 if (!fw_ddb_entry) {
8934 ql4_printk(KERN_ERR, ha,
8935 "%s: Unable to allocate dma buffer\n", __func__);
8936 goto clear_ddb;
8937 }
8938
8939 wtime = jiffies + (HZ * LOGOUT_TOV);
8940 do {
8941 status = qla4xxx_get_fwddb_entry(ha, ddb_entry->fw_ddb_index,
8942 fw_ddb_entry, fw_ddb_entry_dma,
8943 NULL, NULL, &ddb_state, NULL,
8944 NULL, NULL);
8945 if (status == QLA_ERROR)
8946 goto free_ddb;
8947
8948 if ((ddb_state == DDB_DS_NO_CONNECTION_ACTIVE) ||
8949 (ddb_state == DDB_DS_SESSION_FAILED))
8950 goto free_ddb;
8951
8952 schedule_timeout_uninterruptible(HZ);
8953 } while ((time_after(wtime, jiffies)));
8954
8955free_ddb:
8956 dma_free_coherent(&ha->pdev->dev, sizeof(*fw_ddb_entry),
8957 fw_ddb_entry, fw_ddb_entry_dma);
8958clear_ddb:
8959 qla4xxx_clear_ddb_entry(ha, ddb_entry->fw_ddb_index);
8960}
8961
Mike Christie13483732011-12-01 21:38:41 -06008962static void qla4xxx_destroy_fw_ddb_session(struct scsi_qla_host *ha)
8963{
8964 struct ddb_entry *ddb_entry;
Mike Christie13483732011-12-01 21:38:41 -06008965 int idx;
8966
8967 for (idx = 0; idx < MAX_DDB_ENTRIES; idx++) {
8968
8969 ddb_entry = qla4xxx_lookup_ddb_by_fw_index(ha, idx);
8970 if ((ddb_entry != NULL) &&
8971 (ddb_entry->ddb_type == FLASH_DDB)) {
8972
Vikas Chaudhary28d958b2014-01-17 04:43:28 -05008973 qla4xxx_destroy_ddb(ha, ddb_entry);
Mike Christie13483732011-12-01 21:38:41 -06008974 /*
8975 * we have decremented the reference count of the driver
8976 * when we setup the session to have the driver unload
8977 * to be seamless without actually destroying the
8978 * session
8979 **/
8980 try_module_get(qla4xxx_iscsi_transport.owner);
8981 iscsi_destroy_endpoint(ddb_entry->conn->ep);
8982 qla4xxx_free_ddb(ha, ddb_entry);
8983 iscsi_session_teardown(ddb_entry->sess);
8984 }
8985 }
8986}
Karen Higgins7eece5a2011-03-21 03:34:29 -07008987/**
Masanari Iida59e13d42012-04-25 00:24:16 +09008988 * qla4xxx_remove_adapter - callback function to remove adapter.
David Somayajuluafaf5a22006-09-19 10:28:00 -07008989 * @pci_dev: PCI device pointer
8990 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008991static void qla4xxx_remove_adapter(struct pci_dev *pdev)
David Somayajuluafaf5a22006-09-19 10:28:00 -07008992{
8993 struct scsi_qla_host *ha;
8994
Vikas Chaudharyf8b07512012-09-20 07:35:08 -04008995 /*
8996 * If the PCI device is disabled then it means probe_adapter had
8997 * failed and resources already cleaned up on probe_adapter exit.
8998 */
8999 if (!pci_is_enabled(pdev))
9000 return;
9001
David Somayajuluafaf5a22006-09-19 10:28:00 -07009002 ha = pci_get_drvdata(pdev);
9003
Vikas Chaudharyee996a62012-08-22 07:55:05 -04009004 if (is_qla40XX(ha))
Karen Higgins7eece5a2011-03-21 03:34:29 -07009005 qla4xxx_prevent_other_port_reinit(ha);
David C Somayajulubee4fe82007-05-23 18:03:32 -07009006
Vikas Chaudharyed1086e2011-07-25 13:48:41 -05009007 /* destroy iface from sysfs */
9008 qla4xxx_destroy_ifaces(ha);
9009
Mike Christie13483732011-12-01 21:38:41 -06009010 if ((!ql4xdisablesysfsboot) && ha->boot_kset)
Manish Rangankar2a991c22011-07-25 13:48:55 -05009011 iscsi_boot_destroy_kset(ha->boot_kset);
9012
Mike Christie13483732011-12-01 21:38:41 -06009013 qla4xxx_destroy_fw_ddb_session(ha);
Tej Parkash068237c82012-05-18 04:41:44 -04009014 qla4_8xxx_free_sysfs_attr(ha);
Mike Christie13483732011-12-01 21:38:41 -06009015
Adheer Chandravanshi1e9e2be2013-03-22 07:41:31 -04009016 qla4xxx_sysfs_ddb_remove(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07009017 scsi_remove_host(ha->host);
9018
9019 qla4xxx_free_adapter(ha);
9020
9021 scsi_host_put(ha->host);
9022
Lalit Chandivade2232be02010-07-30 14:38:47 +05309023 pci_disable_pcie_error_reporting(pdev);
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05309024 pci_disable_device(pdev);
David Somayajuluafaf5a22006-09-19 10:28:00 -07009025}
9026
9027/**
9028 * qla4xxx_config_dma_addressing() - Configure OS DMA addressing method.
9029 * @ha: HA context
9030 *
9031 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
9032 * supported addressing method.
9033 */
Adrian Bunk47975472007-04-26 00:35:16 -07009034static void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha)
David Somayajuluafaf5a22006-09-19 10:28:00 -07009035{
9036 int retval;
9037
9038 /* Update our PCI device dma_mask for full 64 bit mask */
Yang Hongyang6a355282009-04-06 19:01:13 -07009039 if (pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(64)) == 0) {
9040 if (pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07009041 dev_dbg(&ha->pdev->dev,
9042 "Failed to set 64 bit PCI consistent mask; "
9043 "using 32 bit.\n");
9044 retval = pci_set_consistent_dma_mask(ha->pdev,
Yang Hongyang284901a2009-04-06 19:01:15 -07009045 DMA_BIT_MASK(32));
David Somayajuluafaf5a22006-09-19 10:28:00 -07009046 }
9047 } else
Yang Hongyang284901a2009-04-06 19:01:15 -07009048 retval = pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(32));
David Somayajuluafaf5a22006-09-19 10:28:00 -07009049}
9050
9051static int qla4xxx_slave_alloc(struct scsi_device *sdev)
9052{
Manish Rangankarb3a271a2011-07-25 13:48:53 -05009053 struct iscsi_cls_session *cls_sess;
9054 struct iscsi_session *sess;
9055 struct ddb_entry *ddb;
Vikas Chaudhary8bb40332011-03-21 03:34:31 -07009056 int queue_depth = QL4_DEF_QDEPTH;
David Somayajuluafaf5a22006-09-19 10:28:00 -07009057
Manish Rangankarb3a271a2011-07-25 13:48:53 -05009058 cls_sess = starget_to_session(sdev->sdev_target);
9059 sess = cls_sess->dd_data;
9060 ddb = sess->dd_data;
9061
David Somayajuluafaf5a22006-09-19 10:28:00 -07009062 sdev->hostdata = ddb;
9063 sdev->tagged_supported = 1;
Vikas Chaudhary8bb40332011-03-21 03:34:31 -07009064
9065 if (ql4xmaxqdepth != 0 && ql4xmaxqdepth <= 0xffffU)
9066 queue_depth = ql4xmaxqdepth;
9067
9068 scsi_activate_tcq(sdev, queue_depth);
David Somayajuluafaf5a22006-09-19 10:28:00 -07009069 return 0;
9070}
9071
9072static int qla4xxx_slave_configure(struct scsi_device *sdev)
9073{
9074 sdev->tagged_supported = 1;
9075 return 0;
9076}
9077
9078static void qla4xxx_slave_destroy(struct scsi_device *sdev)
9079{
9080 scsi_deactivate_tcq(sdev, 1);
9081}
9082
Tej Parkashf7b4aa62012-04-30 04:12:19 -07009083static int qla4xxx_change_queue_depth(struct scsi_device *sdev, int qdepth,
9084 int reason)
9085{
9086 if (!ql4xqfulltracking)
9087 return -EOPNOTSUPP;
9088
9089 return iscsi_change_queue_depth(sdev, qdepth, reason);
9090}
9091
David Somayajuluafaf5a22006-09-19 10:28:00 -07009092/**
9093 * qla4xxx_del_from_active_array - returns an active srb
9094 * @ha: Pointer to host adapter structure.
Anand Gadiyarfd589a82009-07-16 17:13:03 +02009095 * @index: index into the active_array
David Somayajuluafaf5a22006-09-19 10:28:00 -07009096 *
9097 * This routine removes and returns the srb at the specified index
9098 **/
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05309099struct srb *qla4xxx_del_from_active_array(struct scsi_qla_host *ha,
9100 uint32_t index)
David Somayajuluafaf5a22006-09-19 10:28:00 -07009101{
9102 struct srb *srb = NULL;
Vikas Chaudhary53698872010-04-28 11:41:59 +05309103 struct scsi_cmnd *cmd = NULL;
David Somayajuluafaf5a22006-09-19 10:28:00 -07009104
Vikas Chaudhary53698872010-04-28 11:41:59 +05309105 cmd = scsi_host_find_tag(ha->host, index);
9106 if (!cmd)
David Somayajuluafaf5a22006-09-19 10:28:00 -07009107 return srb;
9108
Vikas Chaudhary53698872010-04-28 11:41:59 +05309109 srb = (struct srb *)CMD_SP(cmd);
9110 if (!srb)
David Somayajuluafaf5a22006-09-19 10:28:00 -07009111 return srb;
9112
9113 /* update counters */
9114 if (srb->flags & SRB_DMA_VALID) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07009115 ha->iocb_cnt -= srb->iocb_cnt;
9116 if (srb->cmd)
Vikas Chaudhary53698872010-04-28 11:41:59 +05309117 srb->cmd->host_scribble =
9118 (unsigned char *)(unsigned long) MAX_SRBS;
David Somayajuluafaf5a22006-09-19 10:28:00 -07009119 }
9120 return srb;
9121}
9122
9123/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07009124 * qla4xxx_eh_wait_on_command - waits for command to be returned by firmware
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309125 * @ha: Pointer to host adapter structure.
David Somayajuluafaf5a22006-09-19 10:28:00 -07009126 * @cmd: Scsi Command to wait on.
9127 *
9128 * This routine waits for the command to be returned by the Firmware
9129 * for some max time.
9130 **/
9131static int qla4xxx_eh_wait_on_command(struct scsi_qla_host *ha,
9132 struct scsi_cmnd *cmd)
9133{
9134 int done = 0;
9135 struct srb *rp;
9136 uint32_t max_wait_time = EH_WAIT_CMD_TOV;
Lalit Chandivade2232be02010-07-30 14:38:47 +05309137 int ret = SUCCESS;
9138
9139 /* Dont wait on command if PCI error is being handled
9140 * by PCI AER driver
9141 */
9142 if (unlikely(pci_channel_offline(ha->pdev)) ||
9143 (test_bit(AF_EEH_BUSY, &ha->flags))) {
9144 ql4_printk(KERN_WARNING, ha, "scsi%ld: Return from %s\n",
9145 ha->host_no, __func__);
9146 return ret;
9147 }
David Somayajuluafaf5a22006-09-19 10:28:00 -07009148
9149 do {
9150 /* Checking to see if its returned to OS */
Vikas Chaudhary53698872010-04-28 11:41:59 +05309151 rp = (struct srb *) CMD_SP(cmd);
David Somayajuluafaf5a22006-09-19 10:28:00 -07009152 if (rp == NULL) {
9153 done++;
9154 break;
9155 }
9156
9157 msleep(2000);
9158 } while (max_wait_time--);
9159
9160 return done;
9161}
9162
9163/**
9164 * qla4xxx_wait_for_hba_online - waits for HBA to come online
9165 * @ha: Pointer to host adapter structure
9166 **/
9167static int qla4xxx_wait_for_hba_online(struct scsi_qla_host *ha)
9168{
9169 unsigned long wait_online;
9170
Vikas Chaudharyf581a3f2010-10-06 22:47:48 -07009171 wait_online = jiffies + (HBA_ONLINE_TOV * HZ);
David Somayajuluafaf5a22006-09-19 10:28:00 -07009172 while (time_before(jiffies, wait_online)) {
9173
9174 if (adapter_up(ha))
9175 return QLA_SUCCESS;
David Somayajuluafaf5a22006-09-19 10:28:00 -07009176
9177 msleep(2000);
9178 }
9179
9180 return QLA_ERROR;
9181}
9182
9183/**
Mike Christiece545032008-02-29 18:25:20 -06009184 * qla4xxx_eh_wait_for_commands - wait for active cmds to finish.
Anand Gadiyarfd589a82009-07-16 17:13:03 +02009185 * @ha: pointer to HBA
David Somayajuluafaf5a22006-09-19 10:28:00 -07009186 * @t: target id
9187 * @l: lun id
9188 *
9189 * This function waits for all outstanding commands to a lun to complete. It
9190 * returns 0 if all pending commands are returned and 1 otherwise.
9191 **/
Mike Christiece545032008-02-29 18:25:20 -06009192static int qla4xxx_eh_wait_for_commands(struct scsi_qla_host *ha,
9193 struct scsi_target *stgt,
9194 struct scsi_device *sdev)
David Somayajuluafaf5a22006-09-19 10:28:00 -07009195{
9196 int cnt;
9197 int status = 0;
9198 struct scsi_cmnd *cmd;
9199
9200 /*
Mike Christiece545032008-02-29 18:25:20 -06009201 * Waiting for all commands for the designated target or dev
9202 * in the active array
David Somayajuluafaf5a22006-09-19 10:28:00 -07009203 */
9204 for (cnt = 0; cnt < ha->host->can_queue; cnt++) {
9205 cmd = scsi_host_find_tag(ha->host, cnt);
Mike Christiece545032008-02-29 18:25:20 -06009206 if (cmd && stgt == scsi_target(cmd->device) &&
9207 (!sdev || sdev == cmd->device)) {
David Somayajuluafaf5a22006-09-19 10:28:00 -07009208 if (!qla4xxx_eh_wait_on_command(ha, cmd)) {
9209 status++;
9210 break;
9211 }
9212 }
9213 }
9214 return status;
9215}
9216
9217/**
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309218 * qla4xxx_eh_abort - callback for abort task.
9219 * @cmd: Pointer to Linux's SCSI command structure
9220 *
9221 * This routine is called by the Linux OS to abort the specified
9222 * command.
9223 **/
9224static int qla4xxx_eh_abort(struct scsi_cmnd *cmd)
9225{
9226 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
9227 unsigned int id = cmd->device->id;
9228 unsigned int lun = cmd->device->lun;
Mike Christie92b3e5b2010-10-06 22:51:17 -07009229 unsigned long flags;
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309230 struct srb *srb = NULL;
9231 int ret = SUCCESS;
9232 int wait = 0;
9233
Vikas Chaudhary63c9e812013-12-16 06:49:50 -05009234 ql4_printk(KERN_INFO, ha, "scsi%ld:%d:%d: Abort command issued cmd=%p, cdb=0x%x\n",
9235 ha->host_no, id, lun, cmd, cmd->cmnd[0]);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309236
Mike Christie92b3e5b2010-10-06 22:51:17 -07009237 spin_lock_irqsave(&ha->hardware_lock, flags);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309238 srb = (struct srb *) CMD_SP(cmd);
Mike Christie92b3e5b2010-10-06 22:51:17 -07009239 if (!srb) {
9240 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Vikas Chaudhary63c9e812013-12-16 06:49:50 -05009241 ql4_printk(KERN_INFO, ha, "scsi%ld:%d:%d: Specified command has already completed.\n",
9242 ha->host_no, id, lun);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309243 return SUCCESS;
Mike Christie92b3e5b2010-10-06 22:51:17 -07009244 }
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309245 kref_get(&srb->srb_ref);
Mike Christie92b3e5b2010-10-06 22:51:17 -07009246 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309247
9248 if (qla4xxx_abort_task(ha, srb) != QLA_SUCCESS) {
9249 DEBUG3(printk("scsi%ld:%d:%d: Abort_task mbx failed.\n",
9250 ha->host_no, id, lun));
9251 ret = FAILED;
9252 } else {
9253 DEBUG3(printk("scsi%ld:%d:%d: Abort_task mbx success.\n",
9254 ha->host_no, id, lun));
9255 wait = 1;
9256 }
9257
9258 kref_put(&srb->srb_ref, qla4xxx_srb_compl);
9259
9260 /* Wait for command to complete */
9261 if (wait) {
9262 if (!qla4xxx_eh_wait_on_command(ha, cmd)) {
9263 DEBUG2(printk("scsi%ld:%d:%d: Abort handler timed out\n",
9264 ha->host_no, id, lun));
9265 ret = FAILED;
9266 }
9267 }
9268
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05309269 ql4_printk(KERN_INFO, ha,
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309270 "scsi%ld:%d:%d: Abort command - %s\n",
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009271 ha->host_no, id, lun, (ret == SUCCESS) ? "succeeded" : "failed");
Vikas Chaudhary09a0f712010-04-28 11:42:24 +05309272
9273 return ret;
9274}
9275
9276/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07009277 * qla4xxx_eh_device_reset - callback for target reset.
9278 * @cmd: Pointer to Linux's SCSI command structure
9279 *
9280 * This routine is called by the Linux OS to reset all luns on the
9281 * specified target.
9282 **/
9283static int qla4xxx_eh_device_reset(struct scsi_cmnd *cmd)
9284{
9285 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
9286 struct ddb_entry *ddb_entry = cmd->device->hostdata;
David Somayajuluafaf5a22006-09-19 10:28:00 -07009287 int ret = FAILED, stat;
9288
Karen Higgins612f7342009-07-15 15:03:01 -05009289 if (!ddb_entry)
David Somayajuluafaf5a22006-09-19 10:28:00 -07009290 return ret;
9291
Mike Christiec01be6d2010-07-22 16:59:49 +05309292 ret = iscsi_block_scsi_eh(cmd);
9293 if (ret)
9294 return ret;
9295 ret = FAILED;
9296
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05309297 ql4_printk(KERN_INFO, ha,
David Somayajuluafaf5a22006-09-19 10:28:00 -07009298 "scsi%ld:%d:%d:%d: DEVICE RESET ISSUED.\n", ha->host_no,
9299 cmd->device->channel, cmd->device->id, cmd->device->lun);
9300
9301 DEBUG2(printk(KERN_INFO
9302 "scsi%ld: DEVICE_RESET cmd=%p jiffies = 0x%lx, to=%x,"
9303 "dpc_flags=%lx, status=%x allowed=%d\n", ha->host_no,
Jens Axboe242f9dc2008-09-14 05:55:09 -07009304 cmd, jiffies, cmd->request->timeout / HZ,
David Somayajuluafaf5a22006-09-19 10:28:00 -07009305 ha->dpc_flags, cmd->result, cmd->allowed));
9306
9307 /* FIXME: wait for hba to go online */
9308 stat = qla4xxx_reset_lun(ha, ddb_entry, cmd->device->lun);
9309 if (stat != QLA_SUCCESS) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05309310 ql4_printk(KERN_INFO, ha, "DEVICE RESET FAILED. %d\n", stat);
David Somayajuluafaf5a22006-09-19 10:28:00 -07009311 goto eh_dev_reset_done;
9312 }
9313
Mike Christiece545032008-02-29 18:25:20 -06009314 if (qla4xxx_eh_wait_for_commands(ha, scsi_target(cmd->device),
9315 cmd->device)) {
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05309316 ql4_printk(KERN_INFO, ha,
Mike Christiece545032008-02-29 18:25:20 -06009317 "DEVICE RESET FAILED - waiting for "
9318 "commands.\n");
9319 goto eh_dev_reset_done;
David Somayajuluafaf5a22006-09-19 10:28:00 -07009320 }
9321
David C Somayajulu9d562912008-03-19 11:23:03 -07009322 /* Send marker. */
9323 if (qla4xxx_send_marker_iocb(ha, ddb_entry, cmd->device->lun,
9324 MM_LUN_RESET) != QLA_SUCCESS)
9325 goto eh_dev_reset_done;
9326
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05309327 ql4_printk(KERN_INFO, ha,
David Somayajuluafaf5a22006-09-19 10:28:00 -07009328 "scsi(%ld:%d:%d:%d): DEVICE RESET SUCCEEDED.\n",
9329 ha->host_no, cmd->device->channel, cmd->device->id,
9330 cmd->device->lun);
9331
9332 ret = SUCCESS;
9333
9334eh_dev_reset_done:
9335
9336 return ret;
9337}
9338
9339/**
Mike Christiece545032008-02-29 18:25:20 -06009340 * qla4xxx_eh_target_reset - callback for target reset.
9341 * @cmd: Pointer to Linux's SCSI command structure
9342 *
9343 * This routine is called by the Linux OS to reset the target.
9344 **/
9345static int qla4xxx_eh_target_reset(struct scsi_cmnd *cmd)
9346{
9347 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
9348 struct ddb_entry *ddb_entry = cmd->device->hostdata;
Mike Christiec01be6d2010-07-22 16:59:49 +05309349 int stat, ret;
Mike Christiece545032008-02-29 18:25:20 -06009350
9351 if (!ddb_entry)
9352 return FAILED;
9353
Mike Christiec01be6d2010-07-22 16:59:49 +05309354 ret = iscsi_block_scsi_eh(cmd);
9355 if (ret)
9356 return ret;
9357
Mike Christiece545032008-02-29 18:25:20 -06009358 starget_printk(KERN_INFO, scsi_target(cmd->device),
9359 "WARM TARGET RESET ISSUED.\n");
9360
9361 DEBUG2(printk(KERN_INFO
9362 "scsi%ld: TARGET_DEVICE_RESET cmd=%p jiffies = 0x%lx, "
9363 "to=%x,dpc_flags=%lx, status=%x allowed=%d\n",
Jens Axboe242f9dc2008-09-14 05:55:09 -07009364 ha->host_no, cmd, jiffies, cmd->request->timeout / HZ,
Mike Christiece545032008-02-29 18:25:20 -06009365 ha->dpc_flags, cmd->result, cmd->allowed));
9366
9367 stat = qla4xxx_reset_target(ha, ddb_entry);
9368 if (stat != QLA_SUCCESS) {
9369 starget_printk(KERN_INFO, scsi_target(cmd->device),
9370 "WARM TARGET RESET FAILED.\n");
9371 return FAILED;
9372 }
9373
Mike Christiece545032008-02-29 18:25:20 -06009374 if (qla4xxx_eh_wait_for_commands(ha, scsi_target(cmd->device),
9375 NULL)) {
9376 starget_printk(KERN_INFO, scsi_target(cmd->device),
9377 "WARM TARGET DEVICE RESET FAILED - "
9378 "waiting for commands.\n");
9379 return FAILED;
9380 }
9381
David C Somayajulu9d562912008-03-19 11:23:03 -07009382 /* Send marker. */
9383 if (qla4xxx_send_marker_iocb(ha, ddb_entry, cmd->device->lun,
9384 MM_TGT_WARM_RESET) != QLA_SUCCESS) {
9385 starget_printk(KERN_INFO, scsi_target(cmd->device),
9386 "WARM TARGET DEVICE RESET FAILED - "
9387 "marker iocb failed.\n");
9388 return FAILED;
9389 }
9390
Mike Christiece545032008-02-29 18:25:20 -06009391 starget_printk(KERN_INFO, scsi_target(cmd->device),
9392 "WARM TARGET RESET SUCCEEDED.\n");
9393 return SUCCESS;
9394}
9395
9396/**
Sarang Radke8a288962011-12-06 02:34:10 -08009397 * qla4xxx_is_eh_active - check if error handler is running
9398 * @shost: Pointer to SCSI Host struct
9399 *
9400 * This routine finds that if reset host is called in EH
9401 * scenario or from some application like sg_reset
9402 **/
9403static int qla4xxx_is_eh_active(struct Scsi_Host *shost)
9404{
9405 if (shost->shost_state == SHOST_RECOVERY)
9406 return 1;
9407 return 0;
9408}
9409
9410/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07009411 * qla4xxx_eh_host_reset - kernel callback
9412 * @cmd: Pointer to Linux's SCSI command structure
9413 *
9414 * This routine is invoked by the Linux kernel to perform fatal error
9415 * recovery on the specified adapter.
9416 **/
9417static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd)
9418{
9419 int return_status = FAILED;
9420 struct scsi_qla_host *ha;
9421
Manish Rangankarb3a271a2011-07-25 13:48:53 -05009422 ha = to_qla_host(cmd->device->host);
David Somayajuluafaf5a22006-09-19 10:28:00 -07009423
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04009424 if ((is_qla8032(ha) || is_qla8042(ha)) && ql4xdontresethba)
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04009425 qla4_83xx_set_idc_dontreset(ha);
9426
9427 /*
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04009428 * For ISP8324 and ISP8042, if IDC_CTRL DONTRESET_BIT0 is set by other
9429 * protocol drivers, we should not set device_state to NEED_RESET
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04009430 */
9431 if (ql4xdontresethba ||
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04009432 ((is_qla8032(ha) || is_qla8042(ha)) &&
9433 qla4_83xx_idc_dontreset(ha))) {
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05309434 DEBUG2(printk("scsi%ld: %s: Don't Reset HBA\n",
9435 ha->host_no, __func__));
Sarang Radke8a288962011-12-06 02:34:10 -08009436
9437 /* Clear outstanding srb in queues */
9438 if (qla4xxx_is_eh_active(cmd->device->host))
9439 qla4xxx_abort_active_cmds(ha, DID_ABORT << 16);
9440
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05309441 return FAILED;
9442 }
9443
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05309444 ql4_printk(KERN_INFO, ha,
Karen Higginsdca05c42009-07-15 15:03:00 -05009445 "scsi(%ld:%d:%d:%d): HOST RESET ISSUED.\n", ha->host_no,
David Somayajuluafaf5a22006-09-19 10:28:00 -07009446 cmd->device->channel, cmd->device->id, cmd->device->lun);
9447
9448 if (qla4xxx_wait_for_hba_online(ha) != QLA_SUCCESS) {
9449 DEBUG2(printk("scsi%ld:%d: %s: Unable to reset host. Adapter "
9450 "DEAD.\n", ha->host_no, cmd->device->channel,
9451 __func__));
9452
9453 return FAILED;
9454 }
9455
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05309456 if (!test_bit(DPC_RESET_HA, &ha->dpc_flags)) {
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04009457 if (is_qla80XX(ha))
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05309458 set_bit(DPC_RESET_HA_FW_CONTEXT, &ha->dpc_flags);
9459 else
9460 set_bit(DPC_RESET_HA, &ha->dpc_flags);
9461 }
Mike Christie50a29ae2008-03-04 13:26:53 -06009462
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05309463 if (qla4xxx_recover_adapter(ha) == QLA_SUCCESS)
David Somayajuluafaf5a22006-09-19 10:28:00 -07009464 return_status = SUCCESS;
David Somayajuluafaf5a22006-09-19 10:28:00 -07009465
Vikas Chaudharyc2660df2010-07-10 14:51:02 +05309466 ql4_printk(KERN_INFO, ha, "HOST RESET %s.\n",
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009467 return_status == FAILED ? "FAILED" : "SUCCEEDED");
David Somayajuluafaf5a22006-09-19 10:28:00 -07009468
9469 return return_status;
9470}
9471
Vikas Chaudhary95d31262011-08-12 02:51:29 -07009472static int qla4xxx_context_reset(struct scsi_qla_host *ha)
9473{
9474 uint32_t mbox_cmd[MBOX_REG_COUNT];
9475 uint32_t mbox_sts[MBOX_REG_COUNT];
9476 struct addr_ctrl_blk_def *acb = NULL;
9477 uint32_t acb_len = sizeof(struct addr_ctrl_blk_def);
9478 int rval = QLA_SUCCESS;
9479 dma_addr_t acb_dma;
9480
9481 acb = dma_alloc_coherent(&ha->pdev->dev,
9482 sizeof(struct addr_ctrl_blk_def),
9483 &acb_dma, GFP_KERNEL);
9484 if (!acb) {
9485 ql4_printk(KERN_ERR, ha, "%s: Unable to alloc acb\n",
9486 __func__);
9487 rval = -ENOMEM;
9488 goto exit_port_reset;
9489 }
9490
9491 memset(acb, 0, acb_len);
9492
9493 rval = qla4xxx_get_acb(ha, acb_dma, PRIMARI_ACB, acb_len);
9494 if (rval != QLA_SUCCESS) {
9495 rval = -EIO;
9496 goto exit_free_acb;
9497 }
9498
9499 rval = qla4xxx_disable_acb(ha);
9500 if (rval != QLA_SUCCESS) {
9501 rval = -EIO;
9502 goto exit_free_acb;
9503 }
9504
9505 wait_for_completion_timeout(&ha->disable_acb_comp,
9506 DISABLE_ACB_TOV * HZ);
9507
9508 rval = qla4xxx_set_acb(ha, &mbox_cmd[0], &mbox_sts[0], acb_dma);
9509 if (rval != QLA_SUCCESS) {
9510 rval = -EIO;
9511 goto exit_free_acb;
9512 }
9513
9514exit_free_acb:
9515 dma_free_coherent(&ha->pdev->dev, sizeof(struct addr_ctrl_blk_def),
9516 acb, acb_dma);
9517exit_port_reset:
9518 DEBUG2(ql4_printk(KERN_INFO, ha, "%s %s\n", __func__,
9519 rval == QLA_SUCCESS ? "SUCCEEDED" : "FAILED"));
9520 return rval;
9521}
9522
9523static int qla4xxx_host_reset(struct Scsi_Host *shost, int reset_type)
9524{
9525 struct scsi_qla_host *ha = to_qla_host(shost);
9526 int rval = QLA_SUCCESS;
Vikas Chaudharyebd777d2013-03-07 05:43:09 -05009527 uint32_t idc_ctrl;
Vikas Chaudhary95d31262011-08-12 02:51:29 -07009528
9529 if (ql4xdontresethba) {
9530 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Don't Reset HBA\n",
9531 __func__));
9532 rval = -EPERM;
9533 goto exit_host_reset;
9534 }
9535
Vikas Chaudhary95d31262011-08-12 02:51:29 -07009536 if (test_bit(DPC_RESET_HA, &ha->dpc_flags))
9537 goto recover_adapter;
9538
9539 switch (reset_type) {
9540 case SCSI_ADAPTER_RESET:
9541 set_bit(DPC_RESET_HA, &ha->dpc_flags);
9542 break;
9543 case SCSI_FIRMWARE_RESET:
9544 if (!test_bit(DPC_RESET_HA, &ha->dpc_flags)) {
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04009545 if (is_qla80XX(ha))
Vikas Chaudhary95d31262011-08-12 02:51:29 -07009546 /* set firmware context reset */
9547 set_bit(DPC_RESET_HA_FW_CONTEXT,
9548 &ha->dpc_flags);
9549 else {
9550 rval = qla4xxx_context_reset(ha);
9551 goto exit_host_reset;
9552 }
9553 }
9554 break;
9555 }
9556
9557recover_adapter:
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04009558 /* For ISP8324 and ISP8042 set graceful reset bit in IDC_DRV_CTRL if
Vikas Chaudharyebd777d2013-03-07 05:43:09 -05009559 * reset is issued by application */
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04009560 if ((is_qla8032(ha) || is_qla8042(ha)) &&
9561 test_bit(DPC_RESET_HA, &ha->dpc_flags)) {
Vikas Chaudharyebd777d2013-03-07 05:43:09 -05009562 idc_ctrl = qla4_83xx_rd_reg(ha, QLA83XX_IDC_DRV_CTRL);
9563 qla4_83xx_wr_reg(ha, QLA83XX_IDC_DRV_CTRL,
9564 (idc_ctrl | GRACEFUL_RESET_BIT1));
9565 }
9566
Vikas Chaudhary95d31262011-08-12 02:51:29 -07009567 rval = qla4xxx_recover_adapter(ha);
9568 if (rval != QLA_SUCCESS) {
9569 DEBUG2(ql4_printk(KERN_INFO, ha, "%s: recover adapter fail\n",
9570 __func__));
9571 rval = -EIO;
9572 }
9573
9574exit_host_reset:
9575 return rval;
9576}
9577
Lalit Chandivade2232be02010-07-30 14:38:47 +05309578/* PCI AER driver recovers from all correctable errors w/o
9579 * driver intervention. For uncorrectable errors PCI AER
9580 * driver calls the following device driver's callbacks
9581 *
9582 * - Fatal Errors - link_reset
9583 * - Non-Fatal Errors - driver's pci_error_detected() which
9584 * returns CAN_RECOVER, NEED_RESET or DISCONNECT.
9585 *
9586 * PCI AER driver calls
9587 * CAN_RECOVER - driver's pci_mmio_enabled(), mmio_enabled
9588 * returns RECOVERED or NEED_RESET if fw_hung
9589 * NEED_RESET - driver's slot_reset()
9590 * DISCONNECT - device is dead & cannot recover
9591 * RECOVERED - driver's pci_resume()
9592 */
9593static pci_ers_result_t
9594qla4xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
9595{
9596 struct scsi_qla_host *ha = pci_get_drvdata(pdev);
9597
9598 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: error detected:state %x\n",
9599 ha->host_no, __func__, state);
9600
9601 if (!is_aer_supported(ha))
9602 return PCI_ERS_RESULT_NONE;
9603
9604 switch (state) {
9605 case pci_channel_io_normal:
9606 clear_bit(AF_EEH_BUSY, &ha->flags);
9607 return PCI_ERS_RESULT_CAN_RECOVER;
9608 case pci_channel_io_frozen:
9609 set_bit(AF_EEH_BUSY, &ha->flags);
9610 qla4xxx_mailbox_premature_completion(ha);
9611 qla4xxx_free_irqs(ha);
9612 pci_disable_device(pdev);
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07009613 /* Return back all IOs */
9614 qla4xxx_abort_active_cmds(ha, DID_RESET << 16);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309615 return PCI_ERS_RESULT_NEED_RESET;
9616 case pci_channel_io_perm_failure:
9617 set_bit(AF_EEH_BUSY, &ha->flags);
9618 set_bit(AF_PCI_CHANNEL_IO_PERM_FAILURE, &ha->flags);
9619 qla4xxx_abort_active_cmds(ha, DID_NO_CONNECT << 16);
9620 return PCI_ERS_RESULT_DISCONNECT;
9621 }
9622 return PCI_ERS_RESULT_NEED_RESET;
9623}
9624
9625/**
9626 * qla4xxx_pci_mmio_enabled() gets called if
9627 * qla4xxx_pci_error_detected() returns PCI_ERS_RESULT_CAN_RECOVER
9628 * and read/write to the device still works.
9629 **/
9630static pci_ers_result_t
9631qla4xxx_pci_mmio_enabled(struct pci_dev *pdev)
9632{
9633 struct scsi_qla_host *ha = pci_get_drvdata(pdev);
9634
9635 if (!is_aer_supported(ha))
9636 return PCI_ERS_RESULT_NONE;
9637
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07009638 return PCI_ERS_RESULT_RECOVERED;
Lalit Chandivade2232be02010-07-30 14:38:47 +05309639}
9640
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07009641static uint32_t qla4_8xxx_error_recovery(struct scsi_qla_host *ha)
Lalit Chandivade2232be02010-07-30 14:38:47 +05309642{
9643 uint32_t rval = QLA_ERROR;
9644 int fn;
9645 struct pci_dev *other_pdev = NULL;
9646
9647 ql4_printk(KERN_WARNING, ha, "scsi%ld: In %s\n", ha->host_no, __func__);
9648
9649 set_bit(DPC_RESET_ACTIVE, &ha->dpc_flags);
9650
9651 if (test_bit(AF_ONLINE, &ha->flags)) {
9652 clear_bit(AF_ONLINE, &ha->flags);
Manish Rangankarb3a271a2011-07-25 13:48:53 -05009653 clear_bit(AF_LINK_UP, &ha->flags);
9654 iscsi_host_for_each_session(ha->host, qla4xxx_fail_session);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309655 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309656 }
9657
9658 fn = PCI_FUNC(ha->pdev->devfn);
Tej Parkashdaa34eb2013-12-16 06:49:38 -05009659 if (is_qla8022(ha)) {
9660 while (fn > 0) {
9661 fn--;
9662 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: Finding PCI device at func %x\n",
9663 ha->host_no, __func__, fn);
9664 /* Get the pci device given the domain, bus,
9665 * slot/function number */
9666 other_pdev = pci_get_domain_bus_and_slot(
9667 pci_domain_nr(ha->pdev->bus),
9668 ha->pdev->bus->number,
9669 PCI_DEVFN(PCI_SLOT(ha->pdev->devfn),
9670 fn));
Lalit Chandivade2232be02010-07-30 14:38:47 +05309671
Tej Parkashdaa34eb2013-12-16 06:49:38 -05009672 if (!other_pdev)
9673 continue;
Lalit Chandivade2232be02010-07-30 14:38:47 +05309674
Tej Parkashdaa34eb2013-12-16 06:49:38 -05009675 if (atomic_read(&other_pdev->enable_cnt)) {
9676 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: Found PCI func in enabled state%x\n",
9677 ha->host_no, __func__, fn);
9678 pci_dev_put(other_pdev);
9679 break;
9680 }
Lalit Chandivade2232be02010-07-30 14:38:47 +05309681 pci_dev_put(other_pdev);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309682 }
Tej Parkashdaa34eb2013-12-16 06:49:38 -05009683 } else {
9684 /* this case is meant for ISP83xx/ISP84xx only */
9685 if (qla4_83xx_can_perform_reset(ha)) {
9686 /* reset fn as iSCSI is going to perform the reset */
9687 fn = 0;
9688 }
Lalit Chandivade2232be02010-07-30 14:38:47 +05309689 }
9690
9691 /* The first function on the card, the reset owner will
9692 * start & initialize the firmware. The other functions
9693 * on the card will reset the firmware context
9694 */
9695 if (!fn) {
9696 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: devfn being reset "
9697 "0x%x is the owner\n", ha->host_no, __func__,
9698 ha->pdev->devfn);
9699
Vikas Chaudhary33693c72012-08-22 07:55:04 -04009700 ha->isp_ops->idc_lock(ha);
9701 qla4_8xxx_wr_direct(ha, QLA8XXX_CRB_DEV_STATE,
9702 QLA8XXX_DEV_COLD);
Vikas Chaudhary33693c72012-08-22 07:55:04 -04009703 ha->isp_ops->idc_unlock(ha);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309704
Vikas Chaudhary39c95822012-09-20 07:35:05 -04009705 rval = qla4_8xxx_update_idc_reg(ha);
9706 if (rval == QLA_ERROR) {
9707 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: HW State: FAILED\n",
9708 ha->host_no, __func__);
9709 ha->isp_ops->idc_lock(ha);
9710 qla4_8xxx_wr_direct(ha, QLA8XXX_CRB_DEV_STATE,
9711 QLA8XXX_DEV_FAILED);
9712 ha->isp_ops->idc_unlock(ha);
9713 goto exit_error_recovery;
9714 }
Lalit Chandivade2232be02010-07-30 14:38:47 +05309715
Lalit Chandivade2232be02010-07-30 14:38:47 +05309716 clear_bit(AF_FW_RECOVERY, &ha->flags);
Mike Christie13483732011-12-01 21:38:41 -06009717 rval = qla4xxx_initialize_adapter(ha, RESET_ADAPTER);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309718
9719 if (rval != QLA_SUCCESS) {
9720 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: HW State: "
9721 "FAILED\n", ha->host_no, __func__);
Nilesh Javali37418cc2013-12-16 06:49:31 -05009722 qla4xxx_free_irqs(ha);
Poornima Vonti82761902012-09-20 07:35:04 -04009723 ha->isp_ops->idc_lock(ha);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309724 qla4_8xxx_clear_drv_active(ha);
Vikas Chaudhary33693c72012-08-22 07:55:04 -04009725 qla4_8xxx_wr_direct(ha, QLA8XXX_CRB_DEV_STATE,
9726 QLA8XXX_DEV_FAILED);
Poornima Vonti82761902012-09-20 07:35:04 -04009727 ha->isp_ops->idc_unlock(ha);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309728 } else {
9729 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: HW State: "
9730 "READY\n", ha->host_no, __func__);
Poornima Vonti82761902012-09-20 07:35:04 -04009731 ha->isp_ops->idc_lock(ha);
Vikas Chaudhary33693c72012-08-22 07:55:04 -04009732 qla4_8xxx_wr_direct(ha, QLA8XXX_CRB_DEV_STATE,
9733 QLA8XXX_DEV_READY);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309734 /* Clear driver state register */
Vikas Chaudhary33693c72012-08-22 07:55:04 -04009735 qla4_8xxx_wr_direct(ha, QLA8XXX_CRB_DRV_STATE, 0);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309736 qla4_8xxx_set_drv_active(ha);
Poornima Vonti82761902012-09-20 07:35:04 -04009737 ha->isp_ops->idc_unlock(ha);
Poornima Vonti137257d2013-01-20 23:51:01 -05009738 ha->isp_ops->enable_intrs(ha);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309739 }
Lalit Chandivade2232be02010-07-30 14:38:47 +05309740 } else {
9741 ql4_printk(KERN_INFO, ha, "scsi%ld: %s: devfn 0x%x is not "
9742 "the reset owner\n", ha->host_no, __func__,
9743 ha->pdev->devfn);
Vikas Chaudhary33693c72012-08-22 07:55:04 -04009744 if ((qla4_8xxx_rd_direct(ha, QLA8XXX_CRB_DEV_STATE) ==
9745 QLA8XXX_DEV_READY)) {
Lalit Chandivade2232be02010-07-30 14:38:47 +05309746 clear_bit(AF_FW_RECOVERY, &ha->flags);
Mike Christie13483732011-12-01 21:38:41 -06009747 rval = qla4xxx_initialize_adapter(ha, RESET_ADAPTER);
Poornima Vonti137257d2013-01-20 23:51:01 -05009748 if (rval == QLA_SUCCESS)
9749 ha->isp_ops->enable_intrs(ha);
Nilesh Javali37418cc2013-12-16 06:49:31 -05009750 else
9751 qla4xxx_free_irqs(ha);
Poornima Vonti137257d2013-01-20 23:51:01 -05009752
Vikas Chaudhary33693c72012-08-22 07:55:04 -04009753 ha->isp_ops->idc_lock(ha);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309754 qla4_8xxx_set_drv_active(ha);
Vikas Chaudhary33693c72012-08-22 07:55:04 -04009755 ha->isp_ops->idc_unlock(ha);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309756 }
9757 }
Vikas Chaudhary39c95822012-09-20 07:35:05 -04009758exit_error_recovery:
Lalit Chandivade2232be02010-07-30 14:38:47 +05309759 clear_bit(DPC_RESET_ACTIVE, &ha->dpc_flags);
9760 return rval;
9761}
9762
9763static pci_ers_result_t
9764qla4xxx_pci_slot_reset(struct pci_dev *pdev)
9765{
9766 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
9767 struct scsi_qla_host *ha = pci_get_drvdata(pdev);
9768 int rc;
9769
9770 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: slot_reset\n",
9771 ha->host_no, __func__);
9772
9773 if (!is_aer_supported(ha))
9774 return PCI_ERS_RESULT_NONE;
9775
9776 /* Restore the saved state of PCIe device -
9777 * BAR registers, PCI Config space, PCIX, MSI,
9778 * IOV states
9779 */
9780 pci_restore_state(pdev);
9781
9782 /* pci_restore_state() clears the saved_state flag of the device
9783 * save restored state which resets saved_state flag
9784 */
9785 pci_save_state(pdev);
9786
9787 /* Initialize device or resume if in suspended state */
9788 rc = pci_enable_device(pdev);
9789 if (rc) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009790 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: Can't re-enable "
Lalit Chandivade2232be02010-07-30 14:38:47 +05309791 "device after reset\n", ha->host_no, __func__);
9792 goto exit_slot_reset;
9793 }
9794
Vikas Chaudhary7b3595d2010-10-06 22:50:56 -07009795 ha->isp_ops->disable_intrs(ha);
Lalit Chandivade2232be02010-07-30 14:38:47 +05309796
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04009797 if (is_qla80XX(ha)) {
Lalit Chandivade2232be02010-07-30 14:38:47 +05309798 if (qla4_8xxx_error_recovery(ha) == QLA_SUCCESS) {
9799 ret = PCI_ERS_RESULT_RECOVERED;
9800 goto exit_slot_reset;
9801 } else
9802 goto exit_slot_reset;
9803 }
9804
9805exit_slot_reset:
9806 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: Return=%x\n"
9807 "device after reset\n", ha->host_no, __func__, ret);
9808 return ret;
9809}
9810
9811static void
9812qla4xxx_pci_resume(struct pci_dev *pdev)
9813{
9814 struct scsi_qla_host *ha = pci_get_drvdata(pdev);
9815 int ret;
9816
9817 ql4_printk(KERN_WARNING, ha, "scsi%ld: %s: pci_resume\n",
9818 ha->host_no, __func__);
9819
9820 ret = qla4xxx_wait_for_hba_online(ha);
9821 if (ret != QLA_SUCCESS) {
9822 ql4_printk(KERN_ERR, ha, "scsi%ld: %s: the device failed to "
9823 "resume I/O from slot/link_reset\n", ha->host_no,
9824 __func__);
9825 }
9826
9827 pci_cleanup_aer_uncorrect_error_status(pdev);
9828 clear_bit(AF_EEH_BUSY, &ha->flags);
9829}
9830
Stephen Hemmingera55b2d22012-09-07 09:33:16 -07009831static const struct pci_error_handlers qla4xxx_err_handler = {
Lalit Chandivade2232be02010-07-30 14:38:47 +05309832 .error_detected = qla4xxx_pci_error_detected,
9833 .mmio_enabled = qla4xxx_pci_mmio_enabled,
9834 .slot_reset = qla4xxx_pci_slot_reset,
9835 .resume = qla4xxx_pci_resume,
9836};
9837
David Somayajuluafaf5a22006-09-19 10:28:00 -07009838static struct pci_device_id qla4xxx_pci_tbl[] = {
9839 {
9840 .vendor = PCI_VENDOR_ID_QLOGIC,
9841 .device = PCI_DEVICE_ID_QLOGIC_ISP4010,
9842 .subvendor = PCI_ANY_ID,
9843 .subdevice = PCI_ANY_ID,
9844 },
9845 {
9846 .vendor = PCI_VENDOR_ID_QLOGIC,
9847 .device = PCI_DEVICE_ID_QLOGIC_ISP4022,
9848 .subvendor = PCI_ANY_ID,
9849 .subdevice = PCI_ANY_ID,
9850 },
David C Somayajulud9150582006-11-15 17:38:40 -08009851 {
9852 .vendor = PCI_VENDOR_ID_QLOGIC,
9853 .device = PCI_DEVICE_ID_QLOGIC_ISP4032,
9854 .subvendor = PCI_ANY_ID,
9855 .subdevice = PCI_ANY_ID,
9856 },
Vikas Chaudharyf4f5df232010-07-28 15:53:44 +05309857 {
9858 .vendor = PCI_VENDOR_ID_QLOGIC,
9859 .device = PCI_DEVICE_ID_QLOGIC_ISP8022,
9860 .subvendor = PCI_ANY_ID,
9861 .subdevice = PCI_ANY_ID,
9862 },
Vikas Chaudhary6e7b4292012-08-22 07:55:08 -04009863 {
9864 .vendor = PCI_VENDOR_ID_QLOGIC,
9865 .device = PCI_DEVICE_ID_QLOGIC_ISP8324,
9866 .subvendor = PCI_ANY_ID,
9867 .subdevice = PCI_ANY_ID,
9868 },
Vikas Chaudharyb37ca412013-08-16 07:03:02 -04009869 {
9870 .vendor = PCI_VENDOR_ID_QLOGIC,
9871 .device = PCI_DEVICE_ID_QLOGIC_ISP8042,
9872 .subvendor = PCI_ANY_ID,
9873 .subdevice = PCI_ANY_ID,
9874 },
David Somayajuluafaf5a22006-09-19 10:28:00 -07009875 {0, 0},
9876};
9877MODULE_DEVICE_TABLE(pci, qla4xxx_pci_tbl);
9878
Adrian Bunk47975472007-04-26 00:35:16 -07009879static struct pci_driver qla4xxx_pci_driver = {
David Somayajuluafaf5a22006-09-19 10:28:00 -07009880 .name = DRIVER_NAME,
9881 .id_table = qla4xxx_pci_tbl,
9882 .probe = qla4xxx_probe_adapter,
9883 .remove = qla4xxx_remove_adapter,
Lalit Chandivade2232be02010-07-30 14:38:47 +05309884 .err_handler = &qla4xxx_err_handler,
David Somayajuluafaf5a22006-09-19 10:28:00 -07009885};
9886
9887static int __init qla4xxx_module_init(void)
9888{
9889 int ret;
9890
9891 /* Allocate cache for SRBs. */
9892 srb_cachep = kmem_cache_create("qla4xxx_srbs", sizeof(struct srb), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09009893 SLAB_HWCACHE_ALIGN, NULL);
David Somayajuluafaf5a22006-09-19 10:28:00 -07009894 if (srb_cachep == NULL) {
9895 printk(KERN_ERR
9896 "%s: Unable to allocate SRB cache..."
9897 "Failing load!\n", DRIVER_NAME);
9898 ret = -ENOMEM;
9899 goto no_srp_cache;
9900 }
9901
9902 /* Derive version string. */
9903 strcpy(qla4xxx_version_str, QLA4XXX_DRIVER_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07009904 if (ql4xextended_error_logging)
David Somayajuluafaf5a22006-09-19 10:28:00 -07009905 strcat(qla4xxx_version_str, "-debug");
9906
9907 qla4xxx_scsi_transport =
9908 iscsi_register_transport(&qla4xxx_iscsi_transport);
9909 if (!qla4xxx_scsi_transport){
9910 ret = -ENODEV;
9911 goto release_srb_cache;
9912 }
9913
David Somayajuluafaf5a22006-09-19 10:28:00 -07009914 ret = pci_register_driver(&qla4xxx_pci_driver);
9915 if (ret)
9916 goto unregister_transport;
9917
9918 printk(KERN_INFO "QLogic iSCSI HBA Driver\n");
9919 return 0;
Doug Maxey5ae16db2006-10-05 23:50:07 -05009920
David Somayajuluafaf5a22006-09-19 10:28:00 -07009921unregister_transport:
9922 iscsi_unregister_transport(&qla4xxx_iscsi_transport);
9923release_srb_cache:
9924 kmem_cache_destroy(srb_cachep);
9925no_srp_cache:
9926 return ret;
9927}
9928
9929static void __exit qla4xxx_module_exit(void)
9930{
David Somayajuluafaf5a22006-09-19 10:28:00 -07009931 pci_unregister_driver(&qla4xxx_pci_driver);
9932 iscsi_unregister_transport(&qla4xxx_iscsi_transport);
9933 kmem_cache_destroy(srb_cachep);
9934}
9935
9936module_init(qla4xxx_module_init);
9937module_exit(qla4xxx_module_exit);
9938
9939MODULE_AUTHOR("QLogic Corporation");
9940MODULE_DESCRIPTION("QLogic iSCSI HBA Driver");
9941MODULE_LICENSE("GPL");
9942MODULE_VERSION(QLA4XXX_DRIVER_VERSION);