blob: f65431480833bed6edfaeeff4080c8cd87979754 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Armen Baloyanbd21eaf2014-04-11 16:54:24 -04003 * Copyright (c) 2003-2014 QLogic Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7#include "qla_def.h"
Anirban Chakraborty73208df2008-12-09 16:45:39 -08008#include "qla_gbl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Andrew Vasquez0107109e2005-07-06 10:31:37 -070012#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include "qla_devtbl.h"
15
David Miller4e08df32007-04-16 12:37:43 -070016#ifdef CONFIG_SPARC
17#include <asm/prom.h>
David Miller4e08df32007-04-16 12:37:43 -070018#endif
19
Nicholas Bellinger2d70c102012-05-15 14:34:28 -040020#include <target/target_core_base.h>
21#include "qla_target.h"
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24* QLogic ISP2x00 Hardware Support Function Prototypes.
25*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static int qla2x00_isp_firmware(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static int qla2x00_setup_chip(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static int qla2x00_fw_ready(scsi_qla_host_t *);
29static int qla2x00_configure_hba(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static int qla2x00_configure_loop(scsi_qla_host_t *);
31static int qla2x00_configure_local_loop(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static int qla2x00_configure_fabric(scsi_qla_host_t *);
Quinn Tran726b8542017-01-19 22:28:00 -080033static int qla2x00_find_all_fabric_devs(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static int qla2x00_restart_isp(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Harihara Kadayam4d4df192008-04-03 13:13:26 -070036static struct qla_chip_state_84xx *qla84xx_get_chip(struct scsi_qla_host *);
37static int qla84xx_init_chip(scsi_qla_host_t *);
Anirban Chakraborty73208df2008-12-09 16:45:39 -080038static int qla25xx_init_queues(struct qla_hw_data *);
Quinn Tran726b8542017-01-19 22:28:00 -080039static int qla24xx_post_gpdb_work(struct scsi_qla_host *, fc_port_t *, u8);
40static void qla24xx_handle_plogi_done_event(struct scsi_qla_host *,
41 struct event_arg *);
Harihara Kadayam4d4df192008-04-03 13:13:26 -070042
Andrew Vasquezac280b62009-08-20 11:06:05 -070043/* SRB Extensions ---------------------------------------------------------- */
44
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080045void
46qla2x00_sp_timeout(unsigned long __data)
Andrew Vasquezac280b62009-08-20 11:06:05 -070047{
48 srb_t *sp = (srb_t *)__data;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070049 struct srb_iocb *iocb;
Joe Carnuccio25ff6af2017-01-19 22:28:04 -080050 scsi_qla_host_t *vha = sp->vha;
Andrew Vasquezac280b62009-08-20 11:06:05 -070051 struct req_que *req;
52 unsigned long flags;
53
Joe Carnuccio25ff6af2017-01-19 22:28:04 -080054 spin_lock_irqsave(&vha->hw->hardware_lock, flags);
55 req = vha->hw->req_q_map[0];
Andrew Vasquezac280b62009-08-20 11:06:05 -070056 req->outstanding_cmds[sp->handle] = NULL;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080057 iocb = &sp->u.iocb_cmd;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070058 iocb->timeout(sp);
Joe Carnuccio25ff6af2017-01-19 22:28:04 -080059 sp->free(sp);
60 spin_unlock_irqrestore(&vha->hw->hardware_lock, flags);
Andrew Vasquezac280b62009-08-20 11:06:05 -070061}
62
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080063void
Joe Carnuccio25ff6af2017-01-19 22:28:04 -080064qla2x00_sp_free(void *ptr)
Andrew Vasquezac280b62009-08-20 11:06:05 -070065{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -080066 srb_t *sp = ptr;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080067 struct srb_iocb *iocb = &sp->u.iocb_cmd;
Andrew Vasquezac280b62009-08-20 11:06:05 -070068
Chad Dupuis4d97cc52010-10-15 11:27:41 -070069 del_timer(&iocb->timer);
Joe Carnuccio25ff6af2017-01-19 22:28:04 -080070 qla2x00_rel_sp(sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -070071}
72
Andrew Vasquezac280b62009-08-20 11:06:05 -070073/* Asynchronous Login/Logout Routines -------------------------------------- */
74
Saurav Kashyapa9b6f722012-08-22 14:21:01 -040075unsigned long
Andrew Vasquez5b914902010-05-28 15:08:30 -070076qla2x00_get_async_timeout(struct scsi_qla_host *vha)
77{
78 unsigned long tmo;
79 struct qla_hw_data *ha = vha->hw;
80
81 /* Firmware should use switch negotiated r_a_tov for timeout. */
82 tmo = ha->r_a_tov / 10 * 2;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -040083 if (IS_QLAFX00(ha)) {
84 tmo = FX00_DEF_RATOV * 2;
85 } else if (!IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez5b914902010-05-28 15:08:30 -070086 /*
87 * Except for earlier ISPs where the timeout is seeded from the
88 * initialization control block.
89 */
90 tmo = ha->login_timeout;
91 }
92 return tmo;
93}
Andrew Vasquezac280b62009-08-20 11:06:05 -070094
Quinn Tran726b8542017-01-19 22:28:00 -080095void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080096qla2x00_async_iocb_timeout(void *data)
Andrew Vasquezac280b62009-08-20 11:06:05 -070097{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -080098 srb_t *sp = data;
Andrew Vasquezac280b62009-08-20 11:06:05 -070099 fc_port_t *fcport = sp->fcport;
Quinn Tran726b8542017-01-19 22:28:00 -0800100 struct srb_iocb *lio = &sp->u.iocb_cmd;
101 struct event_arg ea;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700102
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700103 ql_dbg(ql_dbg_disc, fcport->vha, 0x2071,
Quinn Tran726b8542017-01-19 22:28:00 -0800104 "Async-%s timeout - hdl=%x portid=%06x %8phC.\n",
105 sp->name, sp->handle, fcport->d_id.b24, fcport->port_name);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700106
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700107 fcport->flags &= ~FCF_ASYNC_SENT;
Quinn Tran726b8542017-01-19 22:28:00 -0800108
109 switch (sp->type) {
110 case SRB_LOGIN_CMD:
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700111 /* Retry as needed. */
112 lio->u.logio.data[0] = MBS_COMMAND_ERROR;
113 lio->u.logio.data[1] = lio->u.logio.flags & SRB_LOGIN_RETRIED ?
114 QLA_LOGIO_LOGIN_RETRIED : 0;
Quinn Tran726b8542017-01-19 22:28:00 -0800115 memset(&ea, 0, sizeof(ea));
116 ea.event = FCME_PLOGI_DONE;
117 ea.fcport = sp->fcport;
118 ea.data[0] = lio->u.logio.data[0];
119 ea.data[1] = lio->u.logio.data[1];
120 ea.sp = sp;
121 qla24xx_handle_plogi_done_event(fcport->vha, &ea);
122 break;
123 case SRB_LOGOUT_CMD:
Alexei Potashnika6ca8872015-07-14 16:00:44 -0400124 qlt_logo_completion_handler(fcport, QLA_FUNCTION_TIMEOUT);
Quinn Tran726b8542017-01-19 22:28:00 -0800125 break;
126 case SRB_CT_PTHRU_CMD:
127 case SRB_MB_IOCB:
128 case SRB_NACK_PLOGI:
129 case SRB_NACK_PRLI:
130 case SRB_NACK_LOGO:
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800131 sp->done(sp, QLA_FUNCTION_TIMEOUT);
Quinn Tran726b8542017-01-19 22:28:00 -0800132 break;
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700133 }
Andrew Vasquezac280b62009-08-20 11:06:05 -0700134}
135
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700136static void
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800137qla2x00_async_login_sp_done(void *ptr, int res)
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700138{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800139 srb_t *sp = ptr;
140 struct scsi_qla_host *vha = sp->vha;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800141 struct srb_iocb *lio = &sp->u.iocb_cmd;
Quinn Tran726b8542017-01-19 22:28:00 -0800142 struct event_arg ea;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700143
Quinn Tran726b8542017-01-19 22:28:00 -0800144 ql_dbg(ql_dbg_disc, vha, 0xffff,
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800145 "%s %8phC res %d \n", __func__, sp->fcport->port_name, res);
Quinn Tran726b8542017-01-19 22:28:00 -0800146
147 sp->fcport->flags &= ~FCF_ASYNC_SENT;
148 if (!test_bit(UNLOADING, &vha->dpc_flags)) {
149 memset(&ea, 0, sizeof(ea));
150 ea.event = FCME_PLOGI_DONE;
151 ea.fcport = sp->fcport;
152 ea.data[0] = lio->u.logio.data[0];
153 ea.data[1] = lio->u.logio.data[1];
154 ea.iop[0] = lio->u.logio.iop[0];
155 ea.iop[1] = lio->u.logio.iop[1];
156 ea.sp = sp;
157 qla2x00_fcport_event_handler(vha, &ea);
158 }
159
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800160 sp->free(sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700161}
162
Andrew Vasquezac280b62009-08-20 11:06:05 -0700163int
164qla2x00_async_login(struct scsi_qla_host *vha, fc_port_t *fcport,
165 uint16_t *data)
166{
Andrew Vasquezac280b62009-08-20 11:06:05 -0700167 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700168 struct srb_iocb *lio;
Quinn Tran726b8542017-01-19 22:28:00 -0800169 int rval = QLA_FUNCTION_FAILED;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700170
Quinn Tran726b8542017-01-19 22:28:00 -0800171 if (!vha->flags.online)
172 goto done;
173
174 if ((fcport->fw_login_state == DSC_LS_PLOGI_PEND) ||
175 (fcport->fw_login_state == DSC_LS_PLOGI_COMP) ||
176 (fcport->fw_login_state == DSC_LS_PRLI_PEND))
177 goto done;
178
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800179 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700180 if (!sp)
181 goto done;
182
Quinn Tran726b8542017-01-19 22:28:00 -0800183 fcport->flags |= FCF_ASYNC_SENT;
184 fcport->logout_completed = 0;
185
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800186 sp->type = SRB_LOGIN_CMD;
187 sp->name = "login";
188 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
189
190 lio = &sp->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700191 lio->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800192 sp->done = qla2x00_async_login_sp_done;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700193 lio->u.logio.flags |= SRB_LOGIN_COND_PLOGI;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700194 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700195 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700196 rval = qla2x00_start_sp(sp);
Chad Dupuis080c9512016-01-27 12:03:37 -0500197 if (rval != QLA_SUCCESS) {
198 fcport->flags &= ~FCF_ASYNC_SENT;
199 fcport->flags |= FCF_LOGIN_NEEDED;
200 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700201 goto done_free_sp;
Chad Dupuis080c9512016-01-27 12:03:37 -0500202 }
Andrew Vasquezac280b62009-08-20 11:06:05 -0700203
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700204 ql_dbg(ql_dbg_disc, vha, 0x2072,
Quinn Tran726b8542017-01-19 22:28:00 -0800205 "Async-login - %8phC hdl=%x, loopid=%x portid=%02x%02x%02x "
206 "retries=%d.\n", fcport->port_name, sp->handle, fcport->loop_id,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800207 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa,
208 fcport->login_retry);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700209 return rval;
210
211done_free_sp:
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800212 sp->free(sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700213done:
Quinn Tran726b8542017-01-19 22:28:00 -0800214 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700215 return rval;
216}
217
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700218static void
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800219qla2x00_async_logout_sp_done(void *ptr, int res)
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700220{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800221 srb_t *sp = ptr;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800222 struct srb_iocb *lio = &sp->u.iocb_cmd;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700223
Quinn Tran726b8542017-01-19 22:28:00 -0800224 sp->fcport->flags &= ~FCF_ASYNC_SENT;
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800225 if (!test_bit(UNLOADING, &sp->vha->dpc_flags))
226 qla2x00_post_async_logout_done_work(sp->vha, sp->fcport,
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800227 lio->u.logio.data);
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800228 sp->free(sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700229}
230
Andrew Vasquezac280b62009-08-20 11:06:05 -0700231int
232qla2x00_async_logout(struct scsi_qla_host *vha, fc_port_t *fcport)
233{
Andrew Vasquezac280b62009-08-20 11:06:05 -0700234 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700235 struct srb_iocb *lio;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700236 int rval;
237
238 rval = QLA_FUNCTION_FAILED;
Quinn Tran726b8542017-01-19 22:28:00 -0800239 fcport->flags |= FCF_ASYNC_SENT;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800240 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700241 if (!sp)
242 goto done;
243
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800244 sp->type = SRB_LOGOUT_CMD;
245 sp->name = "logout";
246 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
247
248 lio = &sp->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700249 lio->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800250 sp->done = qla2x00_async_logout_sp_done;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700251 rval = qla2x00_start_sp(sp);
252 if (rval != QLA_SUCCESS)
253 goto done_free_sp;
254
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700255 ql_dbg(ql_dbg_disc, vha, 0x2070,
Quinn Tran726b8542017-01-19 22:28:00 -0800256 "Async-logout - hdl=%x loop-id=%x portid=%02x%02x%02x %8phC.\n",
Chad Dupuiscfb09192011-11-18 09:03:07 -0800257 sp->handle, fcport->loop_id, fcport->d_id.b.domain,
Quinn Tran726b8542017-01-19 22:28:00 -0800258 fcport->d_id.b.area, fcport->d_id.b.al_pa,
259 fcport->port_name);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700260 return rval;
261
262done_free_sp:
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800263 sp->free(sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700264done:
Quinn Tran726b8542017-01-19 22:28:00 -0800265 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700266 return rval;
267}
268
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700269static void
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800270qla2x00_async_adisc_sp_done(void *ptr, int res)
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700271{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800272 srb_t *sp = ptr;
273 struct scsi_qla_host *vha = sp->vha;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800274 struct srb_iocb *lio = &sp->u.iocb_cmd;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700275
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800276 if (!test_bit(UNLOADING, &vha->dpc_flags))
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800277 qla2x00_post_async_adisc_done_work(sp->vha, sp->fcport,
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800278 lio->u.logio.data);
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800279 sp->free(sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700280}
281
282int
283qla2x00_async_adisc(struct scsi_qla_host *vha, fc_port_t *fcport,
284 uint16_t *data)
285{
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700286 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700287 struct srb_iocb *lio;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700288 int rval;
289
290 rval = QLA_FUNCTION_FAILED;
Quinn Tran726b8542017-01-19 22:28:00 -0800291 fcport->flags |= FCF_ASYNC_SENT;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800292 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700293 if (!sp)
294 goto done;
295
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800296 sp->type = SRB_ADISC_CMD;
297 sp->name = "adisc";
298 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
299
300 lio = &sp->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700301 lio->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800302 sp->done = qla2x00_async_adisc_sp_done;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700303 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700304 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700305 rval = qla2x00_start_sp(sp);
306 if (rval != QLA_SUCCESS)
307 goto done_free_sp;
308
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700309 ql_dbg(ql_dbg_disc, vha, 0x206f,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800310 "Async-adisc - hdl=%x loopid=%x portid=%02x%02x%02x.\n",
311 sp->handle, fcport->loop_id, fcport->d_id.b.domain,
312 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700313 return rval;
314
315done_free_sp:
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800316 sp->free(sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700317done:
Quinn Tran726b8542017-01-19 22:28:00 -0800318 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700319 return rval;
320}
321
Quinn Tran726b8542017-01-19 22:28:00 -0800322static void qla24xx_handle_gnl_done_event(scsi_qla_host_t *vha,
323 struct event_arg *ea)
324{
325 fc_port_t *fcport, *conflict_fcport;
326 struct get_name_list_extended *e;
327 u16 i, n, found = 0, loop_id;
328 port_id_t id;
329 u64 wwn;
330 u8 opt = 0;
331
332 fcport = ea->fcport;
333
334 if (ea->rc) { /* rval */
335 if (fcport->login_retry == 0) {
336 fcport->login_retry = vha->hw->login_retry_count;
337 ql_dbg(ql_dbg_disc, vha, 0xffff,
338 "GNL failed Port login retry %8phN, retry cnt=%d.\n",
339 fcport->port_name, fcport->login_retry);
340 }
341 return;
342 }
343
344 if (fcport->last_rscn_gen != fcport->rscn_gen) {
345 ql_dbg(ql_dbg_disc, vha, 0xffff,
346 "%s %8phC rscn gen changed rscn %d|%d \n",
347 __func__, fcport->port_name,
348 fcport->last_rscn_gen, fcport->rscn_gen);
349 qla24xx_post_gidpn_work(vha, fcport);
350 return;
351 } else if (fcport->last_login_gen != fcport->login_gen) {
352 ql_dbg(ql_dbg_disc, vha, 0xffff,
353 "%s %8phC login gen changed login %d|%d \n",
354 __func__, fcport->port_name,
355 fcport->last_login_gen, fcport->login_gen);
356 return;
357 }
358
359 n = ea->data[0] / sizeof(struct get_name_list_extended);
360
361 ql_dbg(ql_dbg_disc, vha, 0xffff,
362 "%s %d %8phC n %d %02x%02x%02x lid %d \n",
363 __func__, __LINE__, fcport->port_name, n,
364 fcport->d_id.b.domain, fcport->d_id.b.area,
365 fcport->d_id.b.al_pa, fcport->loop_id);
366
367 for (i = 0; i < n; i++) {
368 e = &vha->gnl.l[i];
369 wwn = wwn_to_u64(e->port_name);
370
371 if (memcmp((u8 *)&wwn, fcport->port_name, WWN_SIZE))
372 continue;
373
374 found = 1;
375 id.b.domain = e->port_id[2];
376 id.b.area = e->port_id[1];
377 id.b.al_pa = e->port_id[0];
378 id.b.rsvd_1 = 0;
379
380 loop_id = le16_to_cpu(e->nport_handle);
381 loop_id = (loop_id & 0x7fff);
382
383 ql_dbg(ql_dbg_disc, vha, 0xffff,
384 "%s found %8phC CLS [%d|%d] ID[%02x%02x%02x|%02x%02x%02x] lid[%d|%d]\n",
385 __func__, fcport->port_name,
386 e->current_login_state, fcport->fw_login_state,
387 id.b.domain, id.b.area, id.b.al_pa,
388 fcport->d_id.b.domain, fcport->d_id.b.area,
389 fcport->d_id.b.al_pa, loop_id, fcport->loop_id);
390
391 if ((id.b24 != fcport->d_id.b24) ||
392 ((fcport->loop_id != FC_NO_LOOP_ID) &&
393 (fcport->loop_id != loop_id))) {
394 ql_dbg(ql_dbg_disc, vha, 0xffff,
395 "%s %d %8phC post del sess\n",
396 __func__, __LINE__, fcport->port_name);
397 qlt_schedule_sess_for_deletion(fcport, 1);
398 return;
399 }
400
401 fcport->loop_id = loop_id;
402
403 wwn = wwn_to_u64(fcport->port_name);
404 qlt_find_sess_invalidate_other(vha, wwn,
405 id, loop_id, &conflict_fcport);
406
407 if (conflict_fcport) {
408 /*
409 * Another share fcport share the same loop_id &
410 * nport id. Conflict fcport needs to finish
411 * cleanup before this fcport can proceed to login.
412 */
413 conflict_fcport->conflict = fcport;
414 fcport->login_pause = 1;
415 }
416
417 switch (e->current_login_state) {
418 case DSC_LS_PRLI_COMP:
419 ql_dbg(ql_dbg_disc, vha, 0xffff,
420 "%s %d %8phC post gpdb\n",
421 __func__, __LINE__, fcport->port_name);
422 opt = PDO_FORCE_ADISC;
423 qla24xx_post_gpdb_work(vha, fcport, opt);
424 break;
425
426 case DSC_LS_PORT_UNAVAIL:
427 default:
428 if (fcport->loop_id == FC_NO_LOOP_ID) {
429 qla2x00_find_new_loop_id(vha, fcport);
430 fcport->fw_login_state = DSC_LS_PORT_UNAVAIL;
431 }
432 ql_dbg(ql_dbg_disc, vha, 0xffff,
433 "%s %d %8phC \n",
434 __func__, __LINE__, fcport->port_name);
435 qla24xx_fcport_handle_login(vha, fcport);
436 break;
437 }
438 }
439
440 if (!found) {
441 /* fw has no record of this port */
442 if (fcport->loop_id == FC_NO_LOOP_ID) {
443 qla2x00_find_new_loop_id(vha, fcport);
444 fcport->fw_login_state = DSC_LS_PORT_UNAVAIL;
445 } else {
446 for (i = 0; i < n; i++) {
447 e = &vha->gnl.l[i];
448 id.b.domain = e->port_id[0];
449 id.b.area = e->port_id[1];
450 id.b.al_pa = e->port_id[2];
451 id.b.rsvd_1 = 0;
452 loop_id = le16_to_cpu(e->nport_handle);
453
454 if (fcport->d_id.b24 == id.b24) {
455 conflict_fcport =
456 qla2x00_find_fcport_by_wwpn(vha,
457 e->port_name, 0);
458
459 ql_dbg(ql_dbg_disc, vha, 0xffff,
460 "%s %d %8phC post del sess\n",
461 __func__, __LINE__,
462 conflict_fcport->port_name);
463 qlt_schedule_sess_for_deletion
464 (conflict_fcport, 1);
465 }
466
467 if (fcport->loop_id == loop_id) {
468 /* FW already picked this loop id for another fcport */
469 qla2x00_find_new_loop_id(vha, fcport);
470 }
471 }
472 }
473 qla24xx_fcport_handle_login(vha, fcport);
474 }
475} /* gnl_event */
476
477static void
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800478qla24xx_async_gnl_sp_done(void *s, int res)
Quinn Tran726b8542017-01-19 22:28:00 -0800479{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800480 struct srb *sp = s;
481 struct scsi_qla_host *vha = sp->vha;
Quinn Tran726b8542017-01-19 22:28:00 -0800482 unsigned long flags;
483 struct fc_port *fcport = NULL, *tf;
484 u16 i, n = 0, loop_id;
485 struct event_arg ea;
486 struct get_name_list_extended *e;
487 u64 wwn;
488 struct list_head h;
489
490 ql_dbg(ql_dbg_disc, vha, 0xffff,
491 "Async done-%s res %x mb[1]=%x mb[2]=%x \n",
492 sp->name, res, sp->u.iocb_cmd.u.mbx.in_mb[1],
493 sp->u.iocb_cmd.u.mbx.in_mb[2]);
494
495 memset(&ea, 0, sizeof(ea));
496 ea.sp = sp;
497 ea.rc = res;
498 ea.event = FCME_GNL_DONE;
499
500 if (sp->u.iocb_cmd.u.mbx.in_mb[1] >=
501 sizeof(struct get_name_list_extended)) {
502 n = sp->u.iocb_cmd.u.mbx.in_mb[1] /
503 sizeof(struct get_name_list_extended);
504 ea.data[0] = sp->u.iocb_cmd.u.mbx.in_mb[1]; /* amnt xfered */
505 }
506
507 for (i = 0; i < n; i++) {
508 e = &vha->gnl.l[i];
509 loop_id = le16_to_cpu(e->nport_handle);
510 /* mask out reserve bit */
511 loop_id = (loop_id & 0x7fff);
512 set_bit(loop_id, vha->hw->loop_id_map);
513 wwn = wwn_to_u64(e->port_name);
514
515 ql_dbg(ql_dbg_disc + ql_dbg_verbose, vha, 0xffff,
516 "%s %8phC %02x:%02x:%02x state %d/%d lid %x \n",
517 __func__, (void *)&wwn, e->port_id[2], e->port_id[1],
518 e->port_id[0], e->current_login_state, e->last_login_state,
519 (loop_id & 0x7fff));
520 }
521
522 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
523 vha->gnl.sent = 0;
524
525 INIT_LIST_HEAD(&h);
526 fcport = tf = NULL;
527 if (!list_empty(&vha->gnl.fcports))
528 list_splice_init(&vha->gnl.fcports, &h);
529
530 list_for_each_entry_safe(fcport, tf, &h, gnl_entry) {
531 list_del_init(&fcport->gnl_entry);
532 fcport->flags &= ~FCF_ASYNC_SENT;
533 ea.fcport = fcport;
534
535 qla2x00_fcport_event_handler(vha, &ea);
536 }
537
538 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
539
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800540 sp->free(sp);
Quinn Tran726b8542017-01-19 22:28:00 -0800541}
542
543int qla24xx_async_gnl(struct scsi_qla_host *vha, fc_port_t *fcport)
544{
545 srb_t *sp;
546 struct srb_iocb *mbx;
547 int rval = QLA_FUNCTION_FAILED;
548 unsigned long flags;
549 u16 *mb;
550
551 if (!vha->flags.online)
552 goto done;
553
554 ql_dbg(ql_dbg_disc, vha, 0xffff,
555 "Async-gnlist WWPN %8phC \n", fcport->port_name);
556
557 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
558 fcport->flags |= FCF_ASYNC_SENT;
559 fcport->disc_state = DSC_GNL;
560 fcport->last_rscn_gen = fcport->rscn_gen;
561 fcport->last_login_gen = fcport->login_gen;
562
563 list_add_tail(&fcport->gnl_entry, &vha->gnl.fcports);
564 if (vha->gnl.sent) {
565 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
566 rval = QLA_SUCCESS;
567 goto done;
568 }
569 vha->gnl.sent = 1;
570 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
571
572 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
573 if (!sp)
574 goto done;
575 sp->type = SRB_MB_IOCB;
576 sp->name = "gnlist";
577 sp->gen1 = fcport->rscn_gen;
578 sp->gen2 = fcport->login_gen;
579
580 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha)+2);
581
582 mb = sp->u.iocb_cmd.u.mbx.out_mb;
583 mb[0] = MBC_PORT_NODE_NAME_LIST;
584 mb[1] = BIT_2 | BIT_3;
585 mb[2] = MSW(vha->gnl.ldma);
586 mb[3] = LSW(vha->gnl.ldma);
587 mb[6] = MSW(MSD(vha->gnl.ldma));
588 mb[7] = LSW(MSD(vha->gnl.ldma));
589 mb[8] = vha->gnl.size;
590 mb[9] = vha->vp_idx;
591
592 mbx = &sp->u.iocb_cmd;
593 mbx->timeout = qla2x00_async_iocb_timeout;
594
595 sp->done = qla24xx_async_gnl_sp_done;
596
597 rval = qla2x00_start_sp(sp);
598 if (rval != QLA_SUCCESS)
599 goto done_free_sp;
600
601 ql_dbg(ql_dbg_disc, vha, 0xffff,
602 "Async-%s - OUT WWPN %8phC hndl %x\n",
603 sp->name, fcport->port_name, sp->handle);
604
605 return rval;
606
607done_free_sp:
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800608 sp->free(sp);
Quinn Tran726b8542017-01-19 22:28:00 -0800609done:
610 fcport->flags &= ~FCF_ASYNC_SENT;
611 return rval;
612}
613
614int qla24xx_post_gnl_work(struct scsi_qla_host *vha, fc_port_t *fcport)
615{
616 struct qla_work_evt *e;
617
618 e = qla2x00_alloc_work(vha, QLA_EVT_GNL);
619 if (!e)
620 return QLA_FUNCTION_FAILED;
621
622 e->u.fcport.fcport = fcport;
623 return qla2x00_post_work(vha, e);
624}
625
626static
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800627void qla24xx_async_gpdb_sp_done(void *s, int res)
Quinn Tran726b8542017-01-19 22:28:00 -0800628{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800629 struct srb *sp = s;
630 struct scsi_qla_host *vha = sp->vha;
Quinn Tran726b8542017-01-19 22:28:00 -0800631 struct qla_hw_data *ha = vha->hw;
632 uint64_t zero = 0;
633 struct port_database_24xx *pd;
634 fc_port_t *fcport = sp->fcport;
635 u16 *mb = sp->u.iocb_cmd.u.mbx.in_mb;
636 int rval = QLA_SUCCESS;
637 struct event_arg ea;
638
639 ql_dbg(ql_dbg_disc, vha, 0xffff,
640 "Async done-%s res %x, WWPN %8phC mb[1]=%x mb[2]=%x \n",
641 sp->name, res, fcport->port_name, mb[1], mb[2]);
642
643 fcport->flags &= ~FCF_ASYNC_SENT;
644
645 if (res) {
646 rval = res;
647 goto gpd_error_out;
648 }
649
650 pd = (struct port_database_24xx *)sp->u.iocb_cmd.u.mbx.in;
651
652 /* Check for logged in state. */
653 if (pd->current_login_state != PDS_PRLI_COMPLETE &&
654 pd->last_login_state != PDS_PRLI_COMPLETE) {
655 ql_dbg(ql_dbg_mbx, vha, 0xffff,
656 "Unable to verify login-state (%x/%x) for "
657 "loop_id %x.\n", pd->current_login_state,
658 pd->last_login_state, fcport->loop_id);
659 rval = QLA_FUNCTION_FAILED;
660 goto gpd_error_out;
661 }
662
663 if (fcport->loop_id == FC_NO_LOOP_ID ||
664 (memcmp(fcport->port_name, (uint8_t *)&zero, 8) &&
665 memcmp(fcport->port_name, pd->port_name, 8))) {
666 /* We lost the device mid way. */
667 rval = QLA_NOT_LOGGED_IN;
668 goto gpd_error_out;
669 }
670
671 /* Names are little-endian. */
672 memcpy(fcport->node_name, pd->node_name, WWN_SIZE);
673
674 /* Get port_id of device. */
675 fcport->d_id.b.domain = pd->port_id[0];
676 fcport->d_id.b.area = pd->port_id[1];
677 fcport->d_id.b.al_pa = pd->port_id[2];
678 fcport->d_id.b.rsvd_1 = 0;
679
680 /* If not target must be initiator or unknown type. */
681 if ((pd->prli_svc_param_word_3[0] & BIT_4) == 0)
682 fcport->port_type = FCT_INITIATOR;
683 else
684 fcport->port_type = FCT_TARGET;
685
686 /* Passback COS information. */
687 fcport->supported_classes = (pd->flags & PDF_CLASS_2) ?
688 FC_COS_CLASS2 : FC_COS_CLASS3;
689
690 if (pd->prli_svc_param_word_3[0] & BIT_7) {
691 fcport->flags |= FCF_CONF_COMP_SUPPORTED;
692 fcport->conf_compl_supported = 1;
693 }
694
695gpd_error_out:
696 memset(&ea, 0, sizeof(ea));
697 ea.event = FCME_GPDB_DONE;
698 ea.rc = rval;
699 ea.fcport = fcport;
700 ea.sp = sp;
701
702 qla2x00_fcport_event_handler(vha, &ea);
703
704 dma_pool_free(ha->s_dma_pool, sp->u.iocb_cmd.u.mbx.in,
705 sp->u.iocb_cmd.u.mbx.in_dma);
706
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800707 sp->free(sp);
Quinn Tran726b8542017-01-19 22:28:00 -0800708}
709
710static int qla24xx_post_gpdb_work(struct scsi_qla_host *vha, fc_port_t *fcport,
711 u8 opt)
712{
713 struct qla_work_evt *e;
714
715 e = qla2x00_alloc_work(vha, QLA_EVT_GPDB);
716 if (!e)
717 return QLA_FUNCTION_FAILED;
718
719 e->u.fcport.fcport = fcport;
720 e->u.fcport.opt = opt;
721 return qla2x00_post_work(vha, e);
722}
723
724int qla24xx_async_gpdb(struct scsi_qla_host *vha, fc_port_t *fcport, u8 opt)
725{
726 srb_t *sp;
727 struct srb_iocb *mbx;
728 int rval = QLA_FUNCTION_FAILED;
729 u16 *mb;
730 dma_addr_t pd_dma;
731 struct port_database_24xx *pd;
732 struct qla_hw_data *ha = vha->hw;
733
734 if (!vha->flags.online)
735 goto done;
736
737 fcport->flags |= FCF_ASYNC_SENT;
738 fcport->disc_state = DSC_GPDB;
739
740 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
741 if (!sp)
742 goto done;
743
744 pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &pd_dma);
745 if (pd == NULL) {
746 ql_log(ql_log_warn, vha, 0xffff,
747 "Failed to allocate port database structure.\n");
748 goto done_free_sp;
749 }
750 memset(pd, 0, max(PORT_DATABASE_SIZE, PORT_DATABASE_24XX_SIZE));
751
752 sp->type = SRB_MB_IOCB;
753 sp->name = "gpdb";
754 sp->gen1 = fcport->rscn_gen;
755 sp->gen2 = fcport->login_gen;
756 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
757
758 mb = sp->u.iocb_cmd.u.mbx.out_mb;
759 mb[0] = MBC_GET_PORT_DATABASE;
760 mb[1] = fcport->loop_id;
761 mb[2] = MSW(pd_dma);
762 mb[3] = LSW(pd_dma);
763 mb[6] = MSW(MSD(pd_dma));
764 mb[7] = LSW(MSD(pd_dma));
765 mb[9] = vha->vp_idx;
766 mb[10] = opt;
767
768 mbx = &sp->u.iocb_cmd;
769 mbx->timeout = qla2x00_async_iocb_timeout;
770 mbx->u.mbx.in = (void *)pd;
771 mbx->u.mbx.in_dma = pd_dma;
772
773 sp->done = qla24xx_async_gpdb_sp_done;
774
775 rval = qla2x00_start_sp(sp);
776 if (rval != QLA_SUCCESS)
777 goto done_free_sp;
778
779 ql_dbg(ql_dbg_disc, vha, 0xffff,
780 "Async-%s %8phC hndl %x opt %x\n",
781 sp->name, fcport->port_name, sp->handle, opt);
782
783 return rval;
784
785done_free_sp:
786 if (pd)
787 dma_pool_free(ha->s_dma_pool, pd, pd_dma);
788
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800789 sp->free(sp);
Quinn Tran726b8542017-01-19 22:28:00 -0800790done:
791 fcport->flags &= ~FCF_ASYNC_SENT;
792 qla24xx_post_gpdb_work(vha, fcport, opt);
793 return rval;
794}
795
796static
797void qla24xx_handle_gpdb_event(scsi_qla_host_t *vha, struct event_arg *ea)
798{
799 int rval = ea->rc;
800 fc_port_t *fcport = ea->fcport;
801 unsigned long flags;
802
803 fcport->flags &= ~FCF_ASYNC_SENT;
804
805 ql_dbg(ql_dbg_disc, vha, 0xffff,
806 "%s %8phC DS %d LS %d rval %d\n", __func__, fcport->port_name,
807 fcport->disc_state, fcport->fw_login_state, rval);
808
809 if (ea->sp->gen2 != fcport->login_gen) {
810 /* target side must have changed it. */
811 ql_dbg(ql_dbg_disc, vha, 0xffff,
812 "%s %8phC generation changed rscn %d|%d login %d|%d \n",
813 __func__, fcport->port_name, fcport->last_rscn_gen,
814 fcport->rscn_gen, fcport->last_login_gen,
815 fcport->login_gen);
816 return;
817 } else if (ea->sp->gen1 != fcport->rscn_gen) {
818 ql_dbg(ql_dbg_disc, vha, 0xffff, "%s %d %8phC post gidpn\n",
819 __func__, __LINE__, fcport->port_name);
820 qla24xx_post_gidpn_work(vha, fcport);
821 return;
822 }
823
824 if (rval != QLA_SUCCESS) {
825 ql_dbg(ql_dbg_disc, vha, 0xffff, "%s %d %8phC post del sess\n",
826 __func__, __LINE__, fcport->port_name);
827 qlt_schedule_sess_for_deletion_lock(fcport);
828 return;
829 }
830
831 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
832 ea->fcport->login_gen++;
833 ea->fcport->deleted = 0;
834 ea->fcport->logout_on_delete = 1;
835
836 if (!ea->fcport->login_succ && !IS_SW_RESV_ADDR(ea->fcport->d_id)) {
837 vha->fcport_count++;
838 ea->fcport->login_succ = 1;
839
840 if (!IS_IIDMA_CAPABLE(vha->hw) ||
841 !vha->hw->flags.gpsc_supported) {
842 ql_dbg(ql_dbg_disc, vha, 0xffff,
843 "%s %d %8phC post upd_fcport fcp_cnt %d\n",
844 __func__, __LINE__, fcport->port_name,
845 vha->fcport_count);
846
847 qla24xx_post_upd_fcport_work(vha, fcport);
848 } else {
849 ql_dbg(ql_dbg_disc, vha, 0xffff,
850 "%s %d %8phC post gpsc fcp_cnt %d\n",
851 __func__, __LINE__, fcport->port_name,
852 vha->fcport_count);
853
854 qla24xx_post_gpsc_work(vha, fcport);
855 }
856 }
857 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
858} /* gpdb event */
859
860int qla24xx_fcport_handle_login(struct scsi_qla_host *vha, fc_port_t *fcport)
861{
862 if (fcport->login_retry == 0)
863 return 0;
864
865 if (fcport->scan_state != QLA_FCPORT_FOUND)
866 return 0;
867
868 ql_dbg(ql_dbg_disc, vha, 0xffff,
869 "%s %8phC DS %d LS %d P %d fl %x confl %p rscn %d|%d login %d|%d retry %d lid %d\n",
870 __func__, fcport->port_name, fcport->disc_state,
871 fcport->fw_login_state, fcport->login_pause, fcport->flags,
872 fcport->conflict, fcport->last_rscn_gen, fcport->rscn_gen,
873 fcport->last_login_gen, fcport->login_gen, fcport->login_retry,
874 fcport->loop_id);
875
876 fcport->login_retry--;
877
878 if ((fcport->fw_login_state == DSC_LS_PLOGI_PEND) ||
879 (fcport->fw_login_state == DSC_LS_PLOGI_COMP) ||
880 (fcport->fw_login_state == DSC_LS_PRLI_PEND))
881 return 0;
882
883 /* for pure Target Mode. Login will not be initiated */
884 if (vha->host->active_mode == MODE_TARGET)
885 return 0;
886
887 if (fcport->flags & FCF_ASYNC_SENT) {
888 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
889 return 0;
890 }
891
892 switch (fcport->disc_state) {
893 case DSC_DELETED:
894 if (fcport->loop_id == FC_NO_LOOP_ID) {
895 ql_dbg(ql_dbg_disc, vha, 0xffff,
896 "%s %d %8phC post gnl\n",
897 __func__, __LINE__, fcport->port_name);
898 qla24xx_async_gnl(vha, fcport);
899 } else {
900 ql_dbg(ql_dbg_disc, vha, 0xffff,
901 "%s %d %8phC post login\n",
902 __func__, __LINE__, fcport->port_name);
903 fcport->disc_state = DSC_LOGIN_PEND;
904 qla2x00_post_async_login_work(vha, fcport, NULL);
905 }
906 break;
907
908 case DSC_GNL:
909 if (fcport->login_pause) {
910 fcport->last_rscn_gen = fcport->rscn_gen;
911 fcport->last_login_gen = fcport->login_gen;
912 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
913 break;
914 }
915
916 if (fcport->flags & FCF_FCP2_DEVICE) {
917 u8 opt = PDO_FORCE_ADISC;
918
919 ql_dbg(ql_dbg_disc, vha, 0xffff,
920 "%s %d %8phC post gpdb\n",
921 __func__, __LINE__, fcport->port_name);
922
923 fcport->disc_state = DSC_GPDB;
924 qla24xx_post_gpdb_work(vha, fcport, opt);
925 } else {
926 ql_dbg(ql_dbg_disc, vha, 0xffff,
927 "%s %d %8phC post login \n",
928 __func__, __LINE__, fcport->port_name);
929 fcport->disc_state = DSC_LOGIN_PEND;
930 qla2x00_post_async_login_work(vha, fcport, NULL);
931 }
932
933 break;
934
935 case DSC_LOGIN_FAILED:
936 ql_dbg(ql_dbg_disc, vha, 0xffff,
937 "%s %d %8phC post gidpn \n",
938 __func__, __LINE__, fcport->port_name);
939
940 qla24xx_post_gidpn_work(vha, fcport);
941 break;
942
943 case DSC_LOGIN_COMPLETE:
944 /* recheck login state */
945 ql_dbg(ql_dbg_disc, vha, 0xffff,
946 "%s %d %8phC post gpdb \n",
947 __func__, __LINE__, fcport->port_name);
948
949 qla24xx_post_gpdb_work(vha, fcport, PDO_FORCE_ADISC);
950 break;
951
952 default:
953 break;
954 }
955
956 return 0;
957}
958
959static
960void qla24xx_handle_rscn_event(fc_port_t *fcport, struct event_arg *ea)
961{
962 fcport->rscn_gen++;
963
964 ql_dbg(ql_dbg_disc, fcport->vha, 0xffff,
965 "%s %8phC DS %d LS %d\n",
966 __func__, fcport->port_name, fcport->disc_state,
967 fcport->fw_login_state);
968
969 if (fcport->flags & FCF_ASYNC_SENT)
970 return;
971
972 switch (fcport->disc_state) {
973 case DSC_DELETED:
974 case DSC_LOGIN_COMPLETE:
975 qla24xx_post_gidpn_work(fcport->vha, fcport);
976 break;
977
978 default:
979 break;
980 }
981}
982
983int qla24xx_post_newsess_work(struct scsi_qla_host *vha, port_id_t *id,
984 u8 *port_name, void *pla)
985{
986 struct qla_work_evt *e;
987 e = qla2x00_alloc_work(vha, QLA_EVT_NEW_SESS);
988 if (!e)
989 return QLA_FUNCTION_FAILED;
990
991 e->u.new_sess.id = *id;
992 e->u.new_sess.pla = pla;
993 memcpy(e->u.new_sess.port_name, port_name, WWN_SIZE);
994
995 return qla2x00_post_work(vha, e);
996}
997
998static
999int qla24xx_handle_delete_done_event(scsi_qla_host_t *vha,
1000 struct event_arg *ea)
1001{
1002 fc_port_t *fcport = ea->fcport;
1003
1004 if (test_bit(UNLOADING, &vha->dpc_flags))
1005 return 0;
1006
1007 switch (vha->host->active_mode) {
1008 case MODE_INITIATOR:
1009 case MODE_DUAL:
1010 if (fcport->scan_state == QLA_FCPORT_FOUND)
1011 qla24xx_fcport_handle_login(vha, fcport);
1012 break;
1013
1014 case MODE_TARGET:
1015 default:
1016 /* no-op */
1017 break;
1018 }
1019
1020 return 0;
1021}
1022
1023static
1024void qla24xx_handle_relogin_event(scsi_qla_host_t *vha,
1025 struct event_arg *ea)
1026{
1027 fc_port_t *fcport = ea->fcport;
1028
1029 if (fcport->scan_state != QLA_FCPORT_FOUND) {
1030 fcport->login_retry++;
1031 return;
1032 }
1033
1034 ql_dbg(ql_dbg_disc, vha, 0xffff,
1035 "%s %8phC DS %d LS %d P %d del %d cnfl %p rscn %d|%d login %d|%d fl %x\n",
1036 __func__, fcport->port_name, fcport->disc_state,
1037 fcport->fw_login_state, fcport->login_pause,
1038 fcport->deleted, fcport->conflict,
1039 fcport->last_rscn_gen, fcport->rscn_gen,
1040 fcport->last_login_gen, fcport->login_gen,
1041 fcport->flags);
1042
1043 if ((fcport->fw_login_state == DSC_LS_PLOGI_PEND) ||
1044 (fcport->fw_login_state == DSC_LS_PLOGI_COMP) ||
1045 (fcport->fw_login_state == DSC_LS_PRLI_PEND))
1046 return;
1047
1048 if (fcport->flags & FCF_ASYNC_SENT) {
1049 fcport->login_retry++;
1050 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
1051 return;
1052 }
1053
1054 if (fcport->disc_state == DSC_DELETE_PEND) {
1055 fcport->login_retry++;
1056 return;
1057 }
1058
1059 if (fcport->last_rscn_gen != fcport->rscn_gen) {
1060 ql_dbg(ql_dbg_disc, vha, 0xffff, "%s %d %8phC post gidpn\n",
1061 __func__, __LINE__, fcport->port_name);
1062
1063 qla24xx_async_gidpn(vha, fcport);
1064 return;
1065 }
1066
1067 qla24xx_fcport_handle_login(vha, fcport);
1068}
1069
Quinn Tran41dc5292017-01-19 22:28:03 -08001070void qla2x00_fcport_event_handler(scsi_qla_host_t *vha, struct event_arg *ea)
Quinn Tran726b8542017-01-19 22:28:00 -08001071{
Quinn Tran41dc5292017-01-19 22:28:03 -08001072 fc_port_t *fcport, *f, *tf;
1073 uint32_t id = 0, mask, rid;
Quinn Tran726b8542017-01-19 22:28:00 -08001074 int rc;
1075
1076 switch (ea->event) {
1077 case FCME_RELOGIN:
1078 if (test_bit(UNLOADING, &vha->dpc_flags))
1079 return;
1080
1081 qla24xx_handle_relogin_event(vha, ea);
1082 break;
1083 case FCME_RSCN:
1084 if (test_bit(UNLOADING, &vha->dpc_flags))
1085 return;
Quinn Tran41dc5292017-01-19 22:28:03 -08001086 switch (ea->id.b.rsvd_1) {
1087 case RSCN_PORT_ADDR:
1088 fcport = qla2x00_find_fcport_by_nportid(vha, &ea->id, 1);
1089 if (!fcport) {
1090 /* cable moved */
1091 rc = qla24xx_post_gpnid_work(vha, &ea->id);
1092 if (rc) {
1093 ql_log(ql_log_warn, vha, 0xffff,
1094 "RSCN GPNID work failed %02x%02x%02x\n",
1095 ea->id.b.domain, ea->id.b.area,
1096 ea->id.b.al_pa);
1097 }
1098 } else {
1099 ea->fcport = fcport;
1100 qla24xx_handle_rscn_event(fcport, ea);
Quinn Tran726b8542017-01-19 22:28:00 -08001101 }
Quinn Tran41dc5292017-01-19 22:28:03 -08001102 break;
1103 case RSCN_AREA_ADDR:
1104 case RSCN_DOM_ADDR:
1105 if (ea->id.b.rsvd_1 == RSCN_AREA_ADDR) {
1106 mask = 0xffff00;
1107 ql_log(ql_dbg_async, vha, 0xffff,
1108 "RSCN: Area 0x%06x was affected\n",
1109 ea->id.b24);
1110 } else {
1111 mask = 0xff0000;
1112 ql_log(ql_dbg_async, vha, 0xffff,
1113 "RSCN: Domain 0x%06x was affected\n",
1114 ea->id.b24);
1115 }
1116
1117 rid = ea->id.b24 & mask;
1118 list_for_each_entry_safe(f, tf, &vha->vp_fcports,
1119 list) {
1120 id = f->d_id.b24 & mask;
1121 if (rid == id) {
1122 ea->fcport = f;
1123 qla24xx_handle_rscn_event(f, ea);
1124 }
1125 }
1126 break;
1127 case RSCN_FAB_ADDR:
1128 default:
1129 ql_log(ql_log_warn, vha, 0xffff,
1130 "RSCN: Fabric was affected. Addr format %d\n",
1131 ea->id.b.rsvd_1);
1132 qla2x00_mark_all_devices_lost(vha, 1);
1133 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1134 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Quinn Tran726b8542017-01-19 22:28:00 -08001135 }
1136 break;
1137 case FCME_GIDPN_DONE:
1138 qla24xx_handle_gidpn_event(vha, ea);
1139 break;
1140 case FCME_GNL_DONE:
1141 qla24xx_handle_gnl_done_event(vha, ea);
1142 break;
1143 case FCME_GPSC_DONE:
1144 qla24xx_post_upd_fcport_work(vha, ea->fcport);
1145 break;
1146 case FCME_PLOGI_DONE: /* Initiator side sent LLIOCB */
1147 qla24xx_handle_plogi_done_event(vha, ea);
1148 break;
1149 case FCME_GPDB_DONE:
1150 qla24xx_handle_gpdb_event(vha, ea);
1151 break;
1152 case FCME_GPNID_DONE:
1153 qla24xx_handle_gpnid_event(vha, ea);
1154 break;
1155 case FCME_DELETE_DONE:
1156 qla24xx_handle_delete_done_event(vha, ea);
1157 break;
1158 default:
1159 BUG_ON(1);
1160 break;
1161 }
1162}
1163
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001164static void
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001165qla2x00_tmf_iocb_timeout(void *data)
1166{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001167 srb_t *sp = data;
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001168 struct srb_iocb *tmf = &sp->u.iocb_cmd;
1169
1170 tmf->u.tmf.comp_status = CS_TIMEOUT;
1171 complete(&tmf->u.tmf.comp);
1172}
1173
1174static void
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001175qla2x00_tmf_sp_done(void *ptr, int res)
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001176{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001177 srb_t *sp = ptr;
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001178 struct srb_iocb *tmf = &sp->u.iocb_cmd;
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001179
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001180 complete(&tmf->u.tmf.comp);
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001181}
1182
1183int
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001184qla2x00_async_tm_cmd(fc_port_t *fcport, uint32_t flags, uint32_t lun,
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001185 uint32_t tag)
1186{
1187 struct scsi_qla_host *vha = fcport->vha;
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001188 struct srb_iocb *tm_iocb;
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001189 srb_t *sp;
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001190 int rval = QLA_FUNCTION_FAILED;
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001191
Giridhar Malavali9ba56b92012-02-09 11:15:36 -08001192 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001193 if (!sp)
1194 goto done;
1195
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001196 tm_iocb = &sp->u.iocb_cmd;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -08001197 sp->type = SRB_TM_CMD;
1198 sp->name = "tmf";
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001199 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha));
1200 tm_iocb->u.tmf.flags = flags;
1201 tm_iocb->u.tmf.lun = lun;
1202 tm_iocb->u.tmf.data = tag;
1203 sp->done = qla2x00_tmf_sp_done;
1204 tm_iocb->timeout = qla2x00_tmf_iocb_timeout;
1205 init_completion(&tm_iocb->u.tmf.comp);
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001206
1207 rval = qla2x00_start_sp(sp);
1208 if (rval != QLA_SUCCESS)
1209 goto done_free_sp;
1210
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001211 ql_dbg(ql_dbg_taskm, vha, 0x802f,
Chad Dupuiscfb09192011-11-18 09:03:07 -08001212 "Async-tmf hdl=%x loop-id=%x portid=%02x%02x%02x.\n",
1213 sp->handle, fcport->loop_id, fcport->d_id.b.domain,
1214 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Armen Baloyanfaef62d2014-02-26 04:15:17 -05001215
1216 wait_for_completion(&tm_iocb->u.tmf.comp);
1217
1218 rval = tm_iocb->u.tmf.comp_status == CS_COMPLETE ?
1219 QLA_SUCCESS : QLA_FUNCTION_FAILED;
1220
1221 if ((rval != QLA_SUCCESS) || tm_iocb->u.tmf.data) {
1222 ql_dbg(ql_dbg_taskm, vha, 0x8030,
1223 "TM IOCB failed (%x).\n", rval);
1224 }
1225
1226 if (!test_bit(UNLOADING, &vha->dpc_flags) && !IS_QLAFX00(vha->hw)) {
1227 flags = tm_iocb->u.tmf.flags;
1228 lun = (uint16_t)tm_iocb->u.tmf.lun;
1229
1230 /* Issue Marker IOCB */
1231 qla2x00_marker(vha, vha->hw->req_q_map[0],
1232 vha->hw->rsp_q_map[0], sp->fcport->loop_id, lun,
1233 flags == TCF_LUN_RESET ? MK_SYNC_ID_LUN : MK_SYNC_ID);
1234 }
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001235
1236done_free_sp:
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001237 sp->free(sp);
Madhuranath Iyengar38222632010-05-04 15:01:29 -07001238done:
1239 return rval;
1240}
1241
Armen Baloyan4440e462014-02-26 04:15:18 -05001242static void
1243qla24xx_abort_iocb_timeout(void *data)
1244{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001245 srb_t *sp = data;
Armen Baloyan4440e462014-02-26 04:15:18 -05001246 struct srb_iocb *abt = &sp->u.iocb_cmd;
1247
1248 abt->u.abt.comp_status = CS_TIMEOUT;
1249 complete(&abt->u.abt.comp);
1250}
1251
1252static void
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001253qla24xx_abort_sp_done(void *ptr, int res)
Armen Baloyan4440e462014-02-26 04:15:18 -05001254{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001255 srb_t *sp = ptr;
Armen Baloyan4440e462014-02-26 04:15:18 -05001256 struct srb_iocb *abt = &sp->u.iocb_cmd;
1257
1258 complete(&abt->u.abt.comp);
1259}
1260
1261static int
1262qla24xx_async_abort_cmd(srb_t *cmd_sp)
1263{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001264 scsi_qla_host_t *vha = cmd_sp->vha;
Armen Baloyan4440e462014-02-26 04:15:18 -05001265 fc_port_t *fcport = cmd_sp->fcport;
1266 struct srb_iocb *abt_iocb;
1267 srb_t *sp;
1268 int rval = QLA_FUNCTION_FAILED;
1269
1270 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
1271 if (!sp)
1272 goto done;
1273
1274 abt_iocb = &sp->u.iocb_cmd;
1275 sp->type = SRB_ABT_CMD;
1276 sp->name = "abort";
1277 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha));
1278 abt_iocb->u.abt.cmd_hndl = cmd_sp->handle;
1279 sp->done = qla24xx_abort_sp_done;
1280 abt_iocb->timeout = qla24xx_abort_iocb_timeout;
1281 init_completion(&abt_iocb->u.abt.comp);
1282
1283 rval = qla2x00_start_sp(sp);
1284 if (rval != QLA_SUCCESS)
1285 goto done_free_sp;
1286
1287 ql_dbg(ql_dbg_async, vha, 0x507c,
1288 "Abort command issued - hdl=%x, target_id=%x\n",
1289 cmd_sp->handle, fcport->tgt_id);
1290
1291 wait_for_completion(&abt_iocb->u.abt.comp);
1292
1293 rval = abt_iocb->u.abt.comp_status == CS_COMPLETE ?
1294 QLA_SUCCESS : QLA_FUNCTION_FAILED;
1295
1296done_free_sp:
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08001297 sp->free(sp);
Armen Baloyan4440e462014-02-26 04:15:18 -05001298done:
1299 return rval;
1300}
1301
1302int
1303qla24xx_async_abort_command(srb_t *sp)
1304{
1305 unsigned long flags = 0;
1306
1307 uint32_t handle;
1308 fc_port_t *fcport = sp->fcport;
1309 struct scsi_qla_host *vha = fcport->vha;
1310 struct qla_hw_data *ha = vha->hw;
1311 struct req_que *req = vha->req;
1312
1313 spin_lock_irqsave(&ha->hardware_lock, flags);
1314 for (handle = 1; handle < req->num_outstanding_cmds; handle++) {
1315 if (req->outstanding_cmds[handle] == sp)
1316 break;
1317 }
1318 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1319 if (handle == req->num_outstanding_cmds) {
1320 /* Command not found. */
1321 return QLA_FUNCTION_FAILED;
1322 }
1323 if (sp->type == SRB_FXIOCB_DCMD)
1324 return qlafx00_fx_disc(vha, &vha->hw->mr.fcport,
1325 FXDISC_ABORT_IOCTL);
1326
1327 return qla24xx_async_abort_cmd(sp);
1328}
1329
Quinn Tran726b8542017-01-19 22:28:00 -08001330static void
1331qla24xx_handle_plogi_done_event(struct scsi_qla_host *vha, struct event_arg *ea)
Andrew Vasquezac280b62009-08-20 11:06:05 -07001332{
Quinn Tran726b8542017-01-19 22:28:00 -08001333 port_id_t cid; /* conflict Nport id */
Andrew Vasquezac280b62009-08-20 11:06:05 -07001334
Quinn Tran726b8542017-01-19 22:28:00 -08001335 switch (ea->data[0]) {
Andrew Vasquezac280b62009-08-20 11:06:05 -07001336 case MBS_COMMAND_COMPLETE:
Andrew Vasqueza4f92a32011-03-30 11:46:31 -07001337 /*
1338 * Driver must validate login state - If PRLI not complete,
1339 * force a relogin attempt via implicit LOGO, PLOGI, and PRLI
1340 * requests.
1341 */
Quinn Tran726b8542017-01-19 22:28:00 -08001342 ql_dbg(ql_dbg_disc, vha, 0xffff,
1343 "%s %d %8phC post gpdb\n",
1344 __func__, __LINE__, ea->fcport->port_name);
1345 ea->fcport->chip_reset = vha->hw->chip_reset;
1346 ea->fcport->logout_on_delete = 1;
1347 qla24xx_post_gpdb_work(vha, ea->fcport, 0);
Andrew Vasquezac280b62009-08-20 11:06:05 -07001348 break;
1349 case MBS_COMMAND_ERROR:
Quinn Tran726b8542017-01-19 22:28:00 -08001350 ql_dbg(ql_dbg_disc, vha, 0xffff, "%s %d %8phC cmd error %x\n",
1351 __func__, __LINE__, ea->fcport->port_name, ea->data[1]);
1352
1353 ea->fcport->flags &= ~FCF_ASYNC_SENT;
1354 ea->fcport->disc_state = DSC_LOGIN_FAILED;
1355 if (ea->data[1] & QLA_LOGIO_LOGIN_RETRIED)
Andrew Vasquezac280b62009-08-20 11:06:05 -07001356 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
1357 else
Quinn Tran726b8542017-01-19 22:28:00 -08001358 qla2x00_mark_device_lost(vha, ea->fcport, 1, 0);
Andrew Vasquezac280b62009-08-20 11:06:05 -07001359 break;
1360 case MBS_LOOP_ID_USED:
Quinn Tran726b8542017-01-19 22:28:00 -08001361 /* data[1] = IO PARAM 1 = nport ID */
1362 cid.b.domain = (ea->iop[1] >> 16) & 0xff;
1363 cid.b.area = (ea->iop[1] >> 8) & 0xff;
1364 cid.b.al_pa = ea->iop[1] & 0xff;
1365 cid.b.rsvd_1 = 0;
1366
1367 ql_dbg(ql_dbg_disc, vha, 0xffff,
1368 "%s %d %8phC LoopID 0x%x in use post gnl\n",
1369 __func__, __LINE__, ea->fcport->port_name,
1370 ea->fcport->loop_id);
1371
1372 if (IS_SW_RESV_ADDR(cid)) {
1373 set_bit(ea->fcport->loop_id, vha->hw->loop_id_map);
1374 ea->fcport->loop_id = FC_NO_LOOP_ID;
1375 } else {
1376 qla2x00_clear_loop_id(ea->fcport);
Andrew Vasquezac280b62009-08-20 11:06:05 -07001377 }
Quinn Tran726b8542017-01-19 22:28:00 -08001378 qla24xx_post_gnl_work(vha, ea->fcport);
1379 break;
1380 case MBS_PORT_ID_USED:
1381 ql_dbg(ql_dbg_disc, vha, 0xffff,
1382 "%s %d %8phC NPortId %02x%02x%02x inuse post gidpn\n",
1383 __func__, __LINE__, ea->fcport->port_name,
1384 ea->fcport->d_id.b.domain, ea->fcport->d_id.b.area,
1385 ea->fcport->d_id.b.al_pa);
1386
1387 qla2x00_clear_loop_id(ea->fcport);
1388 qla24xx_post_gidpn_work(vha, ea->fcport);
Andrew Vasquezac280b62009-08-20 11:06:05 -07001389 break;
1390 }
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001391 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -07001392}
1393
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001394void
Andrew Vasquezac280b62009-08-20 11:06:05 -07001395qla2x00_async_logout_done(struct scsi_qla_host *vha, fc_port_t *fcport,
1396 uint16_t *data)
1397{
Quinn Tran726b8542017-01-19 22:28:00 -08001398 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001399 qlt_logo_completion_handler(fcport, data[0]);
Quinn Tran726b8542017-01-19 22:28:00 -08001400 fcport->login_gen++;
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001401 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -07001402}
1403
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001404void
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07001405qla2x00_async_adisc_done(struct scsi_qla_host *vha, fc_port_t *fcport,
1406 uint16_t *data)
1407{
1408 if (data[0] == MBS_COMMAND_COMPLETE) {
1409 qla2x00_update_fcport(vha, fcport);
1410
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001411 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07001412 }
1413
1414 /* Retry login. */
1415 fcport->flags &= ~FCF_ASYNC_SENT;
1416 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
1417 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
1418 else
Andrew Vasquez80d79442011-03-30 11:46:17 -07001419 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07001420
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001421 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07001422}
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424/****************************************************************************/
1425/* QLogic ISP2x00 Hardware Support Functions. */
1426/****************************************************************************/
1427
Saurav Kashyapfa492632012-11-21 02:40:29 -05001428static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04001429qla83xx_nic_core_fw_load(scsi_qla_host_t *vha)
1430{
1431 int rval = QLA_SUCCESS;
1432 struct qla_hw_data *ha = vha->hw;
1433 uint32_t idc_major_ver, idc_minor_ver;
Saurav Kashyap711aa7f2012-08-22 14:21:15 -04001434 uint16_t config[4];
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04001435
1436 qla83xx_idc_lock(vha, 0);
1437
1438 /* SV: TODO: Assign initialization timeout from
1439 * flash-info / other param
1440 */
1441 ha->fcoe_dev_init_timeout = QLA83XX_IDC_INITIALIZATION_TIMEOUT;
1442 ha->fcoe_reset_timeout = QLA83XX_IDC_RESET_ACK_TIMEOUT;
1443
1444 /* Set our fcoe function presence */
1445 if (__qla83xx_set_drv_presence(vha) != QLA_SUCCESS) {
1446 ql_dbg(ql_dbg_p3p, vha, 0xb077,
1447 "Error while setting DRV-Presence.\n");
1448 rval = QLA_FUNCTION_FAILED;
1449 goto exit;
1450 }
1451
1452 /* Decide the reset ownership */
1453 qla83xx_reset_ownership(vha);
1454
1455 /*
1456 * On first protocol driver load:
1457 * Init-Owner: Set IDC-Major-Version and Clear IDC-Lock-Recovery
1458 * register.
1459 * Others: Check compatibility with current IDC Major version.
1460 */
1461 qla83xx_rd_reg(vha, QLA83XX_IDC_MAJOR_VERSION, &idc_major_ver);
1462 if (ha->flags.nic_core_reset_owner) {
1463 /* Set IDC Major version */
1464 idc_major_ver = QLA83XX_SUPP_IDC_MAJOR_VERSION;
1465 qla83xx_wr_reg(vha, QLA83XX_IDC_MAJOR_VERSION, idc_major_ver);
1466
1467 /* Clearing IDC-Lock-Recovery register */
1468 qla83xx_wr_reg(vha, QLA83XX_IDC_LOCK_RECOVERY, 0);
1469 } else if (idc_major_ver != QLA83XX_SUPP_IDC_MAJOR_VERSION) {
1470 /*
1471 * Clear further IDC participation if we are not compatible with
1472 * the current IDC Major Version.
1473 */
1474 ql_log(ql_log_warn, vha, 0xb07d,
1475 "Failing load, idc_major_ver=%d, expected_major_ver=%d.\n",
1476 idc_major_ver, QLA83XX_SUPP_IDC_MAJOR_VERSION);
1477 __qla83xx_clear_drv_presence(vha);
1478 rval = QLA_FUNCTION_FAILED;
1479 goto exit;
1480 }
1481 /* Each function sets its supported Minor version. */
1482 qla83xx_rd_reg(vha, QLA83XX_IDC_MINOR_VERSION, &idc_minor_ver);
1483 idc_minor_ver |= (QLA83XX_SUPP_IDC_MINOR_VERSION << (ha->portnum * 2));
1484 qla83xx_wr_reg(vha, QLA83XX_IDC_MINOR_VERSION, idc_minor_ver);
1485
Saurav Kashyap711aa7f2012-08-22 14:21:15 -04001486 if (ha->flags.nic_core_reset_owner) {
1487 memset(config, 0, sizeof(config));
1488 if (!qla81xx_get_port_config(vha, config))
1489 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE,
1490 QLA8XXX_DEV_READY);
1491 }
1492
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04001493 rval = qla83xx_idc_state_handler(vha);
1494
1495exit:
1496 qla83xx_idc_unlock(vha, 0);
1497
1498 return rval;
1499}
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501/*
1502* qla2x00_initialize_adapter
1503* Initialize board.
1504*
1505* Input:
1506* ha = adapter block pointer.
1507*
1508* Returns:
1509* 0 = success
1510*/
1511int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001512qla2x00_initialize_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
1514 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001515 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001516 struct req_que *req = ha->req_q_map[0];
Lalit Chandivade2533cf62009-03-24 09:08:07 -07001517
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001518 memset(&vha->qla_stats, 0, sizeof(vha->qla_stats));
1519 memset(&vha->fc_host_stat, 0, sizeof(vha->fc_host_stat));
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /* Clear adapter flags. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001522 vha->flags.online = 0;
Lalit Chandivade2533cf62009-03-24 09:08:07 -07001523 ha->flags.chip_reset_done = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001524 vha->flags.reset_active = 0;
Andrew Vasquez85880802009-12-15 21:29:46 -08001525 ha->flags.pci_channel_io_perm_failure = 0;
1526 ha->flags.eeh_busy = 0;
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001527 vha->qla_stats.jiffies_at_last_reset = get_jiffies_64();
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001528 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1529 atomic_set(&vha->loop_state, LOOP_DOWN);
1530 vha->device_flags = DFLG_NO_CABLE;
1531 vha->dpc_flags = 0;
1532 vha->flags.management_server_logged_in = 0;
1533 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 ha->isp_abort_cnt = 0;
1535 ha->beacon_blink_led = 0;
1536
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001537 set_bit(0, ha->req_qid_map);
1538 set_bit(0, ha->rsp_qid_map);
1539
Chad Dupuiscfb09192011-11-18 09:03:07 -08001540 ql_dbg(ql_dbg_init, vha, 0x0040,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001541 "Configuring PCI space...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001542 rval = ha->isp_ops->pci_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001544 ql_log(ql_log_warn, vha, 0x0044,
1545 "Unable to configure PCI space.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 return (rval);
1547 }
1548
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001549 ha->isp_ops->reset_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001551 rval = qla2xxx_get_flash_info(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -07001552 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001553 ql_log(ql_log_fatal, vha, 0x004f,
1554 "Unable to validate FLASH data.\n");
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001555 return rval;
1556 }
1557
1558 if (IS_QLA8044(ha)) {
1559 qla8044_read_reset_template(vha);
1560
1561 /* NOTE: If ql2xdontresethba==1, set IDC_CTRL DONTRESET_BIT0.
1562 * If DONRESET_BIT0 is set, drivers should not set dev_state
1563 * to NEED_RESET. But if NEED_RESET is set, drivers should
1564 * should honor the reset. */
1565 if (ql2xdontresethba == 1)
1566 qla8044_set_idc_dontreset(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -07001567 }
1568
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001569 ha->isp_ops->get_flash_version(vha, req->ring);
Chad Dupuiscfb09192011-11-18 09:03:07 -08001570 ql_dbg(ql_dbg_init, vha, 0x0061,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001571 "Configure NVRAM parameters...\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001572
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001573 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07001575 if (ha->flags.disable_serdes) {
1576 /* Mask HBA via NVRAM settings? */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001577 ql_log(ql_log_info, vha, 0x0077,
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -04001578 "Masking HBA WWPN %8phN (via NVRAM).\n", vha->port_name);
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07001579 return QLA_FUNCTION_FAILED;
1580 }
1581
Chad Dupuiscfb09192011-11-18 09:03:07 -08001582 ql_dbg(ql_dbg_init, vha, 0x0078,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001583 "Verifying loaded RISC code...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001585 if (qla2x00_isp_firmware(vha) != QLA_SUCCESS) {
1586 rval = ha->isp_ops->chip_diag(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001587 if (rval)
1588 return (rval);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001589 rval = qla2x00_setup_chip(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001590 if (rval)
1591 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07001593
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001594 if (IS_QLA84XX(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001595 ha->cs84xx = qla84xx_get_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001596 if (!ha->cs84xx) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001597 ql_log(ql_log_warn, vha, 0x00d0,
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001598 "Unable to configure ISP84XX.\n");
1599 return QLA_FUNCTION_FAILED;
1600 }
1601 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001602
Quinn Tranead03852017-01-19 22:28:01 -08001603 if (qla_ini_mode_enabled(vha) || qla_dual_mode_enabled(vha))
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001604 rval = qla2x00_init_rings(vha);
1605
Lalit Chandivade2533cf62009-03-24 09:08:07 -07001606 ha->flags.chip_reset_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001608 if (rval == QLA_SUCCESS && IS_QLA84XX(ha)) {
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001609 /* Issue verify 84xx FW IOCB to complete 84xx initialization */
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001610 rval = qla84xx_init_chip(vha);
1611 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001612 ql_log(ql_log_warn, vha, 0x00d4,
1613 "Unable to initialize ISP84XX.\n");
Bart Van Assche8d2b21d2015-06-04 15:58:09 -07001614 qla84xx_put_chip(vha);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001615 }
1616 }
1617
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04001618 /* Load the NIC Core f/w if we are the first protocol driver. */
1619 if (IS_QLA8031(ha)) {
1620 rval = qla83xx_nic_core_fw_load(vha);
1621 if (rval)
1622 ql_log(ql_log_warn, vha, 0x0124,
1623 "Error in initializing NIC Core f/w.\n");
1624 }
1625
Madhuranath Iyengar2f0f3f42010-07-23 15:28:24 +05001626 if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha))
1627 qla24xx_read_fcp_prio_cfg(vha);
Sarang Radke09ff7012010-03-19 17:03:59 -07001628
Joe Carnuccioc46e65c2013-08-27 01:37:35 -04001629 if (IS_P3P_TYPE(ha))
1630 qla82xx_set_driver_version(vha, QLA2XXX_VERSION);
1631 else
1632 qla25xx_set_driver_version(vha, QLA2XXX_VERSION);
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 return (rval);
1635}
1636
1637/**
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001638 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 * @ha: HA context
1640 *
1641 * Returns 0 on success.
1642 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001643int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001644qla2100_pci_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Andrew Vasqueza157b102007-05-07 07:43:01 -07001646 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001647 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001648 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001649 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -07001652 pci_try_set_mwi(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -07001655 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
1657
Andrew Vasquez737faec2008-10-24 15:13:45 -07001658 pci_disable_rom(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001660 /* Get PCI bus information. */
1661 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -07001662 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001663 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1664
1665 return QLA_SUCCESS;
1666}
1667
1668/**
1669 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
1670 * @ha: HA context
1671 *
1672 * Returns 0 on success.
1673 */
1674int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001675qla2300_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001676{
Andrew Vasqueza157b102007-05-07 07:43:01 -07001677 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001678 unsigned long flags = 0;
1679 uint32_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001680 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001681 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001682
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001683 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -07001684 pci_try_set_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001685
1686 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -07001687 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001688
1689 if (IS_QLA2322(ha) || IS_QLA6322(ha))
1690 w &= ~PCI_COMMAND_INTX_DISABLE;
Andrew Vasqueza157b102007-05-07 07:43:01 -07001691 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001692
1693 /*
1694 * If this is a 2300 card and not 2312, reset the
1695 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
1696 * the 2310 also reports itself as a 2300 so we need to get the
1697 * fb revision level -- a 6 indicates it really is a 2300 and
1698 * not a 2310.
1699 */
1700 if (IS_QLA2300(ha)) {
1701 spin_lock_irqsave(&ha->hardware_lock, flags);
1702
1703 /* Pause RISC. */
Andrew Vasquez3d716442005-07-06 10:30:26 -07001704 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001705 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -07001706 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001707 break;
1708
1709 udelay(10);
1710 }
1711
1712 /* Select FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -07001713 WRT_REG_WORD(&reg->ctrl_status, 0x20);
1714 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001715
1716 /* Get the fb rev level */
Andrew Vasquez3d716442005-07-06 10:30:26 -07001717 ha->fb_rev = RD_FB_CMD_REG(ha, reg);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001718
1719 if (ha->fb_rev == FPM_2300)
Andrew Vasqueza157b102007-05-07 07:43:01 -07001720 pci_clear_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001721
1722 /* Deselect FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -07001723 WRT_REG_WORD(&reg->ctrl_status, 0x0);
1724 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001725
1726 /* Release RISC module. */
Andrew Vasquez3d716442005-07-06 10:30:26 -07001727 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001728 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -07001729 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) == 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001730 break;
1731
1732 udelay(10);
1733 }
1734
1735 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1736 }
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001737
1738 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
1739
Andrew Vasquez737faec2008-10-24 15:13:45 -07001740 pci_disable_rom(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001741
1742 /* Get PCI bus information. */
1743 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -07001744 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001745 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1746
1747 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748}
1749
1750/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001751 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
1752 * @ha: HA context
1753 *
1754 * Returns 0 on success.
1755 */
1756int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001757qla24xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001758{
Andrew Vasqueza157b102007-05-07 07:43:01 -07001759 uint16_t w;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001760 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001761 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001762 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001763
1764 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -07001765 pci_try_set_mwi(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001766
1767 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -07001768 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001769 w &= ~PCI_COMMAND_INTX_DISABLE;
1770 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
1771
1772 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
1773
1774 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -07001775 if (pci_find_capability(ha->pdev, PCI_CAP_ID_PCIX))
1776 pcix_set_mmrbc(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001777
1778 /* PCIe -- adjust Maximum Read Request Size (2048). */
Jon Masone67f1322012-07-10 14:57:56 -07001779 if (pci_is_pcie(ha->pdev))
Chad Dupuis5ffd3a52012-08-22 14:21:26 -04001780 pcie_set_readrq(ha->pdev, 4096);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001781
Andrew Vasquez737faec2008-10-24 15:13:45 -07001782 pci_disable_rom(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001783
Auke Kok44c10132007-06-08 15:46:36 -07001784 ha->chip_revision = ha->pdev->revision;
Andrew Vasqueza8488ab2007-01-29 10:22:19 -08001785
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001786 /* Get PCI bus information. */
1787 spin_lock_irqsave(&ha->hardware_lock, flags);
1788 ha->pci_attr = RD_REG_DWORD(&reg->ctrl_status);
1789 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1790
1791 return QLA_SUCCESS;
1792}
1793
1794/**
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001795 * qla25xx_pci_config() - Setup ISP25xx PCI configuration registers.
1796 * @ha: HA context
1797 *
1798 * Returns 0 on success.
1799 */
1800int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001801qla25xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001802{
1803 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001804 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001805
1806 pci_set_master(ha->pdev);
1807 pci_try_set_mwi(ha->pdev);
1808
1809 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
1810 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
1811 w &= ~PCI_COMMAND_INTX_DISABLE;
1812 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
1813
1814 /* PCIe -- adjust Maximum Read Request Size (2048). */
Jon Masone67f1322012-07-10 14:57:56 -07001815 if (pci_is_pcie(ha->pdev))
Chad Dupuis5ffd3a52012-08-22 14:21:26 -04001816 pcie_set_readrq(ha->pdev, 4096);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001817
Andrew Vasquez737faec2008-10-24 15:13:45 -07001818 pci_disable_rom(ha->pdev);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001819
1820 ha->chip_revision = ha->pdev->revision;
1821
1822 return QLA_SUCCESS;
1823}
1824
1825/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 * qla2x00_isp_firmware() - Choose firmware image.
1827 * @ha: HA context
1828 *
1829 * Returns 0 on success.
1830 */
1831static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001832qla2x00_isp_firmware(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
1834 int rval;
Andrew Vasquez42e421b2008-07-10 16:56:01 -07001835 uint16_t loop_id, topo, sw_cap;
1836 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001837 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 /* Assume loading risc code */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001840 rval = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842 if (ha->flags.disable_risc_code_load) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001843 ql_log(ql_log_info, vha, 0x0079, "RISC CODE NOT loaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 /* Verify checksum of loaded RISC code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001846 rval = qla2x00_verify_checksum(vha, ha->fw_srisc_address);
Andrew Vasquez42e421b2008-07-10 16:56:01 -07001847 if (rval == QLA_SUCCESS) {
1848 /* And, verify we are not in ROM code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001849 rval = qla2x00_get_adapter_id(vha, &loop_id, &al_pa,
Andrew Vasquez42e421b2008-07-10 16:56:01 -07001850 &area, &domain, &topo, &sw_cap);
1851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001854 if (rval)
1855 ql_dbg(ql_dbg_init, vha, 0x007a,
1856 "**** Load RISC code ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 return (rval);
1859}
1860
1861/**
1862 * qla2x00_reset_chip() - Reset ISP chip.
1863 * @ha: HA context
1864 *
1865 * Returns 0 on success.
1866 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001867void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001868qla2x00_reset_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
1870 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001871 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001872 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 uint32_t cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 uint16_t cmd;
1875
Andrew Vasquez85880802009-12-15 21:29:46 -08001876 if (unlikely(pci_channel_offline(ha->pdev)))
1877 return;
1878
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001879 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881 spin_lock_irqsave(&ha->hardware_lock, flags);
1882
1883 /* Turn off master enable */
1884 cmd = 0;
1885 pci_read_config_word(ha->pdev, PCI_COMMAND, &cmd);
1886 cmd &= ~PCI_COMMAND_MASTER;
1887 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
1888
1889 if (!IS_QLA2100(ha)) {
1890 /* Pause RISC. */
1891 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
1892 if (IS_QLA2200(ha) || IS_QLA2300(ha)) {
1893 for (cnt = 0; cnt < 30000; cnt++) {
1894 if ((RD_REG_WORD(&reg->hccr) &
1895 HCCR_RISC_PAUSE) != 0)
1896 break;
1897 udelay(100);
1898 }
1899 } else {
1900 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
1901 udelay(10);
1902 }
1903
1904 /* Select FPM registers. */
1905 WRT_REG_WORD(&reg->ctrl_status, 0x20);
1906 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1907
1908 /* FPM Soft Reset. */
1909 WRT_REG_WORD(&reg->fpm_diag_config, 0x100);
1910 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
1911
1912 /* Toggle Fpm Reset. */
1913 if (!IS_QLA2200(ha)) {
1914 WRT_REG_WORD(&reg->fpm_diag_config, 0x0);
1915 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
1916 }
1917
1918 /* Select frame buffer registers. */
1919 WRT_REG_WORD(&reg->ctrl_status, 0x10);
1920 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1921
1922 /* Reset frame buffer FIFOs. */
1923 if (IS_QLA2200(ha)) {
1924 WRT_FB_CMD_REG(ha, reg, 0xa000);
1925 RD_FB_CMD_REG(ha, reg); /* PCI Posting. */
1926 } else {
1927 WRT_FB_CMD_REG(ha, reg, 0x00fc);
1928
1929 /* Read back fb_cmd until zero or 3 seconds max */
1930 for (cnt = 0; cnt < 3000; cnt++) {
1931 if ((RD_FB_CMD_REG(ha, reg) & 0xff) == 0)
1932 break;
1933 udelay(100);
1934 }
1935 }
1936
1937 /* Select RISC module registers. */
1938 WRT_REG_WORD(&reg->ctrl_status, 0);
1939 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1940
1941 /* Reset RISC processor. */
1942 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
1943 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
1944
1945 /* Release RISC processor. */
1946 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
1947 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
1948 }
1949
1950 WRT_REG_WORD(&reg->hccr, HCCR_CLR_RISC_INT);
1951 WRT_REG_WORD(&reg->hccr, HCCR_CLR_HOST_INT);
1952
1953 /* Reset ISP chip. */
1954 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
1955
1956 /* Wait for RISC to recover from reset. */
1957 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
1958 /*
1959 * It is necessary to for a delay here since the card doesn't
1960 * respond to PCI reads during a reset. On some architectures
1961 * this will result in an MCA.
1962 */
1963 udelay(20);
1964 for (cnt = 30000; cnt; cnt--) {
1965 if ((RD_REG_WORD(&reg->ctrl_status) &
1966 CSR_ISP_SOFT_RESET) == 0)
1967 break;
1968 udelay(100);
1969 }
1970 } else
1971 udelay(10);
1972
1973 /* Reset RISC processor. */
1974 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
1975
1976 WRT_REG_WORD(&reg->semaphore, 0);
1977
1978 /* Release RISC processor. */
1979 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
1980 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
1981
1982 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
1983 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquezffb39f02006-05-17 15:09:06 -07001984 if (RD_MAILBOX_REG(ha, reg, 0) != MBS_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 udelay(100);
1988 }
1989 } else
1990 udelay(100);
1991
1992 /* Turn on master enable */
1993 cmd |= PCI_COMMAND_MASTER;
1994 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
1995
1996 /* Disable RISC pause on FPM parity error. */
1997 if (!IS_QLA2100(ha)) {
1998 WRT_REG_WORD(&reg->hccr, HCCR_DISABLE_PARITY_PAUSE);
1999 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
2000 }
2001
2002 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2003}
2004
2005/**
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07002006 * qla81xx_reset_mpi() - Reset's MPI FW via Write MPI Register MBC.
2007 *
2008 * Returns 0 on success.
2009 */
Saurav Kashyapfa492632012-11-21 02:40:29 -05002010static int
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07002011qla81xx_reset_mpi(scsi_qla_host_t *vha)
2012{
2013 uint16_t mb[4] = {0x1010, 0, 1, 0};
2014
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002015 if (!IS_QLA81XX(vha->hw))
2016 return QLA_SUCCESS;
2017
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07002018 return qla81xx_write_mpi_register(vha, mb);
2019}
2020
2021/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07002022 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002023 * @ha: HA context
2024 *
2025 * Returns 0 on success.
2026 */
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002027static inline int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002028qla24xx_reset_risc(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002029{
2030 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002031 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002032 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
Bart Van Assche52c82822015-07-09 07:23:26 -07002033 uint32_t cnt;
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08002034 uint16_t wd;
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07002035 static int abts_cnt; /* ISP abort retry counts */
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002036 int rval = QLA_SUCCESS;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002037
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002038 spin_lock_irqsave(&ha->hardware_lock, flags);
2039
2040 /* Reset RISC. */
2041 WRT_REG_DWORD(&reg->ctrl_status, CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
2042 for (cnt = 0; cnt < 30000; cnt++) {
2043 if ((RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE) == 0)
2044 break;
2045
2046 udelay(10);
2047 }
2048
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002049 if (!(RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE))
2050 set_bit(DMA_SHUTDOWN_CMPL, &ha->fw_dump_cap_flags);
2051
2052 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x017e,
2053 "HCCR: 0x%x, Control Status %x, DMA active status:0x%x\n",
2054 RD_REG_DWORD(&reg->hccr),
2055 RD_REG_DWORD(&reg->ctrl_status),
2056 (RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE));
2057
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002058 WRT_REG_DWORD(&reg->ctrl_status,
2059 CSRX_ISP_SOFT_RESET|CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08002060 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
Andrew Vasquez88c26662005-07-08 17:59:26 -07002061
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08002062 udelay(100);
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002063
Andrew Vasquez88c26662005-07-08 17:59:26 -07002064 /* Wait for firmware to complete NVRAM accesses. */
Bart Van Assche52c82822015-07-09 07:23:26 -07002065 RD_REG_WORD(&reg->mailbox0);
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002066 for (cnt = 10000; RD_REG_WORD(&reg->mailbox0) != 0 &&
2067 rval == QLA_SUCCESS; cnt--) {
Andrew Vasquez88c26662005-07-08 17:59:26 -07002068 barrier();
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002069 if (cnt)
2070 udelay(5);
2071 else
2072 rval = QLA_FUNCTION_TIMEOUT;
Andrew Vasquez88c26662005-07-08 17:59:26 -07002073 }
2074
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002075 if (rval == QLA_SUCCESS)
2076 set_bit(ISP_MBX_RDY, &ha->fw_dump_cap_flags);
2077
2078 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x017f,
2079 "HCCR: 0x%x, MailBox0 Status 0x%x\n",
2080 RD_REG_DWORD(&reg->hccr),
2081 RD_REG_DWORD(&reg->mailbox0));
2082
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08002083 /* Wait for soft-reset to complete. */
Bart Van Assche52c82822015-07-09 07:23:26 -07002084 RD_REG_DWORD(&reg->ctrl_status);
Quinn Tran200ffb12016-12-23 18:06:12 -08002085 for (cnt = 0; cnt < 60; cnt++) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002086 barrier();
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002087 if ((RD_REG_DWORD(&reg->ctrl_status) &
2088 CSRX_ISP_SOFT_RESET) == 0)
2089 break;
2090
2091 udelay(5);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002092 }
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002093 if (!(RD_REG_DWORD(&reg->ctrl_status) & CSRX_ISP_SOFT_RESET))
2094 set_bit(ISP_SOFT_RESET_CMPL, &ha->fw_dump_cap_flags);
2095
2096 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x015d,
2097 "HCCR: 0x%x, Soft Reset status: 0x%x\n",
2098 RD_REG_DWORD(&reg->hccr),
2099 RD_REG_DWORD(&reg->ctrl_status));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002100
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07002101 /* If required, do an MPI FW reset now */
2102 if (test_and_clear_bit(MPI_RESET_NEEDED, &vha->dpc_flags)) {
2103 if (qla81xx_reset_mpi(vha) != QLA_SUCCESS) {
2104 if (++abts_cnt < 5) {
2105 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2106 set_bit(MPI_RESET_NEEDED, &vha->dpc_flags);
2107 } else {
2108 /*
2109 * We exhausted the ISP abort retries. We have to
2110 * set the board offline.
2111 */
2112 abts_cnt = 0;
2113 vha->flags.online = 0;
2114 }
2115 }
2116 }
2117
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002118 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
2119 RD_REG_DWORD(&reg->hccr);
2120
2121 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
2122 RD_REG_DWORD(&reg->hccr);
2123
2124 WRT_REG_DWORD(&reg->hccr, HCCRX_CLR_RISC_RESET);
2125 RD_REG_DWORD(&reg->hccr);
2126
Bart Van Assche52c82822015-07-09 07:23:26 -07002127 RD_REG_WORD(&reg->mailbox0);
Quinn Tran200ffb12016-12-23 18:06:12 -08002128 for (cnt = 60; RD_REG_WORD(&reg->mailbox0) != 0 &&
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002129 rval == QLA_SUCCESS; cnt--) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002130 barrier();
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002131 if (cnt)
2132 udelay(5);
2133 else
2134 rval = QLA_FUNCTION_TIMEOUT;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002135 }
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002136 if (rval == QLA_SUCCESS)
2137 set_bit(RISC_RDY_AFT_RESET, &ha->fw_dump_cap_flags);
2138
2139 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x015e,
2140 "Host Risc 0x%x, mailbox0 0x%x\n",
2141 RD_REG_DWORD(&reg->hccr),
2142 RD_REG_WORD(&reg->mailbox0));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002143
2144 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez124f85e2009-01-05 11:18:06 -08002145
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002146 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x015f,
2147 "Driver in %s mode\n",
2148 IS_NOPOLLING_TYPE(ha) ? "Interrupt" : "Polling");
2149
Andrew Vasquez124f85e2009-01-05 11:18:06 -08002150 if (IS_NOPOLLING_TYPE(ha))
2151 ha->isp_ops->enable_intrs(ha);
Himanshu Madhanid14e72f2015-04-09 15:00:03 -04002152
2153 return rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002154}
2155
Joe Carnuccio4ea2c9c2012-11-21 02:40:37 -05002156static void
2157qla25xx_read_risc_sema_reg(scsi_qla_host_t *vha, uint32_t *data)
2158{
2159 struct device_reg_24xx __iomem *reg = &vha->hw->iobase->isp24;
2160
2161 WRT_REG_DWORD(&reg->iobase_addr, RISC_REGISTER_BASE_OFFSET);
2162 *data = RD_REG_DWORD(&reg->iobase_window + RISC_REGISTER_WINDOW_OFFET);
2163
2164}
2165
2166static void
2167qla25xx_write_risc_sema_reg(scsi_qla_host_t *vha, uint32_t data)
2168{
2169 struct device_reg_24xx __iomem *reg = &vha->hw->iobase->isp24;
2170
2171 WRT_REG_DWORD(&reg->iobase_addr, RISC_REGISTER_BASE_OFFSET);
2172 WRT_REG_DWORD(&reg->iobase_window + RISC_REGISTER_WINDOW_OFFET, data);
2173}
2174
2175static void
2176qla25xx_manipulate_risc_semaphore(scsi_qla_host_t *vha)
2177{
Joe Carnuccio4ea2c9c2012-11-21 02:40:37 -05002178 uint32_t wd32 = 0;
2179 uint delta_msec = 100;
2180 uint elapsed_msec = 0;
2181 uint timeout_msec;
2182 ulong n;
2183
Joe Carnucciocc790762015-08-04 13:37:53 -04002184 if (vha->hw->pdev->subsystem_device != 0x0175 &&
2185 vha->hw->pdev->subsystem_device != 0x0240)
Joe Carnuccio4ea2c9c2012-11-21 02:40:37 -05002186 return;
2187
Joe Carnuccio8dd7e3a2015-08-04 13:37:54 -04002188 WRT_REG_DWORD(&vha->hw->iobase->isp24.hccr, HCCRX_SET_RISC_PAUSE);
2189 udelay(100);
2190
Joe Carnuccio4ea2c9c2012-11-21 02:40:37 -05002191attempt:
2192 timeout_msec = TIMEOUT_SEMAPHORE;
2193 n = timeout_msec / delta_msec;
2194 while (n--) {
2195 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_SET);
2196 qla25xx_read_risc_sema_reg(vha, &wd32);
2197 if (wd32 & RISC_SEMAPHORE)
2198 break;
2199 msleep(delta_msec);
2200 elapsed_msec += delta_msec;
2201 if (elapsed_msec > TIMEOUT_TOTAL_ELAPSED)
2202 goto force;
2203 }
2204
2205 if (!(wd32 & RISC_SEMAPHORE))
2206 goto force;
2207
2208 if (!(wd32 & RISC_SEMAPHORE_FORCE))
2209 goto acquired;
2210
2211 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_CLR);
2212 timeout_msec = TIMEOUT_SEMAPHORE_FORCE;
2213 n = timeout_msec / delta_msec;
2214 while (n--) {
2215 qla25xx_read_risc_sema_reg(vha, &wd32);
2216 if (!(wd32 & RISC_SEMAPHORE_FORCE))
2217 break;
2218 msleep(delta_msec);
2219 elapsed_msec += delta_msec;
2220 if (elapsed_msec > TIMEOUT_TOTAL_ELAPSED)
2221 goto force;
2222 }
2223
2224 if (wd32 & RISC_SEMAPHORE_FORCE)
2225 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_FORCE_CLR);
2226
2227 goto attempt;
2228
2229force:
2230 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_FORCE_SET);
2231
2232acquired:
2233 return;
2234}
2235
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002236/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07002237 * qla24xx_reset_chip() - Reset ISP24xx chip.
2238 * @ha: HA context
2239 *
2240 * Returns 0 on success.
2241 */
2242void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002243qla24xx_reset_chip(scsi_qla_host_t *vha)
Andrew Vasquez88c26662005-07-08 17:59:26 -07002244{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002245 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez85880802009-12-15 21:29:46 -08002246
2247 if (pci_channel_offline(ha->pdev) &&
2248 ha->flags.pci_channel_io_perm_failure) {
2249 return;
2250 }
2251
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002252 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07002253
Joe Carnuccio4ea2c9c2012-11-21 02:40:37 -05002254 qla25xx_manipulate_risc_semaphore(vha);
2255
Andrew Vasquez88c26662005-07-08 17:59:26 -07002256 /* Perform RISC reset. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002257 qla24xx_reset_risc(vha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07002258}
2259
2260/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 * qla2x00_chip_diag() - Test chip for proper operation.
2262 * @ha: HA context
2263 *
2264 * Returns 0 on success.
2265 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002266int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002267qla2x00_chip_diag(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
2269 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002270 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07002271 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 unsigned long flags = 0;
2273 uint16_t data;
2274 uint32_t cnt;
2275 uint16_t mb[5];
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002276 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 /* Assume a failed state */
2279 rval = QLA_FUNCTION_FAILED;
2280
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002281 ql_dbg(ql_dbg_init, vha, 0x007b,
2282 "Testing device at %lx.\n", (u_long)&reg->flash_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
2284 spin_lock_irqsave(&ha->hardware_lock, flags);
2285
2286 /* Reset ISP chip. */
2287 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
2288
2289 /*
2290 * We need to have a delay here since the card will not respond while
2291 * in reset causing an MCA on some architectures.
2292 */
2293 udelay(20);
2294 data = qla2x00_debounce_register(&reg->ctrl_status);
2295 for (cnt = 6000000 ; cnt && (data & CSR_ISP_SOFT_RESET); cnt--) {
2296 udelay(5);
2297 data = RD_REG_WORD(&reg->ctrl_status);
2298 barrier();
2299 }
2300
2301 if (!cnt)
2302 goto chip_diag_failed;
2303
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002304 ql_dbg(ql_dbg_init, vha, 0x007c,
2305 "Reset register cleared by chip reset.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 /* Reset RISC processor. */
2308 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
2309 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
2310
2311 /* Workaround for QLA2312 PCI parity error */
2312 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
2313 data = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 0));
2314 for (cnt = 6000000; cnt && (data == MBS_BUSY); cnt--) {
2315 udelay(5);
2316 data = RD_MAILBOX_REG(ha, reg, 0);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002317 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 }
2319 } else
2320 udelay(10);
2321
2322 if (!cnt)
2323 goto chip_diag_failed;
2324
2325 /* Check product ID of chip */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002326 ql_dbg(ql_dbg_init, vha, 0x007d, "Checking product Id of chip.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
2329 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
2330 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
2331 mb[4] = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 4));
2332 if (mb[1] != PROD_ID_1 || (mb[2] != PROD_ID_2 && mb[2] != PROD_ID_2a) ||
2333 mb[3] != PROD_ID_3) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002334 ql_log(ql_log_warn, vha, 0x0062,
2335 "Wrong product ID = 0x%x,0x%x,0x%x.\n",
2336 mb[1], mb[2], mb[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
2338 goto chip_diag_failed;
2339 }
2340 ha->product_id[0] = mb[1];
2341 ha->product_id[1] = mb[2];
2342 ha->product_id[2] = mb[3];
2343 ha->product_id[3] = mb[4];
2344
2345 /* Adjust fw RISC transfer size */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002346 if (req->length > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
2348 else
2349 ha->fw_transfer_size = REQUEST_ENTRY_SIZE *
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002350 req->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352 if (IS_QLA2200(ha) &&
2353 RD_MAILBOX_REG(ha, reg, 7) == QLA2200A_RISC_ROM_VER) {
2354 /* Limit firmware transfer size with a 2200A */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002355 ql_dbg(ql_dbg_init, vha, 0x007e, "Found QLA2200A Chip.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08002357 ha->device_type |= DT_ISP2200A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 ha->fw_transfer_size = 128;
2359 }
2360
2361 /* Wrap Incoming Mailboxes Test. */
2362 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2363
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002364 ql_dbg(ql_dbg_init, vha, 0x007f, "Checking mailboxes.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002365 rval = qla2x00_mbx_reg_test(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002366 if (rval)
2367 ql_log(ql_log_warn, vha, 0x0080,
2368 "Failed mailbox send register test.\n");
2369 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 /* Flag a successful rval */
2371 rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 spin_lock_irqsave(&ha->hardware_lock, flags);
2373
2374chip_diag_failed:
2375 if (rval)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002376 ql_log(ql_log_info, vha, 0x0081,
2377 "Chip diagnostics **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
2379 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2380
2381 return (rval);
2382}
2383
2384/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002385 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
2386 * @ha: HA context
2387 *
2388 * Returns 0 on success.
2389 */
2390int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002391qla24xx_chip_diag(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002392{
2393 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002394 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002395 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002396
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04002397 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07002398 return QLA_SUCCESS;
2399
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002400 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * req->length;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002401
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002402 rval = qla2x00_mbx_reg_test(vha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002403 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002404 ql_log(ql_log_warn, vha, 0x0082,
2405 "Failed mailbox send register test.\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002406 } else {
2407 /* Flag a successful rval */
2408 rval = QLA_SUCCESS;
2409 }
2410
2411 return rval;
2412}
2413
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002414void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002415qla2x00_alloc_fw_dump(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002416{
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002417 int rval;
2418 uint32_t dump_size, fixed_size, mem_size, req_q_size, rsp_q_size,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002419 eft_size, fce_size, mq_size;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002420 dma_addr_t tc_dma;
2421 void *tc;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002422 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002423 struct req_que *req = ha->req_q_map[0];
2424 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07002425
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002426 if (ha->fw_dump) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002427 ql_dbg(ql_dbg_init, vha, 0x00bd,
2428 "Firmware dump already allocated.\n");
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002429 return;
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07002430 }
2431
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002432 ha->fw_dumped = 0;
Hiral Patel61f098d2014-04-11 16:54:21 -04002433 ha->fw_dump_cap_flags = 0;
Chad Dupuisf73cb692014-02-26 04:15:06 -05002434 dump_size = fixed_size = mem_size = eft_size = fce_size = mq_size = 0;
2435 req_q_size = rsp_q_size = 0;
2436
2437 if (IS_QLA27XX(ha))
2438 goto try_fce;
2439
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002440 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2441 fixed_size = sizeof(struct qla2100_fw_dump);
2442 } else if (IS_QLA23XX(ha)) {
2443 fixed_size = offsetof(struct qla2300_fw_dump, data_ram);
2444 mem_size = (ha->fw_memory_size - 0x11000 + 1) *
2445 sizeof(uint16_t);
Andrew Vasqueze4289242007-07-19 15:05:56 -07002446 } else if (IS_FWI2_CAPABLE(ha)) {
Himanshu Madhanib20f02e2015-06-10 11:05:18 -04002447 if (IS_QLA83XX(ha) || IS_QLA27XX(ha))
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002448 fixed_size = offsetof(struct qla83xx_fw_dump, ext_mem);
2449 else if (IS_QLA81XX(ha))
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002450 fixed_size = offsetof(struct qla81xx_fw_dump, ext_mem);
2451 else if (IS_QLA25XX(ha))
2452 fixed_size = offsetof(struct qla25xx_fw_dump, ext_mem);
2453 else
2454 fixed_size = offsetof(struct qla24xx_fw_dump, ext_mem);
Chad Dupuisf73cb692014-02-26 04:15:06 -05002455
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002456 mem_size = (ha->fw_memory_size - 0x100000 + 1) *
2457 sizeof(uint32_t);
Giridhar Malavali050c9bb2012-02-09 11:15:33 -08002458 if (ha->mqenable) {
Himanshu Madhanib20f02e2015-06-10 11:05:18 -04002459 if (!IS_QLA83XX(ha) && !IS_QLA27XX(ha))
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002460 mq_size = sizeof(struct qla2xxx_mq_chain);
Giridhar Malavali050c9bb2012-02-09 11:15:33 -08002461 /*
2462 * Allocate maximum buffer size for all queues.
2463 * Resizing must be done at end-of-dump processing.
2464 */
2465 mq_size += ha->max_req_queues *
2466 (req->length * sizeof(request_t));
2467 mq_size += ha->max_rsp_queues *
2468 (rsp->length * sizeof(response_t));
2469 }
Arun Easi00876ae2013-03-25 02:21:37 -04002470 if (ha->tgt.atio_ring)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002471 mq_size += ha->tgt.atio_q_length * sizeof(request_t);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002472 /* Allocate memory for Fibre Channel Event Buffer. */
Chad Dupuisf73cb692014-02-26 04:15:06 -05002473 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha) && !IS_QLA83XX(ha) &&
2474 !IS_QLA27XX(ha))
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002475 goto try_eft;
2476
Chad Dupuisf73cb692014-02-26 04:15:06 -05002477try_fce:
2478 if (ha->fce)
2479 dma_free_coherent(&ha->pdev->dev,
2480 FCE_SIZE, ha->fce, ha->fce_dma);
2481
2482 /* Allocate memory for Fibre Channel Event Buffer. */
Joe Perches0ea85b52014-06-15 13:37:51 -07002483 tc = dma_zalloc_coherent(&ha->pdev->dev, FCE_SIZE, &tc_dma,
2484 GFP_KERNEL);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002485 if (!tc) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002486 ql_log(ql_log_warn, vha, 0x00be,
2487 "Unable to allocate (%d KB) for FCE.\n",
2488 FCE_SIZE / 1024);
Anirban Chakraborty17d98632008-12-18 10:06:15 -08002489 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002490 }
2491
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002492 rval = qla2x00_enable_fce_trace(vha, tc_dma, FCE_NUM_BUFFERS,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002493 ha->fce_mb, &ha->fce_bufs);
2494 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002495 ql_log(ql_log_warn, vha, 0x00bf,
2496 "Unable to initialize FCE (%d).\n", rval);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002497 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, tc,
2498 tc_dma);
2499 ha->flags.fce_enabled = 0;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08002500 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002501 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08002502 ql_dbg(ql_dbg_init, vha, 0x00c0,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002503 "Allocate (%d KB) for FCE...\n", FCE_SIZE / 1024);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002504
Giridhar Malavali7d9dade2009-03-24 09:07:58 -07002505 fce_size = sizeof(struct qla2xxx_fce_chain) + FCE_SIZE;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002506 ha->flags.fce_enabled = 1;
2507 ha->fce_dma = tc_dma;
2508 ha->fce = tc;
Chad Dupuisf73cb692014-02-26 04:15:06 -05002509
Andrew Vasquez436a7b12008-07-10 16:55:54 -07002510try_eft:
Chad Dupuisf73cb692014-02-26 04:15:06 -05002511 if (ha->eft)
2512 dma_free_coherent(&ha->pdev->dev,
2513 EFT_SIZE, ha->eft, ha->eft_dma);
2514
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002515 /* Allocate memory for Extended Trace Buffer. */
Joe Perches0ea85b52014-06-15 13:37:51 -07002516 tc = dma_zalloc_coherent(&ha->pdev->dev, EFT_SIZE, &tc_dma,
2517 GFP_KERNEL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002518 if (!tc) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002519 ql_log(ql_log_warn, vha, 0x00c1,
2520 "Unable to allocate (%d KB) for EFT.\n",
2521 EFT_SIZE / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002522 goto cont_alloc;
2523 }
2524
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002525 rval = qla2x00_enable_eft_trace(vha, tc_dma, EFT_NUM_BUFFERS);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002526 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002527 ql_log(ql_log_warn, vha, 0x00c2,
2528 "Unable to initialize EFT (%d).\n", rval);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002529 dma_free_coherent(&ha->pdev->dev, EFT_SIZE, tc,
2530 tc_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002531 goto cont_alloc;
2532 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08002533 ql_dbg(ql_dbg_init, vha, 0x00c3,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002534 "Allocated (%d KB) EFT ...\n", EFT_SIZE / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002535
2536 eft_size = EFT_SIZE;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002537 ha->eft_dma = tc_dma;
2538 ha->eft = tc;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002539 }
Chad Dupuisf73cb692014-02-26 04:15:06 -05002540
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002541cont_alloc:
Chad Dupuisf73cb692014-02-26 04:15:06 -05002542 if (IS_QLA27XX(ha)) {
2543 if (!ha->fw_dump_template) {
2544 ql_log(ql_log_warn, vha, 0x00ba,
2545 "Failed missing fwdump template\n");
2546 return;
2547 }
2548 dump_size = qla27xx_fwdt_calculate_dump_size(vha);
2549 ql_dbg(ql_dbg_init, vha, 0x00fa,
2550 "-> allocating fwdump (%x bytes)...\n", dump_size);
2551 goto allocate;
2552 }
2553
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002554 req_q_size = req->length * sizeof(request_t);
2555 rsp_q_size = rsp->length * sizeof(response_t);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002556 dump_size = offsetof(struct qla2xxx_fw_dump, isp);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002557 dump_size += fixed_size + mem_size + req_q_size + rsp_q_size + eft_size;
Andrew Vasquezbb99de62009-01-05 11:18:08 -08002558 ha->chain_offset = dump_size;
2559 dump_size += mq_size + fce_size;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002560
Chad Dupuisf73cb692014-02-26 04:15:06 -05002561allocate:
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07002562 ha->fw_dump = vmalloc(dump_size);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002563 if (!ha->fw_dump) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002564 ql_log(ql_log_warn, vha, 0x00c4,
2565 "Unable to allocate (%d KB) for firmware dump.\n",
2566 dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002567
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07002568 if (ha->fce) {
2569 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
2570 ha->fce_dma);
2571 ha->fce = NULL;
2572 ha->fce_dma = 0;
2573 }
2574
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002575 if (ha->eft) {
2576 dma_free_coherent(&ha->pdev->dev, eft_size, ha->eft,
2577 ha->eft_dma);
2578 ha->eft = NULL;
2579 ha->eft_dma = 0;
2580 }
2581 return;
2582 }
Chad Dupuisf73cb692014-02-26 04:15:06 -05002583 ha->fw_dump_len = dump_size;
Chad Dupuiscfb09192011-11-18 09:03:07 -08002584 ql_dbg(ql_dbg_init, vha, 0x00c5,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002585 "Allocated (%d KB) for firmware dump.\n", dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002586
Chad Dupuisf73cb692014-02-26 04:15:06 -05002587 if (IS_QLA27XX(ha))
2588 return;
2589
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002590 ha->fw_dump->signature[0] = 'Q';
2591 ha->fw_dump->signature[1] = 'L';
2592 ha->fw_dump->signature[2] = 'G';
2593 ha->fw_dump->signature[3] = 'C';
Bart Van Asschead950362015-07-09 07:24:08 -07002594 ha->fw_dump->version = htonl(1);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002595
2596 ha->fw_dump->fixed_size = htonl(fixed_size);
2597 ha->fw_dump->mem_size = htonl(mem_size);
2598 ha->fw_dump->req_q_size = htonl(req_q_size);
2599 ha->fw_dump->rsp_q_size = htonl(rsp_q_size);
2600
2601 ha->fw_dump->eft_size = htonl(eft_size);
2602 ha->fw_dump->eft_addr_l = htonl(LSD(ha->eft_dma));
2603 ha->fw_dump->eft_addr_h = htonl(MSD(ha->eft_dma));
2604
2605 ha->fw_dump->header_size =
2606 htonl(offsetof(struct qla2xxx_fw_dump, isp));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002607}
2608
Andrew Vasquez18e75552009-06-03 09:55:30 -07002609static int
2610qla81xx_mpi_sync(scsi_qla_host_t *vha)
2611{
2612#define MPS_MASK 0xe0
2613 int rval;
2614 uint16_t dc;
2615 uint32_t dw;
Andrew Vasquez18e75552009-06-03 09:55:30 -07002616
2617 if (!IS_QLA81XX(vha->hw))
2618 return QLA_SUCCESS;
2619
2620 rval = qla2x00_write_ram_word(vha, 0x7c00, 1);
2621 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002622 ql_log(ql_log_warn, vha, 0x0105,
2623 "Unable to acquire semaphore.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07002624 goto done;
2625 }
2626
2627 pci_read_config_word(vha->hw->pdev, 0x54, &dc);
2628 rval = qla2x00_read_ram_word(vha, 0x7a15, &dw);
2629 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002630 ql_log(ql_log_warn, vha, 0x0067, "Unable to read sync.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07002631 goto done_release;
2632 }
2633
2634 dc &= MPS_MASK;
2635 if (dc == (dw & MPS_MASK))
2636 goto done_release;
2637
2638 dw &= ~MPS_MASK;
2639 dw |= dc;
2640 rval = qla2x00_write_ram_word(vha, 0x7a15, dw);
2641 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002642 ql_log(ql_log_warn, vha, 0x0114, "Unable to gain sync.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07002643 }
2644
2645done_release:
2646 rval = qla2x00_write_ram_word(vha, 0x7c00, 0);
2647 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002648 ql_log(ql_log_warn, vha, 0x006d,
2649 "Unable to release semaphore.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07002650 }
2651
2652done:
2653 return rval;
2654}
2655
Chad Dupuis8d93f552013-01-30 03:34:37 -05002656int
2657qla2x00_alloc_outstanding_cmds(struct qla_hw_data *ha, struct req_que *req)
2658{
2659 /* Don't try to reallocate the array */
2660 if (req->outstanding_cmds)
2661 return QLA_SUCCESS;
2662
Michael Hernandezd7459522016-12-12 14:40:07 -08002663 if (!IS_FWI2_CAPABLE(ha))
Chad Dupuis8d93f552013-01-30 03:34:37 -05002664 req->num_outstanding_cmds = DEFAULT_OUTSTANDING_COMMANDS;
2665 else {
Quinn Tran03e8c682015-12-17 14:56:59 -05002666 if (ha->cur_fw_xcb_count <= ha->cur_fw_iocb_count)
2667 req->num_outstanding_cmds = ha->cur_fw_xcb_count;
Chad Dupuis8d93f552013-01-30 03:34:37 -05002668 else
Quinn Tran03e8c682015-12-17 14:56:59 -05002669 req->num_outstanding_cmds = ha->cur_fw_iocb_count;
Chad Dupuis8d93f552013-01-30 03:34:37 -05002670 }
2671
2672 req->outstanding_cmds = kzalloc(sizeof(srb_t *) *
2673 req->num_outstanding_cmds, GFP_KERNEL);
2674
2675 if (!req->outstanding_cmds) {
2676 /*
2677 * Try to allocate a minimal size just so we can get through
2678 * initialization.
2679 */
2680 req->num_outstanding_cmds = MIN_OUTSTANDING_COMMANDS;
2681 req->outstanding_cmds = kzalloc(sizeof(srb_t *) *
2682 req->num_outstanding_cmds, GFP_KERNEL);
2683
2684 if (!req->outstanding_cmds) {
2685 ql_log(ql_log_fatal, NULL, 0x0126,
2686 "Failed to allocate memory for "
2687 "outstanding_cmds for req_que %p.\n", req);
2688 req->num_outstanding_cmds = 0;
2689 return QLA_FUNCTION_FAILED;
2690 }
2691 }
2692
2693 return QLA_SUCCESS;
2694}
2695
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002696/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 * qla2x00_setup_chip() - Load and start RISC firmware.
2698 * @ha: HA context
2699 *
2700 * Returns 0 on success.
2701 */
2702static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002703qla2x00_setup_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002705 int rval;
2706 uint32_t srisc_address = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002707 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3db06522008-01-31 12:33:49 -08002708 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2709 unsigned long flags;
Andrew Vasquezdda772e2009-03-24 09:08:00 -07002710 uint16_t fw_major_version;
Andrew Vasquez3db06522008-01-31 12:33:49 -08002711
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04002712 if (IS_P3P_TYPE(ha)) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07002713 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez14e303d2010-07-23 15:28:29 +05002714 if (rval == QLA_SUCCESS) {
2715 qla2x00_stop_firmware(vha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07002716 goto enable_82xx_npiv;
Andrew Vasquez14e303d2010-07-23 15:28:29 +05002717 } else
Giridhar Malavalib9637522010-05-28 15:08:15 -07002718 goto failed;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002719 }
2720
Andrew Vasquez3db06522008-01-31 12:33:49 -08002721 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
2722 /* Disable SRAM, Instruction RAM and GP RAM parity. */
2723 spin_lock_irqsave(&ha->hardware_lock, flags);
2724 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x0));
2725 RD_REG_WORD(&reg->hccr);
2726 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Andrew Vasquez18e75552009-06-03 09:55:30 -07002729 qla81xx_mpi_sync(vha);
2730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 /* Load firmware sequences */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002732 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002733 if (rval == QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002734 ql_dbg(ql_dbg_init, vha, 0x00c9,
2735 "Verifying Checksum of loaded RISC code.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002737 rval = qla2x00_verify_checksum(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 if (rval == QLA_SUCCESS) {
2739 /* Start firmware execution. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002740 ql_dbg(ql_dbg_init, vha, 0x00ca,
2741 "Starting firmware.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Himanshu Madhanib0d6cab2015-12-17 14:56:56 -05002743 if (ql2xexlogins)
2744 ha->flags.exlogins_enabled = 1;
2745
Himanshu Madhani2f56a7f2015-12-17 14:56:57 -05002746 if (ql2xexchoffld)
2747 ha->flags.exchoffld_enabled = 1;
2748
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002749 rval = qla2x00_execute_fw(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 /* Retrieve firmware information. */
Andrew Vasquezdda772e2009-03-24 09:08:00 -07002751 if (rval == QLA_SUCCESS) {
Himanshu Madhanib0d6cab2015-12-17 14:56:56 -05002752 rval = qla2x00_set_exlogins_buffer(vha);
2753 if (rval != QLA_SUCCESS)
2754 goto failed;
2755
Himanshu Madhani2f56a7f2015-12-17 14:56:57 -05002756 rval = qla2x00_set_exchoffld_buffer(vha);
2757 if (rval != QLA_SUCCESS)
2758 goto failed;
2759
Giridhar Malavalia9083012010-04-12 17:59:55 -07002760enable_82xx_npiv:
Andrew Vasquezdda772e2009-03-24 09:08:00 -07002761 fw_major_version = ha->fw_major_version;
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04002762 if (IS_P3P_TYPE(ha))
Giridhar Malavali31731672011-08-16 11:31:54 -07002763 qla82xx_check_md_needed(vha);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002764 else
2765 rval = qla2x00_get_fw_version(vha);
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07002766 if (rval != QLA_SUCCESS)
2767 goto failed;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002768 ha->flags.npiv_supported = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002769 if (IS_QLA2XXX_MIDTYPE(ha) &&
Mike Hernandez946fb892008-08-13 21:36:59 -07002770 (ha->fw_attributes & BIT_2)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002771 ha->flags.npiv_supported = 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07002772 if ((!ha->max_npiv_vports) ||
2773 ((ha->max_npiv_vports + 1) %
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08002774 MIN_MULTI_ID_FABRIC))
Seokmann Ju4d0ea242007-09-20 14:07:43 -07002775 ha->max_npiv_vports =
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08002776 MIN_MULTI_ID_FABRIC - 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07002777 }
Quinn Tran03e8c682015-12-17 14:56:59 -05002778 qla2x00_get_resource_cnts(vha);
Andrew Vasquezd743de62009-03-24 09:08:15 -07002779
Chad Dupuis8d93f552013-01-30 03:34:37 -05002780 /*
2781 * Allocate the array of outstanding commands
2782 * now that we know the firmware resources.
2783 */
2784 rval = qla2x00_alloc_outstanding_cmds(ha,
2785 vha->req);
2786 if (rval != QLA_SUCCESS)
2787 goto failed;
2788
Saurav Kashyapbe5ea3c2011-11-18 09:02:11 -08002789 if (!fw_major_version && ql2xallocfwdump
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04002790 && !(IS_P3P_TYPE(ha)))
Giridhar Malavali08de2842011-08-16 11:31:44 -07002791 qla2x00_alloc_fw_dump(vha);
Chad Dupuis3b6e5b92013-10-30 03:38:09 -04002792 } else {
2793 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 }
2795 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002796 ql_log(ql_log_fatal, vha, 0x00cd,
2797 "ISP Firmware failed checksum.\n");
2798 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 }
Andrew Vasquezc74d88a2012-08-22 14:21:19 -04002800 } else
2801 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Andrew Vasquez3db06522008-01-31 12:33:49 -08002803 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
2804 /* Enable proper parity. */
2805 spin_lock_irqsave(&ha->hardware_lock, flags);
2806 if (IS_QLA2300(ha))
2807 /* SRAM parity */
2808 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x1);
2809 else
2810 /* SRAM, Instruction RAM and GP RAM parity */
2811 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x7);
2812 RD_REG_WORD(&reg->hccr);
2813 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2814 }
2815
Chad Dupuisf3982d82014-09-25 05:16:57 -04002816 if (IS_QLA27XX(ha))
2817 ha->flags.fac_supported = 1;
2818 else if (rval == QLA_SUCCESS && IS_FAC_REQUIRED(ha)) {
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07002819 uint32_t size;
2820
2821 rval = qla81xx_fac_get_sector_size(vha, &size);
2822 if (rval == QLA_SUCCESS) {
2823 ha->flags.fac_supported = 1;
2824 ha->fdt_block_size = size << 2;
2825 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002826 ql_log(ql_log_warn, vha, 0x00ce,
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07002827 "Unsupported FAC firmware (%d.%02d.%02d).\n",
2828 ha->fw_major_version, ha->fw_minor_version,
2829 ha->fw_subminor_version);
Joe Carnuccio1ca60e32014-02-26 04:15:02 -05002830
Chad Dupuisf73cb692014-02-26 04:15:06 -05002831 if (IS_QLA83XX(ha) || IS_QLA27XX(ha)) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002832 ha->flags.fac_supported = 0;
2833 rval = QLA_SUCCESS;
2834 }
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07002835 }
2836 }
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07002837failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002839 ql_log(ql_log_fatal, vha, 0x00cf,
2840 "Setup chip ****FAILED****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 }
2842
2843 return (rval);
2844}
2845
2846/**
2847 * qla2x00_init_response_q_entries() - Initializes response queue entries.
2848 * @ha: HA context
2849 *
2850 * Beginning of request ring has initialization control block already built
2851 * by nvram config routine.
2852 *
2853 * Returns 0 on success.
2854 */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002855void
2856qla2x00_init_response_q_entries(struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857{
2858 uint16_t cnt;
2859 response_t *pkt;
2860
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002861 rsp->ring_ptr = rsp->ring;
2862 rsp->ring_index = 0;
2863 rsp->status_srb = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002864 pkt = rsp->ring_ptr;
2865 for (cnt = 0; cnt < rsp->length; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 pkt->signature = RESPONSE_PROCESSED;
2867 pkt++;
2868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869}
2870
2871/**
2872 * qla2x00_update_fw_options() - Read and process firmware options.
2873 * @ha: HA context
2874 *
2875 * Returns 0 on success.
2876 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002877void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002878qla2x00_update_fw_options(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879{
2880 uint16_t swing, emphasis, tx_sens, rx_sens;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002881 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883 memset(ha->fw_options, 0, sizeof(ha->fw_options));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002884 qla2x00_get_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
2886 if (IS_QLA2100(ha) || IS_QLA2200(ha))
2887 return;
2888
2889 /* Serial Link options. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002890 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x0115,
2891 "Serial link options.\n");
2892 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0109,
2893 (uint8_t *)&ha->fw_seriallink_options,
2894 sizeof(ha->fw_seriallink_options));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
2896 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
2897 if (ha->fw_seriallink_options[3] & BIT_2) {
2898 ha->fw_options[1] |= FO1_SET_EMPHASIS_SWING;
2899
2900 /* 1G settings */
2901 swing = ha->fw_seriallink_options[2] & (BIT_2 | BIT_1 | BIT_0);
2902 emphasis = (ha->fw_seriallink_options[2] &
2903 (BIT_4 | BIT_3)) >> 3;
2904 tx_sens = ha->fw_seriallink_options[0] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002905 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 rx_sens = (ha->fw_seriallink_options[0] &
2907 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
2908 ha->fw_options[10] = (emphasis << 14) | (swing << 8);
2909 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
2910 if (rx_sens == 0x0)
2911 rx_sens = 0x3;
2912 ha->fw_options[10] |= (tx_sens << 4) | rx_sens;
2913 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
2914 ha->fw_options[10] |= BIT_5 |
2915 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
2916 (tx_sens & (BIT_1 | BIT_0));
2917
2918 /* 2G settings */
2919 swing = (ha->fw_seriallink_options[2] &
2920 (BIT_7 | BIT_6 | BIT_5)) >> 5;
2921 emphasis = ha->fw_seriallink_options[3] & (BIT_1 | BIT_0);
2922 tx_sens = ha->fw_seriallink_options[1] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002923 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 rx_sens = (ha->fw_seriallink_options[1] &
2925 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
2926 ha->fw_options[11] = (emphasis << 14) | (swing << 8);
2927 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
2928 if (rx_sens == 0x0)
2929 rx_sens = 0x3;
2930 ha->fw_options[11] |= (tx_sens << 4) | rx_sens;
2931 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
2932 ha->fw_options[11] |= BIT_5 |
2933 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
2934 (tx_sens & (BIT_1 | BIT_0));
2935 }
2936
2937 /* FCP2 options. */
2938 /* Return command IOCBs without waiting for an ABTS to complete. */
2939 ha->fw_options[3] |= BIT_13;
2940
2941 /* LED scheme. */
2942 if (ha->flags.enable_led_scheme)
2943 ha->fw_options[2] |= BIT_12;
2944
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002945 /* Detect ISP6312. */
2946 if (IS_QLA6312(ha))
2947 ha->fw_options[2] |= BIT_13;
2948
Giridhar Malavali088d09d2016-07-06 11:14:20 -04002949 /* Set Retry FLOGI in case of P2P connection */
2950 if (ha->operating_mode == P2P) {
2951 ha->fw_options[2] |= BIT_3;
2952 ql_dbg(ql_dbg_disc, vha, 0x2100,
2953 "(%s): Setting FLOGI retry BIT in fw_options[2]: 0x%x\n",
2954 __func__, ha->fw_options[2]);
2955 }
2956
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 /* Update firmware options. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002958 qla2x00_set_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959}
2960
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002961void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002962qla24xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002963{
2964 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002965 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002966
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04002967 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07002968 return;
2969
Himanshu Madhanif198caf2016-01-27 12:03:30 -05002970 /* Hold status IOCBs until ABTS response received. */
2971 if (ql2xfwholdabts)
2972 ha->fw_options[3] |= BIT_12;
2973
Giridhar Malavali088d09d2016-07-06 11:14:20 -04002974 /* Set Retry FLOGI in case of P2P connection */
2975 if (ha->operating_mode == P2P) {
2976 ha->fw_options[2] |= BIT_3;
2977 ql_dbg(ql_dbg_disc, vha, 0x2101,
2978 "(%s): Setting FLOGI retry BIT in fw_options[2]: 0x%x\n",
2979 __func__, ha->fw_options[2]);
2980 }
2981
Quinn Tran41dc5292017-01-19 22:28:03 -08002982 /* Move PUREX, ABTS RX & RIDA to ATIOQ */
2983 if (ql2xmvasynctoatio) {
2984 if (qla_tgt_mode_enabled(vha) ||
2985 qla_dual_mode_enabled(vha))
2986 ha->fw_options[2] |= BIT_11;
2987 else
2988 ha->fw_options[2] &= ~BIT_11;
2989 }
2990
2991 ql_dbg(ql_dbg_init, vha, 0xffff,
2992 "%s, add FW options 1-3 = 0x%04x 0x%04x 0x%04x mode %x\n",
2993 __func__, ha->fw_options[1], ha->fw_options[2],
2994 ha->fw_options[3], vha->host->active_mode);
2995 qla2x00_set_fw_options(vha, ha->fw_options);
2996
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002997 /* Update Serial Link options. */
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08002998 if ((le16_to_cpu(ha->fw_seriallink_options24[0]) & BIT_0) == 0)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002999 return;
3000
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003001 rval = qla2x00_set_serdes_params(vha,
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08003002 le16_to_cpu(ha->fw_seriallink_options24[1]),
3003 le16_to_cpu(ha->fw_seriallink_options24[2]),
3004 le16_to_cpu(ha->fw_seriallink_options24[3]));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003005 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003006 ql_log(ql_log_warn, vha, 0x0104,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003007 "Unable to update Serial Link options (%x).\n", rval);
3008 }
3009}
3010
3011void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003012qla2x00_config_rings(struct scsi_qla_host *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07003013{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003014 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07003015 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003016 struct req_que *req = ha->req_q_map[0];
3017 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezabbd8872005-07-06 10:30:05 -07003018
3019 /* Setup ring parameters in initialization control block. */
Bart Van Asschead950362015-07-09 07:24:08 -07003020 ha->init_cb->request_q_outpointer = cpu_to_le16(0);
3021 ha->init_cb->response_q_inpointer = cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003022 ha->init_cb->request_q_length = cpu_to_le16(req->length);
3023 ha->init_cb->response_q_length = cpu_to_le16(rsp->length);
3024 ha->init_cb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
3025 ha->init_cb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
3026 ha->init_cb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
3027 ha->init_cb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquezabbd8872005-07-06 10:30:05 -07003028
3029 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), 0);
3030 WRT_REG_WORD(ISP_REQ_Q_OUT(ha, reg), 0);
3031 WRT_REG_WORD(ISP_RSP_Q_IN(ha, reg), 0);
3032 WRT_REG_WORD(ISP_RSP_Q_OUT(ha, reg), 0);
3033 RD_REG_WORD(ISP_RSP_Q_OUT(ha, reg)); /* PCI Posting. */
3034}
3035
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003036void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003037qla24xx_config_rings(struct scsi_qla_host *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003038{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003039 struct qla_hw_data *ha = vha->hw;
Bart Van Assche118e2ef2015-07-09 07:24:27 -07003040 device_reg_t *reg = ISP_QUE_REG(ha, 0);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003041 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
3042 struct qla_msix_entry *msix;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003043 struct init_cb_24xx *icb;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003044 uint16_t rid = 0;
3045 struct req_que *req = ha->req_q_map[0];
3046 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003047
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08003048 /* Setup ring parameters in initialization control block. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003049 icb = (struct init_cb_24xx *)ha->init_cb;
Bart Van Asschead950362015-07-09 07:24:08 -07003050 icb->request_q_outpointer = cpu_to_le16(0);
3051 icb->response_q_inpointer = cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003052 icb->request_q_length = cpu_to_le16(req->length);
3053 icb->response_q_length = cpu_to_le16(rsp->length);
3054 icb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
3055 icb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
3056 icb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
3057 icb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003058
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003059 /* Setup ATIO queue dma pointers for target mode */
Bart Van Asschead950362015-07-09 07:24:08 -07003060 icb->atio_q_inpointer = cpu_to_le16(0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003061 icb->atio_q_length = cpu_to_le16(ha->tgt.atio_q_length);
3062 icb->atio_q_address[0] = cpu_to_le32(LSD(ha->tgt.atio_dma));
3063 icb->atio_q_address[1] = cpu_to_le32(MSD(ha->tgt.atio_dma));
3064
Joe Carnuccio7c6300e2014-04-11 16:54:37 -04003065 if (IS_SHADOW_REG_CAPABLE(ha))
Bart Van Asschead950362015-07-09 07:24:08 -07003066 icb->firmware_options_2 |= cpu_to_le32(BIT_30|BIT_29);
Joe Carnuccio7c6300e2014-04-11 16:54:37 -04003067
Chad Dupuisf73cb692014-02-26 04:15:06 -05003068 if (ha->mqenable || IS_QLA83XX(ha) || IS_QLA27XX(ha)) {
Bart Van Asschead950362015-07-09 07:24:08 -07003069 icb->qos = cpu_to_le16(QLA_DEFAULT_QUE_QOS);
3070 icb->rid = cpu_to_le16(rid);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003071 if (ha->flags.msix_enabled) {
3072 msix = &ha->msix_entries[1];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003073 ql_dbg(ql_dbg_init, vha, 0x00fd,
3074 "Registering vector 0x%x for base que.\n",
3075 msix->entry);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003076 icb->msix = cpu_to_le16(msix->entry);
3077 }
3078 /* Use alternate PCI bus number */
3079 if (MSB(rid))
Bart Van Asschead950362015-07-09 07:24:08 -07003080 icb->firmware_options_2 |= cpu_to_le32(BIT_19);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003081 /* Use alternate PCI devfn */
3082 if (LSB(rid))
Bart Van Asschead950362015-07-09 07:24:08 -07003083 icb->firmware_options_2 |= cpu_to_le32(BIT_18);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003084
Anirban Chakraborty31557542009-12-02 10:36:55 -08003085 /* Use Disable MSIX Handshake mode for capable adapters */
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08003086 if ((ha->fw_attributes & BIT_6) && (IS_MSIX_NACK_CAPABLE(ha)) &&
3087 (ha->flags.msix_enabled)) {
Bart Van Asschead950362015-07-09 07:24:08 -07003088 icb->firmware_options_2 &= cpu_to_le32(~BIT_22);
Anirban Chakraborty31557542009-12-02 10:36:55 -08003089 ha->flags.disable_msix_handshake = 1;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003090 ql_dbg(ql_dbg_init, vha, 0x00fe,
3091 "MSIX Handshake Disable Mode turned on.\n");
Anirban Chakraborty31557542009-12-02 10:36:55 -08003092 } else {
Bart Van Asschead950362015-07-09 07:24:08 -07003093 icb->firmware_options_2 |= cpu_to_le32(BIT_22);
Anirban Chakraborty31557542009-12-02 10:36:55 -08003094 }
Bart Van Asschead950362015-07-09 07:24:08 -07003095 icb->firmware_options_2 |= cpu_to_le32(BIT_23);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003096
3097 WRT_REG_DWORD(&reg->isp25mq.req_q_in, 0);
3098 WRT_REG_DWORD(&reg->isp25mq.req_q_out, 0);
3099 WRT_REG_DWORD(&reg->isp25mq.rsp_q_in, 0);
3100 WRT_REG_DWORD(&reg->isp25mq.rsp_q_out, 0);
3101 } else {
3102 WRT_REG_DWORD(&reg->isp24.req_q_in, 0);
3103 WRT_REG_DWORD(&reg->isp24.req_q_out, 0);
3104 WRT_REG_DWORD(&reg->isp24.rsp_q_in, 0);
3105 WRT_REG_DWORD(&reg->isp24.rsp_q_out, 0);
3106 }
Arun Easiaa230bc2013-01-30 03:34:39 -05003107 qlt_24xx_config_rings(vha);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003108
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003109 /* PCI posting */
3110 RD_REG_DWORD(&ioreg->hccr);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003111}
3112
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113/**
3114 * qla2x00_init_rings() - Initializes firmware.
3115 * @ha: HA context
3116 *
3117 * Beginning of request ring has initialization control block already built
3118 * by nvram config routine.
3119 *
3120 * Returns 0 on success.
3121 */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003122int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003123qla2x00_init_rings(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124{
3125 int rval;
3126 unsigned long flags = 0;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003127 int cnt, que;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003128 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003129 struct req_que *req;
3130 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003131 struct mid_init_cb_24xx *mid_init_cb =
3132 (struct mid_init_cb_24xx *) ha->init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
3134 spin_lock_irqsave(&ha->hardware_lock, flags);
3135
3136 /* Clear outstanding commands array. */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07003137 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003138 req = ha->req_q_map[que];
Quinn Trancb432852016-02-04 11:45:16 -05003139 if (!req || !test_bit(que, ha->req_qid_map))
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003140 continue;
Joe Carnuccio7c6300e2014-04-11 16:54:37 -04003141 req->out_ptr = (void *)(req->ring + req->length);
3142 *req->out_ptr = 0;
Chad Dupuis8d93f552013-01-30 03:34:37 -05003143 for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++)
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003144 req->outstanding_cmds[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07003146 req->current_outstanding_cmd = 1;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003147
3148 /* Initialize firmware. */
3149 req->ring_ptr = req->ring;
3150 req->ring_index = 0;
3151 req->cnt = req->length;
3152 }
3153
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07003154 for (que = 0; que < ha->max_rsp_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003155 rsp = ha->rsp_q_map[que];
Quinn Trancb432852016-02-04 11:45:16 -05003156 if (!rsp || !test_bit(que, ha->rsp_qid_map))
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003157 continue;
Joe Carnuccio7c6300e2014-04-11 16:54:37 -04003158 rsp->in_ptr = (void *)(rsp->ring + rsp->length);
3159 *rsp->in_ptr = 0;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003160 /* Initialize response queue entries */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003161 if (IS_QLAFX00(ha))
3162 qlafx00_init_response_q_entries(rsp);
3163 else
3164 qla2x00_init_response_q_entries(rsp);
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003167 ha->tgt.atio_ring_ptr = ha->tgt.atio_ring;
3168 ha->tgt.atio_ring_index = 0;
3169 /* Initialize ATIO queue entries */
3170 qlt_init_atio_q_entries(vha);
3171
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003172 ha->isp_ops->config_rings(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
3174 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3175
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003176 ql_dbg(ql_dbg_init, vha, 0x00d1, "Issue init firmware.\n");
3177
3178 if (IS_QLAFX00(ha)) {
3179 rval = qlafx00_init_firmware(vha, ha->init_cb_size);
3180 goto next_check;
3181 }
3182
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 /* Update any ISP specific firmware options before initialization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003184 ha->isp_ops->update_fw_options(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08003186 if (ha->flags.npiv_supported) {
Saurav Kashyap45980cc2012-08-22 14:21:21 -04003187 if (ha->operating_mode == LOOP && !IS_CNA_CAPABLE(ha))
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08003188 ha->max_npiv_vports = MIN_MULTI_ID_FABRIC - 1;
Seokmann Juc48339d2008-01-17 09:02:19 -08003189 mid_init_cb->count = cpu_to_le16(ha->max_npiv_vports);
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08003190 }
3191
Andrew Vasquez24a08132009-03-24 09:08:16 -07003192 if (IS_FWI2_CAPABLE(ha)) {
Bart Van Asschead950362015-07-09 07:24:08 -07003193 mid_init_cb->options = cpu_to_le16(BIT_1);
Andrew Vasquez24a08132009-03-24 09:08:16 -07003194 mid_init_cb->init_cb.execution_throttle =
Quinn Tran03e8c682015-12-17 14:56:59 -05003195 cpu_to_le16(ha->cur_fw_xcb_count);
Joe Carnuccio40f38622016-07-06 11:14:28 -04003196 ha->flags.dport_enabled =
3197 (mid_init_cb->init_cb.firmware_options_1 & BIT_7) != 0;
3198 ql_dbg(ql_dbg_init, vha, 0x0191, "DPORT Support: %s.\n",
3199 (ha->flags.dport_enabled) ? "enabled" : "disabled");
3200 /* FA-WWPN Status */
Himanshu Madhani2486c622014-09-25 05:17:00 -04003201 ha->flags.fawwpn_enabled =
Joe Carnuccio40f38622016-07-06 11:14:28 -04003202 (mid_init_cb->init_cb.firmware_options_1 & BIT_6) != 0;
Himanshu Madhani2486c622014-09-25 05:17:00 -04003203 ql_dbg(ql_dbg_init, vha, 0x0141, "FA-WWPN Support: %s.\n",
3204 (ha->flags.fawwpn_enabled) ? "enabled" : "disabled");
Andrew Vasquez24a08132009-03-24 09:08:16 -07003205 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003206
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003207 rval = qla2x00_init_firmware(vha, ha->init_cb_size);
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003208next_check:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003210 ql_log(ql_log_fatal, vha, 0x00d2,
3211 "Init Firmware **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003213 ql_dbg(ql_dbg_init, vha, 0x00d3,
3214 "Init Firmware -- success.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 }
3216
3217 return (rval);
3218}
3219
3220/**
3221 * qla2x00_fw_ready() - Waits for firmware ready.
3222 * @ha: HA context
3223 *
3224 * Returns 0 on success.
3225 */
3226static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003227qla2x00_fw_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228{
3229 int rval;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003230 unsigned long wtime, mtime, cs84xx_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 uint16_t min_wait; /* Minimum wait time if loop is down */
3232 uint16_t wait_time; /* Wait time if loop is coming ready */
Joe Carnucciob5a340d2014-09-25 05:16:48 -04003233 uint16_t state[6];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003234 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003236 if (IS_QLAFX00(vha->hw))
3237 return qlafx00_fw_ready(vha);
3238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 rval = QLA_SUCCESS;
3240
Chad Dupuis334614912015-04-09 14:59:57 -04003241 /* Time to wait for loop down */
3242 if (IS_P3P_TYPE(ha))
3243 min_wait = 30;
3244 else
3245 min_wait = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247 /*
3248 * Firmware should take at most one RATOV to login, plus 5 seconds for
3249 * our own processing.
3250 */
3251 if ((wait_time = (ha->retry_count*ha->login_timeout) + 5) < min_wait) {
3252 wait_time = min_wait;
3253 }
3254
3255 /* Min wait time if loop down */
3256 mtime = jiffies + (min_wait * HZ);
3257
3258 /* wait time before firmware ready */
3259 wtime = jiffies + (wait_time * HZ);
3260
3261 /* Wait for ISP to finish LIP */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003262 if (!vha->flags.init_done)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003263 ql_log(ql_log_info, vha, 0x801e,
3264 "Waiting for LIP to complete.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
3266 do {
Andrew Vasquez5b939032012-11-21 02:40:26 -05003267 memset(state, -1, sizeof(state));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003268 rval = qla2x00_get_firmware_state(vha, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 if (rval == QLA_SUCCESS) {
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003270 if (state[0] < FSTATE_LOSS_OF_SYNC) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003271 vha->device_flags &= ~DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003273 if (IS_QLA84XX(ha) && state[0] != FSTATE_READY) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003274 ql_dbg(ql_dbg_taskm, vha, 0x801f,
3275 "fw_state=%x 84xx=%x.\n", state[0],
3276 state[2]);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003277 if ((state[2] & FSTATE_LOGGED_IN) &&
3278 (state[2] & FSTATE_WAITING_FOR_VERIFY)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003279 ql_dbg(ql_dbg_taskm, vha, 0x8028,
3280 "Sending verify iocb.\n");
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003281
3282 cs84xx_time = jiffies;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003283 rval = qla84xx_init_chip(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003284 if (rval != QLA_SUCCESS) {
3285 ql_log(ql_log_warn,
Chad Dupuiscfb09192011-11-18 09:03:07 -08003286 vha, 0x8007,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003287 "Init chip failed.\n");
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003288 break;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003289 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003290
3291 /* Add time taken to initialize. */
3292 cs84xx_time = jiffies - cs84xx_time;
3293 wtime += cs84xx_time;
3294 mtime += cs84xx_time;
Chad Dupuiscfb09192011-11-18 09:03:07 -08003295 ql_dbg(ql_dbg_taskm, vha, 0x8008,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003296 "Increasing wait time by %ld. "
3297 "New time %ld.\n", cs84xx_time,
3298 wtime);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003299 }
3300 } else if (state[0] == FSTATE_READY) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003301 ql_dbg(ql_dbg_taskm, vha, 0x8037,
3302 "F/W Ready - OK.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003304 qla2x00_get_retry_cnt(vha, &ha->retry_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 &ha->login_timeout, &ha->r_a_tov);
3306
3307 rval = QLA_SUCCESS;
3308 break;
3309 }
3310
3311 rval = QLA_FUNCTION_FAILED;
3312
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003313 if (atomic_read(&vha->loop_down_timer) &&
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003314 state[0] != FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 /* Loop down. Timeout on min_wait for states
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003316 * other than Wait for Login.
3317 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 if (time_after_eq(jiffies, mtime)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003319 ql_log(ql_log_info, vha, 0x8038,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 "Cable is unplugged...\n");
3321
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003322 vha->device_flags |= DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 break;
3324 }
3325 }
3326 } else {
3327 /* Mailbox cmd failed. Timeout on min_wait. */
Santosh Vernekarcdbb0a4f2010-05-28 15:08:25 -07003328 if (time_after_eq(jiffies, mtime) ||
Giridhar Malavali71905752011-02-23 15:27:10 -08003329 ha->flags.isp82xx_fw_hung)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 break;
3331 }
3332
3333 if (time_after_eq(jiffies, wtime))
3334 break;
3335
3336 /* Delay for a while */
3337 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 } while (1);
3339
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003340 ql_dbg(ql_dbg_taskm, vha, 0x803a,
Joe Carnucciob5a340d2014-09-25 05:16:48 -04003341 "fw_state=%x (%x, %x, %x, %x %x) curr time=%lx.\n", state[0],
3342 state[1], state[2], state[3], state[4], state[5], jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Chad Dupuiscfb09192011-11-18 09:03:07 -08003344 if (rval && !(vha->device_flags & DFLG_NO_CABLE)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003345 ql_log(ql_log_warn, vha, 0x803b,
3346 "Firmware ready **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 }
3348
3349 return (rval);
3350}
3351
3352/*
3353* qla2x00_configure_hba
3354* Setup adapter context.
3355*
3356* Input:
3357* ha = adapter state pointer.
3358*
3359* Returns:
3360* 0 = success
3361*
3362* Context:
3363* Kernel context.
3364*/
3365static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003366qla2x00_configure_hba(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367{
3368 int rval;
3369 uint16_t loop_id;
3370 uint16_t topo;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003371 uint16_t sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 uint8_t al_pa;
3373 uint8_t area;
3374 uint8_t domain;
3375 char connect_type[22];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003376 struct qla_hw_data *ha = vha->hw;
Jiri Kosinaf24b5cb2012-10-08 09:23:54 +02003377 unsigned long flags;
Joe Carnuccio61e1b262013-02-08 01:57:48 -05003378 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
3380 /* Get host addresses. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003381 rval = qla2x00_get_adapter_id(vha,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003382 &loop_id, &al_pa, &area, &domain, &topo, &sw_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003384 if (LOOP_TRANSITION(vha) || atomic_read(&ha->loop_down_timer) ||
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08003385 IS_CNA_CAPABLE(ha) ||
Ravi Anand33135aa2005-11-08 14:37:20 -08003386 (rval == QLA_COMMAND_ERROR && loop_id == 0x7)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003387 ql_dbg(ql_dbg_disc, vha, 0x2008,
3388 "Loop is in a transition state.\n");
Ravi Anand33135aa2005-11-08 14:37:20 -08003389 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003390 ql_log(ql_log_warn, vha, 0x2009,
3391 "Unable to get host loop ID.\n");
Joe Carnuccio61e1b262013-02-08 01:57:48 -05003392 if (IS_FWI2_CAPABLE(ha) && (vha == base_vha) &&
3393 (rval == QLA_COMMAND_ERROR && loop_id == 0x1b)) {
3394 ql_log(ql_log_warn, vha, 0x1151,
3395 "Doing link init.\n");
3396 if (qla24xx_link_initialize(vha) == QLA_SUCCESS)
3397 return rval;
3398 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003399 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Ravi Anand33135aa2005-11-08 14:37:20 -08003400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 return (rval);
3402 }
3403
3404 if (topo == 4) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003405 ql_log(ql_log_info, vha, 0x200a,
3406 "Cannot get topology - retrying.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 return (QLA_FUNCTION_FAILED);
3408 }
3409
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003410 vha->loop_id = loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
3412 /* initialize */
3413 ha->min_external_loopid = SNS_FIRST_LOOP_ID;
3414 ha->operating_mode = LOOP;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003415 ha->switch_cap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
3417 switch (topo) {
3418 case 0:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003419 ql_dbg(ql_dbg_disc, vha, 0x200b, "HBA in NL topology.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 ha->current_topology = ISP_CFG_NL;
3421 strcpy(connect_type, "(Loop)");
3422 break;
3423
3424 case 1:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003425 ql_dbg(ql_dbg_disc, vha, 0x200c, "HBA in FL topology.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003426 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 ha->current_topology = ISP_CFG_FL;
3428 strcpy(connect_type, "(FL_Port)");
3429 break;
3430
3431 case 2:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003432 ql_dbg(ql_dbg_disc, vha, 0x200d, "HBA in N P2P topology.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 ha->operating_mode = P2P;
3434 ha->current_topology = ISP_CFG_N;
3435 strcpy(connect_type, "(N_Port-to-N_Port)");
3436 break;
3437
3438 case 3:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003439 ql_dbg(ql_dbg_disc, vha, 0x200e, "HBA in F P2P topology.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003440 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 ha->operating_mode = P2P;
3442 ha->current_topology = ISP_CFG_F;
3443 strcpy(connect_type, "(F_Port)");
3444 break;
3445
3446 default:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003447 ql_dbg(ql_dbg_disc, vha, 0x200f,
3448 "HBA in unknown topology %x, using NL.\n", topo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 ha->current_topology = ISP_CFG_NL;
3450 strcpy(connect_type, "(Loop)");
3451 break;
3452 }
3453
3454 /* Save Host port and loop ID. */
3455 /* byte order - Big Endian */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003456 vha->d_id.b.domain = domain;
3457 vha->d_id.b.area = area;
3458 vha->d_id.b.al_pa = al_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
Jiri Kosinaf24b5cb2012-10-08 09:23:54 +02003460 spin_lock_irqsave(&ha->vport_slock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003461 qlt_update_vp_map(vha, SET_AL_PA);
Jiri Kosinaf24b5cb2012-10-08 09:23:54 +02003462 spin_unlock_irqrestore(&ha->vport_slock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003463
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003464 if (!vha->flags.init_done)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003465 ql_log(ql_log_info, vha, 0x2010,
3466 "Topology - %s, Host Loop address 0x%x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003467 connect_type, vha->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 return(rval);
3470}
3471
Giridhar Malavalia9083012010-04-12 17:59:55 -07003472inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003473qla2x00_set_model_info(scsi_qla_host_t *vha, uint8_t *model, size_t len,
3474 char *def)
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08003475{
3476 char *st, *en;
3477 uint16_t index;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003478 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezab671142009-08-25 11:36:17 -07003479 int use_tbl = !IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08003480 !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08003481
3482 if (memcmp(model, BINZERO, len) != 0) {
3483 strncpy(ha->model_number, model, len);
3484 st = en = ha->model_number;
3485 en += len - 1;
3486 while (en > st) {
3487 if (*en != 0x20 && *en != 0x00)
3488 break;
3489 *en-- = '\0';
3490 }
3491
3492 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07003493 if (use_tbl &&
3494 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08003495 index < QLA_MODEL_NAMES)
Joe Carnuccio1ee27142008-07-10 16:55:53 -07003496 strncpy(ha->model_desc,
3497 qla2x00_model_name[index * 2 + 1],
3498 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08003499 } else {
3500 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07003501 if (use_tbl &&
3502 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08003503 index < QLA_MODEL_NAMES) {
3504 strcpy(ha->model_number,
3505 qla2x00_model_name[index * 2]);
Joe Carnuccio1ee27142008-07-10 16:55:53 -07003506 strncpy(ha->model_desc,
3507 qla2x00_model_name[index * 2 + 1],
3508 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08003509 } else {
3510 strcpy(ha->model_number, def);
3511 }
3512 }
Joe Carnuccio1ee27142008-07-10 16:55:53 -07003513 if (IS_FWI2_CAPABLE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003514 qla2xxx_get_vpd_field(vha, "\x82", ha->model_desc,
Joe Carnuccio1ee27142008-07-10 16:55:53 -07003515 sizeof(ha->model_desc));
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08003516}
3517
David Miller4e08df32007-04-16 12:37:43 -07003518/* On sparc systems, obtain port and node WWN from firmware
3519 * properties.
3520 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003521static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t *vha, nvram_t *nv)
David Miller4e08df32007-04-16 12:37:43 -07003522{
3523#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003524 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07003525 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07003526 struct device_node *dp = pci_device_to_OF_node(pdev);
3527 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07003528 int len;
3529
3530 val = of_get_property(dp, "port-wwn", &len);
3531 if (val && len >= WWN_SIZE)
3532 memcpy(nv->port_name, val, WWN_SIZE);
3533
3534 val = of_get_property(dp, "node-wwn", &len);
3535 if (val && len >= WWN_SIZE)
3536 memcpy(nv->node_name, val, WWN_SIZE);
3537#endif
3538}
3539
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540/*
3541* NVRAM configuration for ISP 2xxx
3542*
3543* Input:
3544* ha = adapter block pointer.
3545*
3546* Output:
3547* initialization control block in response_ring
3548* host adapters parameters in host adapter block
3549*
3550* Returns:
3551* 0 = success.
3552*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07003553int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003554qla2x00_nvram_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555{
David Miller4e08df32007-04-16 12:37:43 -07003556 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003557 uint8_t chksum = 0;
3558 uint16_t cnt;
3559 uint8_t *dptr1, *dptr2;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003560 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003561 init_cb_t *icb = ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07003562 nvram_t *nv = ha->nvram;
3563 uint8_t *ptr = ha->nvram;
Andrew Vasquez3d716442005-07-06 10:30:26 -07003564 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
David Miller4e08df32007-04-16 12:37:43 -07003566 rval = QLA_SUCCESS;
3567
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 /* Determine NVRAM starting address. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003569 ha->nvram_size = sizeof(nvram_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 ha->nvram_base = 0;
3571 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha))
3572 if ((RD_REG_WORD(&reg->ctrl_status) >> 14) == 1)
3573 ha->nvram_base = 0x80;
3574
3575 /* Get NVRAM data and calculate checksum. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003576 ha->isp_ops->read_nvram(vha, ptr, ha->nvram_base, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003577 for (cnt = 0, chksum = 0; cnt < ha->nvram_size; cnt++)
3578 chksum += *ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003580 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x010f,
3581 "Contents of NVRAM.\n");
3582 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0110,
3583 (uint8_t *)nv, ha->nvram_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
3585 /* Bad NVRAM data, set defaults parameters. */
3586 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' ||
3587 nv->id[2] != 'P' || nv->id[3] != ' ' || nv->nvram_version < 1) {
3588 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003589 ql_log(ql_log_warn, vha, 0x0064,
Raul Porcel9e336522012-05-15 14:34:08 -04003590 "Inconsistent NVRAM "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003591 "detected: checksum=0x%x id=%c version=0x%x.\n",
3592 chksum, nv->id[0], nv->nvram_version);
3593 ql_log(ql_log_warn, vha, 0x0065,
3594 "Falling back to "
3595 "functioning (yet invalid -- WWPN) defaults.\n");
David Miller4e08df32007-04-16 12:37:43 -07003596
3597 /*
3598 * Set default initialization control block.
3599 */
3600 memset(nv, 0, ha->nvram_size);
3601 nv->parameter_block_version = ICB_VERSION;
3602
3603 if (IS_QLA23XX(ha)) {
3604 nv->firmware_options[0] = BIT_2 | BIT_1;
3605 nv->firmware_options[1] = BIT_7 | BIT_5;
3606 nv->add_firmware_options[0] = BIT_5;
3607 nv->add_firmware_options[1] = BIT_5 | BIT_4;
Joe Carnuccio98aee702014-09-25 05:16:38 -04003608 nv->frame_payload_size = 2048;
David Miller4e08df32007-04-16 12:37:43 -07003609 nv->special_options[1] = BIT_7;
3610 } else if (IS_QLA2200(ha)) {
3611 nv->firmware_options[0] = BIT_2 | BIT_1;
3612 nv->firmware_options[1] = BIT_7 | BIT_5;
3613 nv->add_firmware_options[0] = BIT_5;
3614 nv->add_firmware_options[1] = BIT_5 | BIT_4;
Joe Carnuccio98aee702014-09-25 05:16:38 -04003615 nv->frame_payload_size = 1024;
David Miller4e08df32007-04-16 12:37:43 -07003616 } else if (IS_QLA2100(ha)) {
3617 nv->firmware_options[0] = BIT_3 | BIT_1;
3618 nv->firmware_options[1] = BIT_5;
Joe Carnuccio98aee702014-09-25 05:16:38 -04003619 nv->frame_payload_size = 1024;
David Miller4e08df32007-04-16 12:37:43 -07003620 }
3621
Bart Van Asschead950362015-07-09 07:24:08 -07003622 nv->max_iocb_allocation = cpu_to_le16(256);
3623 nv->execution_throttle = cpu_to_le16(16);
David Miller4e08df32007-04-16 12:37:43 -07003624 nv->retry_count = 8;
3625 nv->retry_delay = 1;
3626
3627 nv->port_name[0] = 33;
3628 nv->port_name[3] = 224;
3629 nv->port_name[4] = 139;
3630
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003631 qla2xxx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07003632
3633 nv->login_timeout = 4;
3634
3635 /*
3636 * Set default host adapter parameters
3637 */
3638 nv->host_p[1] = BIT_2;
3639 nv->reset_delay = 5;
3640 nv->port_down_retry_count = 8;
Bart Van Asschead950362015-07-09 07:24:08 -07003641 nv->max_luns_per_target = cpu_to_le16(8);
David Miller4e08df32007-04-16 12:37:43 -07003642 nv->link_down_timeout = 60;
3643
3644 rval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 }
3646
3647#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
3648 /*
3649 * The SN2 does not provide BIOS emulation which means you can't change
3650 * potentially bogus BIOS settings. Force the use of default settings
3651 * for link rate and frame size. Hope that the rest of the settings
3652 * are valid.
3653 */
3654 if (ia64_platform_is("sn2")) {
Joe Carnuccio98aee702014-09-25 05:16:38 -04003655 nv->frame_payload_size = 2048;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 if (IS_QLA23XX(ha))
3657 nv->special_options[1] = BIT_7;
3658 }
3659#endif
3660
3661 /* Reset Initialization control block */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003662 memset(icb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663
3664 /*
3665 * Setup driver NVRAM options.
3666 */
3667 nv->firmware_options[0] |= (BIT_6 | BIT_1);
3668 nv->firmware_options[0] &= ~(BIT_5 | BIT_4);
3669 nv->firmware_options[1] |= (BIT_5 | BIT_0);
3670 nv->firmware_options[1] &= ~BIT_4;
3671
3672 if (IS_QLA23XX(ha)) {
3673 nv->firmware_options[0] |= BIT_2;
3674 nv->firmware_options[0] &= ~BIT_3;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003675 nv->special_options[0] &= ~BIT_6;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003676 nv->add_firmware_options[1] |= BIT_5 | BIT_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
3678 if (IS_QLA2300(ha)) {
3679 if (ha->fb_rev == FPM_2310) {
3680 strcpy(ha->model_number, "QLA2310");
3681 } else {
3682 strcpy(ha->model_number, "QLA2300");
3683 }
3684 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003685 qla2x00_set_model_info(vha, nv->model_number,
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08003686 sizeof(nv->model_number), "QLA23xx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 }
3688 } else if (IS_QLA2200(ha)) {
3689 nv->firmware_options[0] |= BIT_2;
3690 /*
3691 * 'Point-to-point preferred, else loop' is not a safe
3692 * connection mode setting.
3693 */
3694 if ((nv->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) ==
3695 (BIT_5 | BIT_4)) {
3696 /* Force 'loop preferred, else point-to-point'. */
3697 nv->add_firmware_options[0] &= ~(BIT_6 | BIT_5 | BIT_4);
3698 nv->add_firmware_options[0] |= BIT_5;
3699 }
3700 strcpy(ha->model_number, "QLA22xx");
3701 } else /*if (IS_QLA2100(ha))*/ {
3702 strcpy(ha->model_number, "QLA2100");
3703 }
3704
3705 /*
3706 * Copy over NVRAM RISC parameter block to initialization control block.
3707 */
3708 dptr1 = (uint8_t *)icb;
3709 dptr2 = (uint8_t *)&nv->parameter_block_version;
3710 cnt = (uint8_t *)&icb->request_q_outpointer - (uint8_t *)&icb->version;
3711 while (cnt--)
3712 *dptr1++ = *dptr2++;
3713
3714 /* Copy 2nd half. */
3715 dptr1 = (uint8_t *)icb->add_firmware_options;
3716 cnt = (uint8_t *)icb->reserved_3 - (uint8_t *)icb->add_firmware_options;
3717 while (cnt--)
3718 *dptr1++ = *dptr2++;
3719
Andrew Vasquez5341e862006-05-17 15:09:16 -07003720 /* Use alternate WWN? */
3721 if (nv->host_p[1] & BIT_7) {
3722 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
3723 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
3724 }
3725
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 /* Prepare nodename */
3727 if ((icb->firmware_options[1] & BIT_6) == 0) {
3728 /*
3729 * Firmware will apply the following mask if the nodename was
3730 * not provided.
3731 */
3732 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
3733 icb->node_name[0] &= 0xF0;
3734 }
3735
3736 /*
3737 * Set host adapter parameters.
3738 */
Saurav Kashyap3ce88662011-07-14 12:00:12 -07003739
3740 /*
3741 * BIT_7 in the host-parameters section allows for modification to
3742 * internal driver logging.
3743 */
Andrew Vasquez01819442006-06-23 16:11:10 -07003744 if (nv->host_p[0] & BIT_7)
Chad Dupuiscfb09192011-11-18 09:03:07 -08003745 ql2xextended_error_logging = QL_DBG_DEFAULT1_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 ha->flags.disable_risc_code_load = ((nv->host_p[0] & BIT_4) ? 1 : 0);
3747 /* Always load RISC code on non ISP2[12]00 chips. */
3748 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
3749 ha->flags.disable_risc_code_load = 0;
3750 ha->flags.enable_lip_reset = ((nv->host_p[1] & BIT_1) ? 1 : 0);
3751 ha->flags.enable_lip_full_login = ((nv->host_p[1] & BIT_2) ? 1 : 0);
3752 ha->flags.enable_target_reset = ((nv->host_p[1] & BIT_3) ? 1 : 0);
Andrew Vasquez06c22bd2005-08-26 19:09:00 -07003753 ha->flags.enable_led_scheme = (nv->special_options[1] & BIT_4) ? 1 : 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07003754 ha->flags.disable_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
3756 ha->operating_mode =
3757 (icb->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) >> 4;
3758
3759 memcpy(ha->fw_seriallink_options, nv->seriallink_options,
3760 sizeof(ha->fw_seriallink_options));
3761
3762 /* save HBA serial number */
3763 ha->serial0 = icb->port_name[5];
3764 ha->serial1 = icb->port_name[6];
3765 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003766 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
3767 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
Bart Van Asschead950362015-07-09 07:24:08 -07003769 icb->execution_throttle = cpu_to_le16(0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
3771 ha->retry_count = nv->retry_count;
3772
3773 /* Set minimum login_timeout to 4 seconds. */
Andrew Vasquez5b914902010-05-28 15:08:30 -07003774 if (nv->login_timeout != ql2xlogintimeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 nv->login_timeout = ql2xlogintimeout;
3776 if (nv->login_timeout < 4)
3777 nv->login_timeout = 4;
3778 ha->login_timeout = nv->login_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Andrew Vasquez00a537b2008-02-28 14:06:11 -08003780 /* Set minimum RATOV to 100 tenths of a second. */
3781 ha->r_a_tov = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 ha->loop_reset_delay = nv->reset_delay;
3784
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 /* Link Down Timeout = 0:
3786 *
3787 * When Port Down timer expires we will start returning
3788 * I/O's to OS with "DID_NO_CONNECT".
3789 *
3790 * Link Down Timeout != 0:
3791 *
3792 * The driver waits for the link to come up after link down
3793 * before returning I/Os to OS with "DID_NO_CONNECT".
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003794 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 if (nv->link_down_timeout == 0) {
3796 ha->loop_down_abort_time =
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04003797 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 } else {
3799 ha->link_down_timeout = nv->link_down_timeout;
3800 ha->loop_down_abort_time =
3801 (LOOP_DOWN_TIME - ha->link_down_timeout);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 /*
3805 * Need enough time to try and get the port back.
3806 */
3807 ha->port_down_retry_count = nv->port_down_retry_count;
3808 if (qlport_down_retry)
3809 ha->port_down_retry_count = qlport_down_retry;
3810 /* Set login_retry_count */
3811 ha->login_retry_count = nv->retry_count;
3812 if (ha->port_down_retry_count == nv->port_down_retry_count &&
3813 ha->port_down_retry_count > 3)
3814 ha->login_retry_count = ha->port_down_retry_count;
3815 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
3816 ha->login_retry_count = ha->port_down_retry_count;
3817 if (ql2xloginretrycount)
3818 ha->login_retry_count = ql2xloginretrycount;
3819
Bart Van Asschead950362015-07-09 07:24:08 -07003820 icb->lun_enables = cpu_to_le16(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 icb->command_resource_count = 0;
3822 icb->immediate_notify_resource_count = 0;
Bart Van Asschead950362015-07-09 07:24:08 -07003823 icb->timeout = cpu_to_le16(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
3825 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
3826 /* Enable RIO */
3827 icb->firmware_options[0] &= ~BIT_3;
3828 icb->add_firmware_options[0] &=
3829 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
3830 icb->add_firmware_options[0] |= BIT_2;
3831 icb->response_accumulation_timer = 3;
3832 icb->interrupt_delay_timer = 5;
3833
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003834 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 } else {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07003836 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003837 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07003838 ha->zio_mode = icb->add_firmware_options[0] &
3839 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
3840 ha->zio_timer = icb->interrupt_delay_timer ?
3841 icb->interrupt_delay_timer: 2;
3842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 icb->add_firmware_options[0] &=
3844 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003845 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07003846 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08003847 ha->zio_mode = QLA_ZIO_MODE_6;
3848
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003849 ql_log(ql_log_info, vha, 0x0068,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07003850 "ZIO mode %d enabled; timer delay (%d us).\n",
3851 ha->zio_mode, ha->zio_timer * 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07003853 icb->add_firmware_options[0] |= (uint8_t)ha->zio_mode;
3854 icb->interrupt_delay_timer = (uint8_t)ha->zio_timer;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003855 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 }
3857 }
3858
David Miller4e08df32007-04-16 12:37:43 -07003859 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003860 ql_log(ql_log_warn, vha, 0x0069,
3861 "NVRAM configuration failed.\n");
David Miller4e08df32007-04-16 12:37:43 -07003862 }
3863 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864}
3865
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003866static void
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003867qla2x00_rport_del(void *data)
3868{
3869 fc_port_t *fcport = data;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003870 struct fc_rport *rport;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08003871 unsigned long flags;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003872
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08003873 spin_lock_irqsave(fcport->vha->host->host_lock, flags);
Andrew Vasquezac280b62009-08-20 11:06:05 -07003874 rport = fcport->drport ? fcport->drport: fcport->rport;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003875 fcport->drport = NULL;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08003876 spin_unlock_irqrestore(fcport->vha->host->host_lock, flags);
Quinn Tran726b8542017-01-19 22:28:00 -08003877 if (rport) {
3878 ql_dbg(ql_dbg_disc, fcport->vha, 0xffff,
3879 "%s %8phN. rport %p roles %x \n",
3880 __func__, fcport->port_name, rport,
3881 rport->roles);
3882
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003883 fc_remote_port_delete(rport);
Quinn Tran726b8542017-01-19 22:28:00 -08003884 }
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003885}
3886
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887/**
3888 * qla2x00_alloc_fcport() - Allocate a generic fcport.
3889 * @ha: HA context
3890 * @flags: allocation flags
3891 *
3892 * Returns a pointer to the allocated fcport, or NULL, if none available.
3893 */
Giridhar Malavali9a069e12010-01-12 13:02:47 -08003894fc_port_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003895qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896{
3897 fc_port_t *fcport;
3898
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02003899 fcport = kzalloc(sizeof(fc_port_t), flags);
3900 if (!fcport)
3901 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
3903 /* Setup fcport template structure. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003904 fcport->vha = vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 fcport->port_type = FCT_UNKNOWN;
3906 fcport->loop_id = FC_NO_LOOP_ID;
Chad Dupuisec426e12011-03-30 11:46:32 -07003907 qla2x00_set_fcport_state(fcport, FCS_UNCONFIGURED);
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003908 fcport->supported_classes = FC_COS_UNSPECIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Quinn Tran726b8542017-01-19 22:28:00 -08003910 fcport->ct_desc.ct_sns = dma_alloc_coherent(&vha->hw->pdev->dev,
3911 sizeof(struct ct_sns_pkt), &fcport->ct_desc.ct_sns_dma,
3912 GFP_ATOMIC);
3913 fcport->disc_state = DSC_DELETED;
3914 fcport->fw_login_state = DSC_LS_PORT_UNAVAIL;
3915 fcport->deleted = QLA_SESS_DELETED;
3916 fcport->login_retry = vha->hw->login_retry_count;
3917 fcport->login_retry = 5;
3918 fcport->logout_on_delete = 1;
3919
3920 if (!fcport->ct_desc.ct_sns) {
3921 ql_log(ql_log_warn, vha, 0xffff,
3922 "Failed to allocate ct_sns request.\n");
3923 kfree(fcport);
3924 fcport = NULL;
3925 }
3926 INIT_WORK(&fcport->del_work, qla24xx_delete_sess_fn);
3927 INIT_LIST_HEAD(&fcport->gnl_entry);
3928 INIT_LIST_HEAD(&fcport->list);
3929
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02003930 return fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931}
3932
Quinn Tran726b8542017-01-19 22:28:00 -08003933void
3934qla2x00_free_fcport(fc_port_t *fcport)
3935{
3936 if (fcport->ct_desc.ct_sns) {
3937 dma_free_coherent(&fcport->vha->hw->pdev->dev,
3938 sizeof(struct ct_sns_pkt), fcport->ct_desc.ct_sns,
3939 fcport->ct_desc.ct_sns_dma);
3940
3941 fcport->ct_desc.ct_sns = NULL;
3942 }
3943 kfree(fcport);
3944}
3945
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946/*
3947 * qla2x00_configure_loop
3948 * Updates Fibre Channel Device Database with what is actually on loop.
3949 *
3950 * Input:
3951 * ha = adapter block pointer.
3952 *
3953 * Returns:
3954 * 0 = success.
3955 * 1 = error.
3956 * 2 = database was full and device was not configured.
3957 */
3958static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003959qla2x00_configure_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960{
3961 int rval;
3962 unsigned long flags, save_flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003963 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 rval = QLA_SUCCESS;
3965
3966 /* Get Initiator ID */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003967 if (test_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags)) {
3968 rval = qla2x00_configure_hba(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003970 ql_dbg(ql_dbg_disc, vha, 0x2013,
3971 "Unable to configure HBA.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 return (rval);
3973 }
3974 }
3975
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003976 save_flags = flags = vha->dpc_flags;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003977 ql_dbg(ql_dbg_disc, vha, 0x2014,
3978 "Configure loop -- dpc flags = 0x%lx.\n", flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
3980 /*
3981 * If we have both an RSCN and PORT UPDATE pending then handle them
3982 * both at the same time.
3983 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003984 clear_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
3985 clear_bit(RSCN_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Michael Hernandez3064ff32009-12-15 21:29:44 -08003987 qla2x00_get_data_rate(vha);
3988
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 /* Determine what we need to do */
3990 if (ha->current_topology == ISP_CFG_FL &&
3991 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
3992
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 set_bit(RSCN_UPDATE, &flags);
3994
3995 } else if (ha->current_topology == ISP_CFG_F &&
3996 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
3997
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 set_bit(RSCN_UPDATE, &flags);
3999 clear_bit(LOCAL_LOOP_UPDATE, &flags);
4000
Andrew Vasquez21333b42006-05-17 15:09:56 -07004001 } else if (ha->current_topology == ISP_CFG_N) {
4002 clear_bit(RSCN_UPDATE, &flags);
Quinn Tran41dc5292017-01-19 22:28:03 -08004003 } else if (ha->current_topology == ISP_CFG_NL) {
4004 clear_bit(RSCN_UPDATE, &flags);
4005 set_bit(LOCAL_LOOP_UPDATE, &flags);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004006 } else if (!vha->flags.online ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 (test_bit(ABORT_ISP_ACTIVE, &flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 set_bit(RSCN_UPDATE, &flags);
4009 set_bit(LOCAL_LOOP_UPDATE, &flags);
4010 }
4011
4012 if (test_bit(LOCAL_LOOP_UPDATE, &flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004013 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
4014 ql_dbg(ql_dbg_disc, vha, 0x2015,
4015 "Loop resync needed, failing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 rval = QLA_FUNCTION_FAILED;
Chad Dupuis642ef982012-02-09 11:15:57 -08004017 } else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004018 rval = qla2x00_configure_local_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 }
4020
4021 if (rval == QLA_SUCCESS && test_bit(RSCN_UPDATE, &flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004022 if (LOOP_TRANSITION(vha)) {
4023 ql_dbg(ql_dbg_disc, vha, 0x201e,
4024 "Needs RSCN update and loop transition.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 rval = QLA_FUNCTION_FAILED;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004026 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004027 else
4028 rval = qla2x00_configure_fabric(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 }
4030
4031 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004032 if (atomic_read(&vha->loop_down_timer) ||
4033 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 rval = QLA_FUNCTION_FAILED;
4035 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004036 atomic_set(&vha->loop_state, LOOP_READY);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004037 ql_dbg(ql_dbg_disc, vha, 0x2069,
4038 "LOOP READY.\n");
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -05004039
4040 /*
4041 * Process any ATIO queue entries that came in
4042 * while we weren't online.
4043 */
Quinn Tranead03852017-01-19 22:28:01 -08004044 if (qla_tgt_mode_enabled(vha) ||
4045 qla_dual_mode_enabled(vha)) {
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -05004046 if (IS_QLA27XX(ha) || IS_QLA83XX(ha)) {
4047 spin_lock_irqsave(&ha->tgt.atio_lock,
4048 flags);
4049 qlt_24xx_process_atio_queue(vha, 0);
4050 spin_unlock_irqrestore(
4051 &ha->tgt.atio_lock, flags);
4052 } else {
4053 spin_lock_irqsave(&ha->hardware_lock,
4054 flags);
4055 qlt_24xx_process_atio_queue(vha, 1);
4056 spin_unlock_irqrestore(
4057 &ha->hardware_lock, flags);
4058 }
4059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 }
4061 }
4062
4063 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004064 ql_dbg(ql_dbg_disc, vha, 0x206a,
4065 "%s *** FAILED ***.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004067 ql_dbg(ql_dbg_disc, vha, 0x206b,
4068 "%s: exiting normally.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 }
4070
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -07004071 /* Restore state if a resync event occurred during processing */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004072 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 if (test_bit(LOCAL_LOOP_UPDATE, &save_flags))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004074 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07004075 if (test_bit(RSCN_UPDATE, &save_flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004076 set_bit(RSCN_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07004077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 }
4079
4080 return (rval);
4081}
4082
4083
4084
4085/*
4086 * qla2x00_configure_local_loop
4087 * Updates Fibre Channel Device Database with local loop devices.
4088 *
4089 * Input:
4090 * ha = adapter block pointer.
4091 *
4092 * Returns:
4093 * 0 = success.
4094 */
4095static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004096qla2x00_configure_local_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097{
4098 int rval, rval2;
4099 int found_devs;
4100 int found;
4101 fc_port_t *fcport, *new_fcport;
4102
4103 uint16_t index;
4104 uint16_t entries;
4105 char *id_iter;
4106 uint16_t loop_id;
4107 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004108 struct qla_hw_data *ha = vha->hw;
Quinn Tran41dc5292017-01-19 22:28:03 -08004109 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
4111 found_devs = 0;
4112 new_fcport = NULL;
Chad Dupuis642ef982012-02-09 11:15:57 -08004113 entries = MAX_FIBRE_DEVICES_LOOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 /* Get list of logged in devices. */
Chad Dupuis642ef982012-02-09 11:15:57 -08004116 memset(ha->gid_list, 0, qla2x00_gid_list_size(ha));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004117 rval = qla2x00_get_id_list(vha, ha->gid_list, ha->gid_list_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 &entries);
4119 if (rval != QLA_SUCCESS)
4120 goto cleanup_allocation;
4121
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004122 ql_dbg(ql_dbg_disc, vha, 0x2017,
4123 "Entries in ID list (%d).\n", entries);
4124 ql_dump_buffer(ql_dbg_disc + ql_dbg_buffer, vha, 0x2075,
4125 (uint8_t *)ha->gid_list,
4126 entries * sizeof(struct gid_list_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
4128 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004129 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004131 ql_log(ql_log_warn, vha, 0x2018,
4132 "Memory allocation failed for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 rval = QLA_MEMORY_ALLOC_FAILED;
4134 goto cleanup_allocation;
4135 }
4136 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
4137
4138 /*
4139 * Mark local devices that were present with FCF_DEVICE_LOST for now.
4140 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004141 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 if (atomic_read(&fcport->state) == FCS_ONLINE &&
4143 fcport->port_type != FCT_BROADCAST &&
4144 (fcport->flags & FCF_FABRIC_DEVICE) == 0) {
4145
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004146 ql_dbg(ql_dbg_disc, vha, 0x2019,
4147 "Marking port lost loop_id=0x%04x.\n",
4148 fcport->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149
Quinn Tran41dc5292017-01-19 22:28:03 -08004150 qla2x00_mark_device_lost(vha, fcport, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 }
4152 }
4153
4154 /* Add devices to port list. */
4155 id_iter = (char *)ha->gid_list;
4156 for (index = 0; index < entries; index++) {
4157 domain = ((struct gid_list_info *)id_iter)->domain;
4158 area = ((struct gid_list_info *)id_iter)->area;
4159 al_pa = ((struct gid_list_info *)id_iter)->al_pa;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07004160 if (IS_QLA2100(ha) || IS_QLA2200(ha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 loop_id = (uint16_t)
4162 ((struct gid_list_info *)id_iter)->loop_id_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07004163 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 loop_id = le16_to_cpu(
4165 ((struct gid_list_info *)id_iter)->loop_id);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07004166 id_iter += ha->gid_list_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
4168 /* Bypass reserved domain fields. */
4169 if ((domain & 0xf0) == 0xf0)
4170 continue;
4171
4172 /* Bypass if not same domain and area of adapter. */
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07004173 if (area && domain &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004174 (area != vha->d_id.b.area || domain != vha->d_id.b.domain))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 continue;
4176
4177 /* Bypass invalid local loop ID. */
4178 if (loop_id > LAST_LOCAL_LOOP_ID)
4179 continue;
4180
Quinn Tran41dc5292017-01-19 22:28:03 -08004181 memset(new_fcport->port_name, 0, WWN_SIZE);
Arun Easi370d5502012-08-22 14:21:10 -04004182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 /* Fill in member data. */
4184 new_fcport->d_id.b.domain = domain;
4185 new_fcport->d_id.b.area = area;
4186 new_fcport->d_id.b.al_pa = al_pa;
4187 new_fcport->loop_id = loop_id;
Quinn Tran41dc5292017-01-19 22:28:03 -08004188
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004189 rval2 = qla2x00_get_port_database(vha, new_fcport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 if (rval2 != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004191 ql_dbg(ql_dbg_disc, vha, 0x201a,
4192 "Failed to retrieve fcport information "
4193 "-- get_port_database=%x, loop_id=0x%04x.\n",
4194 rval2, new_fcport->loop_id);
4195 ql_dbg(ql_dbg_disc, vha, 0x201b,
4196 "Scheduling resync.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004197 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 continue;
4199 }
4200
Quinn Tran41dc5292017-01-19 22:28:03 -08004201 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 /* Check for matching device in port list. */
4203 found = 0;
4204 fcport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004205 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 if (memcmp(new_fcport->port_name, fcport->port_name,
4207 WWN_SIZE))
4208 continue;
4209
Shyam Sundarddb9b122009-03-24 09:08:10 -07004210 fcport->flags &= ~FCF_FABRIC_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 fcport->loop_id = new_fcport->loop_id;
4212 fcport->port_type = new_fcport->port_type;
4213 fcport->d_id.b24 = new_fcport->d_id.b24;
4214 memcpy(fcport->node_name, new_fcport->node_name,
4215 WWN_SIZE);
4216
Quinn Tran41dc5292017-01-19 22:28:03 -08004217 if (!fcport->login_succ) {
4218 vha->fcport_count++;
4219 fcport->login_succ = 1;
4220 fcport->disc_state = DSC_LOGIN_COMPLETE;
4221 }
4222
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 found++;
4224 break;
4225 }
4226
4227 if (!found) {
4228 /* New device, add to fcports list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004229 list_add_tail(&new_fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230
4231 /* Allocate a new replacement fcport. */
4232 fcport = new_fcport;
Quinn Tran41dc5292017-01-19 22:28:03 -08004233 if (!fcport->login_succ) {
4234 vha->fcport_count++;
4235 fcport->login_succ = 1;
4236 fcport->disc_state = DSC_LOGIN_COMPLETE;
4237 }
4238
4239 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
4240
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004241 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Quinn Tran41dc5292017-01-19 22:28:03 -08004242
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004244 ql_log(ql_log_warn, vha, 0x201c,
4245 "Failed to allocate memory for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 rval = QLA_MEMORY_ALLOC_FAILED;
4247 goto cleanup_allocation;
4248 }
Quinn Tran41dc5292017-01-19 22:28:03 -08004249 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
4251 }
4252
Quinn Tran41dc5292017-01-19 22:28:03 -08004253 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
4254
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004255 /* Base iIDMA settings on HBA port speed. */
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07004256 fcport->fp_speed = ha->link_data_rate;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004257
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004258 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
4260 found_devs++;
4261 }
4262
4263cleanup_allocation:
Jesper Juhlc9475cb2005-11-07 01:01:26 -08004264 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
4266 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004267 ql_dbg(ql_dbg_disc, vha, 0x201d,
4268 "Configure local loop error exit: rval=%x.\n", rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 }
4270
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 return (rval);
4272}
4273
4274static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004275qla2x00_iidma_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004276{
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004277 int rval;
Quinn Tran93f2bd62014-09-25 05:16:53 -04004278 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004279 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004280
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07004281 if (!IS_IIDMA_CAPABLE(ha))
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004282 return;
4283
Giridhar Malavalic9afb9a2010-09-03 15:20:48 -07004284 if (atomic_read(&fcport->state) != FCS_ONLINE)
4285 return;
4286
Andrew Vasquez39bd9622007-09-20 14:07:34 -07004287 if (fcport->fp_speed == PORT_SPEED_UNKNOWN ||
4288 fcport->fp_speed > ha->link_data_rate)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004289 return;
4290
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004291 rval = qla2x00_set_idma_speed(vha, fcport->loop_id, fcport->fp_speed,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07004292 mb);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004293 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004294 ql_dbg(ql_dbg_disc, vha, 0x2004,
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -04004295 "Unable to adjust iIDMA %8phN -- %04x %x %04x %04x.\n",
4296 fcport->port_name, rval, fcport->fp_speed, mb[0], mb[1]);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004297 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004298 ql_dbg(ql_dbg_disc, vha, 0x2005,
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -04004299 "iIDMA adjusted to %s GB/s on %8phN.\n",
Joe Carnucciod0297c92012-11-21 02:40:40 -05004300 qla2x00_get_link_speed_str(ha, fcport->fp_speed),
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -04004301 fcport->port_name);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004302 }
4303}
4304
Quinn Tran726b8542017-01-19 22:28:00 -08004305/* qla2x00_reg_remote_port is reserved for Initiator Mode only.*/
Adrian Bunk23be3312006-11-24 02:46:01 +01004306static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004307qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport)
8482e1182005-04-17 15:04:54 -05004308{
4309 struct fc_rport_identifiers rport_ids;
bdf79622005-04-17 15:06:53 -05004310 struct fc_rport *rport;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08004311 unsigned long flags;
8482e1182005-04-17 15:04:54 -05004312
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07004313 rport_ids.node_name = wwn_to_u64(fcport->node_name);
4314 rport_ids.port_name = wwn_to_u64(fcport->port_name);
8482e1182005-04-17 15:04:54 -05004315 rport_ids.port_id = fcport->d_id.b.domain << 16 |
4316 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
4317 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004318 fcport->rport = rport = fc_remote_port_add(vha->host, 0, &rport_ids);
Andrew Vasquez77d74142005-07-08 18:00:36 -07004319 if (!rport) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004320 ql_log(ql_log_warn, vha, 0x2006,
4321 "Unable to allocate fc remote port.\n");
Andrew Vasquez77d74142005-07-08 18:00:36 -07004322 return;
4323 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004324
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08004325 spin_lock_irqsave(fcport->vha->host->host_lock, flags);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04004326 *((fc_port_t **)rport->dd_data) = fcport;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08004327 spin_unlock_irqrestore(fcport->vha->host->host_lock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08004328
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07004329 rport->supported_classes = fcport->supported_classes;
Andrew Vasquez77d74142005-07-08 18:00:36 -07004330
4331 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
8482e1182005-04-17 15:04:54 -05004332 if (fcport->port_type == FCT_INITIATOR)
4333 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
4334 if (fcport->port_type == FCT_TARGET)
4335 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
Quinn Tran726b8542017-01-19 22:28:00 -08004336
4337 ql_dbg(ql_dbg_disc, vha, 0xffff,
4338 "%s %8phN. rport %p is %s mode \n",
4339 __func__, fcport->port_name, rport,
4340 (fcport->port_type == FCT_TARGET) ? "tgt" : "ini");
4341
Andrew Vasquez77d74142005-07-08 18:00:36 -07004342 fc_remote_port_rolechg(rport, rport_ids.roles);
8482e1182005-04-17 15:04:54 -05004343}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
4345/*
Adrian Bunk23be3312006-11-24 02:46:01 +01004346 * qla2x00_update_fcport
4347 * Updates device on list.
4348 *
4349 * Input:
4350 * ha = adapter block pointer.
4351 * fcport = port structure pointer.
4352 *
4353 * Return:
4354 * 0 - Success
4355 * BIT_0 - error
4356 *
4357 * Context:
4358 * Kernel context.
4359 */
4360void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004361qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Adrian Bunk23be3312006-11-24 02:46:01 +01004362{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004363 fcport->vha = vha;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04004364
Quinn Tran726b8542017-01-19 22:28:00 -08004365 if (IS_SW_RESV_ADDR(fcport->d_id))
4366 return;
4367
4368 ql_dbg(ql_dbg_disc, vha, 0xffff, "%s %8phC \n",
4369 __func__, fcport->port_name);
4370
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04004371 if (IS_QLAFX00(vha->hw)) {
4372 qla2x00_set_fcport_state(fcport, FCS_ONLINE);
Alexei Potashnikd20ed912015-07-14 16:00:47 -04004373 goto reg_port;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04004374 }
Adrian Bunk23be3312006-11-24 02:46:01 +01004375 fcport->login_retry = 0;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07004376 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
Quinn Tran726b8542017-01-19 22:28:00 -08004377 fcport->disc_state = DSC_LOGIN_COMPLETE;
4378 fcport->deleted = 0;
4379 fcport->logout_on_delete = 1;
Adrian Bunk23be3312006-11-24 02:46:01 +01004380
Joe Carnuccio1f93da522012-11-21 02:40:38 -05004381 qla2x00_set_fcport_state(fcport, FCS_ONLINE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004382 qla2x00_iidma_fcport(vha, fcport);
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08004383 qla24xx_update_fcport_fcp_prio(vha, fcport);
Alexei Potashnikd20ed912015-07-14 16:00:47 -04004384
4385reg_port:
Quinn Tran726b8542017-01-19 22:28:00 -08004386 switch (vha->host->active_mode) {
4387 case MODE_INITIATOR:
Alexei Potashnikd20ed912015-07-14 16:00:47 -04004388 qla2x00_reg_remote_port(vha, fcport);
Quinn Tran726b8542017-01-19 22:28:00 -08004389 break;
4390 case MODE_TARGET:
4391 if (!vha->vha_tgt.qla_tgt->tgt_stop &&
4392 !vha->vha_tgt.qla_tgt->tgt_stopped)
4393 qlt_fc_port_added(vha, fcport);
4394 break;
4395 case MODE_DUAL:
4396 qla2x00_reg_remote_port(vha, fcport);
4397 if (!vha->vha_tgt.qla_tgt->tgt_stop &&
4398 !vha->vha_tgt.qla_tgt->tgt_stopped)
4399 qlt_fc_port_added(vha, fcport);
4400 break;
4401 default:
4402 break;
4403 }
Adrian Bunk23be3312006-11-24 02:46:01 +01004404}
4405
4406/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 * qla2x00_configure_fabric
4408 * Setup SNS devices with loop ID's.
4409 *
4410 * Input:
4411 * ha = adapter block pointer.
4412 *
4413 * Returns:
4414 * 0 = success.
4415 * BIT_0 = error
4416 */
4417static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004418qla2x00_configure_fabric(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419{
Arun Easib3b02e62012-02-09 11:15:39 -08004420 int rval;
Quinn Tran726b8542017-01-19 22:28:00 -08004421 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 uint16_t mb[MAILBOX_REGISTER_COUNT];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004423 uint16_t loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 LIST_HEAD(new_fcports);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004425 struct qla_hw_data *ha = vha->hw;
Alexei Potashnikdf673272015-07-14 16:00:46 -04004426 int discovery_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
4428 /* If FL port exists, then SNS is present */
Andrew Vasqueze4289242007-07-19 15:05:56 -07004429 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004430 loop_id = NPH_F_PORT;
4431 else
4432 loop_id = SNS_FL_PORT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004433 rval = qla2x00_get_port_name(vha, loop_id, vha->fabric_node_name, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004435 ql_dbg(ql_dbg_disc, vha, 0x201f,
4436 "MBX_GET_PORT_NAME failed, No FL Port.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004438 vha->device_flags &= ~SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 return (QLA_SUCCESS);
4440 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004441 vha->device_flags |= SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
Quinn Tran41dc5292017-01-19 22:28:03 -08004443
4444 if (qla_tgt_mode_enabled(vha) || qla_dual_mode_enabled(vha)) {
4445 rval = qla2x00_send_change_request(vha, 0x3, 0);
4446 if (rval != QLA_SUCCESS)
4447 ql_log(ql_log_warn, vha, 0x121,
4448 "Failed to enable receiving of RSCN requests: 0x%x.\n",
4449 rval);
4450 }
4451
4452
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 do {
Quinn Tran726b8542017-01-19 22:28:00 -08004454 qla2x00_mgmt_svr_login(vha);
4455
Andrew Vasquezcca53352005-08-26 19:08:30 -07004456 /* FDMI support. */
4457 if (ql2xfdmienable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004458 test_and_clear_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags))
4459 qla2x00_fdmi_register(vha);
Andrew Vasquezcca53352005-08-26 19:08:30 -07004460
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 /* Ensure we are logged into the SNS. */
Andrew Vasqueze4289242007-07-19 15:05:56 -07004462 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004463 loop_id = NPH_SNS;
4464 else
4465 loop_id = SIMPLE_NAME_SERVER;
Chad Dupuis0b91d112012-02-09 11:15:42 -08004466 rval = ha->isp_ops->fabric_login(vha, loop_id, 0xff, 0xff,
4467 0xfc, mb, BIT_1|BIT_0);
4468 if (rval != QLA_SUCCESS) {
4469 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05004470 return rval;
Chad Dupuis0b91d112012-02-09 11:15:42 -08004471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 if (mb[0] != MBS_COMMAND_COMPLETE) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004473 ql_dbg(ql_dbg_disc, vha, 0x2042,
4474 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x mb[2]=%x "
4475 "mb[6]=%x mb[7]=%x.\n", loop_id, mb[0], mb[1],
4476 mb[2], mb[6], mb[7]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477 return (QLA_SUCCESS);
4478 }
4479
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004480 if (test_and_clear_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags)) {
4481 if (qla2x00_rft_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004483 ql_dbg(ql_dbg_disc, vha, 0x2045,
4484 "Register FC-4 TYPE failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004486 if (qla2x00_rff_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004488 ql_dbg(ql_dbg_disc, vha, 0x2049,
4489 "Register FC-4 Features failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004491 if (qla2x00_rnn_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004493 ql_dbg(ql_dbg_disc, vha, 0x204f,
4494 "Register Node Name failed.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004495 } else if (qla2x00_rsnn_nn(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004497 ql_dbg(ql_dbg_disc, vha, 0x2053,
4498 "Register Symobilic Node Name failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 }
4500 }
4501
Joe Carnuccio827210b2013-02-08 01:57:57 -05004502 list_for_each_entry(fcport, &vha->vp_fcports, list) {
4503 fcport->scan_state = QLA_FCPORT_SCAN;
4504 }
4505
Alexei Potashnikdf673272015-07-14 16:00:46 -04004506 /* Mark the time right before querying FW for connected ports.
4507 * This process is long, asynchronous and by the time it's done,
4508 * collected information might not be accurate anymore. E.g.
4509 * disconnected port might have re-connected and a brand new
4510 * session has been created. In this case session's generation
4511 * will be newer than discovery_gen. */
4512 qlt_do_generation_tick(vha, &discovery_gen);
4513
Quinn Tran726b8542017-01-19 22:28:00 -08004514 rval = qla2x00_find_all_fabric_devs(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 if (rval != QLA_SUCCESS)
4516 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 } while (0);
4518
Quinn Tran726b8542017-01-19 22:28:00 -08004519 if (rval)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004520 ql_dbg(ql_dbg_disc, vha, 0x2068,
4521 "Configure fabric error exit rval=%d.\n", rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
4523 return (rval);
4524}
4525
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526/*
4527 * qla2x00_find_all_fabric_devs
4528 *
4529 * Input:
4530 * ha = adapter block pointer.
4531 * dev = database device entry pointer.
4532 *
4533 * Returns:
4534 * 0 = success.
4535 *
4536 * Context:
4537 * Kernel context.
4538 */
4539static int
Quinn Tran726b8542017-01-19 22:28:00 -08004540qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541{
4542 int rval;
4543 uint16_t loop_id;
Quinn Tran726b8542017-01-19 22:28:00 -08004544 fc_port_t *fcport, *new_fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 int found;
4546
4547 sw_info_t *swl;
4548 int swl_idx;
4549 int first_dev, last_dev;
Mike Waychison1516ef42010-05-04 15:01:31 -07004550 port_id_t wrap = {}, nxt_d_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004551 struct qla_hw_data *ha = vha->hw;
Chad Dupuisbb4cf5b2013-02-08 01:58:01 -05004552 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Quinn Tran726b8542017-01-19 22:28:00 -08004553 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
4555 rval = QLA_SUCCESS;
4556
4557 /* Try GID_PT to get device list, else GAN. */
Andrew Vasquez7a677352012-02-09 11:15:56 -08004558 if (!ha->swl)
Chad Dupuis642ef982012-02-09 11:15:57 -08004559 ha->swl = kcalloc(ha->max_fibre_devices, sizeof(sw_info_t),
Andrew Vasquez7a677352012-02-09 11:15:56 -08004560 GFP_KERNEL);
4561 swl = ha->swl;
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02004562 if (!swl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 /*EMPTY*/
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004564 ql_dbg(ql_dbg_disc, vha, 0x2054,
4565 "GID_PT allocations failed, fallback on GA_NXT.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 } else {
Chad Dupuis642ef982012-02-09 11:15:57 -08004567 memset(swl, 0, ha->max_fibre_devices * sizeof(sw_info_t));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004568 if (qla2x00_gid_pt(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004570 } else if (qla2x00_gpn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004572 } else if (qla2x00_gnn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 swl = NULL;
Quinn Tran726b8542017-01-19 22:28:00 -08004574 } else if (qla2x00_gfpn_id(vha, swl) != QLA_SUCCESS) {
4575 swl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 }
Chad Dupuise8c72ba2010-07-23 15:28:25 +05004577
4578 /* If other queries succeeded probe for FC-4 type */
4579 if (swl)
4580 qla2x00_gff_id(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 }
4582 swl_idx = 0;
4583
4584 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004585 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004587 ql_log(ql_log_warn, vha, 0x205e,
4588 "Failed to allocate memory for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 return (QLA_MEMORY_ALLOC_FAILED);
4590 }
4591 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 /* Set start port ID scan at adapter ID. */
4593 first_dev = 1;
4594 last_dev = 0;
4595
4596 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004597 loop_id = ha->min_external_loopid;
4598 for (; loop_id <= ha->max_loop_id; loop_id++) {
4599 if (qla2x00_is_reserved_id(vha, loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 continue;
4601
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07004602 if (ha->current_topology == ISP_CFG_FL &&
4603 (atomic_read(&vha->loop_down_timer) ||
4604 LOOP_TRANSITION(vha))) {
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08004605 atomic_set(&vha->loop_down_timer, 0);
4606 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4607 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 break;
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08004609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610
4611 if (swl != NULL) {
4612 if (last_dev) {
4613 wrap.b24 = new_fcport->d_id.b24;
4614 } else {
4615 new_fcport->d_id.b24 = swl[swl_idx].d_id.b24;
4616 memcpy(new_fcport->node_name,
4617 swl[swl_idx].node_name, WWN_SIZE);
4618 memcpy(new_fcport->port_name,
4619 swl[swl_idx].port_name, WWN_SIZE);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004620 memcpy(new_fcport->fabric_port_name,
4621 swl[swl_idx].fabric_port_name, WWN_SIZE);
4622 new_fcport->fp_speed = swl[swl_idx].fp_speed;
Chad Dupuise8c72ba2010-07-23 15:28:25 +05004623 new_fcport->fc4_type = swl[swl_idx].fc4_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
4625 if (swl[swl_idx].d_id.b.rsvd_1 != 0) {
4626 last_dev = 1;
4627 }
4628 swl_idx++;
4629 }
4630 } else {
4631 /* Send GA_NXT to the switch */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004632 rval = qla2x00_ga_nxt(vha, new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004634 ql_log(ql_log_warn, vha, 0x2064,
4635 "SNS scan failed -- assuming "
4636 "zero-entry result.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 rval = QLA_SUCCESS;
4638 break;
4639 }
4640 }
4641
4642 /* If wrap on switch device list, exit. */
4643 if (first_dev) {
4644 wrap.b24 = new_fcport->d_id.b24;
4645 first_dev = 0;
4646 } else if (new_fcport->d_id.b24 == wrap.b24) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004647 ql_dbg(ql_dbg_disc, vha, 0x2065,
4648 "Device wrap (%02x%02x%02x).\n",
4649 new_fcport->d_id.b.domain,
4650 new_fcport->d_id.b.area,
4651 new_fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 break;
4653 }
4654
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004655 /* Bypass if same physical adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004656 if (new_fcport->d_id.b24 == base_vha->d_id.b24)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 continue;
4658
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004659 /* Bypass virtual ports of the same host. */
Chad Dupuisbb4cf5b2013-02-08 01:58:01 -05004660 if (qla2x00_is_a_vp_did(vha, new_fcport->d_id.b24))
4661 continue;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004662
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07004663 /* Bypass if same domain and area of adapter. */
4664 if (((new_fcport->d_id.b24 & 0xffff00) ==
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004665 (vha->d_id.b24 & 0xffff00)) && ha->current_topology ==
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07004666 ISP_CFG_FL)
4667 continue;
4668
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 /* Bypass reserved domain fields. */
4670 if ((new_fcport->d_id.b.domain & 0xf0) == 0xf0)
4671 continue;
4672
Chad Dupuise8c72ba2010-07-23 15:28:25 +05004673 /* Bypass ports whose FCP-4 type is not FCP_SCSI */
Chad Dupuis4da26e12010-10-15 11:27:40 -07004674 if (ql2xgffidenable &&
4675 (new_fcport->fc4_type != FC4_TYPE_FCP_SCSI &&
4676 new_fcport->fc4_type != FC4_TYPE_UNKNOWN))
Chad Dupuise8c72ba2010-07-23 15:28:25 +05004677 continue;
4678
Quinn Tran726b8542017-01-19 22:28:00 -08004679 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
4680
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 /* Locate matching device in database. */
4682 found = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004683 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 if (memcmp(new_fcport->port_name, fcport->port_name,
4685 WWN_SIZE))
4686 continue;
4687
Joe Carnuccio827210b2013-02-08 01:57:57 -05004688 fcport->scan_state = QLA_FCPORT_FOUND;
Arun Easib3b02e62012-02-09 11:15:39 -08004689
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 found++;
4691
Andrew Vasquezd8b45212006-10-02 12:00:43 -07004692 /* Update port state. */
4693 memcpy(fcport->fabric_port_name,
4694 new_fcport->fabric_port_name, WWN_SIZE);
4695 fcport->fp_speed = new_fcport->fp_speed;
4696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 /*
Roland Dreierb2032fd2015-07-14 16:00:42 -04004698 * If address the same and state FCS_ONLINE
4699 * (or in target mode), nothing changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 */
4701 if (fcport->d_id.b24 == new_fcport->d_id.b24 &&
Roland Dreierb2032fd2015-07-14 16:00:42 -04004702 (atomic_read(&fcport->state) == FCS_ONLINE ||
Quinn Tran726b8542017-01-19 22:28:00 -08004703 (vha->host->active_mode == MODE_TARGET))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 break;
4705 }
4706
4707 /*
4708 * If device was not a fabric device before.
4709 */
4710 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0) {
4711 fcport->d_id.b24 = new_fcport->d_id.b24;
Chad Dupuis5f16b332012-08-22 14:21:00 -04004712 qla2x00_clear_loop_id(fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713 fcport->flags |= (FCF_FABRIC_DEVICE |
4714 FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 break;
4716 }
4717
4718 /*
4719 * Port ID changed or device was marked to be updated;
4720 * Log it out if still logged in and mark it for
4721 * relogin later.
4722 */
Quinn Tran726b8542017-01-19 22:28:00 -08004723 if (qla_tgt_mode_enabled(base_vha)) {
Roland Dreierb2032fd2015-07-14 16:00:42 -04004724 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf080,
4725 "port changed FC ID, %8phC"
4726 " old %x:%x:%x (loop_id 0x%04x)-> new %x:%x:%x\n",
4727 fcport->port_name,
4728 fcport->d_id.b.domain,
4729 fcport->d_id.b.area,
4730 fcport->d_id.b.al_pa,
4731 fcport->loop_id,
4732 new_fcport->d_id.b.domain,
4733 new_fcport->d_id.b.area,
4734 new_fcport->d_id.b.al_pa);
4735 fcport->d_id.b24 = new_fcport->d_id.b24;
4736 break;
4737 }
4738
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 fcport->d_id.b24 = new_fcport->d_id.b24;
4740 fcport->flags |= FCF_LOGIN_NEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 break;
4742 }
4743
Quinn Tran726b8542017-01-19 22:28:00 -08004744 if (found) {
4745 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 continue;
Quinn Tran726b8542017-01-19 22:28:00 -08004747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 /* If device was not in our fcports list, then add it. */
Roland Dreierb2032fd2015-07-14 16:00:42 -04004749 new_fcport->scan_state = QLA_FCPORT_FOUND;
Quinn Tran726b8542017-01-19 22:28:00 -08004750 list_add_tail(&new_fcport->list, &vha->vp_fcports);
4751
4752 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
4753
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754
4755 /* Allocate a new replacement fcport. */
4756 nxt_d_id.b24 = new_fcport->d_id.b24;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004757 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004759 ql_log(ql_log_warn, vha, 0x2066,
4760 "Memory allocation failed for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 return (QLA_MEMORY_ALLOC_FAILED);
4762 }
4763 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
4764 new_fcport->d_id.b24 = nxt_d_id.b24;
4765 }
4766
Quinn Tran726b8542017-01-19 22:28:00 -08004767 qla2x00_free_fcport(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768
Quinn Tran726b8542017-01-19 22:28:00 -08004769 /*
4770 * Logout all previous fabric dev marked lost, except FCP2 devices.
4771 */
4772 list_for_each_entry(fcport, &vha->vp_fcports, list) {
4773 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
4774 break;
4775
4776 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
4777 (fcport->flags & FCF_LOGIN_NEEDED) == 0)
4778 continue;
4779
4780 if (fcport->scan_state == QLA_FCPORT_SCAN) {
4781 if ((qla_dual_mode_enabled(vha) ||
4782 qla_ini_mode_enabled(vha)) &&
4783 atomic_read(&fcport->state) == FCS_ONLINE) {
4784 qla2x00_mark_device_lost(vha, fcport,
4785 ql2xplogiabsentdevice, 0);
4786 if (fcport->loop_id != FC_NO_LOOP_ID &&
4787 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
4788 fcport->port_type != FCT_INITIATOR &&
4789 fcport->port_type != FCT_BROADCAST) {
4790 ql_dbg(ql_dbg_disc, vha, 0xffff,
4791 "%s %d %8phC post del sess\n",
4792 __func__, __LINE__,
4793 fcport->port_name);
4794
4795 qlt_schedule_sess_for_deletion_lock
4796 (fcport);
4797 continue;
4798 }
4799 }
4800 }
4801
4802 if (fcport->scan_state == QLA_FCPORT_FOUND)
4803 qla24xx_fcport_handle_login(vha, fcport);
4804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 return (rval);
4806}
4807
4808/*
4809 * qla2x00_find_new_loop_id
4810 * Scan through our port list and find a new usable loop ID.
4811 *
4812 * Input:
4813 * ha: adapter state pointer.
4814 * dev: port structure pointer.
4815 *
4816 * Returns:
4817 * qla2x00 local function return status code.
4818 *
4819 * Context:
4820 * Kernel context.
4821 */
Joe Carnuccio03bcfb52011-03-30 11:46:27 -07004822int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004823qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824{
4825 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004826 struct qla_hw_data *ha = vha->hw;
Arun Easifeafb7b2010-09-03 14:57:00 -07004827 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828
4829 rval = QLA_SUCCESS;
4830
Chad Dupuis5f16b332012-08-22 14:21:00 -04004831 spin_lock_irqsave(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
Chad Dupuis5f16b332012-08-22 14:21:00 -04004833 dev->loop_id = find_first_zero_bit(ha->loop_id_map,
4834 LOOPID_MAP_SIZE);
4835 if (dev->loop_id >= LOOPID_MAP_SIZE ||
4836 qla2x00_is_reserved_id(vha, dev->loop_id)) {
4837 dev->loop_id = FC_NO_LOOP_ID;
4838 rval = QLA_FUNCTION_FAILED;
4839 } else
4840 set_bit(dev->loop_id, ha->loop_id_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841
Chad Dupuis5f16b332012-08-22 14:21:00 -04004842 spin_unlock_irqrestore(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Chad Dupuis5f16b332012-08-22 14:21:00 -04004844 if (rval == QLA_SUCCESS)
4845 ql_dbg(ql_dbg_disc, dev->vha, 0x2086,
4846 "Assigning new loopid=%x, portid=%x.\n",
4847 dev->loop_id, dev->d_id.b24);
4848 else
4849 ql_log(ql_log_warn, dev->vha, 0x2087,
4850 "No loop_id's available, portid=%x.\n",
4851 dev->d_id.b24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852
4853 return (rval);
4854}
4855
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856
4857/*
4858 * qla2x00_fabric_login
4859 * Issue fabric login command.
4860 *
4861 * Input:
4862 * ha = adapter block pointer.
4863 * device = pointer to FC device type structure.
4864 *
4865 * Returns:
4866 * 0 - Login successfully
4867 * 1 - Login failed
4868 * 2 - Initiator device
4869 * 3 - Fatal error
4870 */
4871int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004872qla2x00_fabric_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 uint16_t *next_loopid)
4874{
4875 int rval;
4876 int retry;
4877 uint16_t tmp_loopid;
4878 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004879 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880
4881 retry = 0;
4882 tmp_loopid = 0;
4883
4884 for (;;) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004885 ql_dbg(ql_dbg_disc, vha, 0x2000,
4886 "Trying Fabric Login w/loop id 0x%04x for port "
4887 "%02x%02x%02x.\n",
4888 fcport->loop_id, fcport->d_id.b.domain,
4889 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
4891 /* Login fcport on switch. */
Chad Dupuis0b91d112012-02-09 11:15:42 -08004892 rval = ha->isp_ops->fabric_login(vha, fcport->loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 fcport->d_id.b.domain, fcport->d_id.b.area,
4894 fcport->d_id.b.al_pa, mb, BIT_0);
Chad Dupuis0b91d112012-02-09 11:15:42 -08004895 if (rval != QLA_SUCCESS) {
4896 return rval;
4897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 if (mb[0] == MBS_PORT_ID_USED) {
4899 /*
4900 * Device has another loop ID. The firmware team
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004901 * recommends the driver perform an implicit login with
4902 * the specified ID again. The ID we just used is save
4903 * here so we return with an ID that can be tried by
4904 * the next login.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 */
4906 retry++;
4907 tmp_loopid = fcport->loop_id;
4908 fcport->loop_id = mb[1];
4909
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004910 ql_dbg(ql_dbg_disc, vha, 0x2001,
4911 "Fabric Login: port in use - next loop "
4912 "id=0x%04x, port id= %02x%02x%02x.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 fcport->loop_id, fcport->d_id.b.domain,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004914 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
4916 } else if (mb[0] == MBS_COMMAND_COMPLETE) {
4917 /*
4918 * Login succeeded.
4919 */
4920 if (retry) {
4921 /* A retry occurred before. */
4922 *next_loopid = tmp_loopid;
4923 } else {
4924 /*
4925 * No retry occurred before. Just increment the
4926 * ID value for next login.
4927 */
4928 *next_loopid = (fcport->loop_id + 1);
4929 }
4930
4931 if (mb[1] & BIT_0) {
4932 fcport->port_type = FCT_INITIATOR;
4933 } else {
4934 fcport->port_type = FCT_TARGET;
4935 if (mb[1] & BIT_1) {
Santosh Vernekar8474f3a2009-08-25 11:36:16 -07004936 fcport->flags |= FCF_FCP2_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 }
4938 }
4939
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07004940 if (mb[10] & BIT_0)
4941 fcport->supported_classes |= FC_COS_CLASS2;
4942 if (mb[10] & BIT_1)
4943 fcport->supported_classes |= FC_COS_CLASS3;
4944
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004945 if (IS_FWI2_CAPABLE(ha)) {
4946 if (mb[10] & BIT_7)
4947 fcport->flags |=
4948 FCF_CONF_COMP_SUPPORTED;
4949 }
4950
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 rval = QLA_SUCCESS;
4952 break;
4953 } else if (mb[0] == MBS_LOOP_ID_USED) {
4954 /*
4955 * Loop ID already used, try next loop ID.
4956 */
4957 fcport->loop_id++;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004958 rval = qla2x00_find_new_loop_id(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 if (rval != QLA_SUCCESS) {
4960 /* Ran out of loop IDs to use */
4961 break;
4962 }
4963 } else if (mb[0] == MBS_COMMAND_ERROR) {
4964 /*
4965 * Firmware possibly timed out during login. If NO
4966 * retries are left to do then the device is declared
4967 * dead.
4968 */
4969 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004970 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07004971 fcport->d_id.b.domain, fcport->d_id.b.area,
4972 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004973 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974
4975 rval = 1;
4976 break;
4977 } else {
4978 /*
4979 * unrecoverable / not handled error
4980 */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004981 ql_dbg(ql_dbg_disc, vha, 0x2002,
4982 "Failed=%x port_id=%02x%02x%02x loop_id=%x "
4983 "jiffies=%lx.\n", mb[0], fcport->d_id.b.domain,
4984 fcport->d_id.b.area, fcport->d_id.b.al_pa,
4985 fcport->loop_id, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986
4987 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004988 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07004989 fcport->d_id.b.domain, fcport->d_id.b.area,
4990 fcport->d_id.b.al_pa);
Chad Dupuis5f16b332012-08-22 14:21:00 -04004991 qla2x00_clear_loop_id(fcport);
Andrew Vasquez0eedfcf2005-10-27 11:09:38 -07004992 fcport->login_retry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993
4994 rval = 3;
4995 break;
4996 }
4997 }
4998
4999 return (rval);
5000}
5001
5002/*
5003 * qla2x00_local_device_login
5004 * Issue local device login command.
5005 *
5006 * Input:
5007 * ha = adapter block pointer.
5008 * loop_id = loop id of device to login to.
5009 *
5010 * Returns (Where's the #define!!!!):
5011 * 0 - Login successfully
5012 * 1 - Login failed
5013 * 3 - Fatal error
5014 */
5015int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005016qla2x00_local_device_login(scsi_qla_host_t *vha, fc_port_t *fcport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017{
5018 int rval;
5019 uint16_t mb[MAILBOX_REGISTER_COUNT];
5020
5021 memset(mb, 0, sizeof(mb));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005022 rval = qla2x00_login_local_device(vha, fcport, mb, BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 if (rval == QLA_SUCCESS) {
5024 /* Interrogate mailbox registers for any errors */
5025 if (mb[0] == MBS_COMMAND_ERROR)
5026 rval = 1;
5027 else if (mb[0] == MBS_COMMAND_PARAMETER_ERROR)
5028 /* device not in PCB table */
5029 rval = 3;
5030 }
5031
5032 return (rval);
5033}
5034
5035/*
5036 * qla2x00_loop_resync
5037 * Resync with fibre channel devices.
5038 *
5039 * Input:
5040 * ha = adapter block pointer.
5041 *
5042 * Returns:
5043 * 0 = success
5044 */
5045int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005046qla2x00_loop_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005048 int rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 uint32_t wait_time;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07005050 struct req_que *req;
5051 struct rsp_que *rsp;
5052
Michael Hernandezd7459522016-12-12 14:40:07 -08005053 req = vha->req;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07005054 rsp = req->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005056 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
5057 if (vha->flags.online) {
5058 if (!(rval = qla2x00_fw_ready(vha))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 /* Wait at most MAX_TARGET RSCNs for a stable link. */
5060 wait_time = 256;
5061 do {
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04005062 if (!IS_QLAFX00(vha->hw)) {
5063 /*
5064 * Issue a marker after FW becomes
5065 * ready.
5066 */
5067 qla2x00_marker(vha, req, rsp, 0, 0,
5068 MK_SYNC_ALL);
5069 vha->marker_needed = 0;
5070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071
5072 /* Remap devices on Loop. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005073 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04005075 if (IS_QLAFX00(vha->hw))
5076 qlafx00_configure_devices(vha);
5077 else
5078 qla2x00_configure_loop(vha);
5079
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005081 } while (!atomic_read(&vha->loop_down_timer) &&
5082 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
5083 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
5084 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 }
5087
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005088 if (test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 return (QLA_FUNCTION_FAILED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005091 if (rval)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005092 ql_dbg(ql_dbg_disc, vha, 0x206c,
5093 "%s *** FAILED ***.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094
5095 return (rval);
5096}
5097
Saurav Kashyap579d12b2010-12-21 16:00:14 -08005098/*
5099* qla2x00_perform_loop_resync
5100* Description: This function will set the appropriate flags and call
5101* qla2x00_loop_resync. If successful loop will be resynced
5102* Arguments : scsi_qla_host_t pointer
5103* returm : Success or Failure
5104*/
5105
5106int qla2x00_perform_loop_resync(scsi_qla_host_t *ha)
5107{
5108 int32_t rval = 0;
5109
5110 if (!test_and_set_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags)) {
5111 /*Configure the flags so that resync happens properly*/
5112 atomic_set(&ha->loop_down_timer, 0);
5113 if (!(ha->device_flags & DFLG_NO_CABLE)) {
5114 atomic_set(&ha->loop_state, LOOP_UP);
5115 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
5116 set_bit(REGISTER_FC4_NEEDED, &ha->dpc_flags);
5117 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
5118
5119 rval = qla2x00_loop_resync(ha);
5120 } else
5121 atomic_set(&ha->loop_state, LOOP_DEAD);
5122
5123 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
5124 }
5125
5126 return rval;
5127}
5128
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129void
Andrew Vasquez67becc02009-08-25 11:36:20 -07005130qla2x00_update_fcports(scsi_qla_host_t *base_vha)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08005131{
5132 fc_port_t *fcport;
Arun Easifeafb7b2010-09-03 14:57:00 -07005133 struct scsi_qla_host *vha;
5134 struct qla_hw_data *ha = base_vha->hw;
5135 unsigned long flags;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08005136
Arun Easifeafb7b2010-09-03 14:57:00 -07005137 spin_lock_irqsave(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08005138 /* Go with deferred removal of rport references. */
Arun Easifeafb7b2010-09-03 14:57:00 -07005139 list_for_each_entry(vha, &base_vha->hw->vp_list, list) {
5140 atomic_inc(&vha->vref_count);
5141 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Dan Carpenter8ae598d2010-12-21 16:00:15 -08005142 if (fcport->drport &&
Arun Easifeafb7b2010-09-03 14:57:00 -07005143 atomic_read(&fcport->state) != FCS_UNCONFIGURED) {
5144 spin_unlock_irqrestore(&ha->vport_slock, flags);
Andrew Vasquez67becc02009-08-25 11:36:20 -07005145 qla2x00_rport_del(fcport);
Alexei Potashnikdf673272015-07-14 16:00:46 -04005146
Arun Easifeafb7b2010-09-03 14:57:00 -07005147 spin_lock_irqsave(&ha->vport_slock, flags);
5148 }
5149 }
5150 atomic_dec(&vha->vref_count);
5151 }
5152 spin_unlock_irqrestore(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08005153}
5154
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04005155/* Assumes idc_lock always held on entry */
5156void
5157qla83xx_reset_ownership(scsi_qla_host_t *vha)
5158{
5159 struct qla_hw_data *ha = vha->hw;
5160 uint32_t drv_presence, drv_presence_mask;
5161 uint32_t dev_part_info1, dev_part_info2, class_type;
5162 uint32_t class_type_mask = 0x3;
5163 uint16_t fcoe_other_function = 0xffff, i;
5164
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04005165 if (IS_QLA8044(ha)) {
5166 drv_presence = qla8044_rd_direct(vha,
5167 QLA8044_CRB_DRV_ACTIVE_INDEX);
5168 dev_part_info1 = qla8044_rd_direct(vha,
5169 QLA8044_CRB_DEV_PART_INFO_INDEX);
5170 dev_part_info2 = qla8044_rd_direct(vha,
5171 QLA8044_CRB_DEV_PART_INFO2);
5172 } else {
5173 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
5174 qla83xx_rd_reg(vha, QLA83XX_DEV_PARTINFO1, &dev_part_info1);
5175 qla83xx_rd_reg(vha, QLA83XX_DEV_PARTINFO2, &dev_part_info2);
5176 }
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04005177 for (i = 0; i < 8; i++) {
5178 class_type = ((dev_part_info1 >> (i * 4)) & class_type_mask);
5179 if ((class_type == QLA83XX_CLASS_TYPE_FCOE) &&
5180 (i != ha->portnum)) {
5181 fcoe_other_function = i;
5182 break;
5183 }
5184 }
5185 if (fcoe_other_function == 0xffff) {
5186 for (i = 0; i < 8; i++) {
5187 class_type = ((dev_part_info2 >> (i * 4)) &
5188 class_type_mask);
5189 if ((class_type == QLA83XX_CLASS_TYPE_FCOE) &&
5190 ((i + 8) != ha->portnum)) {
5191 fcoe_other_function = i + 8;
5192 break;
5193 }
5194 }
5195 }
5196 /*
5197 * Prepare drv-presence mask based on fcoe functions present.
5198 * However consider only valid physical fcoe function numbers (0-15).
5199 */
5200 drv_presence_mask = ~((1 << (ha->portnum)) |
5201 ((fcoe_other_function == 0xffff) ?
5202 0 : (1 << (fcoe_other_function))));
5203
5204 /* We are the reset owner iff:
5205 * - No other protocol drivers present.
5206 * - This is the lowest among fcoe functions. */
5207 if (!(drv_presence & drv_presence_mask) &&
5208 (ha->portnum < fcoe_other_function)) {
5209 ql_dbg(ql_dbg_p3p, vha, 0xb07f,
5210 "This host is Reset owner.\n");
5211 ha->flags.nic_core_reset_owner = 1;
5212 }
5213}
5214
Saurav Kashyapfa492632012-11-21 02:40:29 -05005215static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04005216__qla83xx_set_drv_ack(scsi_qla_host_t *vha)
5217{
5218 int rval = QLA_SUCCESS;
5219 struct qla_hw_data *ha = vha->hw;
5220 uint32_t drv_ack;
5221
5222 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
5223 if (rval == QLA_SUCCESS) {
5224 drv_ack |= (1 << ha->portnum);
5225 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRIVER_ACK, drv_ack);
5226 }
5227
5228 return rval;
5229}
5230
Saurav Kashyapfa492632012-11-21 02:40:29 -05005231static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04005232__qla83xx_clear_drv_ack(scsi_qla_host_t *vha)
5233{
5234 int rval = QLA_SUCCESS;
5235 struct qla_hw_data *ha = vha->hw;
5236 uint32_t drv_ack;
5237
5238 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
5239 if (rval == QLA_SUCCESS) {
5240 drv_ack &= ~(1 << ha->portnum);
5241 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRIVER_ACK, drv_ack);
5242 }
5243
5244 return rval;
5245}
5246
Saurav Kashyapfa492632012-11-21 02:40:29 -05005247static const char *
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04005248qla83xx_dev_state_to_string(uint32_t dev_state)
5249{
5250 switch (dev_state) {
5251 case QLA8XXX_DEV_COLD:
5252 return "COLD/RE-INIT";
5253 case QLA8XXX_DEV_INITIALIZING:
5254 return "INITIALIZING";
5255 case QLA8XXX_DEV_READY:
5256 return "READY";
5257 case QLA8XXX_DEV_NEED_RESET:
5258 return "NEED RESET";
5259 case QLA8XXX_DEV_NEED_QUIESCENT:
5260 return "NEED QUIESCENT";
5261 case QLA8XXX_DEV_FAILED:
5262 return "FAILED";
5263 case QLA8XXX_DEV_QUIESCENT:
5264 return "QUIESCENT";
5265 default:
5266 return "Unknown";
5267 }
5268}
5269
5270/* Assumes idc-lock always held on entry */
5271void
5272qla83xx_idc_audit(scsi_qla_host_t *vha, int audit_type)
5273{
5274 struct qla_hw_data *ha = vha->hw;
5275 uint32_t idc_audit_reg = 0, duration_secs = 0;
5276
5277 switch (audit_type) {
5278 case IDC_AUDIT_TIMESTAMP:
5279 ha->idc_audit_ts = (jiffies_to_msecs(jiffies) / 1000);
5280 idc_audit_reg = (ha->portnum) |
5281 (IDC_AUDIT_TIMESTAMP << 7) | (ha->idc_audit_ts << 8);
5282 qla83xx_wr_reg(vha, QLA83XX_IDC_AUDIT, idc_audit_reg);
5283 break;
5284
5285 case IDC_AUDIT_COMPLETION:
5286 duration_secs = ((jiffies_to_msecs(jiffies) -
5287 jiffies_to_msecs(ha->idc_audit_ts)) / 1000);
5288 idc_audit_reg = (ha->portnum) |
5289 (IDC_AUDIT_COMPLETION << 7) | (duration_secs << 8);
5290 qla83xx_wr_reg(vha, QLA83XX_IDC_AUDIT, idc_audit_reg);
5291 break;
5292
5293 default:
5294 ql_log(ql_log_warn, vha, 0xb078,
5295 "Invalid audit type specified.\n");
5296 break;
5297 }
5298}
5299
5300/* Assumes idc_lock always held on entry */
Saurav Kashyapfa492632012-11-21 02:40:29 -05005301static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04005302qla83xx_initiating_reset(scsi_qla_host_t *vha)
5303{
5304 struct qla_hw_data *ha = vha->hw;
5305 uint32_t idc_control, dev_state;
5306
5307 __qla83xx_get_idc_control(vha, &idc_control);
5308 if ((idc_control & QLA83XX_IDC_RESET_DISABLED)) {
5309 ql_log(ql_log_info, vha, 0xb080,
5310 "NIC Core reset has been disabled. idc-control=0x%x\n",
5311 idc_control);
5312 return QLA_FUNCTION_FAILED;
5313 }
5314
5315 /* Set NEED-RESET iff in READY state and we are the reset-owner */
5316 qla83xx_rd_reg(vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5317 if (ha->flags.nic_core_reset_owner && dev_state == QLA8XXX_DEV_READY) {
5318 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE,
5319 QLA8XXX_DEV_NEED_RESET);
5320 ql_log(ql_log_info, vha, 0xb056, "HW State: NEED RESET.\n");
5321 qla83xx_idc_audit(vha, IDC_AUDIT_TIMESTAMP);
5322 } else {
5323 const char *state = qla83xx_dev_state_to_string(dev_state);
5324 ql_log(ql_log_info, vha, 0xb057, "HW State: %s.\n", state);
5325
5326 /* SV: XXX: Is timeout required here? */
5327 /* Wait for IDC state change READY -> NEED_RESET */
5328 while (dev_state == QLA8XXX_DEV_READY) {
5329 qla83xx_idc_unlock(vha, 0);
5330 msleep(200);
5331 qla83xx_idc_lock(vha, 0);
5332 qla83xx_rd_reg(vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5333 }
5334 }
5335
5336 /* Send IDC ack by writing to drv-ack register */
5337 __qla83xx_set_drv_ack(vha);
5338
5339 return QLA_SUCCESS;
5340}
5341
5342int
5343__qla83xx_set_idc_control(scsi_qla_host_t *vha, uint32_t idc_control)
5344{
5345 return qla83xx_wr_reg(vha, QLA83XX_IDC_CONTROL, idc_control);
5346}
5347
5348int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04005349__qla83xx_get_idc_control(scsi_qla_host_t *vha, uint32_t *idc_control)
5350{
5351 return qla83xx_rd_reg(vha, QLA83XX_IDC_CONTROL, idc_control);
5352}
5353
Saurav Kashyapfa492632012-11-21 02:40:29 -05005354static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04005355qla83xx_check_driver_presence(scsi_qla_host_t *vha)
5356{
5357 uint32_t drv_presence = 0;
5358 struct qla_hw_data *ha = vha->hw;
5359
5360 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
5361 if (drv_presence & (1 << ha->portnum))
5362 return QLA_SUCCESS;
5363 else
5364 return QLA_TEST_FAILED;
5365}
5366
5367int
5368qla83xx_nic_core_reset(scsi_qla_host_t *vha)
5369{
5370 int rval = QLA_SUCCESS;
5371 struct qla_hw_data *ha = vha->hw;
5372
5373 ql_dbg(ql_dbg_p3p, vha, 0xb058,
5374 "Entered %s().\n", __func__);
5375
5376 if (vha->device_flags & DFLG_DEV_FAILED) {
5377 ql_log(ql_log_warn, vha, 0xb059,
5378 "Device in unrecoverable FAILED state.\n");
5379 return QLA_FUNCTION_FAILED;
5380 }
5381
5382 qla83xx_idc_lock(vha, 0);
5383
5384 if (qla83xx_check_driver_presence(vha) != QLA_SUCCESS) {
5385 ql_log(ql_log_warn, vha, 0xb05a,
5386 "Function=0x%x has been removed from IDC participation.\n",
5387 ha->portnum);
5388 rval = QLA_FUNCTION_FAILED;
5389 goto exit;
5390 }
5391
5392 qla83xx_reset_ownership(vha);
5393
5394 rval = qla83xx_initiating_reset(vha);
5395
5396 /*
5397 * Perform reset if we are the reset-owner,
5398 * else wait till IDC state changes to READY/FAILED.
5399 */
5400 if (rval == QLA_SUCCESS) {
5401 rval = qla83xx_idc_state_handler(vha);
5402
5403 if (rval == QLA_SUCCESS)
5404 ha->flags.nic_core_hung = 0;
5405 __qla83xx_clear_drv_ack(vha);
5406 }
5407
5408exit:
5409 qla83xx_idc_unlock(vha, 0);
5410
5411 ql_dbg(ql_dbg_p3p, vha, 0xb05b, "Exiting %s.\n", __func__);
5412
5413 return rval;
5414}
5415
Saurav Kashyap81178772012-08-22 14:21:04 -04005416int
5417qla2xxx_mctp_dump(scsi_qla_host_t *vha)
5418{
5419 struct qla_hw_data *ha = vha->hw;
5420 int rval = QLA_FUNCTION_FAILED;
5421
5422 if (!IS_MCTP_CAPABLE(ha)) {
5423 /* This message can be removed from the final version */
5424 ql_log(ql_log_info, vha, 0x506d,
5425 "This board is not MCTP capable\n");
5426 return rval;
5427 }
5428
5429 if (!ha->mctp_dump) {
5430 ha->mctp_dump = dma_alloc_coherent(&ha->pdev->dev,
5431 MCTP_DUMP_SIZE, &ha->mctp_dump_dma, GFP_KERNEL);
5432
5433 if (!ha->mctp_dump) {
5434 ql_log(ql_log_warn, vha, 0x506e,
5435 "Failed to allocate memory for mctp dump\n");
5436 return rval;
5437 }
5438 }
5439
5440#define MCTP_DUMP_STR_ADDR 0x00000000
5441 rval = qla2x00_dump_mctp_data(vha, ha->mctp_dump_dma,
5442 MCTP_DUMP_STR_ADDR, MCTP_DUMP_SIZE/4);
5443 if (rval != QLA_SUCCESS) {
5444 ql_log(ql_log_warn, vha, 0x506f,
5445 "Failed to capture mctp dump\n");
5446 } else {
5447 ql_log(ql_log_info, vha, 0x5070,
5448 "Mctp dump capture for host (%ld/%p).\n",
5449 vha->host_no, ha->mctp_dump);
5450 ha->mctp_dumped = 1;
5451 }
5452
Saurav Kashyap409ee0f2012-08-22 14:21:29 -04005453 if (!ha->flags.nic_core_reset_hdlr_active && !ha->portnum) {
Saurav Kashyap81178772012-08-22 14:21:04 -04005454 ha->flags.nic_core_reset_hdlr_active = 1;
5455 rval = qla83xx_restart_nic_firmware(vha);
5456 if (rval)
5457 /* NIC Core reset failed. */
5458 ql_log(ql_log_warn, vha, 0x5071,
5459 "Failed to restart nic firmware\n");
5460 else
5461 ql_dbg(ql_dbg_p3p, vha, 0xb084,
5462 "Restarted NIC firmware successfully.\n");
5463 ha->flags.nic_core_reset_hdlr_active = 0;
5464 }
5465
5466 return rval;
5467
5468}
5469
Saurav Kashyap579d12b2010-12-21 16:00:14 -08005470/*
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04005471* qla2x00_quiesce_io
Saurav Kashyap579d12b2010-12-21 16:00:14 -08005472* Description: This function will block the new I/Os
5473* Its not aborting any I/Os as context
5474* is not destroyed during quiescence
5475* Arguments: scsi_qla_host_t
5476* return : void
5477*/
5478void
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04005479qla2x00_quiesce_io(scsi_qla_host_t *vha)
Saurav Kashyap579d12b2010-12-21 16:00:14 -08005480{
5481 struct qla_hw_data *ha = vha->hw;
5482 struct scsi_qla_host *vp;
5483
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04005484 ql_dbg(ql_dbg_dpc, vha, 0x401d,
5485 "Quiescing I/O - ha=%p.\n", ha);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08005486
5487 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
5488 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
5489 atomic_set(&vha->loop_state, LOOP_DOWN);
5490 qla2x00_mark_all_devices_lost(vha, 0);
5491 list_for_each_entry(vp, &ha->vp_list, list)
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04005492 qla2x00_mark_all_devices_lost(vp, 0);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08005493 } else {
5494 if (!atomic_read(&vha->loop_down_timer))
5495 atomic_set(&vha->loop_down_timer,
5496 LOOP_DOWN_TIME);
5497 }
5498 /* Wait for pending cmds to complete */
5499 qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST);
5500}
5501
Giridhar Malavalia9083012010-04-12 17:59:55 -07005502void
5503qla2x00_abort_isp_cleanup(scsi_qla_host_t *vha)
5504{
5505 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap579d12b2010-12-21 16:00:14 -08005506 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07005507 unsigned long flags;
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08005508 fc_port_t *fcport;
Giridhar Malavalia9083012010-04-12 17:59:55 -07005509
Saurav Kashyape46ef002011-02-23 15:27:16 -08005510 /* For ISP82XX, driver waits for completion of the commands.
5511 * online flag should be set.
5512 */
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04005513 if (!(IS_P3P_TYPE(ha)))
Saurav Kashyape46ef002011-02-23 15:27:16 -08005514 vha->flags.online = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07005515 ha->flags.chip_reset_done = 0;
5516 clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Saurav Kashyap2be21fa2012-05-15 14:34:16 -04005517 vha->qla_stats.total_isp_aborts++;
Giridhar Malavalia9083012010-04-12 17:59:55 -07005518
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005519 ql_log(ql_log_info, vha, 0x00af,
5520 "Performing ISP error recovery - ha=%p.\n", ha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005521
Saurav Kashyape46ef002011-02-23 15:27:16 -08005522 /* For ISP82XX, reset_chip is just disabling interrupts.
5523 * Driver waits for the completion of the commands.
5524 * the interrupts need to be enabled.
5525 */
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04005526 if (!(IS_P3P_TYPE(ha)))
Giridhar Malavalia9083012010-04-12 17:59:55 -07005527 ha->isp_ops->reset_chip(vha);
5528
Quinn Tran726b8542017-01-19 22:28:00 -08005529 ha->chip_reset++;
5530
Giridhar Malavalia9083012010-04-12 17:59:55 -07005531 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
5532 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
5533 atomic_set(&vha->loop_state, LOOP_DOWN);
5534 qla2x00_mark_all_devices_lost(vha, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07005535
5536 spin_lock_irqsave(&ha->vport_slock, flags);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08005537 list_for_each_entry(vp, &ha->vp_list, list) {
Arun Easifeafb7b2010-09-03 14:57:00 -07005538 atomic_inc(&vp->vref_count);
5539 spin_unlock_irqrestore(&ha->vport_slock, flags);
5540
Giridhar Malavalia9083012010-04-12 17:59:55 -07005541 qla2x00_mark_all_devices_lost(vp, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07005542
5543 spin_lock_irqsave(&ha->vport_slock, flags);
5544 atomic_dec(&vp->vref_count);
5545 }
5546 spin_unlock_irqrestore(&ha->vport_slock, flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005547 } else {
5548 if (!atomic_read(&vha->loop_down_timer))
5549 atomic_set(&vha->loop_down_timer,
5550 LOOP_DOWN_TIME);
5551 }
5552
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08005553 /* Clear all async request states across all VPs. */
5554 list_for_each_entry(fcport, &vha->vp_fcports, list)
5555 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
5556 spin_lock_irqsave(&ha->vport_slock, flags);
5557 list_for_each_entry(vp, &ha->vp_list, list) {
5558 atomic_inc(&vp->vref_count);
5559 spin_unlock_irqrestore(&ha->vport_slock, flags);
5560
5561 list_for_each_entry(fcport, &vp->vp_fcports, list)
5562 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
5563
5564 spin_lock_irqsave(&ha->vport_slock, flags);
5565 atomic_dec(&vp->vref_count);
5566 }
5567 spin_unlock_irqrestore(&ha->vport_slock, flags);
5568
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07005569 if (!ha->flags.eeh_busy) {
5570 /* Make sure for ISP 82XX IO DMA is complete */
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04005571 if (IS_P3P_TYPE(ha)) {
Giridhar Malavali71905752011-02-23 15:27:10 -08005572 qla82xx_chip_reset_cleanup(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005573 ql_log(ql_log_info, vha, 0x00b4,
5574 "Done chip reset cleanup.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -07005575
Saurav Kashyape46ef002011-02-23 15:27:16 -08005576 /* Done waiting for pending commands.
5577 * Reset the online flag.
5578 */
5579 vha->flags.online = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07005580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07005582 /* Requeue all commands in outstanding command list. */
5583 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
5584 }
Arun Easib6a029e2014-09-25 06:14:52 -04005585 /* memory barrier */
5586 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587}
5588
5589/*
5590* qla2x00_abort_isp
5591* Resets ISP and aborts all outstanding commands.
5592*
5593* Input:
5594* ha = adapter block pointer.
5595*
5596* Returns:
5597* 0 = success
5598*/
5599int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005600qla2x00_abort_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601{
Andrew Vasquez476e8972006-08-23 14:54:55 -07005602 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 uint8_t status = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005604 struct qla_hw_data *ha = vha->hw;
5605 struct scsi_qla_host *vp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005606 struct req_que *req = ha->req_q_map[0];
Arun Easifeafb7b2010-09-03 14:57:00 -07005607 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005609 if (vha->flags.online) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07005610 qla2x00_abort_isp_cleanup(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
Santosh Vernekara61712972012-08-22 14:21:13 -04005612 if (IS_QLA8031(ha)) {
5613 ql_dbg(ql_dbg_p3p, vha, 0xb05c,
5614 "Clearing fcoe driver presence.\n");
5615 if (qla83xx_clear_drv_presence(vha) != QLA_SUCCESS)
5616 ql_dbg(ql_dbg_p3p, vha, 0xb073,
5617 "Error while clearing DRV-Presence.\n");
5618 }
5619
Andrew Vasquez85880802009-12-15 21:29:46 -08005620 if (unlikely(pci_channel_offline(ha->pdev) &&
5621 ha->flags.pci_channel_io_perm_failure)) {
5622 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
5623 status = 0;
5624 return status;
5625 }
5626
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005627 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -08005628
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005629 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005631 if (!qla2x00_restart_isp(vha)) {
5632 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005634 if (!atomic_read(&vha->loop_down_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 /*
5636 * Issue marker command only when we are going
5637 * to start the I/O .
5638 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005639 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640 }
5641
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005642 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643
Andrew Vasquezfd34f552007-07-19 15:06:00 -07005644 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07005646 ha->isp_abort_cnt = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005647 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Andrew Vasquez476e8972006-08-23 14:54:55 -07005648
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005649 if (IS_QLA81XX(ha) || IS_QLA8031(ha))
5650 qla2x00_get_fw_version(vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08005651 if (ha->fce) {
5652 ha->flags.fce_enabled = 1;
5653 memset(ha->fce, 0,
5654 fce_calc_size(ha->fce_bufs));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005655 rval = qla2x00_enable_fce_trace(vha,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08005656 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
5657 &ha->fce_bufs);
5658 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005659 ql_log(ql_log_warn, vha, 0x8033,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08005660 "Unable to reinitialize FCE "
5661 "(%d).\n", rval);
5662 ha->flags.fce_enabled = 0;
5663 }
5664 }
Andrew Vasquez436a7b12008-07-10 16:55:54 -07005665
5666 if (ha->eft) {
5667 memset(ha->eft, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005668 rval = qla2x00_enable_eft_trace(vha,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07005669 ha->eft_dma, EFT_NUM_BUFFERS);
5670 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005671 ql_log(ql_log_warn, vha, 0x8034,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07005672 "Unable to reinitialize EFT "
5673 "(%d).\n", rval);
5674 }
5675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676 } else { /* failed the ISP abort */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005677 vha->flags.online = 1;
5678 if (test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679 if (ha->isp_abort_cnt == 0) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005680 ql_log(ql_log_fatal, vha, 0x8035,
5681 "ISP error recover failed - "
5682 "board disabled.\n");
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07005683 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684 * The next call disables the board
5685 * completely.
5686 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005687 ha->isp_ops->reset_adapter(vha);
5688 vha->flags.online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689 clear_bit(ISP_ABORT_RETRY,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005690 &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691 status = 0;
5692 } else { /* schedule another ISP abort */
5693 ha->isp_abort_cnt--;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005694 ql_dbg(ql_dbg_taskm, vha, 0x8020,
5695 "ISP abort - retry remaining %d.\n",
5696 ha->isp_abort_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697 status = 1;
5698 }
5699 } else {
5700 ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005701 ql_dbg(ql_dbg_taskm, vha, 0x8021,
5702 "ISP error recovery - retrying (%d) "
5703 "more times.\n", ha->isp_abort_cnt);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005704 set_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 status = 1;
5706 }
5707 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07005708
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709 }
5710
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005711 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005712 ql_dbg(ql_dbg_taskm, vha, 0x8022, "%s succeeded.\n", __func__);
Arun Easifeafb7b2010-09-03 14:57:00 -07005713
5714 spin_lock_irqsave(&ha->vport_slock, flags);
5715 list_for_each_entry(vp, &ha->vp_list, list) {
5716 if (vp->vp_idx) {
5717 atomic_inc(&vp->vref_count);
5718 spin_unlock_irqrestore(&ha->vport_slock, flags);
5719
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005720 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07005721
5722 spin_lock_irqsave(&ha->vport_slock, flags);
5723 atomic_dec(&vp->vref_count);
5724 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005725 }
Arun Easifeafb7b2010-09-03 14:57:00 -07005726 spin_unlock_irqrestore(&ha->vport_slock, flags);
5727
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04005728 if (IS_QLA8031(ha)) {
5729 ql_dbg(ql_dbg_p3p, vha, 0xb05d,
5730 "Setting back fcoe driver presence.\n");
5731 if (qla83xx_set_drv_presence(vha) != QLA_SUCCESS)
5732 ql_dbg(ql_dbg_p3p, vha, 0xb074,
5733 "Error while setting DRV-Presence.\n");
5734 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005735 } else {
Joe Perchesd8424f62011-11-18 09:03:06 -08005736 ql_log(ql_log_warn, vha, 0x8023, "%s **** FAILED ****.\n",
5737 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738 }
5739
5740 return(status);
5741}
5742
5743/*
5744* qla2x00_restart_isp
5745* restarts the ISP after a reset
5746*
5747* Input:
5748* ha = adapter block pointer.
5749*
5750* Returns:
5751* 0 = success
5752*/
5753static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005754qla2x00_restart_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755{
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08005756 int status = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005757 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005758 struct req_que *req = ha->req_q_map[0];
5759 struct rsp_que *rsp = ha->rsp_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
5761 /* If firmware needs to be loaded */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005762 if (qla2x00_isp_firmware(vha)) {
5763 vha->flags.online = 0;
5764 status = ha->isp_ops->chip_diag(vha);
5765 if (!status)
5766 status = qla2x00_setup_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 }
5768
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005769 if (!status && !(status = qla2x00_init_rings(vha))) {
5770 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -07005771 ha->flags.chip_reset_done = 1;
Chad Dupuis7108b762014-04-11 16:54:45 -04005772
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005773 /* Initialize the queues in use */
5774 qla25xx_init_queues(ha);
5775
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005776 status = qla2x00_fw_ready(vha);
5777 if (!status) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005778 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005779 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Chad Dupuis7108b762014-04-11 16:54:45 -04005780 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781 }
5782
5783 /* if no cable then assume it's good */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005784 if ((vha->device_flags & DFLG_NO_CABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786 }
5787 return (status);
5788}
5789
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005790static int
5791qla25xx_init_queues(struct qla_hw_data *ha)
5792{
5793 struct rsp_que *rsp = NULL;
5794 struct req_que *req = NULL;
5795 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
5796 int ret = -1;
5797 int i;
5798
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07005799 for (i = 1; i < ha->max_rsp_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005800 rsp = ha->rsp_q_map[i];
Quinn Trancb432852016-02-04 11:45:16 -05005801 if (rsp && test_bit(i, ha->rsp_qid_map)) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005802 rsp->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08005803 ret = qla25xx_init_rsp_que(base_vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005804 if (ret != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005805 ql_dbg(ql_dbg_init, base_vha, 0x00ff,
5806 "%s Rsp que: %d init failed.\n",
5807 __func__, rsp->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005808 else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005809 ql_dbg(ql_dbg_init, base_vha, 0x0100,
5810 "%s Rsp que: %d inited.\n",
5811 __func__, rsp->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005812 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07005813 }
5814 for (i = 1; i < ha->max_req_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005815 req = ha->req_q_map[i];
Quinn Trancb432852016-02-04 11:45:16 -05005816 if (req && test_bit(i, ha->req_qid_map)) {
5817 /* Clear outstanding commands array. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005818 req->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08005819 ret = qla25xx_init_req_que(base_vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005820 if (ret != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005821 ql_dbg(ql_dbg_init, base_vha, 0x0101,
5822 "%s Req que: %d init failed.\n",
5823 __func__, req->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005824 else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005825 ql_dbg(ql_dbg_init, base_vha, 0x0102,
5826 "%s Req que: %d inited.\n",
5827 __func__, req->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005828 }
5829 }
5830 return ret;
5831}
5832
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833/*
5834* qla2x00_reset_adapter
5835* Reset adapter.
5836*
5837* Input:
5838* ha = adapter block pointer.
5839*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07005840void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005841qla2x00_reset_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842{
5843 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005844 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07005845 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005847 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07005848 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 spin_lock_irqsave(&ha->hardware_lock, flags);
5851 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
5852 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
5853 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
5854 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
5855 spin_unlock_irqrestore(&ha->hardware_lock, flags);
5856}
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005857
5858void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005859qla24xx_reset_adapter(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005860{
5861 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005862 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005863 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
5864
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04005865 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07005866 return;
5867
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005868 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07005869 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005870
5871 spin_lock_irqsave(&ha->hardware_lock, flags);
5872 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
5873 RD_REG_DWORD(&reg->hccr);
5874 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
5875 RD_REG_DWORD(&reg->hccr);
5876 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez09ff36d2009-01-22 09:45:30 -08005877
5878 if (IS_NOPOLLING_TYPE(ha))
5879 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005880}
5881
David Miller4e08df32007-04-16 12:37:43 -07005882/* On sparc systems, obtain port and node WWN from firmware
5883 * properties.
5884 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005885static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t *vha,
5886 struct nvram_24xx *nv)
David Miller4e08df32007-04-16 12:37:43 -07005887{
5888#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005889 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07005890 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07005891 struct device_node *dp = pci_device_to_OF_node(pdev);
5892 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07005893 int len;
5894
5895 val = of_get_property(dp, "port-wwn", &len);
5896 if (val && len >= WWN_SIZE)
5897 memcpy(nv->port_name, val, WWN_SIZE);
5898
5899 val = of_get_property(dp, "node-wwn", &len);
5900 if (val && len >= WWN_SIZE)
5901 memcpy(nv->node_name, val, WWN_SIZE);
5902#endif
5903}
5904
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005905int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005906qla24xx_nvram_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005907{
David Miller4e08df32007-04-16 12:37:43 -07005908 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005909 struct init_cb_24xx *icb;
5910 struct nvram_24xx *nv;
5911 uint32_t *dptr;
5912 uint8_t *dptr1, *dptr2;
5913 uint32_t chksum;
5914 uint16_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005915 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005916
David Miller4e08df32007-04-16 12:37:43 -07005917 rval = QLA_SUCCESS;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005918 icb = (struct init_cb_24xx *)ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07005919 nv = ha->nvram;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005920
5921 /* Determine NVRAM starting address. */
Chad Dupuisf73cb692014-02-26 04:15:06 -05005922 if (ha->port_no == 0) {
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005923 ha->nvram_base = FA_NVRAM_FUNC0_ADDR;
5924 ha->vpd_base = FA_NVRAM_VPD0_ADDR;
5925 } else {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005926 ha->nvram_base = FA_NVRAM_FUNC1_ADDR;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -08005927 ha->vpd_base = FA_NVRAM_VPD1_ADDR;
5928 }
Chad Dupuisf73cb692014-02-26 04:15:06 -05005929
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005930 ha->nvram_size = sizeof(struct nvram_24xx);
5931 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005932
Seokmann Ju281afe12007-07-26 13:43:34 -07005933 /* Get VPD data into cache */
5934 ha->vpd = ha->nvram + VPD_OFFSET;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005935 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd,
Seokmann Ju281afe12007-07-26 13:43:34 -07005936 ha->nvram_base - FA_NVRAM_FUNC0_ADDR, FA_NVRAM_VPD_SIZE * 4);
5937
5938 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005939 dptr = (uint32_t *)nv;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005940 ha->isp_ops->read_nvram(vha, (uint8_t *)dptr, ha->nvram_base,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005941 ha->nvram_size);
Joe Carnuccioda08ef52016-01-27 12:03:34 -05005942 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++, dptr++)
5943 chksum += le32_to_cpu(*dptr);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005944
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005945 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x006a,
5946 "Contents of NVRAM\n");
5947 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010d,
5948 (uint8_t *)nv, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005949
5950 /* Bad NVRAM data, set defaults parameters. */
5951 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
5952 || nv->id[3] != ' ' ||
Bart Van Asschead950362015-07-09 07:24:08 -07005953 nv->nvram_version < cpu_to_le16(ICB_VERSION)) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005954 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005955 ql_log(ql_log_warn, vha, 0x006b,
Raul Porcel9e336522012-05-15 14:34:08 -04005956 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005957 "version=0x%x.\n", chksum, nv->id[0], nv->nvram_version);
5958 ql_log(ql_log_warn, vha, 0x006c,
5959 "Falling back to functioning (yet invalid -- WWPN) "
5960 "defaults.\n");
David Miller4e08df32007-04-16 12:37:43 -07005961
5962 /*
5963 * Set default initialization control block.
5964 */
5965 memset(nv, 0, ha->nvram_size);
Bart Van Asschead950362015-07-09 07:24:08 -07005966 nv->nvram_version = cpu_to_le16(ICB_VERSION);
5967 nv->version = cpu_to_le16(ICB_VERSION);
Joe Carnuccio98aee702014-09-25 05:16:38 -04005968 nv->frame_payload_size = 2048;
Bart Van Asschead950362015-07-09 07:24:08 -07005969 nv->execution_throttle = cpu_to_le16(0xFFFF);
5970 nv->exchange_count = cpu_to_le16(0);
5971 nv->hard_address = cpu_to_le16(124);
David Miller4e08df32007-04-16 12:37:43 -07005972 nv->port_name[0] = 0x21;
Chad Dupuisf73cb692014-02-26 04:15:06 -05005973 nv->port_name[1] = 0x00 + ha->port_no + 1;
David Miller4e08df32007-04-16 12:37:43 -07005974 nv->port_name[2] = 0x00;
5975 nv->port_name[3] = 0xe0;
5976 nv->port_name[4] = 0x8b;
5977 nv->port_name[5] = 0x1c;
5978 nv->port_name[6] = 0x55;
5979 nv->port_name[7] = 0x86;
5980 nv->node_name[0] = 0x20;
5981 nv->node_name[1] = 0x00;
5982 nv->node_name[2] = 0x00;
5983 nv->node_name[3] = 0xe0;
5984 nv->node_name[4] = 0x8b;
5985 nv->node_name[5] = 0x1c;
5986 nv->node_name[6] = 0x55;
5987 nv->node_name[7] = 0x86;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005988 qla24xx_nvram_wwn_from_ofw(vha, nv);
Bart Van Asschead950362015-07-09 07:24:08 -07005989 nv->login_retry_count = cpu_to_le16(8);
5990 nv->interrupt_delay_timer = cpu_to_le16(0);
5991 nv->login_timeout = cpu_to_le16(0);
David Miller4e08df32007-04-16 12:37:43 -07005992 nv->firmware_options_1 =
Bart Van Asschead950362015-07-09 07:24:08 -07005993 cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
5994 nv->firmware_options_2 = cpu_to_le32(2 << 4);
5995 nv->firmware_options_2 |= cpu_to_le32(BIT_12);
5996 nv->firmware_options_3 = cpu_to_le32(2 << 13);
5997 nv->host_p = cpu_to_le32(BIT_11|BIT_10);
5998 nv->efi_parameters = cpu_to_le32(0);
David Miller4e08df32007-04-16 12:37:43 -07005999 nv->reset_delay = 5;
Bart Van Asschead950362015-07-09 07:24:08 -07006000 nv->max_luns_per_target = cpu_to_le16(128);
6001 nv->port_down_retry_count = cpu_to_le16(30);
6002 nv->link_down_timeout = cpu_to_le16(30);
David Miller4e08df32007-04-16 12:37:43 -07006003
6004 rval = 1;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006005 }
6006
Quinn Tran726b8542017-01-19 22:28:00 -08006007 if (qla_tgt_mode_enabled(vha)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006008 /* Don't enable full login after initial LIP */
Bart Van Asschead950362015-07-09 07:24:08 -07006009 nv->firmware_options_1 &= cpu_to_le32(~BIT_13);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006010 /* Don't enable LIP full login for initiator */
Bart Van Asschead950362015-07-09 07:24:08 -07006011 nv->host_p &= cpu_to_le32(~BIT_10);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006012 }
6013
6014 qlt_24xx_config_nvram_stage1(vha, nv);
6015
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006016 /* Reset Initialization control block */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006017 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006018
6019 /* Copy 1st segment. */
6020 dptr1 = (uint8_t *)icb;
6021 dptr2 = (uint8_t *)&nv->version;
6022 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
6023 while (cnt--)
6024 *dptr1++ = *dptr2++;
6025
6026 icb->login_retry_count = nv->login_retry_count;
Andrew Vasquez3ea66e22006-06-23 16:11:27 -07006027 icb->link_down_on_nos = nv->link_down_on_nos;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006028
6029 /* Copy 2nd segment. */
6030 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
6031 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
6032 cnt = (uint8_t *)&icb->reserved_3 -
6033 (uint8_t *)&icb->interrupt_delay_timer;
6034 while (cnt--)
6035 *dptr1++ = *dptr2++;
6036
6037 /*
6038 * Setup driver NVRAM options.
6039 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006040 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08006041 "QLA2462");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006042
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006043 qlt_24xx_config_nvram_stage2(vha, icb);
6044
Bart Van Asschead950362015-07-09 07:24:08 -07006045 if (nv->host_p & cpu_to_le32(BIT_15)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006046 /* Use alternate WWN? */
Andrew Vasquez5341e862006-05-17 15:09:16 -07006047 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
6048 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
6049 }
6050
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006051 /* Prepare nodename */
Bart Van Asschead950362015-07-09 07:24:08 -07006052 if ((icb->firmware_options_1 & cpu_to_le32(BIT_14)) == 0) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006053 /*
6054 * Firmware will apply the following mask if the nodename was
6055 * not provided.
6056 */
6057 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
6058 icb->node_name[0] &= 0xF0;
6059 }
6060
6061 /* Set host adapter parameters. */
6062 ha->flags.disable_risc_code_load = 0;
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08006063 ha->flags.enable_lip_reset = 0;
6064 ha->flags.enable_lip_full_login =
6065 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
6066 ha->flags.enable_target_reset =
6067 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006068 ha->flags.enable_led_scheme = 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07006069 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006070
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07006071 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
6072 (BIT_6 | BIT_5 | BIT_4)) >> 4;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006073
6074 memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
6075 sizeof(ha->fw_seriallink_options24));
6076
6077 /* save HBA serial number */
6078 ha->serial0 = icb->port_name[5];
6079 ha->serial1 = icb->port_name[6];
6080 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006081 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
6082 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006083
Bart Van Asschead950362015-07-09 07:24:08 -07006084 icb->execution_throttle = cpu_to_le16(0xFFFF);
andrew.vasquez@qlogic.combc8fb3c2006-01-13 17:05:42 -08006085
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006086 ha->retry_count = le16_to_cpu(nv->login_retry_count);
6087
6088 /* Set minimum login_timeout to 4 seconds. */
6089 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
6090 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
6091 if (le16_to_cpu(nv->login_timeout) < 4)
Bart Van Asschead950362015-07-09 07:24:08 -07006092 nv->login_timeout = cpu_to_le16(4);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006093 ha->login_timeout = le16_to_cpu(nv->login_timeout);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006094
Andrew Vasquez00a537b2008-02-28 14:06:11 -08006095 /* Set minimum RATOV to 100 tenths of a second. */
6096 ha->r_a_tov = 100;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006097
6098 ha->loop_reset_delay = nv->reset_delay;
6099
6100 /* Link Down Timeout = 0:
6101 *
6102 * When Port Down timer expires we will start returning
6103 * I/O's to OS with "DID_NO_CONNECT".
6104 *
6105 * Link Down Timeout != 0:
6106 *
6107 * The driver waits for the link to come up after link down
6108 * before returning I/Os to OS with "DID_NO_CONNECT".
6109 */
6110 if (le16_to_cpu(nv->link_down_timeout) == 0) {
6111 ha->loop_down_abort_time =
6112 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
6113 } else {
6114 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
6115 ha->loop_down_abort_time =
6116 (LOOP_DOWN_TIME - ha->link_down_timeout);
6117 }
6118
6119 /* Need enough time to try and get the port back. */
6120 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
6121 if (qlport_down_retry)
6122 ha->port_down_retry_count = qlport_down_retry;
6123
6124 /* Set login_retry_count */
6125 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
6126 if (ha->port_down_retry_count ==
6127 le16_to_cpu(nv->port_down_retry_count) &&
6128 ha->port_down_retry_count > 3)
6129 ha->login_retry_count = ha->port_down_retry_count;
6130 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
6131 ha->login_retry_count = ha->port_down_retry_count;
6132 if (ql2xloginretrycount)
6133 ha->login_retry_count = ql2xloginretrycount;
6134
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07006135 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006136 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07006137 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
6138 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
6139 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
6140 le16_to_cpu(icb->interrupt_delay_timer): 2;
6141 }
Bart Van Asschead950362015-07-09 07:24:08 -07006142 icb->firmware_options_2 &= cpu_to_le32(
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07006143 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006144 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07006145 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08006146 ha->zio_mode = QLA_ZIO_MODE_6;
6147
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006148 ql_log(ql_log_info, vha, 0x006f,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07006149 "ZIO mode %d enabled; timer delay (%d us).\n",
6150 ha->zio_mode, ha->zio_timer * 100);
6151
6152 icb->firmware_options_2 |= cpu_to_le32(
6153 (uint32_t)ha->zio_mode);
6154 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006155 vha->flags.process_response_queue = 1;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07006156 }
6157
David Miller4e08df32007-04-16 12:37:43 -07006158 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006159 ql_log(ql_log_warn, vha, 0x0070,
6160 "NVRAM configuration failed.\n");
David Miller4e08df32007-04-16 12:37:43 -07006161 }
6162 return (rval);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006163}
6164
Sawan Chandak4243c112016-01-27 12:03:31 -05006165uint8_t qla27xx_find_valid_image(struct scsi_qla_host *vha)
6166{
6167 struct qla27xx_image_status pri_image_status, sec_image_status;
6168 uint8_t valid_pri_image, valid_sec_image;
6169 uint32_t *wptr;
6170 uint32_t cnt, chksum, size;
6171 struct qla_hw_data *ha = vha->hw;
6172
6173 valid_pri_image = valid_sec_image = 1;
6174 ha->active_image = 0;
6175 size = sizeof(struct qla27xx_image_status) / sizeof(uint32_t);
6176
6177 if (!ha->flt_region_img_status_pri) {
6178 valid_pri_image = 0;
6179 goto check_sec_image;
6180 }
6181
6182 qla24xx_read_flash_data(vha, (uint32_t *)(&pri_image_status),
6183 ha->flt_region_img_status_pri, size);
6184
6185 if (pri_image_status.signature != QLA27XX_IMG_STATUS_SIGN) {
6186 ql_dbg(ql_dbg_init, vha, 0x018b,
6187 "Primary image signature (0x%x) not valid\n",
6188 pri_image_status.signature);
6189 valid_pri_image = 0;
6190 goto check_sec_image;
6191 }
6192
6193 wptr = (uint32_t *)(&pri_image_status);
6194 cnt = size;
6195
Joe Carnuccioda08ef52016-01-27 12:03:34 -05006196 for (chksum = 0; cnt--; wptr++)
6197 chksum += le32_to_cpu(*wptr);
Quinn Tran41dc5292017-01-19 22:28:03 -08006198
Sawan Chandak4243c112016-01-27 12:03:31 -05006199 if (chksum) {
6200 ql_dbg(ql_dbg_init, vha, 0x018c,
6201 "Checksum validation failed for primary image (0x%x)\n",
6202 chksum);
6203 valid_pri_image = 0;
6204 }
6205
6206check_sec_image:
6207 if (!ha->flt_region_img_status_sec) {
6208 valid_sec_image = 0;
6209 goto check_valid_image;
6210 }
6211
6212 qla24xx_read_flash_data(vha, (uint32_t *)(&sec_image_status),
6213 ha->flt_region_img_status_sec, size);
6214
6215 if (sec_image_status.signature != QLA27XX_IMG_STATUS_SIGN) {
6216 ql_dbg(ql_dbg_init, vha, 0x018d,
6217 "Secondary image signature(0x%x) not valid\n",
6218 sec_image_status.signature);
6219 valid_sec_image = 0;
6220 goto check_valid_image;
6221 }
6222
6223 wptr = (uint32_t *)(&sec_image_status);
6224 cnt = size;
Joe Carnuccioda08ef52016-01-27 12:03:34 -05006225 for (chksum = 0; cnt--; wptr++)
6226 chksum += le32_to_cpu(*wptr);
Sawan Chandak4243c112016-01-27 12:03:31 -05006227 if (chksum) {
6228 ql_dbg(ql_dbg_init, vha, 0x018e,
6229 "Checksum validation failed for secondary image (0x%x)\n",
6230 chksum);
6231 valid_sec_image = 0;
6232 }
6233
6234check_valid_image:
6235 if (valid_pri_image && (pri_image_status.image_status_mask & 0x1))
6236 ha->active_image = QLA27XX_PRIMARY_IMAGE;
6237 if (valid_sec_image && (sec_image_status.image_status_mask & 0x1)) {
6238 if (!ha->active_image ||
6239 pri_image_status.generation_number <
6240 sec_image_status.generation_number)
6241 ha->active_image = QLA27XX_SECONDARY_IMAGE;
6242 }
6243
6244 ql_dbg(ql_dbg_init, vha, 0x018f, "%s image\n",
6245 ha->active_image == 0 ? "default bootld and fw" :
6246 ha->active_image == 1 ? "primary" :
6247 ha->active_image == 2 ? "secondary" :
6248 "Invalid");
6249
6250 return ha->active_image;
6251}
6252
Adrian Bunk413975a2006-06-30 02:33:06 -07006253static int
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006254qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
6255 uint32_t faddr)
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006256{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006257 int rval = QLA_SUCCESS;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006258 int segments, fragment;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006259 uint32_t *dcode, dlen;
6260 uint32_t risc_addr;
6261 uint32_t risc_size;
6262 uint32_t i;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006263 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006264 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006265
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006266 ql_dbg(ql_dbg_init, vha, 0x008b,
Chad Dupuiscfb09192011-11-18 09:03:07 -08006267 "FW: Loading firmware from flash (%x).\n", faddr);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006268
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006269 rval = QLA_SUCCESS;
6270
6271 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006272 dcode = (uint32_t *)req->ring;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006273 *srisc_addr = 0;
6274
Sawan Chandak4243c112016-01-27 12:03:31 -05006275 if (IS_QLA27XX(ha) &&
6276 qla27xx_find_valid_image(vha) == QLA27XX_SECONDARY_IMAGE)
6277 faddr = ha->flt_region_fw_sec;
6278
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006279 /* Validate firmware image by checking version. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006280 qla24xx_read_flash_data(vha, dcode, faddr + 4, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006281 for (i = 0; i < 4; i++)
6282 dcode[i] = be32_to_cpu(dcode[i]);
6283 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
6284 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
6285 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
6286 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006287 ql_log(ql_log_fatal, vha, 0x008c,
6288 "Unable to verify the integrity of flash firmware "
6289 "image.\n");
6290 ql_log(ql_log_fatal, vha, 0x008d,
6291 "Firmware data: %08x %08x %08x %08x.\n",
6292 dcode[0], dcode[1], dcode[2], dcode[3]);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006293
6294 return QLA_FUNCTION_FAILED;
6295 }
6296
6297 while (segments && rval == QLA_SUCCESS) {
6298 /* Read segment's load information. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006299 qla24xx_read_flash_data(vha, dcode, faddr, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006300
6301 risc_addr = be32_to_cpu(dcode[2]);
6302 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
6303 risc_size = be32_to_cpu(dcode[3]);
6304
6305 fragment = 0;
6306 while (risc_size > 0 && rval == QLA_SUCCESS) {
6307 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
6308 if (dlen > risc_size)
6309 dlen = risc_size;
6310
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006311 ql_dbg(ql_dbg_init, vha, 0x008e,
6312 "Loading risc segment@ risc addr %x "
6313 "number of dwords 0x%x offset 0x%x.\n",
6314 risc_addr, dlen, faddr);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006315
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006316 qla24xx_read_flash_data(vha, dcode, faddr, dlen);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006317 for (i = 0; i < dlen; i++)
6318 dcode[i] = swab32(dcode[i]);
6319
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006320 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006321 dlen);
6322 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006323 ql_log(ql_log_fatal, vha, 0x008f,
6324 "Failed to load segment %d of firmware.\n",
6325 fragment);
Chad Dupuisf261f7a2014-09-25 05:17:03 -04006326 return QLA_FUNCTION_FAILED;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006327 }
6328
6329 faddr += dlen;
6330 risc_addr += dlen;
6331 risc_size -= dlen;
6332 fragment++;
6333 }
6334
6335 /* Next segment. */
6336 segments--;
6337 }
6338
Chad Dupuisf73cb692014-02-26 04:15:06 -05006339 if (!IS_QLA27XX(ha))
6340 return rval;
6341
6342 if (ha->fw_dump_template)
6343 vfree(ha->fw_dump_template);
6344 ha->fw_dump_template = NULL;
6345 ha->fw_dump_template_len = 0;
6346
6347 ql_dbg(ql_dbg_init, vha, 0x0161,
6348 "Loading fwdump template from %x\n", faddr);
6349 qla24xx_read_flash_data(vha, dcode, faddr, 7);
6350 risc_size = be32_to_cpu(dcode[2]);
6351 ql_dbg(ql_dbg_init, vha, 0x0162,
6352 "-> array size %x dwords\n", risc_size);
6353 if (risc_size == 0 || risc_size == ~0)
6354 goto default_template;
6355
6356 dlen = (risc_size - 8) * sizeof(*dcode);
6357 ql_dbg(ql_dbg_init, vha, 0x0163,
6358 "-> template allocating %x bytes...\n", dlen);
6359 ha->fw_dump_template = vmalloc(dlen);
6360 if (!ha->fw_dump_template) {
6361 ql_log(ql_log_warn, vha, 0x0164,
6362 "Failed fwdump template allocate %x bytes.\n", risc_size);
6363 goto default_template;
6364 }
6365
6366 faddr += 7;
6367 risc_size -= 8;
6368 dcode = ha->fw_dump_template;
6369 qla24xx_read_flash_data(vha, dcode, faddr, risc_size);
6370 for (i = 0; i < risc_size; i++)
6371 dcode[i] = le32_to_cpu(dcode[i]);
6372
6373 if (!qla27xx_fwdt_template_valid(dcode)) {
6374 ql_log(ql_log_warn, vha, 0x0165,
6375 "Failed fwdump template validate\n");
6376 goto default_template;
6377 }
6378
6379 dlen = qla27xx_fwdt_template_size(dcode);
6380 ql_dbg(ql_dbg_init, vha, 0x0166,
6381 "-> template size %x bytes\n", dlen);
6382 if (dlen > risc_size * sizeof(*dcode)) {
6383 ql_log(ql_log_warn, vha, 0x0167,
Chad Dupuis97ea7022014-03-13 14:16:40 -04006384 "Failed fwdump template exceeds array by %x bytes\n",
6385 (uint32_t)(dlen - risc_size * sizeof(*dcode)));
Chad Dupuisf73cb692014-02-26 04:15:06 -05006386 goto default_template;
6387 }
6388 ha->fw_dump_template_len = dlen;
6389 return rval;
6390
6391default_template:
6392 ql_log(ql_log_warn, vha, 0x0168, "Using default fwdump template\n");
6393 if (ha->fw_dump_template)
6394 vfree(ha->fw_dump_template);
6395 ha->fw_dump_template = NULL;
6396 ha->fw_dump_template_len = 0;
6397
6398 dlen = qla27xx_fwdt_template_default_size();
6399 ql_dbg(ql_dbg_init, vha, 0x0169,
6400 "-> template allocating %x bytes...\n", dlen);
6401 ha->fw_dump_template = vmalloc(dlen);
6402 if (!ha->fw_dump_template) {
6403 ql_log(ql_log_warn, vha, 0x016a,
6404 "Failed fwdump template allocate %x bytes.\n", risc_size);
6405 goto failed_template;
6406 }
6407
6408 dcode = ha->fw_dump_template;
6409 risc_size = dlen / sizeof(*dcode);
6410 memcpy(dcode, qla27xx_fwdt_template_default(), dlen);
6411 for (i = 0; i < risc_size; i++)
6412 dcode[i] = be32_to_cpu(dcode[i]);
6413
6414 if (!qla27xx_fwdt_template_valid(ha->fw_dump_template)) {
6415 ql_log(ql_log_warn, vha, 0x016b,
6416 "Failed fwdump template validate\n");
6417 goto failed_template;
6418 }
6419
6420 dlen = qla27xx_fwdt_template_size(ha->fw_dump_template);
6421 ql_dbg(ql_dbg_init, vha, 0x016c,
6422 "-> template size %x bytes\n", dlen);
6423 ha->fw_dump_template_len = dlen;
6424 return rval;
6425
6426failed_template:
6427 ql_log(ql_log_warn, vha, 0x016d, "Failed default fwdump template\n");
6428 if (ha->fw_dump_template)
6429 vfree(ha->fw_dump_template);
6430 ha->fw_dump_template = NULL;
6431 ha->fw_dump_template_len = 0;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006432 return rval;
6433}
6434
Giridhar Malavalie9454a82013-02-08 01:57:47 -05006435#define QLA_FW_URL "http://ldriver.qlogic.com/firmware/"
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006436
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006437int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006438qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez54333832005-11-09 15:49:04 -08006439{
6440 int rval;
6441 int i, fragment;
6442 uint16_t *wcode, *fwcode;
6443 uint32_t risc_addr, risc_size, fwclen, wlen, *seg;
6444 struct fw_blob *blob;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006445 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006446 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez54333832005-11-09 15:49:04 -08006447
6448 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006449 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08006450 if (!blob) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006451 ql_log(ql_log_info, vha, 0x0083,
Yannick Guerrini94bcf832015-02-26 22:49:34 +01006452 "Firmware image unavailable.\n");
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006453 ql_log(ql_log_info, vha, 0x0084,
6454 "Firmware images can be retrieved from: "QLA_FW_URL ".\n");
Andrew Vasquez54333832005-11-09 15:49:04 -08006455 return QLA_FUNCTION_FAILED;
6456 }
6457
6458 rval = QLA_SUCCESS;
6459
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006460 wcode = (uint16_t *)req->ring;
Andrew Vasquez54333832005-11-09 15:49:04 -08006461 *srisc_addr = 0;
6462 fwcode = (uint16_t *)blob->fw->data;
6463 fwclen = 0;
6464
6465 /* Validate firmware image by checking version. */
6466 if (blob->fw->size < 8 * sizeof(uint16_t)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006467 ql_log(ql_log_fatal, vha, 0x0085,
6468 "Unable to verify integrity of firmware image (%Zd).\n",
Andrew Vasquez54333832005-11-09 15:49:04 -08006469 blob->fw->size);
6470 goto fail_fw_integrity;
6471 }
6472 for (i = 0; i < 4; i++)
6473 wcode[i] = be16_to_cpu(fwcode[i + 4]);
6474 if ((wcode[0] == 0xffff && wcode[1] == 0xffff && wcode[2] == 0xffff &&
6475 wcode[3] == 0xffff) || (wcode[0] == 0 && wcode[1] == 0 &&
6476 wcode[2] == 0 && wcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006477 ql_log(ql_log_fatal, vha, 0x0086,
6478 "Unable to verify integrity of firmware image.\n");
6479 ql_log(ql_log_fatal, vha, 0x0087,
6480 "Firmware data: %04x %04x %04x %04x.\n",
6481 wcode[0], wcode[1], wcode[2], wcode[3]);
Andrew Vasquez54333832005-11-09 15:49:04 -08006482 goto fail_fw_integrity;
6483 }
6484
6485 seg = blob->segs;
6486 while (*seg && rval == QLA_SUCCESS) {
6487 risc_addr = *seg;
6488 *srisc_addr = *srisc_addr == 0 ? *seg : *srisc_addr;
6489 risc_size = be16_to_cpu(fwcode[3]);
6490
6491 /* Validate firmware image size. */
6492 fwclen += risc_size * sizeof(uint16_t);
6493 if (blob->fw->size < fwclen) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006494 ql_log(ql_log_fatal, vha, 0x0088,
Andrew Vasquez54333832005-11-09 15:49:04 -08006495 "Unable to verify integrity of firmware image "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006496 "(%Zd).\n", blob->fw->size);
Andrew Vasquez54333832005-11-09 15:49:04 -08006497 goto fail_fw_integrity;
6498 }
6499
6500 fragment = 0;
6501 while (risc_size > 0 && rval == QLA_SUCCESS) {
6502 wlen = (uint16_t)(ha->fw_transfer_size >> 1);
6503 if (wlen > risc_size)
6504 wlen = risc_size;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006505 ql_dbg(ql_dbg_init, vha, 0x0089,
6506 "Loading risc segment@ risc addr %x number of "
6507 "words 0x%x.\n", risc_addr, wlen);
Andrew Vasquez54333832005-11-09 15:49:04 -08006508
6509 for (i = 0; i < wlen; i++)
6510 wcode[i] = swab16(fwcode[i]);
6511
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006512 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquez54333832005-11-09 15:49:04 -08006513 wlen);
6514 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006515 ql_log(ql_log_fatal, vha, 0x008a,
6516 "Failed to load segment %d of firmware.\n",
6517 fragment);
Andrew Vasquez54333832005-11-09 15:49:04 -08006518 break;
6519 }
6520
6521 fwcode += wlen;
6522 risc_addr += wlen;
6523 risc_size -= wlen;
6524 fragment++;
6525 }
6526
6527 /* Next segment. */
6528 seg++;
6529 }
6530 return rval;
6531
6532fail_fw_integrity:
6533 return QLA_FUNCTION_FAILED;
6534}
6535
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006536static int
6537qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006538{
6539 int rval;
6540 int segments, fragment;
6541 uint32_t *dcode, dlen;
6542 uint32_t risc_addr;
6543 uint32_t risc_size;
6544 uint32_t i;
Andrew Vasquez54333832005-11-09 15:49:04 -08006545 struct fw_blob *blob;
Chad Dupuisf73cb692014-02-26 04:15:06 -05006546 const uint32_t *fwcode;
6547 uint32_t fwclen;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006548 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006549 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006550
Andrew Vasquez54333832005-11-09 15:49:04 -08006551 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006552 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08006553 if (!blob) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006554 ql_log(ql_log_warn, vha, 0x0090,
Yannick Guerrini94bcf832015-02-26 22:49:34 +01006555 "Firmware image unavailable.\n");
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006556 ql_log(ql_log_warn, vha, 0x0091,
6557 "Firmware images can be retrieved from: "
6558 QLA_FW_URL ".\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07006559
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006560 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006561 }
6562
Chad Dupuiscfb09192011-11-18 09:03:07 -08006563 ql_dbg(ql_dbg_init, vha, 0x0092,
6564 "FW: Loading via request-firmware.\n");
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006565
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006566 rval = QLA_SUCCESS;
6567
6568 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006569 dcode = (uint32_t *)req->ring;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006570 *srisc_addr = 0;
Andrew Vasquez54333832005-11-09 15:49:04 -08006571 fwcode = (uint32_t *)blob->fw->data;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006572 fwclen = 0;
6573
6574 /* Validate firmware image by checking version. */
Andrew Vasquez54333832005-11-09 15:49:04 -08006575 if (blob->fw->size < 8 * sizeof(uint32_t)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006576 ql_log(ql_log_fatal, vha, 0x0093,
6577 "Unable to verify integrity of firmware image (%Zd).\n",
Andrew Vasquez54333832005-11-09 15:49:04 -08006578 blob->fw->size);
Chad Dupuisf73cb692014-02-26 04:15:06 -05006579 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006580 }
6581 for (i = 0; i < 4; i++)
6582 dcode[i] = be32_to_cpu(fwcode[i + 4]);
6583 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
6584 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
6585 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
6586 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006587 ql_log(ql_log_fatal, vha, 0x0094,
6588 "Unable to verify integrity of firmware image (%Zd).\n",
6589 blob->fw->size);
6590 ql_log(ql_log_fatal, vha, 0x0095,
6591 "Firmware data: %08x %08x %08x %08x.\n",
6592 dcode[0], dcode[1], dcode[2], dcode[3]);
Chad Dupuisf73cb692014-02-26 04:15:06 -05006593 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006594 }
6595
6596 while (segments && rval == QLA_SUCCESS) {
6597 risc_addr = be32_to_cpu(fwcode[2]);
6598 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
6599 risc_size = be32_to_cpu(fwcode[3]);
6600
6601 /* Validate firmware image size. */
6602 fwclen += risc_size * sizeof(uint32_t);
Andrew Vasquez54333832005-11-09 15:49:04 -08006603 if (blob->fw->size < fwclen) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006604 ql_log(ql_log_fatal, vha, 0x0096,
Andrew Vasquez54333832005-11-09 15:49:04 -08006605 "Unable to verify integrity of firmware image "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006606 "(%Zd).\n", blob->fw->size);
Chad Dupuisf73cb692014-02-26 04:15:06 -05006607 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006608 }
6609
6610 fragment = 0;
6611 while (risc_size > 0 && rval == QLA_SUCCESS) {
6612 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
6613 if (dlen > risc_size)
6614 dlen = risc_size;
6615
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006616 ql_dbg(ql_dbg_init, vha, 0x0097,
6617 "Loading risc segment@ risc addr %x "
6618 "number of dwords 0x%x.\n", risc_addr, dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006619
6620 for (i = 0; i < dlen; i++)
6621 dcode[i] = swab32(fwcode[i]);
6622
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006623 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
andrew.vasquez@qlogic.com590f98e2006-01-13 17:05:37 -08006624 dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006625 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006626 ql_log(ql_log_fatal, vha, 0x0098,
6627 "Failed to load segment %d of firmware.\n",
6628 fragment);
Chad Dupuisf261f7a2014-09-25 05:17:03 -04006629 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006630 }
6631
6632 fwcode += dlen;
6633 risc_addr += dlen;
6634 risc_size -= dlen;
6635 fragment++;
6636 }
6637
6638 /* Next segment. */
6639 segments--;
6640 }
Chad Dupuisf73cb692014-02-26 04:15:06 -05006641
6642 if (!IS_QLA27XX(ha))
6643 return rval;
6644
6645 if (ha->fw_dump_template)
6646 vfree(ha->fw_dump_template);
6647 ha->fw_dump_template = NULL;
6648 ha->fw_dump_template_len = 0;
6649
6650 ql_dbg(ql_dbg_init, vha, 0x171,
Chad Dupuis97ea7022014-03-13 14:16:40 -04006651 "Loading fwdump template from %x\n",
6652 (uint32_t)((void *)fwcode - (void *)blob->fw->data));
Chad Dupuisf73cb692014-02-26 04:15:06 -05006653 risc_size = be32_to_cpu(fwcode[2]);
6654 ql_dbg(ql_dbg_init, vha, 0x172,
6655 "-> array size %x dwords\n", risc_size);
6656 if (risc_size == 0 || risc_size == ~0)
6657 goto default_template;
6658
6659 dlen = (risc_size - 8) * sizeof(*fwcode);
6660 ql_dbg(ql_dbg_init, vha, 0x0173,
6661 "-> template allocating %x bytes...\n", dlen);
6662 ha->fw_dump_template = vmalloc(dlen);
6663 if (!ha->fw_dump_template) {
6664 ql_log(ql_log_warn, vha, 0x0174,
6665 "Failed fwdump template allocate %x bytes.\n", risc_size);
6666 goto default_template;
6667 }
6668
6669 fwcode += 7;
6670 risc_size -= 8;
6671 dcode = ha->fw_dump_template;
6672 for (i = 0; i < risc_size; i++)
6673 dcode[i] = le32_to_cpu(fwcode[i]);
6674
6675 if (!qla27xx_fwdt_template_valid(dcode)) {
6676 ql_log(ql_log_warn, vha, 0x0175,
6677 "Failed fwdump template validate\n");
6678 goto default_template;
6679 }
6680
6681 dlen = qla27xx_fwdt_template_size(dcode);
6682 ql_dbg(ql_dbg_init, vha, 0x0176,
6683 "-> template size %x bytes\n", dlen);
6684 if (dlen > risc_size * sizeof(*fwcode)) {
6685 ql_log(ql_log_warn, vha, 0x0177,
Chad Dupuis97ea7022014-03-13 14:16:40 -04006686 "Failed fwdump template exceeds array by %x bytes\n",
6687 (uint32_t)(dlen - risc_size * sizeof(*fwcode)));
Chad Dupuisf73cb692014-02-26 04:15:06 -05006688 goto default_template;
6689 }
6690 ha->fw_dump_template_len = dlen;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006691 return rval;
6692
Chad Dupuisf73cb692014-02-26 04:15:06 -05006693default_template:
6694 ql_log(ql_log_warn, vha, 0x0178, "Using default fwdump template\n");
6695 if (ha->fw_dump_template)
6696 vfree(ha->fw_dump_template);
6697 ha->fw_dump_template = NULL;
6698 ha->fw_dump_template_len = 0;
6699
6700 dlen = qla27xx_fwdt_template_default_size();
6701 ql_dbg(ql_dbg_init, vha, 0x0179,
6702 "-> template allocating %x bytes...\n", dlen);
6703 ha->fw_dump_template = vmalloc(dlen);
6704 if (!ha->fw_dump_template) {
6705 ql_log(ql_log_warn, vha, 0x017a,
6706 "Failed fwdump template allocate %x bytes.\n", risc_size);
6707 goto failed_template;
6708 }
6709
6710 dcode = ha->fw_dump_template;
6711 risc_size = dlen / sizeof(*fwcode);
6712 fwcode = qla27xx_fwdt_template_default();
6713 for (i = 0; i < risc_size; i++)
6714 dcode[i] = be32_to_cpu(fwcode[i]);
6715
6716 if (!qla27xx_fwdt_template_valid(ha->fw_dump_template)) {
6717 ql_log(ql_log_warn, vha, 0x017b,
6718 "Failed fwdump template validate\n");
6719 goto failed_template;
6720 }
6721
6722 dlen = qla27xx_fwdt_template_size(ha->fw_dump_template);
6723 ql_dbg(ql_dbg_init, vha, 0x017c,
6724 "-> template size %x bytes\n", dlen);
6725 ha->fw_dump_template_len = dlen;
6726 return rval;
6727
6728failed_template:
6729 ql_log(ql_log_warn, vha, 0x017d, "Failed default fwdump template\n");
6730 if (ha->fw_dump_template)
6731 vfree(ha->fw_dump_template);
6732 ha->fw_dump_template = NULL;
6733 ha->fw_dump_template_len = 0;
6734 return rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07006735}
Andrew Vasquez18c6c122006-10-13 09:33:38 -07006736
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006737int
6738qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
6739{
6740 int rval;
6741
Andrew Vasqueze337d902009-04-06 22:33:49 -07006742 if (ql2xfwloadbin == 1)
6743 return qla81xx_load_risc(vha, srisc_addr);
6744
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006745 /*
6746 * FW Load priority:
6747 * 1) Firmware via request-firmware interface (.bin file).
6748 * 2) Firmware residing in flash.
6749 */
6750 rval = qla24xx_load_risc_blob(vha, srisc_addr);
6751 if (rval == QLA_SUCCESS)
6752 return rval;
6753
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006754 return qla24xx_load_risc_flash(vha, srisc_addr,
6755 vha->hw->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006756}
6757
6758int
6759qla81xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
6760{
6761 int rval;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006762 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006763
Andrew Vasqueze337d902009-04-06 22:33:49 -07006764 if (ql2xfwloadbin == 2)
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006765 goto try_blob_fw;
Andrew Vasqueze337d902009-04-06 22:33:49 -07006766
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006767 /*
6768 * FW Load priority:
6769 * 1) Firmware residing in flash.
6770 * 2) Firmware via request-firmware interface (.bin file).
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006771 * 3) Golden-Firmware residing in flash -- limited operation.
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006772 */
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006773 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006774 if (rval == QLA_SUCCESS)
6775 return rval;
6776
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006777try_blob_fw:
6778 rval = qla24xx_load_risc_blob(vha, srisc_addr);
6779 if (rval == QLA_SUCCESS || !ha->flt_region_gold_fw)
6780 return rval;
6781
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006782 ql_log(ql_log_info, vha, 0x0099,
6783 "Attempting to fallback to golden firmware.\n");
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006784 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_gold_fw);
6785 if (rval != QLA_SUCCESS)
6786 return rval;
6787
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006788 ql_log(ql_log_info, vha, 0x009a, "Update operational firmware.\n");
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006789 ha->flags.running_gold_fw = 1;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07006790 return rval;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08006791}
6792
Andrew Vasquez18c6c122006-10-13 09:33:38 -07006793void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006794qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07006795{
6796 int ret, retries;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006797 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07006798
Andrew Vasquez85880802009-12-15 21:29:46 -08006799 if (ha->flags.pci_channel_io_perm_failure)
6800 return;
Andrew Vasqueze4289242007-07-19 15:05:56 -07006801 if (!IS_FWI2_CAPABLE(ha))
Andrew Vasquez18c6c122006-10-13 09:33:38 -07006802 return;
Andrew Vasquez75edf812007-05-07 07:43:00 -07006803 if (!ha->fw_major_version)
6804 return;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07006805
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006806 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez7c7f1f22008-02-28 14:06:09 -08006807 for (retries = 5; ret != QLA_SUCCESS && ret != QLA_FUNCTION_TIMEOUT &&
Andrew Vasquezb469a7c2009-04-06 22:33:48 -07006808 ret != QLA_INVALID_COMMAND && retries ; retries--) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006809 ha->isp_ops->reset_chip(vha);
6810 if (ha->isp_ops->chip_diag(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07006811 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006812 if (qla2x00_setup_chip(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07006813 continue;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006814 ql_log(ql_log_info, vha, 0x8015,
6815 "Attempting retry of stop-firmware command.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006816 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez18c6c122006-10-13 09:33:38 -07006817 }
6818}
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006819
6820int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006821qla24xx_configure_vhba(scsi_qla_host_t *vha)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006822{
6823 int rval = QLA_SUCCESS;
Chad Dupuis0b91d112012-02-09 11:15:42 -08006824 int rval2;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006825 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006826 struct qla_hw_data *ha = vha->hw;
6827 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07006828 struct req_que *req;
6829 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006830
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006831 if (!vha->vp_idx)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006832 return -EINVAL;
6833
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006834 rval = qla2x00_fw_ready(base_vha);
Michael Hernandezd7459522016-12-12 14:40:07 -08006835 if (vha->qpair)
6836 req = vha->qpair->req;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07006837 else
Michael Hernandezd7459522016-12-12 14:40:07 -08006838 req = ha->req_q_map[0];
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07006839 rsp = req->rsp;
6840
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006841 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006842 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08006843 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006844 }
6845
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006846 vha->flags.management_server_logged_in = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006847
6848 /* Login to SNS first */
Chad Dupuis0b91d112012-02-09 11:15:42 -08006849 rval2 = ha->isp_ops->fabric_login(vha, NPH_SNS, 0xff, 0xff, 0xfc, mb,
6850 BIT_1);
6851 if (rval2 != QLA_SUCCESS || mb[0] != MBS_COMMAND_COMPLETE) {
6852 if (rval2 == QLA_MEMORY_ALLOC_FAILED)
6853 ql_dbg(ql_dbg_init, vha, 0x0120,
6854 "Failed SNS login: loop_id=%x, rval2=%d\n",
6855 NPH_SNS, rval2);
6856 else
6857 ql_dbg(ql_dbg_init, vha, 0x0103,
6858 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
6859 "mb[2]=%x mb[6]=%x mb[7]=%x.\n",
6860 NPH_SNS, mb[0], mb[1], mb[2], mb[6], mb[7]);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006861 return (QLA_FUNCTION_FAILED);
6862 }
6863
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006864 atomic_set(&vha->loop_down_timer, 0);
6865 atomic_set(&vha->loop_state, LOOP_UP);
6866 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
6867 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
6868 rval = qla2x00_loop_resync(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006869
6870 return rval;
6871}
Harihara Kadayam4d4df192008-04-03 13:13:26 -07006872
6873/* 84XX Support **************************************************************/
6874
6875static LIST_HEAD(qla_cs84xx_list);
6876static DEFINE_MUTEX(qla_cs84xx_mutex);
6877
6878static struct qla_chip_state_84xx *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006879qla84xx_get_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07006880{
6881 struct qla_chip_state_84xx *cs84xx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006882 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07006883
6884 mutex_lock(&qla_cs84xx_mutex);
6885
6886 /* Find any shared 84xx chip. */
6887 list_for_each_entry(cs84xx, &qla_cs84xx_list, list) {
6888 if (cs84xx->bus == ha->pdev->bus) {
6889 kref_get(&cs84xx->kref);
6890 goto done;
6891 }
6892 }
6893
6894 cs84xx = kzalloc(sizeof(*cs84xx), GFP_KERNEL);
6895 if (!cs84xx)
6896 goto done;
6897
6898 kref_init(&cs84xx->kref);
6899 spin_lock_init(&cs84xx->access_lock);
6900 mutex_init(&cs84xx->fw_update_mutex);
6901 cs84xx->bus = ha->pdev->bus;
6902
6903 list_add_tail(&cs84xx->list, &qla_cs84xx_list);
6904done:
6905 mutex_unlock(&qla_cs84xx_mutex);
6906 return cs84xx;
6907}
6908
6909static void
6910__qla84xx_chip_release(struct kref *kref)
6911{
6912 struct qla_chip_state_84xx *cs84xx =
6913 container_of(kref, struct qla_chip_state_84xx, kref);
6914
6915 mutex_lock(&qla_cs84xx_mutex);
6916 list_del(&cs84xx->list);
6917 mutex_unlock(&qla_cs84xx_mutex);
6918 kfree(cs84xx);
6919}
6920
6921void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006922qla84xx_put_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07006923{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006924 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07006925 if (ha->cs84xx)
6926 kref_put(&ha->cs84xx->kref, __qla84xx_chip_release);
6927}
6928
6929static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006930qla84xx_init_chip(scsi_qla_host_t *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07006931{
6932 int rval;
6933 uint16_t status[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006934 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07006935
6936 mutex_lock(&ha->cs84xx->fw_update_mutex);
6937
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08006938 rval = qla84xx_verify_chip(vha, status);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07006939
6940 mutex_unlock(&ha->cs84xx->fw_update_mutex);
6941
6942 return rval != QLA_SUCCESS || status[0] ? QLA_FUNCTION_FAILED:
6943 QLA_SUCCESS;
6944}
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006945
6946/* 81XX Support **************************************************************/
6947
6948int
6949qla81xx_nvram_config(scsi_qla_host_t *vha)
6950{
6951 int rval;
6952 struct init_cb_81xx *icb;
6953 struct nvram_81xx *nv;
6954 uint32_t *dptr;
6955 uint8_t *dptr1, *dptr2;
6956 uint32_t chksum;
6957 uint16_t cnt;
6958 struct qla_hw_data *ha = vha->hw;
6959
6960 rval = QLA_SUCCESS;
6961 icb = (struct init_cb_81xx *)ha->init_cb;
6962 nv = ha->nvram;
6963
6964 /* Determine NVRAM starting address. */
6965 ha->nvram_size = sizeof(struct nvram_81xx);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006966 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04006967 if (IS_P3P_TYPE(ha) || IS_QLA8031(ha))
6968 ha->vpd_size = FA_VPD_SIZE_82XX;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006969
6970 /* Get VPD data into cache */
6971 ha->vpd = ha->nvram + VPD_OFFSET;
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07006972 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
6973 ha->vpd_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006974
6975 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07006976 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006977 ha->nvram_size);
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07006978 dptr = (uint32_t *)nv;
Joe Carnuccioda08ef52016-01-27 12:03:34 -05006979 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++, dptr++)
6980 chksum += le32_to_cpu(*dptr);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006981
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006982 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x0111,
6983 "Contents of NVRAM:\n");
6984 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0112,
6985 (uint8_t *)nv, ha->nvram_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006986
6987 /* Bad NVRAM data, set defaults parameters. */
6988 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
6989 || nv->id[3] != ' ' ||
Bart Van Asschead950362015-07-09 07:24:08 -07006990 nv->nvram_version < cpu_to_le16(ICB_VERSION)) {
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006991 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006992 ql_log(ql_log_info, vha, 0x0073,
Raul Porcel9e336522012-05-15 14:34:08 -04006993 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006994 "version=0x%x.\n", chksum, nv->id[0],
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006995 le16_to_cpu(nv->nvram_version));
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006996 ql_log(ql_log_info, vha, 0x0074,
6997 "Falling back to functioning (yet invalid -- WWPN) "
6998 "defaults.\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08006999
7000 /*
7001 * Set default initialization control block.
7002 */
7003 memset(nv, 0, ha->nvram_size);
Bart Van Asschead950362015-07-09 07:24:08 -07007004 nv->nvram_version = cpu_to_le16(ICB_VERSION);
7005 nv->version = cpu_to_le16(ICB_VERSION);
Joe Carnuccio98aee702014-09-25 05:16:38 -04007006 nv->frame_payload_size = 2048;
Bart Van Asschead950362015-07-09 07:24:08 -07007007 nv->execution_throttle = cpu_to_le16(0xFFFF);
7008 nv->exchange_count = cpu_to_le16(0);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007009 nv->port_name[0] = 0x21;
Chad Dupuisf73cb692014-02-26 04:15:06 -05007010 nv->port_name[1] = 0x00 + ha->port_no + 1;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007011 nv->port_name[2] = 0x00;
7012 nv->port_name[3] = 0xe0;
7013 nv->port_name[4] = 0x8b;
7014 nv->port_name[5] = 0x1c;
7015 nv->port_name[6] = 0x55;
7016 nv->port_name[7] = 0x86;
7017 nv->node_name[0] = 0x20;
7018 nv->node_name[1] = 0x00;
7019 nv->node_name[2] = 0x00;
7020 nv->node_name[3] = 0xe0;
7021 nv->node_name[4] = 0x8b;
7022 nv->node_name[5] = 0x1c;
7023 nv->node_name[6] = 0x55;
7024 nv->node_name[7] = 0x86;
Bart Van Asschead950362015-07-09 07:24:08 -07007025 nv->login_retry_count = cpu_to_le16(8);
7026 nv->interrupt_delay_timer = cpu_to_le16(0);
7027 nv->login_timeout = cpu_to_le16(0);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007028 nv->firmware_options_1 =
Bart Van Asschead950362015-07-09 07:24:08 -07007029 cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
7030 nv->firmware_options_2 = cpu_to_le32(2 << 4);
7031 nv->firmware_options_2 |= cpu_to_le32(BIT_12);
7032 nv->firmware_options_3 = cpu_to_le32(2 << 13);
7033 nv->host_p = cpu_to_le32(BIT_11|BIT_10);
7034 nv->efi_parameters = cpu_to_le32(0);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007035 nv->reset_delay = 5;
Bart Van Asschead950362015-07-09 07:24:08 -07007036 nv->max_luns_per_target = cpu_to_le16(128);
7037 nv->port_down_retry_count = cpu_to_le16(30);
7038 nv->link_down_timeout = cpu_to_le16(180);
Andrew Vasquezeeebcc92009-06-03 09:55:24 -07007039 nv->enode_mac[0] = 0x00;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08007040 nv->enode_mac[1] = 0xC0;
7041 nv->enode_mac[2] = 0xDD;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007042 nv->enode_mac[3] = 0x04;
7043 nv->enode_mac[4] = 0x05;
Chad Dupuisf73cb692014-02-26 04:15:06 -05007044 nv->enode_mac[5] = 0x06 + ha->port_no + 1;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007045
7046 rval = 1;
7047 }
7048
Arun Easi9e522cd2012-08-22 14:21:31 -04007049 if (IS_T10_PI_CAPABLE(ha))
7050 nv->frame_payload_size &= ~7;
7051
Arun Easiaa230bc2013-01-30 03:34:39 -05007052 qlt_81xx_config_nvram_stage1(vha, nv);
7053
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007054 /* Reset Initialization control block */
Andrew Vasquez773120e2011-05-10 11:30:14 -07007055 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007056
7057 /* Copy 1st segment. */
7058 dptr1 = (uint8_t *)icb;
7059 dptr2 = (uint8_t *)&nv->version;
7060 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
7061 while (cnt--)
7062 *dptr1++ = *dptr2++;
7063
7064 icb->login_retry_count = nv->login_retry_count;
7065
7066 /* Copy 2nd segment. */
7067 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
7068 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
7069 cnt = (uint8_t *)&icb->reserved_5 -
7070 (uint8_t *)&icb->interrupt_delay_timer;
7071 while (cnt--)
7072 *dptr1++ = *dptr2++;
7073
7074 memcpy(icb->enode_mac, nv->enode_mac, sizeof(icb->enode_mac));
7075 /* Some boards (with valid NVRAMs) still have NULL enode_mac!! */
7076 if (!memcmp(icb->enode_mac, "\0\0\0\0\0\0", sizeof(icb->enode_mac))) {
Andrew Vasquez69e5f1e2012-02-09 11:15:35 -08007077 icb->enode_mac[0] = 0x00;
7078 icb->enode_mac[1] = 0xC0;
7079 icb->enode_mac[2] = 0xDD;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007080 icb->enode_mac[3] = 0x04;
7081 icb->enode_mac[4] = 0x05;
Chad Dupuisf73cb692014-02-26 04:15:06 -05007082 icb->enode_mac[5] = 0x06 + ha->port_no + 1;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007083 }
7084
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07007085 /* Use extended-initialization control block. */
7086 memcpy(ha->ex_init_cb, &nv->ex_version, sizeof(*ha->ex_init_cb));
7087
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007088 /*
7089 * Setup driver NVRAM options.
7090 */
7091 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Giridhar Malavalia9083012010-04-12 17:59:55 -07007092 "QLE8XXX");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007093
Arun Easiaa230bc2013-01-30 03:34:39 -05007094 qlt_81xx_config_nvram_stage2(vha, icb);
7095
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007096 /* Use alternate WWN? */
Bart Van Asschead950362015-07-09 07:24:08 -07007097 if (nv->host_p & cpu_to_le32(BIT_15)) {
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007098 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
7099 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
7100 }
7101
7102 /* Prepare nodename */
Bart Van Asschead950362015-07-09 07:24:08 -07007103 if ((icb->firmware_options_1 & cpu_to_le32(BIT_14)) == 0) {
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007104 /*
7105 * Firmware will apply the following mask if the nodename was
7106 * not provided.
7107 */
7108 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
7109 icb->node_name[0] &= 0xF0;
7110 }
7111
7112 /* Set host adapter parameters. */
7113 ha->flags.disable_risc_code_load = 0;
7114 ha->flags.enable_lip_reset = 0;
7115 ha->flags.enable_lip_full_login =
7116 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
7117 ha->flags.enable_target_reset =
7118 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
7119 ha->flags.enable_led_scheme = 0;
7120 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
7121
7122 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
7123 (BIT_6 | BIT_5 | BIT_4)) >> 4;
7124
7125 /* save HBA serial number */
7126 ha->serial0 = icb->port_name[5];
7127 ha->serial1 = icb->port_name[6];
7128 ha->serial2 = icb->port_name[7];
7129 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
7130 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
7131
Bart Van Asschead950362015-07-09 07:24:08 -07007132 icb->execution_throttle = cpu_to_le16(0xFFFF);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007133
7134 ha->retry_count = le16_to_cpu(nv->login_retry_count);
7135
7136 /* Set minimum login_timeout to 4 seconds. */
7137 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
7138 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
7139 if (le16_to_cpu(nv->login_timeout) < 4)
Bart Van Asschead950362015-07-09 07:24:08 -07007140 nv->login_timeout = cpu_to_le16(4);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007141 ha->login_timeout = le16_to_cpu(nv->login_timeout);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007142
7143 /* Set minimum RATOV to 100 tenths of a second. */
7144 ha->r_a_tov = 100;
7145
7146 ha->loop_reset_delay = nv->reset_delay;
7147
7148 /* Link Down Timeout = 0:
7149 *
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04007150 * When Port Down timer expires we will start returning
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007151 * I/O's to OS with "DID_NO_CONNECT".
7152 *
7153 * Link Down Timeout != 0:
7154 *
7155 * The driver waits for the link to come up after link down
7156 * before returning I/Os to OS with "DID_NO_CONNECT".
7157 */
7158 if (le16_to_cpu(nv->link_down_timeout) == 0) {
7159 ha->loop_down_abort_time =
7160 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
7161 } else {
7162 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
7163 ha->loop_down_abort_time =
7164 (LOOP_DOWN_TIME - ha->link_down_timeout);
7165 }
7166
7167 /* Need enough time to try and get the port back. */
7168 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
7169 if (qlport_down_retry)
7170 ha->port_down_retry_count = qlport_down_retry;
7171
7172 /* Set login_retry_count */
7173 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
7174 if (ha->port_down_retry_count ==
7175 le16_to_cpu(nv->port_down_retry_count) &&
7176 ha->port_down_retry_count > 3)
7177 ha->login_retry_count = ha->port_down_retry_count;
7178 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
7179 ha->login_retry_count = ha->port_down_retry_count;
7180 if (ql2xloginretrycount)
7181 ha->login_retry_count = ql2xloginretrycount;
7182
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08007183 /* if not running MSI-X we need handshaking on interrupts */
Chad Dupuisf73cb692014-02-26 04:15:06 -05007184 if (!vha->hw->flags.msix_enabled && (IS_QLA83XX(ha) || IS_QLA27XX(ha)))
Bart Van Asschead950362015-07-09 07:24:08 -07007185 icb->firmware_options_2 |= cpu_to_le32(BIT_22);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08007186
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007187 /* Enable ZIO. */
7188 if (!vha->flags.init_done) {
7189 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
7190 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
7191 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
7192 le16_to_cpu(icb->interrupt_delay_timer): 2;
7193 }
Bart Van Asschead950362015-07-09 07:24:08 -07007194 icb->firmware_options_2 &= cpu_to_le32(
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007195 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
7196 vha->flags.process_response_queue = 0;
7197 if (ha->zio_mode != QLA_ZIO_DISABLED) {
7198 ha->zio_mode = QLA_ZIO_MODE_6;
7199
Saurav Kashyap7c3df132011-07-14 12:00:13 -07007200 ql_log(ql_log_info, vha, 0x0075,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007201 "ZIO mode %d enabled; timer delay (%d us).\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -07007202 ha->zio_mode,
7203 ha->zio_timer * 100);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007204
7205 icb->firmware_options_2 |= cpu_to_le32(
7206 (uint32_t)ha->zio_mode);
7207 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
7208 vha->flags.process_response_queue = 1;
7209 }
7210
Quinn Tran41dc5292017-01-19 22:28:03 -08007211 /* enable RIDA Format2 */
7212 if (qla_tgt_mode_enabled(vha) || qla_dual_mode_enabled(vha))
7213 icb->firmware_options_3 |= BIT_0;
7214
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007215 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07007216 ql_log(ql_log_warn, vha, 0x0076,
7217 "NVRAM configuration failed.\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007218 }
7219 return (rval);
7220}
7221
Giridhar Malavalia9083012010-04-12 17:59:55 -07007222int
7223qla82xx_restart_isp(scsi_qla_host_t *vha)
7224{
7225 int status, rval;
Giridhar Malavalia9083012010-04-12 17:59:55 -07007226 struct qla_hw_data *ha = vha->hw;
7227 struct req_que *req = ha->req_q_map[0];
7228 struct rsp_que *rsp = ha->rsp_q_map[0];
7229 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07007230 unsigned long flags;
Giridhar Malavalia9083012010-04-12 17:59:55 -07007231
7232 status = qla2x00_init_rings(vha);
7233 if (!status) {
7234 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
7235 ha->flags.chip_reset_done = 1;
7236
7237 status = qla2x00_fw_ready(vha);
7238 if (!status) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07007239 /* Issue a marker after FW becomes ready. */
7240 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Giridhar Malavalia9083012010-04-12 17:59:55 -07007241 vha->flags.online = 1;
Chad Dupuis7108b762014-04-11 16:54:45 -04007242 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07007243 }
7244
7245 /* if no cable then assume it's good */
7246 if ((vha->device_flags & DFLG_NO_CABLE))
7247 status = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07007248 }
7249
7250 if (!status) {
7251 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
7252
7253 if (!atomic_read(&vha->loop_down_timer)) {
7254 /*
7255 * Issue marker command only when we are going
7256 * to start the I/O .
7257 */
7258 vha->marker_needed = 1;
7259 }
7260
Giridhar Malavalia9083012010-04-12 17:59:55 -07007261 ha->isp_ops->enable_intrs(ha);
7262
7263 ha->isp_abort_cnt = 0;
7264 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
7265
Saurav Kashyap53296782011-05-10 11:30:06 -07007266 /* Update the firmware version */
Giridhar Malavali31731672011-08-16 11:31:54 -07007267 status = qla82xx_check_md_needed(vha);
Saurav Kashyap53296782011-05-10 11:30:06 -07007268
Giridhar Malavalia9083012010-04-12 17:59:55 -07007269 if (ha->fce) {
7270 ha->flags.fce_enabled = 1;
7271 memset(ha->fce, 0,
7272 fce_calc_size(ha->fce_bufs));
7273 rval = qla2x00_enable_fce_trace(vha,
7274 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
7275 &ha->fce_bufs);
7276 if (rval) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08007277 ql_log(ql_log_warn, vha, 0x8001,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07007278 "Unable to reinitialize FCE (%d).\n",
7279 rval);
Giridhar Malavalia9083012010-04-12 17:59:55 -07007280 ha->flags.fce_enabled = 0;
7281 }
7282 }
7283
7284 if (ha->eft) {
7285 memset(ha->eft, 0, EFT_SIZE);
7286 rval = qla2x00_enable_eft_trace(vha,
7287 ha->eft_dma, EFT_NUM_BUFFERS);
7288 if (rval) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08007289 ql_log(ql_log_warn, vha, 0x8010,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07007290 "Unable to reinitialize EFT (%d).\n",
7291 rval);
Giridhar Malavalia9083012010-04-12 17:59:55 -07007292 }
7293 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07007294 }
7295
7296 if (!status) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08007297 ql_dbg(ql_dbg_taskm, vha, 0x8011,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07007298 "qla82xx_restart_isp succeeded.\n");
Arun Easifeafb7b2010-09-03 14:57:00 -07007299
7300 spin_lock_irqsave(&ha->vport_slock, flags);
7301 list_for_each_entry(vp, &ha->vp_list, list) {
7302 if (vp->vp_idx) {
7303 atomic_inc(&vp->vref_count);
7304 spin_unlock_irqrestore(&ha->vport_slock, flags);
7305
Giridhar Malavalia9083012010-04-12 17:59:55 -07007306 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07007307
7308 spin_lock_irqsave(&ha->vport_slock, flags);
7309 atomic_dec(&vp->vref_count);
7310 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07007311 }
Arun Easifeafb7b2010-09-03 14:57:00 -07007312 spin_unlock_irqrestore(&ha->vport_slock, flags);
7313
Giridhar Malavalia9083012010-04-12 17:59:55 -07007314 } else {
Chad Dupuiscfb09192011-11-18 09:03:07 -08007315 ql_log(ql_log_warn, vha, 0x8016,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07007316 "qla82xx_restart_isp **** FAILED ****.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -07007317 }
7318
7319 return status;
7320}
7321
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007322void
Andrew Vasquezae97c912010-02-18 10:07:28 -08007323qla81xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007324{
Andrew Vasquezae97c912010-02-18 10:07:28 -08007325 struct qla_hw_data *ha = vha->hw;
7326
Himanshu Madhanif198caf2016-01-27 12:03:30 -05007327 /* Hold status IOCBs until ABTS response received. */
7328 if (ql2xfwholdabts)
7329 ha->fw_options[3] |= BIT_12;
7330
Giridhar Malavali088d09d2016-07-06 11:14:20 -04007331 /* Set Retry FLOGI in case of P2P connection */
7332 if (ha->operating_mode == P2P) {
7333 ha->fw_options[2] |= BIT_3;
7334 ql_dbg(ql_dbg_disc, vha, 0x2103,
7335 "(%s): Setting FLOGI retry BIT in fw_options[2]: 0x%x\n",
7336 __func__, ha->fw_options[2]);
7337 }
7338
Quinn Tran41dc5292017-01-19 22:28:03 -08007339 /* Move PUREX, ABTS RX & RIDA to ATIOQ */
7340 if (ql2xmvasynctoatio) {
7341 if (qla_tgt_mode_enabled(vha) ||
7342 qla_dual_mode_enabled(vha))
7343 ha->fw_options[2] |= BIT_11;
7344 else
7345 ha->fw_options[2] &= ~BIT_11;
7346 }
Andrew Vasquezae97c912010-02-18 10:07:28 -08007347
Quinn Tran41dc5292017-01-19 22:28:03 -08007348 if (ql2xetsenable) {
7349 /* Enable ETS Burst. */
7350 memset(ha->fw_options, 0, sizeof(ha->fw_options));
7351 ha->fw_options[2] |= BIT_9;
7352 }
7353
7354 ql_dbg(ql_dbg_init, vha, 0xffff,
7355 "%s, add FW options 1-3 = 0x%04x 0x%04x 0x%04x mode %x\n",
7356 __func__, ha->fw_options[1], ha->fw_options[2],
7357 ha->fw_options[3], vha->host->active_mode);
7358
Andrew Vasquezae97c912010-02-18 10:07:28 -08007359 qla2x00_set_fw_options(vha, ha->fw_options);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08007360}
Sarang Radke09ff7012010-03-19 17:03:59 -07007361
7362/*
7363 * qla24xx_get_fcp_prio
7364 * Gets the fcp cmd priority value for the logged in port.
7365 * Looks for a match of the port descriptors within
7366 * each of the fcp prio config entries. If a match is found,
7367 * the tag (priority) value is returned.
7368 *
7369 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08007370 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07007371 * fcport = port structure pointer.
7372 *
7373 * Return:
Andrew Vasquez6c452a42010-03-19 17:04:02 -07007374 * non-zero (if found)
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07007375 * -1 (if not found)
Sarang Radke09ff7012010-03-19 17:03:59 -07007376 *
7377 * Context:
7378 * Kernel context
7379 */
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07007380static int
Sarang Radke09ff7012010-03-19 17:03:59 -07007381qla24xx_get_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
7382{
7383 int i, entries;
7384 uint8_t pid_match, wwn_match;
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07007385 int priority;
Sarang Radke09ff7012010-03-19 17:03:59 -07007386 uint32_t pid1, pid2;
7387 uint64_t wwn1, wwn2;
7388 struct qla_fcp_prio_entry *pri_entry;
7389 struct qla_hw_data *ha = vha->hw;
7390
7391 if (!ha->fcp_prio_cfg || !ha->flags.fcp_prio_enabled)
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07007392 return -1;
Sarang Radke09ff7012010-03-19 17:03:59 -07007393
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07007394 priority = -1;
Sarang Radke09ff7012010-03-19 17:03:59 -07007395 entries = ha->fcp_prio_cfg->num_entries;
7396 pri_entry = &ha->fcp_prio_cfg->entry[0];
7397
7398 for (i = 0; i < entries; i++) {
7399 pid_match = wwn_match = 0;
7400
7401 if (!(pri_entry->flags & FCP_PRIO_ENTRY_VALID)) {
7402 pri_entry++;
7403 continue;
7404 }
7405
7406 /* check source pid for a match */
7407 if (pri_entry->flags & FCP_PRIO_ENTRY_SPID_VALID) {
7408 pid1 = pri_entry->src_pid & INVALID_PORT_ID;
7409 pid2 = vha->d_id.b24 & INVALID_PORT_ID;
7410 if (pid1 == INVALID_PORT_ID)
7411 pid_match++;
7412 else if (pid1 == pid2)
7413 pid_match++;
7414 }
7415
7416 /* check destination pid for a match */
7417 if (pri_entry->flags & FCP_PRIO_ENTRY_DPID_VALID) {
7418 pid1 = pri_entry->dst_pid & INVALID_PORT_ID;
7419 pid2 = fcport->d_id.b24 & INVALID_PORT_ID;
7420 if (pid1 == INVALID_PORT_ID)
7421 pid_match++;
7422 else if (pid1 == pid2)
7423 pid_match++;
7424 }
7425
7426 /* check source WWN for a match */
7427 if (pri_entry->flags & FCP_PRIO_ENTRY_SWWN_VALID) {
7428 wwn1 = wwn_to_u64(vha->port_name);
7429 wwn2 = wwn_to_u64(pri_entry->src_wwpn);
7430 if (wwn2 == (uint64_t)-1)
7431 wwn_match++;
7432 else if (wwn1 == wwn2)
7433 wwn_match++;
7434 }
7435
7436 /* check destination WWN for a match */
7437 if (pri_entry->flags & FCP_PRIO_ENTRY_DWWN_VALID) {
7438 wwn1 = wwn_to_u64(fcport->port_name);
7439 wwn2 = wwn_to_u64(pri_entry->dst_wwpn);
7440 if (wwn2 == (uint64_t)-1)
7441 wwn_match++;
7442 else if (wwn1 == wwn2)
7443 wwn_match++;
7444 }
7445
7446 if (pid_match == 2 || wwn_match == 2) {
7447 /* Found a matching entry */
7448 if (pri_entry->flags & FCP_PRIO_ENTRY_TAG_VALID)
7449 priority = pri_entry->tag;
7450 break;
7451 }
7452
7453 pri_entry++;
7454 }
7455
7456 return priority;
7457}
7458
7459/*
7460 * qla24xx_update_fcport_fcp_prio
7461 * Activates fcp priority for the logged in fc port
7462 *
7463 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08007464 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07007465 * fcp = port structure pointer.
7466 *
7467 * Return:
7468 * QLA_SUCCESS or QLA_FUNCTION_FAILED
7469 *
7470 * Context:
7471 * Kernel context.
7472 */
7473int
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08007474qla24xx_update_fcport_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
Sarang Radke09ff7012010-03-19 17:03:59 -07007475{
7476 int ret;
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07007477 int priority;
Sarang Radke09ff7012010-03-19 17:03:59 -07007478 uint16_t mb[5];
7479
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08007480 if (fcport->port_type != FCT_TARGET ||
7481 fcport->loop_id == FC_NO_LOOP_ID)
Sarang Radke09ff7012010-03-19 17:03:59 -07007482 return QLA_FUNCTION_FAILED;
7483
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08007484 priority = qla24xx_get_fcp_prio(vha, fcport);
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07007485 if (priority < 0)
7486 return QLA_FUNCTION_FAILED;
7487
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04007488 if (IS_P3P_TYPE(vha->hw)) {
Saurav Kashyapa00f6292011-11-18 09:03:19 -08007489 fcport->fcp_prio = priority & 0xf;
7490 return QLA_SUCCESS;
7491 }
7492
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08007493 ret = qla24xx_set_fcp_prio(vha, fcport->loop_id, priority, mb);
Chad Dupuiscfb09192011-11-18 09:03:07 -08007494 if (ret == QLA_SUCCESS) {
7495 if (fcport->fcp_prio != priority)
7496 ql_dbg(ql_dbg_user, vha, 0x709e,
7497 "Updated FCP_CMND priority - value=%d loop_id=%d "
7498 "port_id=%02x%02x%02x.\n", priority,
7499 fcport->loop_id, fcport->d_id.b.domain,
7500 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Saurav Kashyapa00f6292011-11-18 09:03:19 -08007501 fcport->fcp_prio = priority & 0xf;
Chad Dupuiscfb09192011-11-18 09:03:07 -08007502 } else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07007503 ql_dbg(ql_dbg_user, vha, 0x704f,
Chad Dupuiscfb09192011-11-18 09:03:07 -08007504 "Unable to update FCP_CMND priority - ret=0x%x for "
7505 "loop_id=%d port_id=%02x%02x%02x.\n", ret, fcport->loop_id,
7506 fcport->d_id.b.domain, fcport->d_id.b.area,
7507 fcport->d_id.b.al_pa);
Sarang Radke09ff7012010-03-19 17:03:59 -07007508 return ret;
7509}
7510
7511/*
7512 * qla24xx_update_all_fcp_prio
7513 * Activates fcp priority for all the logged in ports
7514 *
7515 * Input:
7516 * ha = adapter block pointer.
7517 *
7518 * Return:
7519 * QLA_SUCCESS or QLA_FUNCTION_FAILED
7520 *
7521 * Context:
7522 * Kernel context.
7523 */
7524int
7525qla24xx_update_all_fcp_prio(scsi_qla_host_t *vha)
7526{
7527 int ret;
7528 fc_port_t *fcport;
7529
7530 ret = QLA_FUNCTION_FAILED;
7531 /* We need to set priority for all logged in ports */
7532 list_for_each_entry(fcport, &vha->vp_fcports, list)
7533 ret = qla24xx_update_fcport_fcp_prio(vha, fcport);
7534
7535 return ret;
7536}
Michael Hernandezd7459522016-12-12 14:40:07 -08007537
7538struct qla_qpair *qla2xxx_create_qpair(struct scsi_qla_host *vha, int qos, int vp_idx)
7539{
7540 int rsp_id = 0;
7541 int req_id = 0;
7542 int i;
7543 struct qla_hw_data *ha = vha->hw;
7544 uint16_t qpair_id = 0;
7545 struct qla_qpair *qpair = NULL;
7546 struct qla_msix_entry *msix;
7547
7548 if (!(ha->fw_attributes & BIT_6) || !ha->flags.msix_enabled) {
7549 ql_log(ql_log_warn, vha, 0x00181,
7550 "FW/Driver is not multi-queue capable.\n");
7551 return NULL;
7552 }
7553
7554 if (ql2xmqsupport) {
7555 qpair = kzalloc(sizeof(struct qla_qpair), GFP_KERNEL);
7556 if (qpair == NULL) {
7557 ql_log(ql_log_warn, vha, 0x0182,
7558 "Failed to allocate memory for queue pair.\n");
7559 return NULL;
7560 }
7561 memset(qpair, 0, sizeof(struct qla_qpair));
7562
7563 qpair->hw = vha->hw;
Joe Carnuccio25ff6af2017-01-19 22:28:04 -08007564 qpair->vha = vha;
Michael Hernandezd7459522016-12-12 14:40:07 -08007565
7566 /* Assign available que pair id */
7567 mutex_lock(&ha->mq_lock);
7568 qpair_id = find_first_zero_bit(ha->qpair_qid_map, ha->max_qpairs);
7569 if (qpair_id >= ha->max_qpairs) {
7570 mutex_unlock(&ha->mq_lock);
7571 ql_log(ql_log_warn, vha, 0x0183,
7572 "No resources to create additional q pair.\n");
7573 goto fail_qid_map;
7574 }
7575 set_bit(qpair_id, ha->qpair_qid_map);
7576 ha->queue_pair_map[qpair_id] = qpair;
7577 qpair->id = qpair_id;
7578 qpair->vp_idx = vp_idx;
7579
7580 for (i = 0; i < ha->msix_count; i++) {
Quinn Tran093df732016-12-12 14:40:09 -08007581 msix = &ha->msix_entries[i];
Michael Hernandezd7459522016-12-12 14:40:07 -08007582 if (msix->in_use)
7583 continue;
7584 qpair->msix = msix;
7585 ql_log(ql_dbg_multiq, vha, 0xc00f,
7586 "Vector %x selected for qpair\n", msix->vector);
7587 break;
7588 }
7589 if (!qpair->msix) {
7590 ql_log(ql_log_warn, vha, 0x0184,
7591 "Out of MSI-X vectors!.\n");
7592 goto fail_msix;
7593 }
7594
7595 qpair->msix->in_use = 1;
7596 list_add_tail(&qpair->qp_list_elem, &vha->qp_list);
7597
7598 mutex_unlock(&ha->mq_lock);
7599
7600 /* Create response queue first */
7601 rsp_id = qla25xx_create_rsp_que(ha, 0, 0, 0, qpair);
7602 if (!rsp_id) {
7603 ql_log(ql_log_warn, vha, 0x0185,
7604 "Failed to create response queue.\n");
7605 goto fail_rsp;
7606 }
7607
7608 qpair->rsp = ha->rsp_q_map[rsp_id];
7609
7610 /* Create request queue */
7611 req_id = qla25xx_create_req_que(ha, 0, vp_idx, 0, rsp_id, qos);
7612 if (!req_id) {
7613 ql_log(ql_log_warn, vha, 0x0186,
7614 "Failed to create request queue.\n");
7615 goto fail_req;
7616 }
7617
7618 qpair->req = ha->req_q_map[req_id];
7619 qpair->rsp->req = qpair->req;
7620
7621 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) {
7622 if (ha->fw_attributes & BIT_4)
7623 qpair->difdix_supported = 1;
7624 }
7625
7626 qpair->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
7627 if (!qpair->srb_mempool) {
7628 ql_log(ql_log_warn, vha, 0x0191,
7629 "Failed to create srb mempool for qpair %d\n",
7630 qpair->id);
7631 goto fail_mempool;
7632 }
7633
7634 /* Mark as online */
7635 qpair->online = 1;
7636
7637 if (!vha->flags.qpairs_available)
7638 vha->flags.qpairs_available = 1;
7639
7640 ql_dbg(ql_dbg_multiq, vha, 0xc00d,
7641 "Request/Response queue pair created, id %d\n",
7642 qpair->id);
7643 ql_dbg(ql_dbg_init, vha, 0x0187,
7644 "Request/Response queue pair created, id %d\n",
7645 qpair->id);
7646 }
7647 return qpair;
7648
7649fail_mempool:
7650fail_req:
7651 qla25xx_delete_rsp_que(vha, qpair->rsp);
7652fail_rsp:
7653 mutex_lock(&ha->mq_lock);
7654 qpair->msix->in_use = 0;
7655 list_del(&qpair->qp_list_elem);
7656 if (list_empty(&vha->qp_list))
7657 vha->flags.qpairs_available = 0;
7658fail_msix:
7659 ha->queue_pair_map[qpair_id] = NULL;
7660 clear_bit(qpair_id, ha->qpair_qid_map);
7661 mutex_unlock(&ha->mq_lock);
7662fail_qid_map:
7663 kfree(qpair);
7664 return NULL;
7665}
7666
7667int qla2xxx_delete_qpair(struct scsi_qla_host *vha, struct qla_qpair *qpair)
7668{
7669 int ret;
7670 struct qla_hw_data *ha = qpair->hw;
7671
7672 qpair->delete_in_progress = 1;
7673 while (atomic_read(&qpair->ref_count))
7674 msleep(500);
7675
7676 ret = qla25xx_delete_req_que(vha, qpair->req);
7677 if (ret != QLA_SUCCESS)
7678 goto fail;
7679 ret = qla25xx_delete_rsp_que(vha, qpair->rsp);
7680 if (ret != QLA_SUCCESS)
7681 goto fail;
7682
7683 mutex_lock(&ha->mq_lock);
7684 ha->queue_pair_map[qpair->id] = NULL;
7685 clear_bit(qpair->id, ha->qpair_qid_map);
7686 list_del(&qpair->qp_list_elem);
7687 if (list_empty(&vha->qp_list))
7688 vha->flags.qpairs_available = 0;
7689 mempool_destroy(qpair->srb_mempool);
7690 kfree(qpair);
7691 mutex_unlock(&ha->mq_lock);
7692
7693 return QLA_SUCCESS;
7694fail:
7695 return ret;
7696}