blob: a92b166a73e247264887fed087d7651672988d5e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Saurav Kashyap1e633952013-02-08 01:57:54 -05003 * Copyright (c) 2003-2013 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 *);
33static int qla2x00_find_all_fabric_devs(scsi_qla_host_t *, struct list_head *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static int qla2x00_fabric_dev_login(scsi_qla_host_t *, fc_port_t *,
35 uint16_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37static int qla2x00_restart_isp(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Harihara Kadayam4d4df192008-04-03 13:13:26 -070039static struct qla_chip_state_84xx *qla84xx_get_chip(struct scsi_qla_host *);
40static int qla84xx_init_chip(scsi_qla_host_t *);
Anirban Chakraborty73208df2008-12-09 16:45:39 -080041static int qla25xx_init_queues(struct qla_hw_data *);
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;
Andrew Vasquezac280b62009-08-20 11:06:05 -070050 fc_port_t *fcport = sp->fcport;
51 struct qla_hw_data *ha = fcport->vha->hw;
52 struct req_que *req;
53 unsigned long flags;
54
55 spin_lock_irqsave(&ha->hardware_lock, flags);
56 req = ha->req_q_map[0];
57 req->outstanding_cmds[sp->handle] = NULL;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080058 iocb = &sp->u.iocb_cmd;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070059 iocb->timeout(sp);
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080060 sp->free(fcport->vha, sp);
Andrew Vasquez6ac52602010-05-28 15:08:19 -070061 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquezac280b62009-08-20 11:06:05 -070062}
63
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080064void
65qla2x00_sp_free(void *data, void *ptr)
Andrew Vasquezac280b62009-08-20 11:06:05 -070066{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080067 srb_t *sp = (srb_t *)ptr;
68 struct srb_iocb *iocb = &sp->u.iocb_cmd;
69 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
Andrew Vasquezac280b62009-08-20 11:06:05 -070070
Chad Dupuis4d97cc52010-10-15 11:27:41 -070071 del_timer(&iocb->timer);
Chad Dupuisb00ee7d2013-02-08 01:57:50 -050072 qla2x00_rel_sp(vha, sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -070073}
74
Andrew Vasquezac280b62009-08-20 11:06:05 -070075/* Asynchronous Login/Logout Routines -------------------------------------- */
76
Saurav Kashyapa9b6f722012-08-22 14:21:01 -040077unsigned long
Andrew Vasquez5b914902010-05-28 15:08:30 -070078qla2x00_get_async_timeout(struct scsi_qla_host *vha)
79{
80 unsigned long tmo;
81 struct qla_hw_data *ha = vha->hw;
82
83 /* Firmware should use switch negotiated r_a_tov for timeout. */
84 tmo = ha->r_a_tov / 10 * 2;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -040085 if (IS_QLAFX00(ha)) {
86 tmo = FX00_DEF_RATOV * 2;
87 } else if (!IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez5b914902010-05-28 15:08:30 -070088 /*
89 * Except for earlier ISPs where the timeout is seeded from the
90 * initialization control block.
91 */
92 tmo = ha->login_timeout;
93 }
94 return tmo;
95}
Andrew Vasquezac280b62009-08-20 11:06:05 -070096
97static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080098qla2x00_async_iocb_timeout(void *data)
Andrew Vasquezac280b62009-08-20 11:06:05 -070099{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800100 srb_t *sp = (srb_t *)data;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700101 fc_port_t *fcport = sp->fcport;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700102
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700103 ql_dbg(ql_dbg_disc, fcport->vha, 0x2071,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800104 "Async-%s timeout - hdl=%x portid=%02x%02x%02x.\n",
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800105 sp->name, sp->handle, fcport->d_id.b.domain, fcport->d_id.b.area,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700106 fcport->d_id.b.al_pa);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700107
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700108 fcport->flags &= ~FCF_ASYNC_SENT;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800109 if (sp->type == SRB_LOGIN_CMD) {
110 struct srb_iocb *lio = &sp->u.iocb_cmd;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700111 qla2x00_post_async_logout_work(fcport->vha, fcport, NULL);
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700112 /* Retry as needed. */
113 lio->u.logio.data[0] = MBS_COMMAND_ERROR;
114 lio->u.logio.data[1] = lio->u.logio.flags & SRB_LOGIN_RETRIED ?
115 QLA_LOGIO_LOGIN_RETRIED : 0;
116 qla2x00_post_async_login_done_work(fcport->vha, fcport,
117 lio->u.logio.data);
118 }
Andrew Vasquezac280b62009-08-20 11:06:05 -0700119}
120
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700121static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800122qla2x00_async_login_sp_done(void *data, void *ptr, int res)
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700123{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800124 srb_t *sp = (srb_t *)ptr;
125 struct srb_iocb *lio = &sp->u.iocb_cmd;
126 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700127
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800128 if (!test_bit(UNLOADING, &vha->dpc_flags))
129 qla2x00_post_async_login_done_work(sp->fcport->vha, sp->fcport,
130 lio->u.logio.data);
131 sp->free(sp->fcport->vha, sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700132}
133
Andrew Vasquezac280b62009-08-20 11:06:05 -0700134int
135qla2x00_async_login(struct scsi_qla_host *vha, fc_port_t *fcport,
136 uint16_t *data)
137{
Andrew Vasquezac280b62009-08-20 11:06:05 -0700138 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700139 struct srb_iocb *lio;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700140 int rval;
141
142 rval = QLA_FUNCTION_FAILED;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800143 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700144 if (!sp)
145 goto done;
146
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800147 sp->type = SRB_LOGIN_CMD;
148 sp->name = "login";
149 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
150
151 lio = &sp->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700152 lio->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800153 sp->done = qla2x00_async_login_sp_done;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700154 lio->u.logio.flags |= SRB_LOGIN_COND_PLOGI;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700155 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700156 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700157 rval = qla2x00_start_sp(sp);
158 if (rval != QLA_SUCCESS)
159 goto done_free_sp;
160
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700161 ql_dbg(ql_dbg_disc, vha, 0x2072,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800162 "Async-login - hdl=%x, loopid=%x portid=%02x%02x%02x "
163 "retries=%d.\n", sp->handle, fcport->loop_id,
164 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa,
165 fcport->login_retry);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700166 return rval;
167
168done_free_sp:
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800169 sp->free(fcport->vha, sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700170done:
171 return rval;
172}
173
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700174static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800175qla2x00_async_logout_sp_done(void *data, void *ptr, int res)
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700176{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800177 srb_t *sp = (srb_t *)ptr;
178 struct srb_iocb *lio = &sp->u.iocb_cmd;
179 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700180
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800181 if (!test_bit(UNLOADING, &vha->dpc_flags))
182 qla2x00_post_async_logout_done_work(sp->fcport->vha, sp->fcport,
183 lio->u.logio.data);
184 sp->free(sp->fcport->vha, sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700185}
186
Andrew Vasquezac280b62009-08-20 11:06:05 -0700187int
188qla2x00_async_logout(struct scsi_qla_host *vha, fc_port_t *fcport)
189{
Andrew Vasquezac280b62009-08-20 11:06:05 -0700190 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700191 struct srb_iocb *lio;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700192 int rval;
193
194 rval = QLA_FUNCTION_FAILED;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800195 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700196 if (!sp)
197 goto done;
198
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800199 sp->type = SRB_LOGOUT_CMD;
200 sp->name = "logout";
201 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
202
203 lio = &sp->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700204 lio->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800205 sp->done = qla2x00_async_logout_sp_done;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700206 rval = qla2x00_start_sp(sp);
207 if (rval != QLA_SUCCESS)
208 goto done_free_sp;
209
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700210 ql_dbg(ql_dbg_disc, vha, 0x2070,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800211 "Async-logout - hdl=%x loop-id=%x portid=%02x%02x%02x.\n",
212 sp->handle, fcport->loop_id, fcport->d_id.b.domain,
213 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700214 return rval;
215
216done_free_sp:
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800217 sp->free(fcport->vha, sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700218done:
219 return rval;
220}
221
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700222static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800223qla2x00_async_adisc_sp_done(void *data, void *ptr, int res)
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700224{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800225 srb_t *sp = (srb_t *)ptr;
226 struct srb_iocb *lio = &sp->u.iocb_cmd;
227 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700228
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800229 if (!test_bit(UNLOADING, &vha->dpc_flags))
230 qla2x00_post_async_adisc_done_work(sp->fcport->vha, sp->fcport,
231 lio->u.logio.data);
232 sp->free(sp->fcport->vha, sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700233}
234
235int
236qla2x00_async_adisc(struct scsi_qla_host *vha, fc_port_t *fcport,
237 uint16_t *data)
238{
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700239 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700240 struct srb_iocb *lio;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700241 int rval;
242
243 rval = QLA_FUNCTION_FAILED;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800244 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700245 if (!sp)
246 goto done;
247
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800248 sp->type = SRB_ADISC_CMD;
249 sp->name = "adisc";
250 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
251
252 lio = &sp->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700253 lio->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800254 sp->done = qla2x00_async_adisc_sp_done;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700255 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700256 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700257 rval = qla2x00_start_sp(sp);
258 if (rval != QLA_SUCCESS)
259 goto done_free_sp;
260
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700261 ql_dbg(ql_dbg_disc, vha, 0x206f,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800262 "Async-adisc - hdl=%x loopid=%x portid=%02x%02x%02x.\n",
263 sp->handle, fcport->loop_id, fcport->d_id.b.domain,
264 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700265 return rval;
266
267done_free_sp:
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800268 sp->free(fcport->vha, sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700269done:
270 return rval;
271}
272
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700273static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800274qla2x00_async_tm_cmd_done(void *data, void *ptr, int res)
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700275{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800276 srb_t *sp = (srb_t *)ptr;
277 struct srb_iocb *iocb = &sp->u.iocb_cmd;
278 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
279 uint32_t flags;
280 uint16_t lun;
281 int rval;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700282
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800283 if (!test_bit(UNLOADING, &vha->dpc_flags)) {
284 flags = iocb->u.tmf.flags;
285 lun = (uint16_t)iocb->u.tmf.lun;
286
287 /* Issue Marker IOCB */
288 rval = qla2x00_marker(vha, vha->hw->req_q_map[0],
289 vha->hw->rsp_q_map[0], sp->fcport->loop_id, lun,
290 flags == TCF_LUN_RESET ? MK_SYNC_ID_LUN : MK_SYNC_ID);
291
292 if ((rval != QLA_SUCCESS) || iocb->u.tmf.data) {
293 ql_dbg(ql_dbg_taskm, vha, 0x8030,
294 "TM IOCB failed (%x).\n", rval);
295 }
296 }
297 sp->free(sp->fcport->vha, sp);
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700298}
299
300int
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800301qla2x00_async_tm_cmd(fc_port_t *fcport, uint32_t tm_flags, uint32_t lun,
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700302 uint32_t tag)
303{
304 struct scsi_qla_host *vha = fcport->vha;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700305 srb_t *sp;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700306 struct srb_iocb *tcf;
307 int rval;
308
309 rval = QLA_FUNCTION_FAILED;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800310 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700311 if (!sp)
312 goto done;
313
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800314 sp->type = SRB_TM_CMD;
315 sp->name = "tmf";
316 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
317
318 tcf = &sp->u.iocb_cmd;
319 tcf->u.tmf.flags = tm_flags;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700320 tcf->u.tmf.lun = lun;
321 tcf->u.tmf.data = tag;
322 tcf->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800323 sp->done = qla2x00_async_tm_cmd_done;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700324
325 rval = qla2x00_start_sp(sp);
326 if (rval != QLA_SUCCESS)
327 goto done_free_sp;
328
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700329 ql_dbg(ql_dbg_taskm, vha, 0x802f,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800330 "Async-tmf hdl=%x loop-id=%x portid=%02x%02x%02x.\n",
331 sp->handle, fcport->loop_id, fcport->d_id.b.domain,
332 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700333 return rval;
334
335done_free_sp:
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800336 sp->free(fcport->vha, sp);
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700337done:
338 return rval;
339}
340
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700341void
Andrew Vasquezac280b62009-08-20 11:06:05 -0700342qla2x00_async_login_done(struct scsi_qla_host *vha, fc_port_t *fcport,
343 uint16_t *data)
344{
345 int rval;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700346
347 switch (data[0]) {
348 case MBS_COMMAND_COMPLETE:
Andrew Vasqueza4f92a32011-03-30 11:46:31 -0700349 /*
350 * Driver must validate login state - If PRLI not complete,
351 * force a relogin attempt via implicit LOGO, PLOGI, and PRLI
352 * requests.
353 */
354 rval = qla2x00_get_port_database(vha, fcport, 0);
Arun Easi0eba25d2012-02-09 11:15:58 -0800355 if (rval == QLA_NOT_LOGGED_IN) {
356 fcport->flags &= ~FCF_ASYNC_SENT;
357 fcport->flags |= FCF_LOGIN_NEEDED;
358 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
359 break;
360 }
361
Andrew Vasqueza4f92a32011-03-30 11:46:31 -0700362 if (rval != QLA_SUCCESS) {
363 qla2x00_post_async_logout_work(vha, fcport, NULL);
364 qla2x00_post_async_login_work(vha, fcport, NULL);
365 break;
366 }
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700367 if (fcport->flags & FCF_FCP2_DEVICE) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700368 qla2x00_post_async_adisc_work(vha, fcport, data);
369 break;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700370 }
371 qla2x00_update_fcport(vha, fcport);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700372 break;
373 case MBS_COMMAND_ERROR:
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700374 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700375 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
376 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
377 else
Andrew Vasquez80d79442011-03-30 11:46:17 -0700378 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700379 break;
380 case MBS_PORT_ID_USED:
381 fcport->loop_id = data[1];
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700382 qla2x00_post_async_logout_work(vha, fcport, NULL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700383 qla2x00_post_async_login_work(vha, fcport, NULL);
384 break;
385 case MBS_LOOP_ID_USED:
386 fcport->loop_id++;
387 rval = qla2x00_find_new_loop_id(vha, fcport);
388 if (rval != QLA_SUCCESS) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700389 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquez80d79442011-03-30 11:46:17 -0700390 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700391 break;
392 }
393 qla2x00_post_async_login_work(vha, fcport, NULL);
394 break;
395 }
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700396 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700397}
398
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700399void
Andrew Vasquezac280b62009-08-20 11:06:05 -0700400qla2x00_async_logout_done(struct scsi_qla_host *vha, fc_port_t *fcport,
401 uint16_t *data)
402{
403 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700404 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700405}
406
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700407void
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700408qla2x00_async_adisc_done(struct scsi_qla_host *vha, fc_port_t *fcport,
409 uint16_t *data)
410{
411 if (data[0] == MBS_COMMAND_COMPLETE) {
412 qla2x00_update_fcport(vha, fcport);
413
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700414 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700415 }
416
417 /* Retry login. */
418 fcport->flags &= ~FCF_ASYNC_SENT;
419 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
420 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
421 else
Andrew Vasquez80d79442011-03-30 11:46:17 -0700422 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700423
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700424 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700425}
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/****************************************************************************/
428/* QLogic ISP2x00 Hardware Support Functions. */
429/****************************************************************************/
430
Saurav Kashyapfa492632012-11-21 02:40:29 -0500431static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400432qla83xx_nic_core_fw_load(scsi_qla_host_t *vha)
433{
434 int rval = QLA_SUCCESS;
435 struct qla_hw_data *ha = vha->hw;
436 uint32_t idc_major_ver, idc_minor_ver;
Saurav Kashyap711aa7f2012-08-22 14:21:15 -0400437 uint16_t config[4];
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400438
439 qla83xx_idc_lock(vha, 0);
440
441 /* SV: TODO: Assign initialization timeout from
442 * flash-info / other param
443 */
444 ha->fcoe_dev_init_timeout = QLA83XX_IDC_INITIALIZATION_TIMEOUT;
445 ha->fcoe_reset_timeout = QLA83XX_IDC_RESET_ACK_TIMEOUT;
446
447 /* Set our fcoe function presence */
448 if (__qla83xx_set_drv_presence(vha) != QLA_SUCCESS) {
449 ql_dbg(ql_dbg_p3p, vha, 0xb077,
450 "Error while setting DRV-Presence.\n");
451 rval = QLA_FUNCTION_FAILED;
452 goto exit;
453 }
454
455 /* Decide the reset ownership */
456 qla83xx_reset_ownership(vha);
457
458 /*
459 * On first protocol driver load:
460 * Init-Owner: Set IDC-Major-Version and Clear IDC-Lock-Recovery
461 * register.
462 * Others: Check compatibility with current IDC Major version.
463 */
464 qla83xx_rd_reg(vha, QLA83XX_IDC_MAJOR_VERSION, &idc_major_ver);
465 if (ha->flags.nic_core_reset_owner) {
466 /* Set IDC Major version */
467 idc_major_ver = QLA83XX_SUPP_IDC_MAJOR_VERSION;
468 qla83xx_wr_reg(vha, QLA83XX_IDC_MAJOR_VERSION, idc_major_ver);
469
470 /* Clearing IDC-Lock-Recovery register */
471 qla83xx_wr_reg(vha, QLA83XX_IDC_LOCK_RECOVERY, 0);
472 } else if (idc_major_ver != QLA83XX_SUPP_IDC_MAJOR_VERSION) {
473 /*
474 * Clear further IDC participation if we are not compatible with
475 * the current IDC Major Version.
476 */
477 ql_log(ql_log_warn, vha, 0xb07d,
478 "Failing load, idc_major_ver=%d, expected_major_ver=%d.\n",
479 idc_major_ver, QLA83XX_SUPP_IDC_MAJOR_VERSION);
480 __qla83xx_clear_drv_presence(vha);
481 rval = QLA_FUNCTION_FAILED;
482 goto exit;
483 }
484 /* Each function sets its supported Minor version. */
485 qla83xx_rd_reg(vha, QLA83XX_IDC_MINOR_VERSION, &idc_minor_ver);
486 idc_minor_ver |= (QLA83XX_SUPP_IDC_MINOR_VERSION << (ha->portnum * 2));
487 qla83xx_wr_reg(vha, QLA83XX_IDC_MINOR_VERSION, idc_minor_ver);
488
Saurav Kashyap711aa7f2012-08-22 14:21:15 -0400489 if (ha->flags.nic_core_reset_owner) {
490 memset(config, 0, sizeof(config));
491 if (!qla81xx_get_port_config(vha, config))
492 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE,
493 QLA8XXX_DEV_READY);
494 }
495
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400496 rval = qla83xx_idc_state_handler(vha);
497
498exit:
499 qla83xx_idc_unlock(vha, 0);
500
501 return rval;
502}
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/*
505* qla2x00_initialize_adapter
506* Initialize board.
507*
508* Input:
509* ha = adapter block pointer.
510*
511* Returns:
512* 0 = success
513*/
514int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800515qla2x00_initialize_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800518 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800519 struct req_que *req = ha->req_q_map[0];
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* Clear adapter flags. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800522 vha->flags.online = 0;
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700523 ha->flags.chip_reset_done = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800524 vha->flags.reset_active = 0;
Andrew Vasquez85880802009-12-15 21:29:46 -0800525 ha->flags.pci_channel_io_perm_failure = 0;
526 ha->flags.eeh_busy = 0;
Joe Carnucciofe52f6e2013-02-08 01:58:03 -0500527 ha->thermal_support = THERMAL_SUPPORT_I2C|THERMAL_SUPPORT_ISP;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800528 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
529 atomic_set(&vha->loop_state, LOOP_DOWN);
530 vha->device_flags = DFLG_NO_CABLE;
531 vha->dpc_flags = 0;
532 vha->flags.management_server_logged_in = 0;
533 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 ha->isp_abort_cnt = 0;
535 ha->beacon_blink_led = 0;
536
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800537 set_bit(0, ha->req_qid_map);
538 set_bit(0, ha->rsp_qid_map);
539
Chad Dupuiscfb09192011-11-18 09:03:07 -0800540 ql_dbg(ql_dbg_init, vha, 0x0040,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700541 "Configuring PCI space...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800542 rval = ha->isp_ops->pci_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700544 ql_log(ql_log_warn, vha, 0x0044,
545 "Unable to configure PCI space.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return (rval);
547 }
548
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800549 ha->isp_ops->reset_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800551 rval = qla2xxx_get_flash_info(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700552 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700553 ql_log(ql_log_fatal, vha, 0x004f,
554 "Unable to validate FLASH data.\n");
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400555 return rval;
556 }
557
558 if (IS_QLA8044(ha)) {
559 qla8044_read_reset_template(vha);
560
561 /* NOTE: If ql2xdontresethba==1, set IDC_CTRL DONTRESET_BIT0.
562 * If DONRESET_BIT0 is set, drivers should not set dev_state
563 * to NEED_RESET. But if NEED_RESET is set, drivers should
564 * should honor the reset. */
565 if (ql2xdontresethba == 1)
566 qla8044_set_idc_dontreset(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700567 }
568
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800569 ha->isp_ops->get_flash_version(vha, req->ring);
Chad Dupuiscfb09192011-11-18 09:03:07 -0800570 ql_dbg(ql_dbg_init, vha, 0x0061,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700571 "Configure NVRAM parameters...\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700572
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800573 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700575 if (ha->flags.disable_serdes) {
576 /* Mask HBA via NVRAM settings? */
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700577 ql_log(ql_log_info, vha, 0x0077,
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -0400578 "Masking HBA WWPN %8phN (via NVRAM).\n", vha->port_name);
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700579 return QLA_FUNCTION_FAILED;
580 }
581
Chad Dupuiscfb09192011-11-18 09:03:07 -0800582 ql_dbg(ql_dbg_init, vha, 0x0078,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700583 "Verifying loaded RISC code...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800585 if (qla2x00_isp_firmware(vha) != QLA_SUCCESS) {
586 rval = ha->isp_ops->chip_diag(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800587 if (rval)
588 return (rval);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800589 rval = qla2x00_setup_chip(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800590 if (rval)
591 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
Giridhar Malavalia9083012010-04-12 17:59:55 -0700593
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700594 if (IS_QLA84XX(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800595 ha->cs84xx = qla84xx_get_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700596 if (!ha->cs84xx) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700597 ql_log(ql_log_warn, vha, 0x00d0,
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700598 "Unable to configure ISP84XX.\n");
599 return QLA_FUNCTION_FAILED;
600 }
601 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400602
603 if (qla_ini_mode_enabled(vha))
604 rval = qla2x00_init_rings(vha);
605
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700606 ha->flags.chip_reset_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800608 if (rval == QLA_SUCCESS && IS_QLA84XX(ha)) {
Andrew Vasquez6c452a42010-03-19 17:04:02 -0700609 /* Issue verify 84xx FW IOCB to complete 84xx initialization */
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800610 rval = qla84xx_init_chip(vha);
611 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700612 ql_log(ql_log_warn, vha, 0x00d4,
613 "Unable to initialize ISP84XX.\n");
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800614 qla84xx_put_chip(vha);
615 }
616 }
617
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400618 /* Load the NIC Core f/w if we are the first protocol driver. */
619 if (IS_QLA8031(ha)) {
620 rval = qla83xx_nic_core_fw_load(vha);
621 if (rval)
622 ql_log(ql_log_warn, vha, 0x0124,
623 "Error in initializing NIC Core f/w.\n");
624 }
625
Madhuranath Iyengar2f0f3f42010-07-23 15:28:24 +0500626 if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha))
627 qla24xx_read_fcp_prio_cfg(vha);
Sarang Radke09ff7012010-03-19 17:03:59 -0700628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return (rval);
630}
631
632/**
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700633 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 * @ha: HA context
635 *
636 * Returns 0 on success.
637 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700638int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800639qla2100_pci_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700641 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700642 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800643 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700644 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700647 pci_try_set_mwi(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700650 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
652
Andrew Vasquez737faec2008-10-24 15:13:45 -0700653 pci_disable_rom(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700655 /* Get PCI bus information. */
656 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700657 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700658 spin_unlock_irqrestore(&ha->hardware_lock, flags);
659
660 return QLA_SUCCESS;
661}
662
663/**
664 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
665 * @ha: HA context
666 *
667 * Returns 0 on success.
668 */
669int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800670qla2300_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700671{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700672 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700673 unsigned long flags = 0;
674 uint32_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800675 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700676 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700677
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700678 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700679 pci_try_set_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700680
681 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700682 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700683
684 if (IS_QLA2322(ha) || IS_QLA6322(ha))
685 w &= ~PCI_COMMAND_INTX_DISABLE;
Andrew Vasqueza157b102007-05-07 07:43:01 -0700686 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700687
688 /*
689 * If this is a 2300 card and not 2312, reset the
690 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
691 * the 2310 also reports itself as a 2300 so we need to get the
692 * fb revision level -- a 6 indicates it really is a 2300 and
693 * not a 2310.
694 */
695 if (IS_QLA2300(ha)) {
696 spin_lock_irqsave(&ha->hardware_lock, flags);
697
698 /* Pause RISC. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700699 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700700 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700701 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700702 break;
703
704 udelay(10);
705 }
706
707 /* Select FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700708 WRT_REG_WORD(&reg->ctrl_status, 0x20);
709 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700710
711 /* Get the fb rev level */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700712 ha->fb_rev = RD_FB_CMD_REG(ha, reg);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700713
714 if (ha->fb_rev == FPM_2300)
Andrew Vasqueza157b102007-05-07 07:43:01 -0700715 pci_clear_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700716
717 /* Deselect FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700718 WRT_REG_WORD(&reg->ctrl_status, 0x0);
719 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700720
721 /* Release RISC module. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700722 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700723 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700724 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) == 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700725 break;
726
727 udelay(10);
728 }
729
730 spin_unlock_irqrestore(&ha->hardware_lock, flags);
731 }
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700732
733 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
734
Andrew Vasquez737faec2008-10-24 15:13:45 -0700735 pci_disable_rom(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700736
737 /* Get PCI bus information. */
738 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700739 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700740 spin_unlock_irqrestore(&ha->hardware_lock, flags);
741
742 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700746 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
747 * @ha: HA context
748 *
749 * Returns 0 on success.
750 */
751int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800752qla24xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700753{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700754 uint16_t w;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700755 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800756 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700757 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700758
759 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700760 pci_try_set_mwi(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700761
762 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700763 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700764 w &= ~PCI_COMMAND_INTX_DISABLE;
765 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
766
767 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
768
769 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700770 if (pci_find_capability(ha->pdev, PCI_CAP_ID_PCIX))
771 pcix_set_mmrbc(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700772
773 /* PCIe -- adjust Maximum Read Request Size (2048). */
Jon Masone67f1322012-07-10 14:57:56 -0700774 if (pci_is_pcie(ha->pdev))
Chad Dupuis5ffd3a52012-08-22 14:21:26 -0400775 pcie_set_readrq(ha->pdev, 4096);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700776
Andrew Vasquez737faec2008-10-24 15:13:45 -0700777 pci_disable_rom(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700778
Auke Kok44c10132007-06-08 15:46:36 -0700779 ha->chip_revision = ha->pdev->revision;
Andrew Vasqueza8488ab2007-01-29 10:22:19 -0800780
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700781 /* Get PCI bus information. */
782 spin_lock_irqsave(&ha->hardware_lock, flags);
783 ha->pci_attr = RD_REG_DWORD(&reg->ctrl_status);
784 spin_unlock_irqrestore(&ha->hardware_lock, flags);
785
786 return QLA_SUCCESS;
787}
788
789/**
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700790 * qla25xx_pci_config() - Setup ISP25xx PCI configuration registers.
791 * @ha: HA context
792 *
793 * Returns 0 on success.
794 */
795int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800796qla25xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700797{
798 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800799 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700800
801 pci_set_master(ha->pdev);
802 pci_try_set_mwi(ha->pdev);
803
804 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
805 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
806 w &= ~PCI_COMMAND_INTX_DISABLE;
807 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
808
809 /* PCIe -- adjust Maximum Read Request Size (2048). */
Jon Masone67f1322012-07-10 14:57:56 -0700810 if (pci_is_pcie(ha->pdev))
Chad Dupuis5ffd3a52012-08-22 14:21:26 -0400811 pcie_set_readrq(ha->pdev, 4096);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700812
Andrew Vasquez737faec2008-10-24 15:13:45 -0700813 pci_disable_rom(ha->pdev);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700814
815 ha->chip_revision = ha->pdev->revision;
816
817 return QLA_SUCCESS;
818}
819
820/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 * qla2x00_isp_firmware() - Choose firmware image.
822 * @ha: HA context
823 *
824 * Returns 0 on success.
825 */
826static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800827qla2x00_isp_firmware(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 int rval;
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700830 uint16_t loop_id, topo, sw_cap;
831 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800832 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /* Assume loading risc code */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700835 rval = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 if (ha->flags.disable_risc_code_load) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700838 ql_log(ql_log_info, vha, 0x0079, "RISC CODE NOT loaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /* Verify checksum of loaded RISC code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800841 rval = qla2x00_verify_checksum(vha, ha->fw_srisc_address);
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700842 if (rval == QLA_SUCCESS) {
843 /* And, verify we are not in ROM code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800844 rval = qla2x00_get_adapter_id(vha, &loop_id, &al_pa,
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700845 &area, &domain, &topo, &sw_cap);
846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700849 if (rval)
850 ql_dbg(ql_dbg_init, vha, 0x007a,
851 "**** Load RISC code ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 return (rval);
854}
855
856/**
857 * qla2x00_reset_chip() - Reset ISP chip.
858 * @ha: HA context
859 *
860 * Returns 0 on success.
861 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700862void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800863qla2x00_reset_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800866 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700867 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 uint32_t cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 uint16_t cmd;
870
Andrew Vasquez85880802009-12-15 21:29:46 -0800871 if (unlikely(pci_channel_offline(ha->pdev)))
872 return;
873
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700874 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 spin_lock_irqsave(&ha->hardware_lock, flags);
877
878 /* Turn off master enable */
879 cmd = 0;
880 pci_read_config_word(ha->pdev, PCI_COMMAND, &cmd);
881 cmd &= ~PCI_COMMAND_MASTER;
882 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
883
884 if (!IS_QLA2100(ha)) {
885 /* Pause RISC. */
886 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
887 if (IS_QLA2200(ha) || IS_QLA2300(ha)) {
888 for (cnt = 0; cnt < 30000; cnt++) {
889 if ((RD_REG_WORD(&reg->hccr) &
890 HCCR_RISC_PAUSE) != 0)
891 break;
892 udelay(100);
893 }
894 } else {
895 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
896 udelay(10);
897 }
898
899 /* Select FPM registers. */
900 WRT_REG_WORD(&reg->ctrl_status, 0x20);
901 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
902
903 /* FPM Soft Reset. */
904 WRT_REG_WORD(&reg->fpm_diag_config, 0x100);
905 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
906
907 /* Toggle Fpm Reset. */
908 if (!IS_QLA2200(ha)) {
909 WRT_REG_WORD(&reg->fpm_diag_config, 0x0);
910 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
911 }
912
913 /* Select frame buffer registers. */
914 WRT_REG_WORD(&reg->ctrl_status, 0x10);
915 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
916
917 /* Reset frame buffer FIFOs. */
918 if (IS_QLA2200(ha)) {
919 WRT_FB_CMD_REG(ha, reg, 0xa000);
920 RD_FB_CMD_REG(ha, reg); /* PCI Posting. */
921 } else {
922 WRT_FB_CMD_REG(ha, reg, 0x00fc);
923
924 /* Read back fb_cmd until zero or 3 seconds max */
925 for (cnt = 0; cnt < 3000; cnt++) {
926 if ((RD_FB_CMD_REG(ha, reg) & 0xff) == 0)
927 break;
928 udelay(100);
929 }
930 }
931
932 /* Select RISC module registers. */
933 WRT_REG_WORD(&reg->ctrl_status, 0);
934 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
935
936 /* Reset RISC processor. */
937 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
938 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
939
940 /* Release RISC processor. */
941 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
942 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
943 }
944
945 WRT_REG_WORD(&reg->hccr, HCCR_CLR_RISC_INT);
946 WRT_REG_WORD(&reg->hccr, HCCR_CLR_HOST_INT);
947
948 /* Reset ISP chip. */
949 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
950
951 /* Wait for RISC to recover from reset. */
952 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
953 /*
954 * It is necessary to for a delay here since the card doesn't
955 * respond to PCI reads during a reset. On some architectures
956 * this will result in an MCA.
957 */
958 udelay(20);
959 for (cnt = 30000; cnt; cnt--) {
960 if ((RD_REG_WORD(&reg->ctrl_status) &
961 CSR_ISP_SOFT_RESET) == 0)
962 break;
963 udelay(100);
964 }
965 } else
966 udelay(10);
967
968 /* Reset RISC processor. */
969 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
970
971 WRT_REG_WORD(&reg->semaphore, 0);
972
973 /* Release RISC processor. */
974 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
975 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
976
977 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
978 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquezffb39f02006-05-17 15:09:06 -0700979 if (RD_MAILBOX_REG(ha, reg, 0) != MBS_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 udelay(100);
983 }
984 } else
985 udelay(100);
986
987 /* Turn on master enable */
988 cmd |= PCI_COMMAND_MASTER;
989 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
990
991 /* Disable RISC pause on FPM parity error. */
992 if (!IS_QLA2100(ha)) {
993 WRT_REG_WORD(&reg->hccr, HCCR_DISABLE_PARITY_PAUSE);
994 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
995 }
996
997 spin_unlock_irqrestore(&ha->hardware_lock, flags);
998}
999
1000/**
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07001001 * qla81xx_reset_mpi() - Reset's MPI FW via Write MPI Register MBC.
1002 *
1003 * Returns 0 on success.
1004 */
Saurav Kashyapfa492632012-11-21 02:40:29 -05001005static int
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07001006qla81xx_reset_mpi(scsi_qla_host_t *vha)
1007{
1008 uint16_t mb[4] = {0x1010, 0, 1, 0};
1009
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001010 if (!IS_QLA81XX(vha->hw))
1011 return QLA_SUCCESS;
1012
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07001013 return qla81xx_write_mpi_register(vha, mb);
1014}
1015
1016/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001017 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001018 * @ha: HA context
1019 *
1020 * Returns 0 on success.
1021 */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001022static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001023qla24xx_reset_risc(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001024{
1025 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001026 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001027 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1028 uint32_t cnt, d2;
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001029 uint16_t wd;
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07001030 static int abts_cnt; /* ISP abort retry counts */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001031
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001032 spin_lock_irqsave(&ha->hardware_lock, flags);
1033
1034 /* Reset RISC. */
1035 WRT_REG_DWORD(&reg->ctrl_status, CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
1036 for (cnt = 0; cnt < 30000; cnt++) {
1037 if ((RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE) == 0)
1038 break;
1039
1040 udelay(10);
1041 }
1042
1043 WRT_REG_DWORD(&reg->ctrl_status,
1044 CSRX_ISP_SOFT_RESET|CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001045 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001046
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001047 udelay(100);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001048 /* Wait for firmware to complete NVRAM accesses. */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001049 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1050 for (cnt = 10000 ; cnt && d2; cnt--) {
1051 udelay(5);
1052 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1053 barrier();
1054 }
1055
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001056 /* Wait for soft-reset to complete. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001057 d2 = RD_REG_DWORD(&reg->ctrl_status);
1058 for (cnt = 6000000 ; cnt && (d2 & CSRX_ISP_SOFT_RESET); cnt--) {
1059 udelay(5);
1060 d2 = RD_REG_DWORD(&reg->ctrl_status);
1061 barrier();
1062 }
1063
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07001064 /* If required, do an MPI FW reset now */
1065 if (test_and_clear_bit(MPI_RESET_NEEDED, &vha->dpc_flags)) {
1066 if (qla81xx_reset_mpi(vha) != QLA_SUCCESS) {
1067 if (++abts_cnt < 5) {
1068 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1069 set_bit(MPI_RESET_NEEDED, &vha->dpc_flags);
1070 } else {
1071 /*
1072 * We exhausted the ISP abort retries. We have to
1073 * set the board offline.
1074 */
1075 abts_cnt = 0;
1076 vha->flags.online = 0;
1077 }
1078 }
1079 }
1080
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001081 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
1082 RD_REG_DWORD(&reg->hccr);
1083
1084 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
1085 RD_REG_DWORD(&reg->hccr);
1086
1087 WRT_REG_DWORD(&reg->hccr, HCCRX_CLR_RISC_RESET);
1088 RD_REG_DWORD(&reg->hccr);
1089
1090 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1091 for (cnt = 6000000 ; cnt && d2; cnt--) {
1092 udelay(5);
1093 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1094 barrier();
1095 }
1096
1097 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez124f85e2009-01-05 11:18:06 -08001098
1099 if (IS_NOPOLLING_TYPE(ha))
1100 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001101}
1102
Joe Carnuccio4ea2c9c2012-11-21 02:40:37 -05001103static void
1104qla25xx_read_risc_sema_reg(scsi_qla_host_t *vha, uint32_t *data)
1105{
1106 struct device_reg_24xx __iomem *reg = &vha->hw->iobase->isp24;
1107
1108 WRT_REG_DWORD(&reg->iobase_addr, RISC_REGISTER_BASE_OFFSET);
1109 *data = RD_REG_DWORD(&reg->iobase_window + RISC_REGISTER_WINDOW_OFFET);
1110
1111}
1112
1113static void
1114qla25xx_write_risc_sema_reg(scsi_qla_host_t *vha, uint32_t data)
1115{
1116 struct device_reg_24xx __iomem *reg = &vha->hw->iobase->isp24;
1117
1118 WRT_REG_DWORD(&reg->iobase_addr, RISC_REGISTER_BASE_OFFSET);
1119 WRT_REG_DWORD(&reg->iobase_window + RISC_REGISTER_WINDOW_OFFET, data);
1120}
1121
1122static void
1123qla25xx_manipulate_risc_semaphore(scsi_qla_host_t *vha)
1124{
1125 struct qla_hw_data *ha = vha->hw;
1126 uint32_t wd32 = 0;
1127 uint delta_msec = 100;
1128 uint elapsed_msec = 0;
1129 uint timeout_msec;
1130 ulong n;
1131
1132 if (!IS_QLA25XX(ha) && !IS_QLA2031(ha))
1133 return;
1134
1135attempt:
1136 timeout_msec = TIMEOUT_SEMAPHORE;
1137 n = timeout_msec / delta_msec;
1138 while (n--) {
1139 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_SET);
1140 qla25xx_read_risc_sema_reg(vha, &wd32);
1141 if (wd32 & RISC_SEMAPHORE)
1142 break;
1143 msleep(delta_msec);
1144 elapsed_msec += delta_msec;
1145 if (elapsed_msec > TIMEOUT_TOTAL_ELAPSED)
1146 goto force;
1147 }
1148
1149 if (!(wd32 & RISC_SEMAPHORE))
1150 goto force;
1151
1152 if (!(wd32 & RISC_SEMAPHORE_FORCE))
1153 goto acquired;
1154
1155 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_CLR);
1156 timeout_msec = TIMEOUT_SEMAPHORE_FORCE;
1157 n = timeout_msec / delta_msec;
1158 while (n--) {
1159 qla25xx_read_risc_sema_reg(vha, &wd32);
1160 if (!(wd32 & RISC_SEMAPHORE_FORCE))
1161 break;
1162 msleep(delta_msec);
1163 elapsed_msec += delta_msec;
1164 if (elapsed_msec > TIMEOUT_TOTAL_ELAPSED)
1165 goto force;
1166 }
1167
1168 if (wd32 & RISC_SEMAPHORE_FORCE)
1169 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_FORCE_CLR);
1170
1171 goto attempt;
1172
1173force:
1174 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_FORCE_SET);
1175
1176acquired:
1177 return;
1178}
1179
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001180/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001181 * qla24xx_reset_chip() - Reset ISP24xx chip.
1182 * @ha: HA context
1183 *
1184 * Returns 0 on success.
1185 */
1186void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001187qla24xx_reset_chip(scsi_qla_host_t *vha)
Andrew Vasquez88c26662005-07-08 17:59:26 -07001188{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001189 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez85880802009-12-15 21:29:46 -08001190
1191 if (pci_channel_offline(ha->pdev) &&
1192 ha->flags.pci_channel_io_perm_failure) {
1193 return;
1194 }
1195
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001196 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001197
Joe Carnuccio4ea2c9c2012-11-21 02:40:37 -05001198 qla25xx_manipulate_risc_semaphore(vha);
1199
Andrew Vasquez88c26662005-07-08 17:59:26 -07001200 /* Perform RISC reset. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001201 qla24xx_reset_risc(vha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001202}
1203
1204/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 * qla2x00_chip_diag() - Test chip for proper operation.
1206 * @ha: HA context
1207 *
1208 * Returns 0 on success.
1209 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001210int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001211qla2x00_chip_diag(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
1213 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001214 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001215 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 unsigned long flags = 0;
1217 uint16_t data;
1218 uint32_t cnt;
1219 uint16_t mb[5];
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001220 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 /* Assume a failed state */
1223 rval = QLA_FUNCTION_FAILED;
1224
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001225 ql_dbg(ql_dbg_init, vha, 0x007b,
1226 "Testing device at %lx.\n", (u_long)&reg->flash_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 spin_lock_irqsave(&ha->hardware_lock, flags);
1229
1230 /* Reset ISP chip. */
1231 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
1232
1233 /*
1234 * We need to have a delay here since the card will not respond while
1235 * in reset causing an MCA on some architectures.
1236 */
1237 udelay(20);
1238 data = qla2x00_debounce_register(&reg->ctrl_status);
1239 for (cnt = 6000000 ; cnt && (data & CSR_ISP_SOFT_RESET); cnt--) {
1240 udelay(5);
1241 data = RD_REG_WORD(&reg->ctrl_status);
1242 barrier();
1243 }
1244
1245 if (!cnt)
1246 goto chip_diag_failed;
1247
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001248 ql_dbg(ql_dbg_init, vha, 0x007c,
1249 "Reset register cleared by chip reset.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 /* Reset RISC processor. */
1252 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
1253 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
1254
1255 /* Workaround for QLA2312 PCI parity error */
1256 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
1257 data = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 0));
1258 for (cnt = 6000000; cnt && (data == MBS_BUSY); cnt--) {
1259 udelay(5);
1260 data = RD_MAILBOX_REG(ha, reg, 0);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001261 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263 } else
1264 udelay(10);
1265
1266 if (!cnt)
1267 goto chip_diag_failed;
1268
1269 /* Check product ID of chip */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001270 ql_dbg(ql_dbg_init, vha, 0x007d, "Checking product Id of chip.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
1273 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
1274 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
1275 mb[4] = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 4));
1276 if (mb[1] != PROD_ID_1 || (mb[2] != PROD_ID_2 && mb[2] != PROD_ID_2a) ||
1277 mb[3] != PROD_ID_3) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001278 ql_log(ql_log_warn, vha, 0x0062,
1279 "Wrong product ID = 0x%x,0x%x,0x%x.\n",
1280 mb[1], mb[2], mb[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 goto chip_diag_failed;
1283 }
1284 ha->product_id[0] = mb[1];
1285 ha->product_id[1] = mb[2];
1286 ha->product_id[2] = mb[3];
1287 ha->product_id[3] = mb[4];
1288
1289 /* Adjust fw RISC transfer size */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001290 if (req->length > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
1292 else
1293 ha->fw_transfer_size = REQUEST_ENTRY_SIZE *
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001294 req->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 if (IS_QLA2200(ha) &&
1297 RD_MAILBOX_REG(ha, reg, 7) == QLA2200A_RISC_ROM_VER) {
1298 /* Limit firmware transfer size with a 2200A */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001299 ql_dbg(ql_dbg_init, vha, 0x007e, "Found QLA2200A Chip.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001301 ha->device_type |= DT_ISP2200A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 ha->fw_transfer_size = 128;
1303 }
1304
1305 /* Wrap Incoming Mailboxes Test. */
1306 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1307
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001308 ql_dbg(ql_dbg_init, vha, 0x007f, "Checking mailboxes.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001309 rval = qla2x00_mbx_reg_test(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001310 if (rval)
1311 ql_log(ql_log_warn, vha, 0x0080,
1312 "Failed mailbox send register test.\n");
1313 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 /* Flag a successful rval */
1315 rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 spin_lock_irqsave(&ha->hardware_lock, flags);
1317
1318chip_diag_failed:
1319 if (rval)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001320 ql_log(ql_log_info, vha, 0x0081,
1321 "Chip diagnostics **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1324
1325 return (rval);
1326}
1327
1328/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001329 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
1330 * @ha: HA context
1331 *
1332 * Returns 0 on success.
1333 */
1334int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001335qla24xx_chip_diag(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001336{
1337 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001338 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001339 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001340
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001341 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07001342 return QLA_SUCCESS;
1343
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001344 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * req->length;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001345
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001346 rval = qla2x00_mbx_reg_test(vha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001347 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001348 ql_log(ql_log_warn, vha, 0x0082,
1349 "Failed mailbox send register test.\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001350 } else {
1351 /* Flag a successful rval */
1352 rval = QLA_SUCCESS;
1353 }
1354
1355 return rval;
1356}
1357
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001358void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001359qla2x00_alloc_fw_dump(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001360{
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001361 int rval;
1362 uint32_t dump_size, fixed_size, mem_size, req_q_size, rsp_q_size,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001363 eft_size, fce_size, mq_size;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001364 dma_addr_t tc_dma;
1365 void *tc;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001366 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001367 struct req_que *req = ha->req_q_map[0];
1368 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001369
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001370 if (ha->fw_dump) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001371 ql_dbg(ql_dbg_init, vha, 0x00bd,
1372 "Firmware dump already allocated.\n");
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001373 return;
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001374 }
1375
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001376 ha->fw_dumped = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001377 fixed_size = mem_size = eft_size = fce_size = mq_size = 0;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001378 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1379 fixed_size = sizeof(struct qla2100_fw_dump);
1380 } else if (IS_QLA23XX(ha)) {
1381 fixed_size = offsetof(struct qla2300_fw_dump, data_ram);
1382 mem_size = (ha->fw_memory_size - 0x11000 + 1) *
1383 sizeof(uint16_t);
Andrew Vasqueze4289242007-07-19 15:05:56 -07001384 } else if (IS_FWI2_CAPABLE(ha)) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001385 if (IS_QLA83XX(ha))
1386 fixed_size = offsetof(struct qla83xx_fw_dump, ext_mem);
1387 else if (IS_QLA81XX(ha))
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001388 fixed_size = offsetof(struct qla81xx_fw_dump, ext_mem);
1389 else if (IS_QLA25XX(ha))
1390 fixed_size = offsetof(struct qla25xx_fw_dump, ext_mem);
1391 else
1392 fixed_size = offsetof(struct qla24xx_fw_dump, ext_mem);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001393 mem_size = (ha->fw_memory_size - 0x100000 + 1) *
1394 sizeof(uint32_t);
Giridhar Malavali050c9bb2012-02-09 11:15:33 -08001395 if (ha->mqenable) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001396 if (!IS_QLA83XX(ha))
1397 mq_size = sizeof(struct qla2xxx_mq_chain);
Giridhar Malavali050c9bb2012-02-09 11:15:33 -08001398 /*
1399 * Allocate maximum buffer size for all queues.
1400 * Resizing must be done at end-of-dump processing.
1401 */
1402 mq_size += ha->max_req_queues *
1403 (req->length * sizeof(request_t));
1404 mq_size += ha->max_rsp_queues *
1405 (rsp->length * sizeof(response_t));
1406 }
Arun Easi00876ae2013-03-25 02:21:37 -04001407 if (ha->tgt.atio_ring)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001408 mq_size += ha->tgt.atio_q_length * sizeof(request_t);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001409 /* Allocate memory for Fibre Channel Event Buffer. */
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001410 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha) && !IS_QLA83XX(ha))
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001411 goto try_eft;
1412
1413 tc = dma_alloc_coherent(&ha->pdev->dev, FCE_SIZE, &tc_dma,
1414 GFP_KERNEL);
1415 if (!tc) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001416 ql_log(ql_log_warn, vha, 0x00be,
1417 "Unable to allocate (%d KB) for FCE.\n",
1418 FCE_SIZE / 1024);
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001419 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001420 }
1421
1422 memset(tc, 0, FCE_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001423 rval = qla2x00_enable_fce_trace(vha, tc_dma, FCE_NUM_BUFFERS,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001424 ha->fce_mb, &ha->fce_bufs);
1425 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001426 ql_log(ql_log_warn, vha, 0x00bf,
1427 "Unable to initialize FCE (%d).\n", rval);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001428 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, tc,
1429 tc_dma);
1430 ha->flags.fce_enabled = 0;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001431 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001432 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08001433 ql_dbg(ql_dbg_init, vha, 0x00c0,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001434 "Allocate (%d KB) for FCE...\n", FCE_SIZE / 1024);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001435
Giridhar Malavali7d9dade2009-03-24 09:07:58 -07001436 fce_size = sizeof(struct qla2xxx_fce_chain) + FCE_SIZE;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001437 ha->flags.fce_enabled = 1;
1438 ha->fce_dma = tc_dma;
1439 ha->fce = tc;
1440try_eft:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001441 /* Allocate memory for Extended Trace Buffer. */
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001442 tc = dma_alloc_coherent(&ha->pdev->dev, EFT_SIZE, &tc_dma,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001443 GFP_KERNEL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001444 if (!tc) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001445 ql_log(ql_log_warn, vha, 0x00c1,
1446 "Unable to allocate (%d KB) for EFT.\n",
1447 EFT_SIZE / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001448 goto cont_alloc;
1449 }
1450
Andrew Vasquezfc447652008-01-17 09:02:18 -08001451 memset(tc, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001452 rval = qla2x00_enable_eft_trace(vha, tc_dma, EFT_NUM_BUFFERS);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001453 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001454 ql_log(ql_log_warn, vha, 0x00c2,
1455 "Unable to initialize EFT (%d).\n", rval);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001456 dma_free_coherent(&ha->pdev->dev, EFT_SIZE, tc,
1457 tc_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001458 goto cont_alloc;
1459 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08001460 ql_dbg(ql_dbg_init, vha, 0x00c3,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001461 "Allocated (%d KB) EFT ...\n", EFT_SIZE / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001462
1463 eft_size = EFT_SIZE;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001464 ha->eft_dma = tc_dma;
1465 ha->eft = tc;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001466 }
1467cont_alloc:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001468 req_q_size = req->length * sizeof(request_t);
1469 rsp_q_size = rsp->length * sizeof(response_t);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001470
1471 dump_size = offsetof(struct qla2xxx_fw_dump, isp);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001472 dump_size += fixed_size + mem_size + req_q_size + rsp_q_size + eft_size;
Andrew Vasquezbb99de62009-01-05 11:18:08 -08001473 ha->chain_offset = dump_size;
1474 dump_size += mq_size + fce_size;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001475
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001476 ha->fw_dump = vmalloc(dump_size);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001477 if (!ha->fw_dump) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001478 ql_log(ql_log_warn, vha, 0x00c4,
1479 "Unable to allocate (%d KB) for firmware dump.\n",
1480 dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001481
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07001482 if (ha->fce) {
1483 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
1484 ha->fce_dma);
1485 ha->fce = NULL;
1486 ha->fce_dma = 0;
1487 }
1488
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001489 if (ha->eft) {
1490 dma_free_coherent(&ha->pdev->dev, eft_size, ha->eft,
1491 ha->eft_dma);
1492 ha->eft = NULL;
1493 ha->eft_dma = 0;
1494 }
1495 return;
1496 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08001497 ql_dbg(ql_dbg_init, vha, 0x00c5,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001498 "Allocated (%d KB) for firmware dump.\n", dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001499
1500 ha->fw_dump_len = dump_size;
1501 ha->fw_dump->signature[0] = 'Q';
1502 ha->fw_dump->signature[1] = 'L';
1503 ha->fw_dump->signature[2] = 'G';
1504 ha->fw_dump->signature[3] = 'C';
1505 ha->fw_dump->version = __constant_htonl(1);
1506
1507 ha->fw_dump->fixed_size = htonl(fixed_size);
1508 ha->fw_dump->mem_size = htonl(mem_size);
1509 ha->fw_dump->req_q_size = htonl(req_q_size);
1510 ha->fw_dump->rsp_q_size = htonl(rsp_q_size);
1511
1512 ha->fw_dump->eft_size = htonl(eft_size);
1513 ha->fw_dump->eft_addr_l = htonl(LSD(ha->eft_dma));
1514 ha->fw_dump->eft_addr_h = htonl(MSD(ha->eft_dma));
1515
1516 ha->fw_dump->header_size =
1517 htonl(offsetof(struct qla2xxx_fw_dump, isp));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001518}
1519
Andrew Vasquez18e75552009-06-03 09:55:30 -07001520static int
1521qla81xx_mpi_sync(scsi_qla_host_t *vha)
1522{
1523#define MPS_MASK 0xe0
1524 int rval;
1525 uint16_t dc;
1526 uint32_t dw;
Andrew Vasquez18e75552009-06-03 09:55:30 -07001527
1528 if (!IS_QLA81XX(vha->hw))
1529 return QLA_SUCCESS;
1530
1531 rval = qla2x00_write_ram_word(vha, 0x7c00, 1);
1532 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001533 ql_log(ql_log_warn, vha, 0x0105,
1534 "Unable to acquire semaphore.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001535 goto done;
1536 }
1537
1538 pci_read_config_word(vha->hw->pdev, 0x54, &dc);
1539 rval = qla2x00_read_ram_word(vha, 0x7a15, &dw);
1540 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001541 ql_log(ql_log_warn, vha, 0x0067, "Unable to read sync.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001542 goto done_release;
1543 }
1544
1545 dc &= MPS_MASK;
1546 if (dc == (dw & MPS_MASK))
1547 goto done_release;
1548
1549 dw &= ~MPS_MASK;
1550 dw |= dc;
1551 rval = qla2x00_write_ram_word(vha, 0x7a15, dw);
1552 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001553 ql_log(ql_log_warn, vha, 0x0114, "Unable to gain sync.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001554 }
1555
1556done_release:
1557 rval = qla2x00_write_ram_word(vha, 0x7c00, 0);
1558 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001559 ql_log(ql_log_warn, vha, 0x006d,
1560 "Unable to release semaphore.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001561 }
1562
1563done:
1564 return rval;
1565}
1566
Chad Dupuis8d93f552013-01-30 03:34:37 -05001567int
1568qla2x00_alloc_outstanding_cmds(struct qla_hw_data *ha, struct req_que *req)
1569{
1570 /* Don't try to reallocate the array */
1571 if (req->outstanding_cmds)
1572 return QLA_SUCCESS;
1573
1574 if (!IS_FWI2_CAPABLE(ha) || (ha->mqiobase &&
1575 (ql2xmultique_tag || ql2xmaxqueues > 1)))
1576 req->num_outstanding_cmds = DEFAULT_OUTSTANDING_COMMANDS;
1577 else {
1578 if (ha->fw_xcb_count <= ha->fw_iocb_count)
1579 req->num_outstanding_cmds = ha->fw_xcb_count;
1580 else
1581 req->num_outstanding_cmds = ha->fw_iocb_count;
1582 }
1583
1584 req->outstanding_cmds = kzalloc(sizeof(srb_t *) *
1585 req->num_outstanding_cmds, GFP_KERNEL);
1586
1587 if (!req->outstanding_cmds) {
1588 /*
1589 * Try to allocate a minimal size just so we can get through
1590 * initialization.
1591 */
1592 req->num_outstanding_cmds = MIN_OUTSTANDING_COMMANDS;
1593 req->outstanding_cmds = kzalloc(sizeof(srb_t *) *
1594 req->num_outstanding_cmds, GFP_KERNEL);
1595
1596 if (!req->outstanding_cmds) {
1597 ql_log(ql_log_fatal, NULL, 0x0126,
1598 "Failed to allocate memory for "
1599 "outstanding_cmds for req_que %p.\n", req);
1600 req->num_outstanding_cmds = 0;
1601 return QLA_FUNCTION_FAILED;
1602 }
1603 }
1604
1605 return QLA_SUCCESS;
1606}
1607
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001608/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 * qla2x00_setup_chip() - Load and start RISC firmware.
1610 * @ha: HA context
1611 *
1612 * Returns 0 on success.
1613 */
1614static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001615qla2x00_setup_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001617 int rval;
1618 uint32_t srisc_address = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001619 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001620 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1621 unsigned long flags;
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001622 uint16_t fw_major_version;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001623
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001624 if (IS_P3P_TYPE(ha)) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07001625 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001626 if (rval == QLA_SUCCESS) {
1627 qla2x00_stop_firmware(vha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001628 goto enable_82xx_npiv;
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001629 } else
Giridhar Malavalib9637522010-05-28 15:08:15 -07001630 goto failed;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001631 }
1632
Andrew Vasquez3db06522008-01-31 12:33:49 -08001633 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1634 /* Disable SRAM, Instruction RAM and GP RAM parity. */
1635 spin_lock_irqsave(&ha->hardware_lock, flags);
1636 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x0));
1637 RD_REG_WORD(&reg->hccr);
1638 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Andrew Vasquez18e75552009-06-03 09:55:30 -07001641 qla81xx_mpi_sync(vha);
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 /* Load firmware sequences */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001644 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001645 if (rval == QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001646 ql_dbg(ql_dbg_init, vha, 0x00c9,
1647 "Verifying Checksum of loaded RISC code.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001649 rval = qla2x00_verify_checksum(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (rval == QLA_SUCCESS) {
1651 /* Start firmware execution. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001652 ql_dbg(ql_dbg_init, vha, 0x00ca,
1653 "Starting firmware.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001655 rval = qla2x00_execute_fw(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 /* Retrieve firmware information. */
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001657 if (rval == QLA_SUCCESS) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07001658enable_82xx_npiv:
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001659 fw_major_version = ha->fw_major_version;
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001660 if (IS_P3P_TYPE(ha))
Giridhar Malavali31731672011-08-16 11:31:54 -07001661 qla82xx_check_md_needed(vha);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001662 else
1663 rval = qla2x00_get_fw_version(vha);
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001664 if (rval != QLA_SUCCESS)
1665 goto failed;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001666 ha->flags.npiv_supported = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001667 if (IS_QLA2XXX_MIDTYPE(ha) &&
Mike Hernandez946fb892008-08-13 21:36:59 -07001668 (ha->fw_attributes & BIT_2)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001669 ha->flags.npiv_supported = 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001670 if ((!ha->max_npiv_vports) ||
1671 ((ha->max_npiv_vports + 1) %
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001672 MIN_MULTI_ID_FABRIC))
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001673 ha->max_npiv_vports =
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001674 MIN_MULTI_ID_FABRIC - 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001675 }
Andrew Vasquez24a08132009-03-24 09:08:16 -07001676 qla2x00_get_resource_cnts(vha, NULL,
Chad Dupuis8d93f552013-01-30 03:34:37 -05001677 &ha->fw_xcb_count, NULL, &ha->fw_iocb_count,
Andrew Vasquezf3a0a772009-10-13 15:16:49 -07001678 &ha->max_npiv_vports, NULL);
Andrew Vasquezd743de62009-03-24 09:08:15 -07001679
Chad Dupuis8d93f552013-01-30 03:34:37 -05001680 /*
1681 * Allocate the array of outstanding commands
1682 * now that we know the firmware resources.
1683 */
1684 rval = qla2x00_alloc_outstanding_cmds(ha,
1685 vha->req);
1686 if (rval != QLA_SUCCESS)
1687 goto failed;
1688
Saurav Kashyapbe5ea3c2011-11-18 09:02:11 -08001689 if (!fw_major_version && ql2xallocfwdump
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001690 && !(IS_P3P_TYPE(ha)))
Giridhar Malavali08de2842011-08-16 11:31:44 -07001691 qla2x00_alloc_fw_dump(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001694 ql_log(ql_log_fatal, vha, 0x00cd,
1695 "ISP Firmware failed checksum.\n");
1696 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
Andrew Vasquezc74d88a2012-08-22 14:21:19 -04001698 } else
1699 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Andrew Vasquez3db06522008-01-31 12:33:49 -08001701 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1702 /* Enable proper parity. */
1703 spin_lock_irqsave(&ha->hardware_lock, flags);
1704 if (IS_QLA2300(ha))
1705 /* SRAM parity */
1706 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x1);
1707 else
1708 /* SRAM, Instruction RAM and GP RAM parity */
1709 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x7);
1710 RD_REG_WORD(&reg->hccr);
1711 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1712 }
1713
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001714 if (IS_QLA83XX(ha))
1715 goto skip_fac_check;
1716
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001717 if (rval == QLA_SUCCESS && IS_FAC_REQUIRED(ha)) {
1718 uint32_t size;
1719
1720 rval = qla81xx_fac_get_sector_size(vha, &size);
1721 if (rval == QLA_SUCCESS) {
1722 ha->flags.fac_supported = 1;
1723 ha->fdt_block_size = size << 2;
1724 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001725 ql_log(ql_log_warn, vha, 0x00ce,
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001726 "Unsupported FAC firmware (%d.%02d.%02d).\n",
1727 ha->fw_major_version, ha->fw_minor_version,
1728 ha->fw_subminor_version);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001729skip_fac_check:
1730 if (IS_QLA83XX(ha)) {
1731 ha->flags.fac_supported = 0;
1732 rval = QLA_SUCCESS;
1733 }
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001734 }
1735 }
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001736failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001738 ql_log(ql_log_fatal, vha, 0x00cf,
1739 "Setup chip ****FAILED****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
1741
1742 return (rval);
1743}
1744
1745/**
1746 * qla2x00_init_response_q_entries() - Initializes response queue entries.
1747 * @ha: HA context
1748 *
1749 * Beginning of request ring has initialization control block already built
1750 * by nvram config routine.
1751 *
1752 * Returns 0 on success.
1753 */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001754void
1755qla2x00_init_response_q_entries(struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
1757 uint16_t cnt;
1758 response_t *pkt;
1759
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001760 rsp->ring_ptr = rsp->ring;
1761 rsp->ring_index = 0;
1762 rsp->status_srb = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001763 pkt = rsp->ring_ptr;
1764 for (cnt = 0; cnt < rsp->length; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 pkt->signature = RESPONSE_PROCESSED;
1766 pkt++;
1767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
1770/**
1771 * qla2x00_update_fw_options() - Read and process firmware options.
1772 * @ha: HA context
1773 *
1774 * Returns 0 on success.
1775 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001776void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001777qla2x00_update_fw_options(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
1779 uint16_t swing, emphasis, tx_sens, rx_sens;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001780 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 memset(ha->fw_options, 0, sizeof(ha->fw_options));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001783 qla2x00_get_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1786 return;
1787
1788 /* Serial Link options. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001789 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x0115,
1790 "Serial link options.\n");
1791 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0109,
1792 (uint8_t *)&ha->fw_seriallink_options,
1793 sizeof(ha->fw_seriallink_options));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1796 if (ha->fw_seriallink_options[3] & BIT_2) {
1797 ha->fw_options[1] |= FO1_SET_EMPHASIS_SWING;
1798
1799 /* 1G settings */
1800 swing = ha->fw_seriallink_options[2] & (BIT_2 | BIT_1 | BIT_0);
1801 emphasis = (ha->fw_seriallink_options[2] &
1802 (BIT_4 | BIT_3)) >> 3;
1803 tx_sens = ha->fw_seriallink_options[0] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001804 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 rx_sens = (ha->fw_seriallink_options[0] &
1806 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1807 ha->fw_options[10] = (emphasis << 14) | (swing << 8);
1808 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1809 if (rx_sens == 0x0)
1810 rx_sens = 0x3;
1811 ha->fw_options[10] |= (tx_sens << 4) | rx_sens;
1812 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1813 ha->fw_options[10] |= BIT_5 |
1814 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1815 (tx_sens & (BIT_1 | BIT_0));
1816
1817 /* 2G settings */
1818 swing = (ha->fw_seriallink_options[2] &
1819 (BIT_7 | BIT_6 | BIT_5)) >> 5;
1820 emphasis = ha->fw_seriallink_options[3] & (BIT_1 | BIT_0);
1821 tx_sens = ha->fw_seriallink_options[1] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001822 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 rx_sens = (ha->fw_seriallink_options[1] &
1824 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1825 ha->fw_options[11] = (emphasis << 14) | (swing << 8);
1826 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1827 if (rx_sens == 0x0)
1828 rx_sens = 0x3;
1829 ha->fw_options[11] |= (tx_sens << 4) | rx_sens;
1830 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1831 ha->fw_options[11] |= BIT_5 |
1832 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1833 (tx_sens & (BIT_1 | BIT_0));
1834 }
1835
1836 /* FCP2 options. */
1837 /* Return command IOCBs without waiting for an ABTS to complete. */
1838 ha->fw_options[3] |= BIT_13;
1839
1840 /* LED scheme. */
1841 if (ha->flags.enable_led_scheme)
1842 ha->fw_options[2] |= BIT_12;
1843
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08001844 /* Detect ISP6312. */
1845 if (IS_QLA6312(ha))
1846 ha->fw_options[2] |= BIT_13;
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 /* Update firmware options. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001849 qla2x00_set_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001852void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001853qla24xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001854{
1855 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001856 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001857
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001858 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07001859 return;
1860
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001861 /* Update Serial Link options. */
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001862 if ((le16_to_cpu(ha->fw_seriallink_options24[0]) & BIT_0) == 0)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001863 return;
1864
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001865 rval = qla2x00_set_serdes_params(vha,
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001866 le16_to_cpu(ha->fw_seriallink_options24[1]),
1867 le16_to_cpu(ha->fw_seriallink_options24[2]),
1868 le16_to_cpu(ha->fw_seriallink_options24[3]));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001869 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001870 ql_log(ql_log_warn, vha, 0x0104,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001871 "Unable to update Serial Link options (%x).\n", rval);
1872 }
1873}
1874
1875void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001876qla2x00_config_rings(struct scsi_qla_host *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001877{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001878 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001879 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001880 struct req_que *req = ha->req_q_map[0];
1881 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001882
1883 /* Setup ring parameters in initialization control block. */
1884 ha->init_cb->request_q_outpointer = __constant_cpu_to_le16(0);
1885 ha->init_cb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001886 ha->init_cb->request_q_length = cpu_to_le16(req->length);
1887 ha->init_cb->response_q_length = cpu_to_le16(rsp->length);
1888 ha->init_cb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1889 ha->init_cb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1890 ha->init_cb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1891 ha->init_cb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001892
1893 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), 0);
1894 WRT_REG_WORD(ISP_REQ_Q_OUT(ha, reg), 0);
1895 WRT_REG_WORD(ISP_RSP_Q_IN(ha, reg), 0);
1896 WRT_REG_WORD(ISP_RSP_Q_OUT(ha, reg), 0);
1897 RD_REG_WORD(ISP_RSP_Q_OUT(ha, reg)); /* PCI Posting. */
1898}
1899
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001900void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001901qla24xx_config_rings(struct scsi_qla_host *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001902{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001903 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001904 device_reg_t __iomem *reg = ISP_QUE_REG(ha, 0);
1905 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1906 struct qla_msix_entry *msix;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001907 struct init_cb_24xx *icb;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001908 uint16_t rid = 0;
1909 struct req_que *req = ha->req_q_map[0];
1910 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001911
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001912 /* Setup ring parameters in initialization control block. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001913 icb = (struct init_cb_24xx *)ha->init_cb;
1914 icb->request_q_outpointer = __constant_cpu_to_le16(0);
1915 icb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001916 icb->request_q_length = cpu_to_le16(req->length);
1917 icb->response_q_length = cpu_to_le16(rsp->length);
1918 icb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1919 icb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1920 icb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1921 icb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001922
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001923 /* Setup ATIO queue dma pointers for target mode */
1924 icb->atio_q_inpointer = __constant_cpu_to_le16(0);
1925 icb->atio_q_length = cpu_to_le16(ha->tgt.atio_q_length);
1926 icb->atio_q_address[0] = cpu_to_le32(LSD(ha->tgt.atio_dma));
1927 icb->atio_q_address[1] = cpu_to_le32(MSD(ha->tgt.atio_dma));
1928
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001929 if (ha->mqenable || IS_QLA83XX(ha)) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001930 icb->qos = __constant_cpu_to_le16(QLA_DEFAULT_QUE_QOS);
1931 icb->rid = __constant_cpu_to_le16(rid);
1932 if (ha->flags.msix_enabled) {
1933 msix = &ha->msix_entries[1];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001934 ql_dbg(ql_dbg_init, vha, 0x00fd,
1935 "Registering vector 0x%x for base que.\n",
1936 msix->entry);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001937 icb->msix = cpu_to_le16(msix->entry);
1938 }
1939 /* Use alternate PCI bus number */
1940 if (MSB(rid))
1941 icb->firmware_options_2 |=
1942 __constant_cpu_to_le32(BIT_19);
1943 /* Use alternate PCI devfn */
1944 if (LSB(rid))
1945 icb->firmware_options_2 |=
1946 __constant_cpu_to_le32(BIT_18);
1947
Anirban Chakraborty31557542009-12-02 10:36:55 -08001948 /* Use Disable MSIX Handshake mode for capable adapters */
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001949 if ((ha->fw_attributes & BIT_6) && (IS_MSIX_NACK_CAPABLE(ha)) &&
1950 (ha->flags.msix_enabled)) {
Anirban Chakraborty31557542009-12-02 10:36:55 -08001951 icb->firmware_options_2 &=
1952 __constant_cpu_to_le32(~BIT_22);
1953 ha->flags.disable_msix_handshake = 1;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001954 ql_dbg(ql_dbg_init, vha, 0x00fe,
1955 "MSIX Handshake Disable Mode turned on.\n");
Anirban Chakraborty31557542009-12-02 10:36:55 -08001956 } else {
1957 icb->firmware_options_2 |=
1958 __constant_cpu_to_le32(BIT_22);
1959 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001960 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_23);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001961
1962 WRT_REG_DWORD(&reg->isp25mq.req_q_in, 0);
1963 WRT_REG_DWORD(&reg->isp25mq.req_q_out, 0);
1964 WRT_REG_DWORD(&reg->isp25mq.rsp_q_in, 0);
1965 WRT_REG_DWORD(&reg->isp25mq.rsp_q_out, 0);
1966 } else {
1967 WRT_REG_DWORD(&reg->isp24.req_q_in, 0);
1968 WRT_REG_DWORD(&reg->isp24.req_q_out, 0);
1969 WRT_REG_DWORD(&reg->isp24.rsp_q_in, 0);
1970 WRT_REG_DWORD(&reg->isp24.rsp_q_out, 0);
1971 }
Arun Easiaa230bc2013-01-30 03:34:39 -05001972 qlt_24xx_config_rings(vha);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001973
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001974 /* PCI posting */
1975 RD_REG_DWORD(&ioreg->hccr);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001976}
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/**
1979 * qla2x00_init_rings() - Initializes firmware.
1980 * @ha: HA context
1981 *
1982 * Beginning of request ring has initialization control block already built
1983 * by nvram config routine.
1984 *
1985 * Returns 0 on success.
1986 */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001987int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001988qla2x00_init_rings(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989{
1990 int rval;
1991 unsigned long flags = 0;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001992 int cnt, que;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001993 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001994 struct req_que *req;
1995 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001996 struct mid_init_cb_24xx *mid_init_cb =
1997 (struct mid_init_cb_24xx *) ha->init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999 spin_lock_irqsave(&ha->hardware_lock, flags);
2000
2001 /* Clear outstanding commands array. */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002002 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002003 req = ha->req_q_map[que];
2004 if (!req)
2005 continue;
Chad Dupuis8d93f552013-01-30 03:34:37 -05002006 for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++)
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002007 req->outstanding_cmds[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002009 req->current_outstanding_cmd = 1;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002010
2011 /* Initialize firmware. */
2012 req->ring_ptr = req->ring;
2013 req->ring_index = 0;
2014 req->cnt = req->length;
2015 }
2016
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002017 for (que = 0; que < ha->max_rsp_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002018 rsp = ha->rsp_q_map[que];
2019 if (!rsp)
2020 continue;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002021 /* Initialize response queue entries */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002022 if (IS_QLAFX00(ha))
2023 qlafx00_init_response_q_entries(rsp);
2024 else
2025 qla2x00_init_response_q_entries(rsp);
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002028 ha->tgt.atio_ring_ptr = ha->tgt.atio_ring;
2029 ha->tgt.atio_ring_index = 0;
2030 /* Initialize ATIO queue entries */
2031 qlt_init_atio_q_entries(vha);
2032
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002033 ha->isp_ops->config_rings(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2036
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002037 ql_dbg(ql_dbg_init, vha, 0x00d1, "Issue init firmware.\n");
2038
2039 if (IS_QLAFX00(ha)) {
2040 rval = qlafx00_init_firmware(vha, ha->init_cb_size);
2041 goto next_check;
2042 }
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 /* Update any ISP specific firmware options before initialization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002045 ha->isp_ops->update_fw_options(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08002047 if (ha->flags.npiv_supported) {
Saurav Kashyap45980cc2012-08-22 14:21:21 -04002048 if (ha->operating_mode == LOOP && !IS_CNA_CAPABLE(ha))
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08002049 ha->max_npiv_vports = MIN_MULTI_ID_FABRIC - 1;
Seokmann Juc48339d2008-01-17 09:02:19 -08002050 mid_init_cb->count = cpu_to_le16(ha->max_npiv_vports);
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08002051 }
2052
Andrew Vasquez24a08132009-03-24 09:08:16 -07002053 if (IS_FWI2_CAPABLE(ha)) {
2054 mid_init_cb->options = __constant_cpu_to_le16(BIT_1);
2055 mid_init_cb->init_cb.execution_throttle =
2056 cpu_to_le16(ha->fw_xcb_count);
2057 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002058
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002059 rval = qla2x00_init_firmware(vha, ha->init_cb_size);
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002060next_check:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002062 ql_log(ql_log_fatal, vha, 0x00d2,
2063 "Init Firmware **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002065 ql_dbg(ql_dbg_init, vha, 0x00d3,
2066 "Init Firmware -- success.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068
2069 return (rval);
2070}
2071
2072/**
2073 * qla2x00_fw_ready() - Waits for firmware ready.
2074 * @ha: HA context
2075 *
2076 * Returns 0 on success.
2077 */
2078static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002079qla2x00_fw_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
2081 int rval;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002082 unsigned long wtime, mtime, cs84xx_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 uint16_t min_wait; /* Minimum wait time if loop is down */
2084 uint16_t wait_time; /* Wait time if loop is coming ready */
Andrew Vasquez656e8912009-06-03 09:55:29 -07002085 uint16_t state[5];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002086 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002088 if (IS_QLAFX00(vha->hw))
2089 return qlafx00_fw_ready(vha);
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 rval = QLA_SUCCESS;
2092
2093 /* 20 seconds for loop down. */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002094 min_wait = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 /*
2097 * Firmware should take at most one RATOV to login, plus 5 seconds for
2098 * our own processing.
2099 */
2100 if ((wait_time = (ha->retry_count*ha->login_timeout) + 5) < min_wait) {
2101 wait_time = min_wait;
2102 }
2103
2104 /* Min wait time if loop down */
2105 mtime = jiffies + (min_wait * HZ);
2106
2107 /* wait time before firmware ready */
2108 wtime = jiffies + (wait_time * HZ);
2109
2110 /* Wait for ISP to finish LIP */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002111 if (!vha->flags.init_done)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002112 ql_log(ql_log_info, vha, 0x801e,
2113 "Waiting for LIP to complete.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 do {
Andrew Vasquez5b939032012-11-21 02:40:26 -05002116 memset(state, -1, sizeof(state));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002117 rval = qla2x00_get_firmware_state(vha, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (rval == QLA_SUCCESS) {
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002119 if (state[0] < FSTATE_LOSS_OF_SYNC) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002120 vha->device_flags &= ~DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002122 if (IS_QLA84XX(ha) && state[0] != FSTATE_READY) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002123 ql_dbg(ql_dbg_taskm, vha, 0x801f,
2124 "fw_state=%x 84xx=%x.\n", state[0],
2125 state[2]);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002126 if ((state[2] & FSTATE_LOGGED_IN) &&
2127 (state[2] & FSTATE_WAITING_FOR_VERIFY)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002128 ql_dbg(ql_dbg_taskm, vha, 0x8028,
2129 "Sending verify iocb.\n");
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002130
2131 cs84xx_time = jiffies;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002132 rval = qla84xx_init_chip(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002133 if (rval != QLA_SUCCESS) {
2134 ql_log(ql_log_warn,
Chad Dupuiscfb09192011-11-18 09:03:07 -08002135 vha, 0x8007,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002136 "Init chip failed.\n");
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002137 break;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002138 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002139
2140 /* Add time taken to initialize. */
2141 cs84xx_time = jiffies - cs84xx_time;
2142 wtime += cs84xx_time;
2143 mtime += cs84xx_time;
Chad Dupuiscfb09192011-11-18 09:03:07 -08002144 ql_dbg(ql_dbg_taskm, vha, 0x8008,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002145 "Increasing wait time by %ld. "
2146 "New time %ld.\n", cs84xx_time,
2147 wtime);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002148 }
2149 } else if (state[0] == FSTATE_READY) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002150 ql_dbg(ql_dbg_taskm, vha, 0x8037,
2151 "F/W Ready - OK.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002153 qla2x00_get_retry_cnt(vha, &ha->retry_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 &ha->login_timeout, &ha->r_a_tov);
2155
2156 rval = QLA_SUCCESS;
2157 break;
2158 }
2159
2160 rval = QLA_FUNCTION_FAILED;
2161
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002162 if (atomic_read(&vha->loop_down_timer) &&
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002163 state[0] != FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 /* Loop down. Timeout on min_wait for states
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002165 * other than Wait for Login.
2166 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (time_after_eq(jiffies, mtime)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002168 ql_log(ql_log_info, vha, 0x8038,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 "Cable is unplugged...\n");
2170
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002171 vha->device_flags |= DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 break;
2173 }
2174 }
2175 } else {
2176 /* Mailbox cmd failed. Timeout on min_wait. */
Santosh Vernekarcdbb0a4f2010-05-28 15:08:25 -07002177 if (time_after_eq(jiffies, mtime) ||
Giridhar Malavali71905752011-02-23 15:27:10 -08002178 ha->flags.isp82xx_fw_hung)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 break;
2180 }
2181
2182 if (time_after_eq(jiffies, wtime))
2183 break;
2184
2185 /* Delay for a while */
2186 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 } while (1);
2188
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002189 ql_dbg(ql_dbg_taskm, vha, 0x803a,
2190 "fw_state=%x (%x, %x, %x, %x) " "curr time=%lx.\n", state[0],
2191 state[1], state[2], state[3], state[4], jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Chad Dupuiscfb09192011-11-18 09:03:07 -08002193 if (rval && !(vha->device_flags & DFLG_NO_CABLE)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002194 ql_log(ql_log_warn, vha, 0x803b,
2195 "Firmware ready **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 }
2197
2198 return (rval);
2199}
2200
2201/*
2202* qla2x00_configure_hba
2203* Setup adapter context.
2204*
2205* Input:
2206* ha = adapter state pointer.
2207*
2208* Returns:
2209* 0 = success
2210*
2211* Context:
2212* Kernel context.
2213*/
2214static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002215qla2x00_configure_hba(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
2217 int rval;
2218 uint16_t loop_id;
2219 uint16_t topo;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002220 uint16_t sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 uint8_t al_pa;
2222 uint8_t area;
2223 uint8_t domain;
2224 char connect_type[22];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002225 struct qla_hw_data *ha = vha->hw;
Jiri Kosinaf24b5cb2012-10-08 09:23:54 +02002226 unsigned long flags;
Joe Carnuccio61e1b262013-02-08 01:57:48 -05002227 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229 /* Get host addresses. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002230 rval = qla2x00_get_adapter_id(vha,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002231 &loop_id, &al_pa, &area, &domain, &topo, &sw_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002233 if (LOOP_TRANSITION(vha) || atomic_read(&ha->loop_down_timer) ||
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002234 IS_CNA_CAPABLE(ha) ||
Ravi Anand33135aa2005-11-08 14:37:20 -08002235 (rval == QLA_COMMAND_ERROR && loop_id == 0x7)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002236 ql_dbg(ql_dbg_disc, vha, 0x2008,
2237 "Loop is in a transition state.\n");
Ravi Anand33135aa2005-11-08 14:37:20 -08002238 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002239 ql_log(ql_log_warn, vha, 0x2009,
2240 "Unable to get host loop ID.\n");
Joe Carnuccio61e1b262013-02-08 01:57:48 -05002241 if (IS_FWI2_CAPABLE(ha) && (vha == base_vha) &&
2242 (rval == QLA_COMMAND_ERROR && loop_id == 0x1b)) {
2243 ql_log(ql_log_warn, vha, 0x1151,
2244 "Doing link init.\n");
2245 if (qla24xx_link_initialize(vha) == QLA_SUCCESS)
2246 return rval;
2247 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002248 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Ravi Anand33135aa2005-11-08 14:37:20 -08002249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 return (rval);
2251 }
2252
2253 if (topo == 4) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002254 ql_log(ql_log_info, vha, 0x200a,
2255 "Cannot get topology - retrying.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 return (QLA_FUNCTION_FAILED);
2257 }
2258
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002259 vha->loop_id = loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 /* initialize */
2262 ha->min_external_loopid = SNS_FIRST_LOOP_ID;
2263 ha->operating_mode = LOOP;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002264 ha->switch_cap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
2266 switch (topo) {
2267 case 0:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002268 ql_dbg(ql_dbg_disc, vha, 0x200b, "HBA in NL topology.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 ha->current_topology = ISP_CFG_NL;
2270 strcpy(connect_type, "(Loop)");
2271 break;
2272
2273 case 1:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002274 ql_dbg(ql_dbg_disc, vha, 0x200c, "HBA in FL topology.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002275 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 ha->current_topology = ISP_CFG_FL;
2277 strcpy(connect_type, "(FL_Port)");
2278 break;
2279
2280 case 2:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002281 ql_dbg(ql_dbg_disc, vha, 0x200d, "HBA in N P2P topology.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 ha->operating_mode = P2P;
2283 ha->current_topology = ISP_CFG_N;
2284 strcpy(connect_type, "(N_Port-to-N_Port)");
2285 break;
2286
2287 case 3:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002288 ql_dbg(ql_dbg_disc, vha, 0x200e, "HBA in F P2P topology.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002289 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 ha->operating_mode = P2P;
2291 ha->current_topology = ISP_CFG_F;
2292 strcpy(connect_type, "(F_Port)");
2293 break;
2294
2295 default:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002296 ql_dbg(ql_dbg_disc, vha, 0x200f,
2297 "HBA in unknown topology %x, using NL.\n", topo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 ha->current_topology = ISP_CFG_NL;
2299 strcpy(connect_type, "(Loop)");
2300 break;
2301 }
2302
2303 /* Save Host port and loop ID. */
2304 /* byte order - Big Endian */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002305 vha->d_id.b.domain = domain;
2306 vha->d_id.b.area = area;
2307 vha->d_id.b.al_pa = al_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Jiri Kosinaf24b5cb2012-10-08 09:23:54 +02002309 spin_lock_irqsave(&ha->vport_slock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002310 qlt_update_vp_map(vha, SET_AL_PA);
Jiri Kosinaf24b5cb2012-10-08 09:23:54 +02002311 spin_unlock_irqrestore(&ha->vport_slock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002312
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002313 if (!vha->flags.init_done)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002314 ql_log(ql_log_info, vha, 0x2010,
2315 "Topology - %s, Host Loop address 0x%x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002316 connect_type, vha->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 return(rval);
2319}
2320
Giridhar Malavalia9083012010-04-12 17:59:55 -07002321inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002322qla2x00_set_model_info(scsi_qla_host_t *vha, uint8_t *model, size_t len,
2323 char *def)
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002324{
2325 char *st, *en;
2326 uint16_t index;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002327 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezab671142009-08-25 11:36:17 -07002328 int use_tbl = !IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002329 !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002330
2331 if (memcmp(model, BINZERO, len) != 0) {
2332 strncpy(ha->model_number, model, len);
2333 st = en = ha->model_number;
2334 en += len - 1;
2335 while (en > st) {
2336 if (*en != 0x20 && *en != 0x00)
2337 break;
2338 *en-- = '\0';
2339 }
2340
2341 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002342 if (use_tbl &&
2343 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002344 index < QLA_MODEL_NAMES)
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002345 strncpy(ha->model_desc,
2346 qla2x00_model_name[index * 2 + 1],
2347 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002348 } else {
2349 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002350 if (use_tbl &&
2351 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002352 index < QLA_MODEL_NAMES) {
2353 strcpy(ha->model_number,
2354 qla2x00_model_name[index * 2]);
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002355 strncpy(ha->model_desc,
2356 qla2x00_model_name[index * 2 + 1],
2357 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002358 } else {
2359 strcpy(ha->model_number, def);
2360 }
2361 }
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002362 if (IS_FWI2_CAPABLE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002363 qla2xxx_get_vpd_field(vha, "\x82", ha->model_desc,
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002364 sizeof(ha->model_desc));
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002365}
2366
David Miller4e08df32007-04-16 12:37:43 -07002367/* On sparc systems, obtain port and node WWN from firmware
2368 * properties.
2369 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002370static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t *vha, nvram_t *nv)
David Miller4e08df32007-04-16 12:37:43 -07002371{
2372#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002373 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07002374 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07002375 struct device_node *dp = pci_device_to_OF_node(pdev);
2376 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07002377 int len;
2378
2379 val = of_get_property(dp, "port-wwn", &len);
2380 if (val && len >= WWN_SIZE)
2381 memcpy(nv->port_name, val, WWN_SIZE);
2382
2383 val = of_get_property(dp, "node-wwn", &len);
2384 if (val && len >= WWN_SIZE)
2385 memcpy(nv->node_name, val, WWN_SIZE);
2386#endif
2387}
2388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389/*
2390* NVRAM configuration for ISP 2xxx
2391*
2392* Input:
2393* ha = adapter block pointer.
2394*
2395* Output:
2396* initialization control block in response_ring
2397* host adapters parameters in host adapter block
2398*
2399* Returns:
2400* 0 = success.
2401*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002402int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002403qla2x00_nvram_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
David Miller4e08df32007-04-16 12:37:43 -07002405 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002406 uint8_t chksum = 0;
2407 uint16_t cnt;
2408 uint8_t *dptr1, *dptr2;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002409 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002410 init_cb_t *icb = ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07002411 nvram_t *nv = ha->nvram;
2412 uint8_t *ptr = ha->nvram;
Andrew Vasquez3d716442005-07-06 10:30:26 -07002413 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
David Miller4e08df32007-04-16 12:37:43 -07002415 rval = QLA_SUCCESS;
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 /* Determine NVRAM starting address. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002418 ha->nvram_size = sizeof(nvram_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 ha->nvram_base = 0;
2420 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha))
2421 if ((RD_REG_WORD(&reg->ctrl_status) >> 14) == 1)
2422 ha->nvram_base = 0x80;
2423
2424 /* Get NVRAM data and calculate checksum. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002425 ha->isp_ops->read_nvram(vha, ptr, ha->nvram_base, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002426 for (cnt = 0, chksum = 0; cnt < ha->nvram_size; cnt++)
2427 chksum += *ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002429 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x010f,
2430 "Contents of NVRAM.\n");
2431 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0110,
2432 (uint8_t *)nv, ha->nvram_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
2434 /* Bad NVRAM data, set defaults parameters. */
2435 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' ||
2436 nv->id[2] != 'P' || nv->id[3] != ' ' || nv->nvram_version < 1) {
2437 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002438 ql_log(ql_log_warn, vha, 0x0064,
Raul Porcel9e336522012-05-15 14:34:08 -04002439 "Inconsistent NVRAM "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002440 "detected: checksum=0x%x id=%c version=0x%x.\n",
2441 chksum, nv->id[0], nv->nvram_version);
2442 ql_log(ql_log_warn, vha, 0x0065,
2443 "Falling back to "
2444 "functioning (yet invalid -- WWPN) defaults.\n");
David Miller4e08df32007-04-16 12:37:43 -07002445
2446 /*
2447 * Set default initialization control block.
2448 */
2449 memset(nv, 0, ha->nvram_size);
2450 nv->parameter_block_version = ICB_VERSION;
2451
2452 if (IS_QLA23XX(ha)) {
2453 nv->firmware_options[0] = BIT_2 | BIT_1;
2454 nv->firmware_options[1] = BIT_7 | BIT_5;
2455 nv->add_firmware_options[0] = BIT_5;
2456 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2457 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2458 nv->special_options[1] = BIT_7;
2459 } else if (IS_QLA2200(ha)) {
2460 nv->firmware_options[0] = BIT_2 | BIT_1;
2461 nv->firmware_options[1] = BIT_7 | BIT_5;
2462 nv->add_firmware_options[0] = BIT_5;
2463 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2464 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2465 } else if (IS_QLA2100(ha)) {
2466 nv->firmware_options[0] = BIT_3 | BIT_1;
2467 nv->firmware_options[1] = BIT_5;
2468 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2469 }
2470
2471 nv->max_iocb_allocation = __constant_cpu_to_le16(256);
2472 nv->execution_throttle = __constant_cpu_to_le16(16);
2473 nv->retry_count = 8;
2474 nv->retry_delay = 1;
2475
2476 nv->port_name[0] = 33;
2477 nv->port_name[3] = 224;
2478 nv->port_name[4] = 139;
2479
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002480 qla2xxx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07002481
2482 nv->login_timeout = 4;
2483
2484 /*
2485 * Set default host adapter parameters
2486 */
2487 nv->host_p[1] = BIT_2;
2488 nv->reset_delay = 5;
2489 nv->port_down_retry_count = 8;
2490 nv->max_luns_per_target = __constant_cpu_to_le16(8);
2491 nv->link_down_timeout = 60;
2492
2493 rval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 }
2495
2496#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
2497 /*
2498 * The SN2 does not provide BIOS emulation which means you can't change
2499 * potentially bogus BIOS settings. Force the use of default settings
2500 * for link rate and frame size. Hope that the rest of the settings
2501 * are valid.
2502 */
2503 if (ia64_platform_is("sn2")) {
2504 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2505 if (IS_QLA23XX(ha))
2506 nv->special_options[1] = BIT_7;
2507 }
2508#endif
2509
2510 /* Reset Initialization control block */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002511 memset(icb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513 /*
2514 * Setup driver NVRAM options.
2515 */
2516 nv->firmware_options[0] |= (BIT_6 | BIT_1);
2517 nv->firmware_options[0] &= ~(BIT_5 | BIT_4);
2518 nv->firmware_options[1] |= (BIT_5 | BIT_0);
2519 nv->firmware_options[1] &= ~BIT_4;
2520
2521 if (IS_QLA23XX(ha)) {
2522 nv->firmware_options[0] |= BIT_2;
2523 nv->firmware_options[0] &= ~BIT_3;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002524 nv->special_options[0] &= ~BIT_6;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002525 nv->add_firmware_options[1] |= BIT_5 | BIT_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 if (IS_QLA2300(ha)) {
2528 if (ha->fb_rev == FPM_2310) {
2529 strcpy(ha->model_number, "QLA2310");
2530 } else {
2531 strcpy(ha->model_number, "QLA2300");
2532 }
2533 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002534 qla2x00_set_model_info(vha, nv->model_number,
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002535 sizeof(nv->model_number), "QLA23xx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 }
2537 } else if (IS_QLA2200(ha)) {
2538 nv->firmware_options[0] |= BIT_2;
2539 /*
2540 * 'Point-to-point preferred, else loop' is not a safe
2541 * connection mode setting.
2542 */
2543 if ((nv->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) ==
2544 (BIT_5 | BIT_4)) {
2545 /* Force 'loop preferred, else point-to-point'. */
2546 nv->add_firmware_options[0] &= ~(BIT_6 | BIT_5 | BIT_4);
2547 nv->add_firmware_options[0] |= BIT_5;
2548 }
2549 strcpy(ha->model_number, "QLA22xx");
2550 } else /*if (IS_QLA2100(ha))*/ {
2551 strcpy(ha->model_number, "QLA2100");
2552 }
2553
2554 /*
2555 * Copy over NVRAM RISC parameter block to initialization control block.
2556 */
2557 dptr1 = (uint8_t *)icb;
2558 dptr2 = (uint8_t *)&nv->parameter_block_version;
2559 cnt = (uint8_t *)&icb->request_q_outpointer - (uint8_t *)&icb->version;
2560 while (cnt--)
2561 *dptr1++ = *dptr2++;
2562
2563 /* Copy 2nd half. */
2564 dptr1 = (uint8_t *)icb->add_firmware_options;
2565 cnt = (uint8_t *)icb->reserved_3 - (uint8_t *)icb->add_firmware_options;
2566 while (cnt--)
2567 *dptr1++ = *dptr2++;
2568
Andrew Vasquez5341e862006-05-17 15:09:16 -07002569 /* Use alternate WWN? */
2570 if (nv->host_p[1] & BIT_7) {
2571 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
2572 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
2573 }
2574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 /* Prepare nodename */
2576 if ((icb->firmware_options[1] & BIT_6) == 0) {
2577 /*
2578 * Firmware will apply the following mask if the nodename was
2579 * not provided.
2580 */
2581 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
2582 icb->node_name[0] &= 0xF0;
2583 }
2584
2585 /*
2586 * Set host adapter parameters.
2587 */
Saurav Kashyap3ce88662011-07-14 12:00:12 -07002588
2589 /*
2590 * BIT_7 in the host-parameters section allows for modification to
2591 * internal driver logging.
2592 */
Andrew Vasquez01819442006-06-23 16:11:10 -07002593 if (nv->host_p[0] & BIT_7)
Chad Dupuiscfb09192011-11-18 09:03:07 -08002594 ql2xextended_error_logging = QL_DBG_DEFAULT1_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 ha->flags.disable_risc_code_load = ((nv->host_p[0] & BIT_4) ? 1 : 0);
2596 /* Always load RISC code on non ISP2[12]00 chips. */
2597 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
2598 ha->flags.disable_risc_code_load = 0;
2599 ha->flags.enable_lip_reset = ((nv->host_p[1] & BIT_1) ? 1 : 0);
2600 ha->flags.enable_lip_full_login = ((nv->host_p[1] & BIT_2) ? 1 : 0);
2601 ha->flags.enable_target_reset = ((nv->host_p[1] & BIT_3) ? 1 : 0);
Andrew Vasquez06c22bd2005-08-26 19:09:00 -07002602 ha->flags.enable_led_scheme = (nv->special_options[1] & BIT_4) ? 1 : 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07002603 ha->flags.disable_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 ha->operating_mode =
2606 (icb->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) >> 4;
2607
2608 memcpy(ha->fw_seriallink_options, nv->seriallink_options,
2609 sizeof(ha->fw_seriallink_options));
2610
2611 /* save HBA serial number */
2612 ha->serial0 = icb->port_name[5];
2613 ha->serial1 = icb->port_name[6];
2614 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002615 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
2616 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
2618 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
2619
2620 ha->retry_count = nv->retry_count;
2621
2622 /* Set minimum login_timeout to 4 seconds. */
Andrew Vasquez5b914902010-05-28 15:08:30 -07002623 if (nv->login_timeout != ql2xlogintimeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 nv->login_timeout = ql2xlogintimeout;
2625 if (nv->login_timeout < 4)
2626 nv->login_timeout = 4;
2627 ha->login_timeout = nv->login_timeout;
2628 icb->login_timeout = nv->login_timeout;
2629
Andrew Vasquez00a537b2008-02-28 14:06:11 -08002630 /* Set minimum RATOV to 100 tenths of a second. */
2631 ha->r_a_tov = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 ha->loop_reset_delay = nv->reset_delay;
2634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 /* Link Down Timeout = 0:
2636 *
2637 * When Port Down timer expires we will start returning
2638 * I/O's to OS with "DID_NO_CONNECT".
2639 *
2640 * Link Down Timeout != 0:
2641 *
2642 * The driver waits for the link to come up after link down
2643 * before returning I/Os to OS with "DID_NO_CONNECT".
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002644 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (nv->link_down_timeout == 0) {
2646 ha->loop_down_abort_time =
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002647 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 } else {
2649 ha->link_down_timeout = nv->link_down_timeout;
2650 ha->loop_down_abort_time =
2651 (LOOP_DOWN_TIME - ha->link_down_timeout);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 /*
2655 * Need enough time to try and get the port back.
2656 */
2657 ha->port_down_retry_count = nv->port_down_retry_count;
2658 if (qlport_down_retry)
2659 ha->port_down_retry_count = qlport_down_retry;
2660 /* Set login_retry_count */
2661 ha->login_retry_count = nv->retry_count;
2662 if (ha->port_down_retry_count == nv->port_down_retry_count &&
2663 ha->port_down_retry_count > 3)
2664 ha->login_retry_count = ha->port_down_retry_count;
2665 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
2666 ha->login_retry_count = ha->port_down_retry_count;
2667 if (ql2xloginretrycount)
2668 ha->login_retry_count = ql2xloginretrycount;
2669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 icb->lun_enables = __constant_cpu_to_le16(0);
2671 icb->command_resource_count = 0;
2672 icb->immediate_notify_resource_count = 0;
2673 icb->timeout = __constant_cpu_to_le16(0);
2674
2675 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2676 /* Enable RIO */
2677 icb->firmware_options[0] &= ~BIT_3;
2678 icb->add_firmware_options[0] &=
2679 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
2680 icb->add_firmware_options[0] |= BIT_2;
2681 icb->response_accumulation_timer = 3;
2682 icb->interrupt_delay_timer = 5;
2683
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002684 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 } else {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002686 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002687 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002688 ha->zio_mode = icb->add_firmware_options[0] &
2689 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
2690 ha->zio_timer = icb->interrupt_delay_timer ?
2691 icb->interrupt_delay_timer: 2;
2692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 icb->add_firmware_options[0] &=
2694 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002695 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002696 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08002697 ha->zio_mode = QLA_ZIO_MODE_6;
2698
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002699 ql_log(ql_log_info, vha, 0x0068,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002700 "ZIO mode %d enabled; timer delay (%d us).\n",
2701 ha->zio_mode, ha->zio_timer * 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002703 icb->add_firmware_options[0] |= (uint8_t)ha->zio_mode;
2704 icb->interrupt_delay_timer = (uint8_t)ha->zio_timer;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002705 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 }
2707 }
2708
David Miller4e08df32007-04-16 12:37:43 -07002709 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002710 ql_log(ql_log_warn, vha, 0x0069,
2711 "NVRAM configuration failed.\n");
David Miller4e08df32007-04-16 12:37:43 -07002712 }
2713 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714}
2715
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002716static void
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002717qla2x00_rport_del(void *data)
2718{
2719 fc_port_t *fcport = data;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002720 struct fc_rport *rport;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002721 scsi_qla_host_t *vha = fcport->vha;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002722 unsigned long flags;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002723
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002724 spin_lock_irqsave(fcport->vha->host->host_lock, flags);
Andrew Vasquezac280b62009-08-20 11:06:05 -07002725 rport = fcport->drport ? fcport->drport: fcport->rport;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002726 fcport->drport = NULL;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002727 spin_unlock_irqrestore(fcport->vha->host->host_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002728 if (rport) {
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002729 fc_remote_port_delete(rport);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002730 /*
2731 * Release the target mode FC NEXUS in qla_target.c code
2732 * if target mod is enabled.
2733 */
2734 qlt_fc_port_deleted(vha, fcport);
2735 }
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002736}
2737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738/**
2739 * qla2x00_alloc_fcport() - Allocate a generic fcport.
2740 * @ha: HA context
2741 * @flags: allocation flags
2742 *
2743 * Returns a pointer to the allocated fcport, or NULL, if none available.
2744 */
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002745fc_port_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002746qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747{
2748 fc_port_t *fcport;
2749
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002750 fcport = kzalloc(sizeof(fc_port_t), flags);
2751 if (!fcport)
2752 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
2754 /* Setup fcport template structure. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002755 fcport->vha = vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 fcport->port_type = FCT_UNKNOWN;
2757 fcport->loop_id = FC_NO_LOOP_ID;
Chad Dupuisec426e12011-03-30 11:46:32 -07002758 qla2x00_set_fcport_state(fcport, FCS_UNCONFIGURED);
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002759 fcport->supported_classes = FC_COS_UNSPECIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002761 return fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762}
2763
2764/*
2765 * qla2x00_configure_loop
2766 * Updates Fibre Channel Device Database with what is actually on loop.
2767 *
2768 * Input:
2769 * ha = adapter block pointer.
2770 *
2771 * Returns:
2772 * 0 = success.
2773 * 1 = error.
2774 * 2 = database was full and device was not configured.
2775 */
2776static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002777qla2x00_configure_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
2779 int rval;
2780 unsigned long flags, save_flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002781 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 rval = QLA_SUCCESS;
2783
2784 /* Get Initiator ID */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002785 if (test_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags)) {
2786 rval = qla2x00_configure_hba(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002788 ql_dbg(ql_dbg_disc, vha, 0x2013,
2789 "Unable to configure HBA.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 return (rval);
2791 }
2792 }
2793
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002794 save_flags = flags = vha->dpc_flags;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002795 ql_dbg(ql_dbg_disc, vha, 0x2014,
2796 "Configure loop -- dpc flags = 0x%lx.\n", flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 /*
2799 * If we have both an RSCN and PORT UPDATE pending then handle them
2800 * both at the same time.
2801 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002802 clear_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2803 clear_bit(RSCN_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Michael Hernandez3064ff32009-12-15 21:29:44 -08002805 qla2x00_get_data_rate(vha);
2806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 /* Determine what we need to do */
2808 if (ha->current_topology == ISP_CFG_FL &&
2809 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 set_bit(RSCN_UPDATE, &flags);
2812
2813 } else if (ha->current_topology == ISP_CFG_F &&
2814 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 set_bit(RSCN_UPDATE, &flags);
2817 clear_bit(LOCAL_LOOP_UPDATE, &flags);
2818
Andrew Vasquez21333b42006-05-17 15:09:56 -07002819 } else if (ha->current_topology == ISP_CFG_N) {
2820 clear_bit(RSCN_UPDATE, &flags);
2821
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002822 } else if (!vha->flags.online ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 (test_bit(ABORT_ISP_ACTIVE, &flags))) {
2824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 set_bit(RSCN_UPDATE, &flags);
2826 set_bit(LOCAL_LOOP_UPDATE, &flags);
2827 }
2828
2829 if (test_bit(LOCAL_LOOP_UPDATE, &flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002830 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
2831 ql_dbg(ql_dbg_disc, vha, 0x2015,
2832 "Loop resync needed, failing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 rval = QLA_FUNCTION_FAILED;
Chad Dupuis642ef982012-02-09 11:15:57 -08002834 } else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002835 rval = qla2x00_configure_local_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 }
2837
2838 if (rval == QLA_SUCCESS && test_bit(RSCN_UPDATE, &flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002839 if (LOOP_TRANSITION(vha)) {
2840 ql_dbg(ql_dbg_disc, vha, 0x201e,
2841 "Needs RSCN update and loop transition.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 rval = QLA_FUNCTION_FAILED;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002843 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002844 else
2845 rval = qla2x00_configure_fabric(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 }
2847
2848 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002849 if (atomic_read(&vha->loop_down_timer) ||
2850 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 rval = QLA_FUNCTION_FAILED;
2852 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002853 atomic_set(&vha->loop_state, LOOP_READY);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002854 ql_dbg(ql_dbg_disc, vha, 0x2069,
2855 "LOOP READY.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 }
2857 }
2858
2859 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002860 ql_dbg(ql_dbg_disc, vha, 0x206a,
2861 "%s *** FAILED ***.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002863 ql_dbg(ql_dbg_disc, vha, 0x206b,
2864 "%s: exiting normally.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 }
2866
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -07002867 /* Restore state if a resync event occurred during processing */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002868 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 if (test_bit(LOCAL_LOOP_UPDATE, &save_flags))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002870 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002871 if (test_bit(RSCN_UPDATE, &save_flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002872 set_bit(RSCN_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 }
2875
2876 return (rval);
2877}
2878
2879
2880
2881/*
2882 * qla2x00_configure_local_loop
2883 * Updates Fibre Channel Device Database with local loop devices.
2884 *
2885 * Input:
2886 * ha = adapter block pointer.
2887 *
2888 * Returns:
2889 * 0 = success.
2890 */
2891static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002892qla2x00_configure_local_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
2894 int rval, rval2;
2895 int found_devs;
2896 int found;
2897 fc_port_t *fcport, *new_fcport;
2898
2899 uint16_t index;
2900 uint16_t entries;
2901 char *id_iter;
2902 uint16_t loop_id;
2903 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002904 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906 found_devs = 0;
2907 new_fcport = NULL;
Chad Dupuis642ef982012-02-09 11:15:57 -08002908 entries = MAX_FIBRE_DEVICES_LOOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 /* Get list of logged in devices. */
Chad Dupuis642ef982012-02-09 11:15:57 -08002911 memset(ha->gid_list, 0, qla2x00_gid_list_size(ha));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002912 rval = qla2x00_get_id_list(vha, ha->gid_list, ha->gid_list_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 &entries);
2914 if (rval != QLA_SUCCESS)
2915 goto cleanup_allocation;
2916
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002917 ql_dbg(ql_dbg_disc, vha, 0x2017,
2918 "Entries in ID list (%d).\n", entries);
2919 ql_dump_buffer(ql_dbg_disc + ql_dbg_buffer, vha, 0x2075,
2920 (uint8_t *)ha->gid_list,
2921 entries * sizeof(struct gid_list_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002924 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002926 ql_log(ql_log_warn, vha, 0x2018,
2927 "Memory allocation failed for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 rval = QLA_MEMORY_ALLOC_FAILED;
2929 goto cleanup_allocation;
2930 }
2931 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2932
2933 /*
2934 * Mark local devices that were present with FCF_DEVICE_LOST for now.
2935 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002936 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 if (atomic_read(&fcport->state) == FCS_ONLINE &&
2938 fcport->port_type != FCT_BROADCAST &&
2939 (fcport->flags & FCF_FABRIC_DEVICE) == 0) {
2940
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002941 ql_dbg(ql_dbg_disc, vha, 0x2019,
2942 "Marking port lost loop_id=0x%04x.\n",
2943 fcport->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Chad Dupuisec426e12011-03-30 11:46:32 -07002945 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 }
2947 }
2948
2949 /* Add devices to port list. */
2950 id_iter = (char *)ha->gid_list;
2951 for (index = 0; index < entries; index++) {
2952 domain = ((struct gid_list_info *)id_iter)->domain;
2953 area = ((struct gid_list_info *)id_iter)->area;
2954 al_pa = ((struct gid_list_info *)id_iter)->al_pa;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002955 if (IS_QLA2100(ha) || IS_QLA2200(ha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 loop_id = (uint16_t)
2957 ((struct gid_list_info *)id_iter)->loop_id_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002958 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 loop_id = le16_to_cpu(
2960 ((struct gid_list_info *)id_iter)->loop_id);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002961 id_iter += ha->gid_list_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
2963 /* Bypass reserved domain fields. */
2964 if ((domain & 0xf0) == 0xf0)
2965 continue;
2966
2967 /* Bypass if not same domain and area of adapter. */
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07002968 if (area && domain &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002969 (area != vha->d_id.b.area || domain != vha->d_id.b.domain))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 continue;
2971
2972 /* Bypass invalid local loop ID. */
2973 if (loop_id > LAST_LOCAL_LOOP_ID)
2974 continue;
2975
Arun Easi370d5502012-08-22 14:21:10 -04002976 memset(new_fcport, 0, sizeof(fc_port_t));
2977
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 /* Fill in member data. */
2979 new_fcport->d_id.b.domain = domain;
2980 new_fcport->d_id.b.area = area;
2981 new_fcport->d_id.b.al_pa = al_pa;
2982 new_fcport->loop_id = loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002983 rval2 = qla2x00_get_port_database(vha, new_fcport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 if (rval2 != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002985 ql_dbg(ql_dbg_disc, vha, 0x201a,
2986 "Failed to retrieve fcport information "
2987 "-- get_port_database=%x, loop_id=0x%04x.\n",
2988 rval2, new_fcport->loop_id);
2989 ql_dbg(ql_dbg_disc, vha, 0x201b,
2990 "Scheduling resync.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002991 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 continue;
2993 }
2994
2995 /* Check for matching device in port list. */
2996 found = 0;
2997 fcport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002998 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 if (memcmp(new_fcport->port_name, fcport->port_name,
3000 WWN_SIZE))
3001 continue;
3002
Shyam Sundarddb9b122009-03-24 09:08:10 -07003003 fcport->flags &= ~FCF_FABRIC_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 fcport->loop_id = new_fcport->loop_id;
3005 fcport->port_type = new_fcport->port_type;
3006 fcport->d_id.b24 = new_fcport->d_id.b24;
3007 memcpy(fcport->node_name, new_fcport->node_name,
3008 WWN_SIZE);
3009
3010 found++;
3011 break;
3012 }
3013
3014 if (!found) {
3015 /* New device, add to fcports list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003016 list_add_tail(&new_fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
3018 /* Allocate a new replacement fcport. */
3019 fcport = new_fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003020 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003022 ql_log(ql_log_warn, vha, 0x201c,
3023 "Failed to allocate memory for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 rval = QLA_MEMORY_ALLOC_FAILED;
3025 goto cleanup_allocation;
3026 }
3027 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
3028 }
3029
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003030 /* Base iIDMA settings on HBA port speed. */
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07003031 fcport->fp_speed = ha->link_data_rate;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003032
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003033 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
3035 found_devs++;
3036 }
3037
3038cleanup_allocation:
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003039 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
3041 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003042 ql_dbg(ql_dbg_disc, vha, 0x201d,
3043 "Configure local loop error exit: rval=%x.\n", rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 }
3045
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 return (rval);
3047}
3048
3049static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003050qla2x00_iidma_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003051{
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003052 int rval;
Harish Zunjarrao1bb39542009-06-17 10:30:29 -07003053 uint16_t mb[4];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003054 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003055
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07003056 if (!IS_IIDMA_CAPABLE(ha))
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003057 return;
3058
Giridhar Malavalic9afb9a2010-09-03 15:20:48 -07003059 if (atomic_read(&fcport->state) != FCS_ONLINE)
3060 return;
3061
Andrew Vasquez39bd9622007-09-20 14:07:34 -07003062 if (fcport->fp_speed == PORT_SPEED_UNKNOWN ||
3063 fcport->fp_speed > ha->link_data_rate)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003064 return;
3065
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003066 rval = qla2x00_set_idma_speed(vha, fcport->loop_id, fcport->fp_speed,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07003067 mb);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003068 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003069 ql_dbg(ql_dbg_disc, vha, 0x2004,
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -04003070 "Unable to adjust iIDMA %8phN -- %04x %x %04x %04x.\n",
3071 fcport->port_name, rval, fcport->fp_speed, mb[0], mb[1]);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003072 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003073 ql_dbg(ql_dbg_disc, vha, 0x2005,
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -04003074 "iIDMA adjusted to %s GB/s on %8phN.\n",
Joe Carnucciod0297c92012-11-21 02:40:40 -05003075 qla2x00_get_link_speed_str(ha, fcport->fp_speed),
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -04003076 fcport->port_name);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003077 }
3078}
3079
Adrian Bunk23be3312006-11-24 02:46:01 +01003080static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003081qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport)
8482e1182005-04-17 15:04:54 -05003082{
3083 struct fc_rport_identifiers rport_ids;
bdf79622005-04-17 15:06:53 -05003084 struct fc_rport *rport;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08003085 unsigned long flags;
8482e1182005-04-17 15:04:54 -05003086
Andrew Vasquezac280b62009-08-20 11:06:05 -07003087 qla2x00_rport_del(fcport);
8482e1182005-04-17 15:04:54 -05003088
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07003089 rport_ids.node_name = wwn_to_u64(fcport->node_name);
3090 rport_ids.port_name = wwn_to_u64(fcport->port_name);
8482e1182005-04-17 15:04:54 -05003091 rport_ids.port_id = fcport->d_id.b.domain << 16 |
3092 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
3093 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003094 fcport->rport = rport = fc_remote_port_add(vha->host, 0, &rport_ids);
Andrew Vasquez77d74142005-07-08 18:00:36 -07003095 if (!rport) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003096 ql_log(ql_log_warn, vha, 0x2006,
3097 "Unable to allocate fc remote port.\n");
Andrew Vasquez77d74142005-07-08 18:00:36 -07003098 return;
3099 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003100 /*
3101 * Create target mode FC NEXUS in qla_target.c if target mode is
3102 * enabled..
3103 */
3104 qlt_fc_port_added(vha, fcport);
3105
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08003106 spin_lock_irqsave(fcport->vha->host->host_lock, flags);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003107 *((fc_port_t **)rport->dd_data) = fcport;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08003108 spin_unlock_irqrestore(fcport->vha->host->host_lock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003109
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003110 rport->supported_classes = fcport->supported_classes;
Andrew Vasquez77d74142005-07-08 18:00:36 -07003111
3112 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
8482e1182005-04-17 15:04:54 -05003113 if (fcport->port_type == FCT_INITIATOR)
3114 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
3115 if (fcport->port_type == FCT_TARGET)
3116 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
Andrew Vasquez77d74142005-07-08 18:00:36 -07003117 fc_remote_port_rolechg(rport, rport_ids.roles);
8482e1182005-04-17 15:04:54 -05003118}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
3120/*
Adrian Bunk23be3312006-11-24 02:46:01 +01003121 * qla2x00_update_fcport
3122 * Updates device on list.
3123 *
3124 * Input:
3125 * ha = adapter block pointer.
3126 * fcport = port structure pointer.
3127 *
3128 * Return:
3129 * 0 - Success
3130 * BIT_0 - error
3131 *
3132 * Context:
3133 * Kernel context.
3134 */
3135void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003136qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Adrian Bunk23be3312006-11-24 02:46:01 +01003137{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003138 fcport->vha = vha;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003139
3140 if (IS_QLAFX00(vha->hw)) {
3141 qla2x00_set_fcport_state(fcport, FCS_ONLINE);
3142 qla2x00_reg_remote_port(vha, fcport);
3143 return;
3144 }
Adrian Bunk23be3312006-11-24 02:46:01 +01003145 fcport->login_retry = 0;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003146 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
Adrian Bunk23be3312006-11-24 02:46:01 +01003147
Joe Carnuccio1f93da522012-11-21 02:40:38 -05003148 qla2x00_set_fcport_state(fcport, FCS_ONLINE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003149 qla2x00_iidma_fcport(vha, fcport);
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08003150 qla24xx_update_fcport_fcp_prio(vha, fcport);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003151 qla2x00_reg_remote_port(vha, fcport);
Adrian Bunk23be3312006-11-24 02:46:01 +01003152}
3153
3154/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 * qla2x00_configure_fabric
3156 * Setup SNS devices with loop ID's.
3157 *
3158 * Input:
3159 * ha = adapter block pointer.
3160 *
3161 * Returns:
3162 * 0 = success.
3163 * BIT_0 = error
3164 */
3165static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003166qla2x00_configure_fabric(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167{
Arun Easib3b02e62012-02-09 11:15:39 -08003168 int rval;
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003169 fc_port_t *fcport, *fcptemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 uint16_t next_loopid;
3171 uint16_t mb[MAILBOX_REGISTER_COUNT];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003172 uint16_t loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 LIST_HEAD(new_fcports);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003174 struct qla_hw_data *ha = vha->hw;
3175 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
3177 /* If FL port exists, then SNS is present */
Andrew Vasqueze4289242007-07-19 15:05:56 -07003178 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003179 loop_id = NPH_F_PORT;
3180 else
3181 loop_id = SNS_FL_PORT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003182 rval = qla2x00_get_port_name(vha, loop_id, vha->fabric_node_name, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003184 ql_dbg(ql_dbg_disc, vha, 0x201f,
3185 "MBX_GET_PORT_NAME failed, No FL Port.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003187 vha->device_flags &= ~SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 return (QLA_SUCCESS);
3189 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003190 vha->device_flags |= SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 do {
Andrew Vasquezcca53352005-08-26 19:08:30 -07003193 /* FDMI support. */
3194 if (ql2xfdmienable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003195 test_and_clear_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags))
3196 qla2x00_fdmi_register(vha);
Andrew Vasquezcca53352005-08-26 19:08:30 -07003197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 /* Ensure we are logged into the SNS. */
Andrew Vasqueze4289242007-07-19 15:05:56 -07003199 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003200 loop_id = NPH_SNS;
3201 else
3202 loop_id = SIMPLE_NAME_SERVER;
Chad Dupuis0b91d112012-02-09 11:15:42 -08003203 rval = ha->isp_ops->fabric_login(vha, loop_id, 0xff, 0xff,
3204 0xfc, mb, BIT_1|BIT_0);
3205 if (rval != QLA_SUCCESS) {
3206 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003207 return rval;
Chad Dupuis0b91d112012-02-09 11:15:42 -08003208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 if (mb[0] != MBS_COMMAND_COMPLETE) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003210 ql_dbg(ql_dbg_disc, vha, 0x2042,
3211 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x mb[2]=%x "
3212 "mb[6]=%x mb[7]=%x.\n", loop_id, mb[0], mb[1],
3213 mb[2], mb[6], mb[7]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 return (QLA_SUCCESS);
3215 }
3216
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003217 if (test_and_clear_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags)) {
3218 if (qla2x00_rft_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003220 ql_dbg(ql_dbg_disc, vha, 0x2045,
3221 "Register FC-4 TYPE failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003223 if (qla2x00_rff_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003225 ql_dbg(ql_dbg_disc, vha, 0x2049,
3226 "Register FC-4 Features failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003228 if (qla2x00_rnn_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003230 ql_dbg(ql_dbg_disc, vha, 0x204f,
3231 "Register Node Name failed.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003232 } else if (qla2x00_rsnn_nn(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003234 ql_dbg(ql_dbg_disc, vha, 0x2053,
3235 "Register Symobilic Node Name failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 }
3237 }
3238
Joe Carnuccio827210b2013-02-08 01:57:57 -05003239#define QLA_FCPORT_SCAN 1
3240#define QLA_FCPORT_FOUND 2
3241
3242 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3243 fcport->scan_state = QLA_FCPORT_SCAN;
3244 }
3245
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003246 rval = qla2x00_find_all_fabric_devs(vha, &new_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 if (rval != QLA_SUCCESS)
3248 break;
3249
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003250 /*
3251 * Logout all previous fabric devices marked lost, except
3252 * FCP2 devices.
3253 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003254 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3255 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 break;
3257
3258 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0)
3259 continue;
3260
Joe Carnuccio827210b2013-02-08 01:57:57 -05003261 if (fcport->scan_state == QLA_FCPORT_SCAN &&
Arun Easib3b02e62012-02-09 11:15:39 -08003262 atomic_read(&fcport->state) == FCS_ONLINE) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003263 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003264 ql2xplogiabsentdevice, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003266 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 fcport->port_type != FCT_INITIATOR &&
3268 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003269 ha->isp_ops->fabric_logout(vha,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003270 fcport->loop_id,
3271 fcport->d_id.b.domain,
3272 fcport->d_id.b.area,
3273 fcport->d_id.b.al_pa);
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003274 fcport->loop_id = FC_NO_LOOP_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 }
3276 }
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003279 /* Starting free loop ID. */
3280 next_loopid = ha->min_external_loopid;
3281
3282 /*
3283 * Scan through our port list and login entries that need to be
3284 * logged in.
3285 */
3286 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3287 if (atomic_read(&vha->loop_down_timer) ||
3288 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
3289 break;
3290
3291 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
3292 (fcport->flags & FCF_LOGIN_NEEDED) == 0)
3293 continue;
3294
3295 if (fcport->loop_id == FC_NO_LOOP_ID) {
3296 fcport->loop_id = next_loopid;
3297 rval = qla2x00_find_new_loop_id(
3298 base_vha, fcport);
3299 if (rval != QLA_SUCCESS) {
3300 /* Ran out of IDs to use */
3301 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 }
3303 }
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003304 /* Login and update database */
3305 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
3306 }
3307
3308 /* Exit if out of loop IDs. */
3309 if (rval != QLA_SUCCESS) {
3310 break;
3311 }
3312
3313 /*
3314 * Login and add the new devices to our port list.
3315 */
3316 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
3317 if (atomic_read(&vha->loop_down_timer) ||
3318 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
3319 break;
3320
3321 /* Find a new loop ID to use. */
3322 fcport->loop_id = next_loopid;
3323 rval = qla2x00_find_new_loop_id(base_vha, fcport);
3324 if (rval != QLA_SUCCESS) {
3325 /* Ran out of IDs to use */
3326 break;
3327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
bdf79622005-04-17 15:06:53 -05003329 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003330 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003331
3332 list_move_tail(&fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 }
3334 } while (0);
3335
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003336 /* Free all new device structures not processed. */
3337 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
3338 list_del(&fcport->list);
3339 kfree(fcport);
3340 }
3341
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003343 ql_dbg(ql_dbg_disc, vha, 0x2068,
3344 "Configure fabric error exit rval=%d.\n", rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 }
3346
3347 return (rval);
3348}
3349
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350/*
3351 * qla2x00_find_all_fabric_devs
3352 *
3353 * Input:
3354 * ha = adapter block pointer.
3355 * dev = database device entry pointer.
3356 *
3357 * Returns:
3358 * 0 = success.
3359 *
3360 * Context:
3361 * Kernel context.
3362 */
3363static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003364qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha,
3365 struct list_head *new_fcports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366{
3367 int rval;
3368 uint16_t loop_id;
3369 fc_port_t *fcport, *new_fcport, *fcptemp;
3370 int found;
3371
3372 sw_info_t *swl;
3373 int swl_idx;
3374 int first_dev, last_dev;
Mike Waychison1516ef42010-05-04 15:01:31 -07003375 port_id_t wrap = {}, nxt_d_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003376 struct qla_hw_data *ha = vha->hw;
Chad Dupuisbb4cf5b2013-02-08 01:58:01 -05003377 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
3379 rval = QLA_SUCCESS;
3380
3381 /* Try GID_PT to get device list, else GAN. */
Andrew Vasquez7a677352012-02-09 11:15:56 -08003382 if (!ha->swl)
Chad Dupuis642ef982012-02-09 11:15:57 -08003383 ha->swl = kcalloc(ha->max_fibre_devices, sizeof(sw_info_t),
Andrew Vasquez7a677352012-02-09 11:15:56 -08003384 GFP_KERNEL);
3385 swl = ha->swl;
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02003386 if (!swl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 /*EMPTY*/
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003388 ql_dbg(ql_dbg_disc, vha, 0x2054,
3389 "GID_PT allocations failed, fallback on GA_NXT.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 } else {
Chad Dupuis642ef982012-02-09 11:15:57 -08003391 memset(swl, 0, ha->max_fibre_devices * sizeof(sw_info_t));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003392 if (qla2x00_gid_pt(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003394 } else if (qla2x00_gpn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003396 } else if (qla2x00_gnn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 swl = NULL;
Andrew Vasqueze5896bd2008-07-10 16:55:52 -07003398 } else if (ql2xiidmaenable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003399 qla2x00_gfpn_id(vha, swl) == QLA_SUCCESS) {
3400 qla2x00_gpsc(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 }
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003402
3403 /* If other queries succeeded probe for FC-4 type */
3404 if (swl)
3405 qla2x00_gff_id(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 }
3407 swl_idx = 0;
3408
3409 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003410 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003412 ql_log(ql_log_warn, vha, 0x205e,
3413 "Failed to allocate memory for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 return (QLA_MEMORY_ALLOC_FAILED);
3415 }
3416 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 /* Set start port ID scan at adapter ID. */
3418 first_dev = 1;
3419 last_dev = 0;
3420
3421 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003422 loop_id = ha->min_external_loopid;
3423 for (; loop_id <= ha->max_loop_id; loop_id++) {
3424 if (qla2x00_is_reserved_id(vha, loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 continue;
3426
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07003427 if (ha->current_topology == ISP_CFG_FL &&
3428 (atomic_read(&vha->loop_down_timer) ||
3429 LOOP_TRANSITION(vha))) {
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003430 atomic_set(&vha->loop_down_timer, 0);
3431 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
3432 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 break;
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
3436 if (swl != NULL) {
3437 if (last_dev) {
3438 wrap.b24 = new_fcport->d_id.b24;
3439 } else {
3440 new_fcport->d_id.b24 = swl[swl_idx].d_id.b24;
3441 memcpy(new_fcport->node_name,
3442 swl[swl_idx].node_name, WWN_SIZE);
3443 memcpy(new_fcport->port_name,
3444 swl[swl_idx].port_name, WWN_SIZE);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003445 memcpy(new_fcport->fabric_port_name,
3446 swl[swl_idx].fabric_port_name, WWN_SIZE);
3447 new_fcport->fp_speed = swl[swl_idx].fp_speed;
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003448 new_fcport->fc4_type = swl[swl_idx].fc4_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
3450 if (swl[swl_idx].d_id.b.rsvd_1 != 0) {
3451 last_dev = 1;
3452 }
3453 swl_idx++;
3454 }
3455 } else {
3456 /* Send GA_NXT to the switch */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003457 rval = qla2x00_ga_nxt(vha, new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003459 ql_log(ql_log_warn, vha, 0x2064,
3460 "SNS scan failed -- assuming "
3461 "zero-entry result.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 list_for_each_entry_safe(fcport, fcptemp,
3463 new_fcports, list) {
3464 list_del(&fcport->list);
3465 kfree(fcport);
3466 }
3467 rval = QLA_SUCCESS;
3468 break;
3469 }
3470 }
3471
3472 /* If wrap on switch device list, exit. */
3473 if (first_dev) {
3474 wrap.b24 = new_fcport->d_id.b24;
3475 first_dev = 0;
3476 } else if (new_fcport->d_id.b24 == wrap.b24) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003477 ql_dbg(ql_dbg_disc, vha, 0x2065,
3478 "Device wrap (%02x%02x%02x).\n",
3479 new_fcport->d_id.b.domain,
3480 new_fcport->d_id.b.area,
3481 new_fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 break;
3483 }
3484
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003485 /* Bypass if same physical adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003486 if (new_fcport->d_id.b24 == base_vha->d_id.b24)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 continue;
3488
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003489 /* Bypass virtual ports of the same host. */
Chad Dupuisbb4cf5b2013-02-08 01:58:01 -05003490 if (qla2x00_is_a_vp_did(vha, new_fcport->d_id.b24))
3491 continue;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003492
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003493 /* Bypass if same domain and area of adapter. */
3494 if (((new_fcport->d_id.b24 & 0xffff00) ==
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003495 (vha->d_id.b24 & 0xffff00)) && ha->current_topology ==
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003496 ISP_CFG_FL)
3497 continue;
3498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 /* Bypass reserved domain fields. */
3500 if ((new_fcport->d_id.b.domain & 0xf0) == 0xf0)
3501 continue;
3502
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003503 /* Bypass ports whose FCP-4 type is not FCP_SCSI */
Chad Dupuis4da26e12010-10-15 11:27:40 -07003504 if (ql2xgffidenable &&
3505 (new_fcport->fc4_type != FC4_TYPE_FCP_SCSI &&
3506 new_fcport->fc4_type != FC4_TYPE_UNKNOWN))
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003507 continue;
3508
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 /* Locate matching device in database. */
3510 found = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003511 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 if (memcmp(new_fcport->port_name, fcport->port_name,
3513 WWN_SIZE))
3514 continue;
3515
Joe Carnuccio827210b2013-02-08 01:57:57 -05003516 fcport->scan_state = QLA_FCPORT_FOUND;
Arun Easib3b02e62012-02-09 11:15:39 -08003517
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 found++;
3519
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003520 /* Update port state. */
3521 memcpy(fcport->fabric_port_name,
3522 new_fcport->fabric_port_name, WWN_SIZE);
3523 fcport->fp_speed = new_fcport->fp_speed;
3524
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 /*
3526 * If address the same and state FCS_ONLINE, nothing
3527 * changed.
3528 */
3529 if (fcport->d_id.b24 == new_fcport->d_id.b24 &&
3530 atomic_read(&fcport->state) == FCS_ONLINE) {
3531 break;
3532 }
3533
3534 /*
3535 * If device was not a fabric device before.
3536 */
3537 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0) {
3538 fcport->d_id.b24 = new_fcport->d_id.b24;
Chad Dupuis5f16b332012-08-22 14:21:00 -04003539 qla2x00_clear_loop_id(fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 fcport->flags |= (FCF_FABRIC_DEVICE |
3541 FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 break;
3543 }
3544
3545 /*
3546 * Port ID changed or device was marked to be updated;
3547 * Log it out if still logged in and mark it for
3548 * relogin later.
3549 */
3550 fcport->d_id.b24 = new_fcport->d_id.b24;
3551 fcport->flags |= FCF_LOGIN_NEEDED;
3552 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003553 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Arun Easi0eba25d2012-02-09 11:15:58 -08003554 (fcport->flags & FCF_ASYNC_SENT) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 fcport->port_type != FCT_INITIATOR &&
3556 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003557 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003558 fcport->d_id.b.domain, fcport->d_id.b.area,
3559 fcport->d_id.b.al_pa);
Chad Dupuis5f16b332012-08-22 14:21:00 -04003560 qla2x00_clear_loop_id(fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 }
3562
3563 break;
3564 }
3565
3566 if (found)
3567 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 /* If device was not in our fcports list, then add it. */
3569 list_add_tail(&new_fcport->list, new_fcports);
3570
3571 /* Allocate a new replacement fcport. */
3572 nxt_d_id.b24 = new_fcport->d_id.b24;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003573 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003575 ql_log(ql_log_warn, vha, 0x2066,
3576 "Memory allocation failed for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 return (QLA_MEMORY_ALLOC_FAILED);
3578 }
3579 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
3580 new_fcport->d_id.b24 = nxt_d_id.b24;
3581 }
3582
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003583 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 return (rval);
3586}
3587
3588/*
3589 * qla2x00_find_new_loop_id
3590 * Scan through our port list and find a new usable loop ID.
3591 *
3592 * Input:
3593 * ha: adapter state pointer.
3594 * dev: port structure pointer.
3595 *
3596 * Returns:
3597 * qla2x00 local function return status code.
3598 *
3599 * Context:
3600 * Kernel context.
3601 */
Joe Carnuccio03bcfb52011-03-30 11:46:27 -07003602int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003603qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604{
3605 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003606 struct qla_hw_data *ha = vha->hw;
Arun Easifeafb7b2010-09-03 14:57:00 -07003607 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
3609 rval = QLA_SUCCESS;
3610
Chad Dupuis5f16b332012-08-22 14:21:00 -04003611 spin_lock_irqsave(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Chad Dupuis5f16b332012-08-22 14:21:00 -04003613 dev->loop_id = find_first_zero_bit(ha->loop_id_map,
3614 LOOPID_MAP_SIZE);
3615 if (dev->loop_id >= LOOPID_MAP_SIZE ||
3616 qla2x00_is_reserved_id(vha, dev->loop_id)) {
3617 dev->loop_id = FC_NO_LOOP_ID;
3618 rval = QLA_FUNCTION_FAILED;
3619 } else
3620 set_bit(dev->loop_id, ha->loop_id_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
Chad Dupuis5f16b332012-08-22 14:21:00 -04003622 spin_unlock_irqrestore(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
Chad Dupuis5f16b332012-08-22 14:21:00 -04003624 if (rval == QLA_SUCCESS)
3625 ql_dbg(ql_dbg_disc, dev->vha, 0x2086,
3626 "Assigning new loopid=%x, portid=%x.\n",
3627 dev->loop_id, dev->d_id.b24);
3628 else
3629 ql_log(ql_log_warn, dev->vha, 0x2087,
3630 "No loop_id's available, portid=%x.\n",
3631 dev->d_id.b24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
3633 return (rval);
3634}
3635
3636/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 * qla2x00_fabric_dev_login
3638 * Login fabric target device and update FC port database.
3639 *
3640 * Input:
3641 * ha: adapter state pointer.
3642 * fcport: port structure list pointer.
3643 * next_loopid: contains value of a new loop ID that can be used
3644 * by the next login attempt.
3645 *
3646 * Returns:
3647 * qla2x00 local function return status code.
3648 *
3649 * Context:
3650 * Kernel context.
3651 */
3652static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003653qla2x00_fabric_dev_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 uint16_t *next_loopid)
3655{
3656 int rval;
3657 int retry;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003658 uint8_t opts;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003659 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
3661 rval = QLA_SUCCESS;
3662 retry = 0;
3663
Andrew Vasquezac280b62009-08-20 11:06:05 -07003664 if (IS_ALOGIO_CAPABLE(ha)) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003665 if (fcport->flags & FCF_ASYNC_SENT)
3666 return rval;
3667 fcport->flags |= FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003668 rval = qla2x00_post_async_login_work(vha, fcport, NULL);
3669 if (!rval)
3670 return rval;
3671 }
3672
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003673 fcport->flags &= ~FCF_ASYNC_SENT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003674 rval = qla2x00_fabric_login(vha, fcport, next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 if (rval == QLA_SUCCESS) {
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003676 /* Send an ADISC to FCP2 devices.*/
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003677 opts = 0;
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003678 if (fcport->flags & FCF_FCP2_DEVICE)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003679 opts |= BIT_1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003680 rval = qla2x00_get_port_database(vha, fcport, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003682 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003683 fcport->d_id.b.domain, fcport->d_id.b.area,
3684 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003685 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003687 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 }
Chad Dupuis0b91d112012-02-09 11:15:42 -08003689 } else {
3690 /* Retry Login. */
3691 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 }
3693
3694 return (rval);
3695}
3696
3697/*
3698 * qla2x00_fabric_login
3699 * Issue fabric login command.
3700 *
3701 * Input:
3702 * ha = adapter block pointer.
3703 * device = pointer to FC device type structure.
3704 *
3705 * Returns:
3706 * 0 - Login successfully
3707 * 1 - Login failed
3708 * 2 - Initiator device
3709 * 3 - Fatal error
3710 */
3711int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003712qla2x00_fabric_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 uint16_t *next_loopid)
3714{
3715 int rval;
3716 int retry;
3717 uint16_t tmp_loopid;
3718 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003719 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
3721 retry = 0;
3722 tmp_loopid = 0;
3723
3724 for (;;) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003725 ql_dbg(ql_dbg_disc, vha, 0x2000,
3726 "Trying Fabric Login w/loop id 0x%04x for port "
3727 "%02x%02x%02x.\n",
3728 fcport->loop_id, fcport->d_id.b.domain,
3729 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
3731 /* Login fcport on switch. */
Chad Dupuis0b91d112012-02-09 11:15:42 -08003732 rval = ha->isp_ops->fabric_login(vha, fcport->loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 fcport->d_id.b.domain, fcport->d_id.b.area,
3734 fcport->d_id.b.al_pa, mb, BIT_0);
Chad Dupuis0b91d112012-02-09 11:15:42 -08003735 if (rval != QLA_SUCCESS) {
3736 return rval;
3737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 if (mb[0] == MBS_PORT_ID_USED) {
3739 /*
3740 * Device has another loop ID. The firmware team
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003741 * recommends the driver perform an implicit login with
3742 * the specified ID again. The ID we just used is save
3743 * here so we return with an ID that can be tried by
3744 * the next login.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 */
3746 retry++;
3747 tmp_loopid = fcport->loop_id;
3748 fcport->loop_id = mb[1];
3749
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003750 ql_dbg(ql_dbg_disc, vha, 0x2001,
3751 "Fabric Login: port in use - next loop "
3752 "id=0x%04x, port id= %02x%02x%02x.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 fcport->loop_id, fcport->d_id.b.domain,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003754 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
3756 } else if (mb[0] == MBS_COMMAND_COMPLETE) {
3757 /*
3758 * Login succeeded.
3759 */
3760 if (retry) {
3761 /* A retry occurred before. */
3762 *next_loopid = tmp_loopid;
3763 } else {
3764 /*
3765 * No retry occurred before. Just increment the
3766 * ID value for next login.
3767 */
3768 *next_loopid = (fcport->loop_id + 1);
3769 }
3770
3771 if (mb[1] & BIT_0) {
3772 fcport->port_type = FCT_INITIATOR;
3773 } else {
3774 fcport->port_type = FCT_TARGET;
3775 if (mb[1] & BIT_1) {
Santosh Vernekar8474f3a2009-08-25 11:36:16 -07003776 fcport->flags |= FCF_FCP2_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 }
3778 }
3779
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003780 if (mb[10] & BIT_0)
3781 fcport->supported_classes |= FC_COS_CLASS2;
3782 if (mb[10] & BIT_1)
3783 fcport->supported_classes |= FC_COS_CLASS3;
3784
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003785 if (IS_FWI2_CAPABLE(ha)) {
3786 if (mb[10] & BIT_7)
3787 fcport->flags |=
3788 FCF_CONF_COMP_SUPPORTED;
3789 }
3790
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 rval = QLA_SUCCESS;
3792 break;
3793 } else if (mb[0] == MBS_LOOP_ID_USED) {
3794 /*
3795 * Loop ID already used, try next loop ID.
3796 */
3797 fcport->loop_id++;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003798 rval = qla2x00_find_new_loop_id(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 if (rval != QLA_SUCCESS) {
3800 /* Ran out of loop IDs to use */
3801 break;
3802 }
3803 } else if (mb[0] == MBS_COMMAND_ERROR) {
3804 /*
3805 * Firmware possibly timed out during login. If NO
3806 * retries are left to do then the device is declared
3807 * dead.
3808 */
3809 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003810 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003811 fcport->d_id.b.domain, fcport->d_id.b.area,
3812 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003813 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
3815 rval = 1;
3816 break;
3817 } else {
3818 /*
3819 * unrecoverable / not handled error
3820 */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003821 ql_dbg(ql_dbg_disc, vha, 0x2002,
3822 "Failed=%x port_id=%02x%02x%02x loop_id=%x "
3823 "jiffies=%lx.\n", mb[0], fcport->d_id.b.domain,
3824 fcport->d_id.b.area, fcport->d_id.b.al_pa,
3825 fcport->loop_id, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826
3827 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003828 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003829 fcport->d_id.b.domain, fcport->d_id.b.area,
3830 fcport->d_id.b.al_pa);
Chad Dupuis5f16b332012-08-22 14:21:00 -04003831 qla2x00_clear_loop_id(fcport);
Andrew Vasquez0eedfcf2005-10-27 11:09:38 -07003832 fcport->login_retry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
3834 rval = 3;
3835 break;
3836 }
3837 }
3838
3839 return (rval);
3840}
3841
3842/*
3843 * qla2x00_local_device_login
3844 * Issue local device login command.
3845 *
3846 * Input:
3847 * ha = adapter block pointer.
3848 * loop_id = loop id of device to login to.
3849 *
3850 * Returns (Where's the #define!!!!):
3851 * 0 - Login successfully
3852 * 1 - Login failed
3853 * 3 - Fatal error
3854 */
3855int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003856qla2x00_local_device_login(scsi_qla_host_t *vha, fc_port_t *fcport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857{
3858 int rval;
3859 uint16_t mb[MAILBOX_REGISTER_COUNT];
3860
3861 memset(mb, 0, sizeof(mb));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003862 rval = qla2x00_login_local_device(vha, fcport, mb, BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 if (rval == QLA_SUCCESS) {
3864 /* Interrogate mailbox registers for any errors */
3865 if (mb[0] == MBS_COMMAND_ERROR)
3866 rval = 1;
3867 else if (mb[0] == MBS_COMMAND_PARAMETER_ERROR)
3868 /* device not in PCB table */
3869 rval = 3;
3870 }
3871
3872 return (rval);
3873}
3874
3875/*
3876 * qla2x00_loop_resync
3877 * Resync with fibre channel devices.
3878 *
3879 * Input:
3880 * ha = adapter block pointer.
3881 *
3882 * Returns:
3883 * 0 = success
3884 */
3885int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003886qla2x00_loop_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003888 int rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 uint32_t wait_time;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003890 struct req_que *req;
3891 struct rsp_que *rsp;
3892
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07003893 if (vha->hw->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003894 req = vha->hw->req_q_map[0];
3895 else
3896 req = vha->req;
3897 rsp = req->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003899 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3900 if (vha->flags.online) {
3901 if (!(rval = qla2x00_fw_ready(vha))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 /* Wait at most MAX_TARGET RSCNs for a stable link. */
3903 wait_time = 256;
3904 do {
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003905 if (!IS_QLAFX00(vha->hw)) {
3906 /*
3907 * Issue a marker after FW becomes
3908 * ready.
3909 */
3910 qla2x00_marker(vha, req, rsp, 0, 0,
3911 MK_SYNC_ALL);
3912 vha->marker_needed = 0;
3913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
3915 /* Remap devices on Loop. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003916 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003918 if (IS_QLAFX00(vha->hw))
3919 qlafx00_configure_devices(vha);
3920 else
3921 qla2x00_configure_loop(vha);
3922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003924 } while (!atomic_read(&vha->loop_down_timer) &&
3925 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
3926 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
3927 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 }
3930
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003931 if (test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 return (QLA_FUNCTION_FAILED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003934 if (rval)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003935 ql_dbg(ql_dbg_disc, vha, 0x206c,
3936 "%s *** FAILED ***.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
3938 return (rval);
3939}
3940
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003941/*
3942* qla2x00_perform_loop_resync
3943* Description: This function will set the appropriate flags and call
3944* qla2x00_loop_resync. If successful loop will be resynced
3945* Arguments : scsi_qla_host_t pointer
3946* returm : Success or Failure
3947*/
3948
3949int qla2x00_perform_loop_resync(scsi_qla_host_t *ha)
3950{
3951 int32_t rval = 0;
3952
3953 if (!test_and_set_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags)) {
3954 /*Configure the flags so that resync happens properly*/
3955 atomic_set(&ha->loop_down_timer, 0);
3956 if (!(ha->device_flags & DFLG_NO_CABLE)) {
3957 atomic_set(&ha->loop_state, LOOP_UP);
3958 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
3959 set_bit(REGISTER_FC4_NEEDED, &ha->dpc_flags);
3960 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
3961
3962 rval = qla2x00_loop_resync(ha);
3963 } else
3964 atomic_set(&ha->loop_state, LOOP_DEAD);
3965
3966 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
3967 }
3968
3969 return rval;
3970}
3971
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972void
Andrew Vasquez67becc02009-08-25 11:36:20 -07003973qla2x00_update_fcports(scsi_qla_host_t *base_vha)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003974{
3975 fc_port_t *fcport;
Arun Easifeafb7b2010-09-03 14:57:00 -07003976 struct scsi_qla_host *vha;
3977 struct qla_hw_data *ha = base_vha->hw;
3978 unsigned long flags;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003979
Arun Easifeafb7b2010-09-03 14:57:00 -07003980 spin_lock_irqsave(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003981 /* Go with deferred removal of rport references. */
Arun Easifeafb7b2010-09-03 14:57:00 -07003982 list_for_each_entry(vha, &base_vha->hw->vp_list, list) {
3983 atomic_inc(&vha->vref_count);
3984 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Dan Carpenter8ae598d2010-12-21 16:00:15 -08003985 if (fcport->drport &&
Arun Easifeafb7b2010-09-03 14:57:00 -07003986 atomic_read(&fcport->state) != FCS_UNCONFIGURED) {
3987 spin_unlock_irqrestore(&ha->vport_slock, flags);
Andrew Vasquez67becc02009-08-25 11:36:20 -07003988 qla2x00_rport_del(fcport);
Arun Easifeafb7b2010-09-03 14:57:00 -07003989 spin_lock_irqsave(&ha->vport_slock, flags);
3990 }
3991 }
3992 atomic_dec(&vha->vref_count);
3993 }
3994 spin_unlock_irqrestore(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003995}
3996
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04003997/* Assumes idc_lock always held on entry */
3998void
3999qla83xx_reset_ownership(scsi_qla_host_t *vha)
4000{
4001 struct qla_hw_data *ha = vha->hw;
4002 uint32_t drv_presence, drv_presence_mask;
4003 uint32_t dev_part_info1, dev_part_info2, class_type;
4004 uint32_t class_type_mask = 0x3;
4005 uint16_t fcoe_other_function = 0xffff, i;
4006
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04004007 if (IS_QLA8044(ha)) {
4008 drv_presence = qla8044_rd_direct(vha,
4009 QLA8044_CRB_DRV_ACTIVE_INDEX);
4010 dev_part_info1 = qla8044_rd_direct(vha,
4011 QLA8044_CRB_DEV_PART_INFO_INDEX);
4012 dev_part_info2 = qla8044_rd_direct(vha,
4013 QLA8044_CRB_DEV_PART_INFO2);
4014 } else {
4015 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
4016 qla83xx_rd_reg(vha, QLA83XX_DEV_PARTINFO1, &dev_part_info1);
4017 qla83xx_rd_reg(vha, QLA83XX_DEV_PARTINFO2, &dev_part_info2);
4018 }
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004019 for (i = 0; i < 8; i++) {
4020 class_type = ((dev_part_info1 >> (i * 4)) & class_type_mask);
4021 if ((class_type == QLA83XX_CLASS_TYPE_FCOE) &&
4022 (i != ha->portnum)) {
4023 fcoe_other_function = i;
4024 break;
4025 }
4026 }
4027 if (fcoe_other_function == 0xffff) {
4028 for (i = 0; i < 8; i++) {
4029 class_type = ((dev_part_info2 >> (i * 4)) &
4030 class_type_mask);
4031 if ((class_type == QLA83XX_CLASS_TYPE_FCOE) &&
4032 ((i + 8) != ha->portnum)) {
4033 fcoe_other_function = i + 8;
4034 break;
4035 }
4036 }
4037 }
4038 /*
4039 * Prepare drv-presence mask based on fcoe functions present.
4040 * However consider only valid physical fcoe function numbers (0-15).
4041 */
4042 drv_presence_mask = ~((1 << (ha->portnum)) |
4043 ((fcoe_other_function == 0xffff) ?
4044 0 : (1 << (fcoe_other_function))));
4045
4046 /* We are the reset owner iff:
4047 * - No other protocol drivers present.
4048 * - This is the lowest among fcoe functions. */
4049 if (!(drv_presence & drv_presence_mask) &&
4050 (ha->portnum < fcoe_other_function)) {
4051 ql_dbg(ql_dbg_p3p, vha, 0xb07f,
4052 "This host is Reset owner.\n");
4053 ha->flags.nic_core_reset_owner = 1;
4054 }
4055}
4056
Saurav Kashyapfa492632012-11-21 02:40:29 -05004057static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004058__qla83xx_set_drv_ack(scsi_qla_host_t *vha)
4059{
4060 int rval = QLA_SUCCESS;
4061 struct qla_hw_data *ha = vha->hw;
4062 uint32_t drv_ack;
4063
4064 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
4065 if (rval == QLA_SUCCESS) {
4066 drv_ack |= (1 << ha->portnum);
4067 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRIVER_ACK, drv_ack);
4068 }
4069
4070 return rval;
4071}
4072
Saurav Kashyapfa492632012-11-21 02:40:29 -05004073static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004074__qla83xx_clear_drv_ack(scsi_qla_host_t *vha)
4075{
4076 int rval = QLA_SUCCESS;
4077 struct qla_hw_data *ha = vha->hw;
4078 uint32_t drv_ack;
4079
4080 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
4081 if (rval == QLA_SUCCESS) {
4082 drv_ack &= ~(1 << ha->portnum);
4083 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRIVER_ACK, drv_ack);
4084 }
4085
4086 return rval;
4087}
4088
Saurav Kashyapfa492632012-11-21 02:40:29 -05004089static const char *
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004090qla83xx_dev_state_to_string(uint32_t dev_state)
4091{
4092 switch (dev_state) {
4093 case QLA8XXX_DEV_COLD:
4094 return "COLD/RE-INIT";
4095 case QLA8XXX_DEV_INITIALIZING:
4096 return "INITIALIZING";
4097 case QLA8XXX_DEV_READY:
4098 return "READY";
4099 case QLA8XXX_DEV_NEED_RESET:
4100 return "NEED RESET";
4101 case QLA8XXX_DEV_NEED_QUIESCENT:
4102 return "NEED QUIESCENT";
4103 case QLA8XXX_DEV_FAILED:
4104 return "FAILED";
4105 case QLA8XXX_DEV_QUIESCENT:
4106 return "QUIESCENT";
4107 default:
4108 return "Unknown";
4109 }
4110}
4111
4112/* Assumes idc-lock always held on entry */
4113void
4114qla83xx_idc_audit(scsi_qla_host_t *vha, int audit_type)
4115{
4116 struct qla_hw_data *ha = vha->hw;
4117 uint32_t idc_audit_reg = 0, duration_secs = 0;
4118
4119 switch (audit_type) {
4120 case IDC_AUDIT_TIMESTAMP:
4121 ha->idc_audit_ts = (jiffies_to_msecs(jiffies) / 1000);
4122 idc_audit_reg = (ha->portnum) |
4123 (IDC_AUDIT_TIMESTAMP << 7) | (ha->idc_audit_ts << 8);
4124 qla83xx_wr_reg(vha, QLA83XX_IDC_AUDIT, idc_audit_reg);
4125 break;
4126
4127 case IDC_AUDIT_COMPLETION:
4128 duration_secs = ((jiffies_to_msecs(jiffies) -
4129 jiffies_to_msecs(ha->idc_audit_ts)) / 1000);
4130 idc_audit_reg = (ha->portnum) |
4131 (IDC_AUDIT_COMPLETION << 7) | (duration_secs << 8);
4132 qla83xx_wr_reg(vha, QLA83XX_IDC_AUDIT, idc_audit_reg);
4133 break;
4134
4135 default:
4136 ql_log(ql_log_warn, vha, 0xb078,
4137 "Invalid audit type specified.\n");
4138 break;
4139 }
4140}
4141
4142/* Assumes idc_lock always held on entry */
Saurav Kashyapfa492632012-11-21 02:40:29 -05004143static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004144qla83xx_initiating_reset(scsi_qla_host_t *vha)
4145{
4146 struct qla_hw_data *ha = vha->hw;
4147 uint32_t idc_control, dev_state;
4148
4149 __qla83xx_get_idc_control(vha, &idc_control);
4150 if ((idc_control & QLA83XX_IDC_RESET_DISABLED)) {
4151 ql_log(ql_log_info, vha, 0xb080,
4152 "NIC Core reset has been disabled. idc-control=0x%x\n",
4153 idc_control);
4154 return QLA_FUNCTION_FAILED;
4155 }
4156
4157 /* Set NEED-RESET iff in READY state and we are the reset-owner */
4158 qla83xx_rd_reg(vha, QLA83XX_IDC_DEV_STATE, &dev_state);
4159 if (ha->flags.nic_core_reset_owner && dev_state == QLA8XXX_DEV_READY) {
4160 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE,
4161 QLA8XXX_DEV_NEED_RESET);
4162 ql_log(ql_log_info, vha, 0xb056, "HW State: NEED RESET.\n");
4163 qla83xx_idc_audit(vha, IDC_AUDIT_TIMESTAMP);
4164 } else {
4165 const char *state = qla83xx_dev_state_to_string(dev_state);
4166 ql_log(ql_log_info, vha, 0xb057, "HW State: %s.\n", state);
4167
4168 /* SV: XXX: Is timeout required here? */
4169 /* Wait for IDC state change READY -> NEED_RESET */
4170 while (dev_state == QLA8XXX_DEV_READY) {
4171 qla83xx_idc_unlock(vha, 0);
4172 msleep(200);
4173 qla83xx_idc_lock(vha, 0);
4174 qla83xx_rd_reg(vha, QLA83XX_IDC_DEV_STATE, &dev_state);
4175 }
4176 }
4177
4178 /* Send IDC ack by writing to drv-ack register */
4179 __qla83xx_set_drv_ack(vha);
4180
4181 return QLA_SUCCESS;
4182}
4183
4184int
4185__qla83xx_set_idc_control(scsi_qla_host_t *vha, uint32_t idc_control)
4186{
4187 return qla83xx_wr_reg(vha, QLA83XX_IDC_CONTROL, idc_control);
4188}
4189
4190int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004191__qla83xx_get_idc_control(scsi_qla_host_t *vha, uint32_t *idc_control)
4192{
4193 return qla83xx_rd_reg(vha, QLA83XX_IDC_CONTROL, idc_control);
4194}
4195
Saurav Kashyapfa492632012-11-21 02:40:29 -05004196static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004197qla83xx_check_driver_presence(scsi_qla_host_t *vha)
4198{
4199 uint32_t drv_presence = 0;
4200 struct qla_hw_data *ha = vha->hw;
4201
4202 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
4203 if (drv_presence & (1 << ha->portnum))
4204 return QLA_SUCCESS;
4205 else
4206 return QLA_TEST_FAILED;
4207}
4208
4209int
4210qla83xx_nic_core_reset(scsi_qla_host_t *vha)
4211{
4212 int rval = QLA_SUCCESS;
4213 struct qla_hw_data *ha = vha->hw;
4214
4215 ql_dbg(ql_dbg_p3p, vha, 0xb058,
4216 "Entered %s().\n", __func__);
4217
4218 if (vha->device_flags & DFLG_DEV_FAILED) {
4219 ql_log(ql_log_warn, vha, 0xb059,
4220 "Device in unrecoverable FAILED state.\n");
4221 return QLA_FUNCTION_FAILED;
4222 }
4223
4224 qla83xx_idc_lock(vha, 0);
4225
4226 if (qla83xx_check_driver_presence(vha) != QLA_SUCCESS) {
4227 ql_log(ql_log_warn, vha, 0xb05a,
4228 "Function=0x%x has been removed from IDC participation.\n",
4229 ha->portnum);
4230 rval = QLA_FUNCTION_FAILED;
4231 goto exit;
4232 }
4233
4234 qla83xx_reset_ownership(vha);
4235
4236 rval = qla83xx_initiating_reset(vha);
4237
4238 /*
4239 * Perform reset if we are the reset-owner,
4240 * else wait till IDC state changes to READY/FAILED.
4241 */
4242 if (rval == QLA_SUCCESS) {
4243 rval = qla83xx_idc_state_handler(vha);
4244
4245 if (rval == QLA_SUCCESS)
4246 ha->flags.nic_core_hung = 0;
4247 __qla83xx_clear_drv_ack(vha);
4248 }
4249
4250exit:
4251 qla83xx_idc_unlock(vha, 0);
4252
4253 ql_dbg(ql_dbg_p3p, vha, 0xb05b, "Exiting %s.\n", __func__);
4254
4255 return rval;
4256}
4257
Saurav Kashyap81178772012-08-22 14:21:04 -04004258int
4259qla2xxx_mctp_dump(scsi_qla_host_t *vha)
4260{
4261 struct qla_hw_data *ha = vha->hw;
4262 int rval = QLA_FUNCTION_FAILED;
4263
4264 if (!IS_MCTP_CAPABLE(ha)) {
4265 /* This message can be removed from the final version */
4266 ql_log(ql_log_info, vha, 0x506d,
4267 "This board is not MCTP capable\n");
4268 return rval;
4269 }
4270
4271 if (!ha->mctp_dump) {
4272 ha->mctp_dump = dma_alloc_coherent(&ha->pdev->dev,
4273 MCTP_DUMP_SIZE, &ha->mctp_dump_dma, GFP_KERNEL);
4274
4275 if (!ha->mctp_dump) {
4276 ql_log(ql_log_warn, vha, 0x506e,
4277 "Failed to allocate memory for mctp dump\n");
4278 return rval;
4279 }
4280 }
4281
4282#define MCTP_DUMP_STR_ADDR 0x00000000
4283 rval = qla2x00_dump_mctp_data(vha, ha->mctp_dump_dma,
4284 MCTP_DUMP_STR_ADDR, MCTP_DUMP_SIZE/4);
4285 if (rval != QLA_SUCCESS) {
4286 ql_log(ql_log_warn, vha, 0x506f,
4287 "Failed to capture mctp dump\n");
4288 } else {
4289 ql_log(ql_log_info, vha, 0x5070,
4290 "Mctp dump capture for host (%ld/%p).\n",
4291 vha->host_no, ha->mctp_dump);
4292 ha->mctp_dumped = 1;
4293 }
4294
Saurav Kashyap409ee0f2012-08-22 14:21:29 -04004295 if (!ha->flags.nic_core_reset_hdlr_active && !ha->portnum) {
Saurav Kashyap81178772012-08-22 14:21:04 -04004296 ha->flags.nic_core_reset_hdlr_active = 1;
4297 rval = qla83xx_restart_nic_firmware(vha);
4298 if (rval)
4299 /* NIC Core reset failed. */
4300 ql_log(ql_log_warn, vha, 0x5071,
4301 "Failed to restart nic firmware\n");
4302 else
4303 ql_dbg(ql_dbg_p3p, vha, 0xb084,
4304 "Restarted NIC firmware successfully.\n");
4305 ha->flags.nic_core_reset_hdlr_active = 0;
4306 }
4307
4308 return rval;
4309
4310}
4311
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004312/*
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004313* qla2x00_quiesce_io
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004314* Description: This function will block the new I/Os
4315* Its not aborting any I/Os as context
4316* is not destroyed during quiescence
4317* Arguments: scsi_qla_host_t
4318* return : void
4319*/
4320void
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004321qla2x00_quiesce_io(scsi_qla_host_t *vha)
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004322{
4323 struct qla_hw_data *ha = vha->hw;
4324 struct scsi_qla_host *vp;
4325
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004326 ql_dbg(ql_dbg_dpc, vha, 0x401d,
4327 "Quiescing I/O - ha=%p.\n", ha);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004328
4329 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
4330 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
4331 atomic_set(&vha->loop_state, LOOP_DOWN);
4332 qla2x00_mark_all_devices_lost(vha, 0);
4333 list_for_each_entry(vp, &ha->vp_list, list)
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004334 qla2x00_mark_all_devices_lost(vp, 0);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004335 } else {
4336 if (!atomic_read(&vha->loop_down_timer))
4337 atomic_set(&vha->loop_down_timer,
4338 LOOP_DOWN_TIME);
4339 }
4340 /* Wait for pending cmds to complete */
4341 qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST);
4342}
4343
Giridhar Malavalia9083012010-04-12 17:59:55 -07004344void
4345qla2x00_abort_isp_cleanup(scsi_qla_host_t *vha)
4346{
4347 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004348 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07004349 unsigned long flags;
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08004350 fc_port_t *fcport;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004351
Saurav Kashyape46ef002011-02-23 15:27:16 -08004352 /* For ISP82XX, driver waits for completion of the commands.
4353 * online flag should be set.
4354 */
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04004355 if (!(IS_P3P_TYPE(ha)))
Saurav Kashyape46ef002011-02-23 15:27:16 -08004356 vha->flags.online = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004357 ha->flags.chip_reset_done = 0;
4358 clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Saurav Kashyap2be21fa2012-05-15 14:34:16 -04004359 vha->qla_stats.total_isp_aborts++;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004360
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004361 ql_log(ql_log_info, vha, 0x00af,
4362 "Performing ISP error recovery - ha=%p.\n", ha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004363
Saurav Kashyape46ef002011-02-23 15:27:16 -08004364 /* For ISP82XX, reset_chip is just disabling interrupts.
4365 * Driver waits for the completion of the commands.
4366 * the interrupts need to be enabled.
4367 */
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04004368 if (!(IS_P3P_TYPE(ha)))
Giridhar Malavalia9083012010-04-12 17:59:55 -07004369 ha->isp_ops->reset_chip(vha);
4370
4371 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
4372 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
4373 atomic_set(&vha->loop_state, LOOP_DOWN);
4374 qla2x00_mark_all_devices_lost(vha, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07004375
4376 spin_lock_irqsave(&ha->vport_slock, flags);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004377 list_for_each_entry(vp, &ha->vp_list, list) {
Arun Easifeafb7b2010-09-03 14:57:00 -07004378 atomic_inc(&vp->vref_count);
4379 spin_unlock_irqrestore(&ha->vport_slock, flags);
4380
Giridhar Malavalia9083012010-04-12 17:59:55 -07004381 qla2x00_mark_all_devices_lost(vp, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07004382
4383 spin_lock_irqsave(&ha->vport_slock, flags);
4384 atomic_dec(&vp->vref_count);
4385 }
4386 spin_unlock_irqrestore(&ha->vport_slock, flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004387 } else {
4388 if (!atomic_read(&vha->loop_down_timer))
4389 atomic_set(&vha->loop_down_timer,
4390 LOOP_DOWN_TIME);
4391 }
4392
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08004393 /* Clear all async request states across all VPs. */
4394 list_for_each_entry(fcport, &vha->vp_fcports, list)
4395 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
4396 spin_lock_irqsave(&ha->vport_slock, flags);
4397 list_for_each_entry(vp, &ha->vp_list, list) {
4398 atomic_inc(&vp->vref_count);
4399 spin_unlock_irqrestore(&ha->vport_slock, flags);
4400
4401 list_for_each_entry(fcport, &vp->vp_fcports, list)
4402 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
4403
4404 spin_lock_irqsave(&ha->vport_slock, flags);
4405 atomic_dec(&vp->vref_count);
4406 }
4407 spin_unlock_irqrestore(&ha->vport_slock, flags);
4408
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07004409 if (!ha->flags.eeh_busy) {
4410 /* Make sure for ISP 82XX IO DMA is complete */
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04004411 if (IS_P3P_TYPE(ha)) {
Giridhar Malavali71905752011-02-23 15:27:10 -08004412 qla82xx_chip_reset_cleanup(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004413 ql_log(ql_log_info, vha, 0x00b4,
4414 "Done chip reset cleanup.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -07004415
Saurav Kashyape46ef002011-02-23 15:27:16 -08004416 /* Done waiting for pending commands.
4417 * Reset the online flag.
4418 */
4419 vha->flags.online = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07004422 /* Requeue all commands in outstanding command list. */
4423 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
4424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425}
4426
4427/*
4428* qla2x00_abort_isp
4429* Resets ISP and aborts all outstanding commands.
4430*
4431* Input:
4432* ha = adapter block pointer.
4433*
4434* Returns:
4435* 0 = success
4436*/
4437int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004438qla2x00_abort_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439{
Andrew Vasquez476e8972006-08-23 14:54:55 -07004440 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 uint8_t status = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004442 struct qla_hw_data *ha = vha->hw;
4443 struct scsi_qla_host *vp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004444 struct req_que *req = ha->req_q_map[0];
Arun Easifeafb7b2010-09-03 14:57:00 -07004445 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004447 if (vha->flags.online) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07004448 qla2x00_abort_isp_cleanup(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449
Santosh Vernekara61712972012-08-22 14:21:13 -04004450 if (IS_QLA8031(ha)) {
4451 ql_dbg(ql_dbg_p3p, vha, 0xb05c,
4452 "Clearing fcoe driver presence.\n");
4453 if (qla83xx_clear_drv_presence(vha) != QLA_SUCCESS)
4454 ql_dbg(ql_dbg_p3p, vha, 0xb073,
4455 "Error while clearing DRV-Presence.\n");
4456 }
4457
Andrew Vasquez85880802009-12-15 21:29:46 -08004458 if (unlikely(pci_channel_offline(ha->pdev) &&
4459 ha->flags.pci_channel_io_perm_failure)) {
4460 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
4461 status = 0;
4462 return status;
4463 }
4464
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004465 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -08004466
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004467 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004469 if (!qla2x00_restart_isp(vha)) {
4470 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004472 if (!atomic_read(&vha->loop_down_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 /*
4474 * Issue marker command only when we are going
4475 * to start the I/O .
4476 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004477 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 }
4479
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004480 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004482 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004484 ha->isp_abort_cnt = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004485 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Andrew Vasquez476e8972006-08-23 14:54:55 -07004486
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08004487 if (IS_QLA81XX(ha) || IS_QLA8031(ha))
4488 qla2x00_get_fw_version(vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004489 if (ha->fce) {
4490 ha->flags.fce_enabled = 1;
4491 memset(ha->fce, 0,
4492 fce_calc_size(ha->fce_bufs));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004493 rval = qla2x00_enable_fce_trace(vha,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004494 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
4495 &ha->fce_bufs);
4496 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004497 ql_log(ql_log_warn, vha, 0x8033,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004498 "Unable to reinitialize FCE "
4499 "(%d).\n", rval);
4500 ha->flags.fce_enabled = 0;
4501 }
4502 }
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004503
4504 if (ha->eft) {
4505 memset(ha->eft, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004506 rval = qla2x00_enable_eft_trace(vha,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004507 ha->eft_dma, EFT_NUM_BUFFERS);
4508 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004509 ql_log(ql_log_warn, vha, 0x8034,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004510 "Unable to reinitialize EFT "
4511 "(%d).\n", rval);
4512 }
4513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 } else { /* failed the ISP abort */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004515 vha->flags.online = 1;
4516 if (test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 if (ha->isp_abort_cnt == 0) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004518 ql_log(ql_log_fatal, vha, 0x8035,
4519 "ISP error recover failed - "
4520 "board disabled.\n");
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004521 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 * The next call disables the board
4523 * completely.
4524 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004525 ha->isp_ops->reset_adapter(vha);
4526 vha->flags.online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 clear_bit(ISP_ABORT_RETRY,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004528 &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 status = 0;
4530 } else { /* schedule another ISP abort */
4531 ha->isp_abort_cnt--;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004532 ql_dbg(ql_dbg_taskm, vha, 0x8020,
4533 "ISP abort - retry remaining %d.\n",
4534 ha->isp_abort_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 status = 1;
4536 }
4537 } else {
4538 ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004539 ql_dbg(ql_dbg_taskm, vha, 0x8021,
4540 "ISP error recovery - retrying (%d) "
4541 "more times.\n", ha->isp_abort_cnt);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004542 set_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 status = 1;
4544 }
4545 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004546
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 }
4548
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004549 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004550 ql_dbg(ql_dbg_taskm, vha, 0x8022, "%s succeeded.\n", __func__);
Arun Easifeafb7b2010-09-03 14:57:00 -07004551
4552 spin_lock_irqsave(&ha->vport_slock, flags);
4553 list_for_each_entry(vp, &ha->vp_list, list) {
4554 if (vp->vp_idx) {
4555 atomic_inc(&vp->vref_count);
4556 spin_unlock_irqrestore(&ha->vport_slock, flags);
4557
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004558 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07004559
4560 spin_lock_irqsave(&ha->vport_slock, flags);
4561 atomic_dec(&vp->vref_count);
4562 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004563 }
Arun Easifeafb7b2010-09-03 14:57:00 -07004564 spin_unlock_irqrestore(&ha->vport_slock, flags);
4565
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004566 if (IS_QLA8031(ha)) {
4567 ql_dbg(ql_dbg_p3p, vha, 0xb05d,
4568 "Setting back fcoe driver presence.\n");
4569 if (qla83xx_set_drv_presence(vha) != QLA_SUCCESS)
4570 ql_dbg(ql_dbg_p3p, vha, 0xb074,
4571 "Error while setting DRV-Presence.\n");
4572 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004573 } else {
Joe Perchesd8424f62011-11-18 09:03:06 -08004574 ql_log(ql_log_warn, vha, 0x8023, "%s **** FAILED ****.\n",
4575 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 }
4577
4578 return(status);
4579}
4580
4581/*
4582* qla2x00_restart_isp
4583* restarts the ISP after a reset
4584*
4585* Input:
4586* ha = adapter block pointer.
4587*
4588* Returns:
4589* 0 = success
4590*/
4591static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004592qla2x00_restart_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593{
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08004594 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 uint32_t wait_time;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004596 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004597 struct req_que *req = ha->req_q_map[0];
4598 struct rsp_que *rsp = ha->rsp_q_map[0];
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004599 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
4601 /* If firmware needs to be loaded */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004602 if (qla2x00_isp_firmware(vha)) {
4603 vha->flags.online = 0;
4604 status = ha->isp_ops->chip_diag(vha);
4605 if (!status)
4606 status = qla2x00_setup_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 }
4608
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004609 if (!status && !(status = qla2x00_init_rings(vha))) {
4610 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -07004611 ha->flags.chip_reset_done = 1;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004612 /* Initialize the queues in use */
4613 qla25xx_init_queues(ha);
4614
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004615 status = qla2x00_fw_ready(vha);
4616 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004617 ql_dbg(ql_dbg_taskm, vha, 0x8031,
4618 "Start configure loop status = %d.\n", status);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004619
4620 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004621 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004622
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004623 vha->flags.online = 1;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004624
4625 /*
4626 * Process any ATIO queue entries that came in
4627 * while we weren't online.
4628 */
4629 spin_lock_irqsave(&ha->hardware_lock, flags);
4630 if (qla_tgt_mode_enabled(vha))
4631 qlt_24xx_process_atio_queue(vha);
4632 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4633
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 /* Wait at most MAX_TARGET RSCNs for a stable link. */
4635 wait_time = 256;
4636 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004637 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4638 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004640 } while (!atomic_read(&vha->loop_down_timer) &&
4641 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
4642 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
4643 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 }
4645
4646 /* if no cable then assume it's good */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004647 if ((vha->device_flags & DFLG_NO_CABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 status = 0;
4649
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004650 ql_dbg(ql_dbg_taskm, vha, 0x8032,
4651 "Configure loop done, status = 0x%x.\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 }
4653 return (status);
4654}
4655
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004656static int
4657qla25xx_init_queues(struct qla_hw_data *ha)
4658{
4659 struct rsp_que *rsp = NULL;
4660 struct req_que *req = NULL;
4661 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
4662 int ret = -1;
4663 int i;
4664
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004665 for (i = 1; i < ha->max_rsp_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004666 rsp = ha->rsp_q_map[i];
4667 if (rsp) {
4668 rsp->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004669 ret = qla25xx_init_rsp_que(base_vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004670 if (ret != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004671 ql_dbg(ql_dbg_init, base_vha, 0x00ff,
4672 "%s Rsp que: %d init failed.\n",
4673 __func__, rsp->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004674 else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004675 ql_dbg(ql_dbg_init, base_vha, 0x0100,
4676 "%s Rsp que: %d inited.\n",
4677 __func__, rsp->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004678 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004679 }
4680 for (i = 1; i < ha->max_req_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004681 req = ha->req_q_map[i];
4682 if (req) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08004683 /* Clear outstanding commands array. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004684 req->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004685 ret = qla25xx_init_req_que(base_vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004686 if (ret != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004687 ql_dbg(ql_dbg_init, base_vha, 0x0101,
4688 "%s Req que: %d init failed.\n",
4689 __func__, req->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004690 else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004691 ql_dbg(ql_dbg_init, base_vha, 0x0102,
4692 "%s Req que: %d inited.\n",
4693 __func__, req->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004694 }
4695 }
4696 return ret;
4697}
4698
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699/*
4700* qla2x00_reset_adapter
4701* Reset adapter.
4702*
4703* Input:
4704* ha = adapter block pointer.
4705*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07004706void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004707qla2x00_reset_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708{
4709 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004710 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07004711 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004713 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004714 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 spin_lock_irqsave(&ha->hardware_lock, flags);
4717 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
4718 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4719 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
4720 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4721 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4722}
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004723
4724void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004725qla24xx_reset_adapter(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004726{
4727 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004728 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004729 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
4730
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04004731 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07004732 return;
4733
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004734 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004735 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004736
4737 spin_lock_irqsave(&ha->hardware_lock, flags);
4738 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
4739 RD_REG_DWORD(&reg->hccr);
4740 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
4741 RD_REG_DWORD(&reg->hccr);
4742 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez09ff36d2009-01-22 09:45:30 -08004743
4744 if (IS_NOPOLLING_TYPE(ha))
4745 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004746}
4747
David Miller4e08df32007-04-16 12:37:43 -07004748/* On sparc systems, obtain port and node WWN from firmware
4749 * properties.
4750 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004751static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t *vha,
4752 struct nvram_24xx *nv)
David Miller4e08df32007-04-16 12:37:43 -07004753{
4754#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004755 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07004756 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07004757 struct device_node *dp = pci_device_to_OF_node(pdev);
4758 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07004759 int len;
4760
4761 val = of_get_property(dp, "port-wwn", &len);
4762 if (val && len >= WWN_SIZE)
4763 memcpy(nv->port_name, val, WWN_SIZE);
4764
4765 val = of_get_property(dp, "node-wwn", &len);
4766 if (val && len >= WWN_SIZE)
4767 memcpy(nv->node_name, val, WWN_SIZE);
4768#endif
4769}
4770
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004771int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004772qla24xx_nvram_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004773{
David Miller4e08df32007-04-16 12:37:43 -07004774 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004775 struct init_cb_24xx *icb;
4776 struct nvram_24xx *nv;
4777 uint32_t *dptr;
4778 uint8_t *dptr1, *dptr2;
4779 uint32_t chksum;
4780 uint16_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004781 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004782
David Miller4e08df32007-04-16 12:37:43 -07004783 rval = QLA_SUCCESS;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004784 icb = (struct init_cb_24xx *)ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07004785 nv = ha->nvram;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004786
4787 /* Determine NVRAM starting address. */
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004788 if (ha->flags.port0) {
4789 ha->nvram_base = FA_NVRAM_FUNC0_ADDR;
4790 ha->vpd_base = FA_NVRAM_VPD0_ADDR;
4791 } else {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004792 ha->nvram_base = FA_NVRAM_FUNC1_ADDR;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -08004793 ha->vpd_base = FA_NVRAM_VPD1_ADDR;
4794 }
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004795 ha->nvram_size = sizeof(struct nvram_24xx);
4796 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004797
Seokmann Ju281afe12007-07-26 13:43:34 -07004798 /* Get VPD data into cache */
4799 ha->vpd = ha->nvram + VPD_OFFSET;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004800 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd,
Seokmann Ju281afe12007-07-26 13:43:34 -07004801 ha->nvram_base - FA_NVRAM_FUNC0_ADDR, FA_NVRAM_VPD_SIZE * 4);
4802
4803 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004804 dptr = (uint32_t *)nv;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004805 ha->isp_ops->read_nvram(vha, (uint8_t *)dptr, ha->nvram_base,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004806 ha->nvram_size);
4807 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
4808 chksum += le32_to_cpu(*dptr++);
4809
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004810 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x006a,
4811 "Contents of NVRAM\n");
4812 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010d,
4813 (uint8_t *)nv, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004814
4815 /* Bad NVRAM data, set defaults parameters. */
4816 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
4817 || nv->id[3] != ' ' ||
4818 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
4819 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004820 ql_log(ql_log_warn, vha, 0x006b,
Raul Porcel9e336522012-05-15 14:34:08 -04004821 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004822 "version=0x%x.\n", chksum, nv->id[0], nv->nvram_version);
4823 ql_log(ql_log_warn, vha, 0x006c,
4824 "Falling back to functioning (yet invalid -- WWPN) "
4825 "defaults.\n");
David Miller4e08df32007-04-16 12:37:43 -07004826
4827 /*
4828 * Set default initialization control block.
4829 */
4830 memset(nv, 0, ha->nvram_size);
4831 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
4832 nv->version = __constant_cpu_to_le16(ICB_VERSION);
4833 nv->frame_payload_size = __constant_cpu_to_le16(2048);
4834 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4835 nv->exchange_count = __constant_cpu_to_le16(0);
4836 nv->hard_address = __constant_cpu_to_le16(124);
4837 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004838 nv->port_name[1] = 0x00 + ha->port_no;
David Miller4e08df32007-04-16 12:37:43 -07004839 nv->port_name[2] = 0x00;
4840 nv->port_name[3] = 0xe0;
4841 nv->port_name[4] = 0x8b;
4842 nv->port_name[5] = 0x1c;
4843 nv->port_name[6] = 0x55;
4844 nv->port_name[7] = 0x86;
4845 nv->node_name[0] = 0x20;
4846 nv->node_name[1] = 0x00;
4847 nv->node_name[2] = 0x00;
4848 nv->node_name[3] = 0xe0;
4849 nv->node_name[4] = 0x8b;
4850 nv->node_name[5] = 0x1c;
4851 nv->node_name[6] = 0x55;
4852 nv->node_name[7] = 0x86;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004853 qla24xx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07004854 nv->login_retry_count = __constant_cpu_to_le16(8);
4855 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
4856 nv->login_timeout = __constant_cpu_to_le16(0);
4857 nv->firmware_options_1 =
4858 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
4859 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
4860 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
4861 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
4862 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
4863 nv->efi_parameters = __constant_cpu_to_le32(0);
4864 nv->reset_delay = 5;
4865 nv->max_luns_per_target = __constant_cpu_to_le16(128);
4866 nv->port_down_retry_count = __constant_cpu_to_le16(30);
4867 nv->link_down_timeout = __constant_cpu_to_le16(30);
4868
4869 rval = 1;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004870 }
4871
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004872 if (!qla_ini_mode_enabled(vha)) {
4873 /* Don't enable full login after initial LIP */
4874 nv->firmware_options_1 &= __constant_cpu_to_le32(~BIT_13);
4875 /* Don't enable LIP full login for initiator */
4876 nv->host_p &= __constant_cpu_to_le32(~BIT_10);
4877 }
4878
4879 qlt_24xx_config_nvram_stage1(vha, nv);
4880
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004881 /* Reset Initialization control block */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004882 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004883
4884 /* Copy 1st segment. */
4885 dptr1 = (uint8_t *)icb;
4886 dptr2 = (uint8_t *)&nv->version;
4887 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
4888 while (cnt--)
4889 *dptr1++ = *dptr2++;
4890
4891 icb->login_retry_count = nv->login_retry_count;
Andrew Vasquez3ea66e22006-06-23 16:11:27 -07004892 icb->link_down_on_nos = nv->link_down_on_nos;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004893
4894 /* Copy 2nd segment. */
4895 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
4896 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
4897 cnt = (uint8_t *)&icb->reserved_3 -
4898 (uint8_t *)&icb->interrupt_delay_timer;
4899 while (cnt--)
4900 *dptr1++ = *dptr2++;
4901
4902 /*
4903 * Setup driver NVRAM options.
4904 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004905 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08004906 "QLA2462");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004907
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004908 qlt_24xx_config_nvram_stage2(vha, icb);
4909
Andrew Vasquez5341e862006-05-17 15:09:16 -07004910 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004911 /* Use alternate WWN? */
Andrew Vasquez5341e862006-05-17 15:09:16 -07004912 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
4913 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
4914 }
4915
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004916 /* Prepare nodename */
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004917 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004918 /*
4919 * Firmware will apply the following mask if the nodename was
4920 * not provided.
4921 */
4922 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
4923 icb->node_name[0] &= 0xF0;
4924 }
4925
4926 /* Set host adapter parameters. */
4927 ha->flags.disable_risc_code_load = 0;
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08004928 ha->flags.enable_lip_reset = 0;
4929 ha->flags.enable_lip_full_login =
4930 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
4931 ha->flags.enable_target_reset =
4932 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004933 ha->flags.enable_led_scheme = 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07004934 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004935
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004936 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
4937 (BIT_6 | BIT_5 | BIT_4)) >> 4;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004938
4939 memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
4940 sizeof(ha->fw_seriallink_options24));
4941
4942 /* save HBA serial number */
4943 ha->serial0 = icb->port_name[5];
4944 ha->serial1 = icb->port_name[6];
4945 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004946 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
4947 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004948
andrew.vasquez@qlogic.combc8fb3c2006-01-13 17:05:42 -08004949 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4950
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004951 ha->retry_count = le16_to_cpu(nv->login_retry_count);
4952
4953 /* Set minimum login_timeout to 4 seconds. */
4954 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
4955 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
4956 if (le16_to_cpu(nv->login_timeout) < 4)
4957 nv->login_timeout = __constant_cpu_to_le16(4);
4958 ha->login_timeout = le16_to_cpu(nv->login_timeout);
Seokmann Juc6852c42008-04-24 15:21:29 -07004959 icb->login_timeout = nv->login_timeout;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004960
Andrew Vasquez00a537b2008-02-28 14:06:11 -08004961 /* Set minimum RATOV to 100 tenths of a second. */
4962 ha->r_a_tov = 100;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004963
4964 ha->loop_reset_delay = nv->reset_delay;
4965
4966 /* Link Down Timeout = 0:
4967 *
4968 * When Port Down timer expires we will start returning
4969 * I/O's to OS with "DID_NO_CONNECT".
4970 *
4971 * Link Down Timeout != 0:
4972 *
4973 * The driver waits for the link to come up after link down
4974 * before returning I/Os to OS with "DID_NO_CONNECT".
4975 */
4976 if (le16_to_cpu(nv->link_down_timeout) == 0) {
4977 ha->loop_down_abort_time =
4978 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
4979 } else {
4980 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
4981 ha->loop_down_abort_time =
4982 (LOOP_DOWN_TIME - ha->link_down_timeout);
4983 }
4984
4985 /* Need enough time to try and get the port back. */
4986 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
4987 if (qlport_down_retry)
4988 ha->port_down_retry_count = qlport_down_retry;
4989
4990 /* Set login_retry_count */
4991 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
4992 if (ha->port_down_retry_count ==
4993 le16_to_cpu(nv->port_down_retry_count) &&
4994 ha->port_down_retry_count > 3)
4995 ha->login_retry_count = ha->port_down_retry_count;
4996 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
4997 ha->login_retry_count = ha->port_down_retry_count;
4998 if (ql2xloginretrycount)
4999 ha->login_retry_count = ql2xloginretrycount;
5000
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07005001 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005002 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07005003 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
5004 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
5005 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
5006 le16_to_cpu(icb->interrupt_delay_timer): 2;
5007 }
5008 icb->firmware_options_2 &= __constant_cpu_to_le32(
5009 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005010 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07005011 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08005012 ha->zio_mode = QLA_ZIO_MODE_6;
5013
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005014 ql_log(ql_log_info, vha, 0x006f,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07005015 "ZIO mode %d enabled; timer delay (%d us).\n",
5016 ha->zio_mode, ha->zio_timer * 100);
5017
5018 icb->firmware_options_2 |= cpu_to_le32(
5019 (uint32_t)ha->zio_mode);
5020 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005021 vha->flags.process_response_queue = 1;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07005022 }
5023
David Miller4e08df32007-04-16 12:37:43 -07005024 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005025 ql_log(ql_log_warn, vha, 0x0070,
5026 "NVRAM configuration failed.\n");
David Miller4e08df32007-04-16 12:37:43 -07005027 }
5028 return (rval);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005029}
5030
Adrian Bunk413975a2006-06-30 02:33:06 -07005031static int
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005032qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
5033 uint32_t faddr)
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005034{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005035 int rval = QLA_SUCCESS;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005036 int segments, fragment;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005037 uint32_t *dcode, dlen;
5038 uint32_t risc_addr;
5039 uint32_t risc_size;
5040 uint32_t i;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005041 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005042 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005043
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005044 ql_dbg(ql_dbg_init, vha, 0x008b,
Chad Dupuiscfb09192011-11-18 09:03:07 -08005045 "FW: Loading firmware from flash (%x).\n", faddr);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005046
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005047 rval = QLA_SUCCESS;
5048
5049 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005050 dcode = (uint32_t *)req->ring;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005051 *srisc_addr = 0;
5052
5053 /* Validate firmware image by checking version. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005054 qla24xx_read_flash_data(vha, dcode, faddr + 4, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005055 for (i = 0; i < 4; i++)
5056 dcode[i] = be32_to_cpu(dcode[i]);
5057 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
5058 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
5059 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
5060 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005061 ql_log(ql_log_fatal, vha, 0x008c,
5062 "Unable to verify the integrity of flash firmware "
5063 "image.\n");
5064 ql_log(ql_log_fatal, vha, 0x008d,
5065 "Firmware data: %08x %08x %08x %08x.\n",
5066 dcode[0], dcode[1], dcode[2], dcode[3]);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005067
5068 return QLA_FUNCTION_FAILED;
5069 }
5070
5071 while (segments && rval == QLA_SUCCESS) {
5072 /* Read segment's load information. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005073 qla24xx_read_flash_data(vha, dcode, faddr, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005074
5075 risc_addr = be32_to_cpu(dcode[2]);
5076 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
5077 risc_size = be32_to_cpu(dcode[3]);
5078
5079 fragment = 0;
5080 while (risc_size > 0 && rval == QLA_SUCCESS) {
5081 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
5082 if (dlen > risc_size)
5083 dlen = risc_size;
5084
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005085 ql_dbg(ql_dbg_init, vha, 0x008e,
5086 "Loading risc segment@ risc addr %x "
5087 "number of dwords 0x%x offset 0x%x.\n",
5088 risc_addr, dlen, faddr);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005089
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005090 qla24xx_read_flash_data(vha, dcode, faddr, dlen);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005091 for (i = 0; i < dlen; i++)
5092 dcode[i] = swab32(dcode[i]);
5093
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005094 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005095 dlen);
5096 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005097 ql_log(ql_log_fatal, vha, 0x008f,
5098 "Failed to load segment %d of firmware.\n",
5099 fragment);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005100 break;
5101 }
5102
5103 faddr += dlen;
5104 risc_addr += dlen;
5105 risc_size -= dlen;
5106 fragment++;
5107 }
5108
5109 /* Next segment. */
5110 segments--;
5111 }
5112
5113 return rval;
5114}
5115
Giridhar Malavalie9454a82013-02-08 01:57:47 -05005116#define QLA_FW_URL "http://ldriver.qlogic.com/firmware/"
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005117
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005118int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005119qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez54333832005-11-09 15:49:04 -08005120{
5121 int rval;
5122 int i, fragment;
5123 uint16_t *wcode, *fwcode;
5124 uint32_t risc_addr, risc_size, fwclen, wlen, *seg;
5125 struct fw_blob *blob;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005126 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005127 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez54333832005-11-09 15:49:04 -08005128
5129 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005130 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08005131 if (!blob) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005132 ql_log(ql_log_info, vha, 0x0083,
5133 "Fimware image unavailable.\n");
5134 ql_log(ql_log_info, vha, 0x0084,
5135 "Firmware images can be retrieved from: "QLA_FW_URL ".\n");
Andrew Vasquez54333832005-11-09 15:49:04 -08005136 return QLA_FUNCTION_FAILED;
5137 }
5138
5139 rval = QLA_SUCCESS;
5140
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005141 wcode = (uint16_t *)req->ring;
Andrew Vasquez54333832005-11-09 15:49:04 -08005142 *srisc_addr = 0;
5143 fwcode = (uint16_t *)blob->fw->data;
5144 fwclen = 0;
5145
5146 /* Validate firmware image by checking version. */
5147 if (blob->fw->size < 8 * sizeof(uint16_t)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005148 ql_log(ql_log_fatal, vha, 0x0085,
5149 "Unable to verify integrity of firmware image (%Zd).\n",
Andrew Vasquez54333832005-11-09 15:49:04 -08005150 blob->fw->size);
5151 goto fail_fw_integrity;
5152 }
5153 for (i = 0; i < 4; i++)
5154 wcode[i] = be16_to_cpu(fwcode[i + 4]);
5155 if ((wcode[0] == 0xffff && wcode[1] == 0xffff && wcode[2] == 0xffff &&
5156 wcode[3] == 0xffff) || (wcode[0] == 0 && wcode[1] == 0 &&
5157 wcode[2] == 0 && wcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005158 ql_log(ql_log_fatal, vha, 0x0086,
5159 "Unable to verify integrity of firmware image.\n");
5160 ql_log(ql_log_fatal, vha, 0x0087,
5161 "Firmware data: %04x %04x %04x %04x.\n",
5162 wcode[0], wcode[1], wcode[2], wcode[3]);
Andrew Vasquez54333832005-11-09 15:49:04 -08005163 goto fail_fw_integrity;
5164 }
5165
5166 seg = blob->segs;
5167 while (*seg && rval == QLA_SUCCESS) {
5168 risc_addr = *seg;
5169 *srisc_addr = *srisc_addr == 0 ? *seg : *srisc_addr;
5170 risc_size = be16_to_cpu(fwcode[3]);
5171
5172 /* Validate firmware image size. */
5173 fwclen += risc_size * sizeof(uint16_t);
5174 if (blob->fw->size < fwclen) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005175 ql_log(ql_log_fatal, vha, 0x0088,
Andrew Vasquez54333832005-11-09 15:49:04 -08005176 "Unable to verify integrity of firmware image "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005177 "(%Zd).\n", blob->fw->size);
Andrew Vasquez54333832005-11-09 15:49:04 -08005178 goto fail_fw_integrity;
5179 }
5180
5181 fragment = 0;
5182 while (risc_size > 0 && rval == QLA_SUCCESS) {
5183 wlen = (uint16_t)(ha->fw_transfer_size >> 1);
5184 if (wlen > risc_size)
5185 wlen = risc_size;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005186 ql_dbg(ql_dbg_init, vha, 0x0089,
5187 "Loading risc segment@ risc addr %x number of "
5188 "words 0x%x.\n", risc_addr, wlen);
Andrew Vasquez54333832005-11-09 15:49:04 -08005189
5190 for (i = 0; i < wlen; i++)
5191 wcode[i] = swab16(fwcode[i]);
5192
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005193 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquez54333832005-11-09 15:49:04 -08005194 wlen);
5195 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005196 ql_log(ql_log_fatal, vha, 0x008a,
5197 "Failed to load segment %d of firmware.\n",
5198 fragment);
Andrew Vasquez54333832005-11-09 15:49:04 -08005199 break;
5200 }
5201
5202 fwcode += wlen;
5203 risc_addr += wlen;
5204 risc_size -= wlen;
5205 fragment++;
5206 }
5207
5208 /* Next segment. */
5209 seg++;
5210 }
5211 return rval;
5212
5213fail_fw_integrity:
5214 return QLA_FUNCTION_FAILED;
5215}
5216
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005217static int
5218qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005219{
5220 int rval;
5221 int segments, fragment;
5222 uint32_t *dcode, dlen;
5223 uint32_t risc_addr;
5224 uint32_t risc_size;
5225 uint32_t i;
Andrew Vasquez54333832005-11-09 15:49:04 -08005226 struct fw_blob *blob;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005227 uint32_t *fwcode, fwclen;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005228 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005229 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005230
Andrew Vasquez54333832005-11-09 15:49:04 -08005231 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005232 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08005233 if (!blob) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005234 ql_log(ql_log_warn, vha, 0x0090,
5235 "Fimware image unavailable.\n");
5236 ql_log(ql_log_warn, vha, 0x0091,
5237 "Firmware images can be retrieved from: "
5238 QLA_FW_URL ".\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005239
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005240 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005241 }
5242
Chad Dupuiscfb09192011-11-18 09:03:07 -08005243 ql_dbg(ql_dbg_init, vha, 0x0092,
5244 "FW: Loading via request-firmware.\n");
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005245
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005246 rval = QLA_SUCCESS;
5247
5248 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005249 dcode = (uint32_t *)req->ring;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005250 *srisc_addr = 0;
Andrew Vasquez54333832005-11-09 15:49:04 -08005251 fwcode = (uint32_t *)blob->fw->data;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005252 fwclen = 0;
5253
5254 /* Validate firmware image by checking version. */
Andrew Vasquez54333832005-11-09 15:49:04 -08005255 if (blob->fw->size < 8 * sizeof(uint32_t)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005256 ql_log(ql_log_fatal, vha, 0x0093,
5257 "Unable to verify integrity of firmware image (%Zd).\n",
Andrew Vasquez54333832005-11-09 15:49:04 -08005258 blob->fw->size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005259 goto fail_fw_integrity;
5260 }
5261 for (i = 0; i < 4; i++)
5262 dcode[i] = be32_to_cpu(fwcode[i + 4]);
5263 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
5264 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
5265 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
5266 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005267 ql_log(ql_log_fatal, vha, 0x0094,
5268 "Unable to verify integrity of firmware image (%Zd).\n",
5269 blob->fw->size);
5270 ql_log(ql_log_fatal, vha, 0x0095,
5271 "Firmware data: %08x %08x %08x %08x.\n",
5272 dcode[0], dcode[1], dcode[2], dcode[3]);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005273 goto fail_fw_integrity;
5274 }
5275
5276 while (segments && rval == QLA_SUCCESS) {
5277 risc_addr = be32_to_cpu(fwcode[2]);
5278 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
5279 risc_size = be32_to_cpu(fwcode[3]);
5280
5281 /* Validate firmware image size. */
5282 fwclen += risc_size * sizeof(uint32_t);
Andrew Vasquez54333832005-11-09 15:49:04 -08005283 if (blob->fw->size < fwclen) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005284 ql_log(ql_log_fatal, vha, 0x0096,
Andrew Vasquez54333832005-11-09 15:49:04 -08005285 "Unable to verify integrity of firmware image "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005286 "(%Zd).\n", blob->fw->size);
Andrew Vasquez54333832005-11-09 15:49:04 -08005287
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005288 goto fail_fw_integrity;
5289 }
5290
5291 fragment = 0;
5292 while (risc_size > 0 && rval == QLA_SUCCESS) {
5293 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
5294 if (dlen > risc_size)
5295 dlen = risc_size;
5296
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005297 ql_dbg(ql_dbg_init, vha, 0x0097,
5298 "Loading risc segment@ risc addr %x "
5299 "number of dwords 0x%x.\n", risc_addr, dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005300
5301 for (i = 0; i < dlen; i++)
5302 dcode[i] = swab32(fwcode[i]);
5303
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005304 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
andrew.vasquez@qlogic.com590f98e2006-01-13 17:05:37 -08005305 dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005306 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005307 ql_log(ql_log_fatal, vha, 0x0098,
5308 "Failed to load segment %d of firmware.\n",
5309 fragment);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005310 break;
5311 }
5312
5313 fwcode += dlen;
5314 risc_addr += dlen;
5315 risc_size -= dlen;
5316 fragment++;
5317 }
5318
5319 /* Next segment. */
5320 segments--;
5321 }
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005322 return rval;
5323
5324fail_fw_integrity:
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005325 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005326}
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005327
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005328int
5329qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
5330{
5331 int rval;
5332
Andrew Vasqueze337d902009-04-06 22:33:49 -07005333 if (ql2xfwloadbin == 1)
5334 return qla81xx_load_risc(vha, srisc_addr);
5335
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005336 /*
5337 * FW Load priority:
5338 * 1) Firmware via request-firmware interface (.bin file).
5339 * 2) Firmware residing in flash.
5340 */
5341 rval = qla24xx_load_risc_blob(vha, srisc_addr);
5342 if (rval == QLA_SUCCESS)
5343 return rval;
5344
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005345 return qla24xx_load_risc_flash(vha, srisc_addr,
5346 vha->hw->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005347}
5348
5349int
5350qla81xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
5351{
5352 int rval;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005353 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005354
Andrew Vasqueze337d902009-04-06 22:33:49 -07005355 if (ql2xfwloadbin == 2)
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005356 goto try_blob_fw;
Andrew Vasqueze337d902009-04-06 22:33:49 -07005357
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005358 /*
5359 * FW Load priority:
5360 * 1) Firmware residing in flash.
5361 * 2) Firmware via request-firmware interface (.bin file).
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005362 * 3) Golden-Firmware residing in flash -- limited operation.
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005363 */
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005364 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005365 if (rval == QLA_SUCCESS)
5366 return rval;
5367
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005368try_blob_fw:
5369 rval = qla24xx_load_risc_blob(vha, srisc_addr);
5370 if (rval == QLA_SUCCESS || !ha->flt_region_gold_fw)
5371 return rval;
5372
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005373 ql_log(ql_log_info, vha, 0x0099,
5374 "Attempting to fallback to golden firmware.\n");
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005375 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_gold_fw);
5376 if (rval != QLA_SUCCESS)
5377 return rval;
5378
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005379 ql_log(ql_log_info, vha, 0x009a, "Update operational firmware.\n");
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005380 ha->flags.running_gold_fw = 1;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005381 return rval;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005382}
5383
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005384void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005385qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005386{
5387 int ret, retries;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005388 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005389
Andrew Vasquez85880802009-12-15 21:29:46 -08005390 if (ha->flags.pci_channel_io_perm_failure)
5391 return;
Andrew Vasqueze4289242007-07-19 15:05:56 -07005392 if (!IS_FWI2_CAPABLE(ha))
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005393 return;
Andrew Vasquez75edf812007-05-07 07:43:00 -07005394 if (!ha->fw_major_version)
5395 return;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005396
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005397 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez7c7f1f22008-02-28 14:06:09 -08005398 for (retries = 5; ret != QLA_SUCCESS && ret != QLA_FUNCTION_TIMEOUT &&
Andrew Vasquezb469a7c2009-04-06 22:33:48 -07005399 ret != QLA_INVALID_COMMAND && retries ; retries--) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005400 ha->isp_ops->reset_chip(vha);
5401 if (ha->isp_ops->chip_diag(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005402 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005403 if (qla2x00_setup_chip(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005404 continue;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005405 ql_log(ql_log_info, vha, 0x8015,
5406 "Attempting retry of stop-firmware command.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005407 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005408 }
5409}
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005410
5411int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005412qla24xx_configure_vhba(scsi_qla_host_t *vha)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005413{
5414 int rval = QLA_SUCCESS;
Chad Dupuis0b91d112012-02-09 11:15:42 -08005415 int rval2;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005416 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005417 struct qla_hw_data *ha = vha->hw;
5418 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07005419 struct req_que *req;
5420 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005421
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005422 if (!vha->vp_idx)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005423 return -EINVAL;
5424
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005425 rval = qla2x00_fw_ready(base_vha);
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07005426 if (ha->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07005427 req = ha->req_q_map[0];
5428 else
5429 req = vha->req;
5430 rsp = req->rsp;
5431
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005432 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005433 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005434 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005435 }
5436
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005437 vha->flags.management_server_logged_in = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005438
5439 /* Login to SNS first */
Chad Dupuis0b91d112012-02-09 11:15:42 -08005440 rval2 = ha->isp_ops->fabric_login(vha, NPH_SNS, 0xff, 0xff, 0xfc, mb,
5441 BIT_1);
5442 if (rval2 != QLA_SUCCESS || mb[0] != MBS_COMMAND_COMPLETE) {
5443 if (rval2 == QLA_MEMORY_ALLOC_FAILED)
5444 ql_dbg(ql_dbg_init, vha, 0x0120,
5445 "Failed SNS login: loop_id=%x, rval2=%d\n",
5446 NPH_SNS, rval2);
5447 else
5448 ql_dbg(ql_dbg_init, vha, 0x0103,
5449 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
5450 "mb[2]=%x mb[6]=%x mb[7]=%x.\n",
5451 NPH_SNS, mb[0], mb[1], mb[2], mb[6], mb[7]);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005452 return (QLA_FUNCTION_FAILED);
5453 }
5454
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005455 atomic_set(&vha->loop_down_timer, 0);
5456 atomic_set(&vha->loop_state, LOOP_UP);
5457 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5458 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
5459 rval = qla2x00_loop_resync(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005460
5461 return rval;
5462}
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005463
5464/* 84XX Support **************************************************************/
5465
5466static LIST_HEAD(qla_cs84xx_list);
5467static DEFINE_MUTEX(qla_cs84xx_mutex);
5468
5469static struct qla_chip_state_84xx *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005470qla84xx_get_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005471{
5472 struct qla_chip_state_84xx *cs84xx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005473 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005474
5475 mutex_lock(&qla_cs84xx_mutex);
5476
5477 /* Find any shared 84xx chip. */
5478 list_for_each_entry(cs84xx, &qla_cs84xx_list, list) {
5479 if (cs84xx->bus == ha->pdev->bus) {
5480 kref_get(&cs84xx->kref);
5481 goto done;
5482 }
5483 }
5484
5485 cs84xx = kzalloc(sizeof(*cs84xx), GFP_KERNEL);
5486 if (!cs84xx)
5487 goto done;
5488
5489 kref_init(&cs84xx->kref);
5490 spin_lock_init(&cs84xx->access_lock);
5491 mutex_init(&cs84xx->fw_update_mutex);
5492 cs84xx->bus = ha->pdev->bus;
5493
5494 list_add_tail(&cs84xx->list, &qla_cs84xx_list);
5495done:
5496 mutex_unlock(&qla_cs84xx_mutex);
5497 return cs84xx;
5498}
5499
5500static void
5501__qla84xx_chip_release(struct kref *kref)
5502{
5503 struct qla_chip_state_84xx *cs84xx =
5504 container_of(kref, struct qla_chip_state_84xx, kref);
5505
5506 mutex_lock(&qla_cs84xx_mutex);
5507 list_del(&cs84xx->list);
5508 mutex_unlock(&qla_cs84xx_mutex);
5509 kfree(cs84xx);
5510}
5511
5512void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005513qla84xx_put_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005514{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005515 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005516 if (ha->cs84xx)
5517 kref_put(&ha->cs84xx->kref, __qla84xx_chip_release);
5518}
5519
5520static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005521qla84xx_init_chip(scsi_qla_host_t *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005522{
5523 int rval;
5524 uint16_t status[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005525 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005526
5527 mutex_lock(&ha->cs84xx->fw_update_mutex);
5528
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005529 rval = qla84xx_verify_chip(vha, status);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005530
5531 mutex_unlock(&ha->cs84xx->fw_update_mutex);
5532
5533 return rval != QLA_SUCCESS || status[0] ? QLA_FUNCTION_FAILED:
5534 QLA_SUCCESS;
5535}
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005536
5537/* 81XX Support **************************************************************/
5538
5539int
5540qla81xx_nvram_config(scsi_qla_host_t *vha)
5541{
5542 int rval;
5543 struct init_cb_81xx *icb;
5544 struct nvram_81xx *nv;
5545 uint32_t *dptr;
5546 uint8_t *dptr1, *dptr2;
5547 uint32_t chksum;
5548 uint16_t cnt;
5549 struct qla_hw_data *ha = vha->hw;
5550
5551 rval = QLA_SUCCESS;
5552 icb = (struct init_cb_81xx *)ha->init_cb;
5553 nv = ha->nvram;
5554
5555 /* Determine NVRAM starting address. */
5556 ha->nvram_size = sizeof(struct nvram_81xx);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005557 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04005558 if (IS_P3P_TYPE(ha) || IS_QLA8031(ha))
5559 ha->vpd_size = FA_VPD_SIZE_82XX;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005560
5561 /* Get VPD data into cache */
5562 ha->vpd = ha->nvram + VPD_OFFSET;
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005563 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
5564 ha->vpd_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005565
5566 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005567 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005568 ha->nvram_size);
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005569 dptr = (uint32_t *)nv;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005570 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
5571 chksum += le32_to_cpu(*dptr++);
5572
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005573 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x0111,
5574 "Contents of NVRAM:\n");
5575 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0112,
5576 (uint8_t *)nv, ha->nvram_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005577
5578 /* Bad NVRAM data, set defaults parameters. */
5579 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
5580 || nv->id[3] != ' ' ||
5581 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
5582 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005583 ql_log(ql_log_info, vha, 0x0073,
Raul Porcel9e336522012-05-15 14:34:08 -04005584 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005585 "version=0x%x.\n", chksum, nv->id[0],
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005586 le16_to_cpu(nv->nvram_version));
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005587 ql_log(ql_log_info, vha, 0x0074,
5588 "Falling back to functioning (yet invalid -- WWPN) "
5589 "defaults.\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005590
5591 /*
5592 * Set default initialization control block.
5593 */
5594 memset(nv, 0, ha->nvram_size);
5595 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
5596 nv->version = __constant_cpu_to_le16(ICB_VERSION);
5597 nv->frame_payload_size = __constant_cpu_to_le16(2048);
5598 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5599 nv->exchange_count = __constant_cpu_to_le16(0);
5600 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005601 nv->port_name[1] = 0x00 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005602 nv->port_name[2] = 0x00;
5603 nv->port_name[3] = 0xe0;
5604 nv->port_name[4] = 0x8b;
5605 nv->port_name[5] = 0x1c;
5606 nv->port_name[6] = 0x55;
5607 nv->port_name[7] = 0x86;
5608 nv->node_name[0] = 0x20;
5609 nv->node_name[1] = 0x00;
5610 nv->node_name[2] = 0x00;
5611 nv->node_name[3] = 0xe0;
5612 nv->node_name[4] = 0x8b;
5613 nv->node_name[5] = 0x1c;
5614 nv->node_name[6] = 0x55;
5615 nv->node_name[7] = 0x86;
5616 nv->login_retry_count = __constant_cpu_to_le16(8);
5617 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
5618 nv->login_timeout = __constant_cpu_to_le16(0);
5619 nv->firmware_options_1 =
5620 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
5621 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
5622 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
5623 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
5624 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
5625 nv->efi_parameters = __constant_cpu_to_le32(0);
5626 nv->reset_delay = 5;
5627 nv->max_luns_per_target = __constant_cpu_to_le16(128);
5628 nv->port_down_retry_count = __constant_cpu_to_le16(30);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005629 nv->link_down_timeout = __constant_cpu_to_le16(180);
Andrew Vasquezeeebcc92009-06-03 09:55:24 -07005630 nv->enode_mac[0] = 0x00;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005631 nv->enode_mac[1] = 0xC0;
5632 nv->enode_mac[2] = 0xDD;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005633 nv->enode_mac[3] = 0x04;
5634 nv->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005635 nv->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005636
5637 rval = 1;
5638 }
5639
Arun Easi9e522cd2012-08-22 14:21:31 -04005640 if (IS_T10_PI_CAPABLE(ha))
5641 nv->frame_payload_size &= ~7;
5642
Arun Easiaa230bc2013-01-30 03:34:39 -05005643 qlt_81xx_config_nvram_stage1(vha, nv);
5644
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005645 /* Reset Initialization control block */
Andrew Vasquez773120e2011-05-10 11:30:14 -07005646 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005647
5648 /* Copy 1st segment. */
5649 dptr1 = (uint8_t *)icb;
5650 dptr2 = (uint8_t *)&nv->version;
5651 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
5652 while (cnt--)
5653 *dptr1++ = *dptr2++;
5654
5655 icb->login_retry_count = nv->login_retry_count;
5656
5657 /* Copy 2nd segment. */
5658 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
5659 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
5660 cnt = (uint8_t *)&icb->reserved_5 -
5661 (uint8_t *)&icb->interrupt_delay_timer;
5662 while (cnt--)
5663 *dptr1++ = *dptr2++;
5664
5665 memcpy(icb->enode_mac, nv->enode_mac, sizeof(icb->enode_mac));
5666 /* Some boards (with valid NVRAMs) still have NULL enode_mac!! */
5667 if (!memcmp(icb->enode_mac, "\0\0\0\0\0\0", sizeof(icb->enode_mac))) {
Andrew Vasquez69e5f1e2012-02-09 11:15:35 -08005668 icb->enode_mac[0] = 0x00;
5669 icb->enode_mac[1] = 0xC0;
5670 icb->enode_mac[2] = 0xDD;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005671 icb->enode_mac[3] = 0x04;
5672 icb->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005673 icb->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005674 }
5675
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07005676 /* Use extended-initialization control block. */
5677 memcpy(ha->ex_init_cb, &nv->ex_version, sizeof(*ha->ex_init_cb));
5678
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005679 /*
5680 * Setup driver NVRAM options.
5681 */
5682 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Giridhar Malavalia9083012010-04-12 17:59:55 -07005683 "QLE8XXX");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005684
Arun Easiaa230bc2013-01-30 03:34:39 -05005685 qlt_81xx_config_nvram_stage2(vha, icb);
5686
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005687 /* Use alternate WWN? */
5688 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
5689 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
5690 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
5691 }
5692
5693 /* Prepare nodename */
5694 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
5695 /*
5696 * Firmware will apply the following mask if the nodename was
5697 * not provided.
5698 */
5699 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
5700 icb->node_name[0] &= 0xF0;
5701 }
5702
5703 /* Set host adapter parameters. */
5704 ha->flags.disable_risc_code_load = 0;
5705 ha->flags.enable_lip_reset = 0;
5706 ha->flags.enable_lip_full_login =
5707 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
5708 ha->flags.enable_target_reset =
5709 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
5710 ha->flags.enable_led_scheme = 0;
5711 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
5712
5713 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
5714 (BIT_6 | BIT_5 | BIT_4)) >> 4;
5715
5716 /* save HBA serial number */
5717 ha->serial0 = icb->port_name[5];
5718 ha->serial1 = icb->port_name[6];
5719 ha->serial2 = icb->port_name[7];
5720 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
5721 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
5722
5723 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5724
5725 ha->retry_count = le16_to_cpu(nv->login_retry_count);
5726
5727 /* Set minimum login_timeout to 4 seconds. */
5728 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
5729 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
5730 if (le16_to_cpu(nv->login_timeout) < 4)
5731 nv->login_timeout = __constant_cpu_to_le16(4);
5732 ha->login_timeout = le16_to_cpu(nv->login_timeout);
5733 icb->login_timeout = nv->login_timeout;
5734
5735 /* Set minimum RATOV to 100 tenths of a second. */
5736 ha->r_a_tov = 100;
5737
5738 ha->loop_reset_delay = nv->reset_delay;
5739
5740 /* Link Down Timeout = 0:
5741 *
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04005742 * When Port Down timer expires we will start returning
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005743 * I/O's to OS with "DID_NO_CONNECT".
5744 *
5745 * Link Down Timeout != 0:
5746 *
5747 * The driver waits for the link to come up after link down
5748 * before returning I/Os to OS with "DID_NO_CONNECT".
5749 */
5750 if (le16_to_cpu(nv->link_down_timeout) == 0) {
5751 ha->loop_down_abort_time =
5752 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
5753 } else {
5754 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
5755 ha->loop_down_abort_time =
5756 (LOOP_DOWN_TIME - ha->link_down_timeout);
5757 }
5758
5759 /* Need enough time to try and get the port back. */
5760 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
5761 if (qlport_down_retry)
5762 ha->port_down_retry_count = qlport_down_retry;
5763
5764 /* Set login_retry_count */
5765 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
5766 if (ha->port_down_retry_count ==
5767 le16_to_cpu(nv->port_down_retry_count) &&
5768 ha->port_down_retry_count > 3)
5769 ha->login_retry_count = ha->port_down_retry_count;
5770 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
5771 ha->login_retry_count = ha->port_down_retry_count;
5772 if (ql2xloginretrycount)
5773 ha->login_retry_count = ql2xloginretrycount;
5774
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005775 /* if not running MSI-X we need handshaking on interrupts */
5776 if (!vha->hw->flags.msix_enabled && IS_QLA83XX(ha))
5777 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_22);
5778
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005779 /* Enable ZIO. */
5780 if (!vha->flags.init_done) {
5781 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
5782 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
5783 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
5784 le16_to_cpu(icb->interrupt_delay_timer): 2;
5785 }
5786 icb->firmware_options_2 &= __constant_cpu_to_le32(
5787 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
5788 vha->flags.process_response_queue = 0;
5789 if (ha->zio_mode != QLA_ZIO_DISABLED) {
5790 ha->zio_mode = QLA_ZIO_MODE_6;
5791
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005792 ql_log(ql_log_info, vha, 0x0075,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005793 "ZIO mode %d enabled; timer delay (%d us).\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005794 ha->zio_mode,
5795 ha->zio_timer * 100);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005796
5797 icb->firmware_options_2 |= cpu_to_le32(
5798 (uint32_t)ha->zio_mode);
5799 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
5800 vha->flags.process_response_queue = 1;
5801 }
5802
5803 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005804 ql_log(ql_log_warn, vha, 0x0076,
5805 "NVRAM configuration failed.\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005806 }
5807 return (rval);
5808}
5809
Giridhar Malavalia9083012010-04-12 17:59:55 -07005810int
5811qla82xx_restart_isp(scsi_qla_host_t *vha)
5812{
5813 int status, rval;
5814 uint32_t wait_time;
5815 struct qla_hw_data *ha = vha->hw;
5816 struct req_que *req = ha->req_q_map[0];
5817 struct rsp_que *rsp = ha->rsp_q_map[0];
5818 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07005819 unsigned long flags;
Giridhar Malavalia9083012010-04-12 17:59:55 -07005820
5821 status = qla2x00_init_rings(vha);
5822 if (!status) {
5823 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5824 ha->flags.chip_reset_done = 1;
5825
5826 status = qla2x00_fw_ready(vha);
5827 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005828 ql_log(ql_log_info, vha, 0x803c,
5829 "Start configure loop, status =%d.\n", status);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005830
5831 /* Issue a marker after FW becomes ready. */
5832 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
5833
5834 vha->flags.online = 1;
5835 /* Wait at most MAX_TARGET RSCNs for a stable link. */
5836 wait_time = 256;
5837 do {
5838 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5839 qla2x00_configure_loop(vha);
5840 wait_time--;
5841 } while (!atomic_read(&vha->loop_down_timer) &&
5842 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags)) &&
5843 wait_time &&
5844 (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)));
5845 }
5846
5847 /* if no cable then assume it's good */
5848 if ((vha->device_flags & DFLG_NO_CABLE))
5849 status = 0;
5850
Chad Dupuiscfb09192011-11-18 09:03:07 -08005851 ql_log(ql_log_info, vha, 0x8000,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005852 "Configure loop done, status = 0x%x.\n", status);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005853 }
5854
5855 if (!status) {
5856 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5857
5858 if (!atomic_read(&vha->loop_down_timer)) {
5859 /*
5860 * Issue marker command only when we are going
5861 * to start the I/O .
5862 */
5863 vha->marker_needed = 1;
5864 }
5865
5866 vha->flags.online = 1;
5867
5868 ha->isp_ops->enable_intrs(ha);
5869
5870 ha->isp_abort_cnt = 0;
5871 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
5872
Saurav Kashyap53296782011-05-10 11:30:06 -07005873 /* Update the firmware version */
Giridhar Malavali31731672011-08-16 11:31:54 -07005874 status = qla82xx_check_md_needed(vha);
Saurav Kashyap53296782011-05-10 11:30:06 -07005875
Giridhar Malavalia9083012010-04-12 17:59:55 -07005876 if (ha->fce) {
5877 ha->flags.fce_enabled = 1;
5878 memset(ha->fce, 0,
5879 fce_calc_size(ha->fce_bufs));
5880 rval = qla2x00_enable_fce_trace(vha,
5881 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
5882 &ha->fce_bufs);
5883 if (rval) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005884 ql_log(ql_log_warn, vha, 0x8001,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005885 "Unable to reinitialize FCE (%d).\n",
5886 rval);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005887 ha->flags.fce_enabled = 0;
5888 }
5889 }
5890
5891 if (ha->eft) {
5892 memset(ha->eft, 0, EFT_SIZE);
5893 rval = qla2x00_enable_eft_trace(vha,
5894 ha->eft_dma, EFT_NUM_BUFFERS);
5895 if (rval) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005896 ql_log(ql_log_warn, vha, 0x8010,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005897 "Unable to reinitialize EFT (%d).\n",
5898 rval);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005899 }
5900 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005901 }
5902
5903 if (!status) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005904 ql_dbg(ql_dbg_taskm, vha, 0x8011,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005905 "qla82xx_restart_isp succeeded.\n");
Arun Easifeafb7b2010-09-03 14:57:00 -07005906
5907 spin_lock_irqsave(&ha->vport_slock, flags);
5908 list_for_each_entry(vp, &ha->vp_list, list) {
5909 if (vp->vp_idx) {
5910 atomic_inc(&vp->vref_count);
5911 spin_unlock_irqrestore(&ha->vport_slock, flags);
5912
Giridhar Malavalia9083012010-04-12 17:59:55 -07005913 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07005914
5915 spin_lock_irqsave(&ha->vport_slock, flags);
5916 atomic_dec(&vp->vref_count);
5917 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005918 }
Arun Easifeafb7b2010-09-03 14:57:00 -07005919 spin_unlock_irqrestore(&ha->vport_slock, flags);
5920
Giridhar Malavalia9083012010-04-12 17:59:55 -07005921 } else {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005922 ql_log(ql_log_warn, vha, 0x8016,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005923 "qla82xx_restart_isp **** FAILED ****.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -07005924 }
5925
5926 return status;
5927}
5928
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005929void
Andrew Vasquezae97c912010-02-18 10:07:28 -08005930qla81xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005931{
Andrew Vasquezae97c912010-02-18 10:07:28 -08005932 struct qla_hw_data *ha = vha->hw;
5933
5934 if (!ql2xetsenable)
5935 return;
5936
5937 /* Enable ETS Burst. */
5938 memset(ha->fw_options, 0, sizeof(ha->fw_options));
5939 ha->fw_options[2] |= BIT_9;
5940 qla2x00_set_fw_options(vha, ha->fw_options);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005941}
Sarang Radke09ff7012010-03-19 17:03:59 -07005942
5943/*
5944 * qla24xx_get_fcp_prio
5945 * Gets the fcp cmd priority value for the logged in port.
5946 * Looks for a match of the port descriptors within
5947 * each of the fcp prio config entries. If a match is found,
5948 * the tag (priority) value is returned.
5949 *
5950 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005951 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07005952 * fcport = port structure pointer.
5953 *
5954 * Return:
Andrew Vasquez6c452a42010-03-19 17:04:02 -07005955 * non-zero (if found)
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005956 * -1 (if not found)
Sarang Radke09ff7012010-03-19 17:03:59 -07005957 *
5958 * Context:
5959 * Kernel context
5960 */
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005961static int
Sarang Radke09ff7012010-03-19 17:03:59 -07005962qla24xx_get_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
5963{
5964 int i, entries;
5965 uint8_t pid_match, wwn_match;
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005966 int priority;
Sarang Radke09ff7012010-03-19 17:03:59 -07005967 uint32_t pid1, pid2;
5968 uint64_t wwn1, wwn2;
5969 struct qla_fcp_prio_entry *pri_entry;
5970 struct qla_hw_data *ha = vha->hw;
5971
5972 if (!ha->fcp_prio_cfg || !ha->flags.fcp_prio_enabled)
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005973 return -1;
Sarang Radke09ff7012010-03-19 17:03:59 -07005974
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005975 priority = -1;
Sarang Radke09ff7012010-03-19 17:03:59 -07005976 entries = ha->fcp_prio_cfg->num_entries;
5977 pri_entry = &ha->fcp_prio_cfg->entry[0];
5978
5979 for (i = 0; i < entries; i++) {
5980 pid_match = wwn_match = 0;
5981
5982 if (!(pri_entry->flags & FCP_PRIO_ENTRY_VALID)) {
5983 pri_entry++;
5984 continue;
5985 }
5986
5987 /* check source pid for a match */
5988 if (pri_entry->flags & FCP_PRIO_ENTRY_SPID_VALID) {
5989 pid1 = pri_entry->src_pid & INVALID_PORT_ID;
5990 pid2 = vha->d_id.b24 & INVALID_PORT_ID;
5991 if (pid1 == INVALID_PORT_ID)
5992 pid_match++;
5993 else if (pid1 == pid2)
5994 pid_match++;
5995 }
5996
5997 /* check destination pid for a match */
5998 if (pri_entry->flags & FCP_PRIO_ENTRY_DPID_VALID) {
5999 pid1 = pri_entry->dst_pid & INVALID_PORT_ID;
6000 pid2 = fcport->d_id.b24 & INVALID_PORT_ID;
6001 if (pid1 == INVALID_PORT_ID)
6002 pid_match++;
6003 else if (pid1 == pid2)
6004 pid_match++;
6005 }
6006
6007 /* check source WWN for a match */
6008 if (pri_entry->flags & FCP_PRIO_ENTRY_SWWN_VALID) {
6009 wwn1 = wwn_to_u64(vha->port_name);
6010 wwn2 = wwn_to_u64(pri_entry->src_wwpn);
6011 if (wwn2 == (uint64_t)-1)
6012 wwn_match++;
6013 else if (wwn1 == wwn2)
6014 wwn_match++;
6015 }
6016
6017 /* check destination WWN for a match */
6018 if (pri_entry->flags & FCP_PRIO_ENTRY_DWWN_VALID) {
6019 wwn1 = wwn_to_u64(fcport->port_name);
6020 wwn2 = wwn_to_u64(pri_entry->dst_wwpn);
6021 if (wwn2 == (uint64_t)-1)
6022 wwn_match++;
6023 else if (wwn1 == wwn2)
6024 wwn_match++;
6025 }
6026
6027 if (pid_match == 2 || wwn_match == 2) {
6028 /* Found a matching entry */
6029 if (pri_entry->flags & FCP_PRIO_ENTRY_TAG_VALID)
6030 priority = pri_entry->tag;
6031 break;
6032 }
6033
6034 pri_entry++;
6035 }
6036
6037 return priority;
6038}
6039
6040/*
6041 * qla24xx_update_fcport_fcp_prio
6042 * Activates fcp priority for the logged in fc port
6043 *
6044 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006045 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07006046 * fcp = port structure pointer.
6047 *
6048 * Return:
6049 * QLA_SUCCESS or QLA_FUNCTION_FAILED
6050 *
6051 * Context:
6052 * Kernel context.
6053 */
6054int
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006055qla24xx_update_fcport_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
Sarang Radke09ff7012010-03-19 17:03:59 -07006056{
6057 int ret;
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07006058 int priority;
Sarang Radke09ff7012010-03-19 17:03:59 -07006059 uint16_t mb[5];
6060
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006061 if (fcport->port_type != FCT_TARGET ||
6062 fcport->loop_id == FC_NO_LOOP_ID)
Sarang Radke09ff7012010-03-19 17:03:59 -07006063 return QLA_FUNCTION_FAILED;
6064
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006065 priority = qla24xx_get_fcp_prio(vha, fcport);
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07006066 if (priority < 0)
6067 return QLA_FUNCTION_FAILED;
6068
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04006069 if (IS_P3P_TYPE(vha->hw)) {
Saurav Kashyapa00f6292011-11-18 09:03:19 -08006070 fcport->fcp_prio = priority & 0xf;
6071 return QLA_SUCCESS;
6072 }
6073
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006074 ret = qla24xx_set_fcp_prio(vha, fcport->loop_id, priority, mb);
Chad Dupuiscfb09192011-11-18 09:03:07 -08006075 if (ret == QLA_SUCCESS) {
6076 if (fcport->fcp_prio != priority)
6077 ql_dbg(ql_dbg_user, vha, 0x709e,
6078 "Updated FCP_CMND priority - value=%d loop_id=%d "
6079 "port_id=%02x%02x%02x.\n", priority,
6080 fcport->loop_id, fcport->d_id.b.domain,
6081 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Saurav Kashyapa00f6292011-11-18 09:03:19 -08006082 fcport->fcp_prio = priority & 0xf;
Chad Dupuiscfb09192011-11-18 09:03:07 -08006083 } else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006084 ql_dbg(ql_dbg_user, vha, 0x704f,
Chad Dupuiscfb09192011-11-18 09:03:07 -08006085 "Unable to update FCP_CMND priority - ret=0x%x for "
6086 "loop_id=%d port_id=%02x%02x%02x.\n", ret, fcport->loop_id,
6087 fcport->d_id.b.domain, fcport->d_id.b.area,
6088 fcport->d_id.b.al_pa);
Sarang Radke09ff7012010-03-19 17:03:59 -07006089 return ret;
6090}
6091
6092/*
6093 * qla24xx_update_all_fcp_prio
6094 * Activates fcp priority for all the logged in ports
6095 *
6096 * Input:
6097 * ha = adapter block pointer.
6098 *
6099 * Return:
6100 * QLA_SUCCESS or QLA_FUNCTION_FAILED
6101 *
6102 * Context:
6103 * Kernel context.
6104 */
6105int
6106qla24xx_update_all_fcp_prio(scsi_qla_host_t *vha)
6107{
6108 int ret;
6109 fc_port_t *fcport;
6110
6111 ret = QLA_FUNCTION_FAILED;
6112 /* We need to set priority for all logged in ports */
6113 list_for_each_entry(fcport, &vha->vp_fcports, list)
6114 ret = qla24xx_update_fcport_fcp_prio(vha, fcport);
6115
6116 return ret;
6117}