2 * QLogic iSCSI HBA Driver
3 * Copyright (c) 2003-2013 QLogic Corporation
5 * See LICENSE.qla4xxx for copyright and licensing details.
7 #include <linux/moduleparam.h>
8 #include <linux/slab.h>
9 #include <linux/blkdev.h>
10 #include <linux/iscsi_boot_sysfs.h>
11 #include <linux/inet.h>
13 #include <scsi/scsi_tcq.h>
14 #include <scsi/scsicam.h>
17 #include "ql4_version.h"
20 #include "ql4_inline.h"
26 static char qla4xxx_version_str
[40];
29 * SRB allocation cache
31 static struct kmem_cache
*srb_cachep
;
34 * Module parameter information and variables
36 static int ql4xdisablesysfsboot
= 1;
37 module_param(ql4xdisablesysfsboot
, int, S_IRUGO
| S_IWUSR
);
38 MODULE_PARM_DESC(ql4xdisablesysfsboot
,
39 " 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)");
44 module_param(ql4xdontresethba
, int, S_IRUGO
| S_IWUSR
);
45 MODULE_PARM_DESC(ql4xdontresethba
,
46 " 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");
50 int ql4xextended_error_logging
;
51 module_param(ql4xextended_error_logging
, int, S_IRUGO
| S_IWUSR
);
52 MODULE_PARM_DESC(ql4xextended_error_logging
,
53 " Option to enable extended error logging.\n"
54 "\t\t 0 - no logging (Default)\n"
55 "\t\t 2 - debug logging");
57 int ql4xenablemsix
= 1;
58 module_param(ql4xenablemsix
, int, S_IRUGO
|S_IWUSR
);
59 MODULE_PARM_DESC(ql4xenablemsix
,
60 " 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.");
65 #define QL4_DEF_QDEPTH 32
66 static int ql4xmaxqdepth
= QL4_DEF_QDEPTH
;
67 module_param(ql4xmaxqdepth
, int, S_IRUGO
| S_IWUSR
);
68 MODULE_PARM_DESC(ql4xmaxqdepth
,
69 " Maximum queue depth to report for target devices.\n"
72 static int ql4xqfulltracking
= 1;
73 module_param(ql4xqfulltracking
, int, S_IRUGO
| S_IWUSR
);
74 MODULE_PARM_DESC(ql4xqfulltracking
,
75 " Enable or disable dynamic tracking and adjustment of\n"
76 "\t\t scsi device queue depth.\n"
78 "\t\t 1 - Enable. (Default)");
80 static int ql4xsess_recovery_tmo
= QL4_SESS_RECOVERY_TMO
;
81 module_param(ql4xsess_recovery_tmo
, int, S_IRUGO
);
82 MODULE_PARM_DESC(ql4xsess_recovery_tmo
,
83 " Target Session Recovery Timeout.\n"
84 "\t\t Default: 120 sec.");
86 int ql4xmdcapmask
= 0;
87 module_param(ql4xmdcapmask
, int, S_IRUGO
);
88 MODULE_PARM_DESC(ql4xmdcapmask
,
89 " Set the Minidump driver capture mask level.\n"
90 "\t\t Default is 0 (firmware default capture mask)\n"
91 "\t\t Can be set to 0x3, 0x7, 0xF, 0x1F, 0x3F, 0x7F, 0xFF");
94 module_param(ql4xenablemd
, int, S_IRUGO
| S_IWUSR
);
95 MODULE_PARM_DESC(ql4xenablemd
,
96 " Set to enable minidump.\n"
97 "\t\t 0 - disable minidump\n"
98 "\t\t 1 - enable minidump (Default)");
100 static int qla4xxx_wait_for_hba_online(struct scsi_qla_host
*ha
);
102 * SCSI host template entry points
104 static void qla4xxx_config_dma_addressing(struct scsi_qla_host
*ha
);
107 * iSCSI template entry points
109 static int qla4xxx_session_get_param(struct iscsi_cls_session
*cls_sess
,
110 enum iscsi_param param
, char *buf
);
111 static int qla4xxx_conn_get_param(struct iscsi_cls_conn
*conn
,
112 enum iscsi_param param
, char *buf
);
113 static int qla4xxx_host_get_param(struct Scsi_Host
*shost
,
114 enum iscsi_host_param param
, char *buf
);
115 static int qla4xxx_iface_set_param(struct Scsi_Host
*shost
, void *data
,
117 static int qla4xxx_get_iface_param(struct iscsi_iface
*iface
,
118 enum iscsi_param_type param_type
,
119 int param
, char *buf
);
120 static enum blk_eh_timer_return
qla4xxx_eh_cmd_timed_out(struct scsi_cmnd
*sc
);
121 static struct iscsi_endpoint
*qla4xxx_ep_connect(struct Scsi_Host
*shost
,
122 struct sockaddr
*dst_addr
,
124 static int qla4xxx_ep_poll(struct iscsi_endpoint
*ep
, int timeout_ms
);
125 static void qla4xxx_ep_disconnect(struct iscsi_endpoint
*ep
);
126 static int qla4xxx_get_ep_param(struct iscsi_endpoint
*ep
,
127 enum iscsi_param param
, char *buf
);
128 static int qla4xxx_conn_start(struct iscsi_cls_conn
*conn
);
129 static struct iscsi_cls_conn
*
130 qla4xxx_conn_create(struct iscsi_cls_session
*cls_sess
, uint32_t conn_idx
);
131 static 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
);
134 static void qla4xxx_conn_destroy(struct iscsi_cls_conn
*conn
);
135 static struct iscsi_cls_session
*
136 qla4xxx_session_create(struct iscsi_endpoint
*ep
, uint16_t cmds_max
,
137 uint16_t qdepth
, uint32_t initial_cmdsn
);
138 static void qla4xxx_session_destroy(struct iscsi_cls_session
*sess
);
139 static void qla4xxx_task_work(struct work_struct
*wdata
);
140 static int qla4xxx_alloc_pdu(struct iscsi_task
*, uint8_t);
141 static int qla4xxx_task_xmit(struct iscsi_task
*);
142 static void qla4xxx_task_cleanup(struct iscsi_task
*);
143 static void qla4xxx_fail_session(struct iscsi_cls_session
*cls_session
);
144 static void qla4xxx_conn_get_stats(struct iscsi_cls_conn
*cls_conn
,
145 struct iscsi_stats
*stats
);
146 static 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
);
149 static int qla4xxx_get_chap_list(struct Scsi_Host
*shost
, uint16_t chap_tbl_idx
,
150 uint32_t *num_entries
, char *buf
);
151 static int qla4xxx_delete_chap(struct Scsi_Host
*shost
, uint16_t chap_tbl_idx
);
152 static int qla4xxx_set_chap_entry(struct Scsi_Host
*shost
, void *data
,
154 static int qla4xxx_get_host_stats(struct Scsi_Host
*shost
, char *buf
, int len
);
157 * SCSI host template entry points
159 static int qla4xxx_queuecommand(struct Scsi_Host
*h
, struct scsi_cmnd
*cmd
);
160 static int qla4xxx_eh_abort(struct scsi_cmnd
*cmd
);
161 static int qla4xxx_eh_device_reset(struct scsi_cmnd
*cmd
);
162 static int qla4xxx_eh_target_reset(struct scsi_cmnd
*cmd
);
163 static int qla4xxx_eh_host_reset(struct scsi_cmnd
*cmd
);
164 static int qla4xxx_slave_alloc(struct scsi_device
*device
);
165 static umode_t
qla4_attr_is_visible(int param_type
, int param
);
166 static int qla4xxx_host_reset(struct Scsi_Host
*shost
, int reset_type
);
169 * iSCSI Flash DDB sysfs entry points
172 qla4xxx_sysfs_ddb_set_param(struct iscsi_bus_flash_session
*fnode_sess
,
173 struct iscsi_bus_flash_conn
*fnode_conn
,
174 void *data
, int len
);
176 qla4xxx_sysfs_ddb_get_param(struct iscsi_bus_flash_session
*fnode_sess
,
177 int param
, char *buf
);
178 static int qla4xxx_sysfs_ddb_add(struct Scsi_Host
*shost
, const char *buf
,
181 qla4xxx_sysfs_ddb_delete(struct iscsi_bus_flash_session
*fnode_sess
);
182 static int qla4xxx_sysfs_ddb_login(struct iscsi_bus_flash_session
*fnode_sess
,
183 struct iscsi_bus_flash_conn
*fnode_conn
);
184 static int qla4xxx_sysfs_ddb_logout(struct iscsi_bus_flash_session
*fnode_sess
,
185 struct iscsi_bus_flash_conn
*fnode_conn
);
186 static int qla4xxx_sysfs_ddb_logout_sid(struct iscsi_cls_session
*cls_sess
);
188 static struct qla4_8xxx_legacy_intr_set legacy_intr
[] =
189 QLA82XX_LEGACY_INTR_CONFIG
;
191 static struct scsi_host_template qla4xxx_driver_template
= {
192 .module
= THIS_MODULE
,
194 .proc_name
= DRIVER_NAME
,
195 .queuecommand
= qla4xxx_queuecommand
,
197 .eh_abort_handler
= qla4xxx_eh_abort
,
198 .eh_device_reset_handler
= qla4xxx_eh_device_reset
,
199 .eh_target_reset_handler
= qla4xxx_eh_target_reset
,
200 .eh_host_reset_handler
= qla4xxx_eh_host_reset
,
201 .eh_timed_out
= qla4xxx_eh_cmd_timed_out
,
203 .slave_alloc
= qla4xxx_slave_alloc
,
204 .change_queue_depth
= scsi_change_queue_depth
,
208 .use_clustering
= ENABLE_CLUSTERING
,
209 .sg_tablesize
= SG_ALL
,
211 .max_sectors
= 0xFFFF,
212 .shost_attrs
= qla4xxx_host_attrs
,
213 .host_reset
= qla4xxx_host_reset
,
214 .vendor_id
= SCSI_NL_VID_TYPE_PCI
| PCI_VENDOR_ID_QLOGIC
,
218 static struct iscsi_transport qla4xxx_iscsi_transport
= {
219 .owner
= THIS_MODULE
,
221 .caps
= CAP_TEXT_NEGO
|
222 CAP_DATA_PATH_OFFLOAD
| CAP_HDRDGST
|
223 CAP_DATADGST
| CAP_LOGIN_OFFLOAD
|
225 .attr_is_visible
= qla4_attr_is_visible
,
226 .create_session
= qla4xxx_session_create
,
227 .destroy_session
= qla4xxx_session_destroy
,
228 .start_conn
= qla4xxx_conn_start
,
229 .create_conn
= qla4xxx_conn_create
,
230 .bind_conn
= qla4xxx_conn_bind
,
231 .stop_conn
= iscsi_conn_stop
,
232 .destroy_conn
= qla4xxx_conn_destroy
,
233 .set_param
= iscsi_set_param
,
234 .get_conn_param
= qla4xxx_conn_get_param
,
235 .get_session_param
= qla4xxx_session_get_param
,
236 .get_ep_param
= qla4xxx_get_ep_param
,
237 .ep_connect
= qla4xxx_ep_connect
,
238 .ep_poll
= qla4xxx_ep_poll
,
239 .ep_disconnect
= qla4xxx_ep_disconnect
,
240 .get_stats
= qla4xxx_conn_get_stats
,
241 .send_pdu
= iscsi_conn_send_pdu
,
242 .xmit_task
= qla4xxx_task_xmit
,
243 .cleanup_task
= qla4xxx_task_cleanup
,
244 .alloc_pdu
= qla4xxx_alloc_pdu
,
246 .get_host_param
= qla4xxx_host_get_param
,
247 .set_iface_param
= qla4xxx_iface_set_param
,
248 .get_iface_param
= qla4xxx_get_iface_param
,
249 .bsg_request
= qla4xxx_bsg_request
,
250 .send_ping
= qla4xxx_send_ping
,
251 .get_chap
= qla4xxx_get_chap_list
,
252 .delete_chap
= qla4xxx_delete_chap
,
253 .set_chap
= qla4xxx_set_chap_entry
,
254 .get_flashnode_param
= qla4xxx_sysfs_ddb_get_param
,
255 .set_flashnode_param
= qla4xxx_sysfs_ddb_set_param
,
256 .new_flashnode
= qla4xxx_sysfs_ddb_add
,
257 .del_flashnode
= qla4xxx_sysfs_ddb_delete
,
258 .login_flashnode
= qla4xxx_sysfs_ddb_login
,
259 .logout_flashnode
= qla4xxx_sysfs_ddb_logout
,
260 .logout_flashnode_sid
= qla4xxx_sysfs_ddb_logout_sid
,
261 .get_host_stats
= qla4xxx_get_host_stats
,
264 static struct scsi_transport_template
*qla4xxx_scsi_transport
;
266 static int qla4xxx_send_ping(struct Scsi_Host
*shost
, uint32_t iface_num
,
267 uint32_t iface_type
, uint32_t payload_size
,
268 uint32_t pid
, struct sockaddr
*dst_addr
)
270 struct scsi_qla_host
*ha
= to_qla_host(shost
);
271 struct sockaddr_in
*addr
;
272 struct sockaddr_in6
*addr6
;
273 uint32_t options
= 0;
274 uint8_t ipaddr
[IPv6_ADDR_LEN
];
277 memset(ipaddr
, 0, IPv6_ADDR_LEN
);
279 if ((iface_type
== ISCSI_IFACE_TYPE_IPV4
) &&
280 (dst_addr
->sa_family
== AF_INET
)) {
281 addr
= (struct sockaddr_in
*)dst_addr
;
282 memcpy(ipaddr
, &addr
->sin_addr
.s_addr
, IP_ADDR_LEN
);
283 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: IPv4 Ping src: %pI4 "
284 "dest: %pI4\n", __func__
,
285 &ha
->ip_config
.ip_address
, ipaddr
));
286 rval
= qla4xxx_ping_iocb(ha
, options
, payload_size
, pid
,
290 } else if ((iface_type
== ISCSI_IFACE_TYPE_IPV6
) &&
291 (dst_addr
->sa_family
== AF_INET6
)) {
293 addr6
= (struct sockaddr_in6
*)dst_addr
;
294 memcpy(ipaddr
, &addr6
->sin6_addr
.in6_u
.u6_addr8
, IPv6_ADDR_LEN
);
296 options
|= PING_IPV6_PROTOCOL_ENABLE
;
298 /* Ping using LinkLocal address */
299 if ((iface_num
== 0) || (iface_num
== 1)) {
300 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: LinkLocal Ping "
301 "src: %pI6 dest: %pI6\n", __func__
,
302 &ha
->ip_config
.ipv6_link_local_addr
,
304 options
|= PING_IPV6_LINKLOCAL_ADDR
;
305 rval
= qla4xxx_ping_iocb(ha
, options
, payload_size
,
308 ql4_printk(KERN_WARNING
, ha
, "%s: iface num = %d "
309 "not supported\n", __func__
, iface_num
);
315 * If ping using LinkLocal address fails, try ping using
318 if (rval
!= QLA_SUCCESS
) {
319 options
&= ~PING_IPV6_LINKLOCAL_ADDR
;
320 if (iface_num
== 0) {
321 options
|= PING_IPV6_ADDR0
;
322 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: IPv6 "
324 "dest: %pI6\n", __func__
,
325 &ha
->ip_config
.ipv6_addr0
,
327 } else if (iface_num
== 1) {
328 options
|= PING_IPV6_ADDR1
;
329 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: IPv6 "
331 "dest: %pI6\n", __func__
,
332 &ha
->ip_config
.ipv6_addr1
,
335 rval
= qla4xxx_ping_iocb(ha
, options
, payload_size
,
346 static umode_t
qla4_attr_is_visible(int param_type
, int param
)
348 switch (param_type
) {
349 case ISCSI_HOST_PARAM
:
351 case ISCSI_HOST_PARAM_HWADDRESS
:
352 case ISCSI_HOST_PARAM_IPADDRESS
:
353 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
354 case ISCSI_HOST_PARAM_PORT_STATE
:
355 case ISCSI_HOST_PARAM_PORT_SPEED
:
362 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
363 case ISCSI_PARAM_PERSISTENT_PORT
:
364 case ISCSI_PARAM_CONN_ADDRESS
:
365 case ISCSI_PARAM_CONN_PORT
:
366 case ISCSI_PARAM_TARGET_NAME
:
367 case ISCSI_PARAM_TPGT
:
368 case ISCSI_PARAM_TARGET_ALIAS
:
369 case ISCSI_PARAM_MAX_BURST
:
370 case ISCSI_PARAM_MAX_R2T
:
371 case ISCSI_PARAM_FIRST_BURST
:
372 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
373 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
374 case ISCSI_PARAM_IFACE_NAME
:
375 case ISCSI_PARAM_CHAP_OUT_IDX
:
376 case ISCSI_PARAM_CHAP_IN_IDX
:
377 case ISCSI_PARAM_USERNAME
:
378 case ISCSI_PARAM_PASSWORD
:
379 case ISCSI_PARAM_USERNAME_IN
:
380 case ISCSI_PARAM_PASSWORD_IN
:
381 case ISCSI_PARAM_AUTO_SND_TGT_DISABLE
:
382 case ISCSI_PARAM_DISCOVERY_SESS
:
383 case ISCSI_PARAM_PORTAL_TYPE
:
384 case ISCSI_PARAM_CHAP_AUTH_EN
:
385 case ISCSI_PARAM_DISCOVERY_LOGOUT_EN
:
386 case ISCSI_PARAM_BIDI_CHAP_EN
:
387 case ISCSI_PARAM_DISCOVERY_AUTH_OPTIONAL
:
388 case ISCSI_PARAM_DEF_TIME2WAIT
:
389 case ISCSI_PARAM_DEF_TIME2RETAIN
:
390 case ISCSI_PARAM_HDRDGST_EN
:
391 case ISCSI_PARAM_DATADGST_EN
:
392 case ISCSI_PARAM_INITIAL_R2T_EN
:
393 case ISCSI_PARAM_IMM_DATA_EN
:
394 case ISCSI_PARAM_PDU_INORDER_EN
:
395 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
396 case ISCSI_PARAM_MAX_SEGMENT_SIZE
:
397 case ISCSI_PARAM_TCP_TIMESTAMP_STAT
:
398 case ISCSI_PARAM_TCP_WSF_DISABLE
:
399 case ISCSI_PARAM_TCP_NAGLE_DISABLE
:
400 case ISCSI_PARAM_TCP_TIMER_SCALE
:
401 case ISCSI_PARAM_TCP_TIMESTAMP_EN
:
402 case ISCSI_PARAM_TCP_XMIT_WSF
:
403 case ISCSI_PARAM_TCP_RECV_WSF
:
404 case ISCSI_PARAM_IP_FRAGMENT_DISABLE
:
405 case ISCSI_PARAM_IPV4_TOS
:
406 case ISCSI_PARAM_IPV6_TC
:
407 case ISCSI_PARAM_IPV6_FLOW_LABEL
:
408 case ISCSI_PARAM_IS_FW_ASSIGNED_IPV6
:
409 case ISCSI_PARAM_KEEPALIVE_TMO
:
410 case ISCSI_PARAM_LOCAL_PORT
:
411 case ISCSI_PARAM_ISID
:
412 case ISCSI_PARAM_TSID
:
413 case ISCSI_PARAM_DEF_TASKMGMT_TMO
:
414 case ISCSI_PARAM_ERL
:
415 case ISCSI_PARAM_STATSN
:
416 case ISCSI_PARAM_EXP_STATSN
:
417 case ISCSI_PARAM_DISCOVERY_PARENT_IDX
:
418 case ISCSI_PARAM_DISCOVERY_PARENT_TYPE
:
419 case ISCSI_PARAM_LOCAL_IPADDR
:
424 case ISCSI_NET_PARAM
:
426 case ISCSI_NET_PARAM_IPV4_ADDR
:
427 case ISCSI_NET_PARAM_IPV4_SUBNET
:
428 case ISCSI_NET_PARAM_IPV4_GW
:
429 case ISCSI_NET_PARAM_IPV4_BOOTPROTO
:
430 case ISCSI_NET_PARAM_IFACE_ENABLE
:
431 case ISCSI_NET_PARAM_IPV6_LINKLOCAL
:
432 case ISCSI_NET_PARAM_IPV6_ADDR
:
433 case ISCSI_NET_PARAM_IPV6_ROUTER
:
434 case ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG
:
435 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG
:
436 case ISCSI_NET_PARAM_VLAN_ID
:
437 case ISCSI_NET_PARAM_VLAN_PRIORITY
:
438 case ISCSI_NET_PARAM_VLAN_ENABLED
:
439 case ISCSI_NET_PARAM_MTU
:
440 case ISCSI_NET_PARAM_PORT
:
441 case ISCSI_NET_PARAM_IPADDR_STATE
:
442 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_STATE
:
443 case ISCSI_NET_PARAM_IPV6_ROUTER_STATE
:
444 case ISCSI_NET_PARAM_DELAYED_ACK_EN
:
445 case ISCSI_NET_PARAM_TCP_NAGLE_DISABLE
:
446 case ISCSI_NET_PARAM_TCP_WSF_DISABLE
:
447 case ISCSI_NET_PARAM_TCP_WSF
:
448 case ISCSI_NET_PARAM_TCP_TIMER_SCALE
:
449 case ISCSI_NET_PARAM_TCP_TIMESTAMP_EN
:
450 case ISCSI_NET_PARAM_CACHE_ID
:
451 case ISCSI_NET_PARAM_IPV4_DHCP_DNS_ADDR_EN
:
452 case ISCSI_NET_PARAM_IPV4_DHCP_SLP_DA_EN
:
453 case ISCSI_NET_PARAM_IPV4_TOS_EN
:
454 case ISCSI_NET_PARAM_IPV4_TOS
:
455 case ISCSI_NET_PARAM_IPV4_GRAT_ARP_EN
:
456 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID_EN
:
457 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID
:
458 case ISCSI_NET_PARAM_IPV4_DHCP_REQ_VENDOR_ID_EN
:
459 case ISCSI_NET_PARAM_IPV4_DHCP_USE_VENDOR_ID_EN
:
460 case ISCSI_NET_PARAM_IPV4_DHCP_VENDOR_ID
:
461 case ISCSI_NET_PARAM_IPV4_DHCP_LEARN_IQN_EN
:
462 case ISCSI_NET_PARAM_IPV4_FRAGMENT_DISABLE
:
463 case ISCSI_NET_PARAM_IPV4_IN_FORWARD_EN
:
464 case ISCSI_NET_PARAM_REDIRECT_EN
:
465 case ISCSI_NET_PARAM_IPV4_TTL
:
466 case ISCSI_NET_PARAM_IPV6_GRAT_NEIGHBOR_ADV_EN
:
467 case ISCSI_NET_PARAM_IPV6_MLD_EN
:
468 case ISCSI_NET_PARAM_IPV6_FLOW_LABEL
:
469 case ISCSI_NET_PARAM_IPV6_TRAFFIC_CLASS
:
470 case ISCSI_NET_PARAM_IPV6_HOP_LIMIT
:
471 case ISCSI_NET_PARAM_IPV6_ND_REACHABLE_TMO
:
472 case ISCSI_NET_PARAM_IPV6_ND_REXMIT_TIME
:
473 case ISCSI_NET_PARAM_IPV6_ND_STALE_TMO
:
474 case ISCSI_NET_PARAM_IPV6_DUP_ADDR_DETECT_CNT
:
475 case ISCSI_NET_PARAM_IPV6_RTR_ADV_LINK_MTU
:
480 case ISCSI_IFACE_PARAM
:
482 case ISCSI_IFACE_PARAM_DEF_TASKMGMT_TMO
:
483 case ISCSI_IFACE_PARAM_HDRDGST_EN
:
484 case ISCSI_IFACE_PARAM_DATADGST_EN
:
485 case ISCSI_IFACE_PARAM_IMM_DATA_EN
:
486 case ISCSI_IFACE_PARAM_INITIAL_R2T_EN
:
487 case ISCSI_IFACE_PARAM_DATASEQ_INORDER_EN
:
488 case ISCSI_IFACE_PARAM_PDU_INORDER_EN
:
489 case ISCSI_IFACE_PARAM_ERL
:
490 case ISCSI_IFACE_PARAM_MAX_RECV_DLENGTH
:
491 case ISCSI_IFACE_PARAM_FIRST_BURST
:
492 case ISCSI_IFACE_PARAM_MAX_R2T
:
493 case ISCSI_IFACE_PARAM_MAX_BURST
:
494 case ISCSI_IFACE_PARAM_CHAP_AUTH_EN
:
495 case ISCSI_IFACE_PARAM_BIDI_CHAP_EN
:
496 case ISCSI_IFACE_PARAM_DISCOVERY_AUTH_OPTIONAL
:
497 case ISCSI_IFACE_PARAM_DISCOVERY_LOGOUT_EN
:
498 case ISCSI_IFACE_PARAM_STRICT_LOGIN_COMP_EN
:
499 case ISCSI_IFACE_PARAM_INITIATOR_NAME
:
504 case ISCSI_FLASHNODE_PARAM
:
506 case ISCSI_FLASHNODE_IS_FW_ASSIGNED_IPV6
:
507 case ISCSI_FLASHNODE_PORTAL_TYPE
:
508 case ISCSI_FLASHNODE_AUTO_SND_TGT_DISABLE
:
509 case ISCSI_FLASHNODE_DISCOVERY_SESS
:
510 case ISCSI_FLASHNODE_ENTRY_EN
:
511 case ISCSI_FLASHNODE_HDR_DGST_EN
:
512 case ISCSI_FLASHNODE_DATA_DGST_EN
:
513 case ISCSI_FLASHNODE_IMM_DATA_EN
:
514 case ISCSI_FLASHNODE_INITIAL_R2T_EN
:
515 case ISCSI_FLASHNODE_DATASEQ_INORDER
:
516 case ISCSI_FLASHNODE_PDU_INORDER
:
517 case ISCSI_FLASHNODE_CHAP_AUTH_EN
:
518 case ISCSI_FLASHNODE_SNACK_REQ_EN
:
519 case ISCSI_FLASHNODE_DISCOVERY_LOGOUT_EN
:
520 case ISCSI_FLASHNODE_BIDI_CHAP_EN
:
521 case ISCSI_FLASHNODE_DISCOVERY_AUTH_OPTIONAL
:
522 case ISCSI_FLASHNODE_ERL
:
523 case ISCSI_FLASHNODE_TCP_TIMESTAMP_STAT
:
524 case ISCSI_FLASHNODE_TCP_NAGLE_DISABLE
:
525 case ISCSI_FLASHNODE_TCP_WSF_DISABLE
:
526 case ISCSI_FLASHNODE_TCP_TIMER_SCALE
:
527 case ISCSI_FLASHNODE_TCP_TIMESTAMP_EN
:
528 case ISCSI_FLASHNODE_IP_FRAG_DISABLE
:
529 case ISCSI_FLASHNODE_MAX_RECV_DLENGTH
:
530 case ISCSI_FLASHNODE_MAX_XMIT_DLENGTH
:
531 case ISCSI_FLASHNODE_FIRST_BURST
:
532 case ISCSI_FLASHNODE_DEF_TIME2WAIT
:
533 case ISCSI_FLASHNODE_DEF_TIME2RETAIN
:
534 case ISCSI_FLASHNODE_MAX_R2T
:
535 case ISCSI_FLASHNODE_KEEPALIVE_TMO
:
536 case ISCSI_FLASHNODE_ISID
:
537 case ISCSI_FLASHNODE_TSID
:
538 case ISCSI_FLASHNODE_PORT
:
539 case ISCSI_FLASHNODE_MAX_BURST
:
540 case ISCSI_FLASHNODE_DEF_TASKMGMT_TMO
:
541 case ISCSI_FLASHNODE_IPADDR
:
542 case ISCSI_FLASHNODE_ALIAS
:
543 case ISCSI_FLASHNODE_REDIRECT_IPADDR
:
544 case ISCSI_FLASHNODE_MAX_SEGMENT_SIZE
:
545 case ISCSI_FLASHNODE_LOCAL_PORT
:
546 case ISCSI_FLASHNODE_IPV4_TOS
:
547 case ISCSI_FLASHNODE_IPV6_TC
:
548 case ISCSI_FLASHNODE_IPV6_FLOW_LABEL
:
549 case ISCSI_FLASHNODE_NAME
:
550 case ISCSI_FLASHNODE_TPGT
:
551 case ISCSI_FLASHNODE_LINK_LOCAL_IPV6
:
552 case ISCSI_FLASHNODE_DISCOVERY_PARENT_IDX
:
553 case ISCSI_FLASHNODE_DISCOVERY_PARENT_TYPE
:
554 case ISCSI_FLASHNODE_TCP_XMIT_WSF
:
555 case ISCSI_FLASHNODE_TCP_RECV_WSF
:
556 case ISCSI_FLASHNODE_CHAP_OUT_IDX
:
557 case ISCSI_FLASHNODE_USERNAME
:
558 case ISCSI_FLASHNODE_PASSWORD
:
559 case ISCSI_FLASHNODE_STATSN
:
560 case ISCSI_FLASHNODE_EXP_STATSN
:
561 case ISCSI_FLASHNODE_IS_BOOT_TGT
:
572 * qla4xxx_create chap_list - Create CHAP list from FLASH
573 * @ha: pointer to adapter structure
575 * Read flash and make a list of CHAP entries, during login when a CHAP entry
576 * is received, it will be checked in this list. If entry exist then the CHAP
577 * entry index is set in the DDB. If CHAP entry does not exist in this list
578 * then a new entry is added in FLASH in CHAP table and the index obtained is
581 static void qla4xxx_create_chap_list(struct scsi_qla_host
*ha
)
584 uint8_t *chap_flash_data
= NULL
;
587 uint32_t chap_size
= 0;
590 chap_size
= MAX_CHAP_ENTRIES_40XX
*
591 sizeof(struct ql4_chap_table
);
592 else /* Single region contains CHAP info for both
593 * ports which is divided into half for each port.
595 chap_size
= ha
->hw
.flt_chap_size
/ 2;
597 chap_flash_data
= dma_alloc_coherent(&ha
->pdev
->dev
, chap_size
,
598 &chap_dma
, GFP_KERNEL
);
599 if (!chap_flash_data
) {
600 ql4_printk(KERN_ERR
, ha
, "No memory for chap_flash_data\n");
604 if (is_qla40XX(ha
)) {
605 offset
= FLASH_CHAP_OFFSET
;
607 offset
= FLASH_RAW_ACCESS_ADDR
+ (ha
->hw
.flt_region_chap
<< 2);
608 if (ha
->port_num
== 1)
612 rval
= qla4xxx_get_flash(ha
, chap_dma
, offset
, chap_size
);
613 if (rval
!= QLA_SUCCESS
)
616 if (ha
->chap_list
== NULL
)
617 ha
->chap_list
= vmalloc(chap_size
);
618 if (ha
->chap_list
== NULL
) {
619 ql4_printk(KERN_ERR
, ha
, "No memory for ha->chap_list\n");
623 memset(ha
->chap_list
, 0, chap_size
);
624 memcpy(ha
->chap_list
, chap_flash_data
, chap_size
);
627 dma_free_coherent(&ha
->pdev
->dev
, chap_size
, chap_flash_data
, chap_dma
);
630 static int qla4xxx_get_chap_by_index(struct scsi_qla_host
*ha
,
632 struct ql4_chap_table
**chap_entry
)
634 int rval
= QLA_ERROR
;
635 int max_chap_entries
;
637 if (!ha
->chap_list
) {
638 ql4_printk(KERN_ERR
, ha
, "CHAP table cache is empty!\n");
644 max_chap_entries
= (ha
->hw
.flt_chap_size
/ 2) /
645 sizeof(struct ql4_chap_table
);
647 max_chap_entries
= MAX_CHAP_ENTRIES_40XX
;
649 if (chap_index
> max_chap_entries
) {
650 ql4_printk(KERN_ERR
, ha
, "Invalid Chap index\n");
655 *chap_entry
= (struct ql4_chap_table
*)ha
->chap_list
+ chap_index
;
656 if ((*chap_entry
)->cookie
!=
657 __constant_cpu_to_le16(CHAP_VALID_COOKIE
)) {
669 * qla4xxx_find_free_chap_index - Find the first free chap index
670 * @ha: pointer to adapter structure
671 * @chap_index: CHAP index to be returned
673 * Find the first free chap index available in the chap table
675 * Note: Caller should acquire the chap lock before getting here.
677 static int qla4xxx_find_free_chap_index(struct scsi_qla_host
*ha
,
678 uint16_t *chap_index
)
682 int max_chap_entries
= 0;
683 struct ql4_chap_table
*chap_table
;
686 max_chap_entries
= (ha
->hw
.flt_chap_size
/ 2) /
687 sizeof(struct ql4_chap_table
);
689 max_chap_entries
= MAX_CHAP_ENTRIES_40XX
;
691 if (!ha
->chap_list
) {
692 ql4_printk(KERN_ERR
, ha
, "CHAP table cache is empty!\n");
697 for (i
= 0; i
< max_chap_entries
; i
++) {
698 chap_table
= (struct ql4_chap_table
*)ha
->chap_list
+ i
;
700 if ((chap_table
->cookie
!=
701 __constant_cpu_to_le16(CHAP_VALID_COOKIE
)) &&
702 (i
> MAX_RESRV_CHAP_IDX
)) {
708 if (free_index
!= -1) {
709 *chap_index
= free_index
;
719 static int qla4xxx_get_chap_list(struct Scsi_Host
*shost
, uint16_t chap_tbl_idx
,
720 uint32_t *num_entries
, char *buf
)
722 struct scsi_qla_host
*ha
= to_qla_host(shost
);
723 struct ql4_chap_table
*chap_table
;
724 struct iscsi_chap_rec
*chap_rec
;
725 int max_chap_entries
= 0;
726 int valid_chap_entries
= 0;
730 max_chap_entries
= (ha
->hw
.flt_chap_size
/ 2) /
731 sizeof(struct ql4_chap_table
);
733 max_chap_entries
= MAX_CHAP_ENTRIES_40XX
;
735 ql4_printk(KERN_INFO
, ha
, "%s: num_entries = %d, CHAP idx = %d\n",
736 __func__
, *num_entries
, chap_tbl_idx
);
740 goto exit_get_chap_list
;
743 qla4xxx_create_chap_list(ha
);
745 chap_rec
= (struct iscsi_chap_rec
*) buf
;
746 mutex_lock(&ha
->chap_sem
);
747 for (i
= chap_tbl_idx
; i
< max_chap_entries
; i
++) {
748 chap_table
= (struct ql4_chap_table
*)ha
->chap_list
+ i
;
749 if (chap_table
->cookie
!=
750 __constant_cpu_to_le16(CHAP_VALID_COOKIE
))
753 chap_rec
->chap_tbl_idx
= i
;
754 strlcpy(chap_rec
->username
, chap_table
->name
,
755 ISCSI_CHAP_AUTH_NAME_MAX_LEN
);
756 strlcpy(chap_rec
->password
, chap_table
->secret
,
757 QL4_CHAP_MAX_SECRET_LEN
);
758 chap_rec
->password_length
= chap_table
->secret_len
;
760 if (chap_table
->flags
& BIT_7
) /* local */
761 chap_rec
->chap_type
= CHAP_TYPE_OUT
;
763 if (chap_table
->flags
& BIT_6
) /* peer */
764 chap_rec
->chap_type
= CHAP_TYPE_IN
;
768 valid_chap_entries
++;
769 if (valid_chap_entries
== *num_entries
)
774 mutex_unlock(&ha
->chap_sem
);
777 ql4_printk(KERN_INFO
, ha
, "%s: Valid CHAP Entries = %d\n",
778 __func__
, valid_chap_entries
);
779 *num_entries
= valid_chap_entries
;
783 static int __qla4xxx_is_chap_active(struct device
*dev
, void *data
)
786 uint16_t *chap_tbl_idx
= (uint16_t *) data
;
787 struct iscsi_cls_session
*cls_session
;
788 struct iscsi_session
*sess
;
789 struct ddb_entry
*ddb_entry
;
791 if (!iscsi_is_session_dev(dev
))
792 goto exit_is_chap_active
;
794 cls_session
= iscsi_dev_to_session(dev
);
795 sess
= cls_session
->dd_data
;
796 ddb_entry
= sess
->dd_data
;
798 if (iscsi_session_chkready(cls_session
))
799 goto exit_is_chap_active
;
801 if (ddb_entry
->chap_tbl_idx
== *chap_tbl_idx
)
808 static int qla4xxx_is_chap_active(struct Scsi_Host
*shost
,
809 uint16_t chap_tbl_idx
)
813 ret
= device_for_each_child(&shost
->shost_gendev
, &chap_tbl_idx
,
814 __qla4xxx_is_chap_active
);
819 static int qla4xxx_delete_chap(struct Scsi_Host
*shost
, uint16_t chap_tbl_idx
)
821 struct scsi_qla_host
*ha
= to_qla_host(shost
);
822 struct ql4_chap_table
*chap_table
;
824 int max_chap_entries
= 0;
829 chap_table
= dma_pool_alloc(ha
->chap_dma_pool
, GFP_KERNEL
, &chap_dma
);
830 if (chap_table
== NULL
)
833 memset(chap_table
, 0, sizeof(struct ql4_chap_table
));
836 max_chap_entries
= (ha
->hw
.flt_chap_size
/ 2) /
837 sizeof(struct ql4_chap_table
);
839 max_chap_entries
= MAX_CHAP_ENTRIES_40XX
;
841 if (chap_tbl_idx
> max_chap_entries
) {
843 goto exit_delete_chap
;
846 /* Check if chap index is in use.
847 * If chap is in use don't delet chap entry */
848 ret
= qla4xxx_is_chap_active(shost
, chap_tbl_idx
);
850 ql4_printk(KERN_INFO
, ha
, "CHAP entry %d is in use, cannot "
851 "delete from flash\n", chap_tbl_idx
);
853 goto exit_delete_chap
;
856 chap_size
= sizeof(struct ql4_chap_table
);
858 offset
= FLASH_CHAP_OFFSET
| (chap_tbl_idx
* chap_size
);
860 offset
= FLASH_RAW_ACCESS_ADDR
+ (ha
->hw
.flt_region_chap
<< 2);
861 /* flt_chap_size is CHAP table size for both ports
862 * so divide it by 2 to calculate the offset for second port
864 if (ha
->port_num
== 1)
865 offset
+= (ha
->hw
.flt_chap_size
/ 2);
866 offset
+= (chap_tbl_idx
* chap_size
);
869 ret
= qla4xxx_get_flash(ha
, chap_dma
, offset
, chap_size
);
870 if (ret
!= QLA_SUCCESS
) {
872 goto exit_delete_chap
;
875 DEBUG2(ql4_printk(KERN_INFO
, ha
, "Chap Cookie: x%x\n",
876 __le16_to_cpu(chap_table
->cookie
)));
878 if (__le16_to_cpu(chap_table
->cookie
) != CHAP_VALID_COOKIE
) {
879 ql4_printk(KERN_ERR
, ha
, "No valid chap entry found\n");
880 goto exit_delete_chap
;
883 chap_table
->cookie
= __constant_cpu_to_le16(0xFFFF);
885 offset
= FLASH_CHAP_OFFSET
|
886 (chap_tbl_idx
* sizeof(struct ql4_chap_table
));
887 ret
= qla4xxx_set_flash(ha
, chap_dma
, offset
, chap_size
,
888 FLASH_OPT_RMW_COMMIT
);
889 if (ret
== QLA_SUCCESS
&& ha
->chap_list
) {
890 mutex_lock(&ha
->chap_sem
);
891 /* Update ha chap_list cache */
892 memcpy((struct ql4_chap_table
*)ha
->chap_list
+ chap_tbl_idx
,
893 chap_table
, sizeof(struct ql4_chap_table
));
894 mutex_unlock(&ha
->chap_sem
);
896 if (ret
!= QLA_SUCCESS
)
900 dma_pool_free(ha
->chap_dma_pool
, chap_table
, chap_dma
);
905 * qla4xxx_set_chap_entry - Make chap entry with given information
906 * @shost: pointer to host
907 * @data: chap info - credentials, index and type to make chap entry
908 * @len: length of data
910 * Add or update chap entry with the given information
912 static int qla4xxx_set_chap_entry(struct Scsi_Host
*shost
, void *data
, int len
)
914 struct scsi_qla_host
*ha
= to_qla_host(shost
);
915 struct iscsi_chap_rec chap_rec
;
916 struct ql4_chap_table
*chap_entry
= NULL
;
917 struct iscsi_param_info
*param_info
;
919 int max_chap_entries
= 0;
925 memset(&chap_rec
, 0, sizeof(chap_rec
));
927 nla_for_each_attr(attr
, data
, len
, rem
) {
928 param_info
= nla_data(attr
);
930 switch (param_info
->param
) {
931 case ISCSI_CHAP_PARAM_INDEX
:
932 chap_rec
.chap_tbl_idx
= *(uint16_t *)param_info
->value
;
934 case ISCSI_CHAP_PARAM_CHAP_TYPE
:
935 chap_rec
.chap_type
= param_info
->value
[0];
937 case ISCSI_CHAP_PARAM_USERNAME
:
938 size
= min_t(size_t, sizeof(chap_rec
.username
),
940 memcpy(chap_rec
.username
, param_info
->value
, size
);
942 case ISCSI_CHAP_PARAM_PASSWORD
:
943 size
= min_t(size_t, sizeof(chap_rec
.password
),
945 memcpy(chap_rec
.password
, param_info
->value
, size
);
947 case ISCSI_CHAP_PARAM_PASSWORD_LEN
:
948 chap_rec
.password_length
= param_info
->value
[0];
951 ql4_printk(KERN_ERR
, ha
,
952 "%s: No such sysfs attribute\n", __func__
);
958 if (chap_rec
.chap_type
== CHAP_TYPE_IN
)
964 max_chap_entries
= (ha
->hw
.flt_chap_size
/ 2) /
965 sizeof(struct ql4_chap_table
);
967 max_chap_entries
= MAX_CHAP_ENTRIES_40XX
;
969 mutex_lock(&ha
->chap_sem
);
970 if (chap_rec
.chap_tbl_idx
< max_chap_entries
) {
971 rc
= qla4xxx_get_chap_by_index(ha
, chap_rec
.chap_tbl_idx
,
974 if (!(type
== qla4xxx_get_chap_type(chap_entry
))) {
975 ql4_printk(KERN_INFO
, ha
,
976 "Type mismatch for CHAP entry %d\n",
977 chap_rec
.chap_tbl_idx
);
979 goto exit_unlock_chap
;
982 /* If chap index is in use then don't modify it */
983 rc
= qla4xxx_is_chap_active(shost
,
984 chap_rec
.chap_tbl_idx
);
986 ql4_printk(KERN_INFO
, ha
,
987 "CHAP entry %d is in use\n",
988 chap_rec
.chap_tbl_idx
);
990 goto exit_unlock_chap
;
994 rc
= qla4xxx_find_free_chap_index(ha
, &chap_rec
.chap_tbl_idx
);
996 ql4_printk(KERN_INFO
, ha
, "CHAP entry not available\n");
998 goto exit_unlock_chap
;
1002 rc
= qla4xxx_set_chap(ha
, chap_rec
.username
, chap_rec
.password
,
1003 chap_rec
.chap_tbl_idx
, type
);
1006 mutex_unlock(&ha
->chap_sem
);
1013 static int qla4xxx_get_host_stats(struct Scsi_Host
*shost
, char *buf
, int len
)
1015 struct scsi_qla_host
*ha
= to_qla_host(shost
);
1016 struct iscsi_offload_host_stats
*host_stats
= NULL
;
1017 int host_stats_size
;
1020 struct ql_iscsi_stats
*ql_iscsi_stats
= NULL
;
1022 dma_addr_t iscsi_stats_dma
;
1024 DEBUG2(ql4_printk(KERN_INFO
, ha
, "Func: %s\n", __func__
));
1026 host_stats_size
= sizeof(struct iscsi_offload_host_stats
);
1028 if (host_stats_size
!= len
) {
1029 ql4_printk(KERN_INFO
, ha
, "%s: host_stats size mismatch expected = %d, is = %d\n",
1030 __func__
, len
, host_stats_size
);
1032 goto exit_host_stats
;
1034 host_stats
= (struct iscsi_offload_host_stats
*)buf
;
1038 goto exit_host_stats
;
1041 stats_size
= PAGE_ALIGN(sizeof(struct ql_iscsi_stats
));
1043 ql_iscsi_stats
= dma_alloc_coherent(&ha
->pdev
->dev
, stats_size
,
1044 &iscsi_stats_dma
, GFP_KERNEL
);
1045 if (!ql_iscsi_stats
) {
1046 ql4_printk(KERN_ERR
, ha
,
1047 "Unable to allocate memory for iscsi stats\n");
1049 goto exit_host_stats
;
1052 ret
= qla4xxx_get_mgmt_data(ha
, ddb_idx
, stats_size
,
1054 if (ret
!= QLA_SUCCESS
) {
1055 ql4_printk(KERN_ERR
, ha
,
1056 "Unable to retrieve iscsi stats\n");
1058 goto exit_host_stats
;
1060 host_stats
->mactx_frames
= le64_to_cpu(ql_iscsi_stats
->mac_tx_frames
);
1061 host_stats
->mactx_bytes
= le64_to_cpu(ql_iscsi_stats
->mac_tx_bytes
);
1062 host_stats
->mactx_multicast_frames
=
1063 le64_to_cpu(ql_iscsi_stats
->mac_tx_multicast_frames
);
1064 host_stats
->mactx_broadcast_frames
=
1065 le64_to_cpu(ql_iscsi_stats
->mac_tx_broadcast_frames
);
1066 host_stats
->mactx_pause_frames
=
1067 le64_to_cpu(ql_iscsi_stats
->mac_tx_pause_frames
);
1068 host_stats
->mactx_control_frames
=
1069 le64_to_cpu(ql_iscsi_stats
->mac_tx_control_frames
);
1070 host_stats
->mactx_deferral
=
1071 le64_to_cpu(ql_iscsi_stats
->mac_tx_deferral
);
1072 host_stats
->mactx_excess_deferral
=
1073 le64_to_cpu(ql_iscsi_stats
->mac_tx_excess_deferral
);
1074 host_stats
->mactx_late_collision
=
1075 le64_to_cpu(ql_iscsi_stats
->mac_tx_late_collision
);
1076 host_stats
->mactx_abort
= le64_to_cpu(ql_iscsi_stats
->mac_tx_abort
);
1077 host_stats
->mactx_single_collision
=
1078 le64_to_cpu(ql_iscsi_stats
->mac_tx_single_collision
);
1079 host_stats
->mactx_multiple_collision
=
1080 le64_to_cpu(ql_iscsi_stats
->mac_tx_multiple_collision
);
1081 host_stats
->mactx_collision
=
1082 le64_to_cpu(ql_iscsi_stats
->mac_tx_collision
);
1083 host_stats
->mactx_frames_dropped
=
1084 le64_to_cpu(ql_iscsi_stats
->mac_tx_frames_dropped
);
1085 host_stats
->mactx_jumbo_frames
=
1086 le64_to_cpu(ql_iscsi_stats
->mac_tx_jumbo_frames
);
1087 host_stats
->macrx_frames
= le64_to_cpu(ql_iscsi_stats
->mac_rx_frames
);
1088 host_stats
->macrx_bytes
= le64_to_cpu(ql_iscsi_stats
->mac_rx_bytes
);
1089 host_stats
->macrx_unknown_control_frames
=
1090 le64_to_cpu(ql_iscsi_stats
->mac_rx_unknown_control_frames
);
1091 host_stats
->macrx_pause_frames
=
1092 le64_to_cpu(ql_iscsi_stats
->mac_rx_pause_frames
);
1093 host_stats
->macrx_control_frames
=
1094 le64_to_cpu(ql_iscsi_stats
->mac_rx_control_frames
);
1095 host_stats
->macrx_dribble
=
1096 le64_to_cpu(ql_iscsi_stats
->mac_rx_dribble
);
1097 host_stats
->macrx_frame_length_error
=
1098 le64_to_cpu(ql_iscsi_stats
->mac_rx_frame_length_error
);
1099 host_stats
->macrx_jabber
= le64_to_cpu(ql_iscsi_stats
->mac_rx_jabber
);
1100 host_stats
->macrx_carrier_sense_error
=
1101 le64_to_cpu(ql_iscsi_stats
->mac_rx_carrier_sense_error
);
1102 host_stats
->macrx_frame_discarded
=
1103 le64_to_cpu(ql_iscsi_stats
->mac_rx_frame_discarded
);
1104 host_stats
->macrx_frames_dropped
=
1105 le64_to_cpu(ql_iscsi_stats
->mac_rx_frames_dropped
);
1106 host_stats
->mac_crc_error
= le64_to_cpu(ql_iscsi_stats
->mac_crc_error
);
1107 host_stats
->mac_encoding_error
=
1108 le64_to_cpu(ql_iscsi_stats
->mac_encoding_error
);
1109 host_stats
->macrx_length_error_large
=
1110 le64_to_cpu(ql_iscsi_stats
->mac_rx_length_error_large
);
1111 host_stats
->macrx_length_error_small
=
1112 le64_to_cpu(ql_iscsi_stats
->mac_rx_length_error_small
);
1113 host_stats
->macrx_multicast_frames
=
1114 le64_to_cpu(ql_iscsi_stats
->mac_rx_multicast_frames
);
1115 host_stats
->macrx_broadcast_frames
=
1116 le64_to_cpu(ql_iscsi_stats
->mac_rx_broadcast_frames
);
1117 host_stats
->iptx_packets
= le64_to_cpu(ql_iscsi_stats
->ip_tx_packets
);
1118 host_stats
->iptx_bytes
= le64_to_cpu(ql_iscsi_stats
->ip_tx_bytes
);
1119 host_stats
->iptx_fragments
=
1120 le64_to_cpu(ql_iscsi_stats
->ip_tx_fragments
);
1121 host_stats
->iprx_packets
= le64_to_cpu(ql_iscsi_stats
->ip_rx_packets
);
1122 host_stats
->iprx_bytes
= le64_to_cpu(ql_iscsi_stats
->ip_rx_bytes
);
1123 host_stats
->iprx_fragments
=
1124 le64_to_cpu(ql_iscsi_stats
->ip_rx_fragments
);
1125 host_stats
->ip_datagram_reassembly
=
1126 le64_to_cpu(ql_iscsi_stats
->ip_datagram_reassembly
);
1127 host_stats
->ip_invalid_address_error
=
1128 le64_to_cpu(ql_iscsi_stats
->ip_invalid_address_error
);
1129 host_stats
->ip_error_packets
=
1130 le64_to_cpu(ql_iscsi_stats
->ip_error_packets
);
1131 host_stats
->ip_fragrx_overlap
=
1132 le64_to_cpu(ql_iscsi_stats
->ip_fragrx_overlap
);
1133 host_stats
->ip_fragrx_outoforder
=
1134 le64_to_cpu(ql_iscsi_stats
->ip_fragrx_outoforder
);
1135 host_stats
->ip_datagram_reassembly_timeout
=
1136 le64_to_cpu(ql_iscsi_stats
->ip_datagram_reassembly_timeout
);
1137 host_stats
->ipv6tx_packets
=
1138 le64_to_cpu(ql_iscsi_stats
->ipv6_tx_packets
);
1139 host_stats
->ipv6tx_bytes
= le64_to_cpu(ql_iscsi_stats
->ipv6_tx_bytes
);
1140 host_stats
->ipv6tx_fragments
=
1141 le64_to_cpu(ql_iscsi_stats
->ipv6_tx_fragments
);
1142 host_stats
->ipv6rx_packets
=
1143 le64_to_cpu(ql_iscsi_stats
->ipv6_rx_packets
);
1144 host_stats
->ipv6rx_bytes
= le64_to_cpu(ql_iscsi_stats
->ipv6_rx_bytes
);
1145 host_stats
->ipv6rx_fragments
=
1146 le64_to_cpu(ql_iscsi_stats
->ipv6_rx_fragments
);
1147 host_stats
->ipv6_datagram_reassembly
=
1148 le64_to_cpu(ql_iscsi_stats
->ipv6_datagram_reassembly
);
1149 host_stats
->ipv6_invalid_address_error
=
1150 le64_to_cpu(ql_iscsi_stats
->ipv6_invalid_address_error
);
1151 host_stats
->ipv6_error_packets
=
1152 le64_to_cpu(ql_iscsi_stats
->ipv6_error_packets
);
1153 host_stats
->ipv6_fragrx_overlap
=
1154 le64_to_cpu(ql_iscsi_stats
->ipv6_fragrx_overlap
);
1155 host_stats
->ipv6_fragrx_outoforder
=
1156 le64_to_cpu(ql_iscsi_stats
->ipv6_fragrx_outoforder
);
1157 host_stats
->ipv6_datagram_reassembly_timeout
=
1158 le64_to_cpu(ql_iscsi_stats
->ipv6_datagram_reassembly_timeout
);
1159 host_stats
->tcptx_segments
=
1160 le64_to_cpu(ql_iscsi_stats
->tcp_tx_segments
);
1161 host_stats
->tcptx_bytes
= le64_to_cpu(ql_iscsi_stats
->tcp_tx_bytes
);
1162 host_stats
->tcprx_segments
=
1163 le64_to_cpu(ql_iscsi_stats
->tcp_rx_segments
);
1164 host_stats
->tcprx_byte
= le64_to_cpu(ql_iscsi_stats
->tcp_rx_byte
);
1165 host_stats
->tcp_duplicate_ack_retx
=
1166 le64_to_cpu(ql_iscsi_stats
->tcp_duplicate_ack_retx
);
1167 host_stats
->tcp_retx_timer_expired
=
1168 le64_to_cpu(ql_iscsi_stats
->tcp_retx_timer_expired
);
1169 host_stats
->tcprx_duplicate_ack
=
1170 le64_to_cpu(ql_iscsi_stats
->tcp_rx_duplicate_ack
);
1171 host_stats
->tcprx_pure_ackr
=
1172 le64_to_cpu(ql_iscsi_stats
->tcp_rx_pure_ackr
);
1173 host_stats
->tcptx_delayed_ack
=
1174 le64_to_cpu(ql_iscsi_stats
->tcp_tx_delayed_ack
);
1175 host_stats
->tcptx_pure_ack
=
1176 le64_to_cpu(ql_iscsi_stats
->tcp_tx_pure_ack
);
1177 host_stats
->tcprx_segment_error
=
1178 le64_to_cpu(ql_iscsi_stats
->tcp_rx_segment_error
);
1179 host_stats
->tcprx_segment_outoforder
=
1180 le64_to_cpu(ql_iscsi_stats
->tcp_rx_segment_outoforder
);
1181 host_stats
->tcprx_window_probe
=
1182 le64_to_cpu(ql_iscsi_stats
->tcp_rx_window_probe
);
1183 host_stats
->tcprx_window_update
=
1184 le64_to_cpu(ql_iscsi_stats
->tcp_rx_window_update
);
1185 host_stats
->tcptx_window_probe_persist
=
1186 le64_to_cpu(ql_iscsi_stats
->tcp_tx_window_probe_persist
);
1187 host_stats
->ecc_error_correction
=
1188 le64_to_cpu(ql_iscsi_stats
->ecc_error_correction
);
1189 host_stats
->iscsi_pdu_tx
= le64_to_cpu(ql_iscsi_stats
->iscsi_pdu_tx
);
1190 host_stats
->iscsi_data_bytes_tx
=
1191 le64_to_cpu(ql_iscsi_stats
->iscsi_data_bytes_tx
);
1192 host_stats
->iscsi_pdu_rx
= le64_to_cpu(ql_iscsi_stats
->iscsi_pdu_rx
);
1193 host_stats
->iscsi_data_bytes_rx
=
1194 le64_to_cpu(ql_iscsi_stats
->iscsi_data_bytes_rx
);
1195 host_stats
->iscsi_io_completed
=
1196 le64_to_cpu(ql_iscsi_stats
->iscsi_io_completed
);
1197 host_stats
->iscsi_unexpected_io_rx
=
1198 le64_to_cpu(ql_iscsi_stats
->iscsi_unexpected_io_rx
);
1199 host_stats
->iscsi_format_error
=
1200 le64_to_cpu(ql_iscsi_stats
->iscsi_format_error
);
1201 host_stats
->iscsi_hdr_digest_error
=
1202 le64_to_cpu(ql_iscsi_stats
->iscsi_hdr_digest_error
);
1203 host_stats
->iscsi_data_digest_error
=
1204 le64_to_cpu(ql_iscsi_stats
->iscsi_data_digest_error
);
1205 host_stats
->iscsi_sequence_error
=
1206 le64_to_cpu(ql_iscsi_stats
->iscsi_sequence_error
);
1209 dma_free_coherent(&ha
->pdev
->dev
, host_stats_size
,
1210 ql_iscsi_stats
, iscsi_stats_dma
);
1212 ql4_printk(KERN_INFO
, ha
, "%s: Get host stats done\n",
1217 static int qla4xxx_get_iface_param(struct iscsi_iface
*iface
,
1218 enum iscsi_param_type param_type
,
1219 int param
, char *buf
)
1221 struct Scsi_Host
*shost
= iscsi_iface_to_shost(iface
);
1222 struct scsi_qla_host
*ha
= to_qla_host(shost
);
1227 if (param_type
== ISCSI_NET_PARAM
) {
1229 case ISCSI_NET_PARAM_IPV4_ADDR
:
1230 len
= sprintf(buf
, "%pI4\n", &ha
->ip_config
.ip_address
);
1232 case ISCSI_NET_PARAM_IPV4_SUBNET
:
1233 len
= sprintf(buf
, "%pI4\n",
1234 &ha
->ip_config
.subnet_mask
);
1236 case ISCSI_NET_PARAM_IPV4_GW
:
1237 len
= sprintf(buf
, "%pI4\n", &ha
->ip_config
.gateway
);
1239 case ISCSI_NET_PARAM_IFACE_ENABLE
:
1240 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
) {
1241 OP_STATE(ha
->ip_config
.ipv4_options
,
1242 IPOPT_IPV4_PROTOCOL_ENABLE
, pval
);
1244 OP_STATE(ha
->ip_config
.ipv6_options
,
1245 IPV6_OPT_IPV6_PROTOCOL_ENABLE
, pval
);
1248 len
= sprintf(buf
, "%s\n", pval
);
1250 case ISCSI_NET_PARAM_IPV4_BOOTPROTO
:
1251 len
= sprintf(buf
, "%s\n",
1252 (ha
->ip_config
.tcp_options
&
1253 TCPOPT_DHCP_ENABLE
) ?
1256 case ISCSI_NET_PARAM_IPV6_ADDR
:
1257 if (iface
->iface_num
== 0)
1258 len
= sprintf(buf
, "%pI6\n",
1259 &ha
->ip_config
.ipv6_addr0
);
1260 if (iface
->iface_num
== 1)
1261 len
= sprintf(buf
, "%pI6\n",
1262 &ha
->ip_config
.ipv6_addr1
);
1264 case ISCSI_NET_PARAM_IPV6_LINKLOCAL
:
1265 len
= sprintf(buf
, "%pI6\n",
1266 &ha
->ip_config
.ipv6_link_local_addr
);
1268 case ISCSI_NET_PARAM_IPV6_ROUTER
:
1269 len
= sprintf(buf
, "%pI6\n",
1270 &ha
->ip_config
.ipv6_default_router_addr
);
1272 case ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG
:
1273 pval
= (ha
->ip_config
.ipv6_addl_options
&
1274 IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE
) ?
1277 len
= sprintf(buf
, "%s\n", pval
);
1279 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG
:
1280 pval
= (ha
->ip_config
.ipv6_addl_options
&
1281 IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR
) ?
1284 len
= sprintf(buf
, "%s\n", pval
);
1286 case ISCSI_NET_PARAM_VLAN_ID
:
1287 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
)
1288 ival
= ha
->ip_config
.ipv4_vlan_tag
&
1291 ival
= ha
->ip_config
.ipv6_vlan_tag
&
1294 len
= sprintf(buf
, "%d\n", ival
);
1296 case ISCSI_NET_PARAM_VLAN_PRIORITY
:
1297 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
)
1298 ival
= (ha
->ip_config
.ipv4_vlan_tag
>> 13) &
1299 ISCSI_MAX_VLAN_PRIORITY
;
1301 ival
= (ha
->ip_config
.ipv6_vlan_tag
>> 13) &
1302 ISCSI_MAX_VLAN_PRIORITY
;
1304 len
= sprintf(buf
, "%d\n", ival
);
1306 case ISCSI_NET_PARAM_VLAN_ENABLED
:
1307 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
) {
1308 OP_STATE(ha
->ip_config
.ipv4_options
,
1309 IPOPT_VLAN_TAGGING_ENABLE
, pval
);
1311 OP_STATE(ha
->ip_config
.ipv6_options
,
1312 IPV6_OPT_VLAN_TAGGING_ENABLE
, pval
);
1314 len
= sprintf(buf
, "%s\n", pval
);
1316 case ISCSI_NET_PARAM_MTU
:
1317 len
= sprintf(buf
, "%d\n", ha
->ip_config
.eth_mtu_size
);
1319 case ISCSI_NET_PARAM_PORT
:
1320 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
)
1321 len
= sprintf(buf
, "%d\n",
1322 ha
->ip_config
.ipv4_port
);
1324 len
= sprintf(buf
, "%d\n",
1325 ha
->ip_config
.ipv6_port
);
1327 case ISCSI_NET_PARAM_IPADDR_STATE
:
1328 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
) {
1329 pval
= iscsi_get_ipaddress_state_name(
1330 ha
->ip_config
.ipv4_addr_state
);
1332 if (iface
->iface_num
== 0)
1333 pval
= iscsi_get_ipaddress_state_name(
1334 ha
->ip_config
.ipv6_addr0_state
);
1335 else if (iface
->iface_num
== 1)
1336 pval
= iscsi_get_ipaddress_state_name(
1337 ha
->ip_config
.ipv6_addr1_state
);
1340 len
= sprintf(buf
, "%s\n", pval
);
1342 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_STATE
:
1343 pval
= iscsi_get_ipaddress_state_name(
1344 ha
->ip_config
.ipv6_link_local_state
);
1345 len
= sprintf(buf
, "%s\n", pval
);
1347 case ISCSI_NET_PARAM_IPV6_ROUTER_STATE
:
1348 pval
= iscsi_get_router_state_name(
1349 ha
->ip_config
.ipv6_default_router_state
);
1350 len
= sprintf(buf
, "%s\n", pval
);
1352 case ISCSI_NET_PARAM_DELAYED_ACK_EN
:
1353 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
) {
1354 OP_STATE(~ha
->ip_config
.tcp_options
,
1355 TCPOPT_DELAYED_ACK_DISABLE
, pval
);
1357 OP_STATE(~ha
->ip_config
.ipv6_tcp_options
,
1358 IPV6_TCPOPT_DELAYED_ACK_DISABLE
, pval
);
1360 len
= sprintf(buf
, "%s\n", pval
);
1362 case ISCSI_NET_PARAM_TCP_NAGLE_DISABLE
:
1363 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
) {
1364 OP_STATE(~ha
->ip_config
.tcp_options
,
1365 TCPOPT_NAGLE_ALGO_DISABLE
, pval
);
1367 OP_STATE(~ha
->ip_config
.ipv6_tcp_options
,
1368 IPV6_TCPOPT_NAGLE_ALGO_DISABLE
, pval
);
1370 len
= sprintf(buf
, "%s\n", pval
);
1372 case ISCSI_NET_PARAM_TCP_WSF_DISABLE
:
1373 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
) {
1374 OP_STATE(~ha
->ip_config
.tcp_options
,
1375 TCPOPT_WINDOW_SCALE_DISABLE
, pval
);
1377 OP_STATE(~ha
->ip_config
.ipv6_tcp_options
,
1378 IPV6_TCPOPT_WINDOW_SCALE_DISABLE
,
1381 len
= sprintf(buf
, "%s\n", pval
);
1383 case ISCSI_NET_PARAM_TCP_WSF
:
1384 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
)
1385 len
= sprintf(buf
, "%d\n",
1386 ha
->ip_config
.tcp_wsf
);
1388 len
= sprintf(buf
, "%d\n",
1389 ha
->ip_config
.ipv6_tcp_wsf
);
1391 case ISCSI_NET_PARAM_TCP_TIMER_SCALE
:
1392 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
)
1393 ival
= (ha
->ip_config
.tcp_options
&
1394 TCPOPT_TIMER_SCALE
) >> 1;
1396 ival
= (ha
->ip_config
.ipv6_tcp_options
&
1397 IPV6_TCPOPT_TIMER_SCALE
) >> 1;
1399 len
= sprintf(buf
, "%d\n", ival
);
1401 case ISCSI_NET_PARAM_TCP_TIMESTAMP_EN
:
1402 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
) {
1403 OP_STATE(ha
->ip_config
.tcp_options
,
1404 TCPOPT_TIMESTAMP_ENABLE
, pval
);
1406 OP_STATE(ha
->ip_config
.ipv6_tcp_options
,
1407 IPV6_TCPOPT_TIMESTAMP_EN
, pval
);
1409 len
= sprintf(buf
, "%s\n", pval
);
1411 case ISCSI_NET_PARAM_CACHE_ID
:
1412 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
)
1413 len
= sprintf(buf
, "%d\n",
1414 ha
->ip_config
.ipv4_cache_id
);
1416 len
= sprintf(buf
, "%d\n",
1417 ha
->ip_config
.ipv6_cache_id
);
1419 case ISCSI_NET_PARAM_IPV4_DHCP_DNS_ADDR_EN
:
1420 OP_STATE(ha
->ip_config
.tcp_options
,
1421 TCPOPT_DNS_SERVER_IP_EN
, pval
);
1423 len
= sprintf(buf
, "%s\n", pval
);
1425 case ISCSI_NET_PARAM_IPV4_DHCP_SLP_DA_EN
:
1426 OP_STATE(ha
->ip_config
.tcp_options
,
1427 TCPOPT_SLP_DA_INFO_EN
, pval
);
1429 len
= sprintf(buf
, "%s\n", pval
);
1431 case ISCSI_NET_PARAM_IPV4_TOS_EN
:
1432 OP_STATE(ha
->ip_config
.ipv4_options
,
1433 IPOPT_IPV4_TOS_EN
, pval
);
1435 len
= sprintf(buf
, "%s\n", pval
);
1437 case ISCSI_NET_PARAM_IPV4_TOS
:
1438 len
= sprintf(buf
, "%d\n", ha
->ip_config
.ipv4_tos
);
1440 case ISCSI_NET_PARAM_IPV4_GRAT_ARP_EN
:
1441 OP_STATE(ha
->ip_config
.ipv4_options
,
1442 IPOPT_GRAT_ARP_EN
, pval
);
1444 len
= sprintf(buf
, "%s\n", pval
);
1446 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID_EN
:
1447 OP_STATE(ha
->ip_config
.ipv4_options
, IPOPT_ALT_CID_EN
,
1450 len
= sprintf(buf
, "%s\n", pval
);
1452 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID
:
1453 pval
= (ha
->ip_config
.ipv4_alt_cid_len
) ?
1454 (char *)ha
->ip_config
.ipv4_alt_cid
: "";
1456 len
= sprintf(buf
, "%s\n", pval
);
1458 case ISCSI_NET_PARAM_IPV4_DHCP_REQ_VENDOR_ID_EN
:
1459 OP_STATE(ha
->ip_config
.ipv4_options
,
1460 IPOPT_REQ_VID_EN
, pval
);
1462 len
= sprintf(buf
, "%s\n", pval
);
1464 case ISCSI_NET_PARAM_IPV4_DHCP_USE_VENDOR_ID_EN
:
1465 OP_STATE(ha
->ip_config
.ipv4_options
,
1466 IPOPT_USE_VID_EN
, pval
);
1468 len
= sprintf(buf
, "%s\n", pval
);
1470 case ISCSI_NET_PARAM_IPV4_DHCP_VENDOR_ID
:
1471 pval
= (ha
->ip_config
.ipv4_vid_len
) ?
1472 (char *)ha
->ip_config
.ipv4_vid
: "";
1474 len
= sprintf(buf
, "%s\n", pval
);
1476 case ISCSI_NET_PARAM_IPV4_DHCP_LEARN_IQN_EN
:
1477 OP_STATE(ha
->ip_config
.ipv4_options
,
1478 IPOPT_LEARN_IQN_EN
, pval
);
1480 len
= sprintf(buf
, "%s\n", pval
);
1482 case ISCSI_NET_PARAM_IPV4_FRAGMENT_DISABLE
:
1483 OP_STATE(~ha
->ip_config
.ipv4_options
,
1484 IPOPT_FRAGMENTATION_DISABLE
, pval
);
1486 len
= sprintf(buf
, "%s\n", pval
);
1488 case ISCSI_NET_PARAM_IPV4_IN_FORWARD_EN
:
1489 OP_STATE(ha
->ip_config
.ipv4_options
,
1490 IPOPT_IN_FORWARD_EN
, pval
);
1492 len
= sprintf(buf
, "%s\n", pval
);
1494 case ISCSI_NET_PARAM_REDIRECT_EN
:
1495 if (iface
->iface_type
== ISCSI_IFACE_TYPE_IPV4
) {
1496 OP_STATE(ha
->ip_config
.ipv4_options
,
1497 IPOPT_ARP_REDIRECT_EN
, pval
);
1499 OP_STATE(ha
->ip_config
.ipv6_options
,
1500 IPV6_OPT_REDIRECT_EN
, pval
);
1502 len
= sprintf(buf
, "%s\n", pval
);
1504 case ISCSI_NET_PARAM_IPV4_TTL
:
1505 len
= sprintf(buf
, "%d\n", ha
->ip_config
.ipv4_ttl
);
1507 case ISCSI_NET_PARAM_IPV6_GRAT_NEIGHBOR_ADV_EN
:
1508 OP_STATE(ha
->ip_config
.ipv6_options
,
1509 IPV6_OPT_GRAT_NEIGHBOR_ADV_EN
, pval
);
1511 len
= sprintf(buf
, "%s\n", pval
);
1513 case ISCSI_NET_PARAM_IPV6_MLD_EN
:
1514 OP_STATE(ha
->ip_config
.ipv6_addl_options
,
1515 IPV6_ADDOPT_MLD_EN
, pval
);
1517 len
= sprintf(buf
, "%s\n", pval
);
1519 case ISCSI_NET_PARAM_IPV6_FLOW_LABEL
:
1520 len
= sprintf(buf
, "%u\n", ha
->ip_config
.ipv6_flow_lbl
);
1522 case ISCSI_NET_PARAM_IPV6_TRAFFIC_CLASS
:
1523 len
= sprintf(buf
, "%d\n",
1524 ha
->ip_config
.ipv6_traffic_class
);
1526 case ISCSI_NET_PARAM_IPV6_HOP_LIMIT
:
1527 len
= sprintf(buf
, "%d\n",
1528 ha
->ip_config
.ipv6_hop_limit
);
1530 case ISCSI_NET_PARAM_IPV6_ND_REACHABLE_TMO
:
1531 len
= sprintf(buf
, "%d\n",
1532 ha
->ip_config
.ipv6_nd_reach_time
);
1534 case ISCSI_NET_PARAM_IPV6_ND_REXMIT_TIME
:
1535 len
= sprintf(buf
, "%d\n",
1536 ha
->ip_config
.ipv6_nd_rexmit_timer
);
1538 case ISCSI_NET_PARAM_IPV6_ND_STALE_TMO
:
1539 len
= sprintf(buf
, "%d\n",
1540 ha
->ip_config
.ipv6_nd_stale_timeout
);
1542 case ISCSI_NET_PARAM_IPV6_DUP_ADDR_DETECT_CNT
:
1543 len
= sprintf(buf
, "%d\n",
1544 ha
->ip_config
.ipv6_dup_addr_detect_count
);
1546 case ISCSI_NET_PARAM_IPV6_RTR_ADV_LINK_MTU
:
1547 len
= sprintf(buf
, "%d\n",
1548 ha
->ip_config
.ipv6_gw_advrt_mtu
);
1553 } else if (param_type
== ISCSI_IFACE_PARAM
) {
1555 case ISCSI_IFACE_PARAM_DEF_TASKMGMT_TMO
:
1556 len
= sprintf(buf
, "%d\n", ha
->ip_config
.def_timeout
);
1558 case ISCSI_IFACE_PARAM_HDRDGST_EN
:
1559 OP_STATE(ha
->ip_config
.iscsi_options
,
1560 ISCSIOPTS_HEADER_DIGEST_EN
, pval
);
1562 len
= sprintf(buf
, "%s\n", pval
);
1564 case ISCSI_IFACE_PARAM_DATADGST_EN
:
1565 OP_STATE(ha
->ip_config
.iscsi_options
,
1566 ISCSIOPTS_DATA_DIGEST_EN
, pval
);
1568 len
= sprintf(buf
, "%s\n", pval
);
1570 case ISCSI_IFACE_PARAM_IMM_DATA_EN
:
1571 OP_STATE(ha
->ip_config
.iscsi_options
,
1572 ISCSIOPTS_IMMEDIATE_DATA_EN
, pval
);
1574 len
= sprintf(buf
, "%s\n", pval
);
1576 case ISCSI_IFACE_PARAM_INITIAL_R2T_EN
:
1577 OP_STATE(ha
->ip_config
.iscsi_options
,
1578 ISCSIOPTS_INITIAL_R2T_EN
, pval
);
1580 len
= sprintf(buf
, "%s\n", pval
);
1582 case ISCSI_IFACE_PARAM_DATASEQ_INORDER_EN
:
1583 OP_STATE(ha
->ip_config
.iscsi_options
,
1584 ISCSIOPTS_DATA_SEQ_INORDER_EN
, pval
);
1586 len
= sprintf(buf
, "%s\n", pval
);
1588 case ISCSI_IFACE_PARAM_PDU_INORDER_EN
:
1589 OP_STATE(ha
->ip_config
.iscsi_options
,
1590 ISCSIOPTS_DATA_PDU_INORDER_EN
, pval
);
1592 len
= sprintf(buf
, "%s\n", pval
);
1594 case ISCSI_IFACE_PARAM_ERL
:
1595 len
= sprintf(buf
, "%d\n",
1596 (ha
->ip_config
.iscsi_options
&
1599 case ISCSI_IFACE_PARAM_MAX_RECV_DLENGTH
:
1600 len
= sprintf(buf
, "%u\n",
1601 ha
->ip_config
.iscsi_max_pdu_size
*
1604 case ISCSI_IFACE_PARAM_FIRST_BURST
:
1605 len
= sprintf(buf
, "%u\n",
1606 ha
->ip_config
.iscsi_first_burst_len
*
1609 case ISCSI_IFACE_PARAM_MAX_R2T
:
1610 len
= sprintf(buf
, "%d\n",
1611 ha
->ip_config
.iscsi_max_outstnd_r2t
);
1613 case ISCSI_IFACE_PARAM_MAX_BURST
:
1614 len
= sprintf(buf
, "%u\n",
1615 ha
->ip_config
.iscsi_max_burst_len
*
1618 case ISCSI_IFACE_PARAM_CHAP_AUTH_EN
:
1619 OP_STATE(ha
->ip_config
.iscsi_options
,
1620 ISCSIOPTS_CHAP_AUTH_EN
, pval
);
1622 len
= sprintf(buf
, "%s\n", pval
);
1624 case ISCSI_IFACE_PARAM_BIDI_CHAP_EN
:
1625 OP_STATE(ha
->ip_config
.iscsi_options
,
1626 ISCSIOPTS_BIDI_CHAP_EN
, pval
);
1628 len
= sprintf(buf
, "%s\n", pval
);
1630 case ISCSI_IFACE_PARAM_DISCOVERY_AUTH_OPTIONAL
:
1631 OP_STATE(ha
->ip_config
.iscsi_options
,
1632 ISCSIOPTS_DISCOVERY_AUTH_EN
, pval
);
1634 len
= sprintf(buf
, "%s\n", pval
);
1636 case ISCSI_IFACE_PARAM_DISCOVERY_LOGOUT_EN
:
1637 OP_STATE(ha
->ip_config
.iscsi_options
,
1638 ISCSIOPTS_DISCOVERY_LOGOUT_EN
, pval
);
1640 len
= sprintf(buf
, "%s\n", pval
);
1642 case ISCSI_IFACE_PARAM_STRICT_LOGIN_COMP_EN
:
1643 OP_STATE(ha
->ip_config
.iscsi_options
,
1644 ISCSIOPTS_STRICT_LOGIN_COMP_EN
, pval
);
1646 len
= sprintf(buf
, "%s\n", pval
);
1648 case ISCSI_IFACE_PARAM_INITIATOR_NAME
:
1649 len
= sprintf(buf
, "%s\n", ha
->ip_config
.iscsi_name
);
1659 static struct iscsi_endpoint
*
1660 qla4xxx_ep_connect(struct Scsi_Host
*shost
, struct sockaddr
*dst_addr
,
1664 struct iscsi_endpoint
*ep
;
1665 struct qla_endpoint
*qla_ep
;
1666 struct scsi_qla_host
*ha
;
1667 struct sockaddr_in
*addr
;
1668 struct sockaddr_in6
*addr6
;
1672 pr_err("%s: shost is NULL\n", __func__
);
1673 return ERR_PTR(ret
);
1676 ha
= iscsi_host_priv(shost
);
1677 ep
= iscsi_create_endpoint(sizeof(struct qla_endpoint
));
1680 return ERR_PTR(ret
);
1683 qla_ep
= ep
->dd_data
;
1684 memset(qla_ep
, 0, sizeof(struct qla_endpoint
));
1685 if (dst_addr
->sa_family
== AF_INET
) {
1686 memcpy(&qla_ep
->dst_addr
, dst_addr
, sizeof(struct sockaddr_in
));
1687 addr
= (struct sockaddr_in
*)&qla_ep
->dst_addr
;
1688 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: %pI4\n", __func__
,
1689 (char *)&addr
->sin_addr
));
1690 } else if (dst_addr
->sa_family
== AF_INET6
) {
1691 memcpy(&qla_ep
->dst_addr
, dst_addr
,
1692 sizeof(struct sockaddr_in6
));
1693 addr6
= (struct sockaddr_in6
*)&qla_ep
->dst_addr
;
1694 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: %pI6\n", __func__
,
1695 (char *)&addr6
->sin6_addr
));
1697 ql4_printk(KERN_WARNING
, ha
, "%s: Invalid endpoint\n",
1701 qla_ep
->host
= shost
;
1706 static int qla4xxx_ep_poll(struct iscsi_endpoint
*ep
, int timeout_ms
)
1708 struct qla_endpoint
*qla_ep
;
1709 struct scsi_qla_host
*ha
;
1712 qla_ep
= ep
->dd_data
;
1713 ha
= to_qla_host(qla_ep
->host
);
1714 DEBUG2(pr_info_ratelimited("%s: host: %ld\n", __func__
, ha
->host_no
));
1716 if (adapter_up(ha
) && !test_bit(AF_BUILD_DDB_LIST
, &ha
->flags
))
1722 static void qla4xxx_ep_disconnect(struct iscsi_endpoint
*ep
)
1724 struct qla_endpoint
*qla_ep
;
1725 struct scsi_qla_host
*ha
;
1727 qla_ep
= ep
->dd_data
;
1728 ha
= to_qla_host(qla_ep
->host
);
1729 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: host: %ld\n", __func__
,
1731 iscsi_destroy_endpoint(ep
);
1734 static int qla4xxx_get_ep_param(struct iscsi_endpoint
*ep
,
1735 enum iscsi_param param
,
1738 struct qla_endpoint
*qla_ep
= ep
->dd_data
;
1739 struct sockaddr
*dst_addr
;
1740 struct scsi_qla_host
*ha
;
1745 ha
= to_qla_host(qla_ep
->host
);
1746 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: host: %ld\n", __func__
,
1750 case ISCSI_PARAM_CONN_PORT
:
1751 case ISCSI_PARAM_CONN_ADDRESS
:
1752 dst_addr
= (struct sockaddr
*)&qla_ep
->dst_addr
;
1756 return iscsi_conn_get_addr_param((struct sockaddr_storage
*)
1757 &qla_ep
->dst_addr
, param
, buf
);
1763 static void qla4xxx_conn_get_stats(struct iscsi_cls_conn
*cls_conn
,
1764 struct iscsi_stats
*stats
)
1766 struct iscsi_session
*sess
;
1767 struct iscsi_cls_session
*cls_sess
;
1768 struct ddb_entry
*ddb_entry
;
1769 struct scsi_qla_host
*ha
;
1770 struct ql_iscsi_stats
*ql_iscsi_stats
;
1773 dma_addr_t iscsi_stats_dma
;
1775 cls_sess
= iscsi_conn_to_session(cls_conn
);
1776 sess
= cls_sess
->dd_data
;
1777 ddb_entry
= sess
->dd_data
;
1780 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: host: %ld\n", __func__
,
1782 stats_size
= PAGE_ALIGN(sizeof(struct ql_iscsi_stats
));
1783 /* Allocate memory */
1784 ql_iscsi_stats
= dma_alloc_coherent(&ha
->pdev
->dev
, stats_size
,
1785 &iscsi_stats_dma
, GFP_KERNEL
);
1786 if (!ql_iscsi_stats
) {
1787 ql4_printk(KERN_ERR
, ha
,
1788 "Unable to allocate memory for iscsi stats\n");
1789 goto exit_get_stats
;
1792 ret
= qla4xxx_get_mgmt_data(ha
, ddb_entry
->fw_ddb_index
, stats_size
,
1794 if (ret
!= QLA_SUCCESS
) {
1795 ql4_printk(KERN_ERR
, ha
,
1796 "Unable to retrieve iscsi stats\n");
1801 stats
->txdata_octets
= le64_to_cpu(ql_iscsi_stats
->tx_data_octets
);
1802 stats
->rxdata_octets
= le64_to_cpu(ql_iscsi_stats
->rx_data_octets
);
1804 stats
->noptx_pdus
= le32_to_cpu(ql_iscsi_stats
->tx_nopout_pdus
);
1805 stats
->scsicmd_pdus
= le32_to_cpu(ql_iscsi_stats
->tx_scsi_cmd_pdus
);
1806 stats
->tmfcmd_pdus
= le32_to_cpu(ql_iscsi_stats
->tx_tmf_cmd_pdus
);
1807 stats
->login_pdus
= le32_to_cpu(ql_iscsi_stats
->tx_login_cmd_pdus
);
1808 stats
->text_pdus
= le32_to_cpu(ql_iscsi_stats
->tx_text_cmd_pdus
);
1809 stats
->dataout_pdus
= le32_to_cpu(ql_iscsi_stats
->tx_scsi_write_pdus
);
1810 stats
->logout_pdus
= le32_to_cpu(ql_iscsi_stats
->tx_logout_cmd_pdus
);
1811 stats
->snack_pdus
= le32_to_cpu(ql_iscsi_stats
->tx_snack_req_pdus
);
1813 stats
->noprx_pdus
= le32_to_cpu(ql_iscsi_stats
->rx_nopin_pdus
);
1814 stats
->scsirsp_pdus
= le32_to_cpu(ql_iscsi_stats
->rx_scsi_resp_pdus
);
1815 stats
->tmfrsp_pdus
= le32_to_cpu(ql_iscsi_stats
->rx_tmf_resp_pdus
);
1816 stats
->textrsp_pdus
= le32_to_cpu(ql_iscsi_stats
->rx_text_resp_pdus
);
1817 stats
->datain_pdus
= le32_to_cpu(ql_iscsi_stats
->rx_scsi_read_pdus
);
1818 stats
->logoutrsp_pdus
=
1819 le32_to_cpu(ql_iscsi_stats
->rx_logout_resp_pdus
);
1820 stats
->r2t_pdus
= le32_to_cpu(ql_iscsi_stats
->rx_r2t_pdus
);
1821 stats
->async_pdus
= le32_to_cpu(ql_iscsi_stats
->rx_async_pdus
);
1822 stats
->rjt_pdus
= le32_to_cpu(ql_iscsi_stats
->rx_reject_pdus
);
1825 dma_free_coherent(&ha
->pdev
->dev
, stats_size
, ql_iscsi_stats
,
1831 static enum blk_eh_timer_return
qla4xxx_eh_cmd_timed_out(struct scsi_cmnd
*sc
)
1833 struct iscsi_cls_session
*session
;
1834 struct iscsi_session
*sess
;
1835 unsigned long flags
;
1836 enum blk_eh_timer_return ret
= BLK_EH_NOT_HANDLED
;
1838 session
= starget_to_session(scsi_target(sc
->device
));
1839 sess
= session
->dd_data
;
1841 spin_lock_irqsave(&session
->lock
, flags
);
1842 if (session
->state
== ISCSI_SESSION_FAILED
)
1843 ret
= BLK_EH_RESET_TIMER
;
1844 spin_unlock_irqrestore(&session
->lock
, flags
);
1849 static void qla4xxx_set_port_speed(struct Scsi_Host
*shost
)
1851 struct scsi_qla_host
*ha
= to_qla_host(shost
);
1852 struct iscsi_cls_host
*ihost
= shost
->shost_data
;
1853 uint32_t speed
= ISCSI_PORT_SPEED_UNKNOWN
;
1855 qla4xxx_get_firmware_state(ha
);
1857 switch (ha
->addl_fw_state
& 0x0F00) {
1858 case FW_ADDSTATE_LINK_SPEED_10MBPS
:
1859 speed
= ISCSI_PORT_SPEED_10MBPS
;
1861 case FW_ADDSTATE_LINK_SPEED_100MBPS
:
1862 speed
= ISCSI_PORT_SPEED_100MBPS
;
1864 case FW_ADDSTATE_LINK_SPEED_1GBPS
:
1865 speed
= ISCSI_PORT_SPEED_1GBPS
;
1867 case FW_ADDSTATE_LINK_SPEED_10GBPS
:
1868 speed
= ISCSI_PORT_SPEED_10GBPS
;
1871 ihost
->port_speed
= speed
;
1874 static void qla4xxx_set_port_state(struct Scsi_Host
*shost
)
1876 struct scsi_qla_host
*ha
= to_qla_host(shost
);
1877 struct iscsi_cls_host
*ihost
= shost
->shost_data
;
1878 uint32_t state
= ISCSI_PORT_STATE_DOWN
;
1880 if (test_bit(AF_LINK_UP
, &ha
->flags
))
1881 state
= ISCSI_PORT_STATE_UP
;
1883 ihost
->port_state
= state
;
1886 static int qla4xxx_host_get_param(struct Scsi_Host
*shost
,
1887 enum iscsi_host_param param
, char *buf
)
1889 struct scsi_qla_host
*ha
= to_qla_host(shost
);
1893 case ISCSI_HOST_PARAM_HWADDRESS
:
1894 len
= sysfs_format_mac(buf
, ha
->my_mac
, MAC_ADDR_LEN
);
1896 case ISCSI_HOST_PARAM_IPADDRESS
:
1897 len
= sprintf(buf
, "%pI4\n", &ha
->ip_config
.ip_address
);
1899 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
1900 len
= sprintf(buf
, "%s\n", ha
->name_string
);
1902 case ISCSI_HOST_PARAM_PORT_STATE
:
1903 qla4xxx_set_port_state(shost
);
1904 len
= sprintf(buf
, "%s\n", iscsi_get_port_state_name(shost
));
1906 case ISCSI_HOST_PARAM_PORT_SPEED
:
1907 qla4xxx_set_port_speed(shost
);
1908 len
= sprintf(buf
, "%s\n", iscsi_get_port_speed_name(shost
));
1917 static void qla4xxx_create_ipv4_iface(struct scsi_qla_host
*ha
)
1923 ha
->iface_ipv4
= iscsi_create_iface(ha
->host
,
1924 &qla4xxx_iscsi_transport
,
1925 ISCSI_IFACE_TYPE_IPV4
, 0, 0);
1926 if (!ha
->iface_ipv4
)
1927 ql4_printk(KERN_ERR
, ha
, "Could not create IPv4 iSCSI "
1931 static void qla4xxx_create_ipv6_iface(struct scsi_qla_host
*ha
)
1933 if (!ha
->iface_ipv6_0
)
1935 ha
->iface_ipv6_0
= iscsi_create_iface(ha
->host
,
1936 &qla4xxx_iscsi_transport
,
1937 ISCSI_IFACE_TYPE_IPV6
, 0,
1939 if (!ha
->iface_ipv6_0
)
1940 ql4_printk(KERN_ERR
, ha
, "Could not create IPv6 iSCSI "
1943 if (!ha
->iface_ipv6_1
)
1945 ha
->iface_ipv6_1
= iscsi_create_iface(ha
->host
,
1946 &qla4xxx_iscsi_transport
,
1947 ISCSI_IFACE_TYPE_IPV6
, 1,
1949 if (!ha
->iface_ipv6_1
)
1950 ql4_printk(KERN_ERR
, ha
, "Could not create IPv6 iSCSI "
1954 static void qla4xxx_create_ifaces(struct scsi_qla_host
*ha
)
1956 if (ha
->ip_config
.ipv4_options
& IPOPT_IPV4_PROTOCOL_ENABLE
)
1957 qla4xxx_create_ipv4_iface(ha
);
1959 if (ha
->ip_config
.ipv6_options
& IPV6_OPT_IPV6_PROTOCOL_ENABLE
)
1960 qla4xxx_create_ipv6_iface(ha
);
1963 static void qla4xxx_destroy_ipv4_iface(struct scsi_qla_host
*ha
)
1965 if (ha
->iface_ipv4
) {
1966 iscsi_destroy_iface(ha
->iface_ipv4
);
1967 ha
->iface_ipv4
= NULL
;
1971 static void qla4xxx_destroy_ipv6_iface(struct scsi_qla_host
*ha
)
1973 if (ha
->iface_ipv6_0
) {
1974 iscsi_destroy_iface(ha
->iface_ipv6_0
);
1975 ha
->iface_ipv6_0
= NULL
;
1977 if (ha
->iface_ipv6_1
) {
1978 iscsi_destroy_iface(ha
->iface_ipv6_1
);
1979 ha
->iface_ipv6_1
= NULL
;
1983 static void qla4xxx_destroy_ifaces(struct scsi_qla_host
*ha
)
1985 qla4xxx_destroy_ipv4_iface(ha
);
1986 qla4xxx_destroy_ipv6_iface(ha
);
1989 static void qla4xxx_set_ipv6(struct scsi_qla_host
*ha
,
1990 struct iscsi_iface_param_info
*iface_param
,
1991 struct addr_ctrl_blk
*init_fw_cb
)
1994 * iface_num 0 is valid for IPv6 Addr, linklocal, router, autocfg.
1995 * iface_num 1 is valid only for IPv6 Addr.
1997 switch (iface_param
->param
) {
1998 case ISCSI_NET_PARAM_IPV6_ADDR
:
1999 if (iface_param
->iface_num
& 0x1)
2001 memcpy(init_fw_cb
->ipv6_addr1
, iface_param
->value
,
2002 sizeof(init_fw_cb
->ipv6_addr1
));
2005 memcpy(init_fw_cb
->ipv6_addr0
, iface_param
->value
,
2006 sizeof(init_fw_cb
->ipv6_addr0
));
2008 case ISCSI_NET_PARAM_IPV6_LINKLOCAL
:
2009 if (iface_param
->iface_num
& 0x1)
2011 memcpy(init_fw_cb
->ipv6_if_id
, &iface_param
->value
[8],
2012 sizeof(init_fw_cb
->ipv6_if_id
));
2014 case ISCSI_NET_PARAM_IPV6_ROUTER
:
2015 if (iface_param
->iface_num
& 0x1)
2017 memcpy(init_fw_cb
->ipv6_dflt_rtr_addr
, iface_param
->value
,
2018 sizeof(init_fw_cb
->ipv6_dflt_rtr_addr
));
2020 case ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG
:
2021 /* Autocfg applies to even interface */
2022 if (iface_param
->iface_num
& 0x1)
2025 if (iface_param
->value
[0] == ISCSI_IPV6_AUTOCFG_DISABLE
)
2026 init_fw_cb
->ipv6_addtl_opts
&=
2028 ~IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE
);
2029 else if (iface_param
->value
[0] == ISCSI_IPV6_AUTOCFG_ND_ENABLE
)
2030 init_fw_cb
->ipv6_addtl_opts
|=
2032 IPV6_ADDOPT_NEIGHBOR_DISCOVERY_ADDR_ENABLE
);
2034 ql4_printk(KERN_ERR
, ha
,
2035 "Invalid autocfg setting for IPv6 addr\n");
2037 case ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG
:
2038 /* Autocfg applies to even interface */
2039 if (iface_param
->iface_num
& 0x1)
2042 if (iface_param
->value
[0] ==
2043 ISCSI_IPV6_LINKLOCAL_AUTOCFG_ENABLE
)
2044 init_fw_cb
->ipv6_addtl_opts
|= cpu_to_le16(
2045 IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR
);
2046 else if (iface_param
->value
[0] ==
2047 ISCSI_IPV6_LINKLOCAL_AUTOCFG_DISABLE
)
2048 init_fw_cb
->ipv6_addtl_opts
&= cpu_to_le16(
2049 ~IPV6_ADDOPT_AUTOCONFIG_LINK_LOCAL_ADDR
);
2051 ql4_printk(KERN_ERR
, ha
,
2052 "Invalid autocfg setting for IPv6 linklocal addr\n");
2054 case ISCSI_NET_PARAM_IPV6_ROUTER_AUTOCFG
:
2055 /* Autocfg applies to even interface */
2056 if (iface_param
->iface_num
& 0x1)
2059 if (iface_param
->value
[0] == ISCSI_IPV6_ROUTER_AUTOCFG_ENABLE
)
2060 memset(init_fw_cb
->ipv6_dflt_rtr_addr
, 0,
2061 sizeof(init_fw_cb
->ipv6_dflt_rtr_addr
));
2063 case ISCSI_NET_PARAM_IFACE_ENABLE
:
2064 if (iface_param
->value
[0] == ISCSI_IFACE_ENABLE
) {
2065 init_fw_cb
->ipv6_opts
|=
2066 cpu_to_le16(IPV6_OPT_IPV6_PROTOCOL_ENABLE
);
2067 qla4xxx_create_ipv6_iface(ha
);
2069 init_fw_cb
->ipv6_opts
&=
2070 cpu_to_le16(~IPV6_OPT_IPV6_PROTOCOL_ENABLE
&
2072 qla4xxx_destroy_ipv6_iface(ha
);
2075 case ISCSI_NET_PARAM_VLAN_TAG
:
2076 if (iface_param
->len
!= sizeof(init_fw_cb
->ipv6_vlan_tag
))
2078 init_fw_cb
->ipv6_vlan_tag
=
2079 cpu_to_be16(*(uint16_t *)iface_param
->value
);
2081 case ISCSI_NET_PARAM_VLAN_ENABLED
:
2082 if (iface_param
->value
[0] == ISCSI_VLAN_ENABLE
)
2083 init_fw_cb
->ipv6_opts
|=
2084 cpu_to_le16(IPV6_OPT_VLAN_TAGGING_ENABLE
);
2086 init_fw_cb
->ipv6_opts
&=
2087 cpu_to_le16(~IPV6_OPT_VLAN_TAGGING_ENABLE
);
2089 case ISCSI_NET_PARAM_MTU
:
2090 init_fw_cb
->eth_mtu_size
=
2091 cpu_to_le16(*(uint16_t *)iface_param
->value
);
2093 case ISCSI_NET_PARAM_PORT
:
2094 /* Autocfg applies to even interface */
2095 if (iface_param
->iface_num
& 0x1)
2098 init_fw_cb
->ipv6_port
=
2099 cpu_to_le16(*(uint16_t *)iface_param
->value
);
2101 case ISCSI_NET_PARAM_DELAYED_ACK_EN
:
2102 if (iface_param
->iface_num
& 0x1)
2104 if (iface_param
->value
[0] == ISCSI_NET_PARAM_DISABLE
)
2105 init_fw_cb
->ipv6_tcp_opts
|=
2106 cpu_to_le16(IPV6_TCPOPT_DELAYED_ACK_DISABLE
);
2108 init_fw_cb
->ipv6_tcp_opts
&=
2109 cpu_to_le16(~IPV6_TCPOPT_DELAYED_ACK_DISABLE
&
2112 case ISCSI_NET_PARAM_TCP_NAGLE_DISABLE
:
2113 if (iface_param
->iface_num
& 0x1)
2115 if (iface_param
->value
[0] == ISCSI_NET_PARAM_DISABLE
)
2116 init_fw_cb
->ipv6_tcp_opts
|=
2117 cpu_to_le16(IPV6_TCPOPT_NAGLE_ALGO_DISABLE
);
2119 init_fw_cb
->ipv6_tcp_opts
&=
2120 cpu_to_le16(~IPV6_TCPOPT_NAGLE_ALGO_DISABLE
);
2122 case ISCSI_NET_PARAM_TCP_WSF_DISABLE
:
2123 if (iface_param
->iface_num
& 0x1)
2125 if (iface_param
->value
[0] == ISCSI_NET_PARAM_DISABLE
)
2126 init_fw_cb
->ipv6_tcp_opts
|=
2127 cpu_to_le16(IPV6_TCPOPT_WINDOW_SCALE_DISABLE
);
2129 init_fw_cb
->ipv6_tcp_opts
&=
2130 cpu_to_le16(~IPV6_TCPOPT_WINDOW_SCALE_DISABLE
);
2132 case ISCSI_NET_PARAM_TCP_WSF
:
2133 if (iface_param
->iface_num
& 0x1)
2135 init_fw_cb
->ipv6_tcp_wsf
= iface_param
->value
[0];
2137 case ISCSI_NET_PARAM_TCP_TIMER_SCALE
:
2138 if (iface_param
->iface_num
& 0x1)
2140 init_fw_cb
->ipv6_tcp_opts
&=
2141 cpu_to_le16(~IPV6_TCPOPT_TIMER_SCALE
);
2142 init_fw_cb
->ipv6_tcp_opts
|=
2143 cpu_to_le16((iface_param
->value
[0] << 1) &
2144 IPV6_TCPOPT_TIMER_SCALE
);
2146 case ISCSI_NET_PARAM_TCP_TIMESTAMP_EN
:
2147 if (iface_param
->iface_num
& 0x1)
2149 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2150 init_fw_cb
->ipv6_tcp_opts
|=
2151 cpu_to_le16(IPV6_TCPOPT_TIMESTAMP_EN
);
2153 init_fw_cb
->ipv6_tcp_opts
&=
2154 cpu_to_le16(~IPV6_TCPOPT_TIMESTAMP_EN
);
2156 case ISCSI_NET_PARAM_IPV6_GRAT_NEIGHBOR_ADV_EN
:
2157 if (iface_param
->iface_num
& 0x1)
2159 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2160 init_fw_cb
->ipv6_opts
|=
2161 cpu_to_le16(IPV6_OPT_GRAT_NEIGHBOR_ADV_EN
);
2163 init_fw_cb
->ipv6_opts
&=
2164 cpu_to_le16(~IPV6_OPT_GRAT_NEIGHBOR_ADV_EN
);
2166 case ISCSI_NET_PARAM_REDIRECT_EN
:
2167 if (iface_param
->iface_num
& 0x1)
2169 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2170 init_fw_cb
->ipv6_opts
|=
2171 cpu_to_le16(IPV6_OPT_REDIRECT_EN
);
2173 init_fw_cb
->ipv6_opts
&=
2174 cpu_to_le16(~IPV6_OPT_REDIRECT_EN
);
2176 case ISCSI_NET_PARAM_IPV6_MLD_EN
:
2177 if (iface_param
->iface_num
& 0x1)
2179 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2180 init_fw_cb
->ipv6_addtl_opts
|=
2181 cpu_to_le16(IPV6_ADDOPT_MLD_EN
);
2183 init_fw_cb
->ipv6_addtl_opts
&=
2184 cpu_to_le16(~IPV6_ADDOPT_MLD_EN
);
2186 case ISCSI_NET_PARAM_IPV6_FLOW_LABEL
:
2187 if (iface_param
->iface_num
& 0x1)
2189 init_fw_cb
->ipv6_flow_lbl
=
2190 cpu_to_le16(*(uint16_t *)iface_param
->value
);
2192 case ISCSI_NET_PARAM_IPV6_TRAFFIC_CLASS
:
2193 if (iface_param
->iface_num
& 0x1)
2195 init_fw_cb
->ipv6_traffic_class
= iface_param
->value
[0];
2197 case ISCSI_NET_PARAM_IPV6_HOP_LIMIT
:
2198 if (iface_param
->iface_num
& 0x1)
2200 init_fw_cb
->ipv6_hop_limit
= iface_param
->value
[0];
2202 case ISCSI_NET_PARAM_IPV6_ND_REACHABLE_TMO
:
2203 if (iface_param
->iface_num
& 0x1)
2205 init_fw_cb
->ipv6_nd_reach_time
=
2206 cpu_to_le32(*(uint32_t *)iface_param
->value
);
2208 case ISCSI_NET_PARAM_IPV6_ND_REXMIT_TIME
:
2209 if (iface_param
->iface_num
& 0x1)
2211 init_fw_cb
->ipv6_nd_rexmit_timer
=
2212 cpu_to_le32(*(uint32_t *)iface_param
->value
);
2214 case ISCSI_NET_PARAM_IPV6_ND_STALE_TMO
:
2215 if (iface_param
->iface_num
& 0x1)
2217 init_fw_cb
->ipv6_nd_stale_timeout
=
2218 cpu_to_le32(*(uint32_t *)iface_param
->value
);
2220 case ISCSI_NET_PARAM_IPV6_DUP_ADDR_DETECT_CNT
:
2221 if (iface_param
->iface_num
& 0x1)
2223 init_fw_cb
->ipv6_dup_addr_detect_count
= iface_param
->value
[0];
2225 case ISCSI_NET_PARAM_IPV6_RTR_ADV_LINK_MTU
:
2226 if (iface_param
->iface_num
& 0x1)
2228 init_fw_cb
->ipv6_gw_advrt_mtu
=
2229 cpu_to_le32(*(uint32_t *)iface_param
->value
);
2232 ql4_printk(KERN_ERR
, ha
, "Unknown IPv6 param = %d\n",
2233 iface_param
->param
);
2238 static void qla4xxx_set_ipv4(struct scsi_qla_host
*ha
,
2239 struct iscsi_iface_param_info
*iface_param
,
2240 struct addr_ctrl_blk
*init_fw_cb
)
2242 switch (iface_param
->param
) {
2243 case ISCSI_NET_PARAM_IPV4_ADDR
:
2244 memcpy(init_fw_cb
->ipv4_addr
, iface_param
->value
,
2245 sizeof(init_fw_cb
->ipv4_addr
));
2247 case ISCSI_NET_PARAM_IPV4_SUBNET
:
2248 memcpy(init_fw_cb
->ipv4_subnet
, iface_param
->value
,
2249 sizeof(init_fw_cb
->ipv4_subnet
));
2251 case ISCSI_NET_PARAM_IPV4_GW
:
2252 memcpy(init_fw_cb
->ipv4_gw_addr
, iface_param
->value
,
2253 sizeof(init_fw_cb
->ipv4_gw_addr
));
2255 case ISCSI_NET_PARAM_IPV4_BOOTPROTO
:
2256 if (iface_param
->value
[0] == ISCSI_BOOTPROTO_DHCP
)
2257 init_fw_cb
->ipv4_tcp_opts
|=
2258 cpu_to_le16(TCPOPT_DHCP_ENABLE
);
2259 else if (iface_param
->value
[0] == ISCSI_BOOTPROTO_STATIC
)
2260 init_fw_cb
->ipv4_tcp_opts
&=
2261 cpu_to_le16(~TCPOPT_DHCP_ENABLE
);
2263 ql4_printk(KERN_ERR
, ha
, "Invalid IPv4 bootproto\n");
2265 case ISCSI_NET_PARAM_IFACE_ENABLE
:
2266 if (iface_param
->value
[0] == ISCSI_IFACE_ENABLE
) {
2267 init_fw_cb
->ipv4_ip_opts
|=
2268 cpu_to_le16(IPOPT_IPV4_PROTOCOL_ENABLE
);
2269 qla4xxx_create_ipv4_iface(ha
);
2271 init_fw_cb
->ipv4_ip_opts
&=
2272 cpu_to_le16(~IPOPT_IPV4_PROTOCOL_ENABLE
&
2274 qla4xxx_destroy_ipv4_iface(ha
);
2277 case ISCSI_NET_PARAM_VLAN_TAG
:
2278 if (iface_param
->len
!= sizeof(init_fw_cb
->ipv4_vlan_tag
))
2280 init_fw_cb
->ipv4_vlan_tag
=
2281 cpu_to_be16(*(uint16_t *)iface_param
->value
);
2283 case ISCSI_NET_PARAM_VLAN_ENABLED
:
2284 if (iface_param
->value
[0] == ISCSI_VLAN_ENABLE
)
2285 init_fw_cb
->ipv4_ip_opts
|=
2286 cpu_to_le16(IPOPT_VLAN_TAGGING_ENABLE
);
2288 init_fw_cb
->ipv4_ip_opts
&=
2289 cpu_to_le16(~IPOPT_VLAN_TAGGING_ENABLE
);
2291 case ISCSI_NET_PARAM_MTU
:
2292 init_fw_cb
->eth_mtu_size
=
2293 cpu_to_le16(*(uint16_t *)iface_param
->value
);
2295 case ISCSI_NET_PARAM_PORT
:
2296 init_fw_cb
->ipv4_port
=
2297 cpu_to_le16(*(uint16_t *)iface_param
->value
);
2299 case ISCSI_NET_PARAM_DELAYED_ACK_EN
:
2300 if (iface_param
->iface_num
& 0x1)
2302 if (iface_param
->value
[0] == ISCSI_NET_PARAM_DISABLE
)
2303 init_fw_cb
->ipv4_tcp_opts
|=
2304 cpu_to_le16(TCPOPT_DELAYED_ACK_DISABLE
);
2306 init_fw_cb
->ipv4_tcp_opts
&=
2307 cpu_to_le16(~TCPOPT_DELAYED_ACK_DISABLE
&
2310 case ISCSI_NET_PARAM_TCP_NAGLE_DISABLE
:
2311 if (iface_param
->iface_num
& 0x1)
2313 if (iface_param
->value
[0] == ISCSI_NET_PARAM_DISABLE
)
2314 init_fw_cb
->ipv4_tcp_opts
|=
2315 cpu_to_le16(TCPOPT_NAGLE_ALGO_DISABLE
);
2317 init_fw_cb
->ipv4_tcp_opts
&=
2318 cpu_to_le16(~TCPOPT_NAGLE_ALGO_DISABLE
);
2320 case ISCSI_NET_PARAM_TCP_WSF_DISABLE
:
2321 if (iface_param
->iface_num
& 0x1)
2323 if (iface_param
->value
[0] == ISCSI_NET_PARAM_DISABLE
)
2324 init_fw_cb
->ipv4_tcp_opts
|=
2325 cpu_to_le16(TCPOPT_WINDOW_SCALE_DISABLE
);
2327 init_fw_cb
->ipv4_tcp_opts
&=
2328 cpu_to_le16(~TCPOPT_WINDOW_SCALE_DISABLE
);
2330 case ISCSI_NET_PARAM_TCP_WSF
:
2331 if (iface_param
->iface_num
& 0x1)
2333 init_fw_cb
->ipv4_tcp_wsf
= iface_param
->value
[0];
2335 case ISCSI_NET_PARAM_TCP_TIMER_SCALE
:
2336 if (iface_param
->iface_num
& 0x1)
2338 init_fw_cb
->ipv4_tcp_opts
&= cpu_to_le16(~TCPOPT_TIMER_SCALE
);
2339 init_fw_cb
->ipv4_tcp_opts
|=
2340 cpu_to_le16((iface_param
->value
[0] << 1) &
2341 TCPOPT_TIMER_SCALE
);
2343 case ISCSI_NET_PARAM_TCP_TIMESTAMP_EN
:
2344 if (iface_param
->iface_num
& 0x1)
2346 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2347 init_fw_cb
->ipv4_tcp_opts
|=
2348 cpu_to_le16(TCPOPT_TIMESTAMP_ENABLE
);
2350 init_fw_cb
->ipv4_tcp_opts
&=
2351 cpu_to_le16(~TCPOPT_TIMESTAMP_ENABLE
);
2353 case ISCSI_NET_PARAM_IPV4_DHCP_DNS_ADDR_EN
:
2354 if (iface_param
->iface_num
& 0x1)
2356 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2357 init_fw_cb
->ipv4_tcp_opts
|=
2358 cpu_to_le16(TCPOPT_DNS_SERVER_IP_EN
);
2360 init_fw_cb
->ipv4_tcp_opts
&=
2361 cpu_to_le16(~TCPOPT_DNS_SERVER_IP_EN
);
2363 case ISCSI_NET_PARAM_IPV4_DHCP_SLP_DA_EN
:
2364 if (iface_param
->iface_num
& 0x1)
2366 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2367 init_fw_cb
->ipv4_tcp_opts
|=
2368 cpu_to_le16(TCPOPT_SLP_DA_INFO_EN
);
2370 init_fw_cb
->ipv4_tcp_opts
&=
2371 cpu_to_le16(~TCPOPT_SLP_DA_INFO_EN
);
2373 case ISCSI_NET_PARAM_IPV4_TOS_EN
:
2374 if (iface_param
->iface_num
& 0x1)
2376 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2377 init_fw_cb
->ipv4_ip_opts
|=
2378 cpu_to_le16(IPOPT_IPV4_TOS_EN
);
2380 init_fw_cb
->ipv4_ip_opts
&=
2381 cpu_to_le16(~IPOPT_IPV4_TOS_EN
);
2383 case ISCSI_NET_PARAM_IPV4_TOS
:
2384 if (iface_param
->iface_num
& 0x1)
2386 init_fw_cb
->ipv4_tos
= iface_param
->value
[0];
2388 case ISCSI_NET_PARAM_IPV4_GRAT_ARP_EN
:
2389 if (iface_param
->iface_num
& 0x1)
2391 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2392 init_fw_cb
->ipv4_ip_opts
|=
2393 cpu_to_le16(IPOPT_GRAT_ARP_EN
);
2395 init_fw_cb
->ipv4_ip_opts
&=
2396 cpu_to_le16(~IPOPT_GRAT_ARP_EN
);
2398 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID_EN
:
2399 if (iface_param
->iface_num
& 0x1)
2401 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2402 init_fw_cb
->ipv4_ip_opts
|=
2403 cpu_to_le16(IPOPT_ALT_CID_EN
);
2405 init_fw_cb
->ipv4_ip_opts
&=
2406 cpu_to_le16(~IPOPT_ALT_CID_EN
);
2408 case ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID
:
2409 if (iface_param
->iface_num
& 0x1)
2411 memcpy(init_fw_cb
->ipv4_dhcp_alt_cid
, iface_param
->value
,
2412 (sizeof(init_fw_cb
->ipv4_dhcp_alt_cid
) - 1));
2413 init_fw_cb
->ipv4_dhcp_alt_cid_len
=
2414 strlen(init_fw_cb
->ipv4_dhcp_alt_cid
);
2416 case ISCSI_NET_PARAM_IPV4_DHCP_REQ_VENDOR_ID_EN
:
2417 if (iface_param
->iface_num
& 0x1)
2419 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2420 init_fw_cb
->ipv4_ip_opts
|=
2421 cpu_to_le16(IPOPT_REQ_VID_EN
);
2423 init_fw_cb
->ipv4_ip_opts
&=
2424 cpu_to_le16(~IPOPT_REQ_VID_EN
);
2426 case ISCSI_NET_PARAM_IPV4_DHCP_USE_VENDOR_ID_EN
:
2427 if (iface_param
->iface_num
& 0x1)
2429 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2430 init_fw_cb
->ipv4_ip_opts
|=
2431 cpu_to_le16(IPOPT_USE_VID_EN
);
2433 init_fw_cb
->ipv4_ip_opts
&=
2434 cpu_to_le16(~IPOPT_USE_VID_EN
);
2436 case ISCSI_NET_PARAM_IPV4_DHCP_VENDOR_ID
:
2437 if (iface_param
->iface_num
& 0x1)
2439 memcpy(init_fw_cb
->ipv4_dhcp_vid
, iface_param
->value
,
2440 (sizeof(init_fw_cb
->ipv4_dhcp_vid
) - 1));
2441 init_fw_cb
->ipv4_dhcp_vid_len
=
2442 strlen(init_fw_cb
->ipv4_dhcp_vid
);
2444 case ISCSI_NET_PARAM_IPV4_DHCP_LEARN_IQN_EN
:
2445 if (iface_param
->iface_num
& 0x1)
2447 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2448 init_fw_cb
->ipv4_ip_opts
|=
2449 cpu_to_le16(IPOPT_LEARN_IQN_EN
);
2451 init_fw_cb
->ipv4_ip_opts
&=
2452 cpu_to_le16(~IPOPT_LEARN_IQN_EN
);
2454 case ISCSI_NET_PARAM_IPV4_FRAGMENT_DISABLE
:
2455 if (iface_param
->iface_num
& 0x1)
2457 if (iface_param
->value
[0] == ISCSI_NET_PARAM_DISABLE
)
2458 init_fw_cb
->ipv4_ip_opts
|=
2459 cpu_to_le16(IPOPT_FRAGMENTATION_DISABLE
);
2461 init_fw_cb
->ipv4_ip_opts
&=
2462 cpu_to_le16(~IPOPT_FRAGMENTATION_DISABLE
);
2464 case ISCSI_NET_PARAM_IPV4_IN_FORWARD_EN
:
2465 if (iface_param
->iface_num
& 0x1)
2467 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2468 init_fw_cb
->ipv4_ip_opts
|=
2469 cpu_to_le16(IPOPT_IN_FORWARD_EN
);
2471 init_fw_cb
->ipv4_ip_opts
&=
2472 cpu_to_le16(~IPOPT_IN_FORWARD_EN
);
2474 case ISCSI_NET_PARAM_REDIRECT_EN
:
2475 if (iface_param
->iface_num
& 0x1)
2477 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2478 init_fw_cb
->ipv4_ip_opts
|=
2479 cpu_to_le16(IPOPT_ARP_REDIRECT_EN
);
2481 init_fw_cb
->ipv4_ip_opts
&=
2482 cpu_to_le16(~IPOPT_ARP_REDIRECT_EN
);
2484 case ISCSI_NET_PARAM_IPV4_TTL
:
2485 if (iface_param
->iface_num
& 0x1)
2487 init_fw_cb
->ipv4_ttl
= iface_param
->value
[0];
2490 ql4_printk(KERN_ERR
, ha
, "Unknown IPv4 param = %d\n",
2491 iface_param
->param
);
2496 static void qla4xxx_set_iscsi_param(struct scsi_qla_host
*ha
,
2497 struct iscsi_iface_param_info
*iface_param
,
2498 struct addr_ctrl_blk
*init_fw_cb
)
2500 switch (iface_param
->param
) {
2501 case ISCSI_IFACE_PARAM_DEF_TASKMGMT_TMO
:
2502 if (iface_param
->iface_num
& 0x1)
2504 init_fw_cb
->def_timeout
=
2505 cpu_to_le16(*(uint16_t *)iface_param
->value
);
2507 case ISCSI_IFACE_PARAM_HDRDGST_EN
:
2508 if (iface_param
->iface_num
& 0x1)
2510 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2511 init_fw_cb
->iscsi_opts
|=
2512 cpu_to_le16(ISCSIOPTS_HEADER_DIGEST_EN
);
2514 init_fw_cb
->iscsi_opts
&=
2515 cpu_to_le16(~ISCSIOPTS_HEADER_DIGEST_EN
);
2517 case ISCSI_IFACE_PARAM_DATADGST_EN
:
2518 if (iface_param
->iface_num
& 0x1)
2520 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2521 init_fw_cb
->iscsi_opts
|=
2522 cpu_to_le16(ISCSIOPTS_DATA_DIGEST_EN
);
2524 init_fw_cb
->iscsi_opts
&=
2525 cpu_to_le16(~ISCSIOPTS_DATA_DIGEST_EN
);
2527 case ISCSI_IFACE_PARAM_IMM_DATA_EN
:
2528 if (iface_param
->iface_num
& 0x1)
2530 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2531 init_fw_cb
->iscsi_opts
|=
2532 cpu_to_le16(ISCSIOPTS_IMMEDIATE_DATA_EN
);
2534 init_fw_cb
->iscsi_opts
&=
2535 cpu_to_le16(~ISCSIOPTS_IMMEDIATE_DATA_EN
);
2537 case ISCSI_IFACE_PARAM_INITIAL_R2T_EN
:
2538 if (iface_param
->iface_num
& 0x1)
2540 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2541 init_fw_cb
->iscsi_opts
|=
2542 cpu_to_le16(ISCSIOPTS_INITIAL_R2T_EN
);
2544 init_fw_cb
->iscsi_opts
&=
2545 cpu_to_le16(~ISCSIOPTS_INITIAL_R2T_EN
);
2547 case ISCSI_IFACE_PARAM_DATASEQ_INORDER_EN
:
2548 if (iface_param
->iface_num
& 0x1)
2550 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2551 init_fw_cb
->iscsi_opts
|=
2552 cpu_to_le16(ISCSIOPTS_DATA_SEQ_INORDER_EN
);
2554 init_fw_cb
->iscsi_opts
&=
2555 cpu_to_le16(~ISCSIOPTS_DATA_SEQ_INORDER_EN
);
2557 case ISCSI_IFACE_PARAM_PDU_INORDER_EN
:
2558 if (iface_param
->iface_num
& 0x1)
2560 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2561 init_fw_cb
->iscsi_opts
|=
2562 cpu_to_le16(ISCSIOPTS_DATA_PDU_INORDER_EN
);
2564 init_fw_cb
->iscsi_opts
&=
2565 cpu_to_le16(~ISCSIOPTS_DATA_PDU_INORDER_EN
);
2567 case ISCSI_IFACE_PARAM_ERL
:
2568 if (iface_param
->iface_num
& 0x1)
2570 init_fw_cb
->iscsi_opts
&= cpu_to_le16(~ISCSIOPTS_ERL
);
2571 init_fw_cb
->iscsi_opts
|= cpu_to_le16(iface_param
->value
[0] &
2574 case ISCSI_IFACE_PARAM_MAX_RECV_DLENGTH
:
2575 if (iface_param
->iface_num
& 0x1)
2577 init_fw_cb
->iscsi_max_pdu_size
=
2578 cpu_to_le32(*(uint32_t *)iface_param
->value
) /
2581 case ISCSI_IFACE_PARAM_FIRST_BURST
:
2582 if (iface_param
->iface_num
& 0x1)
2584 init_fw_cb
->iscsi_fburst_len
=
2585 cpu_to_le32(*(uint32_t *)iface_param
->value
) /
2588 case ISCSI_IFACE_PARAM_MAX_R2T
:
2589 if (iface_param
->iface_num
& 0x1)
2591 init_fw_cb
->iscsi_max_outstnd_r2t
=
2592 cpu_to_le16(*(uint16_t *)iface_param
->value
);
2594 case ISCSI_IFACE_PARAM_MAX_BURST
:
2595 if (iface_param
->iface_num
& 0x1)
2597 init_fw_cb
->iscsi_max_burst_len
=
2598 cpu_to_le32(*(uint32_t *)iface_param
->value
) /
2601 case ISCSI_IFACE_PARAM_CHAP_AUTH_EN
:
2602 if (iface_param
->iface_num
& 0x1)
2604 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2605 init_fw_cb
->iscsi_opts
|=
2606 cpu_to_le16(ISCSIOPTS_CHAP_AUTH_EN
);
2608 init_fw_cb
->iscsi_opts
&=
2609 cpu_to_le16(~ISCSIOPTS_CHAP_AUTH_EN
);
2611 case ISCSI_IFACE_PARAM_BIDI_CHAP_EN
:
2612 if (iface_param
->iface_num
& 0x1)
2614 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2615 init_fw_cb
->iscsi_opts
|=
2616 cpu_to_le16(ISCSIOPTS_BIDI_CHAP_EN
);
2618 init_fw_cb
->iscsi_opts
&=
2619 cpu_to_le16(~ISCSIOPTS_BIDI_CHAP_EN
);
2621 case ISCSI_IFACE_PARAM_DISCOVERY_AUTH_OPTIONAL
:
2622 if (iface_param
->iface_num
& 0x1)
2624 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2625 init_fw_cb
->iscsi_opts
|=
2626 cpu_to_le16(ISCSIOPTS_DISCOVERY_AUTH_EN
);
2628 init_fw_cb
->iscsi_opts
&=
2629 cpu_to_le16(~ISCSIOPTS_DISCOVERY_AUTH_EN
);
2631 case ISCSI_IFACE_PARAM_DISCOVERY_LOGOUT_EN
:
2632 if (iface_param
->iface_num
& 0x1)
2634 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2635 init_fw_cb
->iscsi_opts
|=
2636 cpu_to_le16(ISCSIOPTS_DISCOVERY_LOGOUT_EN
);
2638 init_fw_cb
->iscsi_opts
&=
2639 cpu_to_le16(~ISCSIOPTS_DISCOVERY_LOGOUT_EN
);
2641 case ISCSI_IFACE_PARAM_STRICT_LOGIN_COMP_EN
:
2642 if (iface_param
->iface_num
& 0x1)
2644 if (iface_param
->value
[0] == ISCSI_NET_PARAM_ENABLE
)
2645 init_fw_cb
->iscsi_opts
|=
2646 cpu_to_le16(ISCSIOPTS_STRICT_LOGIN_COMP_EN
);
2648 init_fw_cb
->iscsi_opts
&=
2649 cpu_to_le16(~ISCSIOPTS_STRICT_LOGIN_COMP_EN
);
2652 ql4_printk(KERN_ERR
, ha
, "Unknown iscsi param = %d\n",
2653 iface_param
->param
);
2659 qla4xxx_initcb_to_acb(struct addr_ctrl_blk
*init_fw_cb
)
2661 struct addr_ctrl_blk_def
*acb
;
2662 acb
= (struct addr_ctrl_blk_def
*)init_fw_cb
;
2663 memset(acb
->reserved1
, 0, sizeof(acb
->reserved1
));
2664 memset(acb
->reserved2
, 0, sizeof(acb
->reserved2
));
2665 memset(acb
->reserved3
, 0, sizeof(acb
->reserved3
));
2666 memset(acb
->reserved4
, 0, sizeof(acb
->reserved4
));
2667 memset(acb
->reserved5
, 0, sizeof(acb
->reserved5
));
2668 memset(acb
->reserved6
, 0, sizeof(acb
->reserved6
));
2669 memset(acb
->reserved7
, 0, sizeof(acb
->reserved7
));
2670 memset(acb
->reserved8
, 0, sizeof(acb
->reserved8
));
2671 memset(acb
->reserved9
, 0, sizeof(acb
->reserved9
));
2672 memset(acb
->reserved10
, 0, sizeof(acb
->reserved10
));
2673 memset(acb
->reserved11
, 0, sizeof(acb
->reserved11
));
2674 memset(acb
->reserved12
, 0, sizeof(acb
->reserved12
));
2675 memset(acb
->reserved13
, 0, sizeof(acb
->reserved13
));
2676 memset(acb
->reserved14
, 0, sizeof(acb
->reserved14
));
2677 memset(acb
->reserved15
, 0, sizeof(acb
->reserved15
));
2681 qla4xxx_iface_set_param(struct Scsi_Host
*shost
, void *data
, uint32_t len
)
2683 struct scsi_qla_host
*ha
= to_qla_host(shost
);
2685 struct iscsi_iface_param_info
*iface_param
= NULL
;
2686 struct addr_ctrl_blk
*init_fw_cb
= NULL
;
2687 dma_addr_t init_fw_cb_dma
;
2688 uint32_t mbox_cmd
[MBOX_REG_COUNT
];
2689 uint32_t mbox_sts
[MBOX_REG_COUNT
];
2691 struct nlattr
*attr
;
2693 init_fw_cb
= dma_alloc_coherent(&ha
->pdev
->dev
,
2694 sizeof(struct addr_ctrl_blk
),
2695 &init_fw_cb_dma
, GFP_KERNEL
);
2697 ql4_printk(KERN_ERR
, ha
, "%s: Unable to alloc init_cb\n",
2702 memset(init_fw_cb
, 0, sizeof(struct addr_ctrl_blk
));
2703 memset(&mbox_cmd
, 0, sizeof(mbox_cmd
));
2704 memset(&mbox_sts
, 0, sizeof(mbox_sts
));
2706 if (qla4xxx_get_ifcb(ha
, &mbox_cmd
[0], &mbox_sts
[0], init_fw_cb_dma
)) {
2707 ql4_printk(KERN_ERR
, ha
, "%s: get ifcb failed\n", __func__
);
2709 goto exit_init_fw_cb
;
2712 nla_for_each_attr(attr
, data
, len
, rem
) {
2713 iface_param
= nla_data(attr
);
2715 if (iface_param
->param_type
== ISCSI_NET_PARAM
) {
2716 switch (iface_param
->iface_type
) {
2717 case ISCSI_IFACE_TYPE_IPV4
:
2718 switch (iface_param
->iface_num
) {
2720 qla4xxx_set_ipv4(ha
, iface_param
,
2724 /* Cannot have more than one IPv4 interface */
2725 ql4_printk(KERN_ERR
, ha
,
2726 "Invalid IPv4 iface number = %d\n",
2727 iface_param
->iface_num
);
2731 case ISCSI_IFACE_TYPE_IPV6
:
2732 switch (iface_param
->iface_num
) {
2735 qla4xxx_set_ipv6(ha
, iface_param
,
2739 /* Cannot have more than two IPv6 interface */
2740 ql4_printk(KERN_ERR
, ha
,
2741 "Invalid IPv6 iface number = %d\n",
2742 iface_param
->iface_num
);
2747 ql4_printk(KERN_ERR
, ha
,
2748 "Invalid iface type\n");
2751 } else if (iface_param
->param_type
== ISCSI_IFACE_PARAM
) {
2752 qla4xxx_set_iscsi_param(ha
, iface_param
,
2759 init_fw_cb
->cookie
= cpu_to_le32(0x11BEAD5A);
2761 rval
= qla4xxx_set_flash(ha
, init_fw_cb_dma
, FLASH_SEGMENT_IFCB
,
2762 sizeof(struct addr_ctrl_blk
),
2763 FLASH_OPT_RMW_COMMIT
);
2764 if (rval
!= QLA_SUCCESS
) {
2765 ql4_printk(KERN_ERR
, ha
, "%s: set flash mbx failed\n",
2768 goto exit_init_fw_cb
;
2771 rval
= qla4xxx_disable_acb(ha
);
2772 if (rval
!= QLA_SUCCESS
) {
2773 ql4_printk(KERN_ERR
, ha
, "%s: disable acb mbx failed\n",
2776 goto exit_init_fw_cb
;
2779 wait_for_completion_timeout(&ha
->disable_acb_comp
,
2780 DISABLE_ACB_TOV
* HZ
);
2782 qla4xxx_initcb_to_acb(init_fw_cb
);
2784 rval
= qla4xxx_set_acb(ha
, &mbox_cmd
[0], &mbox_sts
[0], init_fw_cb_dma
);
2785 if (rval
!= QLA_SUCCESS
) {
2786 ql4_printk(KERN_ERR
, ha
, "%s: set acb mbx failed\n",
2789 goto exit_init_fw_cb
;
2792 memset(init_fw_cb
, 0, sizeof(struct addr_ctrl_blk
));
2793 qla4xxx_update_local_ifcb(ha
, &mbox_cmd
[0], &mbox_sts
[0], init_fw_cb
,
2797 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct addr_ctrl_blk
),
2798 init_fw_cb
, init_fw_cb_dma
);
2803 static int qla4xxx_session_get_param(struct iscsi_cls_session
*cls_sess
,
2804 enum iscsi_param param
, char *buf
)
2806 struct iscsi_session
*sess
= cls_sess
->dd_data
;
2807 struct ddb_entry
*ddb_entry
= sess
->dd_data
;
2808 struct scsi_qla_host
*ha
= ddb_entry
->ha
;
2809 struct iscsi_cls_conn
*cls_conn
= ddb_entry
->conn
;
2810 struct ql4_chap_table chap_tbl
;
2814 memset(&chap_tbl
, 0, sizeof(chap_tbl
));
2816 case ISCSI_PARAM_CHAP_IN_IDX
:
2817 rval
= qla4xxx_get_chap_index(ha
, sess
->username_in
,
2818 sess
->password_in
, BIDI_CHAP
,
2821 len
= sprintf(buf
, "\n");
2823 len
= sprintf(buf
, "%hu\n", idx
);
2825 case ISCSI_PARAM_CHAP_OUT_IDX
:
2826 if (ddb_entry
->ddb_type
== FLASH_DDB
) {
2827 if (ddb_entry
->chap_tbl_idx
!= INVALID_ENTRY
) {
2828 idx
= ddb_entry
->chap_tbl_idx
;
2834 rval
= qla4xxx_get_chap_index(ha
, sess
->username
,
2839 len
= sprintf(buf
, "\n");
2841 len
= sprintf(buf
, "%hu\n", idx
);
2843 case ISCSI_PARAM_USERNAME
:
2844 case ISCSI_PARAM_PASSWORD
:
2845 /* First, populate session username and password for FLASH DDB,
2846 * if not already done. This happens when session login fails
2849 if (ddb_entry
->ddb_type
== FLASH_DDB
&&
2850 ddb_entry
->chap_tbl_idx
!= INVALID_ENTRY
&&
2851 !sess
->username
&& !sess
->password
) {
2852 idx
= ddb_entry
->chap_tbl_idx
;
2853 rval
= qla4xxx_get_uni_chap_at_index(ha
, chap_tbl
.name
,
2857 iscsi_set_param(cls_conn
, ISCSI_PARAM_USERNAME
,
2858 (char *)chap_tbl
.name
,
2859 strlen((char *)chap_tbl
.name
));
2860 iscsi_set_param(cls_conn
, ISCSI_PARAM_PASSWORD
,
2861 (char *)chap_tbl
.secret
,
2862 chap_tbl
.secret_len
);
2865 /* allow fall-through */
2867 return iscsi_session_get_param(cls_sess
, param
, buf
);
2873 static int qla4xxx_conn_get_param(struct iscsi_cls_conn
*cls_conn
,
2874 enum iscsi_param param
, char *buf
)
2876 struct iscsi_conn
*conn
;
2877 struct qla_conn
*qla_conn
;
2878 struct sockaddr
*dst_addr
;
2880 conn
= cls_conn
->dd_data
;
2881 qla_conn
= conn
->dd_data
;
2882 dst_addr
= (struct sockaddr
*)&qla_conn
->qla_ep
->dst_addr
;
2885 case ISCSI_PARAM_CONN_PORT
:
2886 case ISCSI_PARAM_CONN_ADDRESS
:
2887 return iscsi_conn_get_addr_param((struct sockaddr_storage
*)
2888 dst_addr
, param
, buf
);
2890 return iscsi_conn_get_param(cls_conn
, param
, buf
);
2894 int qla4xxx_get_ddb_index(struct scsi_qla_host
*ha
, uint16_t *ddb_index
)
2896 uint32_t mbx_sts
= 0;
2897 uint16_t tmp_ddb_index
;
2901 tmp_ddb_index
= find_first_zero_bit(ha
->ddb_idx_map
, MAX_DDB_ENTRIES
);
2903 if (tmp_ddb_index
>= MAX_DDB_ENTRIES
) {
2904 DEBUG2(ql4_printk(KERN_INFO
, ha
,
2905 "Free DDB index not available\n"));
2907 goto exit_get_ddb_index
;
2910 if (test_and_set_bit(tmp_ddb_index
, ha
->ddb_idx_map
))
2913 DEBUG2(ql4_printk(KERN_INFO
, ha
,
2914 "Found a free DDB index at %d\n", tmp_ddb_index
));
2915 ret
= qla4xxx_req_ddb_entry(ha
, tmp_ddb_index
, &mbx_sts
);
2916 if (ret
== QLA_ERROR
) {
2917 if (mbx_sts
== MBOX_STS_COMMAND_ERROR
) {
2918 ql4_printk(KERN_INFO
, ha
,
2919 "DDB index = %d not available trying next\n",
2923 DEBUG2(ql4_printk(KERN_INFO
, ha
,
2924 "Free FW DDB not available\n"));
2927 *ddb_index
= tmp_ddb_index
;
2933 static int qla4xxx_match_ipaddress(struct scsi_qla_host
*ha
,
2934 struct ddb_entry
*ddb_entry
,
2935 char *existing_ipaddr
,
2938 uint8_t dst_ipaddr
[IPv6_ADDR_LEN
];
2939 char formatted_ipaddr
[DDB_IPADDR_LEN
];
2940 int status
= QLA_SUCCESS
, ret
= 0;
2942 if (ddb_entry
->fw_ddb_entry
.options
& DDB_OPT_IPV6_DEVICE
) {
2943 ret
= in6_pton(user_ipaddr
, strlen(user_ipaddr
), dst_ipaddr
,
2949 ret
= sprintf(formatted_ipaddr
, "%pI6", dst_ipaddr
);
2951 ret
= in4_pton(user_ipaddr
, strlen(user_ipaddr
), dst_ipaddr
,
2957 ret
= sprintf(formatted_ipaddr
, "%pI4", dst_ipaddr
);
2960 if (strcmp(existing_ipaddr
, formatted_ipaddr
))
2967 static int qla4xxx_match_fwdb_session(struct scsi_qla_host
*ha
,
2968 struct iscsi_cls_conn
*cls_conn
)
2970 int idx
= 0, max_ddbs
, rval
;
2971 struct iscsi_cls_session
*cls_sess
= iscsi_conn_to_session(cls_conn
);
2972 struct iscsi_session
*sess
, *existing_sess
;
2973 struct iscsi_conn
*conn
, *existing_conn
;
2974 struct ddb_entry
*ddb_entry
;
2976 sess
= cls_sess
->dd_data
;
2977 conn
= cls_conn
->dd_data
;
2979 if (sess
->targetname
== NULL
||
2980 conn
->persistent_address
== NULL
||
2981 conn
->persistent_port
== 0)
2984 max_ddbs
= is_qla40XX(ha
) ? MAX_DEV_DB_ENTRIES_40XX
:
2987 for (idx
= 0; idx
< max_ddbs
; idx
++) {
2988 ddb_entry
= qla4xxx_lookup_ddb_by_fw_index(ha
, idx
);
2989 if (ddb_entry
== NULL
)
2992 if (ddb_entry
->ddb_type
!= FLASH_DDB
)
2995 existing_sess
= ddb_entry
->sess
->dd_data
;
2996 existing_conn
= ddb_entry
->conn
->dd_data
;
2998 if (existing_sess
->targetname
== NULL
||
2999 existing_conn
->persistent_address
== NULL
||
3000 existing_conn
->persistent_port
== 0)
3003 DEBUG2(ql4_printk(KERN_INFO
, ha
,
3004 "IQN = %s User IQN = %s\n",
3005 existing_sess
->targetname
,
3008 DEBUG2(ql4_printk(KERN_INFO
, ha
,
3009 "IP = %s User IP = %s\n",
3010 existing_conn
->persistent_address
,
3011 conn
->persistent_address
));
3013 DEBUG2(ql4_printk(KERN_INFO
, ha
,
3014 "Port = %d User Port = %d\n",
3015 existing_conn
->persistent_port
,
3016 conn
->persistent_port
));
3018 if (strcmp(existing_sess
->targetname
, sess
->targetname
))
3020 rval
= qla4xxx_match_ipaddress(ha
, ddb_entry
,
3021 existing_conn
->persistent_address
,
3022 conn
->persistent_address
);
3023 if (rval
== QLA_ERROR
)
3025 if (existing_conn
->persistent_port
!= conn
->persistent_port
)
3030 if (idx
== max_ddbs
)
3033 DEBUG2(ql4_printk(KERN_INFO
, ha
,
3034 "Match found in fwdb sessions\n"));
3038 static struct iscsi_cls_session
*
3039 qla4xxx_session_create(struct iscsi_endpoint
*ep
,
3040 uint16_t cmds_max
, uint16_t qdepth
,
3041 uint32_t initial_cmdsn
)
3043 struct iscsi_cls_session
*cls_sess
;
3044 struct scsi_qla_host
*ha
;
3045 struct qla_endpoint
*qla_ep
;
3046 struct ddb_entry
*ddb_entry
;
3048 struct iscsi_session
*sess
;
3049 struct sockaddr
*dst_addr
;
3053 printk(KERN_ERR
"qla4xxx: missing ep.\n");
3057 qla_ep
= ep
->dd_data
;
3058 dst_addr
= (struct sockaddr
*)&qla_ep
->dst_addr
;
3059 ha
= to_qla_host(qla_ep
->host
);
3060 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: host: %ld\n", __func__
,
3063 ret
= qla4xxx_get_ddb_index(ha
, &ddb_index
);
3064 if (ret
== QLA_ERROR
)
3067 cls_sess
= iscsi_session_setup(&qla4xxx_iscsi_transport
, qla_ep
->host
,
3068 cmds_max
, sizeof(struct ddb_entry
),
3069 sizeof(struct ql4_task_data
),
3070 initial_cmdsn
, ddb_index
);
3074 sess
= cls_sess
->dd_data
;
3075 ddb_entry
= sess
->dd_data
;
3076 ddb_entry
->fw_ddb_index
= ddb_index
;
3077 ddb_entry
->fw_ddb_device_state
= DDB_DS_NO_CONNECTION_ACTIVE
;
3079 ddb_entry
->sess
= cls_sess
;
3080 ddb_entry
->unblock_sess
= qla4xxx_unblock_ddb
;
3081 ddb_entry
->ddb_change
= qla4xxx_ddb_change
;
3082 clear_bit(DDB_CONN_CLOSE_FAILURE
, &ddb_entry
->flags
);
3083 cls_sess
->recovery_tmo
= ql4xsess_recovery_tmo
;
3084 ha
->fw_ddb_index_map
[ddb_entry
->fw_ddb_index
] = ddb_entry
;
3090 static void qla4xxx_session_destroy(struct iscsi_cls_session
*cls_sess
)
3092 struct iscsi_session
*sess
;
3093 struct ddb_entry
*ddb_entry
;
3094 struct scsi_qla_host
*ha
;
3095 unsigned long flags
, wtime
;
3096 struct dev_db_entry
*fw_ddb_entry
= NULL
;
3097 dma_addr_t fw_ddb_entry_dma
;
3101 sess
= cls_sess
->dd_data
;
3102 ddb_entry
= sess
->dd_data
;
3104 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: host: %ld\n", __func__
,
3107 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
3108 &fw_ddb_entry_dma
, GFP_KERNEL
);
3109 if (!fw_ddb_entry
) {
3110 ql4_printk(KERN_ERR
, ha
,
3111 "%s: Unable to allocate dma buffer\n", __func__
);
3112 goto destroy_session
;
3115 wtime
= jiffies
+ (HZ
* LOGOUT_TOV
);
3117 ret
= qla4xxx_get_fwddb_entry(ha
, ddb_entry
->fw_ddb_index
,
3118 fw_ddb_entry
, fw_ddb_entry_dma
,
3119 NULL
, NULL
, &ddb_state
, NULL
,
3121 if (ret
== QLA_ERROR
)
3122 goto destroy_session
;
3124 if ((ddb_state
== DDB_DS_NO_CONNECTION_ACTIVE
) ||
3125 (ddb_state
== DDB_DS_SESSION_FAILED
))
3126 goto destroy_session
;
3128 schedule_timeout_uninterruptible(HZ
);
3129 } while ((time_after(wtime
, jiffies
)));
3132 qla4xxx_clear_ddb_entry(ha
, ddb_entry
->fw_ddb_index
);
3133 if (test_and_clear_bit(DDB_CONN_CLOSE_FAILURE
, &ddb_entry
->flags
))
3134 clear_bit(ddb_entry
->fw_ddb_index
, ha
->ddb_idx_map
);
3135 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
3136 qla4xxx_free_ddb(ha
, ddb_entry
);
3137 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
3139 iscsi_session_teardown(cls_sess
);
3142 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
3143 fw_ddb_entry
, fw_ddb_entry_dma
);
3146 static struct iscsi_cls_conn
*
3147 qla4xxx_conn_create(struct iscsi_cls_session
*cls_sess
, uint32_t conn_idx
)
3149 struct iscsi_cls_conn
*cls_conn
;
3150 struct iscsi_session
*sess
;
3151 struct ddb_entry
*ddb_entry
;
3152 struct scsi_qla_host
*ha
;
3154 cls_conn
= iscsi_conn_setup(cls_sess
, sizeof(struct qla_conn
),
3157 pr_info("%s: Can not create connection for conn_idx = %u\n",
3158 __func__
, conn_idx
);
3162 sess
= cls_sess
->dd_data
;
3163 ddb_entry
= sess
->dd_data
;
3164 ddb_entry
->conn
= cls_conn
;
3167 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: conn_idx = %u\n", __func__
,
3172 static int qla4xxx_conn_bind(struct iscsi_cls_session
*cls_session
,
3173 struct iscsi_cls_conn
*cls_conn
,
3174 uint64_t transport_fd
, int is_leading
)
3176 struct iscsi_conn
*conn
;
3177 struct qla_conn
*qla_conn
;
3178 struct iscsi_endpoint
*ep
;
3179 struct ddb_entry
*ddb_entry
;
3180 struct scsi_qla_host
*ha
;
3181 struct iscsi_session
*sess
;
3183 sess
= cls_session
->dd_data
;
3184 ddb_entry
= sess
->dd_data
;
3187 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: sid = %d, cid = %d\n", __func__
,
3188 cls_session
->sid
, cls_conn
->cid
));
3190 if (iscsi_conn_bind(cls_session
, cls_conn
, is_leading
))
3192 ep
= iscsi_lookup_endpoint(transport_fd
);
3193 conn
= cls_conn
->dd_data
;
3194 qla_conn
= conn
->dd_data
;
3195 qla_conn
->qla_ep
= ep
->dd_data
;
3199 static int qla4xxx_conn_start(struct iscsi_cls_conn
*cls_conn
)
3201 struct iscsi_cls_session
*cls_sess
= iscsi_conn_to_session(cls_conn
);
3202 struct iscsi_session
*sess
;
3203 struct ddb_entry
*ddb_entry
;
3204 struct scsi_qla_host
*ha
;
3205 struct dev_db_entry
*fw_ddb_entry
= NULL
;
3206 dma_addr_t fw_ddb_entry_dma
;
3207 uint32_t mbx_sts
= 0;
3209 int status
= QLA_SUCCESS
;
3211 sess
= cls_sess
->dd_data
;
3212 ddb_entry
= sess
->dd_data
;
3214 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: sid = %d, cid = %d\n", __func__
,
3215 cls_sess
->sid
, cls_conn
->cid
));
3217 /* Check if we have matching FW DDB, if yes then do not
3218 * login to this target. This could cause target to logout previous
3221 ret
= qla4xxx_match_fwdb_session(ha
, cls_conn
);
3222 if (ret
== QLA_SUCCESS
) {
3223 ql4_printk(KERN_INFO
, ha
,
3224 "Session already exist in FW.\n");
3226 goto exit_conn_start
;
3229 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
3230 &fw_ddb_entry_dma
, GFP_KERNEL
);
3231 if (!fw_ddb_entry
) {
3232 ql4_printk(KERN_ERR
, ha
,
3233 "%s: Unable to allocate dma buffer\n", __func__
);
3235 goto exit_conn_start
;
3238 ret
= qla4xxx_set_param_ddbentry(ha
, ddb_entry
, cls_conn
, &mbx_sts
);
3240 /* If iscsid is stopped and started then no need to do
3241 * set param again since ddb state will be already
3242 * active and FW does not allow set ddb to an
3246 if (ddb_entry
->fw_ddb_device_state
==
3247 DDB_DS_SESSION_ACTIVE
) {
3248 ddb_entry
->unblock_sess(ddb_entry
->sess
);
3249 goto exit_set_param
;
3252 ql4_printk(KERN_ERR
, ha
, "%s: Failed set param for index[%d]\n",
3253 __func__
, ddb_entry
->fw_ddb_index
);
3254 goto exit_conn_start
;
3257 status
= qla4xxx_conn_open(ha
, ddb_entry
->fw_ddb_index
);
3258 if (status
== QLA_ERROR
) {
3259 ql4_printk(KERN_ERR
, ha
, "%s: Login failed: %s\n", __func__
,
3262 goto exit_conn_start
;
3265 if (ddb_entry
->fw_ddb_device_state
== DDB_DS_NO_CONNECTION_ACTIVE
)
3266 ddb_entry
->fw_ddb_device_state
= DDB_DS_LOGIN_IN_PROCESS
;
3268 DEBUG2(printk(KERN_INFO
"%s: DDB state [%d]\n", __func__
,
3269 ddb_entry
->fw_ddb_device_state
));
3276 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
3277 fw_ddb_entry
, fw_ddb_entry_dma
);
3281 static void qla4xxx_conn_destroy(struct iscsi_cls_conn
*cls_conn
)
3283 struct iscsi_cls_session
*cls_sess
= iscsi_conn_to_session(cls_conn
);
3284 struct iscsi_session
*sess
;
3285 struct scsi_qla_host
*ha
;
3286 struct ddb_entry
*ddb_entry
;
3289 sess
= cls_sess
->dd_data
;
3290 ddb_entry
= sess
->dd_data
;
3292 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: cid = %d\n", __func__
,
3295 options
= LOGOUT_OPTION_CLOSE_SESSION
;
3296 if (qla4xxx_session_logout_ddb(ha
, ddb_entry
, options
) == QLA_ERROR
)
3297 ql4_printk(KERN_ERR
, ha
, "%s: Logout failed\n", __func__
);
3300 static void qla4xxx_task_work(struct work_struct
*wdata
)
3302 struct ql4_task_data
*task_data
;
3303 struct scsi_qla_host
*ha
;
3304 struct passthru_status
*sts
;
3305 struct iscsi_task
*task
;
3306 struct iscsi_hdr
*hdr
;
3309 struct iscsi_conn
*conn
;
3313 task_data
= container_of(wdata
, struct ql4_task_data
, task_work
);
3315 task
= task_data
->task
;
3316 sts
= &task_data
->sts
;
3317 hdr_len
= sizeof(struct iscsi_hdr
);
3319 DEBUG3(printk(KERN_INFO
"Status returned\n"));
3320 DEBUG3(qla4xxx_dump_buffer(sts
, 64));
3321 DEBUG3(printk(KERN_INFO
"Response buffer"));
3322 DEBUG3(qla4xxx_dump_buffer(task_data
->resp_buffer
, 64));
3326 switch (sts
->completionStatus
) {
3327 case PASSTHRU_STATUS_COMPLETE
:
3328 hdr
= (struct iscsi_hdr
*)task_data
->resp_buffer
;
3329 /* Assign back the itt in hdr, until we use the PREASSIGN_TAG */
3332 data
= task_data
->resp_buffer
+ hdr_len
;
3333 data_len
= task_data
->resp_len
- hdr_len
;
3334 iscsi_complete_pdu(conn
, hdr
, data
, data_len
);
3337 ql4_printk(KERN_ERR
, ha
, "Passthru failed status = 0x%x\n",
3338 sts
->completionStatus
);
3344 static int qla4xxx_alloc_pdu(struct iscsi_task
*task
, uint8_t opcode
)
3346 struct ql4_task_data
*task_data
;
3347 struct iscsi_session
*sess
;
3348 struct ddb_entry
*ddb_entry
;
3349 struct scsi_qla_host
*ha
;
3352 sess
= task
->conn
->session
;
3353 ddb_entry
= sess
->dd_data
;
3355 task_data
= task
->dd_data
;
3356 memset(task_data
, 0, sizeof(struct ql4_task_data
));
3359 ql4_printk(KERN_INFO
, ha
,
3360 "%s: SCSI Commands not implemented\n", __func__
);
3364 hdr_len
= sizeof(struct iscsi_hdr
);
3366 task_data
->task
= task
;
3368 if (task
->data_count
) {
3369 task_data
->data_dma
= dma_map_single(&ha
->pdev
->dev
, task
->data
,
3374 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: MaxRecvLen %u, iscsi hrd %d\n",
3375 __func__
, task
->conn
->max_recv_dlength
, hdr_len
));
3377 task_data
->resp_len
= task
->conn
->max_recv_dlength
+ hdr_len
;
3378 task_data
->resp_buffer
= dma_alloc_coherent(&ha
->pdev
->dev
,
3379 task_data
->resp_len
,
3380 &task_data
->resp_dma
,
3382 if (!task_data
->resp_buffer
)
3383 goto exit_alloc_pdu
;
3385 task_data
->req_len
= task
->data_count
+ hdr_len
;
3386 task_data
->req_buffer
= dma_alloc_coherent(&ha
->pdev
->dev
,
3388 &task_data
->req_dma
,
3390 if (!task_data
->req_buffer
)
3391 goto exit_alloc_pdu
;
3393 task
->hdr
= task_data
->req_buffer
;
3395 INIT_WORK(&task_data
->task_work
, qla4xxx_task_work
);
3400 if (task_data
->resp_buffer
)
3401 dma_free_coherent(&ha
->pdev
->dev
, task_data
->resp_len
,
3402 task_data
->resp_buffer
, task_data
->resp_dma
);
3404 if (task_data
->req_buffer
)
3405 dma_free_coherent(&ha
->pdev
->dev
, task_data
->req_len
,
3406 task_data
->req_buffer
, task_data
->req_dma
);
3410 static void qla4xxx_task_cleanup(struct iscsi_task
*task
)
3412 struct ql4_task_data
*task_data
;
3413 struct iscsi_session
*sess
;
3414 struct ddb_entry
*ddb_entry
;
3415 struct scsi_qla_host
*ha
;
3418 hdr_len
= sizeof(struct iscsi_hdr
);
3419 sess
= task
->conn
->session
;
3420 ddb_entry
= sess
->dd_data
;
3422 task_data
= task
->dd_data
;
3424 if (task
->data_count
) {
3425 dma_unmap_single(&ha
->pdev
->dev
, task_data
->data_dma
,
3426 task
->data_count
, PCI_DMA_TODEVICE
);
3429 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: MaxRecvLen %u, iscsi hrd %d\n",
3430 __func__
, task
->conn
->max_recv_dlength
, hdr_len
));
3432 dma_free_coherent(&ha
->pdev
->dev
, task_data
->resp_len
,
3433 task_data
->resp_buffer
, task_data
->resp_dma
);
3434 dma_free_coherent(&ha
->pdev
->dev
, task_data
->req_len
,
3435 task_data
->req_buffer
, task_data
->req_dma
);
3439 static int qla4xxx_task_xmit(struct iscsi_task
*task
)
3441 struct scsi_cmnd
*sc
= task
->sc
;
3442 struct iscsi_session
*sess
= task
->conn
->session
;
3443 struct ddb_entry
*ddb_entry
= sess
->dd_data
;
3444 struct scsi_qla_host
*ha
= ddb_entry
->ha
;
3447 return qla4xxx_send_passthru0(task
);
3449 ql4_printk(KERN_INFO
, ha
, "%s: scsi cmd xmit not implemented\n",
3454 static int qla4xxx_copy_from_fwddb_param(struct iscsi_bus_flash_session
*sess
,
3455 struct iscsi_bus_flash_conn
*conn
,
3456 struct dev_db_entry
*fw_ddb_entry
)
3458 unsigned long options
= 0;
3461 options
= le16_to_cpu(fw_ddb_entry
->options
);
3462 conn
->is_fw_assigned_ipv6
= test_bit(OPT_IS_FW_ASSIGNED_IPV6
, &options
);
3463 if (test_bit(OPT_IPV6_DEVICE
, &options
)) {
3464 rc
= iscsi_switch_str_param(&sess
->portal_type
,
3469 rc
= iscsi_switch_str_param(&sess
->portal_type
,
3475 sess
->auto_snd_tgt_disable
= test_bit(OPT_AUTO_SENDTGTS_DISABLE
,
3477 sess
->discovery_sess
= test_bit(OPT_DISC_SESSION
, &options
);
3478 sess
->entry_state
= test_bit(OPT_ENTRY_STATE
, &options
);
3480 options
= le16_to_cpu(fw_ddb_entry
->iscsi_options
);
3481 conn
->hdrdgst_en
= test_bit(ISCSIOPT_HEADER_DIGEST_EN
, &options
);
3482 conn
->datadgst_en
= test_bit(ISCSIOPT_DATA_DIGEST_EN
, &options
);
3483 sess
->imm_data_en
= test_bit(ISCSIOPT_IMMEDIATE_DATA_EN
, &options
);
3484 sess
->initial_r2t_en
= test_bit(ISCSIOPT_INITIAL_R2T_EN
, &options
);
3485 sess
->dataseq_inorder_en
= test_bit(ISCSIOPT_DATA_SEQ_IN_ORDER
,
3487 sess
->pdu_inorder_en
= test_bit(ISCSIOPT_DATA_PDU_IN_ORDER
, &options
);
3488 sess
->chap_auth_en
= test_bit(ISCSIOPT_CHAP_AUTH_EN
, &options
);
3489 conn
->snack_req_en
= test_bit(ISCSIOPT_SNACK_REQ_EN
, &options
);
3490 sess
->discovery_logout_en
= test_bit(ISCSIOPT_DISCOVERY_LOGOUT_EN
,
3492 sess
->bidi_chap_en
= test_bit(ISCSIOPT_BIDI_CHAP_EN
, &options
);
3493 sess
->discovery_auth_optional
=
3494 test_bit(ISCSIOPT_DISCOVERY_AUTH_OPTIONAL
, &options
);
3495 if (test_bit(ISCSIOPT_ERL1
, &options
))
3497 if (test_bit(ISCSIOPT_ERL0
, &options
))
3500 options
= le16_to_cpu(fw_ddb_entry
->tcp_options
);
3501 conn
->tcp_timestamp_stat
= test_bit(TCPOPT_TIMESTAMP_STAT
, &options
);
3502 conn
->tcp_nagle_disable
= test_bit(TCPOPT_NAGLE_DISABLE
, &options
);
3503 conn
->tcp_wsf_disable
= test_bit(TCPOPT_WSF_DISABLE
, &options
);
3504 if (test_bit(TCPOPT_TIMER_SCALE3
, &options
))
3505 conn
->tcp_timer_scale
|= BIT_3
;
3506 if (test_bit(TCPOPT_TIMER_SCALE2
, &options
))
3507 conn
->tcp_timer_scale
|= BIT_2
;
3508 if (test_bit(TCPOPT_TIMER_SCALE1
, &options
))
3509 conn
->tcp_timer_scale
|= BIT_1
;
3511 conn
->tcp_timer_scale
>>= 1;
3512 conn
->tcp_timestamp_en
= test_bit(TCPOPT_TIMESTAMP_EN
, &options
);
3514 options
= le16_to_cpu(fw_ddb_entry
->ip_options
);
3515 conn
->fragment_disable
= test_bit(IPOPT_FRAGMENT_DISABLE
, &options
);
3517 conn
->max_recv_dlength
= BYTE_UNITS
*
3518 le16_to_cpu(fw_ddb_entry
->iscsi_max_rcv_data_seg_len
);
3519 conn
->max_xmit_dlength
= BYTE_UNITS
*
3520 le16_to_cpu(fw_ddb_entry
->iscsi_max_snd_data_seg_len
);
3521 sess
->first_burst
= BYTE_UNITS
*
3522 le16_to_cpu(fw_ddb_entry
->iscsi_first_burst_len
);
3523 sess
->max_burst
= BYTE_UNITS
*
3524 le16_to_cpu(fw_ddb_entry
->iscsi_max_burst_len
);
3525 sess
->max_r2t
= le16_to_cpu(fw_ddb_entry
->iscsi_max_outsnd_r2t
);
3526 sess
->time2wait
= le16_to_cpu(fw_ddb_entry
->iscsi_def_time2wait
);
3527 sess
->time2retain
= le16_to_cpu(fw_ddb_entry
->iscsi_def_time2retain
);
3528 sess
->tpgt
= le32_to_cpu(fw_ddb_entry
->tgt_portal_grp
);
3529 conn
->max_segment_size
= le16_to_cpu(fw_ddb_entry
->mss
);
3530 conn
->tcp_xmit_wsf
= fw_ddb_entry
->tcp_xmt_wsf
;
3531 conn
->tcp_recv_wsf
= fw_ddb_entry
->tcp_rcv_wsf
;
3532 conn
->ipv6_flow_label
= le16_to_cpu(fw_ddb_entry
->ipv6_flow_lbl
);
3533 conn
->keepalive_timeout
= le16_to_cpu(fw_ddb_entry
->ka_timeout
);
3534 conn
->local_port
= le16_to_cpu(fw_ddb_entry
->lcl_port
);
3535 conn
->statsn
= le32_to_cpu(fw_ddb_entry
->stat_sn
);
3536 conn
->exp_statsn
= le32_to_cpu(fw_ddb_entry
->exp_stat_sn
);
3537 sess
->discovery_parent_idx
= le16_to_cpu(fw_ddb_entry
->ddb_link
);
3538 sess
->discovery_parent_type
= le16_to_cpu(fw_ddb_entry
->ddb_link
);
3539 sess
->chap_out_idx
= le16_to_cpu(fw_ddb_entry
->chap_tbl_idx
);
3540 sess
->tsid
= le16_to_cpu(fw_ddb_entry
->tsid
);
3542 sess
->default_taskmgmt_timeout
=
3543 le16_to_cpu(fw_ddb_entry
->def_timeout
);
3544 conn
->port
= le16_to_cpu(fw_ddb_entry
->port
);
3546 options
= le16_to_cpu(fw_ddb_entry
->options
);
3547 conn
->ipaddress
= kzalloc(IPv6_ADDR_LEN
, GFP_KERNEL
);
3548 if (!conn
->ipaddress
) {
3553 conn
->redirect_ipaddr
= kzalloc(IPv6_ADDR_LEN
, GFP_KERNEL
);
3554 if (!conn
->redirect_ipaddr
) {
3559 memcpy(conn
->ipaddress
, fw_ddb_entry
->ip_addr
, IPv6_ADDR_LEN
);
3560 memcpy(conn
->redirect_ipaddr
, fw_ddb_entry
->tgt_addr
, IPv6_ADDR_LEN
);
3562 if (test_bit(OPT_IPV6_DEVICE
, &options
)) {
3563 conn
->ipv6_traffic_class
= fw_ddb_entry
->ipv4_tos
;
3565 conn
->link_local_ipv6_addr
= kmemdup(
3566 fw_ddb_entry
->link_local_ipv6_addr
,
3567 IPv6_ADDR_LEN
, GFP_KERNEL
);
3568 if (!conn
->link_local_ipv6_addr
) {
3573 conn
->ipv4_tos
= fw_ddb_entry
->ipv4_tos
;
3576 if (fw_ddb_entry
->iscsi_name
[0]) {
3577 rc
= iscsi_switch_str_param(&sess
->targetname
,
3578 (char *)fw_ddb_entry
->iscsi_name
);
3583 if (fw_ddb_entry
->iscsi_alias
[0]) {
3584 rc
= iscsi_switch_str_param(&sess
->targetalias
,
3585 (char *)fw_ddb_entry
->iscsi_alias
);
3590 COPY_ISID(sess
->isid
, fw_ddb_entry
->isid
);
3596 static int qla4xxx_copy_to_fwddb_param(struct iscsi_bus_flash_session
*sess
,
3597 struct iscsi_bus_flash_conn
*conn
,
3598 struct dev_db_entry
*fw_ddb_entry
)
3603 options
= le16_to_cpu(fw_ddb_entry
->options
);
3604 SET_BITVAL(conn
->is_fw_assigned_ipv6
, options
, BIT_11
);
3605 if (!strncmp(sess
->portal_type
, PORTAL_TYPE_IPV6
, 4))
3610 SET_BITVAL(sess
->auto_snd_tgt_disable
, options
, BIT_6
);
3611 SET_BITVAL(sess
->discovery_sess
, options
, BIT_4
);
3612 SET_BITVAL(sess
->entry_state
, options
, BIT_3
);
3613 fw_ddb_entry
->options
= cpu_to_le16(options
);
3615 options
= le16_to_cpu(fw_ddb_entry
->iscsi_options
);
3616 SET_BITVAL(conn
->hdrdgst_en
, options
, BIT_13
);
3617 SET_BITVAL(conn
->datadgst_en
, options
, BIT_12
);
3618 SET_BITVAL(sess
->imm_data_en
, options
, BIT_11
);
3619 SET_BITVAL(sess
->initial_r2t_en
, options
, BIT_10
);
3620 SET_BITVAL(sess
->dataseq_inorder_en
, options
, BIT_9
);
3621 SET_BITVAL(sess
->pdu_inorder_en
, options
, BIT_8
);
3622 SET_BITVAL(sess
->chap_auth_en
, options
, BIT_7
);
3623 SET_BITVAL(conn
->snack_req_en
, options
, BIT_6
);
3624 SET_BITVAL(sess
->discovery_logout_en
, options
, BIT_5
);
3625 SET_BITVAL(sess
->bidi_chap_en
, options
, BIT_4
);
3626 SET_BITVAL(sess
->discovery_auth_optional
, options
, BIT_3
);
3627 SET_BITVAL(sess
->erl
& BIT_1
, options
, BIT_1
);
3628 SET_BITVAL(sess
->erl
& BIT_0
, options
, BIT_0
);
3629 fw_ddb_entry
->iscsi_options
= cpu_to_le16(options
);
3631 options
= le16_to_cpu(fw_ddb_entry
->tcp_options
);
3632 SET_BITVAL(conn
->tcp_timestamp_stat
, options
, BIT_6
);
3633 SET_BITVAL(conn
->tcp_nagle_disable
, options
, BIT_5
);
3634 SET_BITVAL(conn
->tcp_wsf_disable
, options
, BIT_4
);
3635 SET_BITVAL(conn
->tcp_timer_scale
& BIT_2
, options
, BIT_3
);
3636 SET_BITVAL(conn
->tcp_timer_scale
& BIT_1
, options
, BIT_2
);
3637 SET_BITVAL(conn
->tcp_timer_scale
& BIT_0
, options
, BIT_1
);
3638 SET_BITVAL(conn
->tcp_timestamp_en
, options
, BIT_0
);
3639 fw_ddb_entry
->tcp_options
= cpu_to_le16(options
);
3641 options
= le16_to_cpu(fw_ddb_entry
->ip_options
);
3642 SET_BITVAL(conn
->fragment_disable
, options
, BIT_4
);
3643 fw_ddb_entry
->ip_options
= cpu_to_le16(options
);
3645 fw_ddb_entry
->iscsi_max_outsnd_r2t
= cpu_to_le16(sess
->max_r2t
);
3646 fw_ddb_entry
->iscsi_max_rcv_data_seg_len
=
3647 cpu_to_le16(conn
->max_recv_dlength
/ BYTE_UNITS
);
3648 fw_ddb_entry
->iscsi_max_snd_data_seg_len
=
3649 cpu_to_le16(conn
->max_xmit_dlength
/ BYTE_UNITS
);
3650 fw_ddb_entry
->iscsi_first_burst_len
=
3651 cpu_to_le16(sess
->first_burst
/ BYTE_UNITS
);
3652 fw_ddb_entry
->iscsi_max_burst_len
= cpu_to_le16(sess
->max_burst
/
3654 fw_ddb_entry
->iscsi_def_time2wait
= cpu_to_le16(sess
->time2wait
);
3655 fw_ddb_entry
->iscsi_def_time2retain
= cpu_to_le16(sess
->time2retain
);
3656 fw_ddb_entry
->tgt_portal_grp
= cpu_to_le16(sess
->tpgt
);
3657 fw_ddb_entry
->mss
= cpu_to_le16(conn
->max_segment_size
);
3658 fw_ddb_entry
->tcp_xmt_wsf
= (uint8_t) cpu_to_le32(conn
->tcp_xmit_wsf
);
3659 fw_ddb_entry
->tcp_rcv_wsf
= (uint8_t) cpu_to_le32(conn
->tcp_recv_wsf
);
3660 fw_ddb_entry
->ipv6_flow_lbl
= cpu_to_le16(conn
->ipv6_flow_label
);
3661 fw_ddb_entry
->ka_timeout
= cpu_to_le16(conn
->keepalive_timeout
);
3662 fw_ddb_entry
->lcl_port
= cpu_to_le16(conn
->local_port
);
3663 fw_ddb_entry
->stat_sn
= cpu_to_le32(conn
->statsn
);
3664 fw_ddb_entry
->exp_stat_sn
= cpu_to_le32(conn
->exp_statsn
);
3665 fw_ddb_entry
->ddb_link
= cpu_to_le16(sess
->discovery_parent_idx
);
3666 fw_ddb_entry
->chap_tbl_idx
= cpu_to_le16(sess
->chap_out_idx
);
3667 fw_ddb_entry
->tsid
= cpu_to_le16(sess
->tsid
);
3668 fw_ddb_entry
->port
= cpu_to_le16(conn
->port
);
3669 fw_ddb_entry
->def_timeout
=
3670 cpu_to_le16(sess
->default_taskmgmt_timeout
);
3672 if (!strncmp(sess
->portal_type
, PORTAL_TYPE_IPV6
, 4))
3673 fw_ddb_entry
->ipv4_tos
= conn
->ipv6_traffic_class
;
3675 fw_ddb_entry
->ipv4_tos
= conn
->ipv4_tos
;
3677 if (conn
->ipaddress
)
3678 memcpy(fw_ddb_entry
->ip_addr
, conn
->ipaddress
,
3679 sizeof(fw_ddb_entry
->ip_addr
));
3681 if (conn
->redirect_ipaddr
)
3682 memcpy(fw_ddb_entry
->tgt_addr
, conn
->redirect_ipaddr
,
3683 sizeof(fw_ddb_entry
->tgt_addr
));
3685 if (conn
->link_local_ipv6_addr
)
3686 memcpy(fw_ddb_entry
->link_local_ipv6_addr
,
3687 conn
->link_local_ipv6_addr
,
3688 sizeof(fw_ddb_entry
->link_local_ipv6_addr
));
3690 if (sess
->targetname
)
3691 memcpy(fw_ddb_entry
->iscsi_name
, sess
->targetname
,
3692 sizeof(fw_ddb_entry
->iscsi_name
));
3694 if (sess
->targetalias
)
3695 memcpy(fw_ddb_entry
->iscsi_alias
, sess
->targetalias
,
3696 sizeof(fw_ddb_entry
->iscsi_alias
));
3698 COPY_ISID(fw_ddb_entry
->isid
, sess
->isid
);
3703 static void qla4xxx_copy_to_sess_conn_params(struct iscsi_conn
*conn
,
3704 struct iscsi_session
*sess
,
3705 struct dev_db_entry
*fw_ddb_entry
)
3707 unsigned long options
= 0;
3709 uint16_t disc_parent
;
3710 char ip_addr
[DDB_IPADDR_LEN
];
3712 options
= le16_to_cpu(fw_ddb_entry
->options
);
3713 conn
->is_fw_assigned_ipv6
= test_bit(OPT_IS_FW_ASSIGNED_IPV6
, &options
);
3714 sess
->auto_snd_tgt_disable
= test_bit(OPT_AUTO_SENDTGTS_DISABLE
,
3716 sess
->discovery_sess
= test_bit(OPT_DISC_SESSION
, &options
);
3718 options
= le16_to_cpu(fw_ddb_entry
->iscsi_options
);
3719 conn
->hdrdgst_en
= test_bit(ISCSIOPT_HEADER_DIGEST_EN
, &options
);
3720 conn
->datadgst_en
= test_bit(ISCSIOPT_DATA_DIGEST_EN
, &options
);
3721 sess
->imm_data_en
= test_bit(ISCSIOPT_IMMEDIATE_DATA_EN
, &options
);
3722 sess
->initial_r2t_en
= test_bit(ISCSIOPT_INITIAL_R2T_EN
, &options
);
3723 sess
->dataseq_inorder_en
= test_bit(ISCSIOPT_DATA_SEQ_IN_ORDER
,
3725 sess
->pdu_inorder_en
= test_bit(ISCSIOPT_DATA_PDU_IN_ORDER
, &options
);
3726 sess
->chap_auth_en
= test_bit(ISCSIOPT_CHAP_AUTH_EN
, &options
);
3727 sess
->discovery_logout_en
= test_bit(ISCSIOPT_DISCOVERY_LOGOUT_EN
,
3729 sess
->bidi_chap_en
= test_bit(ISCSIOPT_BIDI_CHAP_EN
, &options
);
3730 sess
->discovery_auth_optional
=
3731 test_bit(ISCSIOPT_DISCOVERY_AUTH_OPTIONAL
, &options
);
3732 if (test_bit(ISCSIOPT_ERL1
, &options
))
3734 if (test_bit(ISCSIOPT_ERL0
, &options
))
3737 options
= le16_to_cpu(fw_ddb_entry
->tcp_options
);
3738 conn
->tcp_timestamp_stat
= test_bit(TCPOPT_TIMESTAMP_STAT
, &options
);
3739 conn
->tcp_nagle_disable
= test_bit(TCPOPT_NAGLE_DISABLE
, &options
);
3740 conn
->tcp_wsf_disable
= test_bit(TCPOPT_WSF_DISABLE
, &options
);
3741 if (test_bit(TCPOPT_TIMER_SCALE3
, &options
))
3742 conn
->tcp_timer_scale
|= BIT_3
;
3743 if (test_bit(TCPOPT_TIMER_SCALE2
, &options
))
3744 conn
->tcp_timer_scale
|= BIT_2
;
3745 if (test_bit(TCPOPT_TIMER_SCALE1
, &options
))
3746 conn
->tcp_timer_scale
|= BIT_1
;
3748 conn
->tcp_timer_scale
>>= 1;
3749 conn
->tcp_timestamp_en
= test_bit(TCPOPT_TIMESTAMP_EN
, &options
);
3751 options
= le16_to_cpu(fw_ddb_entry
->ip_options
);
3752 conn
->fragment_disable
= test_bit(IPOPT_FRAGMENT_DISABLE
, &options
);
3754 conn
->max_recv_dlength
= BYTE_UNITS
*
3755 le16_to_cpu(fw_ddb_entry
->iscsi_max_rcv_data_seg_len
);
3756 conn
->max_xmit_dlength
= BYTE_UNITS
*
3757 le16_to_cpu(fw_ddb_entry
->iscsi_max_snd_data_seg_len
);
3758 sess
->max_r2t
= le16_to_cpu(fw_ddb_entry
->iscsi_max_outsnd_r2t
);
3759 sess
->first_burst
= BYTE_UNITS
*
3760 le16_to_cpu(fw_ddb_entry
->iscsi_first_burst_len
);
3761 sess
->max_burst
= BYTE_UNITS
*
3762 le16_to_cpu(fw_ddb_entry
->iscsi_max_burst_len
);
3763 sess
->time2wait
= le16_to_cpu(fw_ddb_entry
->iscsi_def_time2wait
);
3764 sess
->time2retain
= le16_to_cpu(fw_ddb_entry
->iscsi_def_time2retain
);
3765 sess
->tpgt
= le32_to_cpu(fw_ddb_entry
->tgt_portal_grp
);
3766 conn
->max_segment_size
= le16_to_cpu(fw_ddb_entry
->mss
);
3767 conn
->tcp_xmit_wsf
= fw_ddb_entry
->tcp_xmt_wsf
;
3768 conn
->tcp_recv_wsf
= fw_ddb_entry
->tcp_rcv_wsf
;
3769 conn
->ipv4_tos
= fw_ddb_entry
->ipv4_tos
;
3770 conn
->keepalive_tmo
= le16_to_cpu(fw_ddb_entry
->ka_timeout
);
3771 conn
->local_port
= le16_to_cpu(fw_ddb_entry
->lcl_port
);
3772 conn
->statsn
= le32_to_cpu(fw_ddb_entry
->stat_sn
);
3773 conn
->exp_statsn
= le32_to_cpu(fw_ddb_entry
->exp_stat_sn
);
3774 sess
->tsid
= le16_to_cpu(fw_ddb_entry
->tsid
);
3775 COPY_ISID(sess
->isid
, fw_ddb_entry
->isid
);
3777 ddb_link
= le16_to_cpu(fw_ddb_entry
->ddb_link
);
3778 if (ddb_link
== DDB_ISNS
)
3779 disc_parent
= ISCSI_DISC_PARENT_ISNS
;
3780 else if (ddb_link
== DDB_NO_LINK
)
3781 disc_parent
= ISCSI_DISC_PARENT_UNKNOWN
;
3782 else if (ddb_link
< MAX_DDB_ENTRIES
)
3783 disc_parent
= ISCSI_DISC_PARENT_SENDTGT
;
3785 disc_parent
= ISCSI_DISC_PARENT_UNKNOWN
;
3787 iscsi_set_param(conn
->cls_conn
, ISCSI_PARAM_DISCOVERY_PARENT_TYPE
,
3788 iscsi_get_discovery_parent_name(disc_parent
), 0);
3790 iscsi_set_param(conn
->cls_conn
, ISCSI_PARAM_TARGET_ALIAS
,
3791 (char *)fw_ddb_entry
->iscsi_alias
, 0);
3793 options
= le16_to_cpu(fw_ddb_entry
->options
);
3794 if (options
& DDB_OPT_IPV6_DEVICE
) {
3795 memset(ip_addr
, 0, sizeof(ip_addr
));
3796 sprintf(ip_addr
, "%pI6", fw_ddb_entry
->link_local_ipv6_addr
);
3797 iscsi_set_param(conn
->cls_conn
, ISCSI_PARAM_LOCAL_IPADDR
,
3798 (char *)ip_addr
, 0);
3802 static void qla4xxx_copy_fwddb_param(struct scsi_qla_host
*ha
,
3803 struct dev_db_entry
*fw_ddb_entry
,
3804 struct iscsi_cls_session
*cls_sess
,
3805 struct iscsi_cls_conn
*cls_conn
)
3808 struct iscsi_session
*sess
;
3809 struct ddb_entry
*ddb_entry
;
3810 struct ql4_chap_table chap_tbl
;
3811 struct iscsi_conn
*conn
;
3812 char ip_addr
[DDB_IPADDR_LEN
];
3813 uint16_t options
= 0;
3815 sess
= cls_sess
->dd_data
;
3816 ddb_entry
= sess
->dd_data
;
3817 conn
= cls_conn
->dd_data
;
3818 memset(&chap_tbl
, 0, sizeof(chap_tbl
));
3820 ddb_entry
->chap_tbl_idx
= le16_to_cpu(fw_ddb_entry
->chap_tbl_idx
);
3822 qla4xxx_copy_to_sess_conn_params(conn
, sess
, fw_ddb_entry
);
3824 sess
->def_taskmgmt_tmo
= le16_to_cpu(fw_ddb_entry
->def_timeout
);
3825 conn
->persistent_port
= le16_to_cpu(fw_ddb_entry
->port
);
3827 memset(ip_addr
, 0, sizeof(ip_addr
));
3828 options
= le16_to_cpu(fw_ddb_entry
->options
);
3829 if (options
& DDB_OPT_IPV6_DEVICE
) {
3830 iscsi_set_param(cls_conn
, ISCSI_PARAM_PORTAL_TYPE
, "ipv6", 4);
3832 memset(ip_addr
, 0, sizeof(ip_addr
));
3833 sprintf(ip_addr
, "%pI6", fw_ddb_entry
->ip_addr
);
3835 iscsi_set_param(cls_conn
, ISCSI_PARAM_PORTAL_TYPE
, "ipv4", 4);
3836 sprintf(ip_addr
, "%pI4", fw_ddb_entry
->ip_addr
);
3839 iscsi_set_param(cls_conn
, ISCSI_PARAM_PERSISTENT_ADDRESS
,
3840 (char *)ip_addr
, buflen
);
3841 iscsi_set_param(cls_conn
, ISCSI_PARAM_TARGET_NAME
,
3842 (char *)fw_ddb_entry
->iscsi_name
, buflen
);
3843 iscsi_set_param(cls_conn
, ISCSI_PARAM_INITIATOR_NAME
,
3844 (char *)ha
->name_string
, buflen
);
3846 if (ddb_entry
->chap_tbl_idx
!= INVALID_ENTRY
) {
3847 if (!qla4xxx_get_uni_chap_at_index(ha
, chap_tbl
.name
,
3849 ddb_entry
->chap_tbl_idx
)) {
3850 iscsi_set_param(cls_conn
, ISCSI_PARAM_USERNAME
,
3851 (char *)chap_tbl
.name
,
3852 strlen((char *)chap_tbl
.name
));
3853 iscsi_set_param(cls_conn
, ISCSI_PARAM_PASSWORD
,
3854 (char *)chap_tbl
.secret
,
3855 chap_tbl
.secret_len
);
3860 void qla4xxx_update_session_conn_fwddb_param(struct scsi_qla_host
*ha
,
3861 struct ddb_entry
*ddb_entry
)
3863 struct iscsi_cls_session
*cls_sess
;
3864 struct iscsi_cls_conn
*cls_conn
;
3866 dma_addr_t fw_ddb_entry_dma
;
3867 struct dev_db_entry
*fw_ddb_entry
;
3869 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
3870 &fw_ddb_entry_dma
, GFP_KERNEL
);
3871 if (!fw_ddb_entry
) {
3872 ql4_printk(KERN_ERR
, ha
,
3873 "%s: Unable to allocate dma buffer\n", __func__
);
3874 goto exit_session_conn_fwddb_param
;
3877 if (qla4xxx_get_fwddb_entry(ha
, ddb_entry
->fw_ddb_index
, fw_ddb_entry
,
3878 fw_ddb_entry_dma
, NULL
, NULL
, &ddb_state
,
3879 NULL
, NULL
, NULL
) == QLA_ERROR
) {
3880 DEBUG2(ql4_printk(KERN_ERR
, ha
, "scsi%ld: %s: failed "
3881 "get_ddb_entry for fw_ddb_index %d\n",
3882 ha
->host_no
, __func__
,
3883 ddb_entry
->fw_ddb_index
));
3884 goto exit_session_conn_fwddb_param
;
3887 cls_sess
= ddb_entry
->sess
;
3889 cls_conn
= ddb_entry
->conn
;
3892 qla4xxx_copy_fwddb_param(ha
, fw_ddb_entry
, cls_sess
, cls_conn
);
3894 exit_session_conn_fwddb_param
:
3896 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
3897 fw_ddb_entry
, fw_ddb_entry_dma
);
3900 void qla4xxx_update_session_conn_param(struct scsi_qla_host
*ha
,
3901 struct ddb_entry
*ddb_entry
)
3903 struct iscsi_cls_session
*cls_sess
;
3904 struct iscsi_cls_conn
*cls_conn
;
3905 struct iscsi_session
*sess
;
3906 struct iscsi_conn
*conn
;
3908 dma_addr_t fw_ddb_entry_dma
;
3909 struct dev_db_entry
*fw_ddb_entry
;
3911 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
3912 &fw_ddb_entry_dma
, GFP_KERNEL
);
3913 if (!fw_ddb_entry
) {
3914 ql4_printk(KERN_ERR
, ha
,
3915 "%s: Unable to allocate dma buffer\n", __func__
);
3916 goto exit_session_conn_param
;
3919 if (qla4xxx_get_fwddb_entry(ha
, ddb_entry
->fw_ddb_index
, fw_ddb_entry
,
3920 fw_ddb_entry_dma
, NULL
, NULL
, &ddb_state
,
3921 NULL
, NULL
, NULL
) == QLA_ERROR
) {
3922 DEBUG2(ql4_printk(KERN_ERR
, ha
, "scsi%ld: %s: failed "
3923 "get_ddb_entry for fw_ddb_index %d\n",
3924 ha
->host_no
, __func__
,
3925 ddb_entry
->fw_ddb_index
));
3926 goto exit_session_conn_param
;
3929 cls_sess
= ddb_entry
->sess
;
3930 sess
= cls_sess
->dd_data
;
3932 cls_conn
= ddb_entry
->conn
;
3933 conn
= cls_conn
->dd_data
;
3935 /* Update timers after login */
3936 ddb_entry
->default_relogin_timeout
=
3937 (le16_to_cpu(fw_ddb_entry
->def_timeout
) > LOGIN_TOV
) &&
3938 (le16_to_cpu(fw_ddb_entry
->def_timeout
) < LOGIN_TOV
* 10) ?
3939 le16_to_cpu(fw_ddb_entry
->def_timeout
) : LOGIN_TOV
;
3940 ddb_entry
->default_time2wait
=
3941 le16_to_cpu(fw_ddb_entry
->iscsi_def_time2wait
);
3944 ddb_entry
->chap_tbl_idx
= le16_to_cpu(fw_ddb_entry
->chap_tbl_idx
);
3945 qla4xxx_copy_to_sess_conn_params(conn
, sess
, fw_ddb_entry
);
3947 memcpy(sess
->initiatorname
, ha
->name_string
,
3948 min(sizeof(ha
->name_string
), sizeof(sess
->initiatorname
)));
3950 exit_session_conn_param
:
3952 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
3953 fw_ddb_entry
, fw_ddb_entry_dma
);
3960 static void qla4xxx_start_timer(struct scsi_qla_host
*ha
, void *func
,
3961 unsigned long interval
)
3963 DEBUG(printk("scsi: %s: Starting timer thread for adapter %d\n",
3964 __func__
, ha
->host
->host_no
));
3965 init_timer(&ha
->timer
);
3966 ha
->timer
.expires
= jiffies
+ interval
* HZ
;
3967 ha
->timer
.data
= (unsigned long)ha
;
3968 ha
->timer
.function
= (void (*)(unsigned long))func
;
3969 add_timer(&ha
->timer
);
3970 ha
->timer_active
= 1;
3973 static void qla4xxx_stop_timer(struct scsi_qla_host
*ha
)
3975 del_timer_sync(&ha
->timer
);
3976 ha
->timer_active
= 0;
3980 * qla4xxx_mark_device_missing - blocks the session
3981 * @cls_session: Pointer to the session to be blocked
3982 * @ddb_entry: Pointer to device database entry
3984 * This routine marks a device missing and close connection.
3986 void qla4xxx_mark_device_missing(struct iscsi_cls_session
*cls_session
)
3988 iscsi_block_session(cls_session
);
3992 * qla4xxx_mark_all_devices_missing - mark all devices as missing.
3993 * @ha: Pointer to host adapter structure.
3995 * This routine marks a device missing and resets the relogin retry count.
3997 void qla4xxx_mark_all_devices_missing(struct scsi_qla_host
*ha
)
3999 iscsi_host_for_each_session(ha
->host
, qla4xxx_mark_device_missing
);
4002 static struct srb
* qla4xxx_get_new_srb(struct scsi_qla_host
*ha
,
4003 struct ddb_entry
*ddb_entry
,
4004 struct scsi_cmnd
*cmd
)
4008 srb
= mempool_alloc(ha
->srb_mempool
, GFP_ATOMIC
);
4012 kref_init(&srb
->srb_ref
);
4014 srb
->ddb
= ddb_entry
;
4017 CMD_SP(cmd
) = (void *)srb
;
4022 static void qla4xxx_srb_free_dma(struct scsi_qla_host
*ha
, struct srb
*srb
)
4024 struct scsi_cmnd
*cmd
= srb
->cmd
;
4026 if (srb
->flags
& SRB_DMA_VALID
) {
4027 scsi_dma_unmap(cmd
);
4028 srb
->flags
&= ~SRB_DMA_VALID
;
4033 void qla4xxx_srb_compl(struct kref
*ref
)
4035 struct srb
*srb
= container_of(ref
, struct srb
, srb_ref
);
4036 struct scsi_cmnd
*cmd
= srb
->cmd
;
4037 struct scsi_qla_host
*ha
= srb
->ha
;
4039 qla4xxx_srb_free_dma(ha
, srb
);
4041 mempool_free(srb
, ha
->srb_mempool
);
4043 cmd
->scsi_done(cmd
);
4047 * qla4xxx_queuecommand - scsi layer issues scsi command to driver.
4049 * @cmd: Pointer to Linux's SCSI command structure
4052 * This routine is invoked by Linux to send a SCSI command to the driver.
4053 * The mid-level driver tries to ensure that queuecommand never gets
4054 * invoked concurrently with itself or the interrupt handler (although
4055 * the interrupt handler may call this routine as part of request-
4056 * completion handling). Unfortunely, it sometimes calls the scheduler
4057 * in interrupt context which is a big NO! NO!.
4059 static int qla4xxx_queuecommand(struct Scsi_Host
*host
, struct scsi_cmnd
*cmd
)
4061 struct scsi_qla_host
*ha
= to_qla_host(host
);
4062 struct ddb_entry
*ddb_entry
= cmd
->device
->hostdata
;
4063 struct iscsi_cls_session
*sess
= ddb_entry
->sess
;
4067 if (test_bit(AF_EEH_BUSY
, &ha
->flags
)) {
4068 if (test_bit(AF_PCI_CHANNEL_IO_PERM_FAILURE
, &ha
->flags
))
4069 cmd
->result
= DID_NO_CONNECT
<< 16;
4071 cmd
->result
= DID_REQUEUE
<< 16;
4072 goto qc_fail_command
;
4076 cmd
->result
= DID_IMM_RETRY
<< 16;
4077 goto qc_fail_command
;
4080 rval
= iscsi_session_chkready(sess
);
4083 goto qc_fail_command
;
4086 if (test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
) ||
4087 test_bit(DPC_RESET_ACTIVE
, &ha
->dpc_flags
) ||
4088 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
) ||
4089 test_bit(DPC_HA_UNRECOVERABLE
, &ha
->dpc_flags
) ||
4090 test_bit(DPC_HA_NEED_QUIESCENT
, &ha
->dpc_flags
) ||
4091 !test_bit(AF_ONLINE
, &ha
->flags
) ||
4092 !test_bit(AF_LINK_UP
, &ha
->flags
) ||
4093 test_bit(AF_LOOPBACK
, &ha
->flags
) ||
4094 test_bit(DPC_POST_IDC_ACK
, &ha
->dpc_flags
) ||
4095 test_bit(DPC_RESTORE_ACB
, &ha
->dpc_flags
) ||
4096 test_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
))
4099 srb
= qla4xxx_get_new_srb(ha
, ddb_entry
, cmd
);
4103 rval
= qla4xxx_send_command_to_isp(ha
, srb
);
4104 if (rval
!= QLA_SUCCESS
)
4105 goto qc_host_busy_free_sp
;
4109 qc_host_busy_free_sp
:
4110 qla4xxx_srb_free_dma(ha
, srb
);
4111 mempool_free(srb
, ha
->srb_mempool
);
4114 return SCSI_MLQUEUE_HOST_BUSY
;
4117 cmd
->scsi_done(cmd
);
4123 * qla4xxx_mem_free - frees memory allocated to adapter
4124 * @ha: Pointer to host adapter structure.
4126 * Frees memory previously allocated by qla4xxx_mem_alloc
4128 static void qla4xxx_mem_free(struct scsi_qla_host
*ha
)
4131 dma_free_coherent(&ha
->pdev
->dev
, ha
->queues_len
, ha
->queues
,
4140 ha
->request_ring
= NULL
;
4141 ha
->request_dma
= 0;
4142 ha
->response_ring
= NULL
;
4143 ha
->response_dma
= 0;
4144 ha
->shadow_regs
= NULL
;
4145 ha
->shadow_regs_dma
= 0;
4147 ha
->fw_dump_size
= 0;
4149 /* Free srb pool. */
4150 if (ha
->srb_mempool
)
4151 mempool_destroy(ha
->srb_mempool
);
4153 ha
->srb_mempool
= NULL
;
4155 if (ha
->chap_dma_pool
)
4156 dma_pool_destroy(ha
->chap_dma_pool
);
4159 vfree(ha
->chap_list
);
4160 ha
->chap_list
= NULL
;
4162 if (ha
->fw_ddb_dma_pool
)
4163 dma_pool_destroy(ha
->fw_ddb_dma_pool
);
4165 /* release io space registers */
4166 if (is_qla8022(ha
)) {
4169 (struct device_reg_82xx __iomem
*)ha
->nx_pcibase
);
4170 } else if (is_qla8032(ha
) || is_qla8042(ha
)) {
4173 (struct device_reg_83xx __iomem
*)ha
->nx_pcibase
);
4174 } else if (ha
->reg
) {
4178 if (ha
->reset_tmplt
.buff
)
4179 vfree(ha
->reset_tmplt
.buff
);
4181 pci_release_regions(ha
->pdev
);
4185 * qla4xxx_mem_alloc - allocates memory for use by adapter.
4186 * @ha: Pointer to host adapter structure
4188 * Allocates DMA memory for request and response queues. Also allocates memory
4191 static int qla4xxx_mem_alloc(struct scsi_qla_host
*ha
)
4193 unsigned long align
;
4195 /* Allocate contiguous block of DMA memory for queues. */
4196 ha
->queues_len
= ((REQUEST_QUEUE_DEPTH
* QUEUE_SIZE
) +
4197 (RESPONSE_QUEUE_DEPTH
* QUEUE_SIZE
) +
4198 sizeof(struct shadow_regs
) +
4200 (PAGE_SIZE
- 1)) & ~(PAGE_SIZE
- 1);
4201 ha
->queues
= dma_alloc_coherent(&ha
->pdev
->dev
, ha
->queues_len
,
4202 &ha
->queues_dma
, GFP_KERNEL
);
4203 if (ha
->queues
== NULL
) {
4204 ql4_printk(KERN_WARNING
, ha
,
4205 "Memory Allocation failed - queues.\n");
4207 goto mem_alloc_error_exit
;
4209 memset(ha
->queues
, 0, ha
->queues_len
);
4212 * As per RISC alignment requirements -- the bus-address must be a
4213 * multiple of the request-ring size (in bytes).
4216 if ((unsigned long)ha
->queues_dma
& (MEM_ALIGN_VALUE
- 1))
4217 align
= MEM_ALIGN_VALUE
- ((unsigned long)ha
->queues_dma
&
4218 (MEM_ALIGN_VALUE
- 1));
4220 /* Update request and response queue pointers. */
4221 ha
->request_dma
= ha
->queues_dma
+ align
;
4222 ha
->request_ring
= (struct queue_entry
*) (ha
->queues
+ align
);
4223 ha
->response_dma
= ha
->queues_dma
+ align
+
4224 (REQUEST_QUEUE_DEPTH
* QUEUE_SIZE
);
4225 ha
->response_ring
= (struct queue_entry
*) (ha
->queues
+ align
+
4226 (REQUEST_QUEUE_DEPTH
*
4228 ha
->shadow_regs_dma
= ha
->queues_dma
+ align
+
4229 (REQUEST_QUEUE_DEPTH
* QUEUE_SIZE
) +
4230 (RESPONSE_QUEUE_DEPTH
* QUEUE_SIZE
);
4231 ha
->shadow_regs
= (struct shadow_regs
*) (ha
->queues
+ align
+
4232 (REQUEST_QUEUE_DEPTH
*
4234 (RESPONSE_QUEUE_DEPTH
*
4237 /* Allocate memory for srb pool. */
4238 ha
->srb_mempool
= mempool_create(SRB_MIN_REQ
, mempool_alloc_slab
,
4239 mempool_free_slab
, srb_cachep
);
4240 if (ha
->srb_mempool
== NULL
) {
4241 ql4_printk(KERN_WARNING
, ha
,
4242 "Memory Allocation failed - SRB Pool.\n");
4244 goto mem_alloc_error_exit
;
4247 ha
->chap_dma_pool
= dma_pool_create("ql4_chap", &ha
->pdev
->dev
,
4248 CHAP_DMA_BLOCK_SIZE
, 8, 0);
4250 if (ha
->chap_dma_pool
== NULL
) {
4251 ql4_printk(KERN_WARNING
, ha
,
4252 "%s: chap_dma_pool allocation failed..\n", __func__
);
4253 goto mem_alloc_error_exit
;
4256 ha
->fw_ddb_dma_pool
= dma_pool_create("ql4_fw_ddb", &ha
->pdev
->dev
,
4257 DDB_DMA_BLOCK_SIZE
, 8, 0);
4259 if (ha
->fw_ddb_dma_pool
== NULL
) {
4260 ql4_printk(KERN_WARNING
, ha
,
4261 "%s: fw_ddb_dma_pool allocation failed..\n",
4263 goto mem_alloc_error_exit
;
4268 mem_alloc_error_exit
:
4269 qla4xxx_mem_free(ha
);
4274 * qla4_8xxx_check_temp - Check the ISP82XX temperature.
4275 * @ha: adapter block pointer.
4277 * Note: The caller should not hold the idc lock.
4279 static int qla4_8xxx_check_temp(struct scsi_qla_host
*ha
)
4281 uint32_t temp
, temp_state
, temp_val
;
4282 int status
= QLA_SUCCESS
;
4284 temp
= qla4_8xxx_rd_direct(ha
, QLA8XXX_CRB_TEMP_STATE
);
4286 temp_state
= qla82xx_get_temp_state(temp
);
4287 temp_val
= qla82xx_get_temp_val(temp
);
4289 if (temp_state
== QLA82XX_TEMP_PANIC
) {
4290 ql4_printk(KERN_WARNING
, ha
, "Device temperature %d degrees C"
4291 " exceeds maximum allowed. Hardware has been shut"
4292 " down.\n", temp_val
);
4294 } else if (temp_state
== QLA82XX_TEMP_WARN
) {
4295 if (ha
->temperature
== QLA82XX_TEMP_NORMAL
)
4296 ql4_printk(KERN_WARNING
, ha
, "Device temperature %d"
4297 " degrees C exceeds operating range."
4298 " Immediate action needed.\n", temp_val
);
4300 if (ha
->temperature
== QLA82XX_TEMP_WARN
)
4301 ql4_printk(KERN_INFO
, ha
, "Device temperature is"
4302 " now %d degrees C in normal range.\n",
4305 ha
->temperature
= temp_state
;
4310 * qla4_8xxx_check_fw_alive - Check firmware health
4311 * @ha: Pointer to host adapter structure.
4313 * Context: Interrupt
4315 static int qla4_8xxx_check_fw_alive(struct scsi_qla_host
*ha
)
4317 uint32_t fw_heartbeat_counter
;
4318 int status
= QLA_SUCCESS
;
4320 fw_heartbeat_counter
= qla4_8xxx_rd_direct(ha
,
4321 QLA8XXX_PEG_ALIVE_COUNTER
);
4322 /* If PEG_ALIVE_COUNTER is 0xffffffff, AER/EEH is in progress, ignore */
4323 if (fw_heartbeat_counter
== 0xffffffff) {
4324 DEBUG2(printk(KERN_WARNING
"scsi%ld: %s: Device in frozen "
4325 "state, QLA82XX_PEG_ALIVE_COUNTER is 0xffffffff\n",
4326 ha
->host_no
, __func__
));
4330 if (ha
->fw_heartbeat_counter
== fw_heartbeat_counter
) {
4331 ha
->seconds_since_last_heartbeat
++;
4332 /* FW not alive after 2 seconds */
4333 if (ha
->seconds_since_last_heartbeat
== 2) {
4334 ha
->seconds_since_last_heartbeat
= 0;
4335 qla4_8xxx_dump_peg_reg(ha
);
4339 ha
->seconds_since_last_heartbeat
= 0;
4341 ha
->fw_heartbeat_counter
= fw_heartbeat_counter
;
4345 static void qla4_8xxx_process_fw_error(struct scsi_qla_host
*ha
)
4347 uint32_t halt_status
;
4348 int halt_status_unrecoverable
= 0;
4350 halt_status
= qla4_8xxx_rd_direct(ha
, QLA8XXX_PEG_HALT_STATUS1
);
4352 if (is_qla8022(ha
)) {
4353 ql4_printk(KERN_INFO
, ha
, "%s: disabling pause transmit on port 0 & 1.\n",
4355 qla4_82xx_wr_32(ha
, QLA82XX_CRB_NIU
+ 0x98,
4356 CRB_NIU_XG_PAUSE_CTL_P0
|
4357 CRB_NIU_XG_PAUSE_CTL_P1
);
4359 if (QLA82XX_FWERROR_CODE(halt_status
) == 0x67)
4360 ql4_printk(KERN_ERR
, ha
, "%s: Firmware aborted with error code 0x00006700. Device is being reset\n",
4362 if (halt_status
& HALT_STATUS_UNRECOVERABLE
)
4363 halt_status_unrecoverable
= 1;
4364 } else if (is_qla8032(ha
) || is_qla8042(ha
)) {
4365 if (halt_status
& QLA83XX_HALT_STATUS_FW_RESET
)
4366 ql4_printk(KERN_ERR
, ha
, "%s: Firmware error detected device is being reset\n",
4368 else if (halt_status
& QLA83XX_HALT_STATUS_UNRECOVERABLE
)
4369 halt_status_unrecoverable
= 1;
4373 * Since we cannot change dev_state in interrupt context,
4374 * set appropriate DPC flag then wakeup DPC
4376 if (halt_status_unrecoverable
) {
4377 set_bit(DPC_HA_UNRECOVERABLE
, &ha
->dpc_flags
);
4379 ql4_printk(KERN_INFO
, ha
, "%s: detect abort needed!\n",
4381 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
4383 qla4xxx_mailbox_premature_completion(ha
);
4384 qla4xxx_wake_dpc(ha
);
4388 * qla4_8xxx_watchdog - Poll dev state
4389 * @ha: Pointer to host adapter structure.
4391 * Context: Interrupt
4393 void qla4_8xxx_watchdog(struct scsi_qla_host
*ha
)
4398 if (is_qla8032(ha
) &&
4399 (qla4_83xx_is_detached(ha
) == QLA_SUCCESS
))
4400 WARN_ONCE(1, "%s: iSCSI function %d marked invisible\n",
4401 __func__
, ha
->func_num
);
4403 /* don't poll if reset is going on */
4404 if (!(test_bit(DPC_RESET_ACTIVE
, &ha
->dpc_flags
) ||
4405 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
) ||
4406 test_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
))) {
4407 dev_state
= qla4_8xxx_rd_direct(ha
, QLA8XXX_CRB_DEV_STATE
);
4409 if (qla4_8xxx_check_temp(ha
)) {
4410 if (is_qla8022(ha
)) {
4411 ql4_printk(KERN_INFO
, ha
, "disabling pause transmit on port 0 & 1.\n");
4412 qla4_82xx_wr_32(ha
, QLA82XX_CRB_NIU
+ 0x98,
4413 CRB_NIU_XG_PAUSE_CTL_P0
|
4414 CRB_NIU_XG_PAUSE_CTL_P1
);
4416 set_bit(DPC_HA_UNRECOVERABLE
, &ha
->dpc_flags
);
4417 qla4xxx_wake_dpc(ha
);
4418 } else if (dev_state
== QLA8XXX_DEV_NEED_RESET
&&
4419 !test_bit(DPC_RESET_HA
, &ha
->dpc_flags
)) {
4421 ql4_printk(KERN_INFO
, ha
, "%s: HW State: NEED RESET!\n",
4424 if (is_qla8032(ha
) || is_qla8042(ha
)) {
4425 idc_ctrl
= qla4_83xx_rd_reg(ha
,
4426 QLA83XX_IDC_DRV_CTRL
);
4427 if (!(idc_ctrl
& GRACEFUL_RESET_BIT1
)) {
4428 ql4_printk(KERN_INFO
, ha
, "%s: Graceful reset bit is not set\n",
4430 qla4xxx_mailbox_premature_completion(
4435 if ((is_qla8032(ha
) || is_qla8042(ha
)) ||
4436 (is_qla8022(ha
) && !ql4xdontresethba
)) {
4437 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
4438 qla4xxx_wake_dpc(ha
);
4440 } else if (dev_state
== QLA8XXX_DEV_NEED_QUIESCENT
&&
4441 !test_bit(DPC_HA_NEED_QUIESCENT
, &ha
->dpc_flags
)) {
4442 ql4_printk(KERN_INFO
, ha
, "%s: HW State: NEED QUIES!\n",
4444 set_bit(DPC_HA_NEED_QUIESCENT
, &ha
->dpc_flags
);
4445 qla4xxx_wake_dpc(ha
);
4447 /* Check firmware health */
4448 if (qla4_8xxx_check_fw_alive(ha
))
4449 qla4_8xxx_process_fw_error(ha
);
4454 static void qla4xxx_check_relogin_flash_ddb(struct iscsi_cls_session
*cls_sess
)
4456 struct iscsi_session
*sess
;
4457 struct ddb_entry
*ddb_entry
;
4458 struct scsi_qla_host
*ha
;
4460 sess
= cls_sess
->dd_data
;
4461 ddb_entry
= sess
->dd_data
;
4464 if (!(ddb_entry
->ddb_type
== FLASH_DDB
))
4467 if (adapter_up(ha
) && !test_bit(DF_RELOGIN
, &ddb_entry
->flags
) &&
4468 !iscsi_is_session_online(cls_sess
)) {
4469 if (atomic_read(&ddb_entry
->retry_relogin_timer
) !=
4471 if (atomic_read(&ddb_entry
->retry_relogin_timer
) ==
4473 atomic_set(&ddb_entry
->retry_relogin_timer
,
4475 set_bit(DPC_RELOGIN_DEVICE
, &ha
->dpc_flags
);
4476 set_bit(DF_RELOGIN
, &ddb_entry
->flags
);
4477 DEBUG2(ql4_printk(KERN_INFO
, ha
,
4478 "%s: index [%d] login device\n",
4479 __func__
, ddb_entry
->fw_ddb_index
));
4481 atomic_dec(&ddb_entry
->retry_relogin_timer
);
4485 /* Wait for relogin to timeout */
4486 if (atomic_read(&ddb_entry
->relogin_timer
) &&
4487 (atomic_dec_and_test(&ddb_entry
->relogin_timer
) != 0)) {
4489 * If the relogin times out and the device is
4490 * still NOT ONLINE then try and relogin again.
4492 if (!iscsi_is_session_online(cls_sess
)) {
4493 /* Reset retry relogin timer */
4494 atomic_inc(&ddb_entry
->relogin_retry_count
);
4495 DEBUG2(ql4_printk(KERN_INFO
, ha
,
4496 "%s: index[%d] relogin timed out-retrying"
4497 " relogin (%d), retry (%d)\n", __func__
,
4498 ddb_entry
->fw_ddb_index
,
4499 atomic_read(&ddb_entry
->relogin_retry_count
),
4500 ddb_entry
->default_time2wait
+ 4));
4501 set_bit(DPC_RELOGIN_DEVICE
, &ha
->dpc_flags
);
4502 atomic_set(&ddb_entry
->retry_relogin_timer
,
4503 ddb_entry
->default_time2wait
+ 4);
4509 * qla4xxx_timer - checks every second for work to do.
4510 * @ha: Pointer to host adapter structure.
4512 static void qla4xxx_timer(struct scsi_qla_host
*ha
)
4517 iscsi_host_for_each_session(ha
->host
, qla4xxx_check_relogin_flash_ddb
);
4519 /* If we are in the middle of AER/EEH processing
4520 * skip any processing and reschedule the timer
4522 if (test_bit(AF_EEH_BUSY
, &ha
->flags
)) {
4523 mod_timer(&ha
->timer
, jiffies
+ HZ
);
4527 /* Hardware read to trigger an EEH error during mailbox waits. */
4528 if (!pci_channel_offline(ha
->pdev
))
4529 pci_read_config_word(ha
->pdev
, PCI_VENDOR_ID
, &w
);
4532 qla4_8xxx_watchdog(ha
);
4534 if (is_qla40XX(ha
)) {
4535 /* Check for heartbeat interval. */
4536 if (ha
->firmware_options
& FWOPT_HEARTBEAT_ENABLE
&&
4537 ha
->heartbeat_interval
!= 0) {
4538 ha
->seconds_since_last_heartbeat
++;
4539 if (ha
->seconds_since_last_heartbeat
>
4540 ha
->heartbeat_interval
+ 2)
4541 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
4545 /* Process any deferred work. */
4546 if (!list_empty(&ha
->work_list
))
4549 /* Wakeup the dpc routine for this adapter, if needed. */
4551 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
) ||
4552 test_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
) ||
4553 test_bit(DPC_RELOGIN_DEVICE
, &ha
->dpc_flags
) ||
4554 test_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
) ||
4555 test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
) ||
4556 test_bit(DPC_GET_DHCP_IP_ADDR
, &ha
->dpc_flags
) ||
4557 test_bit(DPC_LINK_CHANGED
, &ha
->dpc_flags
) ||
4558 test_bit(DPC_HA_UNRECOVERABLE
, &ha
->dpc_flags
) ||
4559 test_bit(DPC_HA_NEED_QUIESCENT
, &ha
->dpc_flags
) ||
4560 test_bit(DPC_SYSFS_DDB_EXPORT
, &ha
->dpc_flags
) ||
4561 test_bit(DPC_AEN
, &ha
->dpc_flags
)) {
4562 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine"
4563 " - dpc flags = 0x%lx\n",
4564 ha
->host_no
, __func__
, ha
->dpc_flags
));
4565 qla4xxx_wake_dpc(ha
);
4568 /* Reschedule timer thread to call us back in one second */
4569 mod_timer(&ha
->timer
, jiffies
+ HZ
);
4571 DEBUG2(ha
->seconds_since_last_intr
++);
4575 * qla4xxx_cmd_wait - waits for all outstanding commands to complete
4576 * @ha: Pointer to host adapter structure.
4578 * This routine stalls the driver until all outstanding commands are returned.
4579 * Caller must release the Hardware Lock prior to calling this routine.
4581 static int qla4xxx_cmd_wait(struct scsi_qla_host
*ha
)
4584 unsigned long flags
;
4585 struct scsi_cmnd
*cmd
;
4586 unsigned long wtime
;
4590 wtmo
= WAIT_CMD_TOV
;
4592 wtmo
= ha
->nx_reset_timeout
/ 2;
4594 wtime
= jiffies
+ (wtmo
* HZ
);
4596 DEBUG2(ql4_printk(KERN_INFO
, ha
,
4597 "Wait up to %u seconds for cmds to complete\n",
4600 while (!time_after_eq(jiffies
, wtime
)) {
4601 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4602 /* Find a command that hasn't completed. */
4603 for (index
= 0; index
< ha
->host
->can_queue
; index
++) {
4604 cmd
= scsi_host_find_tag(ha
->host
, index
);
4606 * We cannot just check if the index is valid,
4607 * becase if we are run from the scsi eh, then
4608 * the scsi/block layer is going to prevent
4609 * the tag from being released.
4611 if (cmd
!= NULL
&& CMD_SP(cmd
))
4614 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4616 /* If No Commands are pending, wait is complete */
4617 if (index
== ha
->host
->can_queue
)
4622 /* If we timed out on waiting for commands to come back
4627 int qla4xxx_hw_reset(struct scsi_qla_host
*ha
)
4629 uint32_t ctrl_status
;
4630 unsigned long flags
= 0;
4632 DEBUG2(printk(KERN_ERR
"scsi%ld: %s\n", ha
->host_no
, __func__
));
4634 if (ql4xxx_lock_drvr_wait(ha
) != QLA_SUCCESS
)
4637 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4640 * If the SCSI Reset Interrupt bit is set, clear it.
4641 * Otherwise, the Soft Reset won't work.
4643 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
4644 if ((ctrl_status
& CSR_SCSI_RESET_INTR
) != 0)
4645 writel(set_rmask(CSR_SCSI_RESET_INTR
), &ha
->reg
->ctrl_status
);
4647 /* Issue Soft Reset */
4648 writel(set_rmask(CSR_SOFT_RESET
), &ha
->reg
->ctrl_status
);
4649 readl(&ha
->reg
->ctrl_status
);
4651 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4656 * qla4xxx_soft_reset - performs soft reset.
4657 * @ha: Pointer to host adapter structure.
4659 int qla4xxx_soft_reset(struct scsi_qla_host
*ha
)
4661 uint32_t max_wait_time
;
4662 unsigned long flags
= 0;
4664 uint32_t ctrl_status
;
4666 status
= qla4xxx_hw_reset(ha
);
4667 if (status
!= QLA_SUCCESS
)
4671 /* Wait until the Network Reset Intr bit is cleared */
4672 max_wait_time
= RESET_INTR_TOV
;
4674 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4675 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
4676 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4678 if ((ctrl_status
& CSR_NET_RESET_INTR
) == 0)
4682 } while ((--max_wait_time
));
4684 if ((ctrl_status
& CSR_NET_RESET_INTR
) != 0) {
4685 DEBUG2(printk(KERN_WARNING
4686 "scsi%ld: Network Reset Intr not cleared by "
4687 "Network function, clearing it now!\n",
4689 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4690 writel(set_rmask(CSR_NET_RESET_INTR
), &ha
->reg
->ctrl_status
);
4691 readl(&ha
->reg
->ctrl_status
);
4692 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4695 /* Wait until the firmware tells us the Soft Reset is done */
4696 max_wait_time
= SOFT_RESET_TOV
;
4698 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4699 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
4700 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4702 if ((ctrl_status
& CSR_SOFT_RESET
) == 0) {
4703 status
= QLA_SUCCESS
;
4708 } while ((--max_wait_time
));
4711 * Also, make sure that the SCSI Reset Interrupt bit has been cleared
4712 * after the soft reset has taken place.
4714 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4715 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
4716 if ((ctrl_status
& CSR_SCSI_RESET_INTR
) != 0) {
4717 writel(set_rmask(CSR_SCSI_RESET_INTR
), &ha
->reg
->ctrl_status
);
4718 readl(&ha
->reg
->ctrl_status
);
4720 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4722 /* If soft reset fails then most probably the bios on other
4723 * function is also enabled.
4724 * Since the initialization is sequential the other fn
4725 * wont be able to acknowledge the soft reset.
4726 * Issue a force soft reset to workaround this scenario.
4728 if (max_wait_time
== 0) {
4729 /* Issue Force Soft Reset */
4730 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4731 writel(set_rmask(CSR_FORCE_SOFT_RESET
), &ha
->reg
->ctrl_status
);
4732 readl(&ha
->reg
->ctrl_status
);
4733 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4734 /* Wait until the firmware tells us the Soft Reset is done */
4735 max_wait_time
= SOFT_RESET_TOV
;
4737 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4738 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
4739 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4741 if ((ctrl_status
& CSR_FORCE_SOFT_RESET
) == 0) {
4742 status
= QLA_SUCCESS
;
4747 } while ((--max_wait_time
));
4754 * qla4xxx_abort_active_cmds - returns all outstanding i/o requests to O.S.
4755 * @ha: Pointer to host adapter structure.
4756 * @res: returned scsi status
4758 * This routine is called just prior to a HARD RESET to return all
4759 * outstanding commands back to the Operating System.
4760 * Caller should make sure that the following locks are released
4761 * before this calling routine: Hardware lock, and io_request_lock.
4763 static void qla4xxx_abort_active_cmds(struct scsi_qla_host
*ha
, int res
)
4767 unsigned long flags
;
4769 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4770 for (i
= 0; i
< ha
->host
->can_queue
; i
++) {
4771 srb
= qla4xxx_del_from_active_array(ha
, i
);
4773 srb
->cmd
->result
= res
;
4774 kref_put(&srb
->srb_ref
, qla4xxx_srb_compl
);
4777 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4780 void qla4xxx_dead_adapter_cleanup(struct scsi_qla_host
*ha
)
4782 clear_bit(AF_ONLINE
, &ha
->flags
);
4784 /* Disable the board */
4785 ql4_printk(KERN_INFO
, ha
, "Disabling the board\n");
4787 qla4xxx_abort_active_cmds(ha
, DID_NO_CONNECT
<< 16);
4788 qla4xxx_mark_all_devices_missing(ha
);
4789 clear_bit(AF_INIT_DONE
, &ha
->flags
);
4792 static void qla4xxx_fail_session(struct iscsi_cls_session
*cls_session
)
4794 struct iscsi_session
*sess
;
4795 struct ddb_entry
*ddb_entry
;
4797 sess
= cls_session
->dd_data
;
4798 ddb_entry
= sess
->dd_data
;
4799 ddb_entry
->fw_ddb_device_state
= DDB_DS_SESSION_FAILED
;
4801 if (ddb_entry
->ddb_type
== FLASH_DDB
)
4802 iscsi_block_session(ddb_entry
->sess
);
4804 iscsi_session_failure(cls_session
->dd_data
,
4805 ISCSI_ERR_CONN_FAILED
);
4809 * qla4xxx_recover_adapter - recovers adapter after a fatal error
4810 * @ha: Pointer to host adapter structure.
4812 static int qla4xxx_recover_adapter(struct scsi_qla_host
*ha
)
4814 int status
= QLA_ERROR
;
4815 uint8_t reset_chip
= 0;
4819 /* Stall incoming I/O until we are done */
4820 scsi_block_requests(ha
->host
);
4821 clear_bit(AF_ONLINE
, &ha
->flags
);
4822 clear_bit(AF_LINK_UP
, &ha
->flags
);
4824 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: adapter OFFLINE\n", __func__
));
4826 set_bit(DPC_RESET_ACTIVE
, &ha
->dpc_flags
);
4828 if ((is_qla8032(ha
) || is_qla8042(ha
)) &&
4829 !test_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
)) {
4830 ql4_printk(KERN_INFO
, ha
, "%s: disabling pause transmit on port 0 & 1.\n",
4832 /* disable pause frame for ISP83xx */
4833 qla4_83xx_disable_pause(ha
);
4836 iscsi_host_for_each_session(ha
->host
, qla4xxx_fail_session
);
4838 if (test_bit(DPC_RESET_HA
, &ha
->dpc_flags
))
4841 /* For the DPC_RESET_HA_INTR case (ISP-4xxx specific)
4842 * do not reset adapter, jump to initialize_adapter */
4843 if (test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
)) {
4844 status
= QLA_SUCCESS
;
4845 goto recover_ha_init_adapter
;
4848 /* For the ISP-8xxx adapter, issue a stop_firmware if invoked
4849 * from eh_host_reset or ioctl module */
4850 if (is_qla80XX(ha
) && !reset_chip
&&
4851 test_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
)) {
4853 DEBUG2(ql4_printk(KERN_INFO
, ha
,
4854 "scsi%ld: %s - Performing stop_firmware...\n",
4855 ha
->host_no
, __func__
));
4856 status
= ha
->isp_ops
->reset_firmware(ha
);
4857 if (status
== QLA_SUCCESS
) {
4858 ha
->isp_ops
->disable_intrs(ha
);
4859 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
4860 qla4xxx_abort_active_cmds(ha
, DID_RESET
<< 16);
4862 /* If the stop_firmware fails then
4863 * reset the entire chip */
4865 clear_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
);
4866 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
4870 /* Issue full chip reset if recovering from a catastrophic error,
4871 * or if stop_firmware fails for ISP-8xxx.
4872 * This is the default case for ISP-4xxx */
4873 if (is_qla40XX(ha
) || reset_chip
) {
4877 /* Check if 8XXX firmware is alive or not
4878 * We may have arrived here from NEED_RESET
4880 if (test_bit(AF_FW_RECOVERY
, &ha
->flags
))
4883 wait
= jiffies
+ (FW_ALIVE_WAIT_TOV
* HZ
);
4884 while (time_before(jiffies
, wait
)) {
4885 if (qla4_8xxx_check_fw_alive(ha
)) {
4886 qla4xxx_mailbox_premature_completion(ha
);
4890 set_current_state(TASK_UNINTERRUPTIBLE
);
4891 schedule_timeout(HZ
);
4894 if (!test_bit(AF_FW_RECOVERY
, &ha
->flags
))
4895 qla4xxx_cmd_wait(ha
);
4897 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
4898 DEBUG2(ql4_printk(KERN_INFO
, ha
,
4899 "scsi%ld: %s - Performing chip reset..\n",
4900 ha
->host_no
, __func__
));
4901 status
= ha
->isp_ops
->reset_chip(ha
);
4902 qla4xxx_abort_active_cmds(ha
, DID_RESET
<< 16);
4905 /* Flush any pending ddb changed AENs */
4906 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
4908 recover_ha_init_adapter
:
4909 /* Upon successful firmware/chip reset, re-initialize the adapter */
4910 if (status
== QLA_SUCCESS
) {
4911 /* For ISP-4xxx, force function 1 to always initialize
4912 * before function 3 to prevent both funcions from
4913 * stepping on top of the other */
4914 if (is_qla40XX(ha
) && (ha
->mac_index
== 3))
4917 /* NOTE: AF_ONLINE flag set upon successful completion of
4918 * qla4xxx_initialize_adapter */
4919 status
= qla4xxx_initialize_adapter(ha
, RESET_ADAPTER
);
4920 if (is_qla80XX(ha
) && (status
== QLA_ERROR
)) {
4921 status
= qla4_8xxx_check_init_adapter_retry(ha
);
4922 if (status
== QLA_ERROR
) {
4923 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: Don't retry recover adapter\n",
4924 ha
->host_no
, __func__
);
4925 qla4xxx_dead_adapter_cleanup(ha
);
4926 clear_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
4927 clear_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
4928 clear_bit(DPC_RESET_HA_FW_CONTEXT
,
4935 /* Retry failed adapter initialization, if necessary
4936 * Do not retry initialize_adapter for RESET_HA_INTR (ISP-4xxx specific)
4937 * case to prevent ping-pong resets between functions */
4938 if (!test_bit(AF_ONLINE
, &ha
->flags
) &&
4939 !test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
)) {
4940 /* Adapter initialization failed, see if we can retry
4942 * Since we don't want to block the DPC for too long
4943 * with multiple resets in the same thread,
4944 * utilize DPC to retry */
4945 if (is_qla80XX(ha
)) {
4946 ha
->isp_ops
->idc_lock(ha
);
4947 dev_state
= qla4_8xxx_rd_direct(ha
,
4948 QLA8XXX_CRB_DEV_STATE
);
4949 ha
->isp_ops
->idc_unlock(ha
);
4950 if (dev_state
== QLA8XXX_DEV_FAILED
) {
4951 ql4_printk(KERN_INFO
, ha
, "%s: don't retry "
4952 "recover adapter. H/W is in Failed "
4953 "state\n", __func__
);
4954 qla4xxx_dead_adapter_cleanup(ha
);
4955 clear_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
4956 clear_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
4957 clear_bit(DPC_RESET_HA_FW_CONTEXT
,
4965 if (!test_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
)) {
4966 ha
->retry_reset_ha_cnt
= MAX_RESET_HA_RETRIES
;
4967 DEBUG2(printk("scsi%ld: recover adapter - retrying "
4968 "(%d) more times\n", ha
->host_no
,
4969 ha
->retry_reset_ha_cnt
));
4970 set_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
4973 if (ha
->retry_reset_ha_cnt
> 0) {
4974 /* Schedule another Reset HA--DPC will retry */
4975 ha
->retry_reset_ha_cnt
--;
4976 DEBUG2(printk("scsi%ld: recover adapter - "
4977 "retry remaining %d\n",
4979 ha
->retry_reset_ha_cnt
));
4983 if (ha
->retry_reset_ha_cnt
== 0) {
4984 /* Recover adapter retries have been exhausted.
4986 DEBUG2(printk("scsi%ld: recover adapter "
4987 "failed - board disabled\n",
4989 qla4xxx_dead_adapter_cleanup(ha
);
4990 clear_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
4991 clear_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
4992 clear_bit(DPC_RESET_HA_FW_CONTEXT
,
4998 clear_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
4999 clear_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
);
5000 clear_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
5004 ha
->adapter_error_count
++;
5006 if (test_bit(AF_ONLINE
, &ha
->flags
))
5007 ha
->isp_ops
->enable_intrs(ha
);
5009 scsi_unblock_requests(ha
->host
);
5011 clear_bit(DPC_RESET_ACTIVE
, &ha
->dpc_flags
);
5012 DEBUG2(printk("scsi%ld: recover adapter: %s\n", ha
->host_no
,
5013 status
== QLA_ERROR
? "FAILED" : "SUCCEEDED"));
5018 static void qla4xxx_relogin_devices(struct iscsi_cls_session
*cls_session
)
5020 struct iscsi_session
*sess
;
5021 struct ddb_entry
*ddb_entry
;
5022 struct scsi_qla_host
*ha
;
5024 sess
= cls_session
->dd_data
;
5025 ddb_entry
= sess
->dd_data
;
5027 if (!iscsi_is_session_online(cls_session
)) {
5028 if (ddb_entry
->fw_ddb_device_state
== DDB_DS_SESSION_ACTIVE
) {
5029 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: ddb[%d]"
5030 " unblock session\n", ha
->host_no
, __func__
,
5031 ddb_entry
->fw_ddb_index
);
5032 iscsi_unblock_session(ddb_entry
->sess
);
5034 /* Trigger relogin */
5035 if (ddb_entry
->ddb_type
== FLASH_DDB
) {
5036 if (!(test_bit(DF_RELOGIN
, &ddb_entry
->flags
) ||
5037 test_bit(DF_DISABLE_RELOGIN
,
5038 &ddb_entry
->flags
)))
5039 qla4xxx_arm_relogin_timer(ddb_entry
);
5041 iscsi_session_failure(cls_session
->dd_data
,
5042 ISCSI_ERR_CONN_FAILED
);
5047 int qla4xxx_unblock_flash_ddb(struct iscsi_cls_session
*cls_session
)
5049 struct iscsi_session
*sess
;
5050 struct ddb_entry
*ddb_entry
;
5051 struct scsi_qla_host
*ha
;
5053 sess
= cls_session
->dd_data
;
5054 ddb_entry
= sess
->dd_data
;
5056 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: ddb[%d]"
5057 " unblock session\n", ha
->host_no
, __func__
,
5058 ddb_entry
->fw_ddb_index
);
5060 iscsi_unblock_session(ddb_entry
->sess
);
5062 /* Start scan target */
5063 if (test_bit(AF_ONLINE
, &ha
->flags
)) {
5064 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: ddb[%d]"
5065 " start scan\n", ha
->host_no
, __func__
,
5066 ddb_entry
->fw_ddb_index
);
5067 scsi_queue_work(ha
->host
, &ddb_entry
->sess
->scan_work
);
5072 int qla4xxx_unblock_ddb(struct iscsi_cls_session
*cls_session
)
5074 struct iscsi_session
*sess
;
5075 struct ddb_entry
*ddb_entry
;
5076 struct scsi_qla_host
*ha
;
5077 int status
= QLA_SUCCESS
;
5079 sess
= cls_session
->dd_data
;
5080 ddb_entry
= sess
->dd_data
;
5082 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: ddb[%d]"
5083 " unblock user space session\n", ha
->host_no
, __func__
,
5084 ddb_entry
->fw_ddb_index
);
5086 if (!iscsi_is_session_online(cls_session
)) {
5087 iscsi_conn_start(ddb_entry
->conn
);
5088 iscsi_conn_login_event(ddb_entry
->conn
,
5089 ISCSI_CONN_STATE_LOGGED_IN
);
5091 ql4_printk(KERN_INFO
, ha
,
5092 "scsi%ld: %s: ddb[%d] session [%d] already logged in\n",
5093 ha
->host_no
, __func__
, ddb_entry
->fw_ddb_index
,
5101 static void qla4xxx_relogin_all_devices(struct scsi_qla_host
*ha
)
5103 iscsi_host_for_each_session(ha
->host
, qla4xxx_relogin_devices
);
5106 static void qla4xxx_relogin_flash_ddb(struct iscsi_cls_session
*cls_sess
)
5108 uint16_t relogin_timer
;
5109 struct iscsi_session
*sess
;
5110 struct ddb_entry
*ddb_entry
;
5111 struct scsi_qla_host
*ha
;
5113 sess
= cls_sess
->dd_data
;
5114 ddb_entry
= sess
->dd_data
;
5117 relogin_timer
= max(ddb_entry
->default_relogin_timeout
,
5118 (uint16_t)RELOGIN_TOV
);
5119 atomic_set(&ddb_entry
->relogin_timer
, relogin_timer
);
5121 DEBUG2(ql4_printk(KERN_INFO
, ha
,
5122 "scsi%ld: Relogin index [%d]. TOV=%d\n", ha
->host_no
,
5123 ddb_entry
->fw_ddb_index
, relogin_timer
));
5125 qla4xxx_login_flash_ddb(cls_sess
);
5128 static void qla4xxx_dpc_relogin(struct iscsi_cls_session
*cls_sess
)
5130 struct iscsi_session
*sess
;
5131 struct ddb_entry
*ddb_entry
;
5132 struct scsi_qla_host
*ha
;
5134 sess
= cls_sess
->dd_data
;
5135 ddb_entry
= sess
->dd_data
;
5138 if (!(ddb_entry
->ddb_type
== FLASH_DDB
))
5141 if (test_bit(DF_DISABLE_RELOGIN
, &ddb_entry
->flags
))
5144 if (test_and_clear_bit(DF_RELOGIN
, &ddb_entry
->flags
) &&
5145 !iscsi_is_session_online(cls_sess
)) {
5146 DEBUG2(ql4_printk(KERN_INFO
, ha
,
5147 "relogin issued\n"));
5148 qla4xxx_relogin_flash_ddb(cls_sess
);
5152 void qla4xxx_wake_dpc(struct scsi_qla_host
*ha
)
5155 queue_work(ha
->dpc_thread
, &ha
->dpc_work
);
5158 static struct qla4_work_evt
*
5159 qla4xxx_alloc_work(struct scsi_qla_host
*ha
, uint32_t data_size
,
5160 enum qla4_work_type type
)
5162 struct qla4_work_evt
*e
;
5163 uint32_t size
= sizeof(struct qla4_work_evt
) + data_size
;
5165 e
= kzalloc(size
, GFP_ATOMIC
);
5169 INIT_LIST_HEAD(&e
->list
);
5174 static void qla4xxx_post_work(struct scsi_qla_host
*ha
,
5175 struct qla4_work_evt
*e
)
5177 unsigned long flags
;
5179 spin_lock_irqsave(&ha
->work_lock
, flags
);
5180 list_add_tail(&e
->list
, &ha
->work_list
);
5181 spin_unlock_irqrestore(&ha
->work_lock
, flags
);
5182 qla4xxx_wake_dpc(ha
);
5185 int qla4xxx_post_aen_work(struct scsi_qla_host
*ha
,
5186 enum iscsi_host_event_code aen_code
,
5187 uint32_t data_size
, uint8_t *data
)
5189 struct qla4_work_evt
*e
;
5191 e
= qla4xxx_alloc_work(ha
, data_size
, QLA4_EVENT_AEN
);
5195 e
->u
.aen
.code
= aen_code
;
5196 e
->u
.aen
.data_size
= data_size
;
5197 memcpy(e
->u
.aen
.data
, data
, data_size
);
5199 qla4xxx_post_work(ha
, e
);
5204 int qla4xxx_post_ping_evt_work(struct scsi_qla_host
*ha
,
5205 uint32_t status
, uint32_t pid
,
5206 uint32_t data_size
, uint8_t *data
)
5208 struct qla4_work_evt
*e
;
5210 e
= qla4xxx_alloc_work(ha
, data_size
, QLA4_EVENT_PING_STATUS
);
5214 e
->u
.ping
.status
= status
;
5215 e
->u
.ping
.pid
= pid
;
5216 e
->u
.ping
.data_size
= data_size
;
5217 memcpy(e
->u
.ping
.data
, data
, data_size
);
5219 qla4xxx_post_work(ha
, e
);
5224 static void qla4xxx_do_work(struct scsi_qla_host
*ha
)
5226 struct qla4_work_evt
*e
, *tmp
;
5227 unsigned long flags
;
5230 spin_lock_irqsave(&ha
->work_lock
, flags
);
5231 list_splice_init(&ha
->work_list
, &work
);
5232 spin_unlock_irqrestore(&ha
->work_lock
, flags
);
5234 list_for_each_entry_safe(e
, tmp
, &work
, list
) {
5235 list_del_init(&e
->list
);
5238 case QLA4_EVENT_AEN
:
5239 iscsi_post_host_event(ha
->host_no
,
5240 &qla4xxx_iscsi_transport
,
5245 case QLA4_EVENT_PING_STATUS
:
5246 iscsi_ping_comp_event(ha
->host_no
,
5247 &qla4xxx_iscsi_transport
,
5250 e
->u
.ping
.data_size
,
5254 ql4_printk(KERN_WARNING
, ha
, "event type: 0x%x not "
5255 "supported", e
->type
);
5262 * qla4xxx_do_dpc - dpc routine
5263 * @data: in our case pointer to adapter structure
5265 * This routine is a task that is schedule by the interrupt handler
5266 * to perform the background processing for interrupts. We put it
5267 * on a task queue that is consumed whenever the scheduler runs; that's
5268 * so you can do anything (i.e. put the process to sleep etc). In fact,
5269 * the mid-level tries to sleep when it reaches the driver threshold
5270 * "host->can_queue". This can cause a panic if we were in our interrupt code.
5272 static void qla4xxx_do_dpc(struct work_struct
*work
)
5274 struct scsi_qla_host
*ha
=
5275 container_of(work
, struct scsi_qla_host
, dpc_work
);
5276 int status
= QLA_ERROR
;
5278 DEBUG2(ql4_printk(KERN_INFO
, ha
,
5279 "scsi%ld: %s: DPC handler waking up. flags = 0x%08lx, dpc_flags = 0x%08lx\n",
5280 ha
->host_no
, __func__
, ha
->flags
, ha
->dpc_flags
));
5282 /* Initialization not yet finished. Don't do anything yet. */
5283 if (!test_bit(AF_INIT_DONE
, &ha
->flags
))
5286 if (test_bit(AF_EEH_BUSY
, &ha
->flags
)) {
5287 DEBUG2(printk(KERN_INFO
"scsi%ld: %s: flags = %lx\n",
5288 ha
->host_no
, __func__
, ha
->flags
));
5292 /* post events to application */
5293 qla4xxx_do_work(ha
);
5295 if (is_qla80XX(ha
)) {
5296 if (test_bit(DPC_HA_UNRECOVERABLE
, &ha
->dpc_flags
)) {
5297 if (is_qla8032(ha
) || is_qla8042(ha
)) {
5298 ql4_printk(KERN_INFO
, ha
, "%s: disabling pause transmit on port 0 & 1.\n",
5300 /* disable pause frame for ISP83xx */
5301 qla4_83xx_disable_pause(ha
);
5304 ha
->isp_ops
->idc_lock(ha
);
5305 qla4_8xxx_wr_direct(ha
, QLA8XXX_CRB_DEV_STATE
,
5306 QLA8XXX_DEV_FAILED
);
5307 ha
->isp_ops
->idc_unlock(ha
);
5308 ql4_printk(KERN_INFO
, ha
, "HW State: FAILED\n");
5309 qla4_8xxx_device_state_handler(ha
);
5312 if (test_bit(DPC_POST_IDC_ACK
, &ha
->dpc_flags
)) {
5313 if (is_qla8042(ha
)) {
5314 if (ha
->idc_info
.info2
&
5315 ENABLE_INTERNAL_LOOPBACK
) {
5316 ql4_printk(KERN_INFO
, ha
, "%s: Disabling ACB\n",
5318 status
= qla4_84xx_config_acb(ha
,
5319 ACB_CONFIG_DISABLE
);
5320 if (status
!= QLA_SUCCESS
) {
5321 ql4_printk(KERN_INFO
, ha
, "%s: ACB config failed\n",
5326 qla4_83xx_post_idc_ack(ha
);
5327 clear_bit(DPC_POST_IDC_ACK
, &ha
->dpc_flags
);
5330 if (is_qla8042(ha
) &&
5331 test_bit(DPC_RESTORE_ACB
, &ha
->dpc_flags
)) {
5332 ql4_printk(KERN_INFO
, ha
, "%s: Restoring ACB\n",
5334 if (qla4_84xx_config_acb(ha
, ACB_CONFIG_SET
) !=
5336 ql4_printk(KERN_INFO
, ha
, "%s: ACB config failed ",
5339 clear_bit(DPC_RESTORE_ACB
, &ha
->dpc_flags
);
5342 if (test_and_clear_bit(DPC_HA_NEED_QUIESCENT
, &ha
->dpc_flags
)) {
5343 qla4_8xxx_need_qsnt_handler(ha
);
5347 if (!test_bit(DPC_RESET_ACTIVE
, &ha
->dpc_flags
) &&
5348 (test_bit(DPC_RESET_HA
, &ha
->dpc_flags
) ||
5349 test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
) ||
5350 test_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
))) {
5351 if ((is_qla8022(ha
) && ql4xdontresethba
) ||
5352 ((is_qla8032(ha
) || is_qla8042(ha
)) &&
5353 qla4_83xx_idc_dontreset(ha
))) {
5354 DEBUG2(printk("scsi%ld: %s: Don't Reset HBA\n",
5355 ha
->host_no
, __func__
));
5356 clear_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
5357 clear_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
);
5358 clear_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
);
5359 goto dpc_post_reset_ha
;
5361 if (test_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
) ||
5362 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
))
5363 qla4xxx_recover_adapter(ha
);
5365 if (test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
)) {
5366 uint8_t wait_time
= RESET_INTR_TOV
;
5368 while ((readw(&ha
->reg
->ctrl_status
) &
5369 (CSR_SOFT_RESET
| CSR_FORCE_SOFT_RESET
)) != 0) {
5370 if (--wait_time
== 0)
5375 DEBUG2(printk("scsi%ld: %s: SR|FSR "
5376 "bit not cleared-- resetting\n",
5377 ha
->host_no
, __func__
));
5378 qla4xxx_abort_active_cmds(ha
, DID_RESET
<< 16);
5379 if (ql4xxx_lock_drvr_wait(ha
) == QLA_SUCCESS
) {
5380 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
5381 status
= qla4xxx_recover_adapter(ha
);
5383 clear_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
);
5384 if (status
== QLA_SUCCESS
)
5385 ha
->isp_ops
->enable_intrs(ha
);
5390 /* ---- process AEN? --- */
5391 if (test_and_clear_bit(DPC_AEN
, &ha
->dpc_flags
))
5392 qla4xxx_process_aen(ha
, PROCESS_ALL_AENS
);
5394 /* ---- Get DHCP IP Address? --- */
5395 if (test_and_clear_bit(DPC_GET_DHCP_IP_ADDR
, &ha
->dpc_flags
))
5396 qla4xxx_get_dhcp_ip_address(ha
);
5398 /* ---- relogin device? --- */
5399 if (adapter_up(ha
) &&
5400 test_and_clear_bit(DPC_RELOGIN_DEVICE
, &ha
->dpc_flags
)) {
5401 iscsi_host_for_each_session(ha
->host
, qla4xxx_dpc_relogin
);
5404 /* ---- link change? --- */
5405 if (!test_bit(AF_LOOPBACK
, &ha
->flags
) &&
5406 test_and_clear_bit(DPC_LINK_CHANGED
, &ha
->dpc_flags
)) {
5407 if (!test_bit(AF_LINK_UP
, &ha
->flags
)) {
5408 /* ---- link down? --- */
5409 qla4xxx_mark_all_devices_missing(ha
);
5411 /* ---- link up? --- *
5412 * F/W will auto login to all devices ONLY ONCE after
5413 * link up during driver initialization and runtime
5414 * fatal error recovery. Therefore, the driver must
5415 * manually relogin to devices when recovering from
5416 * connection failures, logouts, expired KATO, etc. */
5417 if (test_and_clear_bit(AF_BUILD_DDB_LIST
, &ha
->flags
)) {
5418 qla4xxx_build_ddb_list(ha
, ha
->is_reset
);
5419 iscsi_host_for_each_session(ha
->host
,
5420 qla4xxx_login_flash_ddb
);
5422 qla4xxx_relogin_all_devices(ha
);
5425 if (test_and_clear_bit(DPC_SYSFS_DDB_EXPORT
, &ha
->dpc_flags
)) {
5426 if (qla4xxx_sysfs_ddb_export(ha
))
5427 ql4_printk(KERN_ERR
, ha
, "%s: Error exporting ddb to sysfs\n",
5433 * qla4xxx_free_adapter - release the adapter
5434 * @ha: pointer to adapter structure
5436 static void qla4xxx_free_adapter(struct scsi_qla_host
*ha
)
5438 qla4xxx_abort_active_cmds(ha
, DID_NO_CONNECT
<< 16);
5440 /* Turn-off interrupts on the card. */
5441 ha
->isp_ops
->disable_intrs(ha
);
5443 if (is_qla40XX(ha
)) {
5444 writel(set_rmask(CSR_SCSI_PROCESSOR_INTR
),
5445 &ha
->reg
->ctrl_status
);
5446 readl(&ha
->reg
->ctrl_status
);
5447 } else if (is_qla8022(ha
)) {
5448 writel(0, &ha
->qla4_82xx_reg
->host_int
);
5449 readl(&ha
->qla4_82xx_reg
->host_int
);
5450 } else if (is_qla8032(ha
) || is_qla8042(ha
)) {
5451 writel(0, &ha
->qla4_83xx_reg
->risc_intr
);
5452 readl(&ha
->qla4_83xx_reg
->risc_intr
);
5455 /* Remove timer thread, if present */
5456 if (ha
->timer_active
)
5457 qla4xxx_stop_timer(ha
);
5459 /* Kill the kernel thread for this host */
5461 destroy_workqueue(ha
->dpc_thread
);
5463 /* Kill the kernel thread for this host */
5465 destroy_workqueue(ha
->task_wq
);
5467 /* Put firmware in known state */
5468 ha
->isp_ops
->reset_firmware(ha
);
5470 if (is_qla80XX(ha
)) {
5471 ha
->isp_ops
->idc_lock(ha
);
5472 qla4_8xxx_clear_drv_active(ha
);
5473 ha
->isp_ops
->idc_unlock(ha
);
5476 /* Detach interrupts */
5477 qla4xxx_free_irqs(ha
);
5479 /* free extra memory */
5480 qla4xxx_mem_free(ha
);
5483 int qla4_8xxx_iospace_config(struct scsi_qla_host
*ha
)
5486 unsigned long mem_base
, mem_len
, db_base
, db_len
;
5487 struct pci_dev
*pdev
= ha
->pdev
;
5489 status
= pci_request_regions(pdev
, DRIVER_NAME
);
5492 "scsi(%ld) Failed to reserve PIO regions (%s) "
5493 "status=%d\n", ha
->host_no
, pci_name(pdev
), status
);
5494 goto iospace_error_exit
;
5497 DEBUG2(printk(KERN_INFO
"%s: revision-id=%d\n",
5498 __func__
, pdev
->revision
));
5499 ha
->revision_id
= pdev
->revision
;
5501 /* remap phys address */
5502 mem_base
= pci_resource_start(pdev
, 0); /* 0 is for BAR 0 */
5503 mem_len
= pci_resource_len(pdev
, 0);
5504 DEBUG2(printk(KERN_INFO
"%s: ioremap from %lx a size of %lx\n",
5505 __func__
, mem_base
, mem_len
));
5507 /* mapping of pcibase pointer */
5508 ha
->nx_pcibase
= (unsigned long)ioremap(mem_base
, mem_len
);
5509 if (!ha
->nx_pcibase
) {
5511 "cannot remap MMIO (%s), aborting\n", pci_name(pdev
));
5512 pci_release_regions(ha
->pdev
);
5513 goto iospace_error_exit
;
5516 /* Mapping of IO base pointer, door bell read and write pointer */
5518 /* mapping of IO base pointer */
5519 if (is_qla8022(ha
)) {
5520 ha
->qla4_82xx_reg
= (struct device_reg_82xx __iomem
*)
5521 ((uint8_t *)ha
->nx_pcibase
+ 0xbc000 +
5522 (ha
->pdev
->devfn
<< 11));
5523 ha
->nx_db_wr_ptr
= (ha
->pdev
->devfn
== 4 ? QLA82XX_CAM_RAM_DB1
:
5524 QLA82XX_CAM_RAM_DB2
);
5525 } else if (is_qla8032(ha
) || is_qla8042(ha
)) {
5526 ha
->qla4_83xx_reg
= (struct device_reg_83xx __iomem
*)
5527 ((uint8_t *)ha
->nx_pcibase
);
5530 db_base
= pci_resource_start(pdev
, 4); /* doorbell is on bar 4 */
5531 db_len
= pci_resource_len(pdev
, 4);
5539 * qla4xxx_iospace_config - maps registers
5540 * @ha: pointer to adapter structure
5542 * This routines maps HBA's registers from the pci address space
5543 * into the kernel virtual address space for memory mapped i/o.
5545 int qla4xxx_iospace_config(struct scsi_qla_host
*ha
)
5547 unsigned long pio
, pio_len
, pio_flags
;
5548 unsigned long mmio
, mmio_len
, mmio_flags
;
5550 pio
= pci_resource_start(ha
->pdev
, 0);
5551 pio_len
= pci_resource_len(ha
->pdev
, 0);
5552 pio_flags
= pci_resource_flags(ha
->pdev
, 0);
5553 if (pio_flags
& IORESOURCE_IO
) {
5554 if (pio_len
< MIN_IOBASE_LEN
) {
5555 ql4_printk(KERN_WARNING
, ha
,
5556 "Invalid PCI I/O region size\n");
5560 ql4_printk(KERN_WARNING
, ha
, "region #0 not a PIO resource\n");
5564 /* Use MMIO operations for all accesses. */
5565 mmio
= pci_resource_start(ha
->pdev
, 1);
5566 mmio_len
= pci_resource_len(ha
->pdev
, 1);
5567 mmio_flags
= pci_resource_flags(ha
->pdev
, 1);
5569 if (!(mmio_flags
& IORESOURCE_MEM
)) {
5570 ql4_printk(KERN_ERR
, ha
,
5571 "region #0 not an MMIO resource, aborting\n");
5573 goto iospace_error_exit
;
5576 if (mmio_len
< MIN_IOBASE_LEN
) {
5577 ql4_printk(KERN_ERR
, ha
,
5578 "Invalid PCI mem region size, aborting\n");
5579 goto iospace_error_exit
;
5582 if (pci_request_regions(ha
->pdev
, DRIVER_NAME
)) {
5583 ql4_printk(KERN_WARNING
, ha
,
5584 "Failed to reserve PIO/MMIO regions\n");
5586 goto iospace_error_exit
;
5589 ha
->pio_address
= pio
;
5590 ha
->pio_length
= pio_len
;
5591 ha
->reg
= ioremap(mmio
, MIN_IOBASE_LEN
);
5593 ql4_printk(KERN_ERR
, ha
,
5594 "cannot remap MMIO, aborting\n");
5596 goto iospace_error_exit
;
5605 static struct isp_operations qla4xxx_isp_ops
= {
5606 .iospace_config
= qla4xxx_iospace_config
,
5607 .pci_config
= qla4xxx_pci_config
,
5608 .disable_intrs
= qla4xxx_disable_intrs
,
5609 .enable_intrs
= qla4xxx_enable_intrs
,
5610 .start_firmware
= qla4xxx_start_firmware
,
5611 .intr_handler
= qla4xxx_intr_handler
,
5612 .interrupt_service_routine
= qla4xxx_interrupt_service_routine
,
5613 .reset_chip
= qla4xxx_soft_reset
,
5614 .reset_firmware
= qla4xxx_hw_reset
,
5615 .queue_iocb
= qla4xxx_queue_iocb
,
5616 .complete_iocb
= qla4xxx_complete_iocb
,
5617 .rd_shdw_req_q_out
= qla4xxx_rd_shdw_req_q_out
,
5618 .rd_shdw_rsp_q_in
= qla4xxx_rd_shdw_rsp_q_in
,
5619 .get_sys_info
= qla4xxx_get_sys_info
,
5620 .queue_mailbox_command
= qla4xxx_queue_mbox_cmd
,
5621 .process_mailbox_interrupt
= qla4xxx_process_mbox_intr
,
5624 static struct isp_operations qla4_82xx_isp_ops
= {
5625 .iospace_config
= qla4_8xxx_iospace_config
,
5626 .pci_config
= qla4_8xxx_pci_config
,
5627 .disable_intrs
= qla4_82xx_disable_intrs
,
5628 .enable_intrs
= qla4_82xx_enable_intrs
,
5629 .start_firmware
= qla4_8xxx_load_risc
,
5630 .restart_firmware
= qla4_82xx_try_start_fw
,
5631 .intr_handler
= qla4_82xx_intr_handler
,
5632 .interrupt_service_routine
= qla4_82xx_interrupt_service_routine
,
5633 .need_reset
= qla4_8xxx_need_reset
,
5634 .reset_chip
= qla4_82xx_isp_reset
,
5635 .reset_firmware
= qla4_8xxx_stop_firmware
,
5636 .queue_iocb
= qla4_82xx_queue_iocb
,
5637 .complete_iocb
= qla4_82xx_complete_iocb
,
5638 .rd_shdw_req_q_out
= qla4_82xx_rd_shdw_req_q_out
,
5639 .rd_shdw_rsp_q_in
= qla4_82xx_rd_shdw_rsp_q_in
,
5640 .get_sys_info
= qla4_8xxx_get_sys_info
,
5641 .rd_reg_direct
= qla4_82xx_rd_32
,
5642 .wr_reg_direct
= qla4_82xx_wr_32
,
5643 .rd_reg_indirect
= qla4_82xx_md_rd_32
,
5644 .wr_reg_indirect
= qla4_82xx_md_wr_32
,
5645 .idc_lock
= qla4_82xx_idc_lock
,
5646 .idc_unlock
= qla4_82xx_idc_unlock
,
5647 .rom_lock_recovery
= qla4_82xx_rom_lock_recovery
,
5648 .queue_mailbox_command
= qla4_82xx_queue_mbox_cmd
,
5649 .process_mailbox_interrupt
= qla4_82xx_process_mbox_intr
,
5652 static struct isp_operations qla4_83xx_isp_ops
= {
5653 .iospace_config
= qla4_8xxx_iospace_config
,
5654 .pci_config
= qla4_8xxx_pci_config
,
5655 .disable_intrs
= qla4_83xx_disable_intrs
,
5656 .enable_intrs
= qla4_83xx_enable_intrs
,
5657 .start_firmware
= qla4_8xxx_load_risc
,
5658 .restart_firmware
= qla4_83xx_start_firmware
,
5659 .intr_handler
= qla4_83xx_intr_handler
,
5660 .interrupt_service_routine
= qla4_83xx_interrupt_service_routine
,
5661 .need_reset
= qla4_8xxx_need_reset
,
5662 .reset_chip
= qla4_83xx_isp_reset
,
5663 .reset_firmware
= qla4_8xxx_stop_firmware
,
5664 .queue_iocb
= qla4_83xx_queue_iocb
,
5665 .complete_iocb
= qla4_83xx_complete_iocb
,
5666 .rd_shdw_req_q_out
= qla4xxx_rd_shdw_req_q_out
,
5667 .rd_shdw_rsp_q_in
= qla4xxx_rd_shdw_rsp_q_in
,
5668 .get_sys_info
= qla4_8xxx_get_sys_info
,
5669 .rd_reg_direct
= qla4_83xx_rd_reg
,
5670 .wr_reg_direct
= qla4_83xx_wr_reg
,
5671 .rd_reg_indirect
= qla4_83xx_rd_reg_indirect
,
5672 .wr_reg_indirect
= qla4_83xx_wr_reg_indirect
,
5673 .idc_lock
= qla4_83xx_drv_lock
,
5674 .idc_unlock
= qla4_83xx_drv_unlock
,
5675 .rom_lock_recovery
= qla4_83xx_rom_lock_recovery
,
5676 .queue_mailbox_command
= qla4_83xx_queue_mbox_cmd
,
5677 .process_mailbox_interrupt
= qla4_83xx_process_mbox_intr
,
5680 uint16_t qla4xxx_rd_shdw_req_q_out(struct scsi_qla_host
*ha
)
5682 return (uint16_t)le32_to_cpu(ha
->shadow_regs
->req_q_out
);
5685 uint16_t qla4_82xx_rd_shdw_req_q_out(struct scsi_qla_host
*ha
)
5687 return (uint16_t)le32_to_cpu(readl(&ha
->qla4_82xx_reg
->req_q_out
));
5690 uint16_t qla4xxx_rd_shdw_rsp_q_in(struct scsi_qla_host
*ha
)
5692 return (uint16_t)le32_to_cpu(ha
->shadow_regs
->rsp_q_in
);
5695 uint16_t qla4_82xx_rd_shdw_rsp_q_in(struct scsi_qla_host
*ha
)
5697 return (uint16_t)le32_to_cpu(readl(&ha
->qla4_82xx_reg
->rsp_q_in
));
5700 static ssize_t
qla4xxx_show_boot_eth_info(void *data
, int type
, char *buf
)
5702 struct scsi_qla_host
*ha
= data
;
5707 case ISCSI_BOOT_ETH_FLAGS
:
5708 rc
= sprintf(str
, "%d\n", SYSFS_FLAG_FW_SEL_BOOT
);
5710 case ISCSI_BOOT_ETH_INDEX
:
5711 rc
= sprintf(str
, "0\n");
5713 case ISCSI_BOOT_ETH_MAC
:
5714 rc
= sysfs_format_mac(str
, ha
->my_mac
,
5724 static umode_t
qla4xxx_eth_get_attr_visibility(void *data
, int type
)
5729 case ISCSI_BOOT_ETH_FLAGS
:
5730 case ISCSI_BOOT_ETH_MAC
:
5731 case ISCSI_BOOT_ETH_INDEX
:
5741 static ssize_t
qla4xxx_show_boot_ini_info(void *data
, int type
, char *buf
)
5743 struct scsi_qla_host
*ha
= data
;
5748 case ISCSI_BOOT_INI_INITIATOR_NAME
:
5749 rc
= sprintf(str
, "%s\n", ha
->name_string
);
5758 static umode_t
qla4xxx_ini_get_attr_visibility(void *data
, int type
)
5763 case ISCSI_BOOT_INI_INITIATOR_NAME
:
5774 qla4xxx_show_boot_tgt_info(struct ql4_boot_session_info
*boot_sess
, int type
,
5777 struct ql4_conn_info
*boot_conn
= &boot_sess
->conn_list
[0];
5782 case ISCSI_BOOT_TGT_NAME
:
5783 rc
= sprintf(buf
, "%s\n", (char *)&boot_sess
->target_name
);
5785 case ISCSI_BOOT_TGT_IP_ADDR
:
5786 if (boot_sess
->conn_list
[0].dest_ipaddr
.ip_type
== 0x1)
5787 rc
= sprintf(buf
, "%pI4\n",
5788 &boot_conn
->dest_ipaddr
.ip_address
);
5790 rc
= sprintf(str
, "%pI6\n",
5791 &boot_conn
->dest_ipaddr
.ip_address
);
5793 case ISCSI_BOOT_TGT_PORT
:
5794 rc
= sprintf(str
, "%d\n", boot_conn
->dest_port
);
5796 case ISCSI_BOOT_TGT_CHAP_NAME
:
5797 rc
= sprintf(str
, "%.*s\n",
5798 boot_conn
->chap
.target_chap_name_length
,
5799 (char *)&boot_conn
->chap
.target_chap_name
);
5801 case ISCSI_BOOT_TGT_CHAP_SECRET
:
5802 rc
= sprintf(str
, "%.*s\n",
5803 boot_conn
->chap
.target_secret_length
,
5804 (char *)&boot_conn
->chap
.target_secret
);
5806 case ISCSI_BOOT_TGT_REV_CHAP_NAME
:
5807 rc
= sprintf(str
, "%.*s\n",
5808 boot_conn
->chap
.intr_chap_name_length
,
5809 (char *)&boot_conn
->chap
.intr_chap_name
);
5811 case ISCSI_BOOT_TGT_REV_CHAP_SECRET
:
5812 rc
= sprintf(str
, "%.*s\n",
5813 boot_conn
->chap
.intr_secret_length
,
5814 (char *)&boot_conn
->chap
.intr_secret
);
5816 case ISCSI_BOOT_TGT_FLAGS
:
5817 rc
= sprintf(str
, "%d\n", SYSFS_FLAG_FW_SEL_BOOT
);
5819 case ISCSI_BOOT_TGT_NIC_ASSOC
:
5820 rc
= sprintf(str
, "0\n");
5829 static ssize_t
qla4xxx_show_boot_tgt_pri_info(void *data
, int type
, char *buf
)
5831 struct scsi_qla_host
*ha
= data
;
5832 struct ql4_boot_session_info
*boot_sess
= &(ha
->boot_tgt
.boot_pri_sess
);
5834 return qla4xxx_show_boot_tgt_info(boot_sess
, type
, buf
);
5837 static ssize_t
qla4xxx_show_boot_tgt_sec_info(void *data
, int type
, char *buf
)
5839 struct scsi_qla_host
*ha
= data
;
5840 struct ql4_boot_session_info
*boot_sess
= &(ha
->boot_tgt
.boot_sec_sess
);
5842 return qla4xxx_show_boot_tgt_info(boot_sess
, type
, buf
);
5845 static umode_t
qla4xxx_tgt_get_attr_visibility(void *data
, int type
)
5850 case ISCSI_BOOT_TGT_NAME
:
5851 case ISCSI_BOOT_TGT_IP_ADDR
:
5852 case ISCSI_BOOT_TGT_PORT
:
5853 case ISCSI_BOOT_TGT_CHAP_NAME
:
5854 case ISCSI_BOOT_TGT_CHAP_SECRET
:
5855 case ISCSI_BOOT_TGT_REV_CHAP_NAME
:
5856 case ISCSI_BOOT_TGT_REV_CHAP_SECRET
:
5857 case ISCSI_BOOT_TGT_NIC_ASSOC
:
5858 case ISCSI_BOOT_TGT_FLAGS
:
5868 static void qla4xxx_boot_release(void *data
)
5870 struct scsi_qla_host
*ha
= data
;
5872 scsi_host_put(ha
->host
);
5875 static int get_fw_boot_info(struct scsi_qla_host
*ha
, uint16_t ddb_index
[])
5878 uint32_t addr
, pri_addr
, sec_addr
;
5882 uint8_t *buf
= NULL
;
5883 size_t size
= 13 * sizeof(uint8_t);
5884 int ret
= QLA_SUCCESS
;
5886 func_num
= PCI_FUNC(ha
->pdev
->devfn
);
5888 ql4_printk(KERN_INFO
, ha
, "%s: Get FW boot info for 0x%x func %d\n",
5889 __func__
, ha
->pdev
->device
, func_num
);
5891 if (is_qla40XX(ha
)) {
5892 if (func_num
== 1) {
5893 addr
= NVRAM_PORT0_BOOT_MODE
;
5894 pri_addr
= NVRAM_PORT0_BOOT_PRI_TGT
;
5895 sec_addr
= NVRAM_PORT0_BOOT_SEC_TGT
;
5896 } else if (func_num
== 3) {
5897 addr
= NVRAM_PORT1_BOOT_MODE
;
5898 pri_addr
= NVRAM_PORT1_BOOT_PRI_TGT
;
5899 sec_addr
= NVRAM_PORT1_BOOT_SEC_TGT
;
5902 goto exit_boot_info
;
5905 /* Check Boot Mode */
5906 val
= rd_nvram_byte(ha
, addr
);
5907 if (!(val
& 0x07)) {
5908 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: Adapter boot "
5909 "options : 0x%x\n", __func__
, val
));
5911 goto exit_boot_info
;
5914 /* get primary valid target index */
5915 val
= rd_nvram_byte(ha
, pri_addr
);
5917 ddb_index
[0] = (val
& 0x7f);
5919 /* get secondary valid target index */
5920 val
= rd_nvram_byte(ha
, sec_addr
);
5922 ddb_index
[1] = (val
& 0x7f);
5924 } else if (is_qla80XX(ha
)) {
5925 buf
= dma_alloc_coherent(&ha
->pdev
->dev
, size
,
5926 &buf_dma
, GFP_KERNEL
);
5928 DEBUG2(ql4_printk(KERN_ERR
, ha
,
5929 "%s: Unable to allocate dma buffer\n",
5932 goto exit_boot_info
;
5935 if (ha
->port_num
== 0)
5936 offset
= BOOT_PARAM_OFFSET_PORT0
;
5937 else if (ha
->port_num
== 1)
5938 offset
= BOOT_PARAM_OFFSET_PORT1
;
5941 goto exit_boot_info_free
;
5943 addr
= FLASH_RAW_ACCESS_ADDR
+ (ha
->hw
.flt_iscsi_param
* 4) +
5945 if (qla4xxx_get_flash(ha
, buf_dma
, addr
,
5946 13 * sizeof(uint8_t)) != QLA_SUCCESS
) {
5947 DEBUG2(ql4_printk(KERN_ERR
, ha
, "scsi%ld: %s: Get Flash"
5948 " failed\n", ha
->host_no
, __func__
));
5950 goto exit_boot_info_free
;
5952 /* Check Boot Mode */
5953 if (!(buf
[1] & 0x07)) {
5954 DEBUG2(ql4_printk(KERN_INFO
, ha
, "Firmware boot options"
5955 " : 0x%x\n", buf
[1]));
5957 goto exit_boot_info_free
;
5960 /* get primary valid target index */
5962 ddb_index
[0] = buf
[2] & 0x7f;
5964 /* get secondary valid target index */
5965 if (buf
[11] & BIT_7
)
5966 ddb_index
[1] = buf
[11] & 0x7f;
5969 goto exit_boot_info
;
5972 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: Primary target ID %d, Secondary"
5973 " target ID %d\n", __func__
, ddb_index
[0],
5976 exit_boot_info_free
:
5977 dma_free_coherent(&ha
->pdev
->dev
, size
, buf
, buf_dma
);
5979 ha
->pri_ddb_idx
= ddb_index
[0];
5980 ha
->sec_ddb_idx
= ddb_index
[1];
5985 * qla4xxx_get_bidi_chap - Get a BIDI CHAP user and password
5986 * @ha: pointer to adapter structure
5987 * @username: CHAP username to be returned
5988 * @password: CHAP password to be returned
5990 * If a boot entry has BIDI CHAP enabled then we need to set the BIDI CHAP
5991 * user and password in the sysfs entry in /sys/firmware/iscsi_boot#/.
5992 * So from the CHAP cache find the first BIDI CHAP entry and set it
5993 * to the boot record in sysfs.
5995 static int qla4xxx_get_bidi_chap(struct scsi_qla_host
*ha
, char *username
,
5998 int i
, ret
= -EINVAL
;
5999 int max_chap_entries
= 0;
6000 struct ql4_chap_table
*chap_table
;
6003 max_chap_entries
= (ha
->hw
.flt_chap_size
/ 2) /
6004 sizeof(struct ql4_chap_table
);
6006 max_chap_entries
= MAX_CHAP_ENTRIES_40XX
;
6008 if (!ha
->chap_list
) {
6009 ql4_printk(KERN_ERR
, ha
, "Do not have CHAP table cache\n");
6013 mutex_lock(&ha
->chap_sem
);
6014 for (i
= 0; i
< max_chap_entries
; i
++) {
6015 chap_table
= (struct ql4_chap_table
*)ha
->chap_list
+ i
;
6016 if (chap_table
->cookie
!=
6017 __constant_cpu_to_le16(CHAP_VALID_COOKIE
)) {
6021 if (chap_table
->flags
& BIT_7
) /* local */
6024 if (!(chap_table
->flags
& BIT_6
)) /* Not BIDI */
6027 strlcpy(password
, chap_table
->secret
, QL4_CHAP_MAX_SECRET_LEN
);
6028 strlcpy(username
, chap_table
->name
, QL4_CHAP_MAX_NAME_LEN
);
6032 mutex_unlock(&ha
->chap_sem
);
6038 static int qla4xxx_get_boot_target(struct scsi_qla_host
*ha
,
6039 struct ql4_boot_session_info
*boot_sess
,
6042 struct ql4_conn_info
*boot_conn
= &boot_sess
->conn_list
[0];
6043 struct dev_db_entry
*fw_ddb_entry
;
6044 dma_addr_t fw_ddb_entry_dma
;
6047 int ret
= QLA_SUCCESS
;
6049 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
6050 &fw_ddb_entry_dma
, GFP_KERNEL
);
6051 if (!fw_ddb_entry
) {
6052 DEBUG2(ql4_printk(KERN_ERR
, ha
,
6053 "%s: Unable to allocate dma buffer.\n",
6059 if (qla4xxx_bootdb_by_index(ha
, fw_ddb_entry
,
6060 fw_ddb_entry_dma
, ddb_index
)) {
6061 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: No Flash DDB found at "
6062 "index [%d]\n", __func__
, ddb_index
));
6064 goto exit_boot_target
;
6067 /* Update target name and IP from DDB */
6068 memcpy(boot_sess
->target_name
, fw_ddb_entry
->iscsi_name
,
6069 min(sizeof(boot_sess
->target_name
),
6070 sizeof(fw_ddb_entry
->iscsi_name
)));
6072 options
= le16_to_cpu(fw_ddb_entry
->options
);
6073 if (options
& DDB_OPT_IPV6_DEVICE
) {
6074 memcpy(&boot_conn
->dest_ipaddr
.ip_address
,
6075 &fw_ddb_entry
->ip_addr
[0], IPv6_ADDR_LEN
);
6077 boot_conn
->dest_ipaddr
.ip_type
= 0x1;
6078 memcpy(&boot_conn
->dest_ipaddr
.ip_address
,
6079 &fw_ddb_entry
->ip_addr
[0], IP_ADDR_LEN
);
6082 boot_conn
->dest_port
= le16_to_cpu(fw_ddb_entry
->port
);
6084 /* update chap information */
6085 idx
= __le16_to_cpu(fw_ddb_entry
->chap_tbl_idx
);
6087 if (BIT_7
& le16_to_cpu(fw_ddb_entry
->iscsi_options
)) {
6089 DEBUG2(ql4_printk(KERN_INFO
, ha
, "Setting chap\n"));
6091 ret
= qla4xxx_get_chap(ha
, (char *)&boot_conn
->chap
.
6093 (char *)&boot_conn
->chap
.target_secret
,
6096 ql4_printk(KERN_ERR
, ha
, "Failed to set chap\n");
6098 goto exit_boot_target
;
6101 boot_conn
->chap
.target_chap_name_length
= QL4_CHAP_MAX_NAME_LEN
;
6102 boot_conn
->chap
.target_secret_length
= QL4_CHAP_MAX_SECRET_LEN
;
6105 if (BIT_4
& le16_to_cpu(fw_ddb_entry
->iscsi_options
)) {
6107 DEBUG2(ql4_printk(KERN_INFO
, ha
, "Setting BIDI chap\n"));
6109 ret
= qla4xxx_get_bidi_chap(ha
,
6110 (char *)&boot_conn
->chap
.intr_chap_name
,
6111 (char *)&boot_conn
->chap
.intr_secret
);
6114 ql4_printk(KERN_ERR
, ha
, "Failed to set BIDI chap\n");
6116 goto exit_boot_target
;
6119 boot_conn
->chap
.intr_chap_name_length
= QL4_CHAP_MAX_NAME_LEN
;
6120 boot_conn
->chap
.intr_secret_length
= QL4_CHAP_MAX_SECRET_LEN
;
6124 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
6125 fw_ddb_entry
, fw_ddb_entry_dma
);
6129 static int qla4xxx_get_boot_info(struct scsi_qla_host
*ha
)
6131 uint16_t ddb_index
[2];
6132 int ret
= QLA_ERROR
;
6135 memset(ddb_index
, 0, sizeof(ddb_index
));
6136 ddb_index
[0] = 0xffff;
6137 ddb_index
[1] = 0xffff;
6138 ret
= get_fw_boot_info(ha
, ddb_index
);
6139 if (ret
!= QLA_SUCCESS
) {
6140 DEBUG2(ql4_printk(KERN_INFO
, ha
,
6141 "%s: No boot target configured.\n", __func__
));
6145 if (ql4xdisablesysfsboot
)
6148 if (ddb_index
[0] == 0xffff)
6151 rval
= qla4xxx_get_boot_target(ha
, &(ha
->boot_tgt
.boot_pri_sess
),
6153 if (rval
!= QLA_SUCCESS
) {
6154 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: Primary boot target not "
6155 "configured\n", __func__
));
6160 if (ddb_index
[1] == 0xffff)
6161 goto exit_get_boot_info
;
6163 rval
= qla4xxx_get_boot_target(ha
, &(ha
->boot_tgt
.boot_sec_sess
),
6165 if (rval
!= QLA_SUCCESS
) {
6166 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: Secondary boot target not"
6167 " configured\n", __func__
));
6175 static int qla4xxx_setup_boot_info(struct scsi_qla_host
*ha
)
6177 struct iscsi_boot_kobj
*boot_kobj
;
6179 if (qla4xxx_get_boot_info(ha
) != QLA_SUCCESS
)
6182 if (ql4xdisablesysfsboot
) {
6183 ql4_printk(KERN_INFO
, ha
,
6184 "%s: syfsboot disabled - driver will trigger login "
6185 "and publish session for discovery .\n", __func__
);
6190 ha
->boot_kset
= iscsi_boot_create_host_kset(ha
->host
->host_no
);
6194 if (!scsi_host_get(ha
->host
))
6196 boot_kobj
= iscsi_boot_create_target(ha
->boot_kset
, 0, ha
,
6197 qla4xxx_show_boot_tgt_pri_info
,
6198 qla4xxx_tgt_get_attr_visibility
,
6199 qla4xxx_boot_release
);
6203 if (!scsi_host_get(ha
->host
))
6205 boot_kobj
= iscsi_boot_create_target(ha
->boot_kset
, 1, ha
,
6206 qla4xxx_show_boot_tgt_sec_info
,
6207 qla4xxx_tgt_get_attr_visibility
,
6208 qla4xxx_boot_release
);
6212 if (!scsi_host_get(ha
->host
))
6214 boot_kobj
= iscsi_boot_create_initiator(ha
->boot_kset
, 0, ha
,
6215 qla4xxx_show_boot_ini_info
,
6216 qla4xxx_ini_get_attr_visibility
,
6217 qla4xxx_boot_release
);
6221 if (!scsi_host_get(ha
->host
))
6223 boot_kobj
= iscsi_boot_create_ethernet(ha
->boot_kset
, 0, ha
,
6224 qla4xxx_show_boot_eth_info
,
6225 qla4xxx_eth_get_attr_visibility
,
6226 qla4xxx_boot_release
);
6233 scsi_host_put(ha
->host
);
6235 iscsi_boot_destroy_kset(ha
->boot_kset
);
6240 static void qla4xxx_get_param_ddb(struct ddb_entry
*ddb_entry
,
6241 struct ql4_tuple_ddb
*tddb
)
6243 struct scsi_qla_host
*ha
;
6244 struct iscsi_cls_session
*cls_sess
;
6245 struct iscsi_cls_conn
*cls_conn
;
6246 struct iscsi_session
*sess
;
6247 struct iscsi_conn
*conn
;
6249 DEBUG2(printk(KERN_INFO
"Func: %s\n", __func__
));
6251 cls_sess
= ddb_entry
->sess
;
6252 sess
= cls_sess
->dd_data
;
6253 cls_conn
= ddb_entry
->conn
;
6254 conn
= cls_conn
->dd_data
;
6256 tddb
->tpgt
= sess
->tpgt
;
6257 tddb
->port
= conn
->persistent_port
;
6258 strlcpy(tddb
->iscsi_name
, sess
->targetname
, ISCSI_NAME_SIZE
);
6259 strlcpy(tddb
->ip_addr
, conn
->persistent_address
, DDB_IPADDR_LEN
);
6262 static void qla4xxx_convert_param_ddb(struct dev_db_entry
*fw_ddb_entry
,
6263 struct ql4_tuple_ddb
*tddb
,
6264 uint8_t *flash_isid
)
6266 uint16_t options
= 0;
6268 tddb
->tpgt
= le32_to_cpu(fw_ddb_entry
->tgt_portal_grp
);
6269 memcpy(&tddb
->iscsi_name
[0], &fw_ddb_entry
->iscsi_name
[0],
6270 min(sizeof(tddb
->iscsi_name
), sizeof(fw_ddb_entry
->iscsi_name
)));
6272 options
= le16_to_cpu(fw_ddb_entry
->options
);
6273 if (options
& DDB_OPT_IPV6_DEVICE
)
6274 sprintf(tddb
->ip_addr
, "%pI6", fw_ddb_entry
->ip_addr
);
6276 sprintf(tddb
->ip_addr
, "%pI4", fw_ddb_entry
->ip_addr
);
6278 tddb
->port
= le16_to_cpu(fw_ddb_entry
->port
);
6280 if (flash_isid
== NULL
)
6281 memcpy(&tddb
->isid
[0], &fw_ddb_entry
->isid
[0],
6282 sizeof(tddb
->isid
));
6284 memcpy(&tddb
->isid
[0], &flash_isid
[0], sizeof(tddb
->isid
));
6287 static int qla4xxx_compare_tuple_ddb(struct scsi_qla_host
*ha
,
6288 struct ql4_tuple_ddb
*old_tddb
,
6289 struct ql4_tuple_ddb
*new_tddb
,
6290 uint8_t is_isid_compare
)
6292 if (strcmp(old_tddb
->iscsi_name
, new_tddb
->iscsi_name
))
6295 if (strcmp(old_tddb
->ip_addr
, new_tddb
->ip_addr
))
6298 if (old_tddb
->port
!= new_tddb
->port
)
6301 /* For multi sessions, driver generates the ISID, so do not compare
6302 * ISID in reset path since it would be a comparison between the
6303 * driver generated ISID and firmware generated ISID. This could
6304 * lead to adding duplicated DDBs in the list as driver generated
6305 * ISID would not match firmware generated ISID.
6307 if (is_isid_compare
) {
6308 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: old ISID [%02x%02x%02x"
6309 "%02x%02x%02x] New ISID [%02x%02x%02x%02x%02x%02x]\n",
6310 __func__
, old_tddb
->isid
[5], old_tddb
->isid
[4],
6311 old_tddb
->isid
[3], old_tddb
->isid
[2], old_tddb
->isid
[1],
6312 old_tddb
->isid
[0], new_tddb
->isid
[5], new_tddb
->isid
[4],
6313 new_tddb
->isid
[3], new_tddb
->isid
[2], new_tddb
->isid
[1],
6314 new_tddb
->isid
[0]));
6316 if (memcmp(&old_tddb
->isid
[0], &new_tddb
->isid
[0],
6317 sizeof(old_tddb
->isid
)))
6321 DEBUG2(ql4_printk(KERN_INFO
, ha
,
6322 "Match Found, fw[%d,%d,%s,%s], [%d,%d,%s,%s]",
6323 old_tddb
->port
, old_tddb
->tpgt
, old_tddb
->ip_addr
,
6324 old_tddb
->iscsi_name
, new_tddb
->port
, new_tddb
->tpgt
,
6325 new_tddb
->ip_addr
, new_tddb
->iscsi_name
));
6330 static int qla4xxx_is_session_exists(struct scsi_qla_host
*ha
,
6331 struct dev_db_entry
*fw_ddb_entry
,
6334 struct ddb_entry
*ddb_entry
;
6335 struct ql4_tuple_ddb
*fw_tddb
= NULL
;
6336 struct ql4_tuple_ddb
*tmp_tddb
= NULL
;
6338 int ret
= QLA_ERROR
;
6340 fw_tddb
= vzalloc(sizeof(*fw_tddb
));
6342 DEBUG2(ql4_printk(KERN_WARNING
, ha
,
6343 "Memory Allocation failed.\n"));
6348 tmp_tddb
= vzalloc(sizeof(*tmp_tddb
));
6350 DEBUG2(ql4_printk(KERN_WARNING
, ha
,
6351 "Memory Allocation failed.\n"));
6356 qla4xxx_convert_param_ddb(fw_ddb_entry
, fw_tddb
, NULL
);
6358 for (idx
= 0; idx
< MAX_DDB_ENTRIES
; idx
++) {
6359 ddb_entry
= qla4xxx_lookup_ddb_by_fw_index(ha
, idx
);
6360 if (ddb_entry
== NULL
)
6363 qla4xxx_get_param_ddb(ddb_entry
, tmp_tddb
);
6364 if (!qla4xxx_compare_tuple_ddb(ha
, fw_tddb
, tmp_tddb
, false)) {
6365 ret
= QLA_SUCCESS
; /* found */
6381 * qla4xxx_check_existing_isid - check if target with same isid exist
6383 * @list_nt: list of target
6384 * @isid: isid to check
6386 * This routine return QLA_SUCCESS if target with same isid exist
6388 static int qla4xxx_check_existing_isid(struct list_head
*list_nt
, uint8_t *isid
)
6390 struct qla_ddb_index
*nt_ddb_idx
, *nt_ddb_idx_tmp
;
6391 struct dev_db_entry
*fw_ddb_entry
;
6393 list_for_each_entry_safe(nt_ddb_idx
, nt_ddb_idx_tmp
, list_nt
, list
) {
6394 fw_ddb_entry
= &nt_ddb_idx
->fw_ddb
;
6396 if (memcmp(&fw_ddb_entry
->isid
[0], &isid
[0],
6397 sizeof(nt_ddb_idx
->fw_ddb
.isid
)) == 0) {
6405 * qla4xxx_update_isid - compare ddbs and updated isid
6406 * @ha: Pointer to host adapter structure.
6407 * @list_nt: list of nt target
6408 * @fw_ddb_entry: firmware ddb entry
6410 * This routine update isid if ddbs have same iqn, same isid and
6411 * different IP addr.
6412 * Return QLA_SUCCESS if isid is updated.
6414 static int qla4xxx_update_isid(struct scsi_qla_host
*ha
,
6415 struct list_head
*list_nt
,
6416 struct dev_db_entry
*fw_ddb_entry
)
6418 uint8_t base_value
, i
;
6420 base_value
= fw_ddb_entry
->isid
[1] & 0x1f;
6421 for (i
= 0; i
< 8; i
++) {
6422 fw_ddb_entry
->isid
[1] = (base_value
| (i
<< 5));
6423 if (qla4xxx_check_existing_isid(list_nt
, fw_ddb_entry
->isid
))
6427 if (!qla4xxx_check_existing_isid(list_nt
, fw_ddb_entry
->isid
))
6434 * qla4xxx_should_update_isid - check if isid need to update
6435 * @ha: Pointer to host adapter structure.
6436 * @old_tddb: ddb tuple
6437 * @new_tddb: ddb tuple
6439 * Return QLA_SUCCESS if different IP, different PORT, same iqn,
6442 static int qla4xxx_should_update_isid(struct scsi_qla_host
*ha
,
6443 struct ql4_tuple_ddb
*old_tddb
,
6444 struct ql4_tuple_ddb
*new_tddb
)
6446 if (strcmp(old_tddb
->ip_addr
, new_tddb
->ip_addr
) == 0) {
6448 if (old_tddb
->port
== new_tddb
->port
)
6452 if (strcmp(old_tddb
->iscsi_name
, new_tddb
->iscsi_name
))
6456 if (memcmp(&old_tddb
->isid
[0], &new_tddb
->isid
[0],
6457 sizeof(old_tddb
->isid
)))
6458 /* different isid */
6465 * qla4xxx_is_flash_ddb_exists - check if fw_ddb_entry already exists in list_nt
6466 * @ha: Pointer to host adapter structure.
6467 * @list_nt: list of nt target.
6468 * @fw_ddb_entry: firmware ddb entry.
6470 * This routine check if fw_ddb_entry already exists in list_nt to avoid
6471 * duplicate ddb in list_nt.
6472 * Return QLA_SUCCESS if duplicate ddb exit in list_nl.
6473 * Note: This function also update isid of DDB if required.
6476 static int qla4xxx_is_flash_ddb_exists(struct scsi_qla_host
*ha
,
6477 struct list_head
*list_nt
,
6478 struct dev_db_entry
*fw_ddb_entry
)
6480 struct qla_ddb_index
*nt_ddb_idx
, *nt_ddb_idx_tmp
;
6481 struct ql4_tuple_ddb
*fw_tddb
= NULL
;
6482 struct ql4_tuple_ddb
*tmp_tddb
= NULL
;
6483 int rval
, ret
= QLA_ERROR
;
6485 fw_tddb
= vzalloc(sizeof(*fw_tddb
));
6487 DEBUG2(ql4_printk(KERN_WARNING
, ha
,
6488 "Memory Allocation failed.\n"));
6493 tmp_tddb
= vzalloc(sizeof(*tmp_tddb
));
6495 DEBUG2(ql4_printk(KERN_WARNING
, ha
,
6496 "Memory Allocation failed.\n"));
6501 qla4xxx_convert_param_ddb(fw_ddb_entry
, fw_tddb
, NULL
);
6503 list_for_each_entry_safe(nt_ddb_idx
, nt_ddb_idx_tmp
, list_nt
, list
) {
6504 qla4xxx_convert_param_ddb(&nt_ddb_idx
->fw_ddb
, tmp_tddb
,
6505 nt_ddb_idx
->flash_isid
);
6506 ret
= qla4xxx_compare_tuple_ddb(ha
, fw_tddb
, tmp_tddb
, true);
6507 /* found duplicate ddb */
6508 if (ret
== QLA_SUCCESS
)
6512 list_for_each_entry_safe(nt_ddb_idx
, nt_ddb_idx_tmp
, list_nt
, list
) {
6513 qla4xxx_convert_param_ddb(&nt_ddb_idx
->fw_ddb
, tmp_tddb
, NULL
);
6515 ret
= qla4xxx_should_update_isid(ha
, tmp_tddb
, fw_tddb
);
6516 if (ret
== QLA_SUCCESS
) {
6517 rval
= qla4xxx_update_isid(ha
, list_nt
, fw_ddb_entry
);
6518 if (rval
== QLA_SUCCESS
)
6535 static void qla4xxx_free_ddb_list(struct list_head
*list_ddb
)
6537 struct qla_ddb_index
*ddb_idx
, *ddb_idx_tmp
;
6539 list_for_each_entry_safe(ddb_idx
, ddb_idx_tmp
, list_ddb
, list
) {
6540 list_del_init(&ddb_idx
->list
);
6545 static struct iscsi_endpoint
*qla4xxx_get_ep_fwdb(struct scsi_qla_host
*ha
,
6546 struct dev_db_entry
*fw_ddb_entry
)
6548 struct iscsi_endpoint
*ep
;
6549 struct sockaddr_in
*addr
;
6550 struct sockaddr_in6
*addr6
;
6551 struct sockaddr
*t_addr
;
6552 struct sockaddr_storage
*dst_addr
;
6555 /* TODO: need to destroy on unload iscsi_endpoint*/
6556 dst_addr
= vmalloc(sizeof(*dst_addr
));
6560 if (fw_ddb_entry
->options
& DDB_OPT_IPV6_DEVICE
) {
6561 t_addr
= (struct sockaddr
*)dst_addr
;
6562 t_addr
->sa_family
= AF_INET6
;
6563 addr6
= (struct sockaddr_in6
*)dst_addr
;
6564 ip
= (char *)&addr6
->sin6_addr
;
6565 memcpy(ip
, fw_ddb_entry
->ip_addr
, IPv6_ADDR_LEN
);
6566 addr6
->sin6_port
= htons(le16_to_cpu(fw_ddb_entry
->port
));
6569 t_addr
= (struct sockaddr
*)dst_addr
;
6570 t_addr
->sa_family
= AF_INET
;
6571 addr
= (struct sockaddr_in
*)dst_addr
;
6572 ip
= (char *)&addr
->sin_addr
;
6573 memcpy(ip
, fw_ddb_entry
->ip_addr
, IP_ADDR_LEN
);
6574 addr
->sin_port
= htons(le16_to_cpu(fw_ddb_entry
->port
));
6577 ep
= qla4xxx_ep_connect(ha
->host
, (struct sockaddr
*)dst_addr
, 0);
6582 static int qla4xxx_verify_boot_idx(struct scsi_qla_host
*ha
, uint16_t idx
)
6584 if (ql4xdisablesysfsboot
)
6586 if (idx
== ha
->pri_ddb_idx
|| idx
== ha
->sec_ddb_idx
)
6591 static void qla4xxx_setup_flash_ddb_entry(struct scsi_qla_host
*ha
,
6592 struct ddb_entry
*ddb_entry
,
6595 uint16_t def_timeout
;
6597 ddb_entry
->ddb_type
= FLASH_DDB
;
6598 ddb_entry
->fw_ddb_index
= INVALID_ENTRY
;
6599 ddb_entry
->fw_ddb_device_state
= DDB_DS_NO_CONNECTION_ACTIVE
;
6601 ddb_entry
->unblock_sess
= qla4xxx_unblock_flash_ddb
;
6602 ddb_entry
->ddb_change
= qla4xxx_flash_ddb_change
;
6603 ddb_entry
->chap_tbl_idx
= INVALID_ENTRY
;
6605 atomic_set(&ddb_entry
->retry_relogin_timer
, INVALID_ENTRY
);
6606 atomic_set(&ddb_entry
->relogin_timer
, 0);
6607 atomic_set(&ddb_entry
->relogin_retry_count
, 0);
6608 def_timeout
= le16_to_cpu(ddb_entry
->fw_ddb_entry
.def_timeout
);
6609 ddb_entry
->default_relogin_timeout
=
6610 (def_timeout
> LOGIN_TOV
) && (def_timeout
< LOGIN_TOV
* 10) ?
6611 def_timeout
: LOGIN_TOV
;
6612 ddb_entry
->default_time2wait
=
6613 le16_to_cpu(ddb_entry
->fw_ddb_entry
.iscsi_def_time2wait
);
6615 if (ql4xdisablesysfsboot
&&
6616 (idx
== ha
->pri_ddb_idx
|| idx
== ha
->sec_ddb_idx
))
6617 set_bit(DF_BOOT_TGT
, &ddb_entry
->flags
);
6620 static void qla4xxx_wait_for_ip_configuration(struct scsi_qla_host
*ha
)
6623 uint32_t ip_idx
[IP_ADDR_COUNT
] = {0, 1, 2, 3}; /* 4 IP interfaces */
6624 uint32_t sts
[MBOX_REG_COUNT
];
6626 unsigned long wtime
;
6629 wtime
= jiffies
+ (HZ
* IP_CONFIG_TOV
);
6631 for (idx
= 0; idx
< IP_ADDR_COUNT
; idx
++) {
6632 if (ip_idx
[idx
] == -1)
6635 ret
= qla4xxx_get_ip_state(ha
, 0, ip_idx
[idx
], sts
);
6637 if (ret
== QLA_ERROR
) {
6642 ip_state
= (sts
[1] & IP_STATE_MASK
) >> IP_STATE_SHIFT
;
6644 DEBUG2(ql4_printk(KERN_INFO
, ha
,
6645 "Waiting for IP state for idx = %d, state = 0x%x\n",
6646 ip_idx
[idx
], ip_state
));
6647 if (ip_state
== IP_ADDRSTATE_UNCONFIGURED
||
6648 ip_state
== IP_ADDRSTATE_INVALID
||
6649 ip_state
== IP_ADDRSTATE_PREFERRED
||
6650 ip_state
== IP_ADDRSTATE_DEPRICATED
||
6651 ip_state
== IP_ADDRSTATE_DISABLING
)
6655 /* Break if all IP states checked */
6656 if ((ip_idx
[0] == -1) &&
6657 (ip_idx
[1] == -1) &&
6658 (ip_idx
[2] == -1) &&
6661 schedule_timeout_uninterruptible(HZ
);
6662 } while (time_after(wtime
, jiffies
));
6665 static int qla4xxx_cmp_fw_stentry(struct dev_db_entry
*fw_ddb_entry
,
6666 struct dev_db_entry
*flash_ddb_entry
)
6668 uint16_t options
= 0;
6669 size_t ip_len
= IP_ADDR_LEN
;
6671 options
= le16_to_cpu(fw_ddb_entry
->options
);
6672 if (options
& DDB_OPT_IPV6_DEVICE
)
6673 ip_len
= IPv6_ADDR_LEN
;
6675 if (memcmp(fw_ddb_entry
->ip_addr
, flash_ddb_entry
->ip_addr
, ip_len
))
6678 if (memcmp(&fw_ddb_entry
->isid
[0], &flash_ddb_entry
->isid
[0],
6679 sizeof(fw_ddb_entry
->isid
)))
6682 if (memcmp(&fw_ddb_entry
->port
, &flash_ddb_entry
->port
,
6683 sizeof(fw_ddb_entry
->port
)))
6689 static int qla4xxx_find_flash_st_idx(struct scsi_qla_host
*ha
,
6690 struct dev_db_entry
*fw_ddb_entry
,
6691 uint32_t fw_idx
, uint32_t *flash_index
)
6693 struct dev_db_entry
*flash_ddb_entry
;
6694 dma_addr_t flash_ddb_entry_dma
;
6697 int ret
= QLA_ERROR
, status
;
6699 max_ddbs
= is_qla40XX(ha
) ? MAX_DEV_DB_ENTRIES_40XX
:
6702 flash_ddb_entry
= dma_pool_alloc(ha
->fw_ddb_dma_pool
, GFP_KERNEL
,
6703 &flash_ddb_entry_dma
);
6704 if (flash_ddb_entry
== NULL
|| fw_ddb_entry
== NULL
) {
6705 ql4_printk(KERN_ERR
, ha
, "Out of memory\n");
6706 goto exit_find_st_idx
;
6709 status
= qla4xxx_flashdb_by_index(ha
, flash_ddb_entry
,
6710 flash_ddb_entry_dma
, fw_idx
);
6711 if (status
== QLA_SUCCESS
) {
6712 status
= qla4xxx_cmp_fw_stentry(fw_ddb_entry
, flash_ddb_entry
);
6713 if (status
== QLA_SUCCESS
) {
6714 *flash_index
= fw_idx
;
6716 goto exit_find_st_idx
;
6720 for (idx
= 0; idx
< max_ddbs
; idx
++) {
6721 status
= qla4xxx_flashdb_by_index(ha
, flash_ddb_entry
,
6722 flash_ddb_entry_dma
, idx
);
6723 if (status
== QLA_ERROR
)
6726 status
= qla4xxx_cmp_fw_stentry(fw_ddb_entry
, flash_ddb_entry
);
6727 if (status
== QLA_SUCCESS
) {
6730 goto exit_find_st_idx
;
6734 if (idx
== max_ddbs
)
6735 ql4_printk(KERN_ERR
, ha
, "Failed to find ST [%d] in flash\n",
6739 if (flash_ddb_entry
)
6740 dma_pool_free(ha
->fw_ddb_dma_pool
, flash_ddb_entry
,
6741 flash_ddb_entry_dma
);
6746 static void qla4xxx_build_st_list(struct scsi_qla_host
*ha
,
6747 struct list_head
*list_st
)
6749 struct qla_ddb_index
*st_ddb_idx
;
6752 struct dev_db_entry
*fw_ddb_entry
;
6753 dma_addr_t fw_ddb_dma
;
6755 uint32_t idx
= 0, next_idx
= 0;
6756 uint32_t state
= 0, conn_err
= 0;
6757 uint32_t flash_index
= -1;
6758 uint16_t conn_id
= 0;
6760 fw_ddb_entry
= dma_pool_alloc(ha
->fw_ddb_dma_pool
, GFP_KERNEL
,
6762 if (fw_ddb_entry
== NULL
) {
6763 DEBUG2(ql4_printk(KERN_ERR
, ha
, "Out of memory\n"));
6767 max_ddbs
= is_qla40XX(ha
) ? MAX_DEV_DB_ENTRIES_40XX
:
6769 fw_idx_size
= sizeof(struct qla_ddb_index
);
6771 for (idx
= 0; idx
< max_ddbs
; idx
= next_idx
) {
6772 ret
= qla4xxx_get_fwddb_entry(ha
, idx
, fw_ddb_entry
, fw_ddb_dma
,
6773 NULL
, &next_idx
, &state
,
6774 &conn_err
, NULL
, &conn_id
);
6775 if (ret
== QLA_ERROR
)
6778 /* Ignore DDB if invalid state (unassigned) */
6779 if (state
== DDB_DS_UNASSIGNED
)
6780 goto continue_next_st
;
6782 /* Check if ST, add to the list_st */
6783 if (strlen((char *) fw_ddb_entry
->iscsi_name
) != 0)
6784 goto continue_next_st
;
6786 st_ddb_idx
= vzalloc(fw_idx_size
);
6790 ret
= qla4xxx_find_flash_st_idx(ha
, fw_ddb_entry
, idx
,
6792 if (ret
== QLA_ERROR
) {
6793 ql4_printk(KERN_ERR
, ha
,
6794 "No flash entry for ST at idx [%d]\n", idx
);
6795 st_ddb_idx
->flash_ddb_idx
= idx
;
6797 ql4_printk(KERN_INFO
, ha
,
6798 "ST at idx [%d] is stored at flash [%d]\n",
6800 st_ddb_idx
->flash_ddb_idx
= flash_index
;
6803 st_ddb_idx
->fw_ddb_idx
= idx
;
6805 list_add_tail(&st_ddb_idx
->list
, list_st
);
6813 dma_pool_free(ha
->fw_ddb_dma_pool
, fw_ddb_entry
, fw_ddb_dma
);
6817 * qla4xxx_remove_failed_ddb - Remove inactive or failed ddb from list
6818 * @ha: pointer to adapter structure
6819 * @list_ddb: List from which failed ddb to be removed
6821 * Iterate over the list of DDBs and find and remove DDBs that are either in
6822 * no connection active state or failed state
6824 static void qla4xxx_remove_failed_ddb(struct scsi_qla_host
*ha
,
6825 struct list_head
*list_ddb
)
6827 struct qla_ddb_index
*ddb_idx
, *ddb_idx_tmp
;
6828 uint32_t next_idx
= 0;
6829 uint32_t state
= 0, conn_err
= 0;
6832 list_for_each_entry_safe(ddb_idx
, ddb_idx_tmp
, list_ddb
, list
) {
6833 ret
= qla4xxx_get_fwddb_entry(ha
, ddb_idx
->fw_ddb_idx
,
6834 NULL
, 0, NULL
, &next_idx
, &state
,
6835 &conn_err
, NULL
, NULL
);
6836 if (ret
== QLA_ERROR
)
6839 if (state
== DDB_DS_NO_CONNECTION_ACTIVE
||
6840 state
== DDB_DS_SESSION_FAILED
) {
6841 list_del_init(&ddb_idx
->list
);
6847 static void qla4xxx_update_sess_disc_idx(struct scsi_qla_host
*ha
,
6848 struct ddb_entry
*ddb_entry
,
6849 struct dev_db_entry
*fw_ddb_entry
)
6851 struct iscsi_cls_session
*cls_sess
;
6852 struct iscsi_session
*sess
;
6853 uint32_t max_ddbs
= 0;
6854 uint16_t ddb_link
= -1;
6856 max_ddbs
= is_qla40XX(ha
) ? MAX_DEV_DB_ENTRIES_40XX
:
6859 cls_sess
= ddb_entry
->sess
;
6860 sess
= cls_sess
->dd_data
;
6862 ddb_link
= le16_to_cpu(fw_ddb_entry
->ddb_link
);
6863 if (ddb_link
< max_ddbs
)
6864 sess
->discovery_parent_idx
= ddb_link
;
6866 sess
->discovery_parent_idx
= DDB_NO_LINK
;
6869 static int qla4xxx_sess_conn_setup(struct scsi_qla_host
*ha
,
6870 struct dev_db_entry
*fw_ddb_entry
,
6871 int is_reset
, uint16_t idx
)
6873 struct iscsi_cls_session
*cls_sess
;
6874 struct iscsi_session
*sess
;
6875 struct iscsi_cls_conn
*cls_conn
;
6876 struct iscsi_endpoint
*ep
;
6877 uint16_t cmds_max
= 32;
6878 uint16_t conn_id
= 0;
6879 uint32_t initial_cmdsn
= 0;
6880 int ret
= QLA_SUCCESS
;
6882 struct ddb_entry
*ddb_entry
= NULL
;
6884 /* Create session object, with INVALID_ENTRY,
6885 * the targer_id would get set when we issue the login
6887 cls_sess
= iscsi_session_setup(&qla4xxx_iscsi_transport
, ha
->host
,
6888 cmds_max
, sizeof(struct ddb_entry
),
6889 sizeof(struct ql4_task_data
),
6890 initial_cmdsn
, INVALID_ENTRY
);
6897 * so calling module_put function to decrement the
6900 module_put(qla4xxx_iscsi_transport
.owner
);
6901 sess
= cls_sess
->dd_data
;
6902 ddb_entry
= sess
->dd_data
;
6903 ddb_entry
->sess
= cls_sess
;
6905 cls_sess
->recovery_tmo
= ql4xsess_recovery_tmo
;
6906 memcpy(&ddb_entry
->fw_ddb_entry
, fw_ddb_entry
,
6907 sizeof(struct dev_db_entry
));
6909 qla4xxx_setup_flash_ddb_entry(ha
, ddb_entry
, idx
);
6911 cls_conn
= iscsi_conn_setup(cls_sess
, sizeof(struct qla_conn
), conn_id
);
6918 ddb_entry
->conn
= cls_conn
;
6920 /* Setup ep, for displaying attributes in sysfs */
6921 ep
= qla4xxx_get_ep_fwdb(ha
, fw_ddb_entry
);
6923 ep
->conn
= cls_conn
;
6926 DEBUG2(ql4_printk(KERN_ERR
, ha
, "Unable to get ep\n"));
6931 /* Update sess/conn params */
6932 qla4xxx_copy_fwddb_param(ha
, fw_ddb_entry
, cls_sess
, cls_conn
);
6933 qla4xxx_update_sess_disc_idx(ha
, ddb_entry
, fw_ddb_entry
);
6935 if (is_reset
== RESET_ADAPTER
) {
6936 iscsi_block_session(cls_sess
);
6937 /* Use the relogin path to discover new devices
6938 * by short-circuting the logic of setting
6939 * timer to relogin - instead set the flags
6940 * to initiate login right away.
6942 set_bit(DPC_RELOGIN_DEVICE
, &ha
->dpc_flags
);
6943 set_bit(DF_RELOGIN
, &ddb_entry
->flags
);
6950 static void qla4xxx_update_fw_ddb_link(struct scsi_qla_host
*ha
,
6951 struct list_head
*list_ddb
,
6952 struct dev_db_entry
*fw_ddb_entry
)
6954 struct qla_ddb_index
*ddb_idx
, *ddb_idx_tmp
;
6957 ddb_link
= le16_to_cpu(fw_ddb_entry
->ddb_link
);
6959 list_for_each_entry_safe(ddb_idx
, ddb_idx_tmp
, list_ddb
, list
) {
6960 if (ddb_idx
->fw_ddb_idx
== ddb_link
) {
6961 DEBUG2(ql4_printk(KERN_INFO
, ha
,
6962 "Updating NT parent idx from [%d] to [%d]\n",
6963 ddb_link
, ddb_idx
->flash_ddb_idx
));
6964 fw_ddb_entry
->ddb_link
=
6965 cpu_to_le16(ddb_idx
->flash_ddb_idx
);
6971 static void qla4xxx_build_nt_list(struct scsi_qla_host
*ha
,
6972 struct list_head
*list_nt
,
6973 struct list_head
*list_st
,
6976 struct dev_db_entry
*fw_ddb_entry
;
6977 struct ddb_entry
*ddb_entry
= NULL
;
6978 dma_addr_t fw_ddb_dma
;
6982 uint32_t idx
= 0, next_idx
= 0;
6983 uint32_t state
= 0, conn_err
= 0;
6984 uint32_t ddb_idx
= -1;
6985 uint16_t conn_id
= 0;
6986 uint16_t ddb_link
= -1;
6987 struct qla_ddb_index
*nt_ddb_idx
;
6989 fw_ddb_entry
= dma_pool_alloc(ha
->fw_ddb_dma_pool
, GFP_KERNEL
,
6991 if (fw_ddb_entry
== NULL
) {
6992 DEBUG2(ql4_printk(KERN_ERR
, ha
, "Out of memory\n"));
6995 max_ddbs
= is_qla40XX(ha
) ? MAX_DEV_DB_ENTRIES_40XX
:
6997 fw_idx_size
= sizeof(struct qla_ddb_index
);
6999 for (idx
= 0; idx
< max_ddbs
; idx
= next_idx
) {
7000 ret
= qla4xxx_get_fwddb_entry(ha
, idx
, fw_ddb_entry
, fw_ddb_dma
,
7001 NULL
, &next_idx
, &state
,
7002 &conn_err
, NULL
, &conn_id
);
7003 if (ret
== QLA_ERROR
)
7006 if (qla4xxx_verify_boot_idx(ha
, idx
) != QLA_SUCCESS
)
7007 goto continue_next_nt
;
7009 /* Check if NT, then add to list it */
7010 if (strlen((char *) fw_ddb_entry
->iscsi_name
) == 0)
7011 goto continue_next_nt
;
7013 ddb_link
= le16_to_cpu(fw_ddb_entry
->ddb_link
);
7014 if (ddb_link
< max_ddbs
)
7015 qla4xxx_update_fw_ddb_link(ha
, list_st
, fw_ddb_entry
);
7017 if (!(state
== DDB_DS_NO_CONNECTION_ACTIVE
||
7018 state
== DDB_DS_SESSION_FAILED
) &&
7019 (is_reset
== INIT_ADAPTER
))
7020 goto continue_next_nt
;
7022 DEBUG2(ql4_printk(KERN_INFO
, ha
,
7023 "Adding DDB to session = 0x%x\n", idx
));
7025 if (is_reset
== INIT_ADAPTER
) {
7026 nt_ddb_idx
= vmalloc(fw_idx_size
);
7030 nt_ddb_idx
->fw_ddb_idx
= idx
;
7032 /* Copy original isid as it may get updated in function
7033 * qla4xxx_update_isid(). We need original isid in
7034 * function qla4xxx_compare_tuple_ddb to find duplicate
7036 memcpy(&nt_ddb_idx
->flash_isid
[0],
7037 &fw_ddb_entry
->isid
[0],
7038 sizeof(nt_ddb_idx
->flash_isid
));
7040 ret
= qla4xxx_is_flash_ddb_exists(ha
, list_nt
,
7042 if (ret
== QLA_SUCCESS
) {
7043 /* free nt_ddb_idx and do not add to list_nt */
7045 goto continue_next_nt
;
7048 /* Copy updated isid */
7049 memcpy(&nt_ddb_idx
->fw_ddb
, fw_ddb_entry
,
7050 sizeof(struct dev_db_entry
));
7052 list_add_tail(&nt_ddb_idx
->list
, list_nt
);
7053 } else if (is_reset
== RESET_ADAPTER
) {
7054 ret
= qla4xxx_is_session_exists(ha
, fw_ddb_entry
,
7056 if (ret
== QLA_SUCCESS
) {
7057 ddb_entry
= qla4xxx_lookup_ddb_by_fw_index(ha
,
7059 if (ddb_entry
!= NULL
)
7060 qla4xxx_update_sess_disc_idx(ha
,
7063 goto continue_next_nt
;
7067 ret
= qla4xxx_sess_conn_setup(ha
, fw_ddb_entry
, is_reset
, idx
);
7068 if (ret
== QLA_ERROR
)
7078 dma_pool_free(ha
->fw_ddb_dma_pool
, fw_ddb_entry
, fw_ddb_dma
);
7081 static void qla4xxx_build_new_nt_list(struct scsi_qla_host
*ha
,
7082 struct list_head
*list_nt
,
7085 struct dev_db_entry
*fw_ddb_entry
;
7086 dma_addr_t fw_ddb_dma
;
7090 uint32_t idx
= 0, next_idx
= 0;
7091 uint32_t state
= 0, conn_err
= 0;
7092 uint16_t conn_id
= 0;
7093 struct qla_ddb_index
*nt_ddb_idx
;
7095 fw_ddb_entry
= dma_pool_alloc(ha
->fw_ddb_dma_pool
, GFP_KERNEL
,
7097 if (fw_ddb_entry
== NULL
) {
7098 DEBUG2(ql4_printk(KERN_ERR
, ha
, "Out of memory\n"));
7099 goto exit_new_nt_list
;
7101 max_ddbs
= is_qla40XX(ha
) ? MAX_DEV_DB_ENTRIES_40XX
:
7103 fw_idx_size
= sizeof(struct qla_ddb_index
);
7105 for (idx
= 0; idx
< max_ddbs
; idx
= next_idx
) {
7106 ret
= qla4xxx_get_fwddb_entry(ha
, idx
, fw_ddb_entry
, fw_ddb_dma
,
7107 NULL
, &next_idx
, &state
,
7108 &conn_err
, NULL
, &conn_id
);
7109 if (ret
== QLA_ERROR
)
7112 /* Check if NT, then add it to list */
7113 if (strlen((char *)fw_ddb_entry
->iscsi_name
) == 0)
7114 goto continue_next_new_nt
;
7116 if (!(state
== DDB_DS_NO_CONNECTION_ACTIVE
))
7117 goto continue_next_new_nt
;
7119 DEBUG2(ql4_printk(KERN_INFO
, ha
,
7120 "Adding DDB to session = 0x%x\n", idx
));
7122 nt_ddb_idx
= vmalloc(fw_idx_size
);
7126 nt_ddb_idx
->fw_ddb_idx
= idx
;
7128 ret
= qla4xxx_is_session_exists(ha
, fw_ddb_entry
, NULL
);
7129 if (ret
== QLA_SUCCESS
) {
7130 /* free nt_ddb_idx and do not add to list_nt */
7132 goto continue_next_new_nt
;
7135 if (target_id
< max_ddbs
)
7136 fw_ddb_entry
->ddb_link
= cpu_to_le16(target_id
);
7138 list_add_tail(&nt_ddb_idx
->list
, list_nt
);
7140 ret
= qla4xxx_sess_conn_setup(ha
, fw_ddb_entry
, RESET_ADAPTER
,
7142 if (ret
== QLA_ERROR
)
7143 goto exit_new_nt_list
;
7145 continue_next_new_nt
:
7152 dma_pool_free(ha
->fw_ddb_dma_pool
, fw_ddb_entry
, fw_ddb_dma
);
7156 * qla4xxx_sysfs_ddb_is_non_persistent - check for non-persistence of ddb entry
7157 * @dev: dev associated with the sysfs entry
7158 * @data: pointer to flashnode session object
7161 * 1: if flashnode entry is non-persistent
7162 * 0: if flashnode entry is persistent
7164 static int qla4xxx_sysfs_ddb_is_non_persistent(struct device
*dev
, void *data
)
7166 struct iscsi_bus_flash_session
*fnode_sess
;
7168 if (!iscsi_flashnode_bus_match(dev
, NULL
))
7171 fnode_sess
= iscsi_dev_to_flash_session(dev
);
7173 return (fnode_sess
->flash_state
== DEV_DB_NON_PERSISTENT
);
7177 * qla4xxx_sysfs_ddb_tgt_create - Create sysfs entry for target
7178 * @ha: pointer to host
7179 * @fw_ddb_entry: flash ddb data
7180 * @idx: target index
7181 * @user: if set then this call is made from userland else from kernel
7184 * On sucess: QLA_SUCCESS
7185 * On failure: QLA_ERROR
7187 * This create separate sysfs entries for session and connection attributes of
7188 * the given fw ddb entry.
7189 * If this is invoked as a result of a userspace call then the entry is marked
7190 * as nonpersistent using flash_state field.
7192 static int qla4xxx_sysfs_ddb_tgt_create(struct scsi_qla_host
*ha
,
7193 struct dev_db_entry
*fw_ddb_entry
,
7194 uint16_t *idx
, int user
)
7196 struct iscsi_bus_flash_session
*fnode_sess
= NULL
;
7197 struct iscsi_bus_flash_conn
*fnode_conn
= NULL
;
7200 fnode_sess
= iscsi_create_flashnode_sess(ha
->host
, *idx
,
7201 &qla4xxx_iscsi_transport
, 0);
7203 ql4_printk(KERN_ERR
, ha
,
7204 "%s: Unable to create session sysfs entry for flashnode %d of host%lu\n",
7205 __func__
, *idx
, ha
->host_no
);
7206 goto exit_tgt_create
;
7209 fnode_conn
= iscsi_create_flashnode_conn(ha
->host
, fnode_sess
,
7210 &qla4xxx_iscsi_transport
, 0);
7212 ql4_printk(KERN_ERR
, ha
,
7213 "%s: Unable to create conn sysfs entry for flashnode %d of host%lu\n",
7214 __func__
, *idx
, ha
->host_no
);
7219 fnode_sess
->flash_state
= DEV_DB_NON_PERSISTENT
;
7221 fnode_sess
->flash_state
= DEV_DB_PERSISTENT
;
7223 if (*idx
== ha
->pri_ddb_idx
|| *idx
== ha
->sec_ddb_idx
)
7224 fnode_sess
->is_boot_target
= 1;
7226 fnode_sess
->is_boot_target
= 0;
7229 rc
= qla4xxx_copy_from_fwddb_param(fnode_sess
, fnode_conn
,
7232 ql4_printk(KERN_INFO
, ha
, "%s: sysfs entry %s created\n",
7233 __func__
, fnode_sess
->dev
.kobj
.name
);
7235 ql4_printk(KERN_INFO
, ha
, "%s: sysfs entry %s created\n",
7236 __func__
, fnode_conn
->dev
.kobj
.name
);
7241 iscsi_destroy_flashnode_sess(fnode_sess
);
7248 * qla4xxx_sysfs_ddb_add - Add new ddb entry in flash
7249 * @shost: pointer to host
7250 * @buf: type of ddb entry (ipv4/ipv6)
7251 * @len: length of buf
7253 * This creates new ddb entry in the flash by finding first free index and
7254 * storing default ddb there. And then create sysfs entry for the new ddb entry.
7256 static int qla4xxx_sysfs_ddb_add(struct Scsi_Host
*shost
, const char *buf
,
7259 struct scsi_qla_host
*ha
= to_qla_host(shost
);
7260 struct dev_db_entry
*fw_ddb_entry
= NULL
;
7261 dma_addr_t fw_ddb_entry_dma
;
7264 uint16_t max_ddbs
= 0;
7265 uint32_t options
= 0;
7266 uint32_t rval
= QLA_ERROR
;
7268 if (strncasecmp(PORTAL_TYPE_IPV4
, buf
, 4) &&
7269 strncasecmp(PORTAL_TYPE_IPV6
, buf
, 4)) {
7270 DEBUG2(ql4_printk(KERN_ERR
, ha
, "%s: Invalid portal type\n",
7275 max_ddbs
= is_qla40XX(ha
) ? MAX_PRST_DEV_DB_ENTRIES
:
7278 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
7279 &fw_ddb_entry_dma
, GFP_KERNEL
);
7280 if (!fw_ddb_entry
) {
7281 DEBUG2(ql4_printk(KERN_ERR
, ha
,
7282 "%s: Unable to allocate dma buffer\n",
7287 dev
= iscsi_find_flashnode_sess(ha
->host
, NULL
,
7288 qla4xxx_sysfs_ddb_is_non_persistent
);
7290 ql4_printk(KERN_ERR
, ha
,
7291 "%s: A non-persistent entry %s found\n",
7292 __func__
, dev
->kobj
.name
);
7297 /* Index 0 and 1 are reserved for boot target entries */
7298 for (idx
= 2; idx
< max_ddbs
; idx
++) {
7299 if (qla4xxx_flashdb_by_index(ha
, fw_ddb_entry
,
7300 fw_ddb_entry_dma
, idx
))
7304 if (idx
== max_ddbs
)
7307 if (!strncasecmp("ipv6", buf
, 4))
7308 options
|= IPV6_DEFAULT_DDB_ENTRY
;
7310 rval
= qla4xxx_get_default_ddb(ha
, options
, fw_ddb_entry_dma
);
7311 if (rval
== QLA_ERROR
)
7314 rval
= qla4xxx_sysfs_ddb_tgt_create(ha
, fw_ddb_entry
, &idx
, 1);
7318 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
7319 fw_ddb_entry
, fw_ddb_entry_dma
);
7320 if (rval
== QLA_SUCCESS
)
7327 * qla4xxx_sysfs_ddb_apply - write the target ddb contents to Flash
7328 * @fnode_sess: pointer to session attrs of flash ddb entry
7329 * @fnode_conn: pointer to connection attrs of flash ddb entry
7331 * This writes the contents of target ddb buffer to Flash with a valid cookie
7332 * value in order to make the ddb entry persistent.
7334 static int qla4xxx_sysfs_ddb_apply(struct iscsi_bus_flash_session
*fnode_sess
,
7335 struct iscsi_bus_flash_conn
*fnode_conn
)
7337 struct Scsi_Host
*shost
= iscsi_flash_session_to_shost(fnode_sess
);
7338 struct scsi_qla_host
*ha
= to_qla_host(shost
);
7339 uint32_t dev_db_start_offset
= FLASH_OFFSET_DB_INFO
;
7340 struct dev_db_entry
*fw_ddb_entry
= NULL
;
7341 dma_addr_t fw_ddb_entry_dma
;
7342 uint32_t options
= 0;
7345 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
7346 &fw_ddb_entry_dma
, GFP_KERNEL
);
7347 if (!fw_ddb_entry
) {
7348 DEBUG2(ql4_printk(KERN_ERR
, ha
,
7349 "%s: Unable to allocate dma buffer\n",
7352 goto exit_ddb_apply
;
7355 if (!strncasecmp(fnode_sess
->portal_type
, PORTAL_TYPE_IPV6
, 4))
7356 options
|= IPV6_DEFAULT_DDB_ENTRY
;
7358 rval
= qla4xxx_get_default_ddb(ha
, options
, fw_ddb_entry_dma
);
7359 if (rval
== QLA_ERROR
)
7360 goto exit_ddb_apply
;
7362 dev_db_start_offset
+= (fnode_sess
->target_id
*
7363 sizeof(*fw_ddb_entry
));
7365 qla4xxx_copy_to_fwddb_param(fnode_sess
, fnode_conn
, fw_ddb_entry
);
7366 fw_ddb_entry
->cookie
= DDB_VALID_COOKIE
;
7368 rval
= qla4xxx_set_flash(ha
, fw_ddb_entry_dma
, dev_db_start_offset
,
7369 sizeof(*fw_ddb_entry
), FLASH_OPT_RMW_COMMIT
);
7371 if (rval
== QLA_SUCCESS
) {
7372 fnode_sess
->flash_state
= DEV_DB_PERSISTENT
;
7373 ql4_printk(KERN_INFO
, ha
,
7374 "%s: flash node %u of host %lu written to flash\n",
7375 __func__
, fnode_sess
->target_id
, ha
->host_no
);
7378 ql4_printk(KERN_ERR
, ha
,
7379 "%s: Error while writing flash node %u of host %lu to flash\n",
7380 __func__
, fnode_sess
->target_id
, ha
->host_no
);
7385 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
7386 fw_ddb_entry
, fw_ddb_entry_dma
);
7390 static ssize_t
qla4xxx_sysfs_ddb_conn_open(struct scsi_qla_host
*ha
,
7391 struct dev_db_entry
*fw_ddb_entry
,
7394 struct dev_db_entry
*ddb_entry
= NULL
;
7395 dma_addr_t ddb_entry_dma
;
7396 unsigned long wtime
;
7397 uint32_t mbx_sts
= 0;
7398 uint32_t state
= 0, conn_err
= 0;
7402 ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*ddb_entry
),
7403 &ddb_entry_dma
, GFP_KERNEL
);
7405 DEBUG2(ql4_printk(KERN_ERR
, ha
,
7406 "%s: Unable to allocate dma buffer\n",
7411 memcpy(ddb_entry
, fw_ddb_entry
, sizeof(*ddb_entry
));
7413 ret
= qla4xxx_set_ddb_entry(ha
, idx
, ddb_entry_dma
, &mbx_sts
);
7414 if (ret
!= QLA_SUCCESS
) {
7415 DEBUG2(ql4_printk(KERN_ERR
, ha
,
7416 "%s: Unable to set ddb entry for index %d\n",
7418 goto exit_ddb_conn_open
;
7421 qla4xxx_conn_open(ha
, idx
);
7423 /* To ensure that sendtargets is done, wait for at least 12 secs */
7424 tmo
= ((ha
->def_timeout
> LOGIN_TOV
) &&
7425 (ha
->def_timeout
< LOGIN_TOV
* 10) ?
7426 ha
->def_timeout
: LOGIN_TOV
);
7428 DEBUG2(ql4_printk(KERN_INFO
, ha
,
7429 "Default time to wait for login to ddb %d\n", tmo
));
7431 wtime
= jiffies
+ (HZ
* tmo
);
7433 ret
= qla4xxx_get_fwddb_entry(ha
, idx
, NULL
, 0, NULL
,
7434 NULL
, &state
, &conn_err
, NULL
,
7436 if (ret
== QLA_ERROR
)
7439 if (state
== DDB_DS_NO_CONNECTION_ACTIVE
||
7440 state
== DDB_DS_SESSION_FAILED
)
7443 schedule_timeout_uninterruptible(HZ
/ 10);
7444 } while (time_after(wtime
, jiffies
));
7448 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*ddb_entry
),
7449 ddb_entry
, ddb_entry_dma
);
7453 static int qla4xxx_ddb_login_st(struct scsi_qla_host
*ha
,
7454 struct dev_db_entry
*fw_ddb_entry
,
7457 struct qla_ddb_index
*ddb_idx
, *ddb_idx_tmp
;
7458 struct list_head list_nt
;
7462 if (test_bit(AF_ST_DISCOVERY_IN_PROGRESS
, &ha
->flags
)) {
7463 ql4_printk(KERN_WARNING
, ha
,
7464 "%s: A discovery already in progress!\n", __func__
);
7468 INIT_LIST_HEAD(&list_nt
);
7470 set_bit(AF_ST_DISCOVERY_IN_PROGRESS
, &ha
->flags
);
7472 ret
= qla4xxx_get_ddb_index(ha
, &ddb_index
);
7473 if (ret
== QLA_ERROR
)
7474 goto exit_login_st_clr_bit
;
7476 ret
= qla4xxx_sysfs_ddb_conn_open(ha
, fw_ddb_entry
, ddb_index
);
7477 if (ret
== QLA_ERROR
)
7480 qla4xxx_build_new_nt_list(ha
, &list_nt
, target_id
);
7482 list_for_each_entry_safe(ddb_idx
, ddb_idx_tmp
, &list_nt
, list
) {
7483 list_del_init(&ddb_idx
->list
);
7484 qla4xxx_clear_ddb_entry(ha
, ddb_idx
->fw_ddb_idx
);
7489 if (qla4xxx_clear_ddb_entry(ha
, ddb_index
) == QLA_ERROR
) {
7490 ql4_printk(KERN_ERR
, ha
,
7491 "Unable to clear DDB index = 0x%x\n", ddb_index
);
7494 clear_bit(ddb_index
, ha
->ddb_idx_map
);
7496 exit_login_st_clr_bit
:
7497 clear_bit(AF_ST_DISCOVERY_IN_PROGRESS
, &ha
->flags
);
7501 static int qla4xxx_ddb_login_nt(struct scsi_qla_host
*ha
,
7502 struct dev_db_entry
*fw_ddb_entry
,
7505 int ret
= QLA_ERROR
;
7507 ret
= qla4xxx_is_session_exists(ha
, fw_ddb_entry
, NULL
);
7508 if (ret
!= QLA_SUCCESS
)
7509 ret
= qla4xxx_sess_conn_setup(ha
, fw_ddb_entry
, RESET_ADAPTER
,
7518 * qla4xxx_sysfs_ddb_login - Login to the specified target
7519 * @fnode_sess: pointer to session attrs of flash ddb entry
7520 * @fnode_conn: pointer to connection attrs of flash ddb entry
7522 * This logs in to the specified target
7524 static int qla4xxx_sysfs_ddb_login(struct iscsi_bus_flash_session
*fnode_sess
,
7525 struct iscsi_bus_flash_conn
*fnode_conn
)
7527 struct Scsi_Host
*shost
= iscsi_flash_session_to_shost(fnode_sess
);
7528 struct scsi_qla_host
*ha
= to_qla_host(shost
);
7529 struct dev_db_entry
*fw_ddb_entry
= NULL
;
7530 dma_addr_t fw_ddb_entry_dma
;
7531 uint32_t options
= 0;
7534 if (fnode_sess
->flash_state
== DEV_DB_NON_PERSISTENT
) {
7535 ql4_printk(KERN_ERR
, ha
,
7536 "%s: Target info is not persistent\n", __func__
);
7538 goto exit_ddb_login
;
7541 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
7542 &fw_ddb_entry_dma
, GFP_KERNEL
);
7543 if (!fw_ddb_entry
) {
7544 DEBUG2(ql4_printk(KERN_ERR
, ha
,
7545 "%s: Unable to allocate dma buffer\n",
7548 goto exit_ddb_login
;
7551 if (!strncasecmp(fnode_sess
->portal_type
, PORTAL_TYPE_IPV6
, 4))
7552 options
|= IPV6_DEFAULT_DDB_ENTRY
;
7554 ret
= qla4xxx_get_default_ddb(ha
, options
, fw_ddb_entry_dma
);
7555 if (ret
== QLA_ERROR
)
7556 goto exit_ddb_login
;
7558 qla4xxx_copy_to_fwddb_param(fnode_sess
, fnode_conn
, fw_ddb_entry
);
7559 fw_ddb_entry
->cookie
= DDB_VALID_COOKIE
;
7561 if (strlen((char *)fw_ddb_entry
->iscsi_name
) == 0)
7562 ret
= qla4xxx_ddb_login_st(ha
, fw_ddb_entry
,
7563 fnode_sess
->target_id
);
7565 ret
= qla4xxx_ddb_login_nt(ha
, fw_ddb_entry
,
7566 fnode_sess
->target_id
);
7573 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
7574 fw_ddb_entry
, fw_ddb_entry_dma
);
7579 * qla4xxx_sysfs_ddb_logout_sid - Logout session for the specified target
7580 * @cls_sess: pointer to session to be logged out
7582 * This performs session log out from the specified target
7584 static int qla4xxx_sysfs_ddb_logout_sid(struct iscsi_cls_session
*cls_sess
)
7586 struct iscsi_session
*sess
;
7587 struct ddb_entry
*ddb_entry
= NULL
;
7588 struct scsi_qla_host
*ha
;
7589 struct dev_db_entry
*fw_ddb_entry
= NULL
;
7590 dma_addr_t fw_ddb_entry_dma
;
7591 unsigned long flags
;
7592 unsigned long wtime
;
7597 sess
= cls_sess
->dd_data
;
7598 ddb_entry
= sess
->dd_data
;
7601 if (ddb_entry
->ddb_type
!= FLASH_DDB
) {
7602 ql4_printk(KERN_ERR
, ha
, "%s: Not a flash node session\n",
7605 goto exit_ddb_logout
;
7608 if (test_bit(DF_BOOT_TGT
, &ddb_entry
->flags
)) {
7609 ql4_printk(KERN_ERR
, ha
,
7610 "%s: Logout from boot target entry is not permitted.\n",
7613 goto exit_ddb_logout
;
7616 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
7617 &fw_ddb_entry_dma
, GFP_KERNEL
);
7618 if (!fw_ddb_entry
) {
7619 ql4_printk(KERN_ERR
, ha
,
7620 "%s: Unable to allocate dma buffer\n", __func__
);
7622 goto exit_ddb_logout
;
7625 if (test_and_set_bit(DF_DISABLE_RELOGIN
, &ddb_entry
->flags
))
7626 goto ddb_logout_init
;
7628 ret
= qla4xxx_get_fwddb_entry(ha
, ddb_entry
->fw_ddb_index
,
7629 fw_ddb_entry
, fw_ddb_entry_dma
,
7630 NULL
, NULL
, &ddb_state
, NULL
,
7632 if (ret
== QLA_ERROR
)
7633 goto ddb_logout_init
;
7635 if (ddb_state
== DDB_DS_SESSION_ACTIVE
)
7636 goto ddb_logout_init
;
7638 /* wait until next relogin is triggered using DF_RELOGIN and
7639 * clear DF_RELOGIN to avoid invocation of further relogin
7641 wtime
= jiffies
+ (HZ
* RELOGIN_TOV
);
7643 if (test_and_clear_bit(DF_RELOGIN
, &ddb_entry
->flags
))
7644 goto ddb_logout_init
;
7646 schedule_timeout_uninterruptible(HZ
);
7647 } while ((time_after(wtime
, jiffies
)));
7650 atomic_set(&ddb_entry
->retry_relogin_timer
, INVALID_ENTRY
);
7651 atomic_set(&ddb_entry
->relogin_timer
, 0);
7653 options
= LOGOUT_OPTION_CLOSE_SESSION
;
7654 qla4xxx_session_logout_ddb(ha
, ddb_entry
, options
);
7656 memset(fw_ddb_entry
, 0, sizeof(*fw_ddb_entry
));
7657 wtime
= jiffies
+ (HZ
* LOGOUT_TOV
);
7659 ret
= qla4xxx_get_fwddb_entry(ha
, ddb_entry
->fw_ddb_index
,
7660 fw_ddb_entry
, fw_ddb_entry_dma
,
7661 NULL
, NULL
, &ddb_state
, NULL
,
7663 if (ret
== QLA_ERROR
)
7664 goto ddb_logout_clr_sess
;
7666 if ((ddb_state
== DDB_DS_NO_CONNECTION_ACTIVE
) ||
7667 (ddb_state
== DDB_DS_SESSION_FAILED
))
7668 goto ddb_logout_clr_sess
;
7670 schedule_timeout_uninterruptible(HZ
);
7671 } while ((time_after(wtime
, jiffies
)));
7673 ddb_logout_clr_sess
:
7674 qla4xxx_clear_ddb_entry(ha
, ddb_entry
->fw_ddb_index
);
7676 * we have decremented the reference count of the driver
7677 * when we setup the session to have the driver unload
7678 * to be seamless without actually destroying the
7681 try_module_get(qla4xxx_iscsi_transport
.owner
);
7682 iscsi_destroy_endpoint(ddb_entry
->conn
->ep
);
7684 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
7685 qla4xxx_free_ddb(ha
, ddb_entry
);
7686 clear_bit(ddb_entry
->fw_ddb_index
, ha
->ddb_idx_map
);
7687 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
7689 iscsi_session_teardown(ddb_entry
->sess
);
7691 clear_bit(DF_DISABLE_RELOGIN
, &ddb_entry
->flags
);
7696 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
7697 fw_ddb_entry
, fw_ddb_entry_dma
);
7702 * qla4xxx_sysfs_ddb_logout - Logout from the specified target
7703 * @fnode_sess: pointer to session attrs of flash ddb entry
7704 * @fnode_conn: pointer to connection attrs of flash ddb entry
7706 * This performs log out from the specified target
7708 static int qla4xxx_sysfs_ddb_logout(struct iscsi_bus_flash_session
*fnode_sess
,
7709 struct iscsi_bus_flash_conn
*fnode_conn
)
7711 struct Scsi_Host
*shost
= iscsi_flash_session_to_shost(fnode_sess
);
7712 struct scsi_qla_host
*ha
= to_qla_host(shost
);
7713 struct ql4_tuple_ddb
*flash_tddb
= NULL
;
7714 struct ql4_tuple_ddb
*tmp_tddb
= NULL
;
7715 struct dev_db_entry
*fw_ddb_entry
= NULL
;
7716 struct ddb_entry
*ddb_entry
= NULL
;
7717 dma_addr_t fw_ddb_dma
;
7718 uint32_t next_idx
= 0;
7719 uint32_t state
= 0, conn_err
= 0;
7720 uint16_t conn_id
= 0;
7722 int status
, ret
= 0;
7724 fw_ddb_entry
= dma_pool_alloc(ha
->fw_ddb_dma_pool
, GFP_KERNEL
,
7726 if (fw_ddb_entry
== NULL
) {
7727 ql4_printk(KERN_ERR
, ha
, "%s:Out of memory\n", __func__
);
7729 goto exit_ddb_logout
;
7732 flash_tddb
= vzalloc(sizeof(*flash_tddb
));
7734 ql4_printk(KERN_WARNING
, ha
,
7735 "%s:Memory Allocation failed.\n", __func__
);
7737 goto exit_ddb_logout
;
7740 tmp_tddb
= vzalloc(sizeof(*tmp_tddb
));
7742 ql4_printk(KERN_WARNING
, ha
,
7743 "%s:Memory Allocation failed.\n", __func__
);
7745 goto exit_ddb_logout
;
7748 if (!fnode_sess
->targetname
) {
7749 ql4_printk(KERN_ERR
, ha
,
7750 "%s:Cannot logout from SendTarget entry\n",
7753 goto exit_ddb_logout
;
7756 if (fnode_sess
->is_boot_target
) {
7757 ql4_printk(KERN_ERR
, ha
,
7758 "%s: Logout from boot target entry is not permitted.\n",
7761 goto exit_ddb_logout
;
7764 strlcpy(flash_tddb
->iscsi_name
, fnode_sess
->targetname
,
7767 if (!strncmp(fnode_sess
->portal_type
, PORTAL_TYPE_IPV6
, 4))
7768 sprintf(flash_tddb
->ip_addr
, "%pI6", fnode_conn
->ipaddress
);
7770 sprintf(flash_tddb
->ip_addr
, "%pI4", fnode_conn
->ipaddress
);
7772 flash_tddb
->tpgt
= fnode_sess
->tpgt
;
7773 flash_tddb
->port
= fnode_conn
->port
;
7775 COPY_ISID(flash_tddb
->isid
, fnode_sess
->isid
);
7777 for (idx
= 0; idx
< MAX_DDB_ENTRIES
; idx
++) {
7778 ddb_entry
= qla4xxx_lookup_ddb_by_fw_index(ha
, idx
);
7779 if (ddb_entry
== NULL
)
7782 if (ddb_entry
->ddb_type
!= FLASH_DDB
)
7785 index
= ddb_entry
->sess
->target_id
;
7786 status
= qla4xxx_get_fwddb_entry(ha
, index
, fw_ddb_entry
,
7787 fw_ddb_dma
, NULL
, &next_idx
,
7788 &state
, &conn_err
, NULL
,
7790 if (status
== QLA_ERROR
) {
7795 qla4xxx_convert_param_ddb(fw_ddb_entry
, tmp_tddb
, NULL
);
7797 status
= qla4xxx_compare_tuple_ddb(ha
, flash_tddb
, tmp_tddb
,
7799 if (status
== QLA_SUCCESS
) {
7800 ret
= qla4xxx_sysfs_ddb_logout_sid(ddb_entry
->sess
);
7805 if (idx
== MAX_DDB_ENTRIES
)
7814 dma_pool_free(ha
->fw_ddb_dma_pool
, fw_ddb_entry
, fw_ddb_dma
);
7820 qla4xxx_sysfs_ddb_get_param(struct iscsi_bus_flash_session
*fnode_sess
,
7821 int param
, char *buf
)
7823 struct Scsi_Host
*shost
= iscsi_flash_session_to_shost(fnode_sess
);
7824 struct scsi_qla_host
*ha
= to_qla_host(shost
);
7825 struct iscsi_bus_flash_conn
*fnode_conn
;
7826 struct ql4_chap_table chap_tbl
;
7831 dev
= iscsi_find_flashnode_conn(fnode_sess
);
7835 fnode_conn
= iscsi_dev_to_flash_conn(dev
);
7838 case ISCSI_FLASHNODE_IS_FW_ASSIGNED_IPV6
:
7839 rc
= sprintf(buf
, "%u\n", fnode_conn
->is_fw_assigned_ipv6
);
7841 case ISCSI_FLASHNODE_PORTAL_TYPE
:
7842 rc
= sprintf(buf
, "%s\n", fnode_sess
->portal_type
);
7844 case ISCSI_FLASHNODE_AUTO_SND_TGT_DISABLE
:
7845 rc
= sprintf(buf
, "%u\n", fnode_sess
->auto_snd_tgt_disable
);
7847 case ISCSI_FLASHNODE_DISCOVERY_SESS
:
7848 rc
= sprintf(buf
, "%u\n", fnode_sess
->discovery_sess
);
7850 case ISCSI_FLASHNODE_ENTRY_EN
:
7851 rc
= sprintf(buf
, "%u\n", fnode_sess
->entry_state
);
7853 case ISCSI_FLASHNODE_HDR_DGST_EN
:
7854 rc
= sprintf(buf
, "%u\n", fnode_conn
->hdrdgst_en
);
7856 case ISCSI_FLASHNODE_DATA_DGST_EN
:
7857 rc
= sprintf(buf
, "%u\n", fnode_conn
->datadgst_en
);
7859 case ISCSI_FLASHNODE_IMM_DATA_EN
:
7860 rc
= sprintf(buf
, "%u\n", fnode_sess
->imm_data_en
);
7862 case ISCSI_FLASHNODE_INITIAL_R2T_EN
:
7863 rc
= sprintf(buf
, "%u\n", fnode_sess
->initial_r2t_en
);
7865 case ISCSI_FLASHNODE_DATASEQ_INORDER
:
7866 rc
= sprintf(buf
, "%u\n", fnode_sess
->dataseq_inorder_en
);
7868 case ISCSI_FLASHNODE_PDU_INORDER
:
7869 rc
= sprintf(buf
, "%u\n", fnode_sess
->pdu_inorder_en
);
7871 case ISCSI_FLASHNODE_CHAP_AUTH_EN
:
7872 rc
= sprintf(buf
, "%u\n", fnode_sess
->chap_auth_en
);
7874 case ISCSI_FLASHNODE_SNACK_REQ_EN
:
7875 rc
= sprintf(buf
, "%u\n", fnode_conn
->snack_req_en
);
7877 case ISCSI_FLASHNODE_DISCOVERY_LOGOUT_EN
:
7878 rc
= sprintf(buf
, "%u\n", fnode_sess
->discovery_logout_en
);
7880 case ISCSI_FLASHNODE_BIDI_CHAP_EN
:
7881 rc
= sprintf(buf
, "%u\n", fnode_sess
->bidi_chap_en
);
7883 case ISCSI_FLASHNODE_DISCOVERY_AUTH_OPTIONAL
:
7884 rc
= sprintf(buf
, "%u\n", fnode_sess
->discovery_auth_optional
);
7886 case ISCSI_FLASHNODE_ERL
:
7887 rc
= sprintf(buf
, "%u\n", fnode_sess
->erl
);
7889 case ISCSI_FLASHNODE_TCP_TIMESTAMP_STAT
:
7890 rc
= sprintf(buf
, "%u\n", fnode_conn
->tcp_timestamp_stat
);
7892 case ISCSI_FLASHNODE_TCP_NAGLE_DISABLE
:
7893 rc
= sprintf(buf
, "%u\n", fnode_conn
->tcp_nagle_disable
);
7895 case ISCSI_FLASHNODE_TCP_WSF_DISABLE
:
7896 rc
= sprintf(buf
, "%u\n", fnode_conn
->tcp_wsf_disable
);
7898 case ISCSI_FLASHNODE_TCP_TIMER_SCALE
:
7899 rc
= sprintf(buf
, "%u\n", fnode_conn
->tcp_timer_scale
);
7901 case ISCSI_FLASHNODE_TCP_TIMESTAMP_EN
:
7902 rc
= sprintf(buf
, "%u\n", fnode_conn
->tcp_timestamp_en
);
7904 case ISCSI_FLASHNODE_IP_FRAG_DISABLE
:
7905 rc
= sprintf(buf
, "%u\n", fnode_conn
->fragment_disable
);
7907 case ISCSI_FLASHNODE_MAX_RECV_DLENGTH
:
7908 rc
= sprintf(buf
, "%u\n", fnode_conn
->max_recv_dlength
);
7910 case ISCSI_FLASHNODE_MAX_XMIT_DLENGTH
:
7911 rc
= sprintf(buf
, "%u\n", fnode_conn
->max_xmit_dlength
);
7913 case ISCSI_FLASHNODE_FIRST_BURST
:
7914 rc
= sprintf(buf
, "%u\n", fnode_sess
->first_burst
);
7916 case ISCSI_FLASHNODE_DEF_TIME2WAIT
:
7917 rc
= sprintf(buf
, "%u\n", fnode_sess
->time2wait
);
7919 case ISCSI_FLASHNODE_DEF_TIME2RETAIN
:
7920 rc
= sprintf(buf
, "%u\n", fnode_sess
->time2retain
);
7922 case ISCSI_FLASHNODE_MAX_R2T
:
7923 rc
= sprintf(buf
, "%u\n", fnode_sess
->max_r2t
);
7925 case ISCSI_FLASHNODE_KEEPALIVE_TMO
:
7926 rc
= sprintf(buf
, "%u\n", fnode_conn
->keepalive_timeout
);
7928 case ISCSI_FLASHNODE_ISID
:
7929 rc
= sprintf(buf
, "%02x%02x%02x%02x%02x%02x\n",
7930 fnode_sess
->isid
[0], fnode_sess
->isid
[1],
7931 fnode_sess
->isid
[2], fnode_sess
->isid
[3],
7932 fnode_sess
->isid
[4], fnode_sess
->isid
[5]);
7934 case ISCSI_FLASHNODE_TSID
:
7935 rc
= sprintf(buf
, "%u\n", fnode_sess
->tsid
);
7937 case ISCSI_FLASHNODE_PORT
:
7938 rc
= sprintf(buf
, "%d\n", fnode_conn
->port
);
7940 case ISCSI_FLASHNODE_MAX_BURST
:
7941 rc
= sprintf(buf
, "%u\n", fnode_sess
->max_burst
);
7943 case ISCSI_FLASHNODE_DEF_TASKMGMT_TMO
:
7944 rc
= sprintf(buf
, "%u\n",
7945 fnode_sess
->default_taskmgmt_timeout
);
7947 case ISCSI_FLASHNODE_IPADDR
:
7948 if (!strncmp(fnode_sess
->portal_type
, PORTAL_TYPE_IPV6
, 4))
7949 rc
= sprintf(buf
, "%pI6\n", fnode_conn
->ipaddress
);
7951 rc
= sprintf(buf
, "%pI4\n", fnode_conn
->ipaddress
);
7953 case ISCSI_FLASHNODE_ALIAS
:
7954 if (fnode_sess
->targetalias
)
7955 rc
= sprintf(buf
, "%s\n", fnode_sess
->targetalias
);
7957 rc
= sprintf(buf
, "\n");
7959 case ISCSI_FLASHNODE_REDIRECT_IPADDR
:
7960 if (!strncmp(fnode_sess
->portal_type
, PORTAL_TYPE_IPV6
, 4))
7961 rc
= sprintf(buf
, "%pI6\n",
7962 fnode_conn
->redirect_ipaddr
);
7964 rc
= sprintf(buf
, "%pI4\n",
7965 fnode_conn
->redirect_ipaddr
);
7967 case ISCSI_FLASHNODE_MAX_SEGMENT_SIZE
:
7968 rc
= sprintf(buf
, "%u\n", fnode_conn
->max_segment_size
);
7970 case ISCSI_FLASHNODE_LOCAL_PORT
:
7971 rc
= sprintf(buf
, "%u\n", fnode_conn
->local_port
);
7973 case ISCSI_FLASHNODE_IPV4_TOS
:
7974 rc
= sprintf(buf
, "%u\n", fnode_conn
->ipv4_tos
);
7976 case ISCSI_FLASHNODE_IPV6_TC
:
7977 if (!strncmp(fnode_sess
->portal_type
, PORTAL_TYPE_IPV6
, 4))
7978 rc
= sprintf(buf
, "%u\n",
7979 fnode_conn
->ipv6_traffic_class
);
7981 rc
= sprintf(buf
, "\n");
7983 case ISCSI_FLASHNODE_IPV6_FLOW_LABEL
:
7984 rc
= sprintf(buf
, "%u\n", fnode_conn
->ipv6_flow_label
);
7986 case ISCSI_FLASHNODE_LINK_LOCAL_IPV6
:
7987 if (!strncmp(fnode_sess
->portal_type
, PORTAL_TYPE_IPV6
, 4))
7988 rc
= sprintf(buf
, "%pI6\n",
7989 fnode_conn
->link_local_ipv6_addr
);
7991 rc
= sprintf(buf
, "\n");
7993 case ISCSI_FLASHNODE_DISCOVERY_PARENT_IDX
:
7994 rc
= sprintf(buf
, "%u\n", fnode_sess
->discovery_parent_idx
);
7996 case ISCSI_FLASHNODE_DISCOVERY_PARENT_TYPE
:
7997 if (fnode_sess
->discovery_parent_type
== DDB_ISNS
)
7998 parent_type
= ISCSI_DISC_PARENT_ISNS
;
7999 else if (fnode_sess
->discovery_parent_type
== DDB_NO_LINK
)
8000 parent_type
= ISCSI_DISC_PARENT_UNKNOWN
;
8001 else if (fnode_sess
->discovery_parent_type
< MAX_DDB_ENTRIES
)
8002 parent_type
= ISCSI_DISC_PARENT_SENDTGT
;
8004 parent_type
= ISCSI_DISC_PARENT_UNKNOWN
;
8006 rc
= sprintf(buf
, "%s\n",
8007 iscsi_get_discovery_parent_name(parent_type
));
8009 case ISCSI_FLASHNODE_NAME
:
8010 if (fnode_sess
->targetname
)
8011 rc
= sprintf(buf
, "%s\n", fnode_sess
->targetname
);
8013 rc
= sprintf(buf
, "\n");
8015 case ISCSI_FLASHNODE_TPGT
:
8016 rc
= sprintf(buf
, "%u\n", fnode_sess
->tpgt
);
8018 case ISCSI_FLASHNODE_TCP_XMIT_WSF
:
8019 rc
= sprintf(buf
, "%u\n", fnode_conn
->tcp_xmit_wsf
);
8021 case ISCSI_FLASHNODE_TCP_RECV_WSF
:
8022 rc
= sprintf(buf
, "%u\n", fnode_conn
->tcp_recv_wsf
);
8024 case ISCSI_FLASHNODE_CHAP_OUT_IDX
:
8025 rc
= sprintf(buf
, "%u\n", fnode_sess
->chap_out_idx
);
8027 case ISCSI_FLASHNODE_USERNAME
:
8028 if (fnode_sess
->chap_auth_en
) {
8029 qla4xxx_get_uni_chap_at_index(ha
,
8032 fnode_sess
->chap_out_idx
);
8033 rc
= sprintf(buf
, "%s\n", chap_tbl
.name
);
8035 rc
= sprintf(buf
, "\n");
8038 case ISCSI_FLASHNODE_PASSWORD
:
8039 if (fnode_sess
->chap_auth_en
) {
8040 qla4xxx_get_uni_chap_at_index(ha
,
8043 fnode_sess
->chap_out_idx
);
8044 rc
= sprintf(buf
, "%s\n", chap_tbl
.secret
);
8046 rc
= sprintf(buf
, "\n");
8049 case ISCSI_FLASHNODE_STATSN
:
8050 rc
= sprintf(buf
, "%u\n", fnode_conn
->statsn
);
8052 case ISCSI_FLASHNODE_EXP_STATSN
:
8053 rc
= sprintf(buf
, "%u\n", fnode_conn
->exp_statsn
);
8055 case ISCSI_FLASHNODE_IS_BOOT_TGT
:
8056 rc
= sprintf(buf
, "%u\n", fnode_sess
->is_boot_target
);
8068 * qla4xxx_sysfs_ddb_set_param - Set parameter for firmware DDB entry
8069 * @fnode_sess: pointer to session attrs of flash ddb entry
8070 * @fnode_conn: pointer to connection attrs of flash ddb entry
8071 * @data: Parameters and their values to update
8074 * This sets the parameter of flash ddb entry and writes them to flash
8077 qla4xxx_sysfs_ddb_set_param(struct iscsi_bus_flash_session
*fnode_sess
,
8078 struct iscsi_bus_flash_conn
*fnode_conn
,
8079 void *data
, int len
)
8081 struct Scsi_Host
*shost
= iscsi_flash_session_to_shost(fnode_sess
);
8082 struct scsi_qla_host
*ha
= to_qla_host(shost
);
8083 struct iscsi_flashnode_param_info
*fnode_param
;
8084 struct ql4_chap_table chap_tbl
;
8085 struct nlattr
*attr
;
8086 uint16_t chap_out_idx
= INVALID_ENTRY
;
8090 memset((void *)&chap_tbl
, 0, sizeof(chap_tbl
));
8091 nla_for_each_attr(attr
, data
, len
, rem
) {
8092 fnode_param
= nla_data(attr
);
8094 switch (fnode_param
->param
) {
8095 case ISCSI_FLASHNODE_IS_FW_ASSIGNED_IPV6
:
8096 fnode_conn
->is_fw_assigned_ipv6
= fnode_param
->value
[0];
8098 case ISCSI_FLASHNODE_PORTAL_TYPE
:
8099 memcpy(fnode_sess
->portal_type
, fnode_param
->value
,
8100 strlen(fnode_sess
->portal_type
));
8102 case ISCSI_FLASHNODE_AUTO_SND_TGT_DISABLE
:
8103 fnode_sess
->auto_snd_tgt_disable
=
8104 fnode_param
->value
[0];
8106 case ISCSI_FLASHNODE_DISCOVERY_SESS
:
8107 fnode_sess
->discovery_sess
= fnode_param
->value
[0];
8109 case ISCSI_FLASHNODE_ENTRY_EN
:
8110 fnode_sess
->entry_state
= fnode_param
->value
[0];
8112 case ISCSI_FLASHNODE_HDR_DGST_EN
:
8113 fnode_conn
->hdrdgst_en
= fnode_param
->value
[0];
8115 case ISCSI_FLASHNODE_DATA_DGST_EN
:
8116 fnode_conn
->datadgst_en
= fnode_param
->value
[0];
8118 case ISCSI_FLASHNODE_IMM_DATA_EN
:
8119 fnode_sess
->imm_data_en
= fnode_param
->value
[0];
8121 case ISCSI_FLASHNODE_INITIAL_R2T_EN
:
8122 fnode_sess
->initial_r2t_en
= fnode_param
->value
[0];
8124 case ISCSI_FLASHNODE_DATASEQ_INORDER
:
8125 fnode_sess
->dataseq_inorder_en
= fnode_param
->value
[0];
8127 case ISCSI_FLASHNODE_PDU_INORDER
:
8128 fnode_sess
->pdu_inorder_en
= fnode_param
->value
[0];
8130 case ISCSI_FLASHNODE_CHAP_AUTH_EN
:
8131 fnode_sess
->chap_auth_en
= fnode_param
->value
[0];
8132 /* Invalidate chap index if chap auth is disabled */
8133 if (!fnode_sess
->chap_auth_en
)
8134 fnode_sess
->chap_out_idx
= INVALID_ENTRY
;
8137 case ISCSI_FLASHNODE_SNACK_REQ_EN
:
8138 fnode_conn
->snack_req_en
= fnode_param
->value
[0];
8140 case ISCSI_FLASHNODE_DISCOVERY_LOGOUT_EN
:
8141 fnode_sess
->discovery_logout_en
= fnode_param
->value
[0];
8143 case ISCSI_FLASHNODE_BIDI_CHAP_EN
:
8144 fnode_sess
->bidi_chap_en
= fnode_param
->value
[0];
8146 case ISCSI_FLASHNODE_DISCOVERY_AUTH_OPTIONAL
:
8147 fnode_sess
->discovery_auth_optional
=
8148 fnode_param
->value
[0];
8150 case ISCSI_FLASHNODE_ERL
:
8151 fnode_sess
->erl
= fnode_param
->value
[0];
8153 case ISCSI_FLASHNODE_TCP_TIMESTAMP_STAT
:
8154 fnode_conn
->tcp_timestamp_stat
= fnode_param
->value
[0];
8156 case ISCSI_FLASHNODE_TCP_NAGLE_DISABLE
:
8157 fnode_conn
->tcp_nagle_disable
= fnode_param
->value
[0];
8159 case ISCSI_FLASHNODE_TCP_WSF_DISABLE
:
8160 fnode_conn
->tcp_wsf_disable
= fnode_param
->value
[0];
8162 case ISCSI_FLASHNODE_TCP_TIMER_SCALE
:
8163 fnode_conn
->tcp_timer_scale
= fnode_param
->value
[0];
8165 case ISCSI_FLASHNODE_TCP_TIMESTAMP_EN
:
8166 fnode_conn
->tcp_timestamp_en
= fnode_param
->value
[0];
8168 case ISCSI_FLASHNODE_IP_FRAG_DISABLE
:
8169 fnode_conn
->fragment_disable
= fnode_param
->value
[0];
8171 case ISCSI_FLASHNODE_MAX_RECV_DLENGTH
:
8172 fnode_conn
->max_recv_dlength
=
8173 *(unsigned *)fnode_param
->value
;
8175 case ISCSI_FLASHNODE_MAX_XMIT_DLENGTH
:
8176 fnode_conn
->max_xmit_dlength
=
8177 *(unsigned *)fnode_param
->value
;
8179 case ISCSI_FLASHNODE_FIRST_BURST
:
8180 fnode_sess
->first_burst
=
8181 *(unsigned *)fnode_param
->value
;
8183 case ISCSI_FLASHNODE_DEF_TIME2WAIT
:
8184 fnode_sess
->time2wait
= *(uint16_t *)fnode_param
->value
;
8186 case ISCSI_FLASHNODE_DEF_TIME2RETAIN
:
8187 fnode_sess
->time2retain
=
8188 *(uint16_t *)fnode_param
->value
;
8190 case ISCSI_FLASHNODE_MAX_R2T
:
8191 fnode_sess
->max_r2t
=
8192 *(uint16_t *)fnode_param
->value
;
8194 case ISCSI_FLASHNODE_KEEPALIVE_TMO
:
8195 fnode_conn
->keepalive_timeout
=
8196 *(uint16_t *)fnode_param
->value
;
8198 case ISCSI_FLASHNODE_ISID
:
8199 memcpy(fnode_sess
->isid
, fnode_param
->value
,
8200 sizeof(fnode_sess
->isid
));
8202 case ISCSI_FLASHNODE_TSID
:
8203 fnode_sess
->tsid
= *(uint16_t *)fnode_param
->value
;
8205 case ISCSI_FLASHNODE_PORT
:
8206 fnode_conn
->port
= *(uint16_t *)fnode_param
->value
;
8208 case ISCSI_FLASHNODE_MAX_BURST
:
8209 fnode_sess
->max_burst
= *(unsigned *)fnode_param
->value
;
8211 case ISCSI_FLASHNODE_DEF_TASKMGMT_TMO
:
8212 fnode_sess
->default_taskmgmt_timeout
=
8213 *(uint16_t *)fnode_param
->value
;
8215 case ISCSI_FLASHNODE_IPADDR
:
8216 memcpy(fnode_conn
->ipaddress
, fnode_param
->value
,
8219 case ISCSI_FLASHNODE_ALIAS
:
8220 rc
= iscsi_switch_str_param(&fnode_sess
->targetalias
,
8221 (char *)fnode_param
->value
);
8223 case ISCSI_FLASHNODE_REDIRECT_IPADDR
:
8224 memcpy(fnode_conn
->redirect_ipaddr
, fnode_param
->value
,
8227 case ISCSI_FLASHNODE_MAX_SEGMENT_SIZE
:
8228 fnode_conn
->max_segment_size
=
8229 *(unsigned *)fnode_param
->value
;
8231 case ISCSI_FLASHNODE_LOCAL_PORT
:
8232 fnode_conn
->local_port
=
8233 *(uint16_t *)fnode_param
->value
;
8235 case ISCSI_FLASHNODE_IPV4_TOS
:
8236 fnode_conn
->ipv4_tos
= fnode_param
->value
[0];
8238 case ISCSI_FLASHNODE_IPV6_TC
:
8239 fnode_conn
->ipv6_traffic_class
= fnode_param
->value
[0];
8241 case ISCSI_FLASHNODE_IPV6_FLOW_LABEL
:
8242 fnode_conn
->ipv6_flow_label
= fnode_param
->value
[0];
8244 case ISCSI_FLASHNODE_NAME
:
8245 rc
= iscsi_switch_str_param(&fnode_sess
->targetname
,
8246 (char *)fnode_param
->value
);
8248 case ISCSI_FLASHNODE_TPGT
:
8249 fnode_sess
->tpgt
= *(uint16_t *)fnode_param
->value
;
8251 case ISCSI_FLASHNODE_LINK_LOCAL_IPV6
:
8252 memcpy(fnode_conn
->link_local_ipv6_addr
,
8253 fnode_param
->value
, IPv6_ADDR_LEN
);
8255 case ISCSI_FLASHNODE_DISCOVERY_PARENT_IDX
:
8256 fnode_sess
->discovery_parent_idx
=
8257 *(uint16_t *)fnode_param
->value
;
8259 case ISCSI_FLASHNODE_TCP_XMIT_WSF
:
8260 fnode_conn
->tcp_xmit_wsf
=
8261 *(uint8_t *)fnode_param
->value
;
8263 case ISCSI_FLASHNODE_TCP_RECV_WSF
:
8264 fnode_conn
->tcp_recv_wsf
=
8265 *(uint8_t *)fnode_param
->value
;
8267 case ISCSI_FLASHNODE_STATSN
:
8268 fnode_conn
->statsn
= *(uint32_t *)fnode_param
->value
;
8270 case ISCSI_FLASHNODE_EXP_STATSN
:
8271 fnode_conn
->exp_statsn
=
8272 *(uint32_t *)fnode_param
->value
;
8274 case ISCSI_FLASHNODE_CHAP_OUT_IDX
:
8275 chap_out_idx
= *(uint16_t *)fnode_param
->value
;
8276 if (!qla4xxx_get_uni_chap_at_index(ha
,
8280 fnode_sess
->chap_out_idx
= chap_out_idx
;
8281 /* Enable chap auth if chap index is valid */
8282 fnode_sess
->chap_auth_en
= QL4_PARAM_ENABLE
;
8286 ql4_printk(KERN_ERR
, ha
,
8287 "%s: No such sysfs attribute\n", __func__
);
8289 goto exit_set_param
;
8293 rc
= qla4xxx_sysfs_ddb_apply(fnode_sess
, fnode_conn
);
8300 * qla4xxx_sysfs_ddb_delete - Delete firmware DDB entry
8301 * @fnode_sess: pointer to session attrs of flash ddb entry
8303 * This invalidates the flash ddb entry at the given index
8305 static int qla4xxx_sysfs_ddb_delete(struct iscsi_bus_flash_session
*fnode_sess
)
8307 struct Scsi_Host
*shost
= iscsi_flash_session_to_shost(fnode_sess
);
8308 struct scsi_qla_host
*ha
= to_qla_host(shost
);
8309 uint32_t dev_db_start_offset
;
8310 uint32_t dev_db_end_offset
;
8311 struct dev_db_entry
*fw_ddb_entry
= NULL
;
8312 dma_addr_t fw_ddb_entry_dma
;
8313 uint16_t *ddb_cookie
= NULL
;
8314 size_t ddb_size
= 0;
8319 if (fnode_sess
->is_boot_target
) {
8321 DEBUG2(ql4_printk(KERN_ERR
, ha
,
8322 "%s: Deletion of boot target entry is not permitted.\n",
8327 if (fnode_sess
->flash_state
== DEV_DB_NON_PERSISTENT
)
8330 if (is_qla40XX(ha
)) {
8331 dev_db_start_offset
= FLASH_OFFSET_DB_INFO
;
8332 dev_db_end_offset
= FLASH_OFFSET_DB_END
;
8333 dev_db_start_offset
+= (fnode_sess
->target_id
*
8334 sizeof(*fw_ddb_entry
));
8335 ddb_size
= sizeof(*fw_ddb_entry
);
8337 dev_db_start_offset
= FLASH_RAW_ACCESS_ADDR
+
8338 (ha
->hw
.flt_region_ddb
<< 2);
8339 /* flt_ddb_size is DDB table size for both ports
8340 * so divide it by 2 to calculate the offset for second port
8342 if (ha
->port_num
== 1)
8343 dev_db_start_offset
+= (ha
->hw
.flt_ddb_size
/ 2);
8345 dev_db_end_offset
= dev_db_start_offset
+
8346 (ha
->hw
.flt_ddb_size
/ 2);
8348 dev_db_start_offset
+= (fnode_sess
->target_id
*
8349 sizeof(*fw_ddb_entry
));
8350 dev_db_start_offset
+= offsetof(struct dev_db_entry
, cookie
);
8352 ddb_size
= sizeof(*ddb_cookie
);
8355 DEBUG2(ql4_printk(KERN_ERR
, ha
, "%s: start offset=%u, end offset=%u\n",
8356 __func__
, dev_db_start_offset
, dev_db_end_offset
));
8358 if (dev_db_start_offset
> dev_db_end_offset
) {
8360 DEBUG2(ql4_printk(KERN_ERR
, ha
, "%s:Invalid DDB index %u\n",
8361 __func__
, fnode_sess
->target_id
));
8365 pddb
= dma_alloc_coherent(&ha
->pdev
->dev
, ddb_size
,
8366 &fw_ddb_entry_dma
, GFP_KERNEL
);
8369 DEBUG2(ql4_printk(KERN_ERR
, ha
,
8370 "%s: Unable to allocate dma buffer\n",
8375 if (is_qla40XX(ha
)) {
8376 fw_ddb_entry
= pddb
;
8377 memset(fw_ddb_entry
, 0, ddb_size
);
8378 ddb_cookie
= &fw_ddb_entry
->cookie
;
8383 /* invalidate the cookie */
8384 *ddb_cookie
= 0xFFEE;
8385 qla4xxx_set_flash(ha
, fw_ddb_entry_dma
, dev_db_start_offset
,
8386 ddb_size
, FLASH_OPT_RMW_COMMIT
);
8389 target_id
= fnode_sess
->target_id
;
8390 iscsi_destroy_flashnode_sess(fnode_sess
);
8391 ql4_printk(KERN_INFO
, ha
,
8392 "%s: session and conn entries for flashnode %u of host %lu deleted\n",
8393 __func__
, target_id
, ha
->host_no
);
8396 dma_free_coherent(&ha
->pdev
->dev
, ddb_size
, pddb
,
8402 * qla4xxx_sysfs_ddb_export - Create sysfs entries for firmware DDBs
8403 * @ha: pointer to adapter structure
8405 * Export the firmware DDB for all send targets and normal targets to sysfs.
8407 int qla4xxx_sysfs_ddb_export(struct scsi_qla_host
*ha
)
8409 struct dev_db_entry
*fw_ddb_entry
= NULL
;
8410 dma_addr_t fw_ddb_entry_dma
;
8413 int ret
= QLA_SUCCESS
;
8415 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
,
8416 sizeof(*fw_ddb_entry
),
8417 &fw_ddb_entry_dma
, GFP_KERNEL
);
8418 if (!fw_ddb_entry
) {
8419 DEBUG2(ql4_printk(KERN_ERR
, ha
,
8420 "%s: Unable to allocate dma buffer\n",
8425 max_ddbs
= is_qla40XX(ha
) ? MAX_PRST_DEV_DB_ENTRIES
:
8428 for (idx
= 0; idx
< max_ddbs
; idx
++) {
8429 if (qla4xxx_flashdb_by_index(ha
, fw_ddb_entry
, fw_ddb_entry_dma
,
8433 ret
= qla4xxx_sysfs_ddb_tgt_create(ha
, fw_ddb_entry
, &idx
, 0);
8440 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
), fw_ddb_entry
,
8446 static void qla4xxx_sysfs_ddb_remove(struct scsi_qla_host
*ha
)
8448 iscsi_destroy_all_flashnode(ha
->host
);
8452 * qla4xxx_build_ddb_list - Build ddb list and setup sessions
8453 * @ha: pointer to adapter structure
8454 * @is_reset: Is this init path or reset path
8456 * Create a list of sendtargets (st) from firmware DDBs, issue send targets
8457 * using connection open, then create the list of normal targets (nt)
8458 * from firmware DDBs. Based on the list of nt setup session and connection
8461 void qla4xxx_build_ddb_list(struct scsi_qla_host
*ha
, int is_reset
)
8464 struct list_head list_st
, list_nt
;
8465 struct qla_ddb_index
*st_ddb_idx
, *st_ddb_idx_tmp
;
8466 unsigned long wtime
;
8468 if (!test_bit(AF_LINK_UP
, &ha
->flags
)) {
8469 set_bit(AF_BUILD_DDB_LIST
, &ha
->flags
);
8470 ha
->is_reset
= is_reset
;
8474 INIT_LIST_HEAD(&list_st
);
8475 INIT_LIST_HEAD(&list_nt
);
8477 qla4xxx_build_st_list(ha
, &list_st
);
8479 /* Before issuing conn open mbox, ensure all IPs states are configured
8480 * Note, conn open fails if IPs are not configured
8482 qla4xxx_wait_for_ip_configuration(ha
);
8484 /* Go thru the STs and fire the sendtargets by issuing conn open mbx */
8485 list_for_each_entry_safe(st_ddb_idx
, st_ddb_idx_tmp
, &list_st
, list
) {
8486 qla4xxx_conn_open(ha
, st_ddb_idx
->fw_ddb_idx
);
8489 /* Wait to ensure all sendtargets are done for min 12 sec wait */
8490 tmo
= ((ha
->def_timeout
> LOGIN_TOV
) &&
8491 (ha
->def_timeout
< LOGIN_TOV
* 10) ?
8492 ha
->def_timeout
: LOGIN_TOV
);
8494 DEBUG2(ql4_printk(KERN_INFO
, ha
,
8495 "Default time to wait for build ddb %d\n", tmo
));
8497 wtime
= jiffies
+ (HZ
* tmo
);
8499 if (list_empty(&list_st
))
8502 qla4xxx_remove_failed_ddb(ha
, &list_st
);
8503 schedule_timeout_uninterruptible(HZ
/ 10);
8504 } while (time_after(wtime
, jiffies
));
8507 qla4xxx_build_nt_list(ha
, &list_nt
, &list_st
, is_reset
);
8509 qla4xxx_free_ddb_list(&list_st
);
8510 qla4xxx_free_ddb_list(&list_nt
);
8512 qla4xxx_free_ddb_index(ha
);
8516 * qla4xxx_wait_login_resp_boot_tgt - Wait for iSCSI boot target login
8518 * @ha: pointer to adapter structure
8520 * When the boot entry is normal iSCSI target then DF_BOOT_TGT flag will be
8521 * set in DDB and we will wait for login response of boot targets during
8524 static void qla4xxx_wait_login_resp_boot_tgt(struct scsi_qla_host
*ha
)
8526 struct ddb_entry
*ddb_entry
;
8527 struct dev_db_entry
*fw_ddb_entry
= NULL
;
8528 dma_addr_t fw_ddb_entry_dma
;
8529 unsigned long wtime
;
8531 int max_ddbs
, idx
, ret
;
8533 max_ddbs
= is_qla40XX(ha
) ? MAX_DEV_DB_ENTRIES_40XX
:
8536 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
8537 &fw_ddb_entry_dma
, GFP_KERNEL
);
8538 if (!fw_ddb_entry
) {
8539 ql4_printk(KERN_ERR
, ha
,
8540 "%s: Unable to allocate dma buffer\n", __func__
);
8541 goto exit_login_resp
;
8544 wtime
= jiffies
+ (HZ
* BOOT_LOGIN_RESP_TOV
);
8546 for (idx
= 0; idx
< max_ddbs
; idx
++) {
8547 ddb_entry
= qla4xxx_lookup_ddb_by_fw_index(ha
, idx
);
8548 if (ddb_entry
== NULL
)
8551 if (test_bit(DF_BOOT_TGT
, &ddb_entry
->flags
)) {
8552 DEBUG2(ql4_printk(KERN_INFO
, ha
,
8553 "%s: DDB index [%d]\n", __func__
,
8554 ddb_entry
->fw_ddb_index
));
8556 ret
= qla4xxx_get_fwddb_entry(ha
,
8557 ddb_entry
->fw_ddb_index
,
8558 fw_ddb_entry
, fw_ddb_entry_dma
,
8559 NULL
, NULL
, &ddb_state
, NULL
,
8561 if (ret
== QLA_ERROR
)
8562 goto exit_login_resp
;
8564 if ((ddb_state
== DDB_DS_SESSION_ACTIVE
) ||
8565 (ddb_state
== DDB_DS_SESSION_FAILED
))
8568 schedule_timeout_uninterruptible(HZ
);
8570 } while ((time_after(wtime
, jiffies
)));
8572 if (!time_after(wtime
, jiffies
)) {
8573 DEBUG2(ql4_printk(KERN_INFO
, ha
,
8574 "%s: Login response wait timer expired\n",
8576 goto exit_login_resp
;
8583 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
8584 fw_ddb_entry
, fw_ddb_entry_dma
);
8588 * qla4xxx_probe_adapter - callback function to probe HBA
8589 * @pdev: pointer to pci_dev structure
8590 * @pci_device_id: pointer to pci_device entry
8592 * This routine will probe for Qlogic 4xxx iSCSI host adapters.
8593 * It returns zero if successful. It also initializes all data necessary for
8596 static int qla4xxx_probe_adapter(struct pci_dev
*pdev
,
8597 const struct pci_device_id
*ent
)
8599 int ret
= -ENODEV
, status
;
8600 struct Scsi_Host
*host
;
8601 struct scsi_qla_host
*ha
;
8602 uint8_t init_retry_count
= 0;
8604 struct qla4_8xxx_legacy_intr_set
*nx_legacy_intr
;
8607 if (pci_enable_device(pdev
))
8610 host
= iscsi_host_alloc(&qla4xxx_driver_template
, sizeof(*ha
), 0);
8613 "qla4xxx: Couldn't allocate host from scsi layer!\n");
8614 goto probe_disable_device
;
8617 /* Clear our data area */
8618 ha
= to_qla_host(host
);
8619 memset(ha
, 0, sizeof(*ha
));
8621 /* Save the information from PCI BIOS. */
8624 ha
->host_no
= host
->host_no
;
8625 ha
->func_num
= PCI_FUNC(ha
->pdev
->devfn
);
8627 pci_enable_pcie_error_reporting(pdev
);
8629 /* Setup Runtime configurable options */
8630 if (is_qla8022(ha
)) {
8631 ha
->isp_ops
= &qla4_82xx_isp_ops
;
8632 ha
->reg_tbl
= (uint32_t *) qla4_82xx_reg_tbl
;
8633 ha
->qdr_sn_window
= -1;
8634 ha
->ddr_mn_window
= -1;
8635 ha
->curr_window
= 255;
8636 nx_legacy_intr
= &legacy_intr
[ha
->func_num
];
8637 ha
->nx_legacy_intr
.int_vec_bit
= nx_legacy_intr
->int_vec_bit
;
8638 ha
->nx_legacy_intr
.tgt_status_reg
=
8639 nx_legacy_intr
->tgt_status_reg
;
8640 ha
->nx_legacy_intr
.tgt_mask_reg
= nx_legacy_intr
->tgt_mask_reg
;
8641 ha
->nx_legacy_intr
.pci_int_reg
= nx_legacy_intr
->pci_int_reg
;
8642 } else if (is_qla8032(ha
) || is_qla8042(ha
)) {
8643 ha
->isp_ops
= &qla4_83xx_isp_ops
;
8644 ha
->reg_tbl
= (uint32_t *)qla4_83xx_reg_tbl
;
8646 ha
->isp_ops
= &qla4xxx_isp_ops
;
8649 if (is_qla80XX(ha
)) {
8650 rwlock_init(&ha
->hw_lock
);
8651 ha
->pf_bit
= ha
->func_num
<< 16;
8652 /* Set EEH reset type to fundamental if required by hba */
8653 pdev
->needs_freset
= 1;
8656 /* Configure PCI I/O space. */
8657 ret
= ha
->isp_ops
->iospace_config(ha
);
8659 goto probe_failed_ioconfig
;
8661 ql4_printk(KERN_INFO
, ha
, "Found an ISP%04x, irq %d, iobase 0x%p\n",
8662 pdev
->device
, pdev
->irq
, ha
->reg
);
8664 qla4xxx_config_dma_addressing(ha
);
8666 /* Initialize lists and spinlocks. */
8667 INIT_LIST_HEAD(&ha
->free_srb_q
);
8669 mutex_init(&ha
->mbox_sem
);
8670 mutex_init(&ha
->chap_sem
);
8671 init_completion(&ha
->mbx_intr_comp
);
8672 init_completion(&ha
->disable_acb_comp
);
8673 init_completion(&ha
->idc_comp
);
8674 init_completion(&ha
->link_up_comp
);
8675 init_completion(&ha
->disable_acb_comp
);
8677 spin_lock_init(&ha
->hardware_lock
);
8678 spin_lock_init(&ha
->work_lock
);
8680 /* Initialize work list */
8681 INIT_LIST_HEAD(&ha
->work_list
);
8683 /* Allocate dma buffers */
8684 if (qla4xxx_mem_alloc(ha
)) {
8685 ql4_printk(KERN_WARNING
, ha
,
8686 "[ERROR] Failed to allocate memory for adapter\n");
8692 host
->cmd_per_lun
= 3;
8693 host
->max_channel
= 0;
8694 host
->max_lun
= MAX_LUNS
- 1;
8695 host
->max_id
= MAX_TARGETS
;
8696 host
->max_cmd_len
= IOCB_MAX_CDB_LEN
;
8697 host
->can_queue
= MAX_SRBS
;
8698 host
->transportt
= qla4xxx_scsi_transport
;
8700 ret
= scsi_init_shared_tag_map(host
, MAX_SRBS
);
8702 ql4_printk(KERN_WARNING
, ha
,
8703 "%s: scsi_init_shared_tag_map failed\n", __func__
);
8707 pci_set_drvdata(pdev
, ha
);
8709 ret
= scsi_add_host(host
, &pdev
->dev
);
8714 qla4_8xxx_get_flash_info(ha
);
8716 if (is_qla8032(ha
) || is_qla8042(ha
)) {
8717 qla4_83xx_read_reset_template(ha
);
8719 * NOTE: If ql4dontresethba==1, set IDC_CTRL DONTRESET_BIT0.
8720 * If DONRESET_BIT0 is set, drivers should not set dev_state
8721 * to NEED_RESET. But if NEED_RESET is set, drivers should
8722 * should honor the reset.
8724 if (ql4xdontresethba
== 1)
8725 qla4_83xx_set_idc_dontreset(ha
);
8729 * Initialize the Host adapter request/response queues and
8731 * NOTE: interrupts enabled upon successful completion
8733 status
= qla4xxx_initialize_adapter(ha
, INIT_ADAPTER
);
8735 /* Dont retry adapter initialization if IRQ allocation failed */
8736 if (is_qla80XX(ha
) && (status
== QLA_ERROR
))
8737 goto skip_retry_init
;
8739 while ((!test_bit(AF_ONLINE
, &ha
->flags
)) &&
8740 init_retry_count
++ < MAX_INIT_RETRIES
) {
8742 if (is_qla80XX(ha
)) {
8743 ha
->isp_ops
->idc_lock(ha
);
8744 dev_state
= qla4_8xxx_rd_direct(ha
,
8745 QLA8XXX_CRB_DEV_STATE
);
8746 ha
->isp_ops
->idc_unlock(ha
);
8747 if (dev_state
== QLA8XXX_DEV_FAILED
) {
8748 ql4_printk(KERN_WARNING
, ha
, "%s: don't retry "
8749 "initialize adapter. H/W is in failed state\n",
8754 DEBUG2(printk("scsi: %s: retrying adapter initialization "
8755 "(%d)\n", __func__
, init_retry_count
));
8757 if (ha
->isp_ops
->reset_chip(ha
) == QLA_ERROR
)
8760 status
= qla4xxx_initialize_adapter(ha
, INIT_ADAPTER
);
8761 if (is_qla80XX(ha
) && (status
== QLA_ERROR
)) {
8762 if (qla4_8xxx_check_init_adapter_retry(ha
) == QLA_ERROR
)
8763 goto skip_retry_init
;
8768 if (!test_bit(AF_ONLINE
, &ha
->flags
)) {
8769 ql4_printk(KERN_WARNING
, ha
, "Failed to initialize adapter\n");
8771 if ((is_qla8022(ha
) && ql4xdontresethba
) ||
8772 ((is_qla8032(ha
) || is_qla8042(ha
)) &&
8773 qla4_83xx_idc_dontreset(ha
))) {
8774 /* Put the device in failed state. */
8775 DEBUG2(printk(KERN_ERR
"HW STATE: FAILED\n"));
8776 ha
->isp_ops
->idc_lock(ha
);
8777 qla4_8xxx_wr_direct(ha
, QLA8XXX_CRB_DEV_STATE
,
8778 QLA8XXX_DEV_FAILED
);
8779 ha
->isp_ops
->idc_unlock(ha
);
8785 /* Startup the kernel thread for this host adapter. */
8786 DEBUG2(printk("scsi: %s: Starting kernel thread for "
8787 "qla4xxx_dpc\n", __func__
));
8788 sprintf(buf
, "qla4xxx_%lu_dpc", ha
->host_no
);
8789 ha
->dpc_thread
= create_singlethread_workqueue(buf
);
8790 if (!ha
->dpc_thread
) {
8791 ql4_printk(KERN_WARNING
, ha
, "Unable to start DPC thread!\n");
8795 INIT_WORK(&ha
->dpc_work
, qla4xxx_do_dpc
);
8797 ha
->task_wq
= alloc_workqueue("qla4xxx_%lu_task", WQ_MEM_RECLAIM
, 1,
8800 ql4_printk(KERN_WARNING
, ha
, "Unable to start task thread!\n");
8806 * For ISP-8XXX, request_irqs is called in qla4_8xxx_load_risc
8807 * (which is called indirectly by qla4xxx_initialize_adapter),
8808 * so that irqs will be registered after crbinit but before
8811 if (is_qla40XX(ha
)) {
8812 ret
= qla4xxx_request_irqs(ha
);
8814 ql4_printk(KERN_WARNING
, ha
, "Failed to reserve "
8815 "interrupt %d already in use.\n", pdev
->irq
);
8820 pci_save_state(ha
->pdev
);
8821 ha
->isp_ops
->enable_intrs(ha
);
8823 /* Start timer thread. */
8824 qla4xxx_start_timer(ha
, qla4xxx_timer
, 1);
8826 set_bit(AF_INIT_DONE
, &ha
->flags
);
8828 qla4_8xxx_alloc_sysfs_attr(ha
);
8831 " QLogic iSCSI HBA Driver version: %s\n"
8832 " QLogic ISP%04x @ %s, host#=%ld, fw=%02d.%02d.%02d.%02d\n",
8833 qla4xxx_version_str
, ha
->pdev
->device
, pci_name(ha
->pdev
),
8834 ha
->host_no
, ha
->fw_info
.fw_major
, ha
->fw_info
.fw_minor
,
8835 ha
->fw_info
.fw_patch
, ha
->fw_info
.fw_build
);
8837 /* Set the driver version */
8839 qla4_8xxx_set_param(ha
, SET_DRVR_VERSION
);
8841 if (qla4xxx_setup_boot_info(ha
))
8842 ql4_printk(KERN_ERR
, ha
,
8843 "%s: No iSCSI boot target configured\n", __func__
);
8845 set_bit(DPC_SYSFS_DDB_EXPORT
, &ha
->dpc_flags
);
8846 /* Perform the build ddb list and login to each */
8847 qla4xxx_build_ddb_list(ha
, INIT_ADAPTER
);
8848 iscsi_host_for_each_session(ha
->host
, qla4xxx_login_flash_ddb
);
8849 qla4xxx_wait_login_resp_boot_tgt(ha
);
8851 qla4xxx_create_chap_list(ha
);
8853 qla4xxx_create_ifaces(ha
);
8857 scsi_remove_host(ha
->host
);
8860 qla4xxx_free_adapter(ha
);
8862 probe_failed_ioconfig
:
8863 pci_disable_pcie_error_reporting(pdev
);
8864 scsi_host_put(ha
->host
);
8866 probe_disable_device
:
8867 pci_disable_device(pdev
);
8873 * qla4xxx_prevent_other_port_reinit - prevent other port from re-initialize
8874 * @ha: pointer to adapter structure
8876 * Mark the other ISP-4xxx port to indicate that the driver is being removed,
8877 * so that the other port will not re-initialize while in the process of
8878 * removing the ha due to driver unload or hba hotplug.
8880 static void qla4xxx_prevent_other_port_reinit(struct scsi_qla_host
*ha
)
8882 struct scsi_qla_host
*other_ha
= NULL
;
8883 struct pci_dev
*other_pdev
= NULL
;
8884 int fn
= ISP4XXX_PCI_FN_2
;
8886 /*iscsi function numbers for ISP4xxx is 1 and 3*/
8887 if (PCI_FUNC(ha
->pdev
->devfn
) & BIT_1
)
8888 fn
= ISP4XXX_PCI_FN_1
;
8891 pci_get_domain_bus_and_slot(pci_domain_nr(ha
->pdev
->bus
),
8892 ha
->pdev
->bus
->number
, PCI_DEVFN(PCI_SLOT(ha
->pdev
->devfn
),
8895 /* Get other_ha if other_pdev is valid and state is enable*/
8897 if (atomic_read(&other_pdev
->enable_cnt
)) {
8898 other_ha
= pci_get_drvdata(other_pdev
);
8900 set_bit(AF_HA_REMOVAL
, &other_ha
->flags
);
8901 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: "
8902 "Prevent %s reinit\n", __func__
,
8903 dev_name(&other_ha
->pdev
->dev
)));
8906 pci_dev_put(other_pdev
);
8910 static void qla4xxx_destroy_ddb(struct scsi_qla_host
*ha
,
8911 struct ddb_entry
*ddb_entry
)
8913 struct dev_db_entry
*fw_ddb_entry
= NULL
;
8914 dma_addr_t fw_ddb_entry_dma
;
8915 unsigned long wtime
;
8920 options
= LOGOUT_OPTION_CLOSE_SESSION
;
8921 if (qla4xxx_session_logout_ddb(ha
, ddb_entry
, options
) == QLA_ERROR
) {
8922 ql4_printk(KERN_ERR
, ha
, "%s: Logout failed\n", __func__
);
8926 fw_ddb_entry
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
8927 &fw_ddb_entry_dma
, GFP_KERNEL
);
8928 if (!fw_ddb_entry
) {
8929 ql4_printk(KERN_ERR
, ha
,
8930 "%s: Unable to allocate dma buffer\n", __func__
);
8934 wtime
= jiffies
+ (HZ
* LOGOUT_TOV
);
8936 status
= qla4xxx_get_fwddb_entry(ha
, ddb_entry
->fw_ddb_index
,
8937 fw_ddb_entry
, fw_ddb_entry_dma
,
8938 NULL
, NULL
, &ddb_state
, NULL
,
8940 if (status
== QLA_ERROR
)
8943 if ((ddb_state
== DDB_DS_NO_CONNECTION_ACTIVE
) ||
8944 (ddb_state
== DDB_DS_SESSION_FAILED
))
8947 schedule_timeout_uninterruptible(HZ
);
8948 } while ((time_after(wtime
, jiffies
)));
8951 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*fw_ddb_entry
),
8952 fw_ddb_entry
, fw_ddb_entry_dma
);
8954 qla4xxx_clear_ddb_entry(ha
, ddb_entry
->fw_ddb_index
);
8957 static void qla4xxx_destroy_fw_ddb_session(struct scsi_qla_host
*ha
)
8959 struct ddb_entry
*ddb_entry
;
8962 for (idx
= 0; idx
< MAX_DDB_ENTRIES
; idx
++) {
8964 ddb_entry
= qla4xxx_lookup_ddb_by_fw_index(ha
, idx
);
8965 if ((ddb_entry
!= NULL
) &&
8966 (ddb_entry
->ddb_type
== FLASH_DDB
)) {
8968 qla4xxx_destroy_ddb(ha
, ddb_entry
);
8970 * we have decremented the reference count of the driver
8971 * when we setup the session to have the driver unload
8972 * to be seamless without actually destroying the
8975 try_module_get(qla4xxx_iscsi_transport
.owner
);
8976 iscsi_destroy_endpoint(ddb_entry
->conn
->ep
);
8977 qla4xxx_free_ddb(ha
, ddb_entry
);
8978 iscsi_session_teardown(ddb_entry
->sess
);
8983 * qla4xxx_remove_adapter - callback function to remove adapter.
8984 * @pci_dev: PCI device pointer
8986 static void qla4xxx_remove_adapter(struct pci_dev
*pdev
)
8988 struct scsi_qla_host
*ha
;
8991 * If the PCI device is disabled then it means probe_adapter had
8992 * failed and resources already cleaned up on probe_adapter exit.
8994 if (!pci_is_enabled(pdev
))
8997 ha
= pci_get_drvdata(pdev
);
9000 qla4xxx_prevent_other_port_reinit(ha
);
9002 /* destroy iface from sysfs */
9003 qla4xxx_destroy_ifaces(ha
);
9005 if ((!ql4xdisablesysfsboot
) && ha
->boot_kset
)
9006 iscsi_boot_destroy_kset(ha
->boot_kset
);
9008 qla4xxx_destroy_fw_ddb_session(ha
);
9009 qla4_8xxx_free_sysfs_attr(ha
);
9011 qla4xxx_sysfs_ddb_remove(ha
);
9012 scsi_remove_host(ha
->host
);
9014 qla4xxx_free_adapter(ha
);
9016 scsi_host_put(ha
->host
);
9018 pci_disable_pcie_error_reporting(pdev
);
9019 pci_disable_device(pdev
);
9023 * qla4xxx_config_dma_addressing() - Configure OS DMA addressing method.
9026 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
9027 * supported addressing method.
9029 static void qla4xxx_config_dma_addressing(struct scsi_qla_host
*ha
)
9033 /* Update our PCI device dma_mask for full 64 bit mask */
9034 if (pci_set_dma_mask(ha
->pdev
, DMA_BIT_MASK(64)) == 0) {
9035 if (pci_set_consistent_dma_mask(ha
->pdev
, DMA_BIT_MASK(64))) {
9036 dev_dbg(&ha
->pdev
->dev
,
9037 "Failed to set 64 bit PCI consistent mask; "
9039 retval
= pci_set_consistent_dma_mask(ha
->pdev
,
9043 retval
= pci_set_dma_mask(ha
->pdev
, DMA_BIT_MASK(32));
9046 static int qla4xxx_slave_alloc(struct scsi_device
*sdev
)
9048 struct iscsi_cls_session
*cls_sess
;
9049 struct iscsi_session
*sess
;
9050 struct ddb_entry
*ddb
;
9051 int queue_depth
= QL4_DEF_QDEPTH
;
9053 cls_sess
= starget_to_session(sdev
->sdev_target
);
9054 sess
= cls_sess
->dd_data
;
9055 ddb
= sess
->dd_data
;
9057 sdev
->hostdata
= ddb
;
9059 if (ql4xmaxqdepth
!= 0 && ql4xmaxqdepth
<= 0xffffU
)
9060 queue_depth
= ql4xmaxqdepth
;
9062 scsi_change_queue_depth(sdev
, queue_depth
);
9067 * qla4xxx_del_from_active_array - returns an active srb
9068 * @ha: Pointer to host adapter structure.
9069 * @index: index into the active_array
9071 * This routine removes and returns the srb at the specified index
9073 struct srb
*qla4xxx_del_from_active_array(struct scsi_qla_host
*ha
,
9076 struct srb
*srb
= NULL
;
9077 struct scsi_cmnd
*cmd
= NULL
;
9079 cmd
= scsi_host_find_tag(ha
->host
, index
);
9083 srb
= (struct srb
*)CMD_SP(cmd
);
9087 /* update counters */
9088 if (srb
->flags
& SRB_DMA_VALID
) {
9089 ha
->iocb_cnt
-= srb
->iocb_cnt
;
9091 srb
->cmd
->host_scribble
=
9092 (unsigned char *)(unsigned long) MAX_SRBS
;
9098 * qla4xxx_eh_wait_on_command - waits for command to be returned by firmware
9099 * @ha: Pointer to host adapter structure.
9100 * @cmd: Scsi Command to wait on.
9102 * This routine waits for the command to be returned by the Firmware
9103 * for some max time.
9105 static int qla4xxx_eh_wait_on_command(struct scsi_qla_host
*ha
,
9106 struct scsi_cmnd
*cmd
)
9110 uint32_t max_wait_time
= EH_WAIT_CMD_TOV
;
9113 /* Dont wait on command if PCI error is being handled
9116 if (unlikely(pci_channel_offline(ha
->pdev
)) ||
9117 (test_bit(AF_EEH_BUSY
, &ha
->flags
))) {
9118 ql4_printk(KERN_WARNING
, ha
, "scsi%ld: Return from %s\n",
9119 ha
->host_no
, __func__
);
9124 /* Checking to see if its returned to OS */
9125 rp
= (struct srb
*) CMD_SP(cmd
);
9132 } while (max_wait_time
--);
9138 * qla4xxx_wait_for_hba_online - waits for HBA to come online
9139 * @ha: Pointer to host adapter structure
9141 static int qla4xxx_wait_for_hba_online(struct scsi_qla_host
*ha
)
9143 unsigned long wait_online
;
9145 wait_online
= jiffies
+ (HBA_ONLINE_TOV
* HZ
);
9146 while (time_before(jiffies
, wait_online
)) {
9158 * qla4xxx_eh_wait_for_commands - wait for active cmds to finish.
9159 * @ha: pointer to HBA
9163 * This function waits for all outstanding commands to a lun to complete. It
9164 * returns 0 if all pending commands are returned and 1 otherwise.
9166 static int qla4xxx_eh_wait_for_commands(struct scsi_qla_host
*ha
,
9167 struct scsi_target
*stgt
,
9168 struct scsi_device
*sdev
)
9172 struct scsi_cmnd
*cmd
;
9175 * Waiting for all commands for the designated target or dev
9176 * in the active array
9178 for (cnt
= 0; cnt
< ha
->host
->can_queue
; cnt
++) {
9179 cmd
= scsi_host_find_tag(ha
->host
, cnt
);
9180 if (cmd
&& stgt
== scsi_target(cmd
->device
) &&
9181 (!sdev
|| sdev
== cmd
->device
)) {
9182 if (!qla4xxx_eh_wait_on_command(ha
, cmd
)) {
9192 * qla4xxx_eh_abort - callback for abort task.
9193 * @cmd: Pointer to Linux's SCSI command structure
9195 * This routine is called by the Linux OS to abort the specified
9198 static int qla4xxx_eh_abort(struct scsi_cmnd
*cmd
)
9200 struct scsi_qla_host
*ha
= to_qla_host(cmd
->device
->host
);
9201 unsigned int id
= cmd
->device
->id
;
9202 uint64_t lun
= cmd
->device
->lun
;
9203 unsigned long flags
;
9204 struct srb
*srb
= NULL
;
9208 ql4_printk(KERN_INFO
, ha
, "scsi%ld:%d:%llu: Abort command issued cmd=%p, cdb=0x%x\n",
9209 ha
->host_no
, id
, lun
, cmd
, cmd
->cmnd
[0]);
9211 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
9212 srb
= (struct srb
*) CMD_SP(cmd
);
9214 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
9215 ql4_printk(KERN_INFO
, ha
, "scsi%ld:%d:%llu: Specified command has already completed.\n",
9216 ha
->host_no
, id
, lun
);
9219 kref_get(&srb
->srb_ref
);
9220 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
9222 if (qla4xxx_abort_task(ha
, srb
) != QLA_SUCCESS
) {
9223 DEBUG3(printk("scsi%ld:%d:%llu: Abort_task mbx failed.\n",
9224 ha
->host_no
, id
, lun
));
9227 DEBUG3(printk("scsi%ld:%d:%llu: Abort_task mbx success.\n",
9228 ha
->host_no
, id
, lun
));
9232 kref_put(&srb
->srb_ref
, qla4xxx_srb_compl
);
9234 /* Wait for command to complete */
9236 if (!qla4xxx_eh_wait_on_command(ha
, cmd
)) {
9237 DEBUG2(printk("scsi%ld:%d:%llu: Abort handler timed out\n",
9238 ha
->host_no
, id
, lun
));
9243 ql4_printk(KERN_INFO
, ha
,
9244 "scsi%ld:%d:%llu: Abort command - %s\n",
9245 ha
->host_no
, id
, lun
, (ret
== SUCCESS
) ? "succeeded" : "failed");
9251 * qla4xxx_eh_device_reset - callback for target reset.
9252 * @cmd: Pointer to Linux's SCSI command structure
9254 * This routine is called by the Linux OS to reset all luns on the
9257 static int qla4xxx_eh_device_reset(struct scsi_cmnd
*cmd
)
9259 struct scsi_qla_host
*ha
= to_qla_host(cmd
->device
->host
);
9260 struct ddb_entry
*ddb_entry
= cmd
->device
->hostdata
;
9261 int ret
= FAILED
, stat
;
9266 ret
= iscsi_block_scsi_eh(cmd
);
9271 ql4_printk(KERN_INFO
, ha
,
9272 "scsi%ld:%d:%d:%llu: DEVICE RESET ISSUED.\n", ha
->host_no
,
9273 cmd
->device
->channel
, cmd
->device
->id
, cmd
->device
->lun
);
9275 DEBUG2(printk(KERN_INFO
9276 "scsi%ld: DEVICE_RESET cmd=%p jiffies = 0x%lx, to=%x,"
9277 "dpc_flags=%lx, status=%x allowed=%d\n", ha
->host_no
,
9278 cmd
, jiffies
, cmd
->request
->timeout
/ HZ
,
9279 ha
->dpc_flags
, cmd
->result
, cmd
->allowed
));
9281 /* FIXME: wait for hba to go online */
9282 stat
= qla4xxx_reset_lun(ha
, ddb_entry
, cmd
->device
->lun
);
9283 if (stat
!= QLA_SUCCESS
) {
9284 ql4_printk(KERN_INFO
, ha
, "DEVICE RESET FAILED. %d\n", stat
);
9285 goto eh_dev_reset_done
;
9288 if (qla4xxx_eh_wait_for_commands(ha
, scsi_target(cmd
->device
),
9290 ql4_printk(KERN_INFO
, ha
,
9291 "DEVICE RESET FAILED - waiting for "
9293 goto eh_dev_reset_done
;
9297 if (qla4xxx_send_marker_iocb(ha
, ddb_entry
, cmd
->device
->lun
,
9298 MM_LUN_RESET
) != QLA_SUCCESS
)
9299 goto eh_dev_reset_done
;
9301 ql4_printk(KERN_INFO
, ha
,
9302 "scsi(%ld:%d:%d:%llu): DEVICE RESET SUCCEEDED.\n",
9303 ha
->host_no
, cmd
->device
->channel
, cmd
->device
->id
,
9314 * qla4xxx_eh_target_reset - callback for target reset.
9315 * @cmd: Pointer to Linux's SCSI command structure
9317 * This routine is called by the Linux OS to reset the target.
9319 static int qla4xxx_eh_target_reset(struct scsi_cmnd
*cmd
)
9321 struct scsi_qla_host
*ha
= to_qla_host(cmd
->device
->host
);
9322 struct ddb_entry
*ddb_entry
= cmd
->device
->hostdata
;
9328 ret
= iscsi_block_scsi_eh(cmd
);
9332 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
9333 "WARM TARGET RESET ISSUED.\n");
9335 DEBUG2(printk(KERN_INFO
9336 "scsi%ld: TARGET_DEVICE_RESET cmd=%p jiffies = 0x%lx, "
9337 "to=%x,dpc_flags=%lx, status=%x allowed=%d\n",
9338 ha
->host_no
, cmd
, jiffies
, cmd
->request
->timeout
/ HZ
,
9339 ha
->dpc_flags
, cmd
->result
, cmd
->allowed
));
9341 stat
= qla4xxx_reset_target(ha
, ddb_entry
);
9342 if (stat
!= QLA_SUCCESS
) {
9343 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
9344 "WARM TARGET RESET FAILED.\n");
9348 if (qla4xxx_eh_wait_for_commands(ha
, scsi_target(cmd
->device
),
9350 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
9351 "WARM TARGET DEVICE RESET FAILED - "
9352 "waiting for commands.\n");
9357 if (qla4xxx_send_marker_iocb(ha
, ddb_entry
, cmd
->device
->lun
,
9358 MM_TGT_WARM_RESET
) != QLA_SUCCESS
) {
9359 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
9360 "WARM TARGET DEVICE RESET FAILED - "
9361 "marker iocb failed.\n");
9365 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
9366 "WARM TARGET RESET SUCCEEDED.\n");
9371 * qla4xxx_is_eh_active - check if error handler is running
9372 * @shost: Pointer to SCSI Host struct
9374 * This routine finds that if reset host is called in EH
9375 * scenario or from some application like sg_reset
9377 static int qla4xxx_is_eh_active(struct Scsi_Host
*shost
)
9379 if (shost
->shost_state
== SHOST_RECOVERY
)
9385 * qla4xxx_eh_host_reset - kernel callback
9386 * @cmd: Pointer to Linux's SCSI command structure
9388 * This routine is invoked by the Linux kernel to perform fatal error
9389 * recovery on the specified adapter.
9391 static int qla4xxx_eh_host_reset(struct scsi_cmnd
*cmd
)
9393 int return_status
= FAILED
;
9394 struct scsi_qla_host
*ha
;
9396 ha
= to_qla_host(cmd
->device
->host
);
9398 if ((is_qla8032(ha
) || is_qla8042(ha
)) && ql4xdontresethba
)
9399 qla4_83xx_set_idc_dontreset(ha
);
9402 * For ISP8324 and ISP8042, if IDC_CTRL DONTRESET_BIT0 is set by other
9403 * protocol drivers, we should not set device_state to NEED_RESET
9405 if (ql4xdontresethba
||
9406 ((is_qla8032(ha
) || is_qla8042(ha
)) &&
9407 qla4_83xx_idc_dontreset(ha
))) {
9408 DEBUG2(printk("scsi%ld: %s: Don't Reset HBA\n",
9409 ha
->host_no
, __func__
));
9411 /* Clear outstanding srb in queues */
9412 if (qla4xxx_is_eh_active(cmd
->device
->host
))
9413 qla4xxx_abort_active_cmds(ha
, DID_ABORT
<< 16);
9418 ql4_printk(KERN_INFO
, ha
,
9419 "scsi(%ld:%d:%d:%llu): HOST RESET ISSUED.\n", ha
->host_no
,
9420 cmd
->device
->channel
, cmd
->device
->id
, cmd
->device
->lun
);
9422 if (qla4xxx_wait_for_hba_online(ha
) != QLA_SUCCESS
) {
9423 DEBUG2(printk("scsi%ld:%d: %s: Unable to reset host. Adapter "
9424 "DEAD.\n", ha
->host_no
, cmd
->device
->channel
,
9430 if (!test_bit(DPC_RESET_HA
, &ha
->dpc_flags
)) {
9432 set_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
);
9434 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
9437 if (qla4xxx_recover_adapter(ha
) == QLA_SUCCESS
)
9438 return_status
= SUCCESS
;
9440 ql4_printk(KERN_INFO
, ha
, "HOST RESET %s.\n",
9441 return_status
== FAILED
? "FAILED" : "SUCCEEDED");
9443 return return_status
;
9446 static int qla4xxx_context_reset(struct scsi_qla_host
*ha
)
9448 uint32_t mbox_cmd
[MBOX_REG_COUNT
];
9449 uint32_t mbox_sts
[MBOX_REG_COUNT
];
9450 struct addr_ctrl_blk_def
*acb
= NULL
;
9451 uint32_t acb_len
= sizeof(struct addr_ctrl_blk_def
);
9452 int rval
= QLA_SUCCESS
;
9455 acb
= dma_alloc_coherent(&ha
->pdev
->dev
,
9456 sizeof(struct addr_ctrl_blk_def
),
9457 &acb_dma
, GFP_KERNEL
);
9459 ql4_printk(KERN_ERR
, ha
, "%s: Unable to alloc acb\n",
9462 goto exit_port_reset
;
9465 memset(acb
, 0, acb_len
);
9467 rval
= qla4xxx_get_acb(ha
, acb_dma
, PRIMARI_ACB
, acb_len
);
9468 if (rval
!= QLA_SUCCESS
) {
9473 rval
= qla4xxx_disable_acb(ha
);
9474 if (rval
!= QLA_SUCCESS
) {
9479 wait_for_completion_timeout(&ha
->disable_acb_comp
,
9480 DISABLE_ACB_TOV
* HZ
);
9482 rval
= qla4xxx_set_acb(ha
, &mbox_cmd
[0], &mbox_sts
[0], acb_dma
);
9483 if (rval
!= QLA_SUCCESS
) {
9489 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct addr_ctrl_blk_def
),
9492 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s %s\n", __func__
,
9493 rval
== QLA_SUCCESS
? "SUCCEEDED" : "FAILED"));
9497 static int qla4xxx_host_reset(struct Scsi_Host
*shost
, int reset_type
)
9499 struct scsi_qla_host
*ha
= to_qla_host(shost
);
9500 int rval
= QLA_SUCCESS
;
9503 if (ql4xdontresethba
) {
9504 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: Don't Reset HBA\n",
9507 goto exit_host_reset
;
9510 if (test_bit(DPC_RESET_HA
, &ha
->dpc_flags
))
9511 goto recover_adapter
;
9513 switch (reset_type
) {
9514 case SCSI_ADAPTER_RESET
:
9515 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
9517 case SCSI_FIRMWARE_RESET
:
9518 if (!test_bit(DPC_RESET_HA
, &ha
->dpc_flags
)) {
9520 /* set firmware context reset */
9521 set_bit(DPC_RESET_HA_FW_CONTEXT
,
9524 rval
= qla4xxx_context_reset(ha
);
9525 goto exit_host_reset
;
9532 /* For ISP8324 and ISP8042 set graceful reset bit in IDC_DRV_CTRL if
9533 * reset is issued by application */
9534 if ((is_qla8032(ha
) || is_qla8042(ha
)) &&
9535 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
)) {
9536 idc_ctrl
= qla4_83xx_rd_reg(ha
, QLA83XX_IDC_DRV_CTRL
);
9537 qla4_83xx_wr_reg(ha
, QLA83XX_IDC_DRV_CTRL
,
9538 (idc_ctrl
| GRACEFUL_RESET_BIT1
));
9541 rval
= qla4xxx_recover_adapter(ha
);
9542 if (rval
!= QLA_SUCCESS
) {
9543 DEBUG2(ql4_printk(KERN_INFO
, ha
, "%s: recover adapter fail\n",
9552 /* PCI AER driver recovers from all correctable errors w/o
9553 * driver intervention. For uncorrectable errors PCI AER
9554 * driver calls the following device driver's callbacks
9556 * - Fatal Errors - link_reset
9557 * - Non-Fatal Errors - driver's pci_error_detected() which
9558 * returns CAN_RECOVER, NEED_RESET or DISCONNECT.
9560 * PCI AER driver calls
9561 * CAN_RECOVER - driver's pci_mmio_enabled(), mmio_enabled
9562 * returns RECOVERED or NEED_RESET if fw_hung
9563 * NEED_RESET - driver's slot_reset()
9564 * DISCONNECT - device is dead & cannot recover
9565 * RECOVERED - driver's pci_resume()
9567 static pci_ers_result_t
9568 qla4xxx_pci_error_detected(struct pci_dev
*pdev
, pci_channel_state_t state
)
9570 struct scsi_qla_host
*ha
= pci_get_drvdata(pdev
);
9572 ql4_printk(KERN_WARNING
, ha
, "scsi%ld: %s: error detected:state %x\n",
9573 ha
->host_no
, __func__
, state
);
9575 if (!is_aer_supported(ha
))
9576 return PCI_ERS_RESULT_NONE
;
9579 case pci_channel_io_normal
:
9580 clear_bit(AF_EEH_BUSY
, &ha
->flags
);
9581 return PCI_ERS_RESULT_CAN_RECOVER
;
9582 case pci_channel_io_frozen
:
9583 set_bit(AF_EEH_BUSY
, &ha
->flags
);
9584 qla4xxx_mailbox_premature_completion(ha
);
9585 qla4xxx_free_irqs(ha
);
9586 pci_disable_device(pdev
);
9587 /* Return back all IOs */
9588 qla4xxx_abort_active_cmds(ha
, DID_RESET
<< 16);
9589 return PCI_ERS_RESULT_NEED_RESET
;
9590 case pci_channel_io_perm_failure
:
9591 set_bit(AF_EEH_BUSY
, &ha
->flags
);
9592 set_bit(AF_PCI_CHANNEL_IO_PERM_FAILURE
, &ha
->flags
);
9593 qla4xxx_abort_active_cmds(ha
, DID_NO_CONNECT
<< 16);
9594 return PCI_ERS_RESULT_DISCONNECT
;
9596 return PCI_ERS_RESULT_NEED_RESET
;
9600 * qla4xxx_pci_mmio_enabled() gets called if
9601 * qla4xxx_pci_error_detected() returns PCI_ERS_RESULT_CAN_RECOVER
9602 * and read/write to the device still works.
9604 static pci_ers_result_t
9605 qla4xxx_pci_mmio_enabled(struct pci_dev
*pdev
)
9607 struct scsi_qla_host
*ha
= pci_get_drvdata(pdev
);
9609 if (!is_aer_supported(ha
))
9610 return PCI_ERS_RESULT_NONE
;
9612 return PCI_ERS_RESULT_RECOVERED
;
9615 static uint32_t qla4_8xxx_error_recovery(struct scsi_qla_host
*ha
)
9617 uint32_t rval
= QLA_ERROR
;
9619 struct pci_dev
*other_pdev
= NULL
;
9621 ql4_printk(KERN_WARNING
, ha
, "scsi%ld: In %s\n", ha
->host_no
, __func__
);
9623 set_bit(DPC_RESET_ACTIVE
, &ha
->dpc_flags
);
9625 if (test_bit(AF_ONLINE
, &ha
->flags
)) {
9626 clear_bit(AF_ONLINE
, &ha
->flags
);
9627 clear_bit(AF_LINK_UP
, &ha
->flags
);
9628 iscsi_host_for_each_session(ha
->host
, qla4xxx_fail_session
);
9629 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
9632 fn
= PCI_FUNC(ha
->pdev
->devfn
);
9633 if (is_qla8022(ha
)) {
9636 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: Finding PCI device at func %x\n",
9637 ha
->host_no
, __func__
, fn
);
9638 /* Get the pci device given the domain, bus,
9639 * slot/function number */
9640 other_pdev
= pci_get_domain_bus_and_slot(
9641 pci_domain_nr(ha
->pdev
->bus
),
9642 ha
->pdev
->bus
->number
,
9643 PCI_DEVFN(PCI_SLOT(ha
->pdev
->devfn
),
9649 if (atomic_read(&other_pdev
->enable_cnt
)) {
9650 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: Found PCI func in enabled state%x\n",
9651 ha
->host_no
, __func__
, fn
);
9652 pci_dev_put(other_pdev
);
9655 pci_dev_put(other_pdev
);
9658 /* this case is meant for ISP83xx/ISP84xx only */
9659 if (qla4_83xx_can_perform_reset(ha
)) {
9660 /* reset fn as iSCSI is going to perform the reset */
9665 /* The first function on the card, the reset owner will
9666 * start & initialize the firmware. The other functions
9667 * on the card will reset the firmware context
9670 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: devfn being reset "
9671 "0x%x is the owner\n", ha
->host_no
, __func__
,
9674 ha
->isp_ops
->idc_lock(ha
);
9675 qla4_8xxx_wr_direct(ha
, QLA8XXX_CRB_DEV_STATE
,
9677 ha
->isp_ops
->idc_unlock(ha
);
9679 rval
= qla4_8xxx_update_idc_reg(ha
);
9680 if (rval
== QLA_ERROR
) {
9681 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: HW State: FAILED\n",
9682 ha
->host_no
, __func__
);
9683 ha
->isp_ops
->idc_lock(ha
);
9684 qla4_8xxx_wr_direct(ha
, QLA8XXX_CRB_DEV_STATE
,
9685 QLA8XXX_DEV_FAILED
);
9686 ha
->isp_ops
->idc_unlock(ha
);
9687 goto exit_error_recovery
;
9690 clear_bit(AF_FW_RECOVERY
, &ha
->flags
);
9691 rval
= qla4xxx_initialize_adapter(ha
, RESET_ADAPTER
);
9693 if (rval
!= QLA_SUCCESS
) {
9694 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: HW State: "
9695 "FAILED\n", ha
->host_no
, __func__
);
9696 qla4xxx_free_irqs(ha
);
9697 ha
->isp_ops
->idc_lock(ha
);
9698 qla4_8xxx_clear_drv_active(ha
);
9699 qla4_8xxx_wr_direct(ha
, QLA8XXX_CRB_DEV_STATE
,
9700 QLA8XXX_DEV_FAILED
);
9701 ha
->isp_ops
->idc_unlock(ha
);
9703 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: HW State: "
9704 "READY\n", ha
->host_no
, __func__
);
9705 ha
->isp_ops
->idc_lock(ha
);
9706 qla4_8xxx_wr_direct(ha
, QLA8XXX_CRB_DEV_STATE
,
9708 /* Clear driver state register */
9709 qla4_8xxx_wr_direct(ha
, QLA8XXX_CRB_DRV_STATE
, 0);
9710 qla4_8xxx_set_drv_active(ha
);
9711 ha
->isp_ops
->idc_unlock(ha
);
9712 ha
->isp_ops
->enable_intrs(ha
);
9715 ql4_printk(KERN_INFO
, ha
, "scsi%ld: %s: devfn 0x%x is not "
9716 "the reset owner\n", ha
->host_no
, __func__
,
9718 if ((qla4_8xxx_rd_direct(ha
, QLA8XXX_CRB_DEV_STATE
) ==
9719 QLA8XXX_DEV_READY
)) {
9720 clear_bit(AF_FW_RECOVERY
, &ha
->flags
);
9721 rval
= qla4xxx_initialize_adapter(ha
, RESET_ADAPTER
);
9722 if (rval
== QLA_SUCCESS
)
9723 ha
->isp_ops
->enable_intrs(ha
);
9725 qla4xxx_free_irqs(ha
);
9727 ha
->isp_ops
->idc_lock(ha
);
9728 qla4_8xxx_set_drv_active(ha
);
9729 ha
->isp_ops
->idc_unlock(ha
);
9732 exit_error_recovery
:
9733 clear_bit(DPC_RESET_ACTIVE
, &ha
->dpc_flags
);
9737 static pci_ers_result_t
9738 qla4xxx_pci_slot_reset(struct pci_dev
*pdev
)
9740 pci_ers_result_t ret
= PCI_ERS_RESULT_DISCONNECT
;
9741 struct scsi_qla_host
*ha
= pci_get_drvdata(pdev
);
9744 ql4_printk(KERN_WARNING
, ha
, "scsi%ld: %s: slot_reset\n",
9745 ha
->host_no
, __func__
);
9747 if (!is_aer_supported(ha
))
9748 return PCI_ERS_RESULT_NONE
;
9750 /* Restore the saved state of PCIe device -
9751 * BAR registers, PCI Config space, PCIX, MSI,
9754 pci_restore_state(pdev
);
9756 /* pci_restore_state() clears the saved_state flag of the device
9757 * save restored state which resets saved_state flag
9759 pci_save_state(pdev
);
9761 /* Initialize device or resume if in suspended state */
9762 rc
= pci_enable_device(pdev
);
9764 ql4_printk(KERN_WARNING
, ha
, "scsi%ld: %s: Can't re-enable "
9765 "device after reset\n", ha
->host_no
, __func__
);
9766 goto exit_slot_reset
;
9769 ha
->isp_ops
->disable_intrs(ha
);
9771 if (is_qla80XX(ha
)) {
9772 if (qla4_8xxx_error_recovery(ha
) == QLA_SUCCESS
) {
9773 ret
= PCI_ERS_RESULT_RECOVERED
;
9774 goto exit_slot_reset
;
9776 goto exit_slot_reset
;
9780 ql4_printk(KERN_WARNING
, ha
, "scsi%ld: %s: Return=%x\n"
9781 "device after reset\n", ha
->host_no
, __func__
, ret
);
9786 qla4xxx_pci_resume(struct pci_dev
*pdev
)
9788 struct scsi_qla_host
*ha
= pci_get_drvdata(pdev
);
9791 ql4_printk(KERN_WARNING
, ha
, "scsi%ld: %s: pci_resume\n",
9792 ha
->host_no
, __func__
);
9794 ret
= qla4xxx_wait_for_hba_online(ha
);
9795 if (ret
!= QLA_SUCCESS
) {
9796 ql4_printk(KERN_ERR
, ha
, "scsi%ld: %s: the device failed to "
9797 "resume I/O from slot/link_reset\n", ha
->host_no
,
9801 pci_cleanup_aer_uncorrect_error_status(pdev
);
9802 clear_bit(AF_EEH_BUSY
, &ha
->flags
);
9805 static const struct pci_error_handlers qla4xxx_err_handler
= {
9806 .error_detected
= qla4xxx_pci_error_detected
,
9807 .mmio_enabled
= qla4xxx_pci_mmio_enabled
,
9808 .slot_reset
= qla4xxx_pci_slot_reset
,
9809 .resume
= qla4xxx_pci_resume
,
9812 static struct pci_device_id qla4xxx_pci_tbl
[] = {
9814 .vendor
= PCI_VENDOR_ID_QLOGIC
,
9815 .device
= PCI_DEVICE_ID_QLOGIC_ISP4010
,
9816 .subvendor
= PCI_ANY_ID
,
9817 .subdevice
= PCI_ANY_ID
,
9820 .vendor
= PCI_VENDOR_ID_QLOGIC
,
9821 .device
= PCI_DEVICE_ID_QLOGIC_ISP4022
,
9822 .subvendor
= PCI_ANY_ID
,
9823 .subdevice
= PCI_ANY_ID
,
9826 .vendor
= PCI_VENDOR_ID_QLOGIC
,
9827 .device
= PCI_DEVICE_ID_QLOGIC_ISP4032
,
9828 .subvendor
= PCI_ANY_ID
,
9829 .subdevice
= PCI_ANY_ID
,
9832 .vendor
= PCI_VENDOR_ID_QLOGIC
,
9833 .device
= PCI_DEVICE_ID_QLOGIC_ISP8022
,
9834 .subvendor
= PCI_ANY_ID
,
9835 .subdevice
= PCI_ANY_ID
,
9838 .vendor
= PCI_VENDOR_ID_QLOGIC
,
9839 .device
= PCI_DEVICE_ID_QLOGIC_ISP8324
,
9840 .subvendor
= PCI_ANY_ID
,
9841 .subdevice
= PCI_ANY_ID
,
9844 .vendor
= PCI_VENDOR_ID_QLOGIC
,
9845 .device
= PCI_DEVICE_ID_QLOGIC_ISP8042
,
9846 .subvendor
= PCI_ANY_ID
,
9847 .subdevice
= PCI_ANY_ID
,
9851 MODULE_DEVICE_TABLE(pci
, qla4xxx_pci_tbl
);
9853 static struct pci_driver qla4xxx_pci_driver
= {
9854 .name
= DRIVER_NAME
,
9855 .id_table
= qla4xxx_pci_tbl
,
9856 .probe
= qla4xxx_probe_adapter
,
9857 .remove
= qla4xxx_remove_adapter
,
9858 .err_handler
= &qla4xxx_err_handler
,
9861 static int __init
qla4xxx_module_init(void)
9865 if (ql4xqfulltracking
)
9866 qla4xxx_driver_template
.track_queue_depth
= 1;
9868 /* Allocate cache for SRBs. */
9869 srb_cachep
= kmem_cache_create("qla4xxx_srbs", sizeof(struct srb
), 0,
9870 SLAB_HWCACHE_ALIGN
, NULL
);
9871 if (srb_cachep
== NULL
) {
9873 "%s: Unable to allocate SRB cache..."
9874 "Failing load!\n", DRIVER_NAME
);
9879 /* Derive version string. */
9880 strcpy(qla4xxx_version_str
, QLA4XXX_DRIVER_VERSION
);
9881 if (ql4xextended_error_logging
)
9882 strcat(qla4xxx_version_str
, "-debug");
9884 qla4xxx_scsi_transport
=
9885 iscsi_register_transport(&qla4xxx_iscsi_transport
);
9886 if (!qla4xxx_scsi_transport
){
9888 goto release_srb_cache
;
9891 ret
= pci_register_driver(&qla4xxx_pci_driver
);
9893 goto unregister_transport
;
9895 printk(KERN_INFO
"QLogic iSCSI HBA Driver\n");
9898 unregister_transport
:
9899 iscsi_unregister_transport(&qla4xxx_iscsi_transport
);
9901 kmem_cache_destroy(srb_cachep
);
9906 static void __exit
qla4xxx_module_exit(void)
9908 pci_unregister_driver(&qla4xxx_pci_driver
);
9909 iscsi_unregister_transport(&qla4xxx_iscsi_transport
);
9910 kmem_cache_destroy(srb_cachep
);
9913 module_init(qla4xxx_module_init
);
9914 module_exit(qla4xxx_module_exit
);
9916 MODULE_AUTHOR("QLogic Corporation");
9917 MODULE_DESCRIPTION("QLogic iSCSI HBA Driver");
9918 MODULE_LICENSE("GPL");
9919 MODULE_VERSION(QLA4XXX_DRIVER_VERSION
);