2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2014 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
10 #include <linux/delay.h>
11 #include <linux/slab.h>
12 #include <linux/vmalloc.h>
14 #include "qla_devtbl.h"
20 #include <target/target_core_base.h>
21 #include "qla_target.h"
24 * QLogic ISP2x00 Hardware Support Function Prototypes.
26 static int qla2x00_isp_firmware(scsi_qla_host_t
*);
27 static int qla2x00_setup_chip(scsi_qla_host_t
*);
28 static int qla2x00_fw_ready(scsi_qla_host_t
*);
29 static int qla2x00_configure_hba(scsi_qla_host_t
*);
30 static int qla2x00_configure_loop(scsi_qla_host_t
*);
31 static int qla2x00_configure_local_loop(scsi_qla_host_t
*);
32 static int qla2x00_configure_fabric(scsi_qla_host_t
*);
33 static int qla2x00_find_all_fabric_devs(scsi_qla_host_t
*, struct list_head
*);
34 static int qla2x00_fabric_dev_login(scsi_qla_host_t
*, fc_port_t
*,
37 static int qla2x00_restart_isp(scsi_qla_host_t
*);
39 static struct qla_chip_state_84xx
*qla84xx_get_chip(struct scsi_qla_host
*);
40 static int qla84xx_init_chip(scsi_qla_host_t
*);
41 static int qla25xx_init_queues(struct qla_hw_data
*);
43 /* SRB Extensions ---------------------------------------------------------- */
46 qla2x00_sp_timeout(unsigned long __data
)
48 srb_t
*sp
= (srb_t
*)__data
;
49 struct srb_iocb
*iocb
;
50 fc_port_t
*fcport
= sp
->fcport
;
51 struct qla_hw_data
*ha
= fcport
->vha
->hw
;
55 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
56 req
= ha
->req_q_map
[0];
57 req
->outstanding_cmds
[sp
->handle
] = NULL
;
58 iocb
= &sp
->u
.iocb_cmd
;
60 sp
->free(fcport
->vha
, sp
);
61 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
65 qla2x00_sp_free(void *data
, void *ptr
)
67 srb_t
*sp
= (srb_t
*)ptr
;
68 struct srb_iocb
*iocb
= &sp
->u
.iocb_cmd
;
69 struct scsi_qla_host
*vha
= (scsi_qla_host_t
*)data
;
71 del_timer(&iocb
->timer
);
72 qla2x00_rel_sp(vha
, sp
);
75 /* Asynchronous Login/Logout Routines -------------------------------------- */
78 qla2x00_get_async_timeout(struct scsi_qla_host
*vha
)
81 struct qla_hw_data
*ha
= vha
->hw
;
83 /* Firmware should use switch negotiated r_a_tov for timeout. */
84 tmo
= ha
->r_a_tov
/ 10 * 2;
86 tmo
= FX00_DEF_RATOV
* 2;
87 } else if (!IS_FWI2_CAPABLE(ha
)) {
89 * Except for earlier ISPs where the timeout is seeded from the
90 * initialization control block.
92 tmo
= ha
->login_timeout
;
98 qla2x00_async_iocb_timeout(void *data
)
100 srb_t
*sp
= (srb_t
*)data
;
101 fc_port_t
*fcport
= sp
->fcport
;
103 ql_dbg(ql_dbg_disc
, fcport
->vha
, 0x2071,
104 "Async-%s timeout - hdl=%x portid=%02x%02x%02x.\n",
105 sp
->name
, sp
->handle
, fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
106 fcport
->d_id
.b
.al_pa
);
108 fcport
->flags
&= ~FCF_ASYNC_SENT
;
109 if (sp
->type
== SRB_LOGIN_CMD
) {
110 struct srb_iocb
*lio
= &sp
->u
.iocb_cmd
;
111 qla2x00_post_async_logout_work(fcport
->vha
, fcport
, NULL
);
112 /* Retry as needed. */
113 lio
->u
.logio
.data
[0] = MBS_COMMAND_ERROR
;
114 lio
->u
.logio
.data
[1] = lio
->u
.logio
.flags
& SRB_LOGIN_RETRIED
?
115 QLA_LOGIO_LOGIN_RETRIED
: 0;
116 qla2x00_post_async_login_done_work(fcport
->vha
, fcport
,
118 } else if (sp
->type
== SRB_LOGOUT_CMD
) {
119 qlt_logo_completion_handler(fcport
, QLA_FUNCTION_TIMEOUT
);
124 qla2x00_async_login_sp_done(void *data
, void *ptr
, int res
)
126 srb_t
*sp
= (srb_t
*)ptr
;
127 struct srb_iocb
*lio
= &sp
->u
.iocb_cmd
;
128 struct scsi_qla_host
*vha
= (scsi_qla_host_t
*)data
;
130 if (!test_bit(UNLOADING
, &vha
->dpc_flags
))
131 qla2x00_post_async_login_done_work(sp
->fcport
->vha
, sp
->fcport
,
133 sp
->free(sp
->fcport
->vha
, sp
);
137 qla2x00_async_login(struct scsi_qla_host
*vha
, fc_port_t
*fcport
,
141 struct srb_iocb
*lio
;
144 rval
= QLA_FUNCTION_FAILED
;
145 sp
= qla2x00_get_sp(vha
, fcport
, GFP_KERNEL
);
149 sp
->type
= SRB_LOGIN_CMD
;
151 qla2x00_init_timer(sp
, qla2x00_get_async_timeout(vha
) + 2);
153 lio
= &sp
->u
.iocb_cmd
;
154 lio
->timeout
= qla2x00_async_iocb_timeout
;
155 sp
->done
= qla2x00_async_login_sp_done
;
156 lio
->u
.logio
.flags
|= SRB_LOGIN_COND_PLOGI
;
157 if (data
[1] & QLA_LOGIO_LOGIN_RETRIED
)
158 lio
->u
.logio
.flags
|= SRB_LOGIN_RETRIED
;
159 rval
= qla2x00_start_sp(sp
);
160 if (rval
!= QLA_SUCCESS
)
163 ql_dbg(ql_dbg_disc
, vha
, 0x2072,
164 "Async-login - hdl=%x, loopid=%x portid=%02x%02x%02x "
165 "retries=%d.\n", sp
->handle
, fcport
->loop_id
,
166 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
167 fcport
->login_retry
);
171 sp
->free(fcport
->vha
, sp
);
177 qla2x00_async_logout_sp_done(void *data
, void *ptr
, int res
)
179 srb_t
*sp
= (srb_t
*)ptr
;
180 struct srb_iocb
*lio
= &sp
->u
.iocb_cmd
;
181 struct scsi_qla_host
*vha
= (scsi_qla_host_t
*)data
;
183 if (!test_bit(UNLOADING
, &vha
->dpc_flags
))
184 qla2x00_post_async_logout_done_work(sp
->fcport
->vha
, sp
->fcport
,
186 sp
->free(sp
->fcport
->vha
, sp
);
190 qla2x00_async_logout(struct scsi_qla_host
*vha
, fc_port_t
*fcport
)
193 struct srb_iocb
*lio
;
196 rval
= QLA_FUNCTION_FAILED
;
197 sp
= qla2x00_get_sp(vha
, fcport
, GFP_KERNEL
);
201 sp
->type
= SRB_LOGOUT_CMD
;
203 qla2x00_init_timer(sp
, qla2x00_get_async_timeout(vha
) + 2);
205 lio
= &sp
->u
.iocb_cmd
;
206 lio
->timeout
= qla2x00_async_iocb_timeout
;
207 sp
->done
= qla2x00_async_logout_sp_done
;
208 rval
= qla2x00_start_sp(sp
);
209 if (rval
!= QLA_SUCCESS
)
212 ql_dbg(ql_dbg_disc
, vha
, 0x2070,
213 "Async-logout - hdl=%x loop-id=%x portid=%02x%02x%02x.\n",
214 sp
->handle
, fcport
->loop_id
, fcport
->d_id
.b
.domain
,
215 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
219 sp
->free(fcport
->vha
, sp
);
225 qla2x00_async_adisc_sp_done(void *data
, void *ptr
, int res
)
227 srb_t
*sp
= (srb_t
*)ptr
;
228 struct srb_iocb
*lio
= &sp
->u
.iocb_cmd
;
229 struct scsi_qla_host
*vha
= (scsi_qla_host_t
*)data
;
231 if (!test_bit(UNLOADING
, &vha
->dpc_flags
))
232 qla2x00_post_async_adisc_done_work(sp
->fcport
->vha
, sp
->fcport
,
234 sp
->free(sp
->fcport
->vha
, sp
);
238 qla2x00_async_adisc(struct scsi_qla_host
*vha
, fc_port_t
*fcport
,
242 struct srb_iocb
*lio
;
245 rval
= QLA_FUNCTION_FAILED
;
246 sp
= qla2x00_get_sp(vha
, fcport
, GFP_KERNEL
);
250 sp
->type
= SRB_ADISC_CMD
;
252 qla2x00_init_timer(sp
, qla2x00_get_async_timeout(vha
) + 2);
254 lio
= &sp
->u
.iocb_cmd
;
255 lio
->timeout
= qla2x00_async_iocb_timeout
;
256 sp
->done
= qla2x00_async_adisc_sp_done
;
257 if (data
[1] & QLA_LOGIO_LOGIN_RETRIED
)
258 lio
->u
.logio
.flags
|= SRB_LOGIN_RETRIED
;
259 rval
= qla2x00_start_sp(sp
);
260 if (rval
!= QLA_SUCCESS
)
263 ql_dbg(ql_dbg_disc
, vha
, 0x206f,
264 "Async-adisc - hdl=%x loopid=%x portid=%02x%02x%02x.\n",
265 sp
->handle
, fcport
->loop_id
, fcport
->d_id
.b
.domain
,
266 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
270 sp
->free(fcport
->vha
, sp
);
276 qla2x00_tmf_iocb_timeout(void *data
)
278 srb_t
*sp
= (srb_t
*)data
;
279 struct srb_iocb
*tmf
= &sp
->u
.iocb_cmd
;
281 tmf
->u
.tmf
.comp_status
= CS_TIMEOUT
;
282 complete(&tmf
->u
.tmf
.comp
);
286 qla2x00_tmf_sp_done(void *data
, void *ptr
, int res
)
288 srb_t
*sp
= (srb_t
*)ptr
;
289 struct srb_iocb
*tmf
= &sp
->u
.iocb_cmd
;
290 complete(&tmf
->u
.tmf
.comp
);
294 qla2x00_async_tm_cmd(fc_port_t
*fcport
, uint32_t flags
, uint32_t lun
,
297 struct scsi_qla_host
*vha
= fcport
->vha
;
298 struct srb_iocb
*tm_iocb
;
300 int rval
= QLA_FUNCTION_FAILED
;
302 sp
= qla2x00_get_sp(vha
, fcport
, GFP_KERNEL
);
306 tm_iocb
= &sp
->u
.iocb_cmd
;
307 sp
->type
= SRB_TM_CMD
;
309 qla2x00_init_timer(sp
, qla2x00_get_async_timeout(vha
));
310 tm_iocb
->u
.tmf
.flags
= flags
;
311 tm_iocb
->u
.tmf
.lun
= lun
;
312 tm_iocb
->u
.tmf
.data
= tag
;
313 sp
->done
= qla2x00_tmf_sp_done
;
314 tm_iocb
->timeout
= qla2x00_tmf_iocb_timeout
;
315 init_completion(&tm_iocb
->u
.tmf
.comp
);
317 rval
= qla2x00_start_sp(sp
);
318 if (rval
!= QLA_SUCCESS
)
321 ql_dbg(ql_dbg_taskm
, vha
, 0x802f,
322 "Async-tmf hdl=%x loop-id=%x portid=%02x%02x%02x.\n",
323 sp
->handle
, fcport
->loop_id
, fcport
->d_id
.b
.domain
,
324 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
326 wait_for_completion(&tm_iocb
->u
.tmf
.comp
);
328 rval
= tm_iocb
->u
.tmf
.comp_status
== CS_COMPLETE
?
329 QLA_SUCCESS
: QLA_FUNCTION_FAILED
;
331 if ((rval
!= QLA_SUCCESS
) || tm_iocb
->u
.tmf
.data
) {
332 ql_dbg(ql_dbg_taskm
, vha
, 0x8030,
333 "TM IOCB failed (%x).\n", rval
);
336 if (!test_bit(UNLOADING
, &vha
->dpc_flags
) && !IS_QLAFX00(vha
->hw
)) {
337 flags
= tm_iocb
->u
.tmf
.flags
;
338 lun
= (uint16_t)tm_iocb
->u
.tmf
.lun
;
340 /* Issue Marker IOCB */
341 qla2x00_marker(vha
, vha
->hw
->req_q_map
[0],
342 vha
->hw
->rsp_q_map
[0], sp
->fcport
->loop_id
, lun
,
343 flags
== TCF_LUN_RESET
? MK_SYNC_ID_LUN
: MK_SYNC_ID
);
353 qla24xx_abort_iocb_timeout(void *data
)
355 srb_t
*sp
= (srb_t
*)data
;
356 struct srb_iocb
*abt
= &sp
->u
.iocb_cmd
;
358 abt
->u
.abt
.comp_status
= CS_TIMEOUT
;
359 complete(&abt
->u
.abt
.comp
);
363 qla24xx_abort_sp_done(void *data
, void *ptr
, int res
)
365 srb_t
*sp
= (srb_t
*)ptr
;
366 struct srb_iocb
*abt
= &sp
->u
.iocb_cmd
;
368 complete(&abt
->u
.abt
.comp
);
372 qla24xx_async_abort_cmd(srb_t
*cmd_sp
)
374 scsi_qla_host_t
*vha
= cmd_sp
->fcport
->vha
;
375 fc_port_t
*fcport
= cmd_sp
->fcport
;
376 struct srb_iocb
*abt_iocb
;
378 int rval
= QLA_FUNCTION_FAILED
;
380 sp
= qla2x00_get_sp(vha
, fcport
, GFP_KERNEL
);
384 abt_iocb
= &sp
->u
.iocb_cmd
;
385 sp
->type
= SRB_ABT_CMD
;
387 qla2x00_init_timer(sp
, qla2x00_get_async_timeout(vha
));
388 abt_iocb
->u
.abt
.cmd_hndl
= cmd_sp
->handle
;
389 sp
->done
= qla24xx_abort_sp_done
;
390 abt_iocb
->timeout
= qla24xx_abort_iocb_timeout
;
391 init_completion(&abt_iocb
->u
.abt
.comp
);
393 rval
= qla2x00_start_sp(sp
);
394 if (rval
!= QLA_SUCCESS
)
397 ql_dbg(ql_dbg_async
, vha
, 0x507c,
398 "Abort command issued - hdl=%x, target_id=%x\n",
399 cmd_sp
->handle
, fcport
->tgt_id
);
401 wait_for_completion(&abt_iocb
->u
.abt
.comp
);
403 rval
= abt_iocb
->u
.abt
.comp_status
== CS_COMPLETE
?
404 QLA_SUCCESS
: QLA_FUNCTION_FAILED
;
413 qla24xx_async_abort_command(srb_t
*sp
)
415 unsigned long flags
= 0;
418 fc_port_t
*fcport
= sp
->fcport
;
419 struct scsi_qla_host
*vha
= fcport
->vha
;
420 struct qla_hw_data
*ha
= vha
->hw
;
421 struct req_que
*req
= vha
->req
;
423 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
424 for (handle
= 1; handle
< req
->num_outstanding_cmds
; handle
++) {
425 if (req
->outstanding_cmds
[handle
] == sp
)
428 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
429 if (handle
== req
->num_outstanding_cmds
) {
430 /* Command not found. */
431 return QLA_FUNCTION_FAILED
;
433 if (sp
->type
== SRB_FXIOCB_DCMD
)
434 return qlafx00_fx_disc(vha
, &vha
->hw
->mr
.fcport
,
437 return qla24xx_async_abort_cmd(sp
);
441 qla2x00_async_login_done(struct scsi_qla_host
*vha
, fc_port_t
*fcport
,
447 case MBS_COMMAND_COMPLETE
:
449 * Driver must validate login state - If PRLI not complete,
450 * force a relogin attempt via implicit LOGO, PLOGI, and PRLI
453 rval
= qla2x00_get_port_database(vha
, fcport
, 0);
454 if (rval
== QLA_NOT_LOGGED_IN
) {
455 fcport
->flags
&= ~FCF_ASYNC_SENT
;
456 fcport
->flags
|= FCF_LOGIN_NEEDED
;
457 set_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
);
461 if (rval
!= QLA_SUCCESS
) {
462 qla2x00_post_async_logout_work(vha
, fcport
, NULL
);
463 qla2x00_post_async_login_work(vha
, fcport
, NULL
);
466 if (fcport
->flags
& FCF_FCP2_DEVICE
) {
467 qla2x00_post_async_adisc_work(vha
, fcport
, data
);
470 qla2x00_update_fcport(vha
, fcport
);
472 case MBS_COMMAND_ERROR
:
473 fcport
->flags
&= ~FCF_ASYNC_SENT
;
474 if (data
[1] & QLA_LOGIO_LOGIN_RETRIED
)
475 set_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
);
477 qla2x00_mark_device_lost(vha
, fcport
, 1, 0);
479 case MBS_PORT_ID_USED
:
480 fcport
->loop_id
= data
[1];
481 qla2x00_post_async_logout_work(vha
, fcport
, NULL
);
482 qla2x00_post_async_login_work(vha
, fcport
, NULL
);
484 case MBS_LOOP_ID_USED
:
486 rval
= qla2x00_find_new_loop_id(vha
, fcport
);
487 if (rval
!= QLA_SUCCESS
) {
488 fcport
->flags
&= ~FCF_ASYNC_SENT
;
489 qla2x00_mark_device_lost(vha
, fcport
, 1, 0);
492 qla2x00_post_async_login_work(vha
, fcport
, NULL
);
499 qla2x00_async_logout_done(struct scsi_qla_host
*vha
, fc_port_t
*fcport
,
502 /* Don't re-login in target mode */
503 if (!fcport
->tgt_session
)
504 qla2x00_mark_device_lost(vha
, fcport
, 1, 0);
505 qlt_logo_completion_handler(fcport
, data
[0]);
510 qla2x00_async_adisc_done(struct scsi_qla_host
*vha
, fc_port_t
*fcport
,
513 if (data
[0] == MBS_COMMAND_COMPLETE
) {
514 qla2x00_update_fcport(vha
, fcport
);
520 fcport
->flags
&= ~FCF_ASYNC_SENT
;
521 if (data
[1] & QLA_LOGIO_LOGIN_RETRIED
)
522 set_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
);
524 qla2x00_mark_device_lost(vha
, fcport
, 1, 0);
529 /****************************************************************************/
530 /* QLogic ISP2x00 Hardware Support Functions. */
531 /****************************************************************************/
534 qla83xx_nic_core_fw_load(scsi_qla_host_t
*vha
)
536 int rval
= QLA_SUCCESS
;
537 struct qla_hw_data
*ha
= vha
->hw
;
538 uint32_t idc_major_ver
, idc_minor_ver
;
541 qla83xx_idc_lock(vha
, 0);
543 /* SV: TODO: Assign initialization timeout from
544 * flash-info / other param
546 ha
->fcoe_dev_init_timeout
= QLA83XX_IDC_INITIALIZATION_TIMEOUT
;
547 ha
->fcoe_reset_timeout
= QLA83XX_IDC_RESET_ACK_TIMEOUT
;
549 /* Set our fcoe function presence */
550 if (__qla83xx_set_drv_presence(vha
) != QLA_SUCCESS
) {
551 ql_dbg(ql_dbg_p3p
, vha
, 0xb077,
552 "Error while setting DRV-Presence.\n");
553 rval
= QLA_FUNCTION_FAILED
;
557 /* Decide the reset ownership */
558 qla83xx_reset_ownership(vha
);
561 * On first protocol driver load:
562 * Init-Owner: Set IDC-Major-Version and Clear IDC-Lock-Recovery
564 * Others: Check compatibility with current IDC Major version.
566 qla83xx_rd_reg(vha
, QLA83XX_IDC_MAJOR_VERSION
, &idc_major_ver
);
567 if (ha
->flags
.nic_core_reset_owner
) {
568 /* Set IDC Major version */
569 idc_major_ver
= QLA83XX_SUPP_IDC_MAJOR_VERSION
;
570 qla83xx_wr_reg(vha
, QLA83XX_IDC_MAJOR_VERSION
, idc_major_ver
);
572 /* Clearing IDC-Lock-Recovery register */
573 qla83xx_wr_reg(vha
, QLA83XX_IDC_LOCK_RECOVERY
, 0);
574 } else if (idc_major_ver
!= QLA83XX_SUPP_IDC_MAJOR_VERSION
) {
576 * Clear further IDC participation if we are not compatible with
577 * the current IDC Major Version.
579 ql_log(ql_log_warn
, vha
, 0xb07d,
580 "Failing load, idc_major_ver=%d, expected_major_ver=%d.\n",
581 idc_major_ver
, QLA83XX_SUPP_IDC_MAJOR_VERSION
);
582 __qla83xx_clear_drv_presence(vha
);
583 rval
= QLA_FUNCTION_FAILED
;
586 /* Each function sets its supported Minor version. */
587 qla83xx_rd_reg(vha
, QLA83XX_IDC_MINOR_VERSION
, &idc_minor_ver
);
588 idc_minor_ver
|= (QLA83XX_SUPP_IDC_MINOR_VERSION
<< (ha
->portnum
* 2));
589 qla83xx_wr_reg(vha
, QLA83XX_IDC_MINOR_VERSION
, idc_minor_ver
);
591 if (ha
->flags
.nic_core_reset_owner
) {
592 memset(config
, 0, sizeof(config
));
593 if (!qla81xx_get_port_config(vha
, config
))
594 qla83xx_wr_reg(vha
, QLA83XX_IDC_DEV_STATE
,
598 rval
= qla83xx_idc_state_handler(vha
);
601 qla83xx_idc_unlock(vha
, 0);
607 * qla2x00_initialize_adapter
611 * ha = adapter block pointer.
617 qla2x00_initialize_adapter(scsi_qla_host_t
*vha
)
620 struct qla_hw_data
*ha
= vha
->hw
;
621 struct req_que
*req
= ha
->req_q_map
[0];
623 /* Clear adapter flags. */
624 vha
->flags
.online
= 0;
625 ha
->flags
.chip_reset_done
= 0;
626 vha
->flags
.reset_active
= 0;
627 ha
->flags
.pci_channel_io_perm_failure
= 0;
628 ha
->flags
.eeh_busy
= 0;
629 vha
->qla_stats
.jiffies_at_last_reset
= get_jiffies_64();
630 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
631 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
632 vha
->device_flags
= DFLG_NO_CABLE
;
634 vha
->flags
.management_server_logged_in
= 0;
635 vha
->marker_needed
= 0;
636 ha
->isp_abort_cnt
= 0;
637 ha
->beacon_blink_led
= 0;
639 set_bit(0, ha
->req_qid_map
);
640 set_bit(0, ha
->rsp_qid_map
);
642 ql_dbg(ql_dbg_init
, vha
, 0x0040,
643 "Configuring PCI space...\n");
644 rval
= ha
->isp_ops
->pci_config(vha
);
646 ql_log(ql_log_warn
, vha
, 0x0044,
647 "Unable to configure PCI space.\n");
651 ha
->isp_ops
->reset_chip(vha
);
653 rval
= qla2xxx_get_flash_info(vha
);
655 ql_log(ql_log_fatal
, vha
, 0x004f,
656 "Unable to validate FLASH data.\n");
660 if (IS_QLA8044(ha
)) {
661 qla8044_read_reset_template(vha
);
663 /* NOTE: If ql2xdontresethba==1, set IDC_CTRL DONTRESET_BIT0.
664 * If DONRESET_BIT0 is set, drivers should not set dev_state
665 * to NEED_RESET. But if NEED_RESET is set, drivers should
666 * should honor the reset. */
667 if (ql2xdontresethba
== 1)
668 qla8044_set_idc_dontreset(vha
);
671 ha
->isp_ops
->get_flash_version(vha
, req
->ring
);
672 ql_dbg(ql_dbg_init
, vha
, 0x0061,
673 "Configure NVRAM parameters...\n");
675 ha
->isp_ops
->nvram_config(vha
);
677 if (ha
->flags
.disable_serdes
) {
678 /* Mask HBA via NVRAM settings? */
679 ql_log(ql_log_info
, vha
, 0x0077,
680 "Masking HBA WWPN %8phN (via NVRAM).\n", vha
->port_name
);
681 return QLA_FUNCTION_FAILED
;
684 ql_dbg(ql_dbg_init
, vha
, 0x0078,
685 "Verifying loaded RISC code...\n");
687 if (qla2x00_isp_firmware(vha
) != QLA_SUCCESS
) {
688 rval
= ha
->isp_ops
->chip_diag(vha
);
691 rval
= qla2x00_setup_chip(vha
);
696 if (IS_QLA84XX(ha
)) {
697 ha
->cs84xx
= qla84xx_get_chip(vha
);
699 ql_log(ql_log_warn
, vha
, 0x00d0,
700 "Unable to configure ISP84XX.\n");
701 return QLA_FUNCTION_FAILED
;
705 if (qla_ini_mode_enabled(vha
))
706 rval
= qla2x00_init_rings(vha
);
708 ha
->flags
.chip_reset_done
= 1;
710 if (rval
== QLA_SUCCESS
&& IS_QLA84XX(ha
)) {
711 /* Issue verify 84xx FW IOCB to complete 84xx initialization */
712 rval
= qla84xx_init_chip(vha
);
713 if (rval
!= QLA_SUCCESS
) {
714 ql_log(ql_log_warn
, vha
, 0x00d4,
715 "Unable to initialize ISP84XX.\n");
716 qla84xx_put_chip(vha
);
720 /* Load the NIC Core f/w if we are the first protocol driver. */
721 if (IS_QLA8031(ha
)) {
722 rval
= qla83xx_nic_core_fw_load(vha
);
724 ql_log(ql_log_warn
, vha
, 0x0124,
725 "Error in initializing NIC Core f/w.\n");
728 if (IS_QLA24XX_TYPE(ha
) || IS_QLA25XX(ha
))
729 qla24xx_read_fcp_prio_cfg(vha
);
732 qla82xx_set_driver_version(vha
, QLA2XXX_VERSION
);
734 qla25xx_set_driver_version(vha
, QLA2XXX_VERSION
);
740 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
743 * Returns 0 on success.
746 qla2100_pci_config(scsi_qla_host_t
*vha
)
750 struct qla_hw_data
*ha
= vha
->hw
;
751 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
753 pci_set_master(ha
->pdev
);
754 pci_try_set_mwi(ha
->pdev
);
756 pci_read_config_word(ha
->pdev
, PCI_COMMAND
, &w
);
757 w
|= (PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
);
758 pci_write_config_word(ha
->pdev
, PCI_COMMAND
, w
);
760 pci_disable_rom(ha
->pdev
);
762 /* Get PCI bus information. */
763 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
764 ha
->pci_attr
= RD_REG_WORD(®
->ctrl_status
);
765 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
771 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
774 * Returns 0 on success.
777 qla2300_pci_config(scsi_qla_host_t
*vha
)
780 unsigned long flags
= 0;
782 struct qla_hw_data
*ha
= vha
->hw
;
783 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
785 pci_set_master(ha
->pdev
);
786 pci_try_set_mwi(ha
->pdev
);
788 pci_read_config_word(ha
->pdev
, PCI_COMMAND
, &w
);
789 w
|= (PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
);
791 if (IS_QLA2322(ha
) || IS_QLA6322(ha
))
792 w
&= ~PCI_COMMAND_INTX_DISABLE
;
793 pci_write_config_word(ha
->pdev
, PCI_COMMAND
, w
);
796 * If this is a 2300 card and not 2312, reset the
797 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
798 * the 2310 also reports itself as a 2300 so we need to get the
799 * fb revision level -- a 6 indicates it really is a 2300 and
802 if (IS_QLA2300(ha
)) {
803 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
806 WRT_REG_WORD(®
->hccr
, HCCR_PAUSE_RISC
);
807 for (cnt
= 0; cnt
< 30000; cnt
++) {
808 if ((RD_REG_WORD(®
->hccr
) & HCCR_RISC_PAUSE
) != 0)
814 /* Select FPM registers. */
815 WRT_REG_WORD(®
->ctrl_status
, 0x20);
816 RD_REG_WORD(®
->ctrl_status
);
818 /* Get the fb rev level */
819 ha
->fb_rev
= RD_FB_CMD_REG(ha
, reg
);
821 if (ha
->fb_rev
== FPM_2300
)
822 pci_clear_mwi(ha
->pdev
);
824 /* Deselect FPM registers. */
825 WRT_REG_WORD(®
->ctrl_status
, 0x0);
826 RD_REG_WORD(®
->ctrl_status
);
828 /* Release RISC module. */
829 WRT_REG_WORD(®
->hccr
, HCCR_RELEASE_RISC
);
830 for (cnt
= 0; cnt
< 30000; cnt
++) {
831 if ((RD_REG_WORD(®
->hccr
) & HCCR_RISC_PAUSE
) == 0)
837 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
840 pci_write_config_byte(ha
->pdev
, PCI_LATENCY_TIMER
, 0x80);
842 pci_disable_rom(ha
->pdev
);
844 /* Get PCI bus information. */
845 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
846 ha
->pci_attr
= RD_REG_WORD(®
->ctrl_status
);
847 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
853 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
856 * Returns 0 on success.
859 qla24xx_pci_config(scsi_qla_host_t
*vha
)
862 unsigned long flags
= 0;
863 struct qla_hw_data
*ha
= vha
->hw
;
864 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
866 pci_set_master(ha
->pdev
);
867 pci_try_set_mwi(ha
->pdev
);
869 pci_read_config_word(ha
->pdev
, PCI_COMMAND
, &w
);
870 w
|= (PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
);
871 w
&= ~PCI_COMMAND_INTX_DISABLE
;
872 pci_write_config_word(ha
->pdev
, PCI_COMMAND
, w
);
874 pci_write_config_byte(ha
->pdev
, PCI_LATENCY_TIMER
, 0x80);
876 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
877 if (pci_find_capability(ha
->pdev
, PCI_CAP_ID_PCIX
))
878 pcix_set_mmrbc(ha
->pdev
, 2048);
880 /* PCIe -- adjust Maximum Read Request Size (2048). */
881 if (pci_is_pcie(ha
->pdev
))
882 pcie_set_readrq(ha
->pdev
, 4096);
884 pci_disable_rom(ha
->pdev
);
886 ha
->chip_revision
= ha
->pdev
->revision
;
888 /* Get PCI bus information. */
889 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
890 ha
->pci_attr
= RD_REG_DWORD(®
->ctrl_status
);
891 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
897 * qla25xx_pci_config() - Setup ISP25xx PCI configuration registers.
900 * Returns 0 on success.
903 qla25xx_pci_config(scsi_qla_host_t
*vha
)
906 struct qla_hw_data
*ha
= vha
->hw
;
908 pci_set_master(ha
->pdev
);
909 pci_try_set_mwi(ha
->pdev
);
911 pci_read_config_word(ha
->pdev
, PCI_COMMAND
, &w
);
912 w
|= (PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
);
913 w
&= ~PCI_COMMAND_INTX_DISABLE
;
914 pci_write_config_word(ha
->pdev
, PCI_COMMAND
, w
);
916 /* PCIe -- adjust Maximum Read Request Size (2048). */
917 if (pci_is_pcie(ha
->pdev
))
918 pcie_set_readrq(ha
->pdev
, 4096);
920 pci_disable_rom(ha
->pdev
);
922 ha
->chip_revision
= ha
->pdev
->revision
;
928 * qla2x00_isp_firmware() - Choose firmware image.
931 * Returns 0 on success.
934 qla2x00_isp_firmware(scsi_qla_host_t
*vha
)
937 uint16_t loop_id
, topo
, sw_cap
;
938 uint8_t domain
, area
, al_pa
;
939 struct qla_hw_data
*ha
= vha
->hw
;
941 /* Assume loading risc code */
942 rval
= QLA_FUNCTION_FAILED
;
944 if (ha
->flags
.disable_risc_code_load
) {
945 ql_log(ql_log_info
, vha
, 0x0079, "RISC CODE NOT loaded.\n");
947 /* Verify checksum of loaded RISC code. */
948 rval
= qla2x00_verify_checksum(vha
, ha
->fw_srisc_address
);
949 if (rval
== QLA_SUCCESS
) {
950 /* And, verify we are not in ROM code. */
951 rval
= qla2x00_get_adapter_id(vha
, &loop_id
, &al_pa
,
952 &area
, &domain
, &topo
, &sw_cap
);
957 ql_dbg(ql_dbg_init
, vha
, 0x007a,
958 "**** Load RISC code ****.\n");
964 * qla2x00_reset_chip() - Reset ISP chip.
967 * Returns 0 on success.
970 qla2x00_reset_chip(scsi_qla_host_t
*vha
)
972 unsigned long flags
= 0;
973 struct qla_hw_data
*ha
= vha
->hw
;
974 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
978 if (unlikely(pci_channel_offline(ha
->pdev
)))
981 ha
->isp_ops
->disable_intrs(ha
);
983 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
985 /* Turn off master enable */
987 pci_read_config_word(ha
->pdev
, PCI_COMMAND
, &cmd
);
988 cmd
&= ~PCI_COMMAND_MASTER
;
989 pci_write_config_word(ha
->pdev
, PCI_COMMAND
, cmd
);
991 if (!IS_QLA2100(ha
)) {
993 WRT_REG_WORD(®
->hccr
, HCCR_PAUSE_RISC
);
994 if (IS_QLA2200(ha
) || IS_QLA2300(ha
)) {
995 for (cnt
= 0; cnt
< 30000; cnt
++) {
996 if ((RD_REG_WORD(®
->hccr
) &
997 HCCR_RISC_PAUSE
) != 0)
1002 RD_REG_WORD(®
->hccr
); /* PCI Posting. */
1006 /* Select FPM registers. */
1007 WRT_REG_WORD(®
->ctrl_status
, 0x20);
1008 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1010 /* FPM Soft Reset. */
1011 WRT_REG_WORD(®
->fpm_diag_config
, 0x100);
1012 RD_REG_WORD(®
->fpm_diag_config
); /* PCI Posting. */
1014 /* Toggle Fpm Reset. */
1015 if (!IS_QLA2200(ha
)) {
1016 WRT_REG_WORD(®
->fpm_diag_config
, 0x0);
1017 RD_REG_WORD(®
->fpm_diag_config
); /* PCI Posting. */
1020 /* Select frame buffer registers. */
1021 WRT_REG_WORD(®
->ctrl_status
, 0x10);
1022 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1024 /* Reset frame buffer FIFOs. */
1025 if (IS_QLA2200(ha
)) {
1026 WRT_FB_CMD_REG(ha
, reg
, 0xa000);
1027 RD_FB_CMD_REG(ha
, reg
); /* PCI Posting. */
1029 WRT_FB_CMD_REG(ha
, reg
, 0x00fc);
1031 /* Read back fb_cmd until zero or 3 seconds max */
1032 for (cnt
= 0; cnt
< 3000; cnt
++) {
1033 if ((RD_FB_CMD_REG(ha
, reg
) & 0xff) == 0)
1039 /* Select RISC module registers. */
1040 WRT_REG_WORD(®
->ctrl_status
, 0);
1041 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1043 /* Reset RISC processor. */
1044 WRT_REG_WORD(®
->hccr
, HCCR_RESET_RISC
);
1045 RD_REG_WORD(®
->hccr
); /* PCI Posting. */
1047 /* Release RISC processor. */
1048 WRT_REG_WORD(®
->hccr
, HCCR_RELEASE_RISC
);
1049 RD_REG_WORD(®
->hccr
); /* PCI Posting. */
1052 WRT_REG_WORD(®
->hccr
, HCCR_CLR_RISC_INT
);
1053 WRT_REG_WORD(®
->hccr
, HCCR_CLR_HOST_INT
);
1055 /* Reset ISP chip. */
1056 WRT_REG_WORD(®
->ctrl_status
, CSR_ISP_SOFT_RESET
);
1058 /* Wait for RISC to recover from reset. */
1059 if (IS_QLA2100(ha
) || IS_QLA2200(ha
) || IS_QLA2300(ha
)) {
1061 * It is necessary to for a delay here since the card doesn't
1062 * respond to PCI reads during a reset. On some architectures
1063 * this will result in an MCA.
1066 for (cnt
= 30000; cnt
; cnt
--) {
1067 if ((RD_REG_WORD(®
->ctrl_status
) &
1068 CSR_ISP_SOFT_RESET
) == 0)
1075 /* Reset RISC processor. */
1076 WRT_REG_WORD(®
->hccr
, HCCR_RESET_RISC
);
1078 WRT_REG_WORD(®
->semaphore
, 0);
1080 /* Release RISC processor. */
1081 WRT_REG_WORD(®
->hccr
, HCCR_RELEASE_RISC
);
1082 RD_REG_WORD(®
->hccr
); /* PCI Posting. */
1084 if (IS_QLA2100(ha
) || IS_QLA2200(ha
) || IS_QLA2300(ha
)) {
1085 for (cnt
= 0; cnt
< 30000; cnt
++) {
1086 if (RD_MAILBOX_REG(ha
, reg
, 0) != MBS_BUSY
)
1094 /* Turn on master enable */
1095 cmd
|= PCI_COMMAND_MASTER
;
1096 pci_write_config_word(ha
->pdev
, PCI_COMMAND
, cmd
);
1098 /* Disable RISC pause on FPM parity error. */
1099 if (!IS_QLA2100(ha
)) {
1100 WRT_REG_WORD(®
->hccr
, HCCR_DISABLE_PARITY_PAUSE
);
1101 RD_REG_WORD(®
->hccr
); /* PCI Posting. */
1104 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1108 * qla81xx_reset_mpi() - Reset's MPI FW via Write MPI Register MBC.
1110 * Returns 0 on success.
1113 qla81xx_reset_mpi(scsi_qla_host_t
*vha
)
1115 uint16_t mb
[4] = {0x1010, 0, 1, 0};
1117 if (!IS_QLA81XX(vha
->hw
))
1120 return qla81xx_write_mpi_register(vha
, mb
);
1124 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
1127 * Returns 0 on success.
1130 qla24xx_reset_risc(scsi_qla_host_t
*vha
)
1132 unsigned long flags
= 0;
1133 struct qla_hw_data
*ha
= vha
->hw
;
1134 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1137 static int abts_cnt
; /* ISP abort retry counts */
1138 int rval
= QLA_SUCCESS
;
1140 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1143 WRT_REG_DWORD(®
->ctrl_status
, CSRX_DMA_SHUTDOWN
|MWB_4096_BYTES
);
1144 for (cnt
= 0; cnt
< 30000; cnt
++) {
1145 if ((RD_REG_DWORD(®
->ctrl_status
) & CSRX_DMA_ACTIVE
) == 0)
1151 if (!(RD_REG_DWORD(®
->ctrl_status
) & CSRX_DMA_ACTIVE
))
1152 set_bit(DMA_SHUTDOWN_CMPL
, &ha
->fw_dump_cap_flags
);
1154 ql_dbg(ql_dbg_init
+ ql_dbg_verbose
, vha
, 0x017e,
1155 "HCCR: 0x%x, Control Status %x, DMA active status:0x%x\n",
1156 RD_REG_DWORD(®
->hccr
),
1157 RD_REG_DWORD(®
->ctrl_status
),
1158 (RD_REG_DWORD(®
->ctrl_status
) & CSRX_DMA_ACTIVE
));
1160 WRT_REG_DWORD(®
->ctrl_status
,
1161 CSRX_ISP_SOFT_RESET
|CSRX_DMA_SHUTDOWN
|MWB_4096_BYTES
);
1162 pci_read_config_word(ha
->pdev
, PCI_COMMAND
, &wd
);
1166 /* Wait for firmware to complete NVRAM accesses. */
1167 RD_REG_WORD(®
->mailbox0
);
1168 for (cnt
= 10000; RD_REG_WORD(®
->mailbox0
) != 0 &&
1169 rval
== QLA_SUCCESS
; cnt
--) {
1174 rval
= QLA_FUNCTION_TIMEOUT
;
1177 if (rval
== QLA_SUCCESS
)
1178 set_bit(ISP_MBX_RDY
, &ha
->fw_dump_cap_flags
);
1180 ql_dbg(ql_dbg_init
+ ql_dbg_verbose
, vha
, 0x017f,
1181 "HCCR: 0x%x, MailBox0 Status 0x%x\n",
1182 RD_REG_DWORD(®
->hccr
),
1183 RD_REG_DWORD(®
->mailbox0
));
1185 /* Wait for soft-reset to complete. */
1186 RD_REG_DWORD(®
->ctrl_status
);
1187 for (cnt
= 0; cnt
< 6000000; cnt
++) {
1189 if ((RD_REG_DWORD(®
->ctrl_status
) &
1190 CSRX_ISP_SOFT_RESET
) == 0)
1195 if (!(RD_REG_DWORD(®
->ctrl_status
) & CSRX_ISP_SOFT_RESET
))
1196 set_bit(ISP_SOFT_RESET_CMPL
, &ha
->fw_dump_cap_flags
);
1198 ql_dbg(ql_dbg_init
+ ql_dbg_verbose
, vha
, 0x015d,
1199 "HCCR: 0x%x, Soft Reset status: 0x%x\n",
1200 RD_REG_DWORD(®
->hccr
),
1201 RD_REG_DWORD(®
->ctrl_status
));
1203 /* If required, do an MPI FW reset now */
1204 if (test_and_clear_bit(MPI_RESET_NEEDED
, &vha
->dpc_flags
)) {
1205 if (qla81xx_reset_mpi(vha
) != QLA_SUCCESS
) {
1206 if (++abts_cnt
< 5) {
1207 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1208 set_bit(MPI_RESET_NEEDED
, &vha
->dpc_flags
);
1211 * We exhausted the ISP abort retries. We have to
1212 * set the board offline.
1215 vha
->flags
.online
= 0;
1220 WRT_REG_DWORD(®
->hccr
, HCCRX_SET_RISC_RESET
);
1221 RD_REG_DWORD(®
->hccr
);
1223 WRT_REG_DWORD(®
->hccr
, HCCRX_REL_RISC_PAUSE
);
1224 RD_REG_DWORD(®
->hccr
);
1226 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_RESET
);
1227 RD_REG_DWORD(®
->hccr
);
1229 RD_REG_WORD(®
->mailbox0
);
1230 for (cnt
= 6000000; RD_REG_WORD(®
->mailbox0
) != 0 &&
1231 rval
== QLA_SUCCESS
; cnt
--) {
1236 rval
= QLA_FUNCTION_TIMEOUT
;
1238 if (rval
== QLA_SUCCESS
)
1239 set_bit(RISC_RDY_AFT_RESET
, &ha
->fw_dump_cap_flags
);
1241 ql_dbg(ql_dbg_init
+ ql_dbg_verbose
, vha
, 0x015e,
1242 "Host Risc 0x%x, mailbox0 0x%x\n",
1243 RD_REG_DWORD(®
->hccr
),
1244 RD_REG_WORD(®
->mailbox0
));
1246 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1248 ql_dbg(ql_dbg_init
+ ql_dbg_verbose
, vha
, 0x015f,
1249 "Driver in %s mode\n",
1250 IS_NOPOLLING_TYPE(ha
) ? "Interrupt" : "Polling");
1252 if (IS_NOPOLLING_TYPE(ha
))
1253 ha
->isp_ops
->enable_intrs(ha
);
1259 qla25xx_read_risc_sema_reg(scsi_qla_host_t
*vha
, uint32_t *data
)
1261 struct device_reg_24xx __iomem
*reg
= &vha
->hw
->iobase
->isp24
;
1263 WRT_REG_DWORD(®
->iobase_addr
, RISC_REGISTER_BASE_OFFSET
);
1264 *data
= RD_REG_DWORD(®
->iobase_window
+ RISC_REGISTER_WINDOW_OFFET
);
1269 qla25xx_write_risc_sema_reg(scsi_qla_host_t
*vha
, uint32_t data
)
1271 struct device_reg_24xx __iomem
*reg
= &vha
->hw
->iobase
->isp24
;
1273 WRT_REG_DWORD(®
->iobase_addr
, RISC_REGISTER_BASE_OFFSET
);
1274 WRT_REG_DWORD(®
->iobase_window
+ RISC_REGISTER_WINDOW_OFFET
, data
);
1278 qla25xx_manipulate_risc_semaphore(scsi_qla_host_t
*vha
)
1281 uint delta_msec
= 100;
1282 uint elapsed_msec
= 0;
1286 if (vha
->hw
->pdev
->subsystem_device
!= 0x0175 &&
1287 vha
->hw
->pdev
->subsystem_device
!= 0x0240)
1290 WRT_REG_DWORD(&vha
->hw
->iobase
->isp24
.hccr
, HCCRX_SET_RISC_PAUSE
);
1294 timeout_msec
= TIMEOUT_SEMAPHORE
;
1295 n
= timeout_msec
/ delta_msec
;
1297 qla25xx_write_risc_sema_reg(vha
, RISC_SEMAPHORE_SET
);
1298 qla25xx_read_risc_sema_reg(vha
, &wd32
);
1299 if (wd32
& RISC_SEMAPHORE
)
1302 elapsed_msec
+= delta_msec
;
1303 if (elapsed_msec
> TIMEOUT_TOTAL_ELAPSED
)
1307 if (!(wd32
& RISC_SEMAPHORE
))
1310 if (!(wd32
& RISC_SEMAPHORE_FORCE
))
1313 qla25xx_write_risc_sema_reg(vha
, RISC_SEMAPHORE_CLR
);
1314 timeout_msec
= TIMEOUT_SEMAPHORE_FORCE
;
1315 n
= timeout_msec
/ delta_msec
;
1317 qla25xx_read_risc_sema_reg(vha
, &wd32
);
1318 if (!(wd32
& RISC_SEMAPHORE_FORCE
))
1321 elapsed_msec
+= delta_msec
;
1322 if (elapsed_msec
> TIMEOUT_TOTAL_ELAPSED
)
1326 if (wd32
& RISC_SEMAPHORE_FORCE
)
1327 qla25xx_write_risc_sema_reg(vha
, RISC_SEMAPHORE_FORCE_CLR
);
1332 qla25xx_write_risc_sema_reg(vha
, RISC_SEMAPHORE_FORCE_SET
);
1339 * qla24xx_reset_chip() - Reset ISP24xx chip.
1342 * Returns 0 on success.
1345 qla24xx_reset_chip(scsi_qla_host_t
*vha
)
1347 struct qla_hw_data
*ha
= vha
->hw
;
1349 if (pci_channel_offline(ha
->pdev
) &&
1350 ha
->flags
.pci_channel_io_perm_failure
) {
1354 ha
->isp_ops
->disable_intrs(ha
);
1356 qla25xx_manipulate_risc_semaphore(vha
);
1358 /* Perform RISC reset. */
1359 qla24xx_reset_risc(vha
);
1363 * qla2x00_chip_diag() - Test chip for proper operation.
1366 * Returns 0 on success.
1369 qla2x00_chip_diag(scsi_qla_host_t
*vha
)
1372 struct qla_hw_data
*ha
= vha
->hw
;
1373 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1374 unsigned long flags
= 0;
1378 struct req_que
*req
= ha
->req_q_map
[0];
1380 /* Assume a failed state */
1381 rval
= QLA_FUNCTION_FAILED
;
1383 ql_dbg(ql_dbg_init
, vha
, 0x007b,
1384 "Testing device at %lx.\n", (u_long
)®
->flash_address
);
1386 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1388 /* Reset ISP chip. */
1389 WRT_REG_WORD(®
->ctrl_status
, CSR_ISP_SOFT_RESET
);
1392 * We need to have a delay here since the card will not respond while
1393 * in reset causing an MCA on some architectures.
1396 data
= qla2x00_debounce_register(®
->ctrl_status
);
1397 for (cnt
= 6000000 ; cnt
&& (data
& CSR_ISP_SOFT_RESET
); cnt
--) {
1399 data
= RD_REG_WORD(®
->ctrl_status
);
1404 goto chip_diag_failed
;
1406 ql_dbg(ql_dbg_init
, vha
, 0x007c,
1407 "Reset register cleared by chip reset.\n");
1409 /* Reset RISC processor. */
1410 WRT_REG_WORD(®
->hccr
, HCCR_RESET_RISC
);
1411 WRT_REG_WORD(®
->hccr
, HCCR_RELEASE_RISC
);
1413 /* Workaround for QLA2312 PCI parity error */
1414 if (IS_QLA2100(ha
) || IS_QLA2200(ha
) || IS_QLA2300(ha
)) {
1415 data
= qla2x00_debounce_register(MAILBOX_REG(ha
, reg
, 0));
1416 for (cnt
= 6000000; cnt
&& (data
== MBS_BUSY
); cnt
--) {
1418 data
= RD_MAILBOX_REG(ha
, reg
, 0);
1425 goto chip_diag_failed
;
1427 /* Check product ID of chip */
1428 ql_dbg(ql_dbg_init
, vha
, 0x007d, "Checking product Id of chip.\n");
1430 mb
[1] = RD_MAILBOX_REG(ha
, reg
, 1);
1431 mb
[2] = RD_MAILBOX_REG(ha
, reg
, 2);
1432 mb
[3] = RD_MAILBOX_REG(ha
, reg
, 3);
1433 mb
[4] = qla2x00_debounce_register(MAILBOX_REG(ha
, reg
, 4));
1434 if (mb
[1] != PROD_ID_1
|| (mb
[2] != PROD_ID_2
&& mb
[2] != PROD_ID_2a
) ||
1435 mb
[3] != PROD_ID_3
) {
1436 ql_log(ql_log_warn
, vha
, 0x0062,
1437 "Wrong product ID = 0x%x,0x%x,0x%x.\n",
1438 mb
[1], mb
[2], mb
[3]);
1440 goto chip_diag_failed
;
1442 ha
->product_id
[0] = mb
[1];
1443 ha
->product_id
[1] = mb
[2];
1444 ha
->product_id
[2] = mb
[3];
1445 ha
->product_id
[3] = mb
[4];
1447 /* Adjust fw RISC transfer size */
1448 if (req
->length
> 1024)
1449 ha
->fw_transfer_size
= REQUEST_ENTRY_SIZE
* 1024;
1451 ha
->fw_transfer_size
= REQUEST_ENTRY_SIZE
*
1454 if (IS_QLA2200(ha
) &&
1455 RD_MAILBOX_REG(ha
, reg
, 7) == QLA2200A_RISC_ROM_VER
) {
1456 /* Limit firmware transfer size with a 2200A */
1457 ql_dbg(ql_dbg_init
, vha
, 0x007e, "Found QLA2200A Chip.\n");
1459 ha
->device_type
|= DT_ISP2200A
;
1460 ha
->fw_transfer_size
= 128;
1463 /* Wrap Incoming Mailboxes Test. */
1464 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1466 ql_dbg(ql_dbg_init
, vha
, 0x007f, "Checking mailboxes.\n");
1467 rval
= qla2x00_mbx_reg_test(vha
);
1469 ql_log(ql_log_warn
, vha
, 0x0080,
1470 "Failed mailbox send register test.\n");
1472 /* Flag a successful rval */
1474 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1478 ql_log(ql_log_info
, vha
, 0x0081,
1479 "Chip diagnostics **** FAILED ****.\n");
1481 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1487 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
1490 * Returns 0 on success.
1493 qla24xx_chip_diag(scsi_qla_host_t
*vha
)
1496 struct qla_hw_data
*ha
= vha
->hw
;
1497 struct req_que
*req
= ha
->req_q_map
[0];
1499 if (IS_P3P_TYPE(ha
))
1502 ha
->fw_transfer_size
= REQUEST_ENTRY_SIZE
* req
->length
;
1504 rval
= qla2x00_mbx_reg_test(vha
);
1506 ql_log(ql_log_warn
, vha
, 0x0082,
1507 "Failed mailbox send register test.\n");
1509 /* Flag a successful rval */
1517 qla2x00_alloc_fw_dump(scsi_qla_host_t
*vha
)
1520 uint32_t dump_size
, fixed_size
, mem_size
, req_q_size
, rsp_q_size
,
1521 eft_size
, fce_size
, mq_size
;
1524 struct qla_hw_data
*ha
= vha
->hw
;
1525 struct req_que
*req
= ha
->req_q_map
[0];
1526 struct rsp_que
*rsp
= ha
->rsp_q_map
[0];
1529 ql_dbg(ql_dbg_init
, vha
, 0x00bd,
1530 "Firmware dump already allocated.\n");
1535 ha
->fw_dump_cap_flags
= 0;
1536 dump_size
= fixed_size
= mem_size
= eft_size
= fce_size
= mq_size
= 0;
1537 req_q_size
= rsp_q_size
= 0;
1542 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
1543 fixed_size
= sizeof(struct qla2100_fw_dump
);
1544 } else if (IS_QLA23XX(ha
)) {
1545 fixed_size
= offsetof(struct qla2300_fw_dump
, data_ram
);
1546 mem_size
= (ha
->fw_memory_size
- 0x11000 + 1) *
1548 } else if (IS_FWI2_CAPABLE(ha
)) {
1549 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
))
1550 fixed_size
= offsetof(struct qla83xx_fw_dump
, ext_mem
);
1551 else if (IS_QLA81XX(ha
))
1552 fixed_size
= offsetof(struct qla81xx_fw_dump
, ext_mem
);
1553 else if (IS_QLA25XX(ha
))
1554 fixed_size
= offsetof(struct qla25xx_fw_dump
, ext_mem
);
1556 fixed_size
= offsetof(struct qla24xx_fw_dump
, ext_mem
);
1558 mem_size
= (ha
->fw_memory_size
- 0x100000 + 1) *
1561 if (!IS_QLA83XX(ha
) && !IS_QLA27XX(ha
))
1562 mq_size
= sizeof(struct qla2xxx_mq_chain
);
1564 * Allocate maximum buffer size for all queues.
1565 * Resizing must be done at end-of-dump processing.
1567 mq_size
+= ha
->max_req_queues
*
1568 (req
->length
* sizeof(request_t
));
1569 mq_size
+= ha
->max_rsp_queues
*
1570 (rsp
->length
* sizeof(response_t
));
1572 if (ha
->tgt
.atio_ring
)
1573 mq_size
+= ha
->tgt
.atio_q_length
* sizeof(request_t
);
1574 /* Allocate memory for Fibre Channel Event Buffer. */
1575 if (!IS_QLA25XX(ha
) && !IS_QLA81XX(ha
) && !IS_QLA83XX(ha
) &&
1581 dma_free_coherent(&ha
->pdev
->dev
,
1582 FCE_SIZE
, ha
->fce
, ha
->fce_dma
);
1584 /* Allocate memory for Fibre Channel Event Buffer. */
1585 tc
= dma_zalloc_coherent(&ha
->pdev
->dev
, FCE_SIZE
, &tc_dma
,
1588 ql_log(ql_log_warn
, vha
, 0x00be,
1589 "Unable to allocate (%d KB) for FCE.\n",
1594 rval
= qla2x00_enable_fce_trace(vha
, tc_dma
, FCE_NUM_BUFFERS
,
1595 ha
->fce_mb
, &ha
->fce_bufs
);
1597 ql_log(ql_log_warn
, vha
, 0x00bf,
1598 "Unable to initialize FCE (%d).\n", rval
);
1599 dma_free_coherent(&ha
->pdev
->dev
, FCE_SIZE
, tc
,
1601 ha
->flags
.fce_enabled
= 0;
1604 ql_dbg(ql_dbg_init
, vha
, 0x00c0,
1605 "Allocate (%d KB) for FCE...\n", FCE_SIZE
/ 1024);
1607 fce_size
= sizeof(struct qla2xxx_fce_chain
) + FCE_SIZE
;
1608 ha
->flags
.fce_enabled
= 1;
1609 ha
->fce_dma
= tc_dma
;
1614 dma_free_coherent(&ha
->pdev
->dev
,
1615 EFT_SIZE
, ha
->eft
, ha
->eft_dma
);
1617 /* Allocate memory for Extended Trace Buffer. */
1618 tc
= dma_zalloc_coherent(&ha
->pdev
->dev
, EFT_SIZE
, &tc_dma
,
1621 ql_log(ql_log_warn
, vha
, 0x00c1,
1622 "Unable to allocate (%d KB) for EFT.\n",
1627 rval
= qla2x00_enable_eft_trace(vha
, tc_dma
, EFT_NUM_BUFFERS
);
1629 ql_log(ql_log_warn
, vha
, 0x00c2,
1630 "Unable to initialize EFT (%d).\n", rval
);
1631 dma_free_coherent(&ha
->pdev
->dev
, EFT_SIZE
, tc
,
1635 ql_dbg(ql_dbg_init
, vha
, 0x00c3,
1636 "Allocated (%d KB) EFT ...\n", EFT_SIZE
/ 1024);
1638 eft_size
= EFT_SIZE
;
1639 ha
->eft_dma
= tc_dma
;
1644 if (IS_QLA27XX(ha
)) {
1645 if (!ha
->fw_dump_template
) {
1646 ql_log(ql_log_warn
, vha
, 0x00ba,
1647 "Failed missing fwdump template\n");
1650 dump_size
= qla27xx_fwdt_calculate_dump_size(vha
);
1651 ql_dbg(ql_dbg_init
, vha
, 0x00fa,
1652 "-> allocating fwdump (%x bytes)...\n", dump_size
);
1656 req_q_size
= req
->length
* sizeof(request_t
);
1657 rsp_q_size
= rsp
->length
* sizeof(response_t
);
1658 dump_size
= offsetof(struct qla2xxx_fw_dump
, isp
);
1659 dump_size
+= fixed_size
+ mem_size
+ req_q_size
+ rsp_q_size
+ eft_size
;
1660 ha
->chain_offset
= dump_size
;
1661 dump_size
+= mq_size
+ fce_size
;
1664 ha
->fw_dump
= vmalloc(dump_size
);
1666 ql_log(ql_log_warn
, vha
, 0x00c4,
1667 "Unable to allocate (%d KB) for firmware dump.\n",
1671 dma_free_coherent(&ha
->pdev
->dev
, FCE_SIZE
, ha
->fce
,
1678 dma_free_coherent(&ha
->pdev
->dev
, eft_size
, ha
->eft
,
1685 ha
->fw_dump_len
= dump_size
;
1686 ql_dbg(ql_dbg_init
, vha
, 0x00c5,
1687 "Allocated (%d KB) for firmware dump.\n", dump_size
/ 1024);
1692 ha
->fw_dump
->signature
[0] = 'Q';
1693 ha
->fw_dump
->signature
[1] = 'L';
1694 ha
->fw_dump
->signature
[2] = 'G';
1695 ha
->fw_dump
->signature
[3] = 'C';
1696 ha
->fw_dump
->version
= htonl(1);
1698 ha
->fw_dump
->fixed_size
= htonl(fixed_size
);
1699 ha
->fw_dump
->mem_size
= htonl(mem_size
);
1700 ha
->fw_dump
->req_q_size
= htonl(req_q_size
);
1701 ha
->fw_dump
->rsp_q_size
= htonl(rsp_q_size
);
1703 ha
->fw_dump
->eft_size
= htonl(eft_size
);
1704 ha
->fw_dump
->eft_addr_l
= htonl(LSD(ha
->eft_dma
));
1705 ha
->fw_dump
->eft_addr_h
= htonl(MSD(ha
->eft_dma
));
1707 ha
->fw_dump
->header_size
=
1708 htonl(offsetof(struct qla2xxx_fw_dump
, isp
));
1712 qla81xx_mpi_sync(scsi_qla_host_t
*vha
)
1714 #define MPS_MASK 0xe0
1719 if (!IS_QLA81XX(vha
->hw
))
1722 rval
= qla2x00_write_ram_word(vha
, 0x7c00, 1);
1723 if (rval
!= QLA_SUCCESS
) {
1724 ql_log(ql_log_warn
, vha
, 0x0105,
1725 "Unable to acquire semaphore.\n");
1729 pci_read_config_word(vha
->hw
->pdev
, 0x54, &dc
);
1730 rval
= qla2x00_read_ram_word(vha
, 0x7a15, &dw
);
1731 if (rval
!= QLA_SUCCESS
) {
1732 ql_log(ql_log_warn
, vha
, 0x0067, "Unable to read sync.\n");
1737 if (dc
== (dw
& MPS_MASK
))
1742 rval
= qla2x00_write_ram_word(vha
, 0x7a15, dw
);
1743 if (rval
!= QLA_SUCCESS
) {
1744 ql_log(ql_log_warn
, vha
, 0x0114, "Unable to gain sync.\n");
1748 rval
= qla2x00_write_ram_word(vha
, 0x7c00, 0);
1749 if (rval
!= QLA_SUCCESS
) {
1750 ql_log(ql_log_warn
, vha
, 0x006d,
1751 "Unable to release semaphore.\n");
1759 qla2x00_alloc_outstanding_cmds(struct qla_hw_data
*ha
, struct req_que
*req
)
1761 /* Don't try to reallocate the array */
1762 if (req
->outstanding_cmds
)
1765 if (!IS_FWI2_CAPABLE(ha
) || (ha
->mqiobase
&&
1766 (ql2xmultique_tag
|| ql2xmaxqueues
> 1)))
1767 req
->num_outstanding_cmds
= DEFAULT_OUTSTANDING_COMMANDS
;
1769 if (ha
->fw_xcb_count
<= ha
->fw_iocb_count
)
1770 req
->num_outstanding_cmds
= ha
->fw_xcb_count
;
1772 req
->num_outstanding_cmds
= ha
->fw_iocb_count
;
1775 req
->outstanding_cmds
= kzalloc(sizeof(srb_t
*) *
1776 req
->num_outstanding_cmds
, GFP_KERNEL
);
1778 if (!req
->outstanding_cmds
) {
1780 * Try to allocate a minimal size just so we can get through
1783 req
->num_outstanding_cmds
= MIN_OUTSTANDING_COMMANDS
;
1784 req
->outstanding_cmds
= kzalloc(sizeof(srb_t
*) *
1785 req
->num_outstanding_cmds
, GFP_KERNEL
);
1787 if (!req
->outstanding_cmds
) {
1788 ql_log(ql_log_fatal
, NULL
, 0x0126,
1789 "Failed to allocate memory for "
1790 "outstanding_cmds for req_que %p.\n", req
);
1791 req
->num_outstanding_cmds
= 0;
1792 return QLA_FUNCTION_FAILED
;
1800 * qla2x00_setup_chip() - Load and start RISC firmware.
1803 * Returns 0 on success.
1806 qla2x00_setup_chip(scsi_qla_host_t
*vha
)
1809 uint32_t srisc_address
= 0;
1810 struct qla_hw_data
*ha
= vha
->hw
;
1811 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1812 unsigned long flags
;
1813 uint16_t fw_major_version
;
1815 if (IS_P3P_TYPE(ha
)) {
1816 rval
= ha
->isp_ops
->load_risc(vha
, &srisc_address
);
1817 if (rval
== QLA_SUCCESS
) {
1818 qla2x00_stop_firmware(vha
);
1819 goto enable_82xx_npiv
;
1824 if (!IS_FWI2_CAPABLE(ha
) && !IS_QLA2100(ha
) && !IS_QLA2200(ha
)) {
1825 /* Disable SRAM, Instruction RAM and GP RAM parity. */
1826 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1827 WRT_REG_WORD(®
->hccr
, (HCCR_ENABLE_PARITY
+ 0x0));
1828 RD_REG_WORD(®
->hccr
);
1829 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1832 qla81xx_mpi_sync(vha
);
1834 /* Load firmware sequences */
1835 rval
= ha
->isp_ops
->load_risc(vha
, &srisc_address
);
1836 if (rval
== QLA_SUCCESS
) {
1837 ql_dbg(ql_dbg_init
, vha
, 0x00c9,
1838 "Verifying Checksum of loaded RISC code.\n");
1840 rval
= qla2x00_verify_checksum(vha
, srisc_address
);
1841 if (rval
== QLA_SUCCESS
) {
1842 /* Start firmware execution. */
1843 ql_dbg(ql_dbg_init
, vha
, 0x00ca,
1844 "Starting firmware.\n");
1846 rval
= qla2x00_execute_fw(vha
, srisc_address
);
1847 /* Retrieve firmware information. */
1848 if (rval
== QLA_SUCCESS
) {
1850 fw_major_version
= ha
->fw_major_version
;
1851 if (IS_P3P_TYPE(ha
))
1852 qla82xx_check_md_needed(vha
);
1854 rval
= qla2x00_get_fw_version(vha
);
1855 if (rval
!= QLA_SUCCESS
)
1857 ha
->flags
.npiv_supported
= 0;
1858 if (IS_QLA2XXX_MIDTYPE(ha
) &&
1859 (ha
->fw_attributes
& BIT_2
)) {
1860 ha
->flags
.npiv_supported
= 1;
1861 if ((!ha
->max_npiv_vports
) ||
1862 ((ha
->max_npiv_vports
+ 1) %
1863 MIN_MULTI_ID_FABRIC
))
1864 ha
->max_npiv_vports
=
1865 MIN_MULTI_ID_FABRIC
- 1;
1867 qla2x00_get_resource_cnts(vha
, NULL
,
1868 &ha
->fw_xcb_count
, NULL
, &ha
->fw_iocb_count
,
1869 &ha
->max_npiv_vports
, NULL
);
1872 * Allocate the array of outstanding commands
1873 * now that we know the firmware resources.
1875 rval
= qla2x00_alloc_outstanding_cmds(ha
,
1877 if (rval
!= QLA_SUCCESS
)
1880 if (!fw_major_version
&& ql2xallocfwdump
1881 && !(IS_P3P_TYPE(ha
)))
1882 qla2x00_alloc_fw_dump(vha
);
1887 ql_log(ql_log_fatal
, vha
, 0x00cd,
1888 "ISP Firmware failed checksum.\n");
1894 if (!IS_FWI2_CAPABLE(ha
) && !IS_QLA2100(ha
) && !IS_QLA2200(ha
)) {
1895 /* Enable proper parity. */
1896 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1899 WRT_REG_WORD(®
->hccr
, HCCR_ENABLE_PARITY
+ 0x1);
1901 /* SRAM, Instruction RAM and GP RAM parity */
1902 WRT_REG_WORD(®
->hccr
, HCCR_ENABLE_PARITY
+ 0x7);
1903 RD_REG_WORD(®
->hccr
);
1904 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1908 ha
->flags
.fac_supported
= 1;
1909 else if (rval
== QLA_SUCCESS
&& IS_FAC_REQUIRED(ha
)) {
1912 rval
= qla81xx_fac_get_sector_size(vha
, &size
);
1913 if (rval
== QLA_SUCCESS
) {
1914 ha
->flags
.fac_supported
= 1;
1915 ha
->fdt_block_size
= size
<< 2;
1917 ql_log(ql_log_warn
, vha
, 0x00ce,
1918 "Unsupported FAC firmware (%d.%02d.%02d).\n",
1919 ha
->fw_major_version
, ha
->fw_minor_version
,
1920 ha
->fw_subminor_version
);
1922 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) {
1923 ha
->flags
.fac_supported
= 0;
1930 ql_log(ql_log_fatal
, vha
, 0x00cf,
1931 "Setup chip ****FAILED****.\n");
1938 * qla2x00_init_response_q_entries() - Initializes response queue entries.
1941 * Beginning of request ring has initialization control block already built
1942 * by nvram config routine.
1944 * Returns 0 on success.
1947 qla2x00_init_response_q_entries(struct rsp_que
*rsp
)
1952 rsp
->ring_ptr
= rsp
->ring
;
1953 rsp
->ring_index
= 0;
1954 rsp
->status_srb
= NULL
;
1955 pkt
= rsp
->ring_ptr
;
1956 for (cnt
= 0; cnt
< rsp
->length
; cnt
++) {
1957 pkt
->signature
= RESPONSE_PROCESSED
;
1963 * qla2x00_update_fw_options() - Read and process firmware options.
1966 * Returns 0 on success.
1969 qla2x00_update_fw_options(scsi_qla_host_t
*vha
)
1971 uint16_t swing
, emphasis
, tx_sens
, rx_sens
;
1972 struct qla_hw_data
*ha
= vha
->hw
;
1974 memset(ha
->fw_options
, 0, sizeof(ha
->fw_options
));
1975 qla2x00_get_fw_options(vha
, ha
->fw_options
);
1977 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
1980 /* Serial Link options. */
1981 ql_dbg(ql_dbg_init
+ ql_dbg_buffer
, vha
, 0x0115,
1982 "Serial link options.\n");
1983 ql_dump_buffer(ql_dbg_init
+ ql_dbg_buffer
, vha
, 0x0109,
1984 (uint8_t *)&ha
->fw_seriallink_options
,
1985 sizeof(ha
->fw_seriallink_options
));
1987 ha
->fw_options
[1] &= ~FO1_SET_EMPHASIS_SWING
;
1988 if (ha
->fw_seriallink_options
[3] & BIT_2
) {
1989 ha
->fw_options
[1] |= FO1_SET_EMPHASIS_SWING
;
1992 swing
= ha
->fw_seriallink_options
[2] & (BIT_2
| BIT_1
| BIT_0
);
1993 emphasis
= (ha
->fw_seriallink_options
[2] &
1994 (BIT_4
| BIT_3
)) >> 3;
1995 tx_sens
= ha
->fw_seriallink_options
[0] &
1996 (BIT_3
| BIT_2
| BIT_1
| BIT_0
);
1997 rx_sens
= (ha
->fw_seriallink_options
[0] &
1998 (BIT_7
| BIT_6
| BIT_5
| BIT_4
)) >> 4;
1999 ha
->fw_options
[10] = (emphasis
<< 14) | (swing
<< 8);
2000 if (IS_QLA2300(ha
) || IS_QLA2312(ha
) || IS_QLA6312(ha
)) {
2003 ha
->fw_options
[10] |= (tx_sens
<< 4) | rx_sens
;
2004 } else if (IS_QLA2322(ha
) || IS_QLA6322(ha
))
2005 ha
->fw_options
[10] |= BIT_5
|
2006 ((rx_sens
& (BIT_1
| BIT_0
)) << 2) |
2007 (tx_sens
& (BIT_1
| BIT_0
));
2010 swing
= (ha
->fw_seriallink_options
[2] &
2011 (BIT_7
| BIT_6
| BIT_5
)) >> 5;
2012 emphasis
= ha
->fw_seriallink_options
[3] & (BIT_1
| BIT_0
);
2013 tx_sens
= ha
->fw_seriallink_options
[1] &
2014 (BIT_3
| BIT_2
| BIT_1
| BIT_0
);
2015 rx_sens
= (ha
->fw_seriallink_options
[1] &
2016 (BIT_7
| BIT_6
| BIT_5
| BIT_4
)) >> 4;
2017 ha
->fw_options
[11] = (emphasis
<< 14) | (swing
<< 8);
2018 if (IS_QLA2300(ha
) || IS_QLA2312(ha
) || IS_QLA6312(ha
)) {
2021 ha
->fw_options
[11] |= (tx_sens
<< 4) | rx_sens
;
2022 } else if (IS_QLA2322(ha
) || IS_QLA6322(ha
))
2023 ha
->fw_options
[11] |= BIT_5
|
2024 ((rx_sens
& (BIT_1
| BIT_0
)) << 2) |
2025 (tx_sens
& (BIT_1
| BIT_0
));
2029 /* Return command IOCBs without waiting for an ABTS to complete. */
2030 ha
->fw_options
[3] |= BIT_13
;
2033 if (ha
->flags
.enable_led_scheme
)
2034 ha
->fw_options
[2] |= BIT_12
;
2036 /* Detect ISP6312. */
2038 ha
->fw_options
[2] |= BIT_13
;
2040 /* Update firmware options. */
2041 qla2x00_set_fw_options(vha
, ha
->fw_options
);
2045 qla24xx_update_fw_options(scsi_qla_host_t
*vha
)
2048 struct qla_hw_data
*ha
= vha
->hw
;
2050 if (IS_P3P_TYPE(ha
))
2053 /* Update Serial Link options. */
2054 if ((le16_to_cpu(ha
->fw_seriallink_options24
[0]) & BIT_0
) == 0)
2057 rval
= qla2x00_set_serdes_params(vha
,
2058 le16_to_cpu(ha
->fw_seriallink_options24
[1]),
2059 le16_to_cpu(ha
->fw_seriallink_options24
[2]),
2060 le16_to_cpu(ha
->fw_seriallink_options24
[3]));
2061 if (rval
!= QLA_SUCCESS
) {
2062 ql_log(ql_log_warn
, vha
, 0x0104,
2063 "Unable to update Serial Link options (%x).\n", rval
);
2068 qla2x00_config_rings(struct scsi_qla_host
*vha
)
2070 struct qla_hw_data
*ha
= vha
->hw
;
2071 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
2072 struct req_que
*req
= ha
->req_q_map
[0];
2073 struct rsp_que
*rsp
= ha
->rsp_q_map
[0];
2075 /* Setup ring parameters in initialization control block. */
2076 ha
->init_cb
->request_q_outpointer
= cpu_to_le16(0);
2077 ha
->init_cb
->response_q_inpointer
= cpu_to_le16(0);
2078 ha
->init_cb
->request_q_length
= cpu_to_le16(req
->length
);
2079 ha
->init_cb
->response_q_length
= cpu_to_le16(rsp
->length
);
2080 ha
->init_cb
->request_q_address
[0] = cpu_to_le32(LSD(req
->dma
));
2081 ha
->init_cb
->request_q_address
[1] = cpu_to_le32(MSD(req
->dma
));
2082 ha
->init_cb
->response_q_address
[0] = cpu_to_le32(LSD(rsp
->dma
));
2083 ha
->init_cb
->response_q_address
[1] = cpu_to_le32(MSD(rsp
->dma
));
2085 WRT_REG_WORD(ISP_REQ_Q_IN(ha
, reg
), 0);
2086 WRT_REG_WORD(ISP_REQ_Q_OUT(ha
, reg
), 0);
2087 WRT_REG_WORD(ISP_RSP_Q_IN(ha
, reg
), 0);
2088 WRT_REG_WORD(ISP_RSP_Q_OUT(ha
, reg
), 0);
2089 RD_REG_WORD(ISP_RSP_Q_OUT(ha
, reg
)); /* PCI Posting. */
2093 qla24xx_config_rings(struct scsi_qla_host
*vha
)
2095 struct qla_hw_data
*ha
= vha
->hw
;
2096 device_reg_t
*reg
= ISP_QUE_REG(ha
, 0);
2097 struct device_reg_2xxx __iomem
*ioreg
= &ha
->iobase
->isp
;
2098 struct qla_msix_entry
*msix
;
2099 struct init_cb_24xx
*icb
;
2101 struct req_que
*req
= ha
->req_q_map
[0];
2102 struct rsp_que
*rsp
= ha
->rsp_q_map
[0];
2104 /* Setup ring parameters in initialization control block. */
2105 icb
= (struct init_cb_24xx
*)ha
->init_cb
;
2106 icb
->request_q_outpointer
= cpu_to_le16(0);
2107 icb
->response_q_inpointer
= cpu_to_le16(0);
2108 icb
->request_q_length
= cpu_to_le16(req
->length
);
2109 icb
->response_q_length
= cpu_to_le16(rsp
->length
);
2110 icb
->request_q_address
[0] = cpu_to_le32(LSD(req
->dma
));
2111 icb
->request_q_address
[1] = cpu_to_le32(MSD(req
->dma
));
2112 icb
->response_q_address
[0] = cpu_to_le32(LSD(rsp
->dma
));
2113 icb
->response_q_address
[1] = cpu_to_le32(MSD(rsp
->dma
));
2115 /* Setup ATIO queue dma pointers for target mode */
2116 icb
->atio_q_inpointer
= cpu_to_le16(0);
2117 icb
->atio_q_length
= cpu_to_le16(ha
->tgt
.atio_q_length
);
2118 icb
->atio_q_address
[0] = cpu_to_le32(LSD(ha
->tgt
.atio_dma
));
2119 icb
->atio_q_address
[1] = cpu_to_le32(MSD(ha
->tgt
.atio_dma
));
2121 if (IS_SHADOW_REG_CAPABLE(ha
))
2122 icb
->firmware_options_2
|= cpu_to_le32(BIT_30
|BIT_29
);
2124 if (ha
->mqenable
|| IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) {
2125 icb
->qos
= cpu_to_le16(QLA_DEFAULT_QUE_QOS
);
2126 icb
->rid
= cpu_to_le16(rid
);
2127 if (ha
->flags
.msix_enabled
) {
2128 msix
= &ha
->msix_entries
[1];
2129 ql_dbg(ql_dbg_init
, vha
, 0x00fd,
2130 "Registering vector 0x%x for base que.\n",
2132 icb
->msix
= cpu_to_le16(msix
->entry
);
2134 /* Use alternate PCI bus number */
2136 icb
->firmware_options_2
|= cpu_to_le32(BIT_19
);
2137 /* Use alternate PCI devfn */
2139 icb
->firmware_options_2
|= cpu_to_le32(BIT_18
);
2141 /* Use Disable MSIX Handshake mode for capable adapters */
2142 if ((ha
->fw_attributes
& BIT_6
) && (IS_MSIX_NACK_CAPABLE(ha
)) &&
2143 (ha
->flags
.msix_enabled
)) {
2144 icb
->firmware_options_2
&= cpu_to_le32(~BIT_22
);
2145 ha
->flags
.disable_msix_handshake
= 1;
2146 ql_dbg(ql_dbg_init
, vha
, 0x00fe,
2147 "MSIX Handshake Disable Mode turned on.\n");
2149 icb
->firmware_options_2
|= cpu_to_le32(BIT_22
);
2151 icb
->firmware_options_2
|= cpu_to_le32(BIT_23
);
2153 WRT_REG_DWORD(®
->isp25mq
.req_q_in
, 0);
2154 WRT_REG_DWORD(®
->isp25mq
.req_q_out
, 0);
2155 WRT_REG_DWORD(®
->isp25mq
.rsp_q_in
, 0);
2156 WRT_REG_DWORD(®
->isp25mq
.rsp_q_out
, 0);
2158 WRT_REG_DWORD(®
->isp24
.req_q_in
, 0);
2159 WRT_REG_DWORD(®
->isp24
.req_q_out
, 0);
2160 WRT_REG_DWORD(®
->isp24
.rsp_q_in
, 0);
2161 WRT_REG_DWORD(®
->isp24
.rsp_q_out
, 0);
2163 qlt_24xx_config_rings(vha
);
2166 RD_REG_DWORD(&ioreg
->hccr
);
2170 * qla2x00_init_rings() - Initializes firmware.
2173 * Beginning of request ring has initialization control block already built
2174 * by nvram config routine.
2176 * Returns 0 on success.
2179 qla2x00_init_rings(scsi_qla_host_t
*vha
)
2182 unsigned long flags
= 0;
2184 struct qla_hw_data
*ha
= vha
->hw
;
2185 struct req_que
*req
;
2186 struct rsp_que
*rsp
;
2187 struct mid_init_cb_24xx
*mid_init_cb
=
2188 (struct mid_init_cb_24xx
*) ha
->init_cb
;
2190 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2192 /* Clear outstanding commands array. */
2193 for (que
= 0; que
< ha
->max_req_queues
; que
++) {
2194 req
= ha
->req_q_map
[que
];
2197 req
->out_ptr
= (void *)(req
->ring
+ req
->length
);
2199 for (cnt
= 1; cnt
< req
->num_outstanding_cmds
; cnt
++)
2200 req
->outstanding_cmds
[cnt
] = NULL
;
2202 req
->current_outstanding_cmd
= 1;
2204 /* Initialize firmware. */
2205 req
->ring_ptr
= req
->ring
;
2206 req
->ring_index
= 0;
2207 req
->cnt
= req
->length
;
2210 for (que
= 0; que
< ha
->max_rsp_queues
; que
++) {
2211 rsp
= ha
->rsp_q_map
[que
];
2214 rsp
->in_ptr
= (void *)(rsp
->ring
+ rsp
->length
);
2216 /* Initialize response queue entries */
2218 qlafx00_init_response_q_entries(rsp
);
2220 qla2x00_init_response_q_entries(rsp
);
2223 ha
->tgt
.atio_ring_ptr
= ha
->tgt
.atio_ring
;
2224 ha
->tgt
.atio_ring_index
= 0;
2225 /* Initialize ATIO queue entries */
2226 qlt_init_atio_q_entries(vha
);
2228 ha
->isp_ops
->config_rings(vha
);
2230 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2232 ql_dbg(ql_dbg_init
, vha
, 0x00d1, "Issue init firmware.\n");
2234 if (IS_QLAFX00(ha
)) {
2235 rval
= qlafx00_init_firmware(vha
, ha
->init_cb_size
);
2239 /* Update any ISP specific firmware options before initialization. */
2240 ha
->isp_ops
->update_fw_options(vha
);
2242 if (ha
->flags
.npiv_supported
) {
2243 if (ha
->operating_mode
== LOOP
&& !IS_CNA_CAPABLE(ha
))
2244 ha
->max_npiv_vports
= MIN_MULTI_ID_FABRIC
- 1;
2245 mid_init_cb
->count
= cpu_to_le16(ha
->max_npiv_vports
);
2248 if (IS_FWI2_CAPABLE(ha
)) {
2249 mid_init_cb
->options
= cpu_to_le16(BIT_1
);
2250 mid_init_cb
->init_cb
.execution_throttle
=
2251 cpu_to_le16(ha
->fw_xcb_count
);
2253 if (IS_DPORT_CAPABLE(ha
))
2254 mid_init_cb
->init_cb
.firmware_options_1
|=
2256 /* Enable FA-WWPN */
2257 ha
->flags
.fawwpn_enabled
=
2258 (mid_init_cb
->init_cb
.firmware_options_1
& BIT_6
) ? 1 : 0;
2259 ql_dbg(ql_dbg_init
, vha
, 0x0141, "FA-WWPN Support: %s.\n",
2260 (ha
->flags
.fawwpn_enabled
) ? "enabled" : "disabled");
2263 rval
= qla2x00_init_firmware(vha
, ha
->init_cb_size
);
2266 ql_log(ql_log_fatal
, vha
, 0x00d2,
2267 "Init Firmware **** FAILED ****.\n");
2269 ql_dbg(ql_dbg_init
, vha
, 0x00d3,
2270 "Init Firmware -- success.\n");
2277 * qla2x00_fw_ready() - Waits for firmware ready.
2280 * Returns 0 on success.
2283 qla2x00_fw_ready(scsi_qla_host_t
*vha
)
2286 unsigned long wtime
, mtime
, cs84xx_time
;
2287 uint16_t min_wait
; /* Minimum wait time if loop is down */
2288 uint16_t wait_time
; /* Wait time if loop is coming ready */
2290 struct qla_hw_data
*ha
= vha
->hw
;
2292 if (IS_QLAFX00(vha
->hw
))
2293 return qlafx00_fw_ready(vha
);
2297 /* Time to wait for loop down */
2298 if (IS_P3P_TYPE(ha
))
2304 * Firmware should take at most one RATOV to login, plus 5 seconds for
2305 * our own processing.
2307 if ((wait_time
= (ha
->retry_count
*ha
->login_timeout
) + 5) < min_wait
) {
2308 wait_time
= min_wait
;
2311 /* Min wait time if loop down */
2312 mtime
= jiffies
+ (min_wait
* HZ
);
2314 /* wait time before firmware ready */
2315 wtime
= jiffies
+ (wait_time
* HZ
);
2317 /* Wait for ISP to finish LIP */
2318 if (!vha
->flags
.init_done
)
2319 ql_log(ql_log_info
, vha
, 0x801e,
2320 "Waiting for LIP to complete.\n");
2323 memset(state
, -1, sizeof(state
));
2324 rval
= qla2x00_get_firmware_state(vha
, state
);
2325 if (rval
== QLA_SUCCESS
) {
2326 if (state
[0] < FSTATE_LOSS_OF_SYNC
) {
2327 vha
->device_flags
&= ~DFLG_NO_CABLE
;
2329 if (IS_QLA84XX(ha
) && state
[0] != FSTATE_READY
) {
2330 ql_dbg(ql_dbg_taskm
, vha
, 0x801f,
2331 "fw_state=%x 84xx=%x.\n", state
[0],
2333 if ((state
[2] & FSTATE_LOGGED_IN
) &&
2334 (state
[2] & FSTATE_WAITING_FOR_VERIFY
)) {
2335 ql_dbg(ql_dbg_taskm
, vha
, 0x8028,
2336 "Sending verify iocb.\n");
2338 cs84xx_time
= jiffies
;
2339 rval
= qla84xx_init_chip(vha
);
2340 if (rval
!= QLA_SUCCESS
) {
2343 "Init chip failed.\n");
2347 /* Add time taken to initialize. */
2348 cs84xx_time
= jiffies
- cs84xx_time
;
2349 wtime
+= cs84xx_time
;
2350 mtime
+= cs84xx_time
;
2351 ql_dbg(ql_dbg_taskm
, vha
, 0x8008,
2352 "Increasing wait time by %ld. "
2353 "New time %ld.\n", cs84xx_time
,
2356 } else if (state
[0] == FSTATE_READY
) {
2357 ql_dbg(ql_dbg_taskm
, vha
, 0x8037,
2358 "F/W Ready - OK.\n");
2360 qla2x00_get_retry_cnt(vha
, &ha
->retry_count
,
2361 &ha
->login_timeout
, &ha
->r_a_tov
);
2367 rval
= QLA_FUNCTION_FAILED
;
2369 if (atomic_read(&vha
->loop_down_timer
) &&
2370 state
[0] != FSTATE_READY
) {
2371 /* Loop down. Timeout on min_wait for states
2372 * other than Wait for Login.
2374 if (time_after_eq(jiffies
, mtime
)) {
2375 ql_log(ql_log_info
, vha
, 0x8038,
2376 "Cable is unplugged...\n");
2378 vha
->device_flags
|= DFLG_NO_CABLE
;
2383 /* Mailbox cmd failed. Timeout on min_wait. */
2384 if (time_after_eq(jiffies
, mtime
) ||
2385 ha
->flags
.isp82xx_fw_hung
)
2389 if (time_after_eq(jiffies
, wtime
))
2392 /* Delay for a while */
2396 ql_dbg(ql_dbg_taskm
, vha
, 0x803a,
2397 "fw_state=%x (%x, %x, %x, %x %x) curr time=%lx.\n", state
[0],
2398 state
[1], state
[2], state
[3], state
[4], state
[5], jiffies
);
2400 if (rval
&& !(vha
->device_flags
& DFLG_NO_CABLE
)) {
2401 ql_log(ql_log_warn
, vha
, 0x803b,
2402 "Firmware ready **** FAILED ****.\n");
2409 * qla2x00_configure_hba
2410 * Setup adapter context.
2413 * ha = adapter state pointer.
2422 qla2x00_configure_hba(scsi_qla_host_t
*vha
)
2431 char connect_type
[22];
2432 struct qla_hw_data
*ha
= vha
->hw
;
2433 unsigned long flags
;
2434 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
2436 /* Get host addresses. */
2437 rval
= qla2x00_get_adapter_id(vha
,
2438 &loop_id
, &al_pa
, &area
, &domain
, &topo
, &sw_cap
);
2439 if (rval
!= QLA_SUCCESS
) {
2440 if (LOOP_TRANSITION(vha
) || atomic_read(&ha
->loop_down_timer
) ||
2441 IS_CNA_CAPABLE(ha
) ||
2442 (rval
== QLA_COMMAND_ERROR
&& loop_id
== 0x7)) {
2443 ql_dbg(ql_dbg_disc
, vha
, 0x2008,
2444 "Loop is in a transition state.\n");
2446 ql_log(ql_log_warn
, vha
, 0x2009,
2447 "Unable to get host loop ID.\n");
2448 if (IS_FWI2_CAPABLE(ha
) && (vha
== base_vha
) &&
2449 (rval
== QLA_COMMAND_ERROR
&& loop_id
== 0x1b)) {
2450 ql_log(ql_log_warn
, vha
, 0x1151,
2451 "Doing link init.\n");
2452 if (qla24xx_link_initialize(vha
) == QLA_SUCCESS
)
2455 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2461 ql_log(ql_log_info
, vha
, 0x200a,
2462 "Cannot get topology - retrying.\n");
2463 return (QLA_FUNCTION_FAILED
);
2466 vha
->loop_id
= loop_id
;
2469 ha
->min_external_loopid
= SNS_FIRST_LOOP_ID
;
2470 ha
->operating_mode
= LOOP
;
2475 ql_dbg(ql_dbg_disc
, vha
, 0x200b, "HBA in NL topology.\n");
2476 ha
->current_topology
= ISP_CFG_NL
;
2477 strcpy(connect_type
, "(Loop)");
2481 ql_dbg(ql_dbg_disc
, vha
, 0x200c, "HBA in FL topology.\n");
2482 ha
->switch_cap
= sw_cap
;
2483 ha
->current_topology
= ISP_CFG_FL
;
2484 strcpy(connect_type
, "(FL_Port)");
2488 ql_dbg(ql_dbg_disc
, vha
, 0x200d, "HBA in N P2P topology.\n");
2489 ha
->operating_mode
= P2P
;
2490 ha
->current_topology
= ISP_CFG_N
;
2491 strcpy(connect_type
, "(N_Port-to-N_Port)");
2495 ql_dbg(ql_dbg_disc
, vha
, 0x200e, "HBA in F P2P topology.\n");
2496 ha
->switch_cap
= sw_cap
;
2497 ha
->operating_mode
= P2P
;
2498 ha
->current_topology
= ISP_CFG_F
;
2499 strcpy(connect_type
, "(F_Port)");
2503 ql_dbg(ql_dbg_disc
, vha
, 0x200f,
2504 "HBA in unknown topology %x, using NL.\n", topo
);
2505 ha
->current_topology
= ISP_CFG_NL
;
2506 strcpy(connect_type
, "(Loop)");
2510 /* Save Host port and loop ID. */
2511 /* byte order - Big Endian */
2512 vha
->d_id
.b
.domain
= domain
;
2513 vha
->d_id
.b
.area
= area
;
2514 vha
->d_id
.b
.al_pa
= al_pa
;
2516 spin_lock_irqsave(&ha
->vport_slock
, flags
);
2517 qlt_update_vp_map(vha
, SET_AL_PA
);
2518 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
2520 if (!vha
->flags
.init_done
)
2521 ql_log(ql_log_info
, vha
, 0x2010,
2522 "Topology - %s, Host Loop address 0x%x.\n",
2523 connect_type
, vha
->loop_id
);
2529 qla2x00_set_model_info(scsi_qla_host_t
*vha
, uint8_t *model
, size_t len
,
2534 struct qla_hw_data
*ha
= vha
->hw
;
2535 int use_tbl
= !IS_QLA24XX_TYPE(ha
) && !IS_QLA25XX(ha
) &&
2536 !IS_CNA_CAPABLE(ha
) && !IS_QLA2031(ha
);
2538 if (memcmp(model
, BINZERO
, len
) != 0) {
2539 strncpy(ha
->model_number
, model
, len
);
2540 st
= en
= ha
->model_number
;
2543 if (*en
!= 0x20 && *en
!= 0x00)
2548 index
= (ha
->pdev
->subsystem_device
& 0xff);
2550 ha
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_QLOGIC
&&
2551 index
< QLA_MODEL_NAMES
)
2552 strncpy(ha
->model_desc
,
2553 qla2x00_model_name
[index
* 2 + 1],
2554 sizeof(ha
->model_desc
) - 1);
2556 index
= (ha
->pdev
->subsystem_device
& 0xff);
2558 ha
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_QLOGIC
&&
2559 index
< QLA_MODEL_NAMES
) {
2560 strcpy(ha
->model_number
,
2561 qla2x00_model_name
[index
* 2]);
2562 strncpy(ha
->model_desc
,
2563 qla2x00_model_name
[index
* 2 + 1],
2564 sizeof(ha
->model_desc
) - 1);
2566 strcpy(ha
->model_number
, def
);
2569 if (IS_FWI2_CAPABLE(ha
))
2570 qla2xxx_get_vpd_field(vha
, "\x82", ha
->model_desc
,
2571 sizeof(ha
->model_desc
));
2574 /* On sparc systems, obtain port and node WWN from firmware
2577 static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t
*vha
, nvram_t
*nv
)
2580 struct qla_hw_data
*ha
= vha
->hw
;
2581 struct pci_dev
*pdev
= ha
->pdev
;
2582 struct device_node
*dp
= pci_device_to_OF_node(pdev
);
2586 val
= of_get_property(dp
, "port-wwn", &len
);
2587 if (val
&& len
>= WWN_SIZE
)
2588 memcpy(nv
->port_name
, val
, WWN_SIZE
);
2590 val
= of_get_property(dp
, "node-wwn", &len
);
2591 if (val
&& len
>= WWN_SIZE
)
2592 memcpy(nv
->node_name
, val
, WWN_SIZE
);
2597 * NVRAM configuration for ISP 2xxx
2600 * ha = adapter block pointer.
2603 * initialization control block in response_ring
2604 * host adapters parameters in host adapter block
2610 qla2x00_nvram_config(scsi_qla_host_t
*vha
)
2615 uint8_t *dptr1
, *dptr2
;
2616 struct qla_hw_data
*ha
= vha
->hw
;
2617 init_cb_t
*icb
= ha
->init_cb
;
2618 nvram_t
*nv
= ha
->nvram
;
2619 uint8_t *ptr
= ha
->nvram
;
2620 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
2624 /* Determine NVRAM starting address. */
2625 ha
->nvram_size
= sizeof(nvram_t
);
2627 if (!IS_QLA2100(ha
) && !IS_QLA2200(ha
) && !IS_QLA2300(ha
))
2628 if ((RD_REG_WORD(®
->ctrl_status
) >> 14) == 1)
2629 ha
->nvram_base
= 0x80;
2631 /* Get NVRAM data and calculate checksum. */
2632 ha
->isp_ops
->read_nvram(vha
, ptr
, ha
->nvram_base
, ha
->nvram_size
);
2633 for (cnt
= 0, chksum
= 0; cnt
< ha
->nvram_size
; cnt
++)
2636 ql_dbg(ql_dbg_init
+ ql_dbg_buffer
, vha
, 0x010f,
2637 "Contents of NVRAM.\n");
2638 ql_dump_buffer(ql_dbg_init
+ ql_dbg_buffer
, vha
, 0x0110,
2639 (uint8_t *)nv
, ha
->nvram_size
);
2641 /* Bad NVRAM data, set defaults parameters. */
2642 if (chksum
|| nv
->id
[0] != 'I' || nv
->id
[1] != 'S' ||
2643 nv
->id
[2] != 'P' || nv
->id
[3] != ' ' || nv
->nvram_version
< 1) {
2644 /* Reset NVRAM data. */
2645 ql_log(ql_log_warn
, vha
, 0x0064,
2646 "Inconsistent NVRAM "
2647 "detected: checksum=0x%x id=%c version=0x%x.\n",
2648 chksum
, nv
->id
[0], nv
->nvram_version
);
2649 ql_log(ql_log_warn
, vha
, 0x0065,
2651 "functioning (yet invalid -- WWPN) defaults.\n");
2654 * Set default initialization control block.
2656 memset(nv
, 0, ha
->nvram_size
);
2657 nv
->parameter_block_version
= ICB_VERSION
;
2659 if (IS_QLA23XX(ha
)) {
2660 nv
->firmware_options
[0] = BIT_2
| BIT_1
;
2661 nv
->firmware_options
[1] = BIT_7
| BIT_5
;
2662 nv
->add_firmware_options
[0] = BIT_5
;
2663 nv
->add_firmware_options
[1] = BIT_5
| BIT_4
;
2664 nv
->frame_payload_size
= 2048;
2665 nv
->special_options
[1] = BIT_7
;
2666 } else if (IS_QLA2200(ha
)) {
2667 nv
->firmware_options
[0] = BIT_2
| BIT_1
;
2668 nv
->firmware_options
[1] = BIT_7
| BIT_5
;
2669 nv
->add_firmware_options
[0] = BIT_5
;
2670 nv
->add_firmware_options
[1] = BIT_5
| BIT_4
;
2671 nv
->frame_payload_size
= 1024;
2672 } else if (IS_QLA2100(ha
)) {
2673 nv
->firmware_options
[0] = BIT_3
| BIT_1
;
2674 nv
->firmware_options
[1] = BIT_5
;
2675 nv
->frame_payload_size
= 1024;
2678 nv
->max_iocb_allocation
= cpu_to_le16(256);
2679 nv
->execution_throttle
= cpu_to_le16(16);
2680 nv
->retry_count
= 8;
2681 nv
->retry_delay
= 1;
2683 nv
->port_name
[0] = 33;
2684 nv
->port_name
[3] = 224;
2685 nv
->port_name
[4] = 139;
2687 qla2xxx_nvram_wwn_from_ofw(vha
, nv
);
2689 nv
->login_timeout
= 4;
2692 * Set default host adapter parameters
2694 nv
->host_p
[1] = BIT_2
;
2695 nv
->reset_delay
= 5;
2696 nv
->port_down_retry_count
= 8;
2697 nv
->max_luns_per_target
= cpu_to_le16(8);
2698 nv
->link_down_timeout
= 60;
2703 #if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
2705 * The SN2 does not provide BIOS emulation which means you can't change
2706 * potentially bogus BIOS settings. Force the use of default settings
2707 * for link rate and frame size. Hope that the rest of the settings
2710 if (ia64_platform_is("sn2")) {
2711 nv
->frame_payload_size
= 2048;
2713 nv
->special_options
[1] = BIT_7
;
2717 /* Reset Initialization control block */
2718 memset(icb
, 0, ha
->init_cb_size
);
2721 * Setup driver NVRAM options.
2723 nv
->firmware_options
[0] |= (BIT_6
| BIT_1
);
2724 nv
->firmware_options
[0] &= ~(BIT_5
| BIT_4
);
2725 nv
->firmware_options
[1] |= (BIT_5
| BIT_0
);
2726 nv
->firmware_options
[1] &= ~BIT_4
;
2728 if (IS_QLA23XX(ha
)) {
2729 nv
->firmware_options
[0] |= BIT_2
;
2730 nv
->firmware_options
[0] &= ~BIT_3
;
2731 nv
->special_options
[0] &= ~BIT_6
;
2732 nv
->add_firmware_options
[1] |= BIT_5
| BIT_4
;
2734 if (IS_QLA2300(ha
)) {
2735 if (ha
->fb_rev
== FPM_2310
) {
2736 strcpy(ha
->model_number
, "QLA2310");
2738 strcpy(ha
->model_number
, "QLA2300");
2741 qla2x00_set_model_info(vha
, nv
->model_number
,
2742 sizeof(nv
->model_number
), "QLA23xx");
2744 } else if (IS_QLA2200(ha
)) {
2745 nv
->firmware_options
[0] |= BIT_2
;
2747 * 'Point-to-point preferred, else loop' is not a safe
2748 * connection mode setting.
2750 if ((nv
->add_firmware_options
[0] & (BIT_6
| BIT_5
| BIT_4
)) ==
2752 /* Force 'loop preferred, else point-to-point'. */
2753 nv
->add_firmware_options
[0] &= ~(BIT_6
| BIT_5
| BIT_4
);
2754 nv
->add_firmware_options
[0] |= BIT_5
;
2756 strcpy(ha
->model_number
, "QLA22xx");
2757 } else /*if (IS_QLA2100(ha))*/ {
2758 strcpy(ha
->model_number
, "QLA2100");
2762 * Copy over NVRAM RISC parameter block to initialization control block.
2764 dptr1
= (uint8_t *)icb
;
2765 dptr2
= (uint8_t *)&nv
->parameter_block_version
;
2766 cnt
= (uint8_t *)&icb
->request_q_outpointer
- (uint8_t *)&icb
->version
;
2768 *dptr1
++ = *dptr2
++;
2770 /* Copy 2nd half. */
2771 dptr1
= (uint8_t *)icb
->add_firmware_options
;
2772 cnt
= (uint8_t *)icb
->reserved_3
- (uint8_t *)icb
->add_firmware_options
;
2774 *dptr1
++ = *dptr2
++;
2776 /* Use alternate WWN? */
2777 if (nv
->host_p
[1] & BIT_7
) {
2778 memcpy(icb
->node_name
, nv
->alternate_node_name
, WWN_SIZE
);
2779 memcpy(icb
->port_name
, nv
->alternate_port_name
, WWN_SIZE
);
2782 /* Prepare nodename */
2783 if ((icb
->firmware_options
[1] & BIT_6
) == 0) {
2785 * Firmware will apply the following mask if the nodename was
2788 memcpy(icb
->node_name
, icb
->port_name
, WWN_SIZE
);
2789 icb
->node_name
[0] &= 0xF0;
2793 * Set host adapter parameters.
2797 * BIT_7 in the host-parameters section allows for modification to
2798 * internal driver logging.
2800 if (nv
->host_p
[0] & BIT_7
)
2801 ql2xextended_error_logging
= QL_DBG_DEFAULT1_MASK
;
2802 ha
->flags
.disable_risc_code_load
= ((nv
->host_p
[0] & BIT_4
) ? 1 : 0);
2803 /* Always load RISC code on non ISP2[12]00 chips. */
2804 if (!IS_QLA2100(ha
) && !IS_QLA2200(ha
))
2805 ha
->flags
.disable_risc_code_load
= 0;
2806 ha
->flags
.enable_lip_reset
= ((nv
->host_p
[1] & BIT_1
) ? 1 : 0);
2807 ha
->flags
.enable_lip_full_login
= ((nv
->host_p
[1] & BIT_2
) ? 1 : 0);
2808 ha
->flags
.enable_target_reset
= ((nv
->host_p
[1] & BIT_3
) ? 1 : 0);
2809 ha
->flags
.enable_led_scheme
= (nv
->special_options
[1] & BIT_4
) ? 1 : 0;
2810 ha
->flags
.disable_serdes
= 0;
2812 ha
->operating_mode
=
2813 (icb
->add_firmware_options
[0] & (BIT_6
| BIT_5
| BIT_4
)) >> 4;
2815 memcpy(ha
->fw_seriallink_options
, nv
->seriallink_options
,
2816 sizeof(ha
->fw_seriallink_options
));
2818 /* save HBA serial number */
2819 ha
->serial0
= icb
->port_name
[5];
2820 ha
->serial1
= icb
->port_name
[6];
2821 ha
->serial2
= icb
->port_name
[7];
2822 memcpy(vha
->node_name
, icb
->node_name
, WWN_SIZE
);
2823 memcpy(vha
->port_name
, icb
->port_name
, WWN_SIZE
);
2825 icb
->execution_throttle
= cpu_to_le16(0xFFFF);
2827 ha
->retry_count
= nv
->retry_count
;
2829 /* Set minimum login_timeout to 4 seconds. */
2830 if (nv
->login_timeout
!= ql2xlogintimeout
)
2831 nv
->login_timeout
= ql2xlogintimeout
;
2832 if (nv
->login_timeout
< 4)
2833 nv
->login_timeout
= 4;
2834 ha
->login_timeout
= nv
->login_timeout
;
2835 icb
->login_timeout
= nv
->login_timeout
;
2837 /* Set minimum RATOV to 100 tenths of a second. */
2840 ha
->loop_reset_delay
= nv
->reset_delay
;
2842 /* Link Down Timeout = 0:
2844 * When Port Down timer expires we will start returning
2845 * I/O's to OS with "DID_NO_CONNECT".
2847 * Link Down Timeout != 0:
2849 * The driver waits for the link to come up after link down
2850 * before returning I/Os to OS with "DID_NO_CONNECT".
2852 if (nv
->link_down_timeout
== 0) {
2853 ha
->loop_down_abort_time
=
2854 (LOOP_DOWN_TIME
- LOOP_DOWN_TIMEOUT
);
2856 ha
->link_down_timeout
= nv
->link_down_timeout
;
2857 ha
->loop_down_abort_time
=
2858 (LOOP_DOWN_TIME
- ha
->link_down_timeout
);
2862 * Need enough time to try and get the port back.
2864 ha
->port_down_retry_count
= nv
->port_down_retry_count
;
2865 if (qlport_down_retry
)
2866 ha
->port_down_retry_count
= qlport_down_retry
;
2867 /* Set login_retry_count */
2868 ha
->login_retry_count
= nv
->retry_count
;
2869 if (ha
->port_down_retry_count
== nv
->port_down_retry_count
&&
2870 ha
->port_down_retry_count
> 3)
2871 ha
->login_retry_count
= ha
->port_down_retry_count
;
2872 else if (ha
->port_down_retry_count
> (int)ha
->login_retry_count
)
2873 ha
->login_retry_count
= ha
->port_down_retry_count
;
2874 if (ql2xloginretrycount
)
2875 ha
->login_retry_count
= ql2xloginretrycount
;
2877 icb
->lun_enables
= cpu_to_le16(0);
2878 icb
->command_resource_count
= 0;
2879 icb
->immediate_notify_resource_count
= 0;
2880 icb
->timeout
= cpu_to_le16(0);
2882 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
2884 icb
->firmware_options
[0] &= ~BIT_3
;
2885 icb
->add_firmware_options
[0] &=
2886 ~(BIT_3
| BIT_2
| BIT_1
| BIT_0
);
2887 icb
->add_firmware_options
[0] |= BIT_2
;
2888 icb
->response_accumulation_timer
= 3;
2889 icb
->interrupt_delay_timer
= 5;
2891 vha
->flags
.process_response_queue
= 1;
2894 if (!vha
->flags
.init_done
) {
2895 ha
->zio_mode
= icb
->add_firmware_options
[0] &
2896 (BIT_3
| BIT_2
| BIT_1
| BIT_0
);
2897 ha
->zio_timer
= icb
->interrupt_delay_timer
?
2898 icb
->interrupt_delay_timer
: 2;
2900 icb
->add_firmware_options
[0] &=
2901 ~(BIT_3
| BIT_2
| BIT_1
| BIT_0
);
2902 vha
->flags
.process_response_queue
= 0;
2903 if (ha
->zio_mode
!= QLA_ZIO_DISABLED
) {
2904 ha
->zio_mode
= QLA_ZIO_MODE_6
;
2906 ql_log(ql_log_info
, vha
, 0x0068,
2907 "ZIO mode %d enabled; timer delay (%d us).\n",
2908 ha
->zio_mode
, ha
->zio_timer
* 100);
2910 icb
->add_firmware_options
[0] |= (uint8_t)ha
->zio_mode
;
2911 icb
->interrupt_delay_timer
= (uint8_t)ha
->zio_timer
;
2912 vha
->flags
.process_response_queue
= 1;
2917 ql_log(ql_log_warn
, vha
, 0x0069,
2918 "NVRAM configuration failed.\n");
2924 qla2x00_rport_del(void *data
)
2926 fc_port_t
*fcport
= data
;
2927 struct fc_rport
*rport
;
2928 unsigned long flags
;
2930 spin_lock_irqsave(fcport
->vha
->host
->host_lock
, flags
);
2931 rport
= fcport
->drport
? fcport
->drport
: fcport
->rport
;
2932 fcport
->drport
= NULL
;
2933 spin_unlock_irqrestore(fcport
->vha
->host
->host_lock
, flags
);
2935 fc_remote_port_delete(rport
);
2939 * qla2x00_alloc_fcport() - Allocate a generic fcport.
2941 * @flags: allocation flags
2943 * Returns a pointer to the allocated fcport, or NULL, if none available.
2946 qla2x00_alloc_fcport(scsi_qla_host_t
*vha
, gfp_t flags
)
2950 fcport
= kzalloc(sizeof(fc_port_t
), flags
);
2954 /* Setup fcport template structure. */
2956 fcport
->port_type
= FCT_UNKNOWN
;
2957 fcport
->loop_id
= FC_NO_LOOP_ID
;
2958 qla2x00_set_fcport_state(fcport
, FCS_UNCONFIGURED
);
2959 fcport
->supported_classes
= FC_COS_UNSPECIFIED
;
2965 * qla2x00_configure_loop
2966 * Updates Fibre Channel Device Database with what is actually on loop.
2969 * ha = adapter block pointer.
2974 * 2 = database was full and device was not configured.
2977 qla2x00_configure_loop(scsi_qla_host_t
*vha
)
2980 unsigned long flags
, save_flags
;
2981 struct qla_hw_data
*ha
= vha
->hw
;
2984 /* Get Initiator ID */
2985 if (test_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
)) {
2986 rval
= qla2x00_configure_hba(vha
);
2987 if (rval
!= QLA_SUCCESS
) {
2988 ql_dbg(ql_dbg_disc
, vha
, 0x2013,
2989 "Unable to configure HBA.\n");
2994 save_flags
= flags
= vha
->dpc_flags
;
2995 ql_dbg(ql_dbg_disc
, vha
, 0x2014,
2996 "Configure loop -- dpc flags = 0x%lx.\n", flags
);
2999 * If we have both an RSCN and PORT UPDATE pending then handle them
3000 * both at the same time.
3002 clear_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
3003 clear_bit(RSCN_UPDATE
, &vha
->dpc_flags
);
3005 qla2x00_get_data_rate(vha
);
3007 /* Determine what we need to do */
3008 if (ha
->current_topology
== ISP_CFG_FL
&&
3009 (test_bit(LOCAL_LOOP_UPDATE
, &flags
))) {
3011 set_bit(RSCN_UPDATE
, &flags
);
3013 } else if (ha
->current_topology
== ISP_CFG_F
&&
3014 (test_bit(LOCAL_LOOP_UPDATE
, &flags
))) {
3016 set_bit(RSCN_UPDATE
, &flags
);
3017 clear_bit(LOCAL_LOOP_UPDATE
, &flags
);
3019 } else if (ha
->current_topology
== ISP_CFG_N
) {
3020 clear_bit(RSCN_UPDATE
, &flags
);
3022 } else if (!vha
->flags
.online
||
3023 (test_bit(ABORT_ISP_ACTIVE
, &flags
))) {
3025 set_bit(RSCN_UPDATE
, &flags
);
3026 set_bit(LOCAL_LOOP_UPDATE
, &flags
);
3029 if (test_bit(LOCAL_LOOP_UPDATE
, &flags
)) {
3030 if (test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
)) {
3031 ql_dbg(ql_dbg_disc
, vha
, 0x2015,
3032 "Loop resync needed, failing.\n");
3033 rval
= QLA_FUNCTION_FAILED
;
3035 rval
= qla2x00_configure_local_loop(vha
);
3038 if (rval
== QLA_SUCCESS
&& test_bit(RSCN_UPDATE
, &flags
)) {
3039 if (LOOP_TRANSITION(vha
)) {
3040 ql_dbg(ql_dbg_disc
, vha
, 0x201e,
3041 "Needs RSCN update and loop transition.\n");
3042 rval
= QLA_FUNCTION_FAILED
;
3045 rval
= qla2x00_configure_fabric(vha
);
3048 if (rval
== QLA_SUCCESS
) {
3049 if (atomic_read(&vha
->loop_down_timer
) ||
3050 test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
)) {
3051 rval
= QLA_FUNCTION_FAILED
;
3053 atomic_set(&vha
->loop_state
, LOOP_READY
);
3054 ql_dbg(ql_dbg_disc
, vha
, 0x2069,
3060 ql_dbg(ql_dbg_disc
, vha
, 0x206a,
3061 "%s *** FAILED ***.\n", __func__
);
3063 ql_dbg(ql_dbg_disc
, vha
, 0x206b,
3064 "%s: exiting normally.\n", __func__
);
3067 /* Restore state if a resync event occurred during processing */
3068 if (test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
)) {
3069 if (test_bit(LOCAL_LOOP_UPDATE
, &save_flags
))
3070 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
3071 if (test_bit(RSCN_UPDATE
, &save_flags
)) {
3072 set_bit(RSCN_UPDATE
, &vha
->dpc_flags
);
3082 * qla2x00_configure_local_loop
3083 * Updates Fibre Channel Device Database with local loop devices.
3086 * ha = adapter block pointer.
3092 qla2x00_configure_local_loop(scsi_qla_host_t
*vha
)
3097 fc_port_t
*fcport
, *new_fcport
;
3103 uint8_t domain
, area
, al_pa
;
3104 struct qla_hw_data
*ha
= vha
->hw
;
3108 entries
= MAX_FIBRE_DEVICES_LOOP
;
3110 /* Get list of logged in devices. */
3111 memset(ha
->gid_list
, 0, qla2x00_gid_list_size(ha
));
3112 rval
= qla2x00_get_id_list(vha
, ha
->gid_list
, ha
->gid_list_dma
,
3114 if (rval
!= QLA_SUCCESS
)
3115 goto cleanup_allocation
;
3117 ql_dbg(ql_dbg_disc
, vha
, 0x2017,
3118 "Entries in ID list (%d).\n", entries
);
3119 ql_dump_buffer(ql_dbg_disc
+ ql_dbg_buffer
, vha
, 0x2075,
3120 (uint8_t *)ha
->gid_list
,
3121 entries
* sizeof(struct gid_list_info
));
3123 /* Allocate temporary fcport for any new fcports discovered. */
3124 new_fcport
= qla2x00_alloc_fcport(vha
, GFP_KERNEL
);
3125 if (new_fcport
== NULL
) {
3126 ql_log(ql_log_warn
, vha
, 0x2018,
3127 "Memory allocation failed for fcport.\n");
3128 rval
= QLA_MEMORY_ALLOC_FAILED
;
3129 goto cleanup_allocation
;
3131 new_fcport
->flags
&= ~FCF_FABRIC_DEVICE
;
3134 * Mark local devices that were present with FCF_DEVICE_LOST for now.
3136 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
3137 if (atomic_read(&fcport
->state
) == FCS_ONLINE
&&
3138 fcport
->port_type
!= FCT_BROADCAST
&&
3139 (fcport
->flags
& FCF_FABRIC_DEVICE
) == 0) {
3141 ql_dbg(ql_dbg_disc
, vha
, 0x2019,
3142 "Marking port lost loop_id=0x%04x.\n",
3145 qla2x00_set_fcport_state(fcport
, FCS_DEVICE_LOST
);
3149 /* Add devices to port list. */
3150 id_iter
= (char *)ha
->gid_list
;
3151 for (index
= 0; index
< entries
; index
++) {
3152 domain
= ((struct gid_list_info
*)id_iter
)->domain
;
3153 area
= ((struct gid_list_info
*)id_iter
)->area
;
3154 al_pa
= ((struct gid_list_info
*)id_iter
)->al_pa
;
3155 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
3156 loop_id
= (uint16_t)
3157 ((struct gid_list_info
*)id_iter
)->loop_id_2100
;
3159 loop_id
= le16_to_cpu(
3160 ((struct gid_list_info
*)id_iter
)->loop_id
);
3161 id_iter
+= ha
->gid_list_info_size
;
3163 /* Bypass reserved domain fields. */
3164 if ((domain
& 0xf0) == 0xf0)
3167 /* Bypass if not same domain and area of adapter. */
3168 if (area
&& domain
&&
3169 (area
!= vha
->d_id
.b
.area
|| domain
!= vha
->d_id
.b
.domain
))
3172 /* Bypass invalid local loop ID. */
3173 if (loop_id
> LAST_LOCAL_LOOP_ID
)
3176 memset(new_fcport
, 0, sizeof(fc_port_t
));
3178 /* Fill in member data. */
3179 new_fcport
->d_id
.b
.domain
= domain
;
3180 new_fcport
->d_id
.b
.area
= area
;
3181 new_fcport
->d_id
.b
.al_pa
= al_pa
;
3182 new_fcport
->loop_id
= loop_id
;
3183 rval2
= qla2x00_get_port_database(vha
, new_fcport
, 0);
3184 if (rval2
!= QLA_SUCCESS
) {
3185 ql_dbg(ql_dbg_disc
, vha
, 0x201a,
3186 "Failed to retrieve fcport information "
3187 "-- get_port_database=%x, loop_id=0x%04x.\n",
3188 rval2
, new_fcport
->loop_id
);
3189 ql_dbg(ql_dbg_disc
, vha
, 0x201b,
3190 "Scheduling resync.\n");
3191 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
3195 /* Check for matching device in port list. */
3198 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
3199 if (memcmp(new_fcport
->port_name
, fcport
->port_name
,
3203 fcport
->flags
&= ~FCF_FABRIC_DEVICE
;
3204 fcport
->loop_id
= new_fcport
->loop_id
;
3205 fcport
->port_type
= new_fcport
->port_type
;
3206 fcport
->d_id
.b24
= new_fcport
->d_id
.b24
;
3207 memcpy(fcport
->node_name
, new_fcport
->node_name
,
3215 /* New device, add to fcports list. */
3216 list_add_tail(&new_fcport
->list
, &vha
->vp_fcports
);
3218 /* Allocate a new replacement fcport. */
3219 fcport
= new_fcport
;
3220 new_fcport
= qla2x00_alloc_fcport(vha
, GFP_KERNEL
);
3221 if (new_fcport
== NULL
) {
3222 ql_log(ql_log_warn
, vha
, 0x201c,
3223 "Failed to allocate memory for fcport.\n");
3224 rval
= QLA_MEMORY_ALLOC_FAILED
;
3225 goto cleanup_allocation
;
3227 new_fcport
->flags
&= ~FCF_FABRIC_DEVICE
;
3230 /* Base iIDMA settings on HBA port speed. */
3231 fcport
->fp_speed
= ha
->link_data_rate
;
3233 qla2x00_update_fcport(vha
, fcport
);
3241 if (rval
!= QLA_SUCCESS
) {
3242 ql_dbg(ql_dbg_disc
, vha
, 0x201d,
3243 "Configure local loop error exit: rval=%x.\n", rval
);
3250 qla2x00_iidma_fcport(scsi_qla_host_t
*vha
, fc_port_t
*fcport
)
3253 uint16_t mb
[MAILBOX_REGISTER_COUNT
];
3254 struct qla_hw_data
*ha
= vha
->hw
;
3256 if (!IS_IIDMA_CAPABLE(ha
))
3259 if (atomic_read(&fcport
->state
) != FCS_ONLINE
)
3262 if (fcport
->fp_speed
== PORT_SPEED_UNKNOWN
||
3263 fcport
->fp_speed
> ha
->link_data_rate
)
3266 rval
= qla2x00_set_idma_speed(vha
, fcport
->loop_id
, fcport
->fp_speed
,
3268 if (rval
!= QLA_SUCCESS
) {
3269 ql_dbg(ql_dbg_disc
, vha
, 0x2004,
3270 "Unable to adjust iIDMA %8phN -- %04x %x %04x %04x.\n",
3271 fcport
->port_name
, rval
, fcport
->fp_speed
, mb
[0], mb
[1]);
3273 ql_dbg(ql_dbg_disc
, vha
, 0x2005,
3274 "iIDMA adjusted to %s GB/s on %8phN.\n",
3275 qla2x00_get_link_speed_str(ha
, fcport
->fp_speed
),
3281 qla2x00_reg_remote_port(scsi_qla_host_t
*vha
, fc_port_t
*fcport
)
3283 struct fc_rport_identifiers rport_ids
;
3284 struct fc_rport
*rport
;
3285 unsigned long flags
;
3287 rport_ids
.node_name
= wwn_to_u64(fcport
->node_name
);
3288 rport_ids
.port_name
= wwn_to_u64(fcport
->port_name
);
3289 rport_ids
.port_id
= fcport
->d_id
.b
.domain
<< 16 |
3290 fcport
->d_id
.b
.area
<< 8 | fcport
->d_id
.b
.al_pa
;
3291 rport_ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
3292 fcport
->rport
= rport
= fc_remote_port_add(vha
->host
, 0, &rport_ids
);
3294 ql_log(ql_log_warn
, vha
, 0x2006,
3295 "Unable to allocate fc remote port.\n");
3299 * Create target mode FC NEXUS in qla_target.c if target mode is
3303 qlt_fc_port_added(vha
, fcport
);
3305 spin_lock_irqsave(fcport
->vha
->host
->host_lock
, flags
);
3306 *((fc_port_t
**)rport
->dd_data
) = fcport
;
3307 spin_unlock_irqrestore(fcport
->vha
->host
->host_lock
, flags
);
3309 rport
->supported_classes
= fcport
->supported_classes
;
3311 rport_ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
3312 if (fcport
->port_type
== FCT_INITIATOR
)
3313 rport_ids
.roles
|= FC_RPORT_ROLE_FCP_INITIATOR
;
3314 if (fcport
->port_type
== FCT_TARGET
)
3315 rport_ids
.roles
|= FC_RPORT_ROLE_FCP_TARGET
;
3316 fc_remote_port_rolechg(rport
, rport_ids
.roles
);
3320 * qla2x00_update_fcport
3321 * Updates device on list.
3324 * ha = adapter block pointer.
3325 * fcport = port structure pointer.
3335 qla2x00_update_fcport(scsi_qla_host_t
*vha
, fc_port_t
*fcport
)
3339 if (IS_QLAFX00(vha
->hw
)) {
3340 qla2x00_set_fcport_state(fcport
, FCS_ONLINE
);
3343 fcport
->login_retry
= 0;
3344 fcport
->flags
&= ~(FCF_LOGIN_NEEDED
| FCF_ASYNC_SENT
);
3346 qla2x00_set_fcport_state(fcport
, FCS_ONLINE
);
3347 qla2x00_iidma_fcport(vha
, fcport
);
3348 qla24xx_update_fcport_fcp_prio(vha
, fcport
);
3351 if (qla_ini_mode_enabled(vha
))
3352 qla2x00_reg_remote_port(vha
, fcport
);
3355 * Create target mode FC NEXUS in qla_target.c
3357 qlt_fc_port_added(vha
, fcport
);
3362 * qla2x00_configure_fabric
3363 * Setup SNS devices with loop ID's.
3366 * ha = adapter block pointer.
3373 qla2x00_configure_fabric(scsi_qla_host_t
*vha
)
3376 fc_port_t
*fcport
, *fcptemp
;
3377 uint16_t next_loopid
;
3378 uint16_t mb
[MAILBOX_REGISTER_COUNT
];
3380 LIST_HEAD(new_fcports
);
3381 struct qla_hw_data
*ha
= vha
->hw
;
3382 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
3385 /* If FL port exists, then SNS is present */
3386 if (IS_FWI2_CAPABLE(ha
))
3387 loop_id
= NPH_F_PORT
;
3389 loop_id
= SNS_FL_PORT
;
3390 rval
= qla2x00_get_port_name(vha
, loop_id
, vha
->fabric_node_name
, 1);
3391 if (rval
!= QLA_SUCCESS
) {
3392 ql_dbg(ql_dbg_disc
, vha
, 0x201f,
3393 "MBX_GET_PORT_NAME failed, No FL Port.\n");
3395 vha
->device_flags
&= ~SWITCH_FOUND
;
3396 return (QLA_SUCCESS
);
3398 vha
->device_flags
|= SWITCH_FOUND
;
3402 if (ql2xfdmienable
&&
3403 test_and_clear_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
))
3404 qla2x00_fdmi_register(vha
);
3406 /* Ensure we are logged into the SNS. */
3407 if (IS_FWI2_CAPABLE(ha
))
3410 loop_id
= SIMPLE_NAME_SERVER
;
3411 rval
= ha
->isp_ops
->fabric_login(vha
, loop_id
, 0xff, 0xff,
3412 0xfc, mb
, BIT_1
|BIT_0
);
3413 if (rval
!= QLA_SUCCESS
) {
3414 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
3417 if (mb
[0] != MBS_COMMAND_COMPLETE
) {
3418 ql_dbg(ql_dbg_disc
, vha
, 0x2042,
3419 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x mb[2]=%x "
3420 "mb[6]=%x mb[7]=%x.\n", loop_id
, mb
[0], mb
[1],
3421 mb
[2], mb
[6], mb
[7]);
3422 return (QLA_SUCCESS
);
3425 if (test_and_clear_bit(REGISTER_FC4_NEEDED
, &vha
->dpc_flags
)) {
3426 if (qla2x00_rft_id(vha
)) {
3428 ql_dbg(ql_dbg_disc
, vha
, 0x2045,
3429 "Register FC-4 TYPE failed.\n");
3431 if (qla2x00_rff_id(vha
)) {
3433 ql_dbg(ql_dbg_disc
, vha
, 0x2049,
3434 "Register FC-4 Features failed.\n");
3436 if (qla2x00_rnn_id(vha
)) {
3438 ql_dbg(ql_dbg_disc
, vha
, 0x204f,
3439 "Register Node Name failed.\n");
3440 } else if (qla2x00_rsnn_nn(vha
)) {
3442 ql_dbg(ql_dbg_disc
, vha
, 0x2053,
3443 "Register Symobilic Node Name failed.\n");
3447 #define QLA_FCPORT_SCAN 1
3448 #define QLA_FCPORT_FOUND 2
3450 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
3451 fcport
->scan_state
= QLA_FCPORT_SCAN
;
3454 /* Mark the time right before querying FW for connected ports.
3455 * This process is long, asynchronous and by the time it's done,
3456 * collected information might not be accurate anymore. E.g.
3457 * disconnected port might have re-connected and a brand new
3458 * session has been created. In this case session's generation
3459 * will be newer than discovery_gen. */
3460 qlt_do_generation_tick(vha
, &discovery_gen
);
3462 rval
= qla2x00_find_all_fabric_devs(vha
, &new_fcports
);
3463 if (rval
!= QLA_SUCCESS
)
3467 * Logout all previous fabric devices marked lost, except
3470 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
3471 if (test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
))
3474 if ((fcport
->flags
& FCF_FABRIC_DEVICE
) == 0)
3477 if (fcport
->scan_state
== QLA_FCPORT_SCAN
) {
3478 if (qla_ini_mode_enabled(base_vha
) &&
3479 atomic_read(&fcport
->state
) == FCS_ONLINE
) {
3480 qla2x00_mark_device_lost(vha
, fcport
,
3481 ql2xplogiabsentdevice
, 0);
3482 if (fcport
->loop_id
!= FC_NO_LOOP_ID
&&
3483 (fcport
->flags
& FCF_FCP2_DEVICE
) == 0 &&
3484 fcport
->port_type
!= FCT_INITIATOR
&&
3485 fcport
->port_type
!= FCT_BROADCAST
) {
3486 ha
->isp_ops
->fabric_logout(vha
,
3488 fcport
->d_id
.b
.domain
,
3489 fcport
->d_id
.b
.area
,
3490 fcport
->d_id
.b
.al_pa
);
3491 qla2x00_clear_loop_id(fcport
);
3493 } else if (!qla_ini_mode_enabled(base_vha
)) {
3495 * In target mode, explicitly kill
3496 * sessions and log out of devices
3497 * that are gone, so that we don't
3498 * end up with an initiator using the
3499 * wrong ACL (if the fabric recycles
3500 * an FC address and we have a stale
3501 * session around) and so that we don't
3502 * report initiators that are no longer
3505 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf077,
3506 "port gone, logging out/killing session: "
3507 "%8phC state 0x%x flags 0x%x fc4_type 0x%x "
3510 atomic_read(&fcport
->state
),
3511 fcport
->flags
, fcport
->fc4_type
,
3512 fcport
->scan_state
);
3513 qlt_fc_port_deleted(vha
, fcport
,
3519 /* Starting free loop ID. */
3520 next_loopid
= ha
->min_external_loopid
;
3523 * Scan through our port list and login entries that need to be
3526 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
3527 if (atomic_read(&vha
->loop_down_timer
) ||
3528 test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
))
3531 if ((fcport
->flags
& FCF_FABRIC_DEVICE
) == 0 ||
3532 (fcport
->flags
& FCF_LOGIN_NEEDED
) == 0)
3536 * If we're not an initiator, skip looking for devices
3537 * and logging in. There's no reason for us to do it,
3538 * and it seems to actively cause problems in target
3539 * mode if we race with the initiator logging into us
3540 * (we might get the "port ID used" status back from
3541 * our login command and log out the initiator, which
3542 * seems to cause havoc).
3544 if (!qla_ini_mode_enabled(base_vha
)) {
3545 if (fcport
->scan_state
== QLA_FCPORT_FOUND
) {
3546 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf078,
3547 "port %8phC state 0x%x flags 0x%x fc4_type 0x%x "
3548 "scan_state %d (initiator mode disabled; skipping "
3549 "login)\n", fcport
->port_name
,
3550 atomic_read(&fcport
->state
),
3551 fcport
->flags
, fcport
->fc4_type
,
3552 fcport
->scan_state
);
3557 if (fcport
->loop_id
== FC_NO_LOOP_ID
) {
3558 fcport
->loop_id
= next_loopid
;
3559 rval
= qla2x00_find_new_loop_id(
3561 if (rval
!= QLA_SUCCESS
) {
3562 /* Ran out of IDs to use */
3566 /* Login and update database */
3567 qla2x00_fabric_dev_login(vha
, fcport
, &next_loopid
);
3570 /* Exit if out of loop IDs. */
3571 if (rval
!= QLA_SUCCESS
) {
3576 * Login and add the new devices to our port list.
3578 list_for_each_entry_safe(fcport
, fcptemp
, &new_fcports
, list
) {
3579 if (atomic_read(&vha
->loop_down_timer
) ||
3580 test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
))
3584 * If we're not an initiator, skip looking for devices
3585 * and logging in. There's no reason for us to do it,
3586 * and it seems to actively cause problems in target
3587 * mode if we race with the initiator logging into us
3588 * (we might get the "port ID used" status back from
3589 * our login command and log out the initiator, which
3590 * seems to cause havoc).
3592 if (qla_ini_mode_enabled(base_vha
)) {
3593 /* Find a new loop ID to use. */
3594 fcport
->loop_id
= next_loopid
;
3595 rval
= qla2x00_find_new_loop_id(base_vha
,
3597 if (rval
!= QLA_SUCCESS
) {
3598 /* Ran out of IDs to use */
3602 /* Login and update database */
3603 qla2x00_fabric_dev_login(vha
, fcport
,
3606 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf079,
3607 "new port %8phC state 0x%x flags 0x%x fc4_type "
3608 "0x%x scan_state %d (initiator mode disabled; "
3609 "skipping login)\n",
3611 atomic_read(&fcport
->state
),
3612 fcport
->flags
, fcport
->fc4_type
,
3613 fcport
->scan_state
);
3616 list_move_tail(&fcport
->list
, &vha
->vp_fcports
);
3620 /* Free all new device structures not processed. */
3621 list_for_each_entry_safe(fcport
, fcptemp
, &new_fcports
, list
) {
3622 list_del(&fcport
->list
);
3627 ql_dbg(ql_dbg_disc
, vha
, 0x2068,
3628 "Configure fabric error exit rval=%d.\n", rval
);
3635 * qla2x00_find_all_fabric_devs
3638 * ha = adapter block pointer.
3639 * dev = database device entry pointer.
3648 qla2x00_find_all_fabric_devs(scsi_qla_host_t
*vha
,
3649 struct list_head
*new_fcports
)
3653 fc_port_t
*fcport
, *new_fcport
, *fcptemp
;
3658 int first_dev
, last_dev
;
3659 port_id_t wrap
= {}, nxt_d_id
;
3660 struct qla_hw_data
*ha
= vha
->hw
;
3661 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
3665 /* Try GID_PT to get device list, else GAN. */
3667 ha
->swl
= kcalloc(ha
->max_fibre_devices
, sizeof(sw_info_t
),
3672 ql_dbg(ql_dbg_disc
, vha
, 0x2054,
3673 "GID_PT allocations failed, fallback on GA_NXT.\n");
3675 memset(swl
, 0, ha
->max_fibre_devices
* sizeof(sw_info_t
));
3676 if (qla2x00_gid_pt(vha
, swl
) != QLA_SUCCESS
) {
3678 } else if (qla2x00_gpn_id(vha
, swl
) != QLA_SUCCESS
) {
3680 } else if (qla2x00_gnn_id(vha
, swl
) != QLA_SUCCESS
) {
3682 } else if (ql2xiidmaenable
&&
3683 qla2x00_gfpn_id(vha
, swl
) == QLA_SUCCESS
) {
3684 qla2x00_gpsc(vha
, swl
);
3687 /* If other queries succeeded probe for FC-4 type */
3689 qla2x00_gff_id(vha
, swl
);
3693 /* Allocate temporary fcport for any new fcports discovered. */
3694 new_fcport
= qla2x00_alloc_fcport(vha
, GFP_KERNEL
);
3695 if (new_fcport
== NULL
) {
3696 ql_log(ql_log_warn
, vha
, 0x205e,
3697 "Failed to allocate memory for fcport.\n");
3698 return (QLA_MEMORY_ALLOC_FAILED
);
3700 new_fcport
->flags
|= (FCF_FABRIC_DEVICE
| FCF_LOGIN_NEEDED
);
3701 /* Set start port ID scan at adapter ID. */
3705 /* Starting free loop ID. */
3706 loop_id
= ha
->min_external_loopid
;
3707 for (; loop_id
<= ha
->max_loop_id
; loop_id
++) {
3708 if (qla2x00_is_reserved_id(vha
, loop_id
))
3711 if (ha
->current_topology
== ISP_CFG_FL
&&
3712 (atomic_read(&vha
->loop_down_timer
) ||
3713 LOOP_TRANSITION(vha
))) {
3714 atomic_set(&vha
->loop_down_timer
, 0);
3715 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
3716 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
3722 wrap
.b24
= new_fcport
->d_id
.b24
;
3724 new_fcport
->d_id
.b24
= swl
[swl_idx
].d_id
.b24
;
3725 memcpy(new_fcport
->node_name
,
3726 swl
[swl_idx
].node_name
, WWN_SIZE
);
3727 memcpy(new_fcport
->port_name
,
3728 swl
[swl_idx
].port_name
, WWN_SIZE
);
3729 memcpy(new_fcport
->fabric_port_name
,
3730 swl
[swl_idx
].fabric_port_name
, WWN_SIZE
);
3731 new_fcport
->fp_speed
= swl
[swl_idx
].fp_speed
;
3732 new_fcport
->fc4_type
= swl
[swl_idx
].fc4_type
;
3734 if (swl
[swl_idx
].d_id
.b
.rsvd_1
!= 0) {
3740 /* Send GA_NXT to the switch */
3741 rval
= qla2x00_ga_nxt(vha
, new_fcport
);
3742 if (rval
!= QLA_SUCCESS
) {
3743 ql_log(ql_log_warn
, vha
, 0x2064,
3744 "SNS scan failed -- assuming "
3745 "zero-entry result.\n");
3746 list_for_each_entry_safe(fcport
, fcptemp
,
3747 new_fcports
, list
) {
3748 list_del(&fcport
->list
);
3756 /* If wrap on switch device list, exit. */
3758 wrap
.b24
= new_fcport
->d_id
.b24
;
3760 } else if (new_fcport
->d_id
.b24
== wrap
.b24
) {
3761 ql_dbg(ql_dbg_disc
, vha
, 0x2065,
3762 "Device wrap (%02x%02x%02x).\n",
3763 new_fcport
->d_id
.b
.domain
,
3764 new_fcport
->d_id
.b
.area
,
3765 new_fcport
->d_id
.b
.al_pa
);
3769 /* Bypass if same physical adapter. */
3770 if (new_fcport
->d_id
.b24
== base_vha
->d_id
.b24
)
3773 /* Bypass virtual ports of the same host. */
3774 if (qla2x00_is_a_vp_did(vha
, new_fcport
->d_id
.b24
))
3777 /* Bypass if same domain and area of adapter. */
3778 if (((new_fcport
->d_id
.b24
& 0xffff00) ==
3779 (vha
->d_id
.b24
& 0xffff00)) && ha
->current_topology
==
3783 /* Bypass reserved domain fields. */
3784 if ((new_fcport
->d_id
.b
.domain
& 0xf0) == 0xf0)
3787 /* Bypass ports whose FCP-4 type is not FCP_SCSI */
3788 if (ql2xgffidenable
&&
3789 (new_fcport
->fc4_type
!= FC4_TYPE_FCP_SCSI
&&
3790 new_fcport
->fc4_type
!= FC4_TYPE_UNKNOWN
))
3793 /* Locate matching device in database. */
3795 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
3796 if (memcmp(new_fcport
->port_name
, fcport
->port_name
,
3800 fcport
->scan_state
= QLA_FCPORT_FOUND
;
3804 /* Update port state. */
3805 memcpy(fcport
->fabric_port_name
,
3806 new_fcport
->fabric_port_name
, WWN_SIZE
);
3807 fcport
->fp_speed
= new_fcport
->fp_speed
;
3810 * If address the same and state FCS_ONLINE
3811 * (or in target mode), nothing changed.
3813 if (fcport
->d_id
.b24
== new_fcport
->d_id
.b24
&&
3814 (atomic_read(&fcport
->state
) == FCS_ONLINE
||
3815 !qla_ini_mode_enabled(base_vha
))) {
3820 * If device was not a fabric device before.
3822 if ((fcport
->flags
& FCF_FABRIC_DEVICE
) == 0) {
3823 fcport
->d_id
.b24
= new_fcport
->d_id
.b24
;
3824 qla2x00_clear_loop_id(fcport
);
3825 fcport
->flags
|= (FCF_FABRIC_DEVICE
|
3831 * Port ID changed or device was marked to be updated;
3832 * Log it out if still logged in and mark it for
3835 if (!qla_ini_mode_enabled(base_vha
)) {
3836 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf080,
3837 "port changed FC ID, %8phC"
3838 " old %x:%x:%x (loop_id 0x%04x)-> new %x:%x:%x\n",
3840 fcport
->d_id
.b
.domain
,
3841 fcport
->d_id
.b
.area
,
3842 fcport
->d_id
.b
.al_pa
,
3844 new_fcport
->d_id
.b
.domain
,
3845 new_fcport
->d_id
.b
.area
,
3846 new_fcport
->d_id
.b
.al_pa
);
3847 fcport
->d_id
.b24
= new_fcport
->d_id
.b24
;
3851 fcport
->d_id
.b24
= new_fcport
->d_id
.b24
;
3852 fcport
->flags
|= FCF_LOGIN_NEEDED
;
3853 if (fcport
->loop_id
!= FC_NO_LOOP_ID
&&
3854 (fcport
->flags
& FCF_FCP2_DEVICE
) == 0 &&
3855 (fcport
->flags
& FCF_ASYNC_SENT
) == 0 &&
3856 fcport
->port_type
!= FCT_INITIATOR
&&
3857 fcport
->port_type
!= FCT_BROADCAST
) {
3858 ha
->isp_ops
->fabric_logout(vha
, fcport
->loop_id
,
3859 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
3860 fcport
->d_id
.b
.al_pa
);
3861 qla2x00_clear_loop_id(fcport
);
3869 /* If device was not in our fcports list, then add it. */
3870 new_fcport
->scan_state
= QLA_FCPORT_FOUND
;
3871 list_add_tail(&new_fcport
->list
, new_fcports
);
3873 /* Allocate a new replacement fcport. */
3874 nxt_d_id
.b24
= new_fcport
->d_id
.b24
;
3875 new_fcport
= qla2x00_alloc_fcport(vha
, GFP_KERNEL
);
3876 if (new_fcport
== NULL
) {
3877 ql_log(ql_log_warn
, vha
, 0x2066,
3878 "Memory allocation failed for fcport.\n");
3879 return (QLA_MEMORY_ALLOC_FAILED
);
3881 new_fcport
->flags
|= (FCF_FABRIC_DEVICE
| FCF_LOGIN_NEEDED
);
3882 new_fcport
->d_id
.b24
= nxt_d_id
.b24
;
3891 * qla2x00_find_new_loop_id
3892 * Scan through our port list and find a new usable loop ID.
3895 * ha: adapter state pointer.
3896 * dev: port structure pointer.
3899 * qla2x00 local function return status code.
3905 qla2x00_find_new_loop_id(scsi_qla_host_t
*vha
, fc_port_t
*dev
)
3908 struct qla_hw_data
*ha
= vha
->hw
;
3909 unsigned long flags
= 0;
3913 spin_lock_irqsave(&ha
->vport_slock
, flags
);
3915 dev
->loop_id
= find_first_zero_bit(ha
->loop_id_map
,
3917 if (dev
->loop_id
>= LOOPID_MAP_SIZE
||
3918 qla2x00_is_reserved_id(vha
, dev
->loop_id
)) {
3919 dev
->loop_id
= FC_NO_LOOP_ID
;
3920 rval
= QLA_FUNCTION_FAILED
;
3922 set_bit(dev
->loop_id
, ha
->loop_id_map
);
3924 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
3926 if (rval
== QLA_SUCCESS
)
3927 ql_dbg(ql_dbg_disc
, dev
->vha
, 0x2086,
3928 "Assigning new loopid=%x, portid=%x.\n",
3929 dev
->loop_id
, dev
->d_id
.b24
);
3931 ql_log(ql_log_warn
, dev
->vha
, 0x2087,
3932 "No loop_id's available, portid=%x.\n",
3939 * qla2x00_fabric_dev_login
3940 * Login fabric target device and update FC port database.
3943 * ha: adapter state pointer.
3944 * fcport: port structure list pointer.
3945 * next_loopid: contains value of a new loop ID that can be used
3946 * by the next login attempt.
3949 * qla2x00 local function return status code.
3955 qla2x00_fabric_dev_login(scsi_qla_host_t
*vha
, fc_port_t
*fcport
,
3956 uint16_t *next_loopid
)
3960 struct qla_hw_data
*ha
= vha
->hw
;
3964 if (IS_ALOGIO_CAPABLE(ha
)) {
3965 if (fcport
->flags
& FCF_ASYNC_SENT
)
3967 fcport
->flags
|= FCF_ASYNC_SENT
;
3968 rval
= qla2x00_post_async_login_work(vha
, fcport
, NULL
);
3973 fcport
->flags
&= ~FCF_ASYNC_SENT
;
3974 rval
= qla2x00_fabric_login(vha
, fcport
, next_loopid
);
3975 if (rval
== QLA_SUCCESS
) {
3976 /* Send an ADISC to FCP2 devices.*/
3978 if (fcport
->flags
& FCF_FCP2_DEVICE
)
3980 rval
= qla2x00_get_port_database(vha
, fcport
, opts
);
3981 if (rval
!= QLA_SUCCESS
) {
3982 ha
->isp_ops
->fabric_logout(vha
, fcport
->loop_id
,
3983 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
3984 fcport
->d_id
.b
.al_pa
);
3985 qla2x00_mark_device_lost(vha
, fcport
, 1, 0);
3987 qla2x00_update_fcport(vha
, fcport
);
3991 qla2x00_mark_device_lost(vha
, fcport
, 1, 0);
3998 * qla2x00_fabric_login
3999 * Issue fabric login command.
4002 * ha = adapter block pointer.
4003 * device = pointer to FC device type structure.
4006 * 0 - Login successfully
4008 * 2 - Initiator device
4012 qla2x00_fabric_login(scsi_qla_host_t
*vha
, fc_port_t
*fcport
,
4013 uint16_t *next_loopid
)
4017 uint16_t tmp_loopid
;
4018 uint16_t mb
[MAILBOX_REGISTER_COUNT
];
4019 struct qla_hw_data
*ha
= vha
->hw
;
4025 ql_dbg(ql_dbg_disc
, vha
, 0x2000,
4026 "Trying Fabric Login w/loop id 0x%04x for port "
4028 fcport
->loop_id
, fcport
->d_id
.b
.domain
,
4029 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
4031 /* Login fcport on switch. */
4032 rval
= ha
->isp_ops
->fabric_login(vha
, fcport
->loop_id
,
4033 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
4034 fcport
->d_id
.b
.al_pa
, mb
, BIT_0
);
4035 if (rval
!= QLA_SUCCESS
) {
4038 if (mb
[0] == MBS_PORT_ID_USED
) {
4040 * Device has another loop ID. The firmware team
4041 * recommends the driver perform an implicit login with
4042 * the specified ID again. The ID we just used is save
4043 * here so we return with an ID that can be tried by
4047 tmp_loopid
= fcport
->loop_id
;
4048 fcport
->loop_id
= mb
[1];
4050 ql_dbg(ql_dbg_disc
, vha
, 0x2001,
4051 "Fabric Login: port in use - next loop "
4052 "id=0x%04x, port id= %02x%02x%02x.\n",
4053 fcport
->loop_id
, fcport
->d_id
.b
.domain
,
4054 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
4056 } else if (mb
[0] == MBS_COMMAND_COMPLETE
) {
4061 /* A retry occurred before. */
4062 *next_loopid
= tmp_loopid
;
4065 * No retry occurred before. Just increment the
4066 * ID value for next login.
4068 *next_loopid
= (fcport
->loop_id
+ 1);
4071 if (mb
[1] & BIT_0
) {
4072 fcport
->port_type
= FCT_INITIATOR
;
4074 fcport
->port_type
= FCT_TARGET
;
4075 if (mb
[1] & BIT_1
) {
4076 fcport
->flags
|= FCF_FCP2_DEVICE
;
4081 fcport
->supported_classes
|= FC_COS_CLASS2
;
4083 fcport
->supported_classes
|= FC_COS_CLASS3
;
4085 if (IS_FWI2_CAPABLE(ha
)) {
4088 FCF_CONF_COMP_SUPPORTED
;
4093 } else if (mb
[0] == MBS_LOOP_ID_USED
) {
4095 * Loop ID already used, try next loop ID.
4098 rval
= qla2x00_find_new_loop_id(vha
, fcport
);
4099 if (rval
!= QLA_SUCCESS
) {
4100 /* Ran out of loop IDs to use */
4103 } else if (mb
[0] == MBS_COMMAND_ERROR
) {
4105 * Firmware possibly timed out during login. If NO
4106 * retries are left to do then the device is declared
4109 *next_loopid
= fcport
->loop_id
;
4110 ha
->isp_ops
->fabric_logout(vha
, fcport
->loop_id
,
4111 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
4112 fcport
->d_id
.b
.al_pa
);
4113 qla2x00_mark_device_lost(vha
, fcport
, 1, 0);
4119 * unrecoverable / not handled error
4121 ql_dbg(ql_dbg_disc
, vha
, 0x2002,
4122 "Failed=%x port_id=%02x%02x%02x loop_id=%x "
4123 "jiffies=%lx.\n", mb
[0], fcport
->d_id
.b
.domain
,
4124 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
4125 fcport
->loop_id
, jiffies
);
4127 *next_loopid
= fcport
->loop_id
;
4128 ha
->isp_ops
->fabric_logout(vha
, fcport
->loop_id
,
4129 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
4130 fcport
->d_id
.b
.al_pa
);
4131 qla2x00_clear_loop_id(fcport
);
4132 fcport
->login_retry
= 0;
4143 * qla2x00_local_device_login
4144 * Issue local device login command.
4147 * ha = adapter block pointer.
4148 * loop_id = loop id of device to login to.
4150 * Returns (Where's the #define!!!!):
4151 * 0 - Login successfully
4156 qla2x00_local_device_login(scsi_qla_host_t
*vha
, fc_port_t
*fcport
)
4159 uint16_t mb
[MAILBOX_REGISTER_COUNT
];
4161 memset(mb
, 0, sizeof(mb
));
4162 rval
= qla2x00_login_local_device(vha
, fcport
, mb
, BIT_0
);
4163 if (rval
== QLA_SUCCESS
) {
4164 /* Interrogate mailbox registers for any errors */
4165 if (mb
[0] == MBS_COMMAND_ERROR
)
4167 else if (mb
[0] == MBS_COMMAND_PARAMETER_ERROR
)
4168 /* device not in PCB table */
4176 * qla2x00_loop_resync
4177 * Resync with fibre channel devices.
4180 * ha = adapter block pointer.
4186 qla2x00_loop_resync(scsi_qla_host_t
*vha
)
4188 int rval
= QLA_SUCCESS
;
4190 struct req_que
*req
;
4191 struct rsp_que
*rsp
;
4193 if (vha
->hw
->flags
.cpu_affinity_enabled
)
4194 req
= vha
->hw
->req_q_map
[0];
4199 clear_bit(ISP_ABORT_RETRY
, &vha
->dpc_flags
);
4200 if (vha
->flags
.online
) {
4201 if (!(rval
= qla2x00_fw_ready(vha
))) {
4202 /* Wait at most MAX_TARGET RSCNs for a stable link. */
4205 if (!IS_QLAFX00(vha
->hw
)) {
4207 * Issue a marker after FW becomes
4210 qla2x00_marker(vha
, req
, rsp
, 0, 0,
4212 vha
->marker_needed
= 0;
4215 /* Remap devices on Loop. */
4216 clear_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
4218 if (IS_QLAFX00(vha
->hw
))
4219 qlafx00_configure_devices(vha
);
4221 qla2x00_configure_loop(vha
);
4224 } while (!atomic_read(&vha
->loop_down_timer
) &&
4225 !(test_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
))
4226 && wait_time
&& (test_bit(LOOP_RESYNC_NEEDED
,
4231 if (test_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
))
4232 return (QLA_FUNCTION_FAILED
);
4235 ql_dbg(ql_dbg_disc
, vha
, 0x206c,
4236 "%s *** FAILED ***.\n", __func__
);
4242 * qla2x00_perform_loop_resync
4243 * Description: This function will set the appropriate flags and call
4244 * qla2x00_loop_resync. If successful loop will be resynced
4245 * Arguments : scsi_qla_host_t pointer
4246 * returm : Success or Failure
4249 int qla2x00_perform_loop_resync(scsi_qla_host_t
*ha
)
4253 if (!test_and_set_bit(LOOP_RESYNC_ACTIVE
, &ha
->dpc_flags
)) {
4254 /*Configure the flags so that resync happens properly*/
4255 atomic_set(&ha
->loop_down_timer
, 0);
4256 if (!(ha
->device_flags
& DFLG_NO_CABLE
)) {
4257 atomic_set(&ha
->loop_state
, LOOP_UP
);
4258 set_bit(LOCAL_LOOP_UPDATE
, &ha
->dpc_flags
);
4259 set_bit(REGISTER_FC4_NEEDED
, &ha
->dpc_flags
);
4260 set_bit(LOOP_RESYNC_NEEDED
, &ha
->dpc_flags
);
4262 rval
= qla2x00_loop_resync(ha
);
4264 atomic_set(&ha
->loop_state
, LOOP_DEAD
);
4266 clear_bit(LOOP_RESYNC_ACTIVE
, &ha
->dpc_flags
);
4273 qla2x00_update_fcports(scsi_qla_host_t
*base_vha
)
4276 struct scsi_qla_host
*vha
;
4277 struct qla_hw_data
*ha
= base_vha
->hw
;
4278 unsigned long flags
;
4280 spin_lock_irqsave(&ha
->vport_slock
, flags
);
4281 /* Go with deferred removal of rport references. */
4282 list_for_each_entry(vha
, &base_vha
->hw
->vp_list
, list
) {
4283 atomic_inc(&vha
->vref_count
);
4284 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
4285 if (fcport
->drport
&&
4286 atomic_read(&fcport
->state
) != FCS_UNCONFIGURED
) {
4287 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
4288 qla2x00_rport_del(fcport
);
4291 * Release the target mode FC NEXUS in
4292 * qla_target.c, if target mod is enabled.
4294 qlt_fc_port_deleted(vha
, fcport
,
4295 base_vha
->total_fcport_update_gen
);
4297 spin_lock_irqsave(&ha
->vport_slock
, flags
);
4300 atomic_dec(&vha
->vref_count
);
4302 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
4305 /* Assumes idc_lock always held on entry */
4307 qla83xx_reset_ownership(scsi_qla_host_t
*vha
)
4309 struct qla_hw_data
*ha
= vha
->hw
;
4310 uint32_t drv_presence
, drv_presence_mask
;
4311 uint32_t dev_part_info1
, dev_part_info2
, class_type
;
4312 uint32_t class_type_mask
= 0x3;
4313 uint16_t fcoe_other_function
= 0xffff, i
;
4315 if (IS_QLA8044(ha
)) {
4316 drv_presence
= qla8044_rd_direct(vha
,
4317 QLA8044_CRB_DRV_ACTIVE_INDEX
);
4318 dev_part_info1
= qla8044_rd_direct(vha
,
4319 QLA8044_CRB_DEV_PART_INFO_INDEX
);
4320 dev_part_info2
= qla8044_rd_direct(vha
,
4321 QLA8044_CRB_DEV_PART_INFO2
);
4323 qla83xx_rd_reg(vha
, QLA83XX_IDC_DRV_PRESENCE
, &drv_presence
);
4324 qla83xx_rd_reg(vha
, QLA83XX_DEV_PARTINFO1
, &dev_part_info1
);
4325 qla83xx_rd_reg(vha
, QLA83XX_DEV_PARTINFO2
, &dev_part_info2
);
4327 for (i
= 0; i
< 8; i
++) {
4328 class_type
= ((dev_part_info1
>> (i
* 4)) & class_type_mask
);
4329 if ((class_type
== QLA83XX_CLASS_TYPE_FCOE
) &&
4330 (i
!= ha
->portnum
)) {
4331 fcoe_other_function
= i
;
4335 if (fcoe_other_function
== 0xffff) {
4336 for (i
= 0; i
< 8; i
++) {
4337 class_type
= ((dev_part_info2
>> (i
* 4)) &
4339 if ((class_type
== QLA83XX_CLASS_TYPE_FCOE
) &&
4340 ((i
+ 8) != ha
->portnum
)) {
4341 fcoe_other_function
= i
+ 8;
4347 * Prepare drv-presence mask based on fcoe functions present.
4348 * However consider only valid physical fcoe function numbers (0-15).
4350 drv_presence_mask
= ~((1 << (ha
->portnum
)) |
4351 ((fcoe_other_function
== 0xffff) ?
4352 0 : (1 << (fcoe_other_function
))));
4354 /* We are the reset owner iff:
4355 * - No other protocol drivers present.
4356 * - This is the lowest among fcoe functions. */
4357 if (!(drv_presence
& drv_presence_mask
) &&
4358 (ha
->portnum
< fcoe_other_function
)) {
4359 ql_dbg(ql_dbg_p3p
, vha
, 0xb07f,
4360 "This host is Reset owner.\n");
4361 ha
->flags
.nic_core_reset_owner
= 1;
4366 __qla83xx_set_drv_ack(scsi_qla_host_t
*vha
)
4368 int rval
= QLA_SUCCESS
;
4369 struct qla_hw_data
*ha
= vha
->hw
;
4372 rval
= qla83xx_rd_reg(vha
, QLA83XX_IDC_DRIVER_ACK
, &drv_ack
);
4373 if (rval
== QLA_SUCCESS
) {
4374 drv_ack
|= (1 << ha
->portnum
);
4375 rval
= qla83xx_wr_reg(vha
, QLA83XX_IDC_DRIVER_ACK
, drv_ack
);
4382 __qla83xx_clear_drv_ack(scsi_qla_host_t
*vha
)
4384 int rval
= QLA_SUCCESS
;
4385 struct qla_hw_data
*ha
= vha
->hw
;
4388 rval
= qla83xx_rd_reg(vha
, QLA83XX_IDC_DRIVER_ACK
, &drv_ack
);
4389 if (rval
== QLA_SUCCESS
) {
4390 drv_ack
&= ~(1 << ha
->portnum
);
4391 rval
= qla83xx_wr_reg(vha
, QLA83XX_IDC_DRIVER_ACK
, drv_ack
);
4398 qla83xx_dev_state_to_string(uint32_t dev_state
)
4400 switch (dev_state
) {
4401 case QLA8XXX_DEV_COLD
:
4402 return "COLD/RE-INIT";
4403 case QLA8XXX_DEV_INITIALIZING
:
4404 return "INITIALIZING";
4405 case QLA8XXX_DEV_READY
:
4407 case QLA8XXX_DEV_NEED_RESET
:
4408 return "NEED RESET";
4409 case QLA8XXX_DEV_NEED_QUIESCENT
:
4410 return "NEED QUIESCENT";
4411 case QLA8XXX_DEV_FAILED
:
4413 case QLA8XXX_DEV_QUIESCENT
:
4420 /* Assumes idc-lock always held on entry */
4422 qla83xx_idc_audit(scsi_qla_host_t
*vha
, int audit_type
)
4424 struct qla_hw_data
*ha
= vha
->hw
;
4425 uint32_t idc_audit_reg
= 0, duration_secs
= 0;
4427 switch (audit_type
) {
4428 case IDC_AUDIT_TIMESTAMP
:
4429 ha
->idc_audit_ts
= (jiffies_to_msecs(jiffies
) / 1000);
4430 idc_audit_reg
= (ha
->portnum
) |
4431 (IDC_AUDIT_TIMESTAMP
<< 7) | (ha
->idc_audit_ts
<< 8);
4432 qla83xx_wr_reg(vha
, QLA83XX_IDC_AUDIT
, idc_audit_reg
);
4435 case IDC_AUDIT_COMPLETION
:
4436 duration_secs
= ((jiffies_to_msecs(jiffies
) -
4437 jiffies_to_msecs(ha
->idc_audit_ts
)) / 1000);
4438 idc_audit_reg
= (ha
->portnum
) |
4439 (IDC_AUDIT_COMPLETION
<< 7) | (duration_secs
<< 8);
4440 qla83xx_wr_reg(vha
, QLA83XX_IDC_AUDIT
, idc_audit_reg
);
4444 ql_log(ql_log_warn
, vha
, 0xb078,
4445 "Invalid audit type specified.\n");
4450 /* Assumes idc_lock always held on entry */
4452 qla83xx_initiating_reset(scsi_qla_host_t
*vha
)
4454 struct qla_hw_data
*ha
= vha
->hw
;
4455 uint32_t idc_control
, dev_state
;
4457 __qla83xx_get_idc_control(vha
, &idc_control
);
4458 if ((idc_control
& QLA83XX_IDC_RESET_DISABLED
)) {
4459 ql_log(ql_log_info
, vha
, 0xb080,
4460 "NIC Core reset has been disabled. idc-control=0x%x\n",
4462 return QLA_FUNCTION_FAILED
;
4465 /* Set NEED-RESET iff in READY state and we are the reset-owner */
4466 qla83xx_rd_reg(vha
, QLA83XX_IDC_DEV_STATE
, &dev_state
);
4467 if (ha
->flags
.nic_core_reset_owner
&& dev_state
== QLA8XXX_DEV_READY
) {
4468 qla83xx_wr_reg(vha
, QLA83XX_IDC_DEV_STATE
,
4469 QLA8XXX_DEV_NEED_RESET
);
4470 ql_log(ql_log_info
, vha
, 0xb056, "HW State: NEED RESET.\n");
4471 qla83xx_idc_audit(vha
, IDC_AUDIT_TIMESTAMP
);
4473 const char *state
= qla83xx_dev_state_to_string(dev_state
);
4474 ql_log(ql_log_info
, vha
, 0xb057, "HW State: %s.\n", state
);
4476 /* SV: XXX: Is timeout required here? */
4477 /* Wait for IDC state change READY -> NEED_RESET */
4478 while (dev_state
== QLA8XXX_DEV_READY
) {
4479 qla83xx_idc_unlock(vha
, 0);
4481 qla83xx_idc_lock(vha
, 0);
4482 qla83xx_rd_reg(vha
, QLA83XX_IDC_DEV_STATE
, &dev_state
);
4486 /* Send IDC ack by writing to drv-ack register */
4487 __qla83xx_set_drv_ack(vha
);
4493 __qla83xx_set_idc_control(scsi_qla_host_t
*vha
, uint32_t idc_control
)
4495 return qla83xx_wr_reg(vha
, QLA83XX_IDC_CONTROL
, idc_control
);
4499 __qla83xx_get_idc_control(scsi_qla_host_t
*vha
, uint32_t *idc_control
)
4501 return qla83xx_rd_reg(vha
, QLA83XX_IDC_CONTROL
, idc_control
);
4505 qla83xx_check_driver_presence(scsi_qla_host_t
*vha
)
4507 uint32_t drv_presence
= 0;
4508 struct qla_hw_data
*ha
= vha
->hw
;
4510 qla83xx_rd_reg(vha
, QLA83XX_IDC_DRV_PRESENCE
, &drv_presence
);
4511 if (drv_presence
& (1 << ha
->portnum
))
4514 return QLA_TEST_FAILED
;
4518 qla83xx_nic_core_reset(scsi_qla_host_t
*vha
)
4520 int rval
= QLA_SUCCESS
;
4521 struct qla_hw_data
*ha
= vha
->hw
;
4523 ql_dbg(ql_dbg_p3p
, vha
, 0xb058,
4524 "Entered %s().\n", __func__
);
4526 if (vha
->device_flags
& DFLG_DEV_FAILED
) {
4527 ql_log(ql_log_warn
, vha
, 0xb059,
4528 "Device in unrecoverable FAILED state.\n");
4529 return QLA_FUNCTION_FAILED
;
4532 qla83xx_idc_lock(vha
, 0);
4534 if (qla83xx_check_driver_presence(vha
) != QLA_SUCCESS
) {
4535 ql_log(ql_log_warn
, vha
, 0xb05a,
4536 "Function=0x%x has been removed from IDC participation.\n",
4538 rval
= QLA_FUNCTION_FAILED
;
4542 qla83xx_reset_ownership(vha
);
4544 rval
= qla83xx_initiating_reset(vha
);
4547 * Perform reset if we are the reset-owner,
4548 * else wait till IDC state changes to READY/FAILED.
4550 if (rval
== QLA_SUCCESS
) {
4551 rval
= qla83xx_idc_state_handler(vha
);
4553 if (rval
== QLA_SUCCESS
)
4554 ha
->flags
.nic_core_hung
= 0;
4555 __qla83xx_clear_drv_ack(vha
);
4559 qla83xx_idc_unlock(vha
, 0);
4561 ql_dbg(ql_dbg_p3p
, vha
, 0xb05b, "Exiting %s.\n", __func__
);
4567 qla2xxx_mctp_dump(scsi_qla_host_t
*vha
)
4569 struct qla_hw_data
*ha
= vha
->hw
;
4570 int rval
= QLA_FUNCTION_FAILED
;
4572 if (!IS_MCTP_CAPABLE(ha
)) {
4573 /* This message can be removed from the final version */
4574 ql_log(ql_log_info
, vha
, 0x506d,
4575 "This board is not MCTP capable\n");
4579 if (!ha
->mctp_dump
) {
4580 ha
->mctp_dump
= dma_alloc_coherent(&ha
->pdev
->dev
,
4581 MCTP_DUMP_SIZE
, &ha
->mctp_dump_dma
, GFP_KERNEL
);
4583 if (!ha
->mctp_dump
) {
4584 ql_log(ql_log_warn
, vha
, 0x506e,
4585 "Failed to allocate memory for mctp dump\n");
4590 #define MCTP_DUMP_STR_ADDR 0x00000000
4591 rval
= qla2x00_dump_mctp_data(vha
, ha
->mctp_dump_dma
,
4592 MCTP_DUMP_STR_ADDR
, MCTP_DUMP_SIZE
/4);
4593 if (rval
!= QLA_SUCCESS
) {
4594 ql_log(ql_log_warn
, vha
, 0x506f,
4595 "Failed to capture mctp dump\n");
4597 ql_log(ql_log_info
, vha
, 0x5070,
4598 "Mctp dump capture for host (%ld/%p).\n",
4599 vha
->host_no
, ha
->mctp_dump
);
4600 ha
->mctp_dumped
= 1;
4603 if (!ha
->flags
.nic_core_reset_hdlr_active
&& !ha
->portnum
) {
4604 ha
->flags
.nic_core_reset_hdlr_active
= 1;
4605 rval
= qla83xx_restart_nic_firmware(vha
);
4607 /* NIC Core reset failed. */
4608 ql_log(ql_log_warn
, vha
, 0x5071,
4609 "Failed to restart nic firmware\n");
4611 ql_dbg(ql_dbg_p3p
, vha
, 0xb084,
4612 "Restarted NIC firmware successfully.\n");
4613 ha
->flags
.nic_core_reset_hdlr_active
= 0;
4621 * qla2x00_quiesce_io
4622 * Description: This function will block the new I/Os
4623 * Its not aborting any I/Os as context
4624 * is not destroyed during quiescence
4625 * Arguments: scsi_qla_host_t
4629 qla2x00_quiesce_io(scsi_qla_host_t
*vha
)
4631 struct qla_hw_data
*ha
= vha
->hw
;
4632 struct scsi_qla_host
*vp
;
4634 ql_dbg(ql_dbg_dpc
, vha
, 0x401d,
4635 "Quiescing I/O - ha=%p.\n", ha
);
4637 atomic_set(&ha
->loop_down_timer
, LOOP_DOWN_TIME
);
4638 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
4639 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
4640 qla2x00_mark_all_devices_lost(vha
, 0);
4641 list_for_each_entry(vp
, &ha
->vp_list
, list
)
4642 qla2x00_mark_all_devices_lost(vp
, 0);
4644 if (!atomic_read(&vha
->loop_down_timer
))
4645 atomic_set(&vha
->loop_down_timer
,
4648 /* Wait for pending cmds to complete */
4649 qla2x00_eh_wait_for_pending_commands(vha
, 0, 0, WAIT_HOST
);
4653 qla2x00_abort_isp_cleanup(scsi_qla_host_t
*vha
)
4655 struct qla_hw_data
*ha
= vha
->hw
;
4656 struct scsi_qla_host
*vp
;
4657 unsigned long flags
;
4660 /* For ISP82XX, driver waits for completion of the commands.
4661 * online flag should be set.
4663 if (!(IS_P3P_TYPE(ha
)))
4664 vha
->flags
.online
= 0;
4665 ha
->flags
.chip_reset_done
= 0;
4666 clear_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
4667 vha
->qla_stats
.total_isp_aborts
++;
4669 ql_log(ql_log_info
, vha
, 0x00af,
4670 "Performing ISP error recovery - ha=%p.\n", ha
);
4672 /* For ISP82XX, reset_chip is just disabling interrupts.
4673 * Driver waits for the completion of the commands.
4674 * the interrupts need to be enabled.
4676 if (!(IS_P3P_TYPE(ha
)))
4677 ha
->isp_ops
->reset_chip(vha
);
4679 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
4680 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
4681 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
4682 qla2x00_mark_all_devices_lost(vha
, 0);
4684 spin_lock_irqsave(&ha
->vport_slock
, flags
);
4685 list_for_each_entry(vp
, &ha
->vp_list
, list
) {
4686 atomic_inc(&vp
->vref_count
);
4687 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
4689 qla2x00_mark_all_devices_lost(vp
, 0);
4691 spin_lock_irqsave(&ha
->vport_slock
, flags
);
4692 atomic_dec(&vp
->vref_count
);
4694 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
4696 if (!atomic_read(&vha
->loop_down_timer
))
4697 atomic_set(&vha
->loop_down_timer
,
4701 /* Clear all async request states across all VPs. */
4702 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
)
4703 fcport
->flags
&= ~(FCF_LOGIN_NEEDED
| FCF_ASYNC_SENT
);
4704 spin_lock_irqsave(&ha
->vport_slock
, flags
);
4705 list_for_each_entry(vp
, &ha
->vp_list
, list
) {
4706 atomic_inc(&vp
->vref_count
);
4707 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
4709 list_for_each_entry(fcport
, &vp
->vp_fcports
, list
)
4710 fcport
->flags
&= ~(FCF_LOGIN_NEEDED
| FCF_ASYNC_SENT
);
4712 spin_lock_irqsave(&ha
->vport_slock
, flags
);
4713 atomic_dec(&vp
->vref_count
);
4715 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
4717 if (!ha
->flags
.eeh_busy
) {
4718 /* Make sure for ISP 82XX IO DMA is complete */
4719 if (IS_P3P_TYPE(ha
)) {
4720 qla82xx_chip_reset_cleanup(vha
);
4721 ql_log(ql_log_info
, vha
, 0x00b4,
4722 "Done chip reset cleanup.\n");
4724 /* Done waiting for pending commands.
4725 * Reset the online flag.
4727 vha
->flags
.online
= 0;
4730 /* Requeue all commands in outstanding command list. */
4731 qla2x00_abort_all_cmds(vha
, DID_RESET
<< 16);
4735 /* memory barrier */
4741 * Resets ISP and aborts all outstanding commands.
4744 * ha = adapter block pointer.
4750 qla2x00_abort_isp(scsi_qla_host_t
*vha
)
4754 struct qla_hw_data
*ha
= vha
->hw
;
4755 struct scsi_qla_host
*vp
;
4756 struct req_que
*req
= ha
->req_q_map
[0];
4757 unsigned long flags
;
4759 if (vha
->flags
.online
) {
4760 qla2x00_abort_isp_cleanup(vha
);
4762 if (IS_QLA8031(ha
)) {
4763 ql_dbg(ql_dbg_p3p
, vha
, 0xb05c,
4764 "Clearing fcoe driver presence.\n");
4765 if (qla83xx_clear_drv_presence(vha
) != QLA_SUCCESS
)
4766 ql_dbg(ql_dbg_p3p
, vha
, 0xb073,
4767 "Error while clearing DRV-Presence.\n");
4770 if (unlikely(pci_channel_offline(ha
->pdev
) &&
4771 ha
->flags
.pci_channel_io_perm_failure
)) {
4772 clear_bit(ISP_ABORT_RETRY
, &vha
->dpc_flags
);
4777 ha
->isp_ops
->get_flash_version(vha
, req
->ring
);
4779 ha
->isp_ops
->nvram_config(vha
);
4781 if (!qla2x00_restart_isp(vha
)) {
4782 clear_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
4784 if (!atomic_read(&vha
->loop_down_timer
)) {
4786 * Issue marker command only when we are going
4787 * to start the I/O .
4789 vha
->marker_needed
= 1;
4792 vha
->flags
.online
= 1;
4794 ha
->isp_ops
->enable_intrs(ha
);
4796 ha
->isp_abort_cnt
= 0;
4797 clear_bit(ISP_ABORT_RETRY
, &vha
->dpc_flags
);
4799 if (IS_QLA81XX(ha
) || IS_QLA8031(ha
))
4800 qla2x00_get_fw_version(vha
);
4802 ha
->flags
.fce_enabled
= 1;
4804 fce_calc_size(ha
->fce_bufs
));
4805 rval
= qla2x00_enable_fce_trace(vha
,
4806 ha
->fce_dma
, ha
->fce_bufs
, ha
->fce_mb
,
4809 ql_log(ql_log_warn
, vha
, 0x8033,
4810 "Unable to reinitialize FCE "
4812 ha
->flags
.fce_enabled
= 0;
4817 memset(ha
->eft
, 0, EFT_SIZE
);
4818 rval
= qla2x00_enable_eft_trace(vha
,
4819 ha
->eft_dma
, EFT_NUM_BUFFERS
);
4821 ql_log(ql_log_warn
, vha
, 0x8034,
4822 "Unable to reinitialize EFT "
4826 } else { /* failed the ISP abort */
4827 vha
->flags
.online
= 1;
4828 if (test_bit(ISP_ABORT_RETRY
, &vha
->dpc_flags
)) {
4829 if (ha
->isp_abort_cnt
== 0) {
4830 ql_log(ql_log_fatal
, vha
, 0x8035,
4831 "ISP error recover failed - "
4832 "board disabled.\n");
4834 * The next call disables the board
4837 ha
->isp_ops
->reset_adapter(vha
);
4838 vha
->flags
.online
= 0;
4839 clear_bit(ISP_ABORT_RETRY
,
4842 } else { /* schedule another ISP abort */
4843 ha
->isp_abort_cnt
--;
4844 ql_dbg(ql_dbg_taskm
, vha
, 0x8020,
4845 "ISP abort - retry remaining %d.\n",
4850 ha
->isp_abort_cnt
= MAX_RETRIES_OF_ISP_ABORT
;
4851 ql_dbg(ql_dbg_taskm
, vha
, 0x8021,
4852 "ISP error recovery - retrying (%d) "
4853 "more times.\n", ha
->isp_abort_cnt
);
4854 set_bit(ISP_ABORT_RETRY
, &vha
->dpc_flags
);
4862 ql_dbg(ql_dbg_taskm
, vha
, 0x8022, "%s succeeded.\n", __func__
);
4864 spin_lock_irqsave(&ha
->vport_slock
, flags
);
4865 list_for_each_entry(vp
, &ha
->vp_list
, list
) {
4867 atomic_inc(&vp
->vref_count
);
4868 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
4870 qla2x00_vp_abort_isp(vp
);
4872 spin_lock_irqsave(&ha
->vport_slock
, flags
);
4873 atomic_dec(&vp
->vref_count
);
4876 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
4878 if (IS_QLA8031(ha
)) {
4879 ql_dbg(ql_dbg_p3p
, vha
, 0xb05d,
4880 "Setting back fcoe driver presence.\n");
4881 if (qla83xx_set_drv_presence(vha
) != QLA_SUCCESS
)
4882 ql_dbg(ql_dbg_p3p
, vha
, 0xb074,
4883 "Error while setting DRV-Presence.\n");
4886 ql_log(ql_log_warn
, vha
, 0x8023, "%s **** FAILED ****.\n",
4894 * qla2x00_restart_isp
4895 * restarts the ISP after a reset
4898 * ha = adapter block pointer.
4904 qla2x00_restart_isp(scsi_qla_host_t
*vha
)
4907 struct qla_hw_data
*ha
= vha
->hw
;
4908 struct req_que
*req
= ha
->req_q_map
[0];
4909 struct rsp_que
*rsp
= ha
->rsp_q_map
[0];
4910 unsigned long flags
;
4912 /* If firmware needs to be loaded */
4913 if (qla2x00_isp_firmware(vha
)) {
4914 vha
->flags
.online
= 0;
4915 status
= ha
->isp_ops
->chip_diag(vha
);
4917 status
= qla2x00_setup_chip(vha
);
4920 if (!status
&& !(status
= qla2x00_init_rings(vha
))) {
4921 clear_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
4922 ha
->flags
.chip_reset_done
= 1;
4924 /* Initialize the queues in use */
4925 qla25xx_init_queues(ha
);
4927 status
= qla2x00_fw_ready(vha
);
4929 /* Issue a marker after FW becomes ready. */
4930 qla2x00_marker(vha
, req
, rsp
, 0, 0, MK_SYNC_ALL
);
4932 vha
->flags
.online
= 1;
4935 * Process any ATIO queue entries that came in
4936 * while we weren't online.
4938 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
4939 if (qla_tgt_mode_enabled(vha
))
4940 qlt_24xx_process_atio_queue(vha
);
4941 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
4943 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
4946 /* if no cable then assume it's good */
4947 if ((vha
->device_flags
& DFLG_NO_CABLE
))
4954 qla25xx_init_queues(struct qla_hw_data
*ha
)
4956 struct rsp_que
*rsp
= NULL
;
4957 struct req_que
*req
= NULL
;
4958 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
4962 for (i
= 1; i
< ha
->max_rsp_queues
; i
++) {
4963 rsp
= ha
->rsp_q_map
[i
];
4965 rsp
->options
&= ~BIT_0
;
4966 ret
= qla25xx_init_rsp_que(base_vha
, rsp
);
4967 if (ret
!= QLA_SUCCESS
)
4968 ql_dbg(ql_dbg_init
, base_vha
, 0x00ff,
4969 "%s Rsp que: %d init failed.\n",
4972 ql_dbg(ql_dbg_init
, base_vha
, 0x0100,
4973 "%s Rsp que: %d inited.\n",
4977 for (i
= 1; i
< ha
->max_req_queues
; i
++) {
4978 req
= ha
->req_q_map
[i
];
4980 /* Clear outstanding commands array. */
4981 req
->options
&= ~BIT_0
;
4982 ret
= qla25xx_init_req_que(base_vha
, req
);
4983 if (ret
!= QLA_SUCCESS
)
4984 ql_dbg(ql_dbg_init
, base_vha
, 0x0101,
4985 "%s Req que: %d init failed.\n",
4988 ql_dbg(ql_dbg_init
, base_vha
, 0x0102,
4989 "%s Req que: %d inited.\n",
4997 * qla2x00_reset_adapter
5001 * ha = adapter block pointer.
5004 qla2x00_reset_adapter(scsi_qla_host_t
*vha
)
5006 unsigned long flags
= 0;
5007 struct qla_hw_data
*ha
= vha
->hw
;
5008 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
5010 vha
->flags
.online
= 0;
5011 ha
->isp_ops
->disable_intrs(ha
);
5013 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
5014 WRT_REG_WORD(®
->hccr
, HCCR_RESET_RISC
);
5015 RD_REG_WORD(®
->hccr
); /* PCI Posting. */
5016 WRT_REG_WORD(®
->hccr
, HCCR_RELEASE_RISC
);
5017 RD_REG_WORD(®
->hccr
); /* PCI Posting. */
5018 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
5022 qla24xx_reset_adapter(scsi_qla_host_t
*vha
)
5024 unsigned long flags
= 0;
5025 struct qla_hw_data
*ha
= vha
->hw
;
5026 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
5028 if (IS_P3P_TYPE(ha
))
5031 vha
->flags
.online
= 0;
5032 ha
->isp_ops
->disable_intrs(ha
);
5034 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
5035 WRT_REG_DWORD(®
->hccr
, HCCRX_SET_RISC_RESET
);
5036 RD_REG_DWORD(®
->hccr
);
5037 WRT_REG_DWORD(®
->hccr
, HCCRX_REL_RISC_PAUSE
);
5038 RD_REG_DWORD(®
->hccr
);
5039 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
5041 if (IS_NOPOLLING_TYPE(ha
))
5042 ha
->isp_ops
->enable_intrs(ha
);
5045 /* On sparc systems, obtain port and node WWN from firmware
5048 static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t
*vha
,
5049 struct nvram_24xx
*nv
)
5052 struct qla_hw_data
*ha
= vha
->hw
;
5053 struct pci_dev
*pdev
= ha
->pdev
;
5054 struct device_node
*dp
= pci_device_to_OF_node(pdev
);
5058 val
= of_get_property(dp
, "port-wwn", &len
);
5059 if (val
&& len
>= WWN_SIZE
)
5060 memcpy(nv
->port_name
, val
, WWN_SIZE
);
5062 val
= of_get_property(dp
, "node-wwn", &len
);
5063 if (val
&& len
>= WWN_SIZE
)
5064 memcpy(nv
->node_name
, val
, WWN_SIZE
);
5069 qla24xx_nvram_config(scsi_qla_host_t
*vha
)
5072 struct init_cb_24xx
*icb
;
5073 struct nvram_24xx
*nv
;
5075 uint8_t *dptr1
, *dptr2
;
5078 struct qla_hw_data
*ha
= vha
->hw
;
5081 icb
= (struct init_cb_24xx
*)ha
->init_cb
;
5084 /* Determine NVRAM starting address. */
5085 if (ha
->port_no
== 0) {
5086 ha
->nvram_base
= FA_NVRAM_FUNC0_ADDR
;
5087 ha
->vpd_base
= FA_NVRAM_VPD0_ADDR
;
5089 ha
->nvram_base
= FA_NVRAM_FUNC1_ADDR
;
5090 ha
->vpd_base
= FA_NVRAM_VPD1_ADDR
;
5093 ha
->nvram_size
= sizeof(struct nvram_24xx
);
5094 ha
->vpd_size
= FA_NVRAM_VPD_SIZE
;
5096 /* Get VPD data into cache */
5097 ha
->vpd
= ha
->nvram
+ VPD_OFFSET
;
5098 ha
->isp_ops
->read_nvram(vha
, (uint8_t *)ha
->vpd
,
5099 ha
->nvram_base
- FA_NVRAM_FUNC0_ADDR
, FA_NVRAM_VPD_SIZE
* 4);
5101 /* Get NVRAM data into cache and calculate checksum. */
5102 dptr
= (uint32_t *)nv
;
5103 ha
->isp_ops
->read_nvram(vha
, (uint8_t *)dptr
, ha
->nvram_base
,
5105 for (cnt
= 0, chksum
= 0; cnt
< ha
->nvram_size
>> 2; cnt
++)
5106 chksum
+= le32_to_cpu(*dptr
++);
5108 ql_dbg(ql_dbg_init
+ ql_dbg_buffer
, vha
, 0x006a,
5109 "Contents of NVRAM\n");
5110 ql_dump_buffer(ql_dbg_init
+ ql_dbg_buffer
, vha
, 0x010d,
5111 (uint8_t *)nv
, ha
->nvram_size
);
5113 /* Bad NVRAM data, set defaults parameters. */
5114 if (chksum
|| nv
->id
[0] != 'I' || nv
->id
[1] != 'S' || nv
->id
[2] != 'P'
5115 || nv
->id
[3] != ' ' ||
5116 nv
->nvram_version
< cpu_to_le16(ICB_VERSION
)) {
5117 /* Reset NVRAM data. */
5118 ql_log(ql_log_warn
, vha
, 0x006b,
5119 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
5120 "version=0x%x.\n", chksum
, nv
->id
[0], nv
->nvram_version
);
5121 ql_log(ql_log_warn
, vha
, 0x006c,
5122 "Falling back to functioning (yet invalid -- WWPN) "
5126 * Set default initialization control block.
5128 memset(nv
, 0, ha
->nvram_size
);
5129 nv
->nvram_version
= cpu_to_le16(ICB_VERSION
);
5130 nv
->version
= cpu_to_le16(ICB_VERSION
);
5131 nv
->frame_payload_size
= 2048;
5132 nv
->execution_throttle
= cpu_to_le16(0xFFFF);
5133 nv
->exchange_count
= cpu_to_le16(0);
5134 nv
->hard_address
= cpu_to_le16(124);
5135 nv
->port_name
[0] = 0x21;
5136 nv
->port_name
[1] = 0x00 + ha
->port_no
+ 1;
5137 nv
->port_name
[2] = 0x00;
5138 nv
->port_name
[3] = 0xe0;
5139 nv
->port_name
[4] = 0x8b;
5140 nv
->port_name
[5] = 0x1c;
5141 nv
->port_name
[6] = 0x55;
5142 nv
->port_name
[7] = 0x86;
5143 nv
->node_name
[0] = 0x20;
5144 nv
->node_name
[1] = 0x00;
5145 nv
->node_name
[2] = 0x00;
5146 nv
->node_name
[3] = 0xe0;
5147 nv
->node_name
[4] = 0x8b;
5148 nv
->node_name
[5] = 0x1c;
5149 nv
->node_name
[6] = 0x55;
5150 nv
->node_name
[7] = 0x86;
5151 qla24xx_nvram_wwn_from_ofw(vha
, nv
);
5152 nv
->login_retry_count
= cpu_to_le16(8);
5153 nv
->interrupt_delay_timer
= cpu_to_le16(0);
5154 nv
->login_timeout
= cpu_to_le16(0);
5155 nv
->firmware_options_1
=
5156 cpu_to_le32(BIT_14
|BIT_13
|BIT_2
|BIT_1
);
5157 nv
->firmware_options_2
= cpu_to_le32(2 << 4);
5158 nv
->firmware_options_2
|= cpu_to_le32(BIT_12
);
5159 nv
->firmware_options_3
= cpu_to_le32(2 << 13);
5160 nv
->host_p
= cpu_to_le32(BIT_11
|BIT_10
);
5161 nv
->efi_parameters
= cpu_to_le32(0);
5162 nv
->reset_delay
= 5;
5163 nv
->max_luns_per_target
= cpu_to_le16(128);
5164 nv
->port_down_retry_count
= cpu_to_le16(30);
5165 nv
->link_down_timeout
= cpu_to_le16(30);
5170 if (!qla_ini_mode_enabled(vha
)) {
5171 /* Don't enable full login after initial LIP */
5172 nv
->firmware_options_1
&= cpu_to_le32(~BIT_13
);
5173 /* Don't enable LIP full login for initiator */
5174 nv
->host_p
&= cpu_to_le32(~BIT_10
);
5177 qlt_24xx_config_nvram_stage1(vha
, nv
);
5179 /* Reset Initialization control block */
5180 memset(icb
, 0, ha
->init_cb_size
);
5182 /* Copy 1st segment. */
5183 dptr1
= (uint8_t *)icb
;
5184 dptr2
= (uint8_t *)&nv
->version
;
5185 cnt
= (uint8_t *)&icb
->response_q_inpointer
- (uint8_t *)&icb
->version
;
5187 *dptr1
++ = *dptr2
++;
5189 icb
->login_retry_count
= nv
->login_retry_count
;
5190 icb
->link_down_on_nos
= nv
->link_down_on_nos
;
5192 /* Copy 2nd segment. */
5193 dptr1
= (uint8_t *)&icb
->interrupt_delay_timer
;
5194 dptr2
= (uint8_t *)&nv
->interrupt_delay_timer
;
5195 cnt
= (uint8_t *)&icb
->reserved_3
-
5196 (uint8_t *)&icb
->interrupt_delay_timer
;
5198 *dptr1
++ = *dptr2
++;
5201 * Setup driver NVRAM options.
5203 qla2x00_set_model_info(vha
, nv
->model_name
, sizeof(nv
->model_name
),
5206 qlt_24xx_config_nvram_stage2(vha
, icb
);
5208 if (nv
->host_p
& cpu_to_le32(BIT_15
)) {
5209 /* Use alternate WWN? */
5210 memcpy(icb
->node_name
, nv
->alternate_node_name
, WWN_SIZE
);
5211 memcpy(icb
->port_name
, nv
->alternate_port_name
, WWN_SIZE
);
5214 /* Prepare nodename */
5215 if ((icb
->firmware_options_1
& cpu_to_le32(BIT_14
)) == 0) {
5217 * Firmware will apply the following mask if the nodename was
5220 memcpy(icb
->node_name
, icb
->port_name
, WWN_SIZE
);
5221 icb
->node_name
[0] &= 0xF0;
5224 /* Set host adapter parameters. */
5225 ha
->flags
.disable_risc_code_load
= 0;
5226 ha
->flags
.enable_lip_reset
= 0;
5227 ha
->flags
.enable_lip_full_login
=
5228 le32_to_cpu(nv
->host_p
) & BIT_10
? 1: 0;
5229 ha
->flags
.enable_target_reset
=
5230 le32_to_cpu(nv
->host_p
) & BIT_11
? 1: 0;
5231 ha
->flags
.enable_led_scheme
= 0;
5232 ha
->flags
.disable_serdes
= le32_to_cpu(nv
->host_p
) & BIT_5
? 1: 0;
5234 ha
->operating_mode
= (le32_to_cpu(icb
->firmware_options_2
) &
5235 (BIT_6
| BIT_5
| BIT_4
)) >> 4;
5237 memcpy(ha
->fw_seriallink_options24
, nv
->seriallink_options
,
5238 sizeof(ha
->fw_seriallink_options24
));
5240 /* save HBA serial number */
5241 ha
->serial0
= icb
->port_name
[5];
5242 ha
->serial1
= icb
->port_name
[6];
5243 ha
->serial2
= icb
->port_name
[7];
5244 memcpy(vha
->node_name
, icb
->node_name
, WWN_SIZE
);
5245 memcpy(vha
->port_name
, icb
->port_name
, WWN_SIZE
);
5247 icb
->execution_throttle
= cpu_to_le16(0xFFFF);
5249 ha
->retry_count
= le16_to_cpu(nv
->login_retry_count
);
5251 /* Set minimum login_timeout to 4 seconds. */
5252 if (le16_to_cpu(nv
->login_timeout
) < ql2xlogintimeout
)
5253 nv
->login_timeout
= cpu_to_le16(ql2xlogintimeout
);
5254 if (le16_to_cpu(nv
->login_timeout
) < 4)
5255 nv
->login_timeout
= cpu_to_le16(4);
5256 ha
->login_timeout
= le16_to_cpu(nv
->login_timeout
);
5257 icb
->login_timeout
= nv
->login_timeout
;
5259 /* Set minimum RATOV to 100 tenths of a second. */
5262 ha
->loop_reset_delay
= nv
->reset_delay
;
5264 /* Link Down Timeout = 0:
5266 * When Port Down timer expires we will start returning
5267 * I/O's to OS with "DID_NO_CONNECT".
5269 * Link Down Timeout != 0:
5271 * The driver waits for the link to come up after link down
5272 * before returning I/Os to OS with "DID_NO_CONNECT".
5274 if (le16_to_cpu(nv
->link_down_timeout
) == 0) {
5275 ha
->loop_down_abort_time
=
5276 (LOOP_DOWN_TIME
- LOOP_DOWN_TIMEOUT
);
5278 ha
->link_down_timeout
= le16_to_cpu(nv
->link_down_timeout
);
5279 ha
->loop_down_abort_time
=
5280 (LOOP_DOWN_TIME
- ha
->link_down_timeout
);
5283 /* Need enough time to try and get the port back. */
5284 ha
->port_down_retry_count
= le16_to_cpu(nv
->port_down_retry_count
);
5285 if (qlport_down_retry
)
5286 ha
->port_down_retry_count
= qlport_down_retry
;
5288 /* Set login_retry_count */
5289 ha
->login_retry_count
= le16_to_cpu(nv
->login_retry_count
);
5290 if (ha
->port_down_retry_count
==
5291 le16_to_cpu(nv
->port_down_retry_count
) &&
5292 ha
->port_down_retry_count
> 3)
5293 ha
->login_retry_count
= ha
->port_down_retry_count
;
5294 else if (ha
->port_down_retry_count
> (int)ha
->login_retry_count
)
5295 ha
->login_retry_count
= ha
->port_down_retry_count
;
5296 if (ql2xloginretrycount
)
5297 ha
->login_retry_count
= ql2xloginretrycount
;
5300 if (!vha
->flags
.init_done
) {
5301 ha
->zio_mode
= le32_to_cpu(icb
->firmware_options_2
) &
5302 (BIT_3
| BIT_2
| BIT_1
| BIT_0
);
5303 ha
->zio_timer
= le16_to_cpu(icb
->interrupt_delay_timer
) ?
5304 le16_to_cpu(icb
->interrupt_delay_timer
): 2;
5306 icb
->firmware_options_2
&= cpu_to_le32(
5307 ~(BIT_3
| BIT_2
| BIT_1
| BIT_0
));
5308 vha
->flags
.process_response_queue
= 0;
5309 if (ha
->zio_mode
!= QLA_ZIO_DISABLED
) {
5310 ha
->zio_mode
= QLA_ZIO_MODE_6
;
5312 ql_log(ql_log_info
, vha
, 0x006f,
5313 "ZIO mode %d enabled; timer delay (%d us).\n",
5314 ha
->zio_mode
, ha
->zio_timer
* 100);
5316 icb
->firmware_options_2
|= cpu_to_le32(
5317 (uint32_t)ha
->zio_mode
);
5318 icb
->interrupt_delay_timer
= cpu_to_le16(ha
->zio_timer
);
5319 vha
->flags
.process_response_queue
= 1;
5323 ql_log(ql_log_warn
, vha
, 0x0070,
5324 "NVRAM configuration failed.\n");
5330 qla24xx_load_risc_flash(scsi_qla_host_t
*vha
, uint32_t *srisc_addr
,
5333 int rval
= QLA_SUCCESS
;
5334 int segments
, fragment
;
5335 uint32_t *dcode
, dlen
;
5339 struct qla_hw_data
*ha
= vha
->hw
;
5340 struct req_que
*req
= ha
->req_q_map
[0];
5342 ql_dbg(ql_dbg_init
, vha
, 0x008b,
5343 "FW: Loading firmware from flash (%x).\n", faddr
);
5347 segments
= FA_RISC_CODE_SEGMENTS
;
5348 dcode
= (uint32_t *)req
->ring
;
5351 /* Validate firmware image by checking version. */
5352 qla24xx_read_flash_data(vha
, dcode
, faddr
+ 4, 4);
5353 for (i
= 0; i
< 4; i
++)
5354 dcode
[i
] = be32_to_cpu(dcode
[i
]);
5355 if ((dcode
[0] == 0xffffffff && dcode
[1] == 0xffffffff &&
5356 dcode
[2] == 0xffffffff && dcode
[3] == 0xffffffff) ||
5357 (dcode
[0] == 0 && dcode
[1] == 0 && dcode
[2] == 0 &&
5359 ql_log(ql_log_fatal
, vha
, 0x008c,
5360 "Unable to verify the integrity of flash firmware "
5362 ql_log(ql_log_fatal
, vha
, 0x008d,
5363 "Firmware data: %08x %08x %08x %08x.\n",
5364 dcode
[0], dcode
[1], dcode
[2], dcode
[3]);
5366 return QLA_FUNCTION_FAILED
;
5369 while (segments
&& rval
== QLA_SUCCESS
) {
5370 /* Read segment's load information. */
5371 qla24xx_read_flash_data(vha
, dcode
, faddr
, 4);
5373 risc_addr
= be32_to_cpu(dcode
[2]);
5374 *srisc_addr
= *srisc_addr
== 0 ? risc_addr
: *srisc_addr
;
5375 risc_size
= be32_to_cpu(dcode
[3]);
5378 while (risc_size
> 0 && rval
== QLA_SUCCESS
) {
5379 dlen
= (uint32_t)(ha
->fw_transfer_size
>> 2);
5380 if (dlen
> risc_size
)
5383 ql_dbg(ql_dbg_init
, vha
, 0x008e,
5384 "Loading risc segment@ risc addr %x "
5385 "number of dwords 0x%x offset 0x%x.\n",
5386 risc_addr
, dlen
, faddr
);
5388 qla24xx_read_flash_data(vha
, dcode
, faddr
, dlen
);
5389 for (i
= 0; i
< dlen
; i
++)
5390 dcode
[i
] = swab32(dcode
[i
]);
5392 rval
= qla2x00_load_ram(vha
, req
->dma
, risc_addr
,
5395 ql_log(ql_log_fatal
, vha
, 0x008f,
5396 "Failed to load segment %d of firmware.\n",
5398 return QLA_FUNCTION_FAILED
;
5411 if (!IS_QLA27XX(ha
))
5414 if (ha
->fw_dump_template
)
5415 vfree(ha
->fw_dump_template
);
5416 ha
->fw_dump_template
= NULL
;
5417 ha
->fw_dump_template_len
= 0;
5419 ql_dbg(ql_dbg_init
, vha
, 0x0161,
5420 "Loading fwdump template from %x\n", faddr
);
5421 qla24xx_read_flash_data(vha
, dcode
, faddr
, 7);
5422 risc_size
= be32_to_cpu(dcode
[2]);
5423 ql_dbg(ql_dbg_init
, vha
, 0x0162,
5424 "-> array size %x dwords\n", risc_size
);
5425 if (risc_size
== 0 || risc_size
== ~0)
5426 goto default_template
;
5428 dlen
= (risc_size
- 8) * sizeof(*dcode
);
5429 ql_dbg(ql_dbg_init
, vha
, 0x0163,
5430 "-> template allocating %x bytes...\n", dlen
);
5431 ha
->fw_dump_template
= vmalloc(dlen
);
5432 if (!ha
->fw_dump_template
) {
5433 ql_log(ql_log_warn
, vha
, 0x0164,
5434 "Failed fwdump template allocate %x bytes.\n", risc_size
);
5435 goto default_template
;
5440 dcode
= ha
->fw_dump_template
;
5441 qla24xx_read_flash_data(vha
, dcode
, faddr
, risc_size
);
5442 for (i
= 0; i
< risc_size
; i
++)
5443 dcode
[i
] = le32_to_cpu(dcode
[i
]);
5445 if (!qla27xx_fwdt_template_valid(dcode
)) {
5446 ql_log(ql_log_warn
, vha
, 0x0165,
5447 "Failed fwdump template validate\n");
5448 goto default_template
;
5451 dlen
= qla27xx_fwdt_template_size(dcode
);
5452 ql_dbg(ql_dbg_init
, vha
, 0x0166,
5453 "-> template size %x bytes\n", dlen
);
5454 if (dlen
> risc_size
* sizeof(*dcode
)) {
5455 ql_log(ql_log_warn
, vha
, 0x0167,
5456 "Failed fwdump template exceeds array by %x bytes\n",
5457 (uint32_t)(dlen
- risc_size
* sizeof(*dcode
)));
5458 goto default_template
;
5460 ha
->fw_dump_template_len
= dlen
;
5464 ql_log(ql_log_warn
, vha
, 0x0168, "Using default fwdump template\n");
5465 if (ha
->fw_dump_template
)
5466 vfree(ha
->fw_dump_template
);
5467 ha
->fw_dump_template
= NULL
;
5468 ha
->fw_dump_template_len
= 0;
5470 dlen
= qla27xx_fwdt_template_default_size();
5471 ql_dbg(ql_dbg_init
, vha
, 0x0169,
5472 "-> template allocating %x bytes...\n", dlen
);
5473 ha
->fw_dump_template
= vmalloc(dlen
);
5474 if (!ha
->fw_dump_template
) {
5475 ql_log(ql_log_warn
, vha
, 0x016a,
5476 "Failed fwdump template allocate %x bytes.\n", risc_size
);
5477 goto failed_template
;
5480 dcode
= ha
->fw_dump_template
;
5481 risc_size
= dlen
/ sizeof(*dcode
);
5482 memcpy(dcode
, qla27xx_fwdt_template_default(), dlen
);
5483 for (i
= 0; i
< risc_size
; i
++)
5484 dcode
[i
] = be32_to_cpu(dcode
[i
]);
5486 if (!qla27xx_fwdt_template_valid(ha
->fw_dump_template
)) {
5487 ql_log(ql_log_warn
, vha
, 0x016b,
5488 "Failed fwdump template validate\n");
5489 goto failed_template
;
5492 dlen
= qla27xx_fwdt_template_size(ha
->fw_dump_template
);
5493 ql_dbg(ql_dbg_init
, vha
, 0x016c,
5494 "-> template size %x bytes\n", dlen
);
5495 ha
->fw_dump_template_len
= dlen
;
5499 ql_log(ql_log_warn
, vha
, 0x016d, "Failed default fwdump template\n");
5500 if (ha
->fw_dump_template
)
5501 vfree(ha
->fw_dump_template
);
5502 ha
->fw_dump_template
= NULL
;
5503 ha
->fw_dump_template_len
= 0;
5507 #define QLA_FW_URL "http://ldriver.qlogic.com/firmware/"
5510 qla2x00_load_risc(scsi_qla_host_t
*vha
, uint32_t *srisc_addr
)
5514 uint16_t *wcode
, *fwcode
;
5515 uint32_t risc_addr
, risc_size
, fwclen
, wlen
, *seg
;
5516 struct fw_blob
*blob
;
5517 struct qla_hw_data
*ha
= vha
->hw
;
5518 struct req_que
*req
= ha
->req_q_map
[0];
5520 /* Load firmware blob. */
5521 blob
= qla2x00_request_firmware(vha
);
5523 ql_log(ql_log_info
, vha
, 0x0083,
5524 "Firmware image unavailable.\n");
5525 ql_log(ql_log_info
, vha
, 0x0084,
5526 "Firmware images can be retrieved from: "QLA_FW_URL
".\n");
5527 return QLA_FUNCTION_FAILED
;
5532 wcode
= (uint16_t *)req
->ring
;
5534 fwcode
= (uint16_t *)blob
->fw
->data
;
5537 /* Validate firmware image by checking version. */
5538 if (blob
->fw
->size
< 8 * sizeof(uint16_t)) {
5539 ql_log(ql_log_fatal
, vha
, 0x0085,
5540 "Unable to verify integrity of firmware image (%Zd).\n",
5542 goto fail_fw_integrity
;
5544 for (i
= 0; i
< 4; i
++)
5545 wcode
[i
] = be16_to_cpu(fwcode
[i
+ 4]);
5546 if ((wcode
[0] == 0xffff && wcode
[1] == 0xffff && wcode
[2] == 0xffff &&
5547 wcode
[3] == 0xffff) || (wcode
[0] == 0 && wcode
[1] == 0 &&
5548 wcode
[2] == 0 && wcode
[3] == 0)) {
5549 ql_log(ql_log_fatal
, vha
, 0x0086,
5550 "Unable to verify integrity of firmware image.\n");
5551 ql_log(ql_log_fatal
, vha
, 0x0087,
5552 "Firmware data: %04x %04x %04x %04x.\n",
5553 wcode
[0], wcode
[1], wcode
[2], wcode
[3]);
5554 goto fail_fw_integrity
;
5558 while (*seg
&& rval
== QLA_SUCCESS
) {
5560 *srisc_addr
= *srisc_addr
== 0 ? *seg
: *srisc_addr
;
5561 risc_size
= be16_to_cpu(fwcode
[3]);
5563 /* Validate firmware image size. */
5564 fwclen
+= risc_size
* sizeof(uint16_t);
5565 if (blob
->fw
->size
< fwclen
) {
5566 ql_log(ql_log_fatal
, vha
, 0x0088,
5567 "Unable to verify integrity of firmware image "
5568 "(%Zd).\n", blob
->fw
->size
);
5569 goto fail_fw_integrity
;
5573 while (risc_size
> 0 && rval
== QLA_SUCCESS
) {
5574 wlen
= (uint16_t)(ha
->fw_transfer_size
>> 1);
5575 if (wlen
> risc_size
)
5577 ql_dbg(ql_dbg_init
, vha
, 0x0089,
5578 "Loading risc segment@ risc addr %x number of "
5579 "words 0x%x.\n", risc_addr
, wlen
);
5581 for (i
= 0; i
< wlen
; i
++)
5582 wcode
[i
] = swab16(fwcode
[i
]);
5584 rval
= qla2x00_load_ram(vha
, req
->dma
, risc_addr
,
5587 ql_log(ql_log_fatal
, vha
, 0x008a,
5588 "Failed to load segment %d of firmware.\n",
5605 return QLA_FUNCTION_FAILED
;
5609 qla24xx_load_risc_blob(scsi_qla_host_t
*vha
, uint32_t *srisc_addr
)
5612 int segments
, fragment
;
5613 uint32_t *dcode
, dlen
;
5617 struct fw_blob
*blob
;
5618 const uint32_t *fwcode
;
5620 struct qla_hw_data
*ha
= vha
->hw
;
5621 struct req_que
*req
= ha
->req_q_map
[0];
5623 /* Load firmware blob. */
5624 blob
= qla2x00_request_firmware(vha
);
5626 ql_log(ql_log_warn
, vha
, 0x0090,
5627 "Firmware image unavailable.\n");
5628 ql_log(ql_log_warn
, vha
, 0x0091,
5629 "Firmware images can be retrieved from: "
5632 return QLA_FUNCTION_FAILED
;
5635 ql_dbg(ql_dbg_init
, vha
, 0x0092,
5636 "FW: Loading via request-firmware.\n");
5640 segments
= FA_RISC_CODE_SEGMENTS
;
5641 dcode
= (uint32_t *)req
->ring
;
5643 fwcode
= (uint32_t *)blob
->fw
->data
;
5646 /* Validate firmware image by checking version. */
5647 if (blob
->fw
->size
< 8 * sizeof(uint32_t)) {
5648 ql_log(ql_log_fatal
, vha
, 0x0093,
5649 "Unable to verify integrity of firmware image (%Zd).\n",
5651 return QLA_FUNCTION_FAILED
;
5653 for (i
= 0; i
< 4; i
++)
5654 dcode
[i
] = be32_to_cpu(fwcode
[i
+ 4]);
5655 if ((dcode
[0] == 0xffffffff && dcode
[1] == 0xffffffff &&
5656 dcode
[2] == 0xffffffff && dcode
[3] == 0xffffffff) ||
5657 (dcode
[0] == 0 && dcode
[1] == 0 && dcode
[2] == 0 &&
5659 ql_log(ql_log_fatal
, vha
, 0x0094,
5660 "Unable to verify integrity of firmware image (%Zd).\n",
5662 ql_log(ql_log_fatal
, vha
, 0x0095,
5663 "Firmware data: %08x %08x %08x %08x.\n",
5664 dcode
[0], dcode
[1], dcode
[2], dcode
[3]);
5665 return QLA_FUNCTION_FAILED
;
5668 while (segments
&& rval
== QLA_SUCCESS
) {
5669 risc_addr
= be32_to_cpu(fwcode
[2]);
5670 *srisc_addr
= *srisc_addr
== 0 ? risc_addr
: *srisc_addr
;
5671 risc_size
= be32_to_cpu(fwcode
[3]);
5673 /* Validate firmware image size. */
5674 fwclen
+= risc_size
* sizeof(uint32_t);
5675 if (blob
->fw
->size
< fwclen
) {
5676 ql_log(ql_log_fatal
, vha
, 0x0096,
5677 "Unable to verify integrity of firmware image "
5678 "(%Zd).\n", blob
->fw
->size
);
5679 return QLA_FUNCTION_FAILED
;
5683 while (risc_size
> 0 && rval
== QLA_SUCCESS
) {
5684 dlen
= (uint32_t)(ha
->fw_transfer_size
>> 2);
5685 if (dlen
> risc_size
)
5688 ql_dbg(ql_dbg_init
, vha
, 0x0097,
5689 "Loading risc segment@ risc addr %x "
5690 "number of dwords 0x%x.\n", risc_addr
, dlen
);
5692 for (i
= 0; i
< dlen
; i
++)
5693 dcode
[i
] = swab32(fwcode
[i
]);
5695 rval
= qla2x00_load_ram(vha
, req
->dma
, risc_addr
,
5698 ql_log(ql_log_fatal
, vha
, 0x0098,
5699 "Failed to load segment %d of firmware.\n",
5701 return QLA_FUNCTION_FAILED
;
5714 if (!IS_QLA27XX(ha
))
5717 if (ha
->fw_dump_template
)
5718 vfree(ha
->fw_dump_template
);
5719 ha
->fw_dump_template
= NULL
;
5720 ha
->fw_dump_template_len
= 0;
5722 ql_dbg(ql_dbg_init
, vha
, 0x171,
5723 "Loading fwdump template from %x\n",
5724 (uint32_t)((void *)fwcode
- (void *)blob
->fw
->data
));
5725 risc_size
= be32_to_cpu(fwcode
[2]);
5726 ql_dbg(ql_dbg_init
, vha
, 0x172,
5727 "-> array size %x dwords\n", risc_size
);
5728 if (risc_size
== 0 || risc_size
== ~0)
5729 goto default_template
;
5731 dlen
= (risc_size
- 8) * sizeof(*fwcode
);
5732 ql_dbg(ql_dbg_init
, vha
, 0x0173,
5733 "-> template allocating %x bytes...\n", dlen
);
5734 ha
->fw_dump_template
= vmalloc(dlen
);
5735 if (!ha
->fw_dump_template
) {
5736 ql_log(ql_log_warn
, vha
, 0x0174,
5737 "Failed fwdump template allocate %x bytes.\n", risc_size
);
5738 goto default_template
;
5743 dcode
= ha
->fw_dump_template
;
5744 for (i
= 0; i
< risc_size
; i
++)
5745 dcode
[i
] = le32_to_cpu(fwcode
[i
]);
5747 if (!qla27xx_fwdt_template_valid(dcode
)) {
5748 ql_log(ql_log_warn
, vha
, 0x0175,
5749 "Failed fwdump template validate\n");
5750 goto default_template
;
5753 dlen
= qla27xx_fwdt_template_size(dcode
);
5754 ql_dbg(ql_dbg_init
, vha
, 0x0176,
5755 "-> template size %x bytes\n", dlen
);
5756 if (dlen
> risc_size
* sizeof(*fwcode
)) {
5757 ql_log(ql_log_warn
, vha
, 0x0177,
5758 "Failed fwdump template exceeds array by %x bytes\n",
5759 (uint32_t)(dlen
- risc_size
* sizeof(*fwcode
)));
5760 goto default_template
;
5762 ha
->fw_dump_template_len
= dlen
;
5766 ql_log(ql_log_warn
, vha
, 0x0178, "Using default fwdump template\n");
5767 if (ha
->fw_dump_template
)
5768 vfree(ha
->fw_dump_template
);
5769 ha
->fw_dump_template
= NULL
;
5770 ha
->fw_dump_template_len
= 0;
5772 dlen
= qla27xx_fwdt_template_default_size();
5773 ql_dbg(ql_dbg_init
, vha
, 0x0179,
5774 "-> template allocating %x bytes...\n", dlen
);
5775 ha
->fw_dump_template
= vmalloc(dlen
);
5776 if (!ha
->fw_dump_template
) {
5777 ql_log(ql_log_warn
, vha
, 0x017a,
5778 "Failed fwdump template allocate %x bytes.\n", risc_size
);
5779 goto failed_template
;
5782 dcode
= ha
->fw_dump_template
;
5783 risc_size
= dlen
/ sizeof(*fwcode
);
5784 fwcode
= qla27xx_fwdt_template_default();
5785 for (i
= 0; i
< risc_size
; i
++)
5786 dcode
[i
] = be32_to_cpu(fwcode
[i
]);
5788 if (!qla27xx_fwdt_template_valid(ha
->fw_dump_template
)) {
5789 ql_log(ql_log_warn
, vha
, 0x017b,
5790 "Failed fwdump template validate\n");
5791 goto failed_template
;
5794 dlen
= qla27xx_fwdt_template_size(ha
->fw_dump_template
);
5795 ql_dbg(ql_dbg_init
, vha
, 0x017c,
5796 "-> template size %x bytes\n", dlen
);
5797 ha
->fw_dump_template_len
= dlen
;
5801 ql_log(ql_log_warn
, vha
, 0x017d, "Failed default fwdump template\n");
5802 if (ha
->fw_dump_template
)
5803 vfree(ha
->fw_dump_template
);
5804 ha
->fw_dump_template
= NULL
;
5805 ha
->fw_dump_template_len
= 0;
5810 qla24xx_load_risc(scsi_qla_host_t
*vha
, uint32_t *srisc_addr
)
5814 if (ql2xfwloadbin
== 1)
5815 return qla81xx_load_risc(vha
, srisc_addr
);
5819 * 1) Firmware via request-firmware interface (.bin file).
5820 * 2) Firmware residing in flash.
5822 rval
= qla24xx_load_risc_blob(vha
, srisc_addr
);
5823 if (rval
== QLA_SUCCESS
)
5826 return qla24xx_load_risc_flash(vha
, srisc_addr
,
5827 vha
->hw
->flt_region_fw
);
5831 qla81xx_load_risc(scsi_qla_host_t
*vha
, uint32_t *srisc_addr
)
5834 struct qla_hw_data
*ha
= vha
->hw
;
5836 if (ql2xfwloadbin
== 2)
5841 * 1) Firmware residing in flash.
5842 * 2) Firmware via request-firmware interface (.bin file).
5843 * 3) Golden-Firmware residing in flash -- limited operation.
5845 rval
= qla24xx_load_risc_flash(vha
, srisc_addr
, ha
->flt_region_fw
);
5846 if (rval
== QLA_SUCCESS
)
5850 rval
= qla24xx_load_risc_blob(vha
, srisc_addr
);
5851 if (rval
== QLA_SUCCESS
|| !ha
->flt_region_gold_fw
)
5854 ql_log(ql_log_info
, vha
, 0x0099,
5855 "Attempting to fallback to golden firmware.\n");
5856 rval
= qla24xx_load_risc_flash(vha
, srisc_addr
, ha
->flt_region_gold_fw
);
5857 if (rval
!= QLA_SUCCESS
)
5860 ql_log(ql_log_info
, vha
, 0x009a, "Update operational firmware.\n");
5861 ha
->flags
.running_gold_fw
= 1;
5866 qla2x00_try_to_stop_firmware(scsi_qla_host_t
*vha
)
5869 struct qla_hw_data
*ha
= vha
->hw
;
5871 if (ha
->flags
.pci_channel_io_perm_failure
)
5873 if (!IS_FWI2_CAPABLE(ha
))
5875 if (!ha
->fw_major_version
)
5878 ret
= qla2x00_stop_firmware(vha
);
5879 for (retries
= 5; ret
!= QLA_SUCCESS
&& ret
!= QLA_FUNCTION_TIMEOUT
&&
5880 ret
!= QLA_INVALID_COMMAND
&& retries
; retries
--) {
5881 ha
->isp_ops
->reset_chip(vha
);
5882 if (ha
->isp_ops
->chip_diag(vha
) != QLA_SUCCESS
)
5884 if (qla2x00_setup_chip(vha
) != QLA_SUCCESS
)
5886 ql_log(ql_log_info
, vha
, 0x8015,
5887 "Attempting retry of stop-firmware command.\n");
5888 ret
= qla2x00_stop_firmware(vha
);
5893 qla24xx_configure_vhba(scsi_qla_host_t
*vha
)
5895 int rval
= QLA_SUCCESS
;
5897 uint16_t mb
[MAILBOX_REGISTER_COUNT
];
5898 struct qla_hw_data
*ha
= vha
->hw
;
5899 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
5900 struct req_que
*req
;
5901 struct rsp_que
*rsp
;
5906 rval
= qla2x00_fw_ready(base_vha
);
5907 if (ha
->flags
.cpu_affinity_enabled
)
5908 req
= ha
->req_q_map
[0];
5913 if (rval
== QLA_SUCCESS
) {
5914 clear_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
5915 qla2x00_marker(vha
, req
, rsp
, 0, 0, MK_SYNC_ALL
);
5918 vha
->flags
.management_server_logged_in
= 0;
5920 /* Login to SNS first */
5921 rval2
= ha
->isp_ops
->fabric_login(vha
, NPH_SNS
, 0xff, 0xff, 0xfc, mb
,
5923 if (rval2
!= QLA_SUCCESS
|| mb
[0] != MBS_COMMAND_COMPLETE
) {
5924 if (rval2
== QLA_MEMORY_ALLOC_FAILED
)
5925 ql_dbg(ql_dbg_init
, vha
, 0x0120,
5926 "Failed SNS login: loop_id=%x, rval2=%d\n",
5929 ql_dbg(ql_dbg_init
, vha
, 0x0103,
5930 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
5931 "mb[2]=%x mb[6]=%x mb[7]=%x.\n",
5932 NPH_SNS
, mb
[0], mb
[1], mb
[2], mb
[6], mb
[7]);
5933 return (QLA_FUNCTION_FAILED
);
5936 atomic_set(&vha
->loop_down_timer
, 0);
5937 atomic_set(&vha
->loop_state
, LOOP_UP
);
5938 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
5939 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
5940 rval
= qla2x00_loop_resync(base_vha
);
5945 /* 84XX Support **************************************************************/
5947 static LIST_HEAD(qla_cs84xx_list
);
5948 static DEFINE_MUTEX(qla_cs84xx_mutex
);
5950 static struct qla_chip_state_84xx
*
5951 qla84xx_get_chip(struct scsi_qla_host
*vha
)
5953 struct qla_chip_state_84xx
*cs84xx
;
5954 struct qla_hw_data
*ha
= vha
->hw
;
5956 mutex_lock(&qla_cs84xx_mutex
);
5958 /* Find any shared 84xx chip. */
5959 list_for_each_entry(cs84xx
, &qla_cs84xx_list
, list
) {
5960 if (cs84xx
->bus
== ha
->pdev
->bus
) {
5961 kref_get(&cs84xx
->kref
);
5966 cs84xx
= kzalloc(sizeof(*cs84xx
), GFP_KERNEL
);
5970 kref_init(&cs84xx
->kref
);
5971 spin_lock_init(&cs84xx
->access_lock
);
5972 mutex_init(&cs84xx
->fw_update_mutex
);
5973 cs84xx
->bus
= ha
->pdev
->bus
;
5975 list_add_tail(&cs84xx
->list
, &qla_cs84xx_list
);
5977 mutex_unlock(&qla_cs84xx_mutex
);
5982 __qla84xx_chip_release(struct kref
*kref
)
5984 struct qla_chip_state_84xx
*cs84xx
=
5985 container_of(kref
, struct qla_chip_state_84xx
, kref
);
5987 mutex_lock(&qla_cs84xx_mutex
);
5988 list_del(&cs84xx
->list
);
5989 mutex_unlock(&qla_cs84xx_mutex
);
5994 qla84xx_put_chip(struct scsi_qla_host
*vha
)
5996 struct qla_hw_data
*ha
= vha
->hw
;
5998 kref_put(&ha
->cs84xx
->kref
, __qla84xx_chip_release
);
6002 qla84xx_init_chip(scsi_qla_host_t
*vha
)
6006 struct qla_hw_data
*ha
= vha
->hw
;
6008 mutex_lock(&ha
->cs84xx
->fw_update_mutex
);
6010 rval
= qla84xx_verify_chip(vha
, status
);
6012 mutex_unlock(&ha
->cs84xx
->fw_update_mutex
);
6014 return rval
!= QLA_SUCCESS
|| status
[0] ? QLA_FUNCTION_FAILED
:
6018 /* 81XX Support **************************************************************/
6021 qla81xx_nvram_config(scsi_qla_host_t
*vha
)
6024 struct init_cb_81xx
*icb
;
6025 struct nvram_81xx
*nv
;
6027 uint8_t *dptr1
, *dptr2
;
6030 struct qla_hw_data
*ha
= vha
->hw
;
6033 icb
= (struct init_cb_81xx
*)ha
->init_cb
;
6036 /* Determine NVRAM starting address. */
6037 ha
->nvram_size
= sizeof(struct nvram_81xx
);
6038 ha
->vpd_size
= FA_NVRAM_VPD_SIZE
;
6039 if (IS_P3P_TYPE(ha
) || IS_QLA8031(ha
))
6040 ha
->vpd_size
= FA_VPD_SIZE_82XX
;
6042 /* Get VPD data into cache */
6043 ha
->vpd
= ha
->nvram
+ VPD_OFFSET
;
6044 ha
->isp_ops
->read_optrom(vha
, ha
->vpd
, ha
->flt_region_vpd
<< 2,
6047 /* Get NVRAM data into cache and calculate checksum. */
6048 ha
->isp_ops
->read_optrom(vha
, ha
->nvram
, ha
->flt_region_nvram
<< 2,
6050 dptr
= (uint32_t *)nv
;
6051 for (cnt
= 0, chksum
= 0; cnt
< ha
->nvram_size
>> 2; cnt
++)
6052 chksum
+= le32_to_cpu(*dptr
++);
6054 ql_dbg(ql_dbg_init
+ ql_dbg_buffer
, vha
, 0x0111,
6055 "Contents of NVRAM:\n");
6056 ql_dump_buffer(ql_dbg_init
+ ql_dbg_buffer
, vha
, 0x0112,
6057 (uint8_t *)nv
, ha
->nvram_size
);
6059 /* Bad NVRAM data, set defaults parameters. */
6060 if (chksum
|| nv
->id
[0] != 'I' || nv
->id
[1] != 'S' || nv
->id
[2] != 'P'
6061 || nv
->id
[3] != ' ' ||
6062 nv
->nvram_version
< cpu_to_le16(ICB_VERSION
)) {
6063 /* Reset NVRAM data. */
6064 ql_log(ql_log_info
, vha
, 0x0073,
6065 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
6066 "version=0x%x.\n", chksum
, nv
->id
[0],
6067 le16_to_cpu(nv
->nvram_version
));
6068 ql_log(ql_log_info
, vha
, 0x0074,
6069 "Falling back to functioning (yet invalid -- WWPN) "
6073 * Set default initialization control block.
6075 memset(nv
, 0, ha
->nvram_size
);
6076 nv
->nvram_version
= cpu_to_le16(ICB_VERSION
);
6077 nv
->version
= cpu_to_le16(ICB_VERSION
);
6078 nv
->frame_payload_size
= 2048;
6079 nv
->execution_throttle
= cpu_to_le16(0xFFFF);
6080 nv
->exchange_count
= cpu_to_le16(0);
6081 nv
->port_name
[0] = 0x21;
6082 nv
->port_name
[1] = 0x00 + ha
->port_no
+ 1;
6083 nv
->port_name
[2] = 0x00;
6084 nv
->port_name
[3] = 0xe0;
6085 nv
->port_name
[4] = 0x8b;
6086 nv
->port_name
[5] = 0x1c;
6087 nv
->port_name
[6] = 0x55;
6088 nv
->port_name
[7] = 0x86;
6089 nv
->node_name
[0] = 0x20;
6090 nv
->node_name
[1] = 0x00;
6091 nv
->node_name
[2] = 0x00;
6092 nv
->node_name
[3] = 0xe0;
6093 nv
->node_name
[4] = 0x8b;
6094 nv
->node_name
[5] = 0x1c;
6095 nv
->node_name
[6] = 0x55;
6096 nv
->node_name
[7] = 0x86;
6097 nv
->login_retry_count
= cpu_to_le16(8);
6098 nv
->interrupt_delay_timer
= cpu_to_le16(0);
6099 nv
->login_timeout
= cpu_to_le16(0);
6100 nv
->firmware_options_1
=
6101 cpu_to_le32(BIT_14
|BIT_13
|BIT_2
|BIT_1
);
6102 nv
->firmware_options_2
= cpu_to_le32(2 << 4);
6103 nv
->firmware_options_2
|= cpu_to_le32(BIT_12
);
6104 nv
->firmware_options_3
= cpu_to_le32(2 << 13);
6105 nv
->host_p
= cpu_to_le32(BIT_11
|BIT_10
);
6106 nv
->efi_parameters
= cpu_to_le32(0);
6107 nv
->reset_delay
= 5;
6108 nv
->max_luns_per_target
= cpu_to_le16(128);
6109 nv
->port_down_retry_count
= cpu_to_le16(30);
6110 nv
->link_down_timeout
= cpu_to_le16(180);
6111 nv
->enode_mac
[0] = 0x00;
6112 nv
->enode_mac
[1] = 0xC0;
6113 nv
->enode_mac
[2] = 0xDD;
6114 nv
->enode_mac
[3] = 0x04;
6115 nv
->enode_mac
[4] = 0x05;
6116 nv
->enode_mac
[5] = 0x06 + ha
->port_no
+ 1;
6121 if (IS_T10_PI_CAPABLE(ha
))
6122 nv
->frame_payload_size
&= ~7;
6124 qlt_81xx_config_nvram_stage1(vha
, nv
);
6126 /* Reset Initialization control block */
6127 memset(icb
, 0, ha
->init_cb_size
);
6129 /* Copy 1st segment. */
6130 dptr1
= (uint8_t *)icb
;
6131 dptr2
= (uint8_t *)&nv
->version
;
6132 cnt
= (uint8_t *)&icb
->response_q_inpointer
- (uint8_t *)&icb
->version
;
6134 *dptr1
++ = *dptr2
++;
6136 icb
->login_retry_count
= nv
->login_retry_count
;
6138 /* Copy 2nd segment. */
6139 dptr1
= (uint8_t *)&icb
->interrupt_delay_timer
;
6140 dptr2
= (uint8_t *)&nv
->interrupt_delay_timer
;
6141 cnt
= (uint8_t *)&icb
->reserved_5
-
6142 (uint8_t *)&icb
->interrupt_delay_timer
;
6144 *dptr1
++ = *dptr2
++;
6146 memcpy(icb
->enode_mac
, nv
->enode_mac
, sizeof(icb
->enode_mac
));
6147 /* Some boards (with valid NVRAMs) still have NULL enode_mac!! */
6148 if (!memcmp(icb
->enode_mac
, "\0\0\0\0\0\0", sizeof(icb
->enode_mac
))) {
6149 icb
->enode_mac
[0] = 0x00;
6150 icb
->enode_mac
[1] = 0xC0;
6151 icb
->enode_mac
[2] = 0xDD;
6152 icb
->enode_mac
[3] = 0x04;
6153 icb
->enode_mac
[4] = 0x05;
6154 icb
->enode_mac
[5] = 0x06 + ha
->port_no
+ 1;
6157 /* Use extended-initialization control block. */
6158 memcpy(ha
->ex_init_cb
, &nv
->ex_version
, sizeof(*ha
->ex_init_cb
));
6161 * Setup driver NVRAM options.
6163 qla2x00_set_model_info(vha
, nv
->model_name
, sizeof(nv
->model_name
),
6166 qlt_81xx_config_nvram_stage2(vha
, icb
);
6168 /* Use alternate WWN? */
6169 if (nv
->host_p
& cpu_to_le32(BIT_15
)) {
6170 memcpy(icb
->node_name
, nv
->alternate_node_name
, WWN_SIZE
);
6171 memcpy(icb
->port_name
, nv
->alternate_port_name
, WWN_SIZE
);
6174 /* Prepare nodename */
6175 if ((icb
->firmware_options_1
& cpu_to_le32(BIT_14
)) == 0) {
6177 * Firmware will apply the following mask if the nodename was
6180 memcpy(icb
->node_name
, icb
->port_name
, WWN_SIZE
);
6181 icb
->node_name
[0] &= 0xF0;
6184 /* Set host adapter parameters. */
6185 ha
->flags
.disable_risc_code_load
= 0;
6186 ha
->flags
.enable_lip_reset
= 0;
6187 ha
->flags
.enable_lip_full_login
=
6188 le32_to_cpu(nv
->host_p
) & BIT_10
? 1: 0;
6189 ha
->flags
.enable_target_reset
=
6190 le32_to_cpu(nv
->host_p
) & BIT_11
? 1: 0;
6191 ha
->flags
.enable_led_scheme
= 0;
6192 ha
->flags
.disable_serdes
= le32_to_cpu(nv
->host_p
) & BIT_5
? 1: 0;
6194 ha
->operating_mode
= (le32_to_cpu(icb
->firmware_options_2
) &
6195 (BIT_6
| BIT_5
| BIT_4
)) >> 4;
6197 /* save HBA serial number */
6198 ha
->serial0
= icb
->port_name
[5];
6199 ha
->serial1
= icb
->port_name
[6];
6200 ha
->serial2
= icb
->port_name
[7];
6201 memcpy(vha
->node_name
, icb
->node_name
, WWN_SIZE
);
6202 memcpy(vha
->port_name
, icb
->port_name
, WWN_SIZE
);
6204 icb
->execution_throttle
= cpu_to_le16(0xFFFF);
6206 ha
->retry_count
= le16_to_cpu(nv
->login_retry_count
);
6208 /* Set minimum login_timeout to 4 seconds. */
6209 if (le16_to_cpu(nv
->login_timeout
) < ql2xlogintimeout
)
6210 nv
->login_timeout
= cpu_to_le16(ql2xlogintimeout
);
6211 if (le16_to_cpu(nv
->login_timeout
) < 4)
6212 nv
->login_timeout
= cpu_to_le16(4);
6213 ha
->login_timeout
= le16_to_cpu(nv
->login_timeout
);
6214 icb
->login_timeout
= nv
->login_timeout
;
6216 /* Set minimum RATOV to 100 tenths of a second. */
6219 ha
->loop_reset_delay
= nv
->reset_delay
;
6221 /* Link Down Timeout = 0:
6223 * When Port Down timer expires we will start returning
6224 * I/O's to OS with "DID_NO_CONNECT".
6226 * Link Down Timeout != 0:
6228 * The driver waits for the link to come up after link down
6229 * before returning I/Os to OS with "DID_NO_CONNECT".
6231 if (le16_to_cpu(nv
->link_down_timeout
) == 0) {
6232 ha
->loop_down_abort_time
=
6233 (LOOP_DOWN_TIME
- LOOP_DOWN_TIMEOUT
);
6235 ha
->link_down_timeout
= le16_to_cpu(nv
->link_down_timeout
);
6236 ha
->loop_down_abort_time
=
6237 (LOOP_DOWN_TIME
- ha
->link_down_timeout
);
6240 /* Need enough time to try and get the port back. */
6241 ha
->port_down_retry_count
= le16_to_cpu(nv
->port_down_retry_count
);
6242 if (qlport_down_retry
)
6243 ha
->port_down_retry_count
= qlport_down_retry
;
6245 /* Set login_retry_count */
6246 ha
->login_retry_count
= le16_to_cpu(nv
->login_retry_count
);
6247 if (ha
->port_down_retry_count
==
6248 le16_to_cpu(nv
->port_down_retry_count
) &&
6249 ha
->port_down_retry_count
> 3)
6250 ha
->login_retry_count
= ha
->port_down_retry_count
;
6251 else if (ha
->port_down_retry_count
> (int)ha
->login_retry_count
)
6252 ha
->login_retry_count
= ha
->port_down_retry_count
;
6253 if (ql2xloginretrycount
)
6254 ha
->login_retry_count
= ql2xloginretrycount
;
6256 /* if not running MSI-X we need handshaking on interrupts */
6257 if (!vha
->hw
->flags
.msix_enabled
&& (IS_QLA83XX(ha
) || IS_QLA27XX(ha
)))
6258 icb
->firmware_options_2
|= cpu_to_le32(BIT_22
);
6261 if (!vha
->flags
.init_done
) {
6262 ha
->zio_mode
= le32_to_cpu(icb
->firmware_options_2
) &
6263 (BIT_3
| BIT_2
| BIT_1
| BIT_0
);
6264 ha
->zio_timer
= le16_to_cpu(icb
->interrupt_delay_timer
) ?
6265 le16_to_cpu(icb
->interrupt_delay_timer
): 2;
6267 icb
->firmware_options_2
&= cpu_to_le32(
6268 ~(BIT_3
| BIT_2
| BIT_1
| BIT_0
));
6269 vha
->flags
.process_response_queue
= 0;
6270 if (ha
->zio_mode
!= QLA_ZIO_DISABLED
) {
6271 ha
->zio_mode
= QLA_ZIO_MODE_6
;
6273 ql_log(ql_log_info
, vha
, 0x0075,
6274 "ZIO mode %d enabled; timer delay (%d us).\n",
6276 ha
->zio_timer
* 100);
6278 icb
->firmware_options_2
|= cpu_to_le32(
6279 (uint32_t)ha
->zio_mode
);
6280 icb
->interrupt_delay_timer
= cpu_to_le16(ha
->zio_timer
);
6281 vha
->flags
.process_response_queue
= 1;
6285 ql_log(ql_log_warn
, vha
, 0x0076,
6286 "NVRAM configuration failed.\n");
6292 qla82xx_restart_isp(scsi_qla_host_t
*vha
)
6295 struct qla_hw_data
*ha
= vha
->hw
;
6296 struct req_que
*req
= ha
->req_q_map
[0];
6297 struct rsp_que
*rsp
= ha
->rsp_q_map
[0];
6298 struct scsi_qla_host
*vp
;
6299 unsigned long flags
;
6301 status
= qla2x00_init_rings(vha
);
6303 clear_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
6304 ha
->flags
.chip_reset_done
= 1;
6306 status
= qla2x00_fw_ready(vha
);
6308 /* Issue a marker after FW becomes ready. */
6309 qla2x00_marker(vha
, req
, rsp
, 0, 0, MK_SYNC_ALL
);
6310 vha
->flags
.online
= 1;
6311 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
6314 /* if no cable then assume it's good */
6315 if ((vha
->device_flags
& DFLG_NO_CABLE
))
6320 clear_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
6322 if (!atomic_read(&vha
->loop_down_timer
)) {
6324 * Issue marker command only when we are going
6325 * to start the I/O .
6327 vha
->marker_needed
= 1;
6330 ha
->isp_ops
->enable_intrs(ha
);
6332 ha
->isp_abort_cnt
= 0;
6333 clear_bit(ISP_ABORT_RETRY
, &vha
->dpc_flags
);
6335 /* Update the firmware version */
6336 status
= qla82xx_check_md_needed(vha
);
6339 ha
->flags
.fce_enabled
= 1;
6341 fce_calc_size(ha
->fce_bufs
));
6342 rval
= qla2x00_enable_fce_trace(vha
,
6343 ha
->fce_dma
, ha
->fce_bufs
, ha
->fce_mb
,
6346 ql_log(ql_log_warn
, vha
, 0x8001,
6347 "Unable to reinitialize FCE (%d).\n",
6349 ha
->flags
.fce_enabled
= 0;
6354 memset(ha
->eft
, 0, EFT_SIZE
);
6355 rval
= qla2x00_enable_eft_trace(vha
,
6356 ha
->eft_dma
, EFT_NUM_BUFFERS
);
6358 ql_log(ql_log_warn
, vha
, 0x8010,
6359 "Unable to reinitialize EFT (%d).\n",
6366 ql_dbg(ql_dbg_taskm
, vha
, 0x8011,
6367 "qla82xx_restart_isp succeeded.\n");
6369 spin_lock_irqsave(&ha
->vport_slock
, flags
);
6370 list_for_each_entry(vp
, &ha
->vp_list
, list
) {
6372 atomic_inc(&vp
->vref_count
);
6373 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
6375 qla2x00_vp_abort_isp(vp
);
6377 spin_lock_irqsave(&ha
->vport_slock
, flags
);
6378 atomic_dec(&vp
->vref_count
);
6381 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
6384 ql_log(ql_log_warn
, vha
, 0x8016,
6385 "qla82xx_restart_isp **** FAILED ****.\n");
6392 qla81xx_update_fw_options(scsi_qla_host_t
*vha
)
6394 struct qla_hw_data
*ha
= vha
->hw
;
6399 /* Enable ETS Burst. */
6400 memset(ha
->fw_options
, 0, sizeof(ha
->fw_options
));
6401 ha
->fw_options
[2] |= BIT_9
;
6402 qla2x00_set_fw_options(vha
, ha
->fw_options
);
6406 * qla24xx_get_fcp_prio
6407 * Gets the fcp cmd priority value for the logged in port.
6408 * Looks for a match of the port descriptors within
6409 * each of the fcp prio config entries. If a match is found,
6410 * the tag (priority) value is returned.
6413 * vha = scsi host structure pointer.
6414 * fcport = port structure pointer.
6417 * non-zero (if found)
6424 qla24xx_get_fcp_prio(scsi_qla_host_t
*vha
, fc_port_t
*fcport
)
6427 uint8_t pid_match
, wwn_match
;
6429 uint32_t pid1
, pid2
;
6430 uint64_t wwn1
, wwn2
;
6431 struct qla_fcp_prio_entry
*pri_entry
;
6432 struct qla_hw_data
*ha
= vha
->hw
;
6434 if (!ha
->fcp_prio_cfg
|| !ha
->flags
.fcp_prio_enabled
)
6438 entries
= ha
->fcp_prio_cfg
->num_entries
;
6439 pri_entry
= &ha
->fcp_prio_cfg
->entry
[0];
6441 for (i
= 0; i
< entries
; i
++) {
6442 pid_match
= wwn_match
= 0;
6444 if (!(pri_entry
->flags
& FCP_PRIO_ENTRY_VALID
)) {
6449 /* check source pid for a match */
6450 if (pri_entry
->flags
& FCP_PRIO_ENTRY_SPID_VALID
) {
6451 pid1
= pri_entry
->src_pid
& INVALID_PORT_ID
;
6452 pid2
= vha
->d_id
.b24
& INVALID_PORT_ID
;
6453 if (pid1
== INVALID_PORT_ID
)
6455 else if (pid1
== pid2
)
6459 /* check destination pid for a match */
6460 if (pri_entry
->flags
& FCP_PRIO_ENTRY_DPID_VALID
) {
6461 pid1
= pri_entry
->dst_pid
& INVALID_PORT_ID
;
6462 pid2
= fcport
->d_id
.b24
& INVALID_PORT_ID
;
6463 if (pid1
== INVALID_PORT_ID
)
6465 else if (pid1
== pid2
)
6469 /* check source WWN for a match */
6470 if (pri_entry
->flags
& FCP_PRIO_ENTRY_SWWN_VALID
) {
6471 wwn1
= wwn_to_u64(vha
->port_name
);
6472 wwn2
= wwn_to_u64(pri_entry
->src_wwpn
);
6473 if (wwn2
== (uint64_t)-1)
6475 else if (wwn1
== wwn2
)
6479 /* check destination WWN for a match */
6480 if (pri_entry
->flags
& FCP_PRIO_ENTRY_DWWN_VALID
) {
6481 wwn1
= wwn_to_u64(fcport
->port_name
);
6482 wwn2
= wwn_to_u64(pri_entry
->dst_wwpn
);
6483 if (wwn2
== (uint64_t)-1)
6485 else if (wwn1
== wwn2
)
6489 if (pid_match
== 2 || wwn_match
== 2) {
6490 /* Found a matching entry */
6491 if (pri_entry
->flags
& FCP_PRIO_ENTRY_TAG_VALID
)
6492 priority
= pri_entry
->tag
;
6503 * qla24xx_update_fcport_fcp_prio
6504 * Activates fcp priority for the logged in fc port
6507 * vha = scsi host structure pointer.
6508 * fcp = port structure pointer.
6511 * QLA_SUCCESS or QLA_FUNCTION_FAILED
6517 qla24xx_update_fcport_fcp_prio(scsi_qla_host_t
*vha
, fc_port_t
*fcport
)
6523 if (fcport
->port_type
!= FCT_TARGET
||
6524 fcport
->loop_id
== FC_NO_LOOP_ID
)
6525 return QLA_FUNCTION_FAILED
;
6527 priority
= qla24xx_get_fcp_prio(vha
, fcport
);
6529 return QLA_FUNCTION_FAILED
;
6531 if (IS_P3P_TYPE(vha
->hw
)) {
6532 fcport
->fcp_prio
= priority
& 0xf;
6536 ret
= qla24xx_set_fcp_prio(vha
, fcport
->loop_id
, priority
, mb
);
6537 if (ret
== QLA_SUCCESS
) {
6538 if (fcport
->fcp_prio
!= priority
)
6539 ql_dbg(ql_dbg_user
, vha
, 0x709e,
6540 "Updated FCP_CMND priority - value=%d loop_id=%d "
6541 "port_id=%02x%02x%02x.\n", priority
,
6542 fcport
->loop_id
, fcport
->d_id
.b
.domain
,
6543 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
6544 fcport
->fcp_prio
= priority
& 0xf;
6546 ql_dbg(ql_dbg_user
, vha
, 0x704f,
6547 "Unable to update FCP_CMND priority - ret=0x%x for "
6548 "loop_id=%d port_id=%02x%02x%02x.\n", ret
, fcport
->loop_id
,
6549 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
6550 fcport
->d_id
.b
.al_pa
);
6555 * qla24xx_update_all_fcp_prio
6556 * Activates fcp priority for all the logged in ports
6559 * ha = adapter block pointer.
6562 * QLA_SUCCESS or QLA_FUNCTION_FAILED
6568 qla24xx_update_all_fcp_prio(scsi_qla_host_t
*vha
)
6573 ret
= QLA_FUNCTION_FAILED
;
6574 /* We need to set priority for all logged in ports */
6575 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
)
6576 ret
= qla24xx_update_fcport_fcp_prio(vha
, fcport
);