blob: f2216ed2ad8c1af090cb30f5ce7a5e2c28b2391f [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 Kashyapa9b6f7222012-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");
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700555 return (rval);
556 }
557
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800558 ha->isp_ops->get_flash_version(vha, req->ring);
Chad Dupuiscfb09192011-11-18 09:03:07 -0800559 ql_dbg(ql_dbg_init, vha, 0x0061,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700560 "Configure NVRAM parameters...\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700561
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800562 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700564 if (ha->flags.disable_serdes) {
565 /* Mask HBA via NVRAM settings? */
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700566 ql_log(ql_log_info, vha, 0x0077,
567 "Masking HBA WWPN "
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700568 "%02x%02x%02x%02x%02x%02x%02x%02x (via NVRAM).\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800569 vha->port_name[0], vha->port_name[1],
570 vha->port_name[2], vha->port_name[3],
571 vha->port_name[4], vha->port_name[5],
572 vha->port_name[6], vha->port_name[7]);
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700573 return QLA_FUNCTION_FAILED;
574 }
575
Chad Dupuiscfb09192011-11-18 09:03:07 -0800576 ql_dbg(ql_dbg_init, vha, 0x0078,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700577 "Verifying loaded RISC code...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800579 if (qla2x00_isp_firmware(vha) != QLA_SUCCESS) {
580 rval = ha->isp_ops->chip_diag(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800581 if (rval)
582 return (rval);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800583 rval = qla2x00_setup_chip(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800584 if (rval)
585 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
Giridhar Malavalia9083012010-04-12 17:59:55 -0700587
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700588 if (IS_QLA84XX(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800589 ha->cs84xx = qla84xx_get_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700590 if (!ha->cs84xx) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700591 ql_log(ql_log_warn, vha, 0x00d0,
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700592 "Unable to configure ISP84XX.\n");
593 return QLA_FUNCTION_FAILED;
594 }
595 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400596
597 if (qla_ini_mode_enabled(vha))
598 rval = qla2x00_init_rings(vha);
599
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700600 ha->flags.chip_reset_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800602 if (rval == QLA_SUCCESS && IS_QLA84XX(ha)) {
Andrew Vasquez6c452a42010-03-19 17:04:02 -0700603 /* Issue verify 84xx FW IOCB to complete 84xx initialization */
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800604 rval = qla84xx_init_chip(vha);
605 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700606 ql_log(ql_log_warn, vha, 0x00d4,
607 "Unable to initialize ISP84XX.\n");
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800608 qla84xx_put_chip(vha);
609 }
610 }
611
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400612 /* Load the NIC Core f/w if we are the first protocol driver. */
613 if (IS_QLA8031(ha)) {
614 rval = qla83xx_nic_core_fw_load(vha);
615 if (rval)
616 ql_log(ql_log_warn, vha, 0x0124,
617 "Error in initializing NIC Core f/w.\n");
618 }
619
Madhuranath Iyengar2f0f3f42010-07-23 15:28:24 +0500620 if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha))
621 qla24xx_read_fcp_prio_cfg(vha);
Sarang Radke09ff7012010-03-19 17:03:59 -0700622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return (rval);
624}
625
626/**
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700627 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 * @ha: HA context
629 *
630 * Returns 0 on success.
631 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700632int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800633qla2100_pci_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700635 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700636 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800637 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700638 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700641 pci_try_set_mwi(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700644 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
646
Andrew Vasquez737faec2008-10-24 15:13:45 -0700647 pci_disable_rom(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700649 /* Get PCI bus information. */
650 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700651 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700652 spin_unlock_irqrestore(&ha->hardware_lock, flags);
653
654 return QLA_SUCCESS;
655}
656
657/**
658 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
659 * @ha: HA context
660 *
661 * Returns 0 on success.
662 */
663int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800664qla2300_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700665{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700666 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700667 unsigned long flags = 0;
668 uint32_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800669 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700670 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700671
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700672 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700673 pci_try_set_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700674
675 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700676 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700677
678 if (IS_QLA2322(ha) || IS_QLA6322(ha))
679 w &= ~PCI_COMMAND_INTX_DISABLE;
Andrew Vasqueza157b102007-05-07 07:43:01 -0700680 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700681
682 /*
683 * If this is a 2300 card and not 2312, reset the
684 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
685 * the 2310 also reports itself as a 2300 so we need to get the
686 * fb revision level -- a 6 indicates it really is a 2300 and
687 * not a 2310.
688 */
689 if (IS_QLA2300(ha)) {
690 spin_lock_irqsave(&ha->hardware_lock, flags);
691
692 /* Pause RISC. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700693 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700694 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700695 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700696 break;
697
698 udelay(10);
699 }
700
701 /* Select FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700702 WRT_REG_WORD(&reg->ctrl_status, 0x20);
703 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700704
705 /* Get the fb rev level */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700706 ha->fb_rev = RD_FB_CMD_REG(ha, reg);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700707
708 if (ha->fb_rev == FPM_2300)
Andrew Vasqueza157b102007-05-07 07:43:01 -0700709 pci_clear_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700710
711 /* Deselect FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700712 WRT_REG_WORD(&reg->ctrl_status, 0x0);
713 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700714
715 /* Release RISC module. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700716 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700717 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700718 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) == 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700719 break;
720
721 udelay(10);
722 }
723
724 spin_unlock_irqrestore(&ha->hardware_lock, flags);
725 }
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700726
727 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
728
Andrew Vasquez737faec2008-10-24 15:13:45 -0700729 pci_disable_rom(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700730
731 /* Get PCI bus information. */
732 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700733 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700734 spin_unlock_irqrestore(&ha->hardware_lock, flags);
735
736 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
739/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700740 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
741 * @ha: HA context
742 *
743 * Returns 0 on success.
744 */
745int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800746qla24xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700747{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700748 uint16_t w;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700749 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800750 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700751 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700752
753 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700754 pci_try_set_mwi(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700755
756 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700757 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700758 w &= ~PCI_COMMAND_INTX_DISABLE;
759 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
760
761 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
762
763 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700764 if (pci_find_capability(ha->pdev, PCI_CAP_ID_PCIX))
765 pcix_set_mmrbc(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700766
767 /* PCIe -- adjust Maximum Read Request Size (2048). */
Jon Masone67f1322012-07-10 14:57:56 -0700768 if (pci_is_pcie(ha->pdev))
Chad Dupuis5ffd3a52012-08-22 14:21:26 -0400769 pcie_set_readrq(ha->pdev, 4096);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700770
Andrew Vasquez737faec2008-10-24 15:13:45 -0700771 pci_disable_rom(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700772
Auke Kok44c10132007-06-08 15:46:36 -0700773 ha->chip_revision = ha->pdev->revision;
Andrew Vasqueza8488ab2007-01-29 10:22:19 -0800774
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700775 /* Get PCI bus information. */
776 spin_lock_irqsave(&ha->hardware_lock, flags);
777 ha->pci_attr = RD_REG_DWORD(&reg->ctrl_status);
778 spin_unlock_irqrestore(&ha->hardware_lock, flags);
779
780 return QLA_SUCCESS;
781}
782
783/**
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700784 * qla25xx_pci_config() - Setup ISP25xx PCI configuration registers.
785 * @ha: HA context
786 *
787 * Returns 0 on success.
788 */
789int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800790qla25xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700791{
792 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800793 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700794
795 pci_set_master(ha->pdev);
796 pci_try_set_mwi(ha->pdev);
797
798 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
799 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
800 w &= ~PCI_COMMAND_INTX_DISABLE;
801 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
802
803 /* PCIe -- adjust Maximum Read Request Size (2048). */
Jon Masone67f1322012-07-10 14:57:56 -0700804 if (pci_is_pcie(ha->pdev))
Chad Dupuis5ffd3a52012-08-22 14:21:26 -0400805 pcie_set_readrq(ha->pdev, 4096);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700806
Andrew Vasquez737faec2008-10-24 15:13:45 -0700807 pci_disable_rom(ha->pdev);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700808
809 ha->chip_revision = ha->pdev->revision;
810
811 return QLA_SUCCESS;
812}
813
814/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 * qla2x00_isp_firmware() - Choose firmware image.
816 * @ha: HA context
817 *
818 * Returns 0 on success.
819 */
820static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800821qla2x00_isp_firmware(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
823 int rval;
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700824 uint16_t loop_id, topo, sw_cap;
825 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800826 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 /* Assume loading risc code */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700829 rval = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 if (ha->flags.disable_risc_code_load) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700832 ql_log(ql_log_info, vha, 0x0079, "RISC CODE NOT loaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /* Verify checksum of loaded RISC code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800835 rval = qla2x00_verify_checksum(vha, ha->fw_srisc_address);
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700836 if (rval == QLA_SUCCESS) {
837 /* And, verify we are not in ROM code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800838 rval = qla2x00_get_adapter_id(vha, &loop_id, &al_pa,
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700839 &area, &domain, &topo, &sw_cap);
840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700843 if (rval)
844 ql_dbg(ql_dbg_init, vha, 0x007a,
845 "**** Load RISC code ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 return (rval);
848}
849
850/**
851 * qla2x00_reset_chip() - Reset ISP chip.
852 * @ha: HA context
853 *
854 * Returns 0 on success.
855 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700856void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800857qla2x00_reset_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
859 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800860 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700861 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 uint32_t cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 uint16_t cmd;
864
Andrew Vasquez85880802009-12-15 21:29:46 -0800865 if (unlikely(pci_channel_offline(ha->pdev)))
866 return;
867
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700868 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 spin_lock_irqsave(&ha->hardware_lock, flags);
871
872 /* Turn off master enable */
873 cmd = 0;
874 pci_read_config_word(ha->pdev, PCI_COMMAND, &cmd);
875 cmd &= ~PCI_COMMAND_MASTER;
876 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
877
878 if (!IS_QLA2100(ha)) {
879 /* Pause RISC. */
880 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
881 if (IS_QLA2200(ha) || IS_QLA2300(ha)) {
882 for (cnt = 0; cnt < 30000; cnt++) {
883 if ((RD_REG_WORD(&reg->hccr) &
884 HCCR_RISC_PAUSE) != 0)
885 break;
886 udelay(100);
887 }
888 } else {
889 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
890 udelay(10);
891 }
892
893 /* Select FPM registers. */
894 WRT_REG_WORD(&reg->ctrl_status, 0x20);
895 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
896
897 /* FPM Soft Reset. */
898 WRT_REG_WORD(&reg->fpm_diag_config, 0x100);
899 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
900
901 /* Toggle Fpm Reset. */
902 if (!IS_QLA2200(ha)) {
903 WRT_REG_WORD(&reg->fpm_diag_config, 0x0);
904 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
905 }
906
907 /* Select frame buffer registers. */
908 WRT_REG_WORD(&reg->ctrl_status, 0x10);
909 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
910
911 /* Reset frame buffer FIFOs. */
912 if (IS_QLA2200(ha)) {
913 WRT_FB_CMD_REG(ha, reg, 0xa000);
914 RD_FB_CMD_REG(ha, reg); /* PCI Posting. */
915 } else {
916 WRT_FB_CMD_REG(ha, reg, 0x00fc);
917
918 /* Read back fb_cmd until zero or 3 seconds max */
919 for (cnt = 0; cnt < 3000; cnt++) {
920 if ((RD_FB_CMD_REG(ha, reg) & 0xff) == 0)
921 break;
922 udelay(100);
923 }
924 }
925
926 /* Select RISC module registers. */
927 WRT_REG_WORD(&reg->ctrl_status, 0);
928 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
929
930 /* Reset RISC processor. */
931 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
932 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
933
934 /* Release RISC processor. */
935 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
936 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
937 }
938
939 WRT_REG_WORD(&reg->hccr, HCCR_CLR_RISC_INT);
940 WRT_REG_WORD(&reg->hccr, HCCR_CLR_HOST_INT);
941
942 /* Reset ISP chip. */
943 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
944
945 /* Wait for RISC to recover from reset. */
946 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
947 /*
948 * It is necessary to for a delay here since the card doesn't
949 * respond to PCI reads during a reset. On some architectures
950 * this will result in an MCA.
951 */
952 udelay(20);
953 for (cnt = 30000; cnt; cnt--) {
954 if ((RD_REG_WORD(&reg->ctrl_status) &
955 CSR_ISP_SOFT_RESET) == 0)
956 break;
957 udelay(100);
958 }
959 } else
960 udelay(10);
961
962 /* Reset RISC processor. */
963 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
964
965 WRT_REG_WORD(&reg->semaphore, 0);
966
967 /* Release RISC processor. */
968 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
969 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
970
971 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
972 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquezffb39f02006-05-17 15:09:06 -0700973 if (RD_MAILBOX_REG(ha, reg, 0) != MBS_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 udelay(100);
977 }
978 } else
979 udelay(100);
980
981 /* Turn on master enable */
982 cmd |= PCI_COMMAND_MASTER;
983 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
984
985 /* Disable RISC pause on FPM parity error. */
986 if (!IS_QLA2100(ha)) {
987 WRT_REG_WORD(&reg->hccr, HCCR_DISABLE_PARITY_PAUSE);
988 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
989 }
990
991 spin_unlock_irqrestore(&ha->hardware_lock, flags);
992}
993
994/**
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -0700995 * qla81xx_reset_mpi() - Reset's MPI FW via Write MPI Register MBC.
996 *
997 * Returns 0 on success.
998 */
Saurav Kashyapfa492632012-11-21 02:40:29 -0500999static int
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -07001000qla81xx_reset_mpi(scsi_qla_host_t *vha)
1001{
1002 uint16_t mb[4] = {0x1010, 0, 1, 0};
1003
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001004 if (!IS_QLA81XX(vha->hw))
1005 return QLA_SUCCESS;
1006
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -07001007 return qla81xx_write_mpi_register(vha, mb);
1008}
1009
1010/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001011 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001012 * @ha: HA context
1013 *
1014 * Returns 0 on success.
1015 */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001016static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001017qla24xx_reset_risc(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001018{
1019 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001020 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001021 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1022 uint32_t cnt, d2;
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001023 uint16_t wd;
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -07001024 static int abts_cnt; /* ISP abort retry counts */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001025
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001026 spin_lock_irqsave(&ha->hardware_lock, flags);
1027
1028 /* Reset RISC. */
1029 WRT_REG_DWORD(&reg->ctrl_status, CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
1030 for (cnt = 0; cnt < 30000; cnt++) {
1031 if ((RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE) == 0)
1032 break;
1033
1034 udelay(10);
1035 }
1036
1037 WRT_REG_DWORD(&reg->ctrl_status,
1038 CSRX_ISP_SOFT_RESET|CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001039 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001040
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001041 udelay(100);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001042 /* Wait for firmware to complete NVRAM accesses. */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001043 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1044 for (cnt = 10000 ; cnt && d2; cnt--) {
1045 udelay(5);
1046 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1047 barrier();
1048 }
1049
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001050 /* Wait for soft-reset to complete. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001051 d2 = RD_REG_DWORD(&reg->ctrl_status);
1052 for (cnt = 6000000 ; cnt && (d2 & CSRX_ISP_SOFT_RESET); cnt--) {
1053 udelay(5);
1054 d2 = RD_REG_DWORD(&reg->ctrl_status);
1055 barrier();
1056 }
1057
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -07001058 /* If required, do an MPI FW reset now */
1059 if (test_and_clear_bit(MPI_RESET_NEEDED, &vha->dpc_flags)) {
1060 if (qla81xx_reset_mpi(vha) != QLA_SUCCESS) {
1061 if (++abts_cnt < 5) {
1062 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1063 set_bit(MPI_RESET_NEEDED, &vha->dpc_flags);
1064 } else {
1065 /*
1066 * We exhausted the ISP abort retries. We have to
1067 * set the board offline.
1068 */
1069 abts_cnt = 0;
1070 vha->flags.online = 0;
1071 }
1072 }
1073 }
1074
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001075 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
1076 RD_REG_DWORD(&reg->hccr);
1077
1078 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
1079 RD_REG_DWORD(&reg->hccr);
1080
1081 WRT_REG_DWORD(&reg->hccr, HCCRX_CLR_RISC_RESET);
1082 RD_REG_DWORD(&reg->hccr);
1083
1084 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1085 for (cnt = 6000000 ; cnt && d2; cnt--) {
1086 udelay(5);
1087 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1088 barrier();
1089 }
1090
1091 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez124f85e2009-01-05 11:18:06 -08001092
1093 if (IS_NOPOLLING_TYPE(ha))
1094 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001095}
1096
Joe Carnuccio4ea2c9c2012-11-21 02:40:37 -05001097static void
1098qla25xx_read_risc_sema_reg(scsi_qla_host_t *vha, uint32_t *data)
1099{
1100 struct device_reg_24xx __iomem *reg = &vha->hw->iobase->isp24;
1101
1102 WRT_REG_DWORD(&reg->iobase_addr, RISC_REGISTER_BASE_OFFSET);
1103 *data = RD_REG_DWORD(&reg->iobase_window + RISC_REGISTER_WINDOW_OFFET);
1104
1105}
1106
1107static void
1108qla25xx_write_risc_sema_reg(scsi_qla_host_t *vha, uint32_t data)
1109{
1110 struct device_reg_24xx __iomem *reg = &vha->hw->iobase->isp24;
1111
1112 WRT_REG_DWORD(&reg->iobase_addr, RISC_REGISTER_BASE_OFFSET);
1113 WRT_REG_DWORD(&reg->iobase_window + RISC_REGISTER_WINDOW_OFFET, data);
1114}
1115
1116static void
1117qla25xx_manipulate_risc_semaphore(scsi_qla_host_t *vha)
1118{
1119 struct qla_hw_data *ha = vha->hw;
1120 uint32_t wd32 = 0;
1121 uint delta_msec = 100;
1122 uint elapsed_msec = 0;
1123 uint timeout_msec;
1124 ulong n;
1125
1126 if (!IS_QLA25XX(ha) && !IS_QLA2031(ha))
1127 return;
1128
1129attempt:
1130 timeout_msec = TIMEOUT_SEMAPHORE;
1131 n = timeout_msec / delta_msec;
1132 while (n--) {
1133 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_SET);
1134 qla25xx_read_risc_sema_reg(vha, &wd32);
1135 if (wd32 & RISC_SEMAPHORE)
1136 break;
1137 msleep(delta_msec);
1138 elapsed_msec += delta_msec;
1139 if (elapsed_msec > TIMEOUT_TOTAL_ELAPSED)
1140 goto force;
1141 }
1142
1143 if (!(wd32 & RISC_SEMAPHORE))
1144 goto force;
1145
1146 if (!(wd32 & RISC_SEMAPHORE_FORCE))
1147 goto acquired;
1148
1149 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_CLR);
1150 timeout_msec = TIMEOUT_SEMAPHORE_FORCE;
1151 n = timeout_msec / delta_msec;
1152 while (n--) {
1153 qla25xx_read_risc_sema_reg(vha, &wd32);
1154 if (!(wd32 & RISC_SEMAPHORE_FORCE))
1155 break;
1156 msleep(delta_msec);
1157 elapsed_msec += delta_msec;
1158 if (elapsed_msec > TIMEOUT_TOTAL_ELAPSED)
1159 goto force;
1160 }
1161
1162 if (wd32 & RISC_SEMAPHORE_FORCE)
1163 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_FORCE_CLR);
1164
1165 goto attempt;
1166
1167force:
1168 qla25xx_write_risc_sema_reg(vha, RISC_SEMAPHORE_FORCE_SET);
1169
1170acquired:
1171 return;
1172}
1173
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001174/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001175 * qla24xx_reset_chip() - Reset ISP24xx chip.
1176 * @ha: HA context
1177 *
1178 * Returns 0 on success.
1179 */
1180void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001181qla24xx_reset_chip(scsi_qla_host_t *vha)
Andrew Vasquez88c26662005-07-08 17:59:26 -07001182{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001183 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez85880802009-12-15 21:29:46 -08001184
1185 if (pci_channel_offline(ha->pdev) &&
1186 ha->flags.pci_channel_io_perm_failure) {
1187 return;
1188 }
1189
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001190 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001191
Joe Carnuccio4ea2c9c2012-11-21 02:40:37 -05001192 qla25xx_manipulate_risc_semaphore(vha);
1193
Andrew Vasquez88c26662005-07-08 17:59:26 -07001194 /* Perform RISC reset. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001195 qla24xx_reset_risc(vha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001196}
1197
1198/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 * qla2x00_chip_diag() - Test chip for proper operation.
1200 * @ha: HA context
1201 *
1202 * Returns 0 on success.
1203 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001204int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001205qla2x00_chip_diag(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
1207 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001208 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001209 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 unsigned long flags = 0;
1211 uint16_t data;
1212 uint32_t cnt;
1213 uint16_t mb[5];
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001214 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /* Assume a failed state */
1217 rval = QLA_FUNCTION_FAILED;
1218
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001219 ql_dbg(ql_dbg_init, vha, 0x007b,
1220 "Testing device at %lx.\n", (u_long)&reg->flash_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 spin_lock_irqsave(&ha->hardware_lock, flags);
1223
1224 /* Reset ISP chip. */
1225 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
1226
1227 /*
1228 * We need to have a delay here since the card will not respond while
1229 * in reset causing an MCA on some architectures.
1230 */
1231 udelay(20);
1232 data = qla2x00_debounce_register(&reg->ctrl_status);
1233 for (cnt = 6000000 ; cnt && (data & CSR_ISP_SOFT_RESET); cnt--) {
1234 udelay(5);
1235 data = RD_REG_WORD(&reg->ctrl_status);
1236 barrier();
1237 }
1238
1239 if (!cnt)
1240 goto chip_diag_failed;
1241
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001242 ql_dbg(ql_dbg_init, vha, 0x007c,
1243 "Reset register cleared by chip reset.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 /* Reset RISC processor. */
1246 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
1247 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
1248
1249 /* Workaround for QLA2312 PCI parity error */
1250 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
1251 data = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 0));
1252 for (cnt = 6000000; cnt && (data == MBS_BUSY); cnt--) {
1253 udelay(5);
1254 data = RD_MAILBOX_REG(ha, reg, 0);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001255 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
1257 } else
1258 udelay(10);
1259
1260 if (!cnt)
1261 goto chip_diag_failed;
1262
1263 /* Check product ID of chip */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001264 ql_dbg(ql_dbg_init, vha, 0x007d, "Checking product Id of chip.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
1267 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
1268 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
1269 mb[4] = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 4));
1270 if (mb[1] != PROD_ID_1 || (mb[2] != PROD_ID_2 && mb[2] != PROD_ID_2a) ||
1271 mb[3] != PROD_ID_3) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001272 ql_log(ql_log_warn, vha, 0x0062,
1273 "Wrong product ID = 0x%x,0x%x,0x%x.\n",
1274 mb[1], mb[2], mb[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 goto chip_diag_failed;
1277 }
1278 ha->product_id[0] = mb[1];
1279 ha->product_id[1] = mb[2];
1280 ha->product_id[2] = mb[3];
1281 ha->product_id[3] = mb[4];
1282
1283 /* Adjust fw RISC transfer size */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001284 if (req->length > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
1286 else
1287 ha->fw_transfer_size = REQUEST_ENTRY_SIZE *
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001288 req->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 if (IS_QLA2200(ha) &&
1291 RD_MAILBOX_REG(ha, reg, 7) == QLA2200A_RISC_ROM_VER) {
1292 /* Limit firmware transfer size with a 2200A */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001293 ql_dbg(ql_dbg_init, vha, 0x007e, "Found QLA2200A Chip.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001295 ha->device_type |= DT_ISP2200A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 ha->fw_transfer_size = 128;
1297 }
1298
1299 /* Wrap Incoming Mailboxes Test. */
1300 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1301
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001302 ql_dbg(ql_dbg_init, vha, 0x007f, "Checking mailboxes.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001303 rval = qla2x00_mbx_reg_test(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001304 if (rval)
1305 ql_log(ql_log_warn, vha, 0x0080,
1306 "Failed mailbox send register test.\n");
1307 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 /* Flag a successful rval */
1309 rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 spin_lock_irqsave(&ha->hardware_lock, flags);
1311
1312chip_diag_failed:
1313 if (rval)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001314 ql_log(ql_log_info, vha, 0x0081,
1315 "Chip diagnostics **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1318
1319 return (rval);
1320}
1321
1322/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001323 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
1324 * @ha: HA context
1325 *
1326 * Returns 0 on success.
1327 */
1328int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001329qla24xx_chip_diag(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001330{
1331 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001332 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001333 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001334
Giridhar Malavalia9083012010-04-12 17:59:55 -07001335 if (IS_QLA82XX(ha))
1336 return QLA_SUCCESS;
1337
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001338 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * req->length;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001339
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001340 rval = qla2x00_mbx_reg_test(vha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001341 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001342 ql_log(ql_log_warn, vha, 0x0082,
1343 "Failed mailbox send register test.\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001344 } else {
1345 /* Flag a successful rval */
1346 rval = QLA_SUCCESS;
1347 }
1348
1349 return rval;
1350}
1351
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001352void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001353qla2x00_alloc_fw_dump(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001354{
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001355 int rval;
1356 uint32_t dump_size, fixed_size, mem_size, req_q_size, rsp_q_size,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001357 eft_size, fce_size, mq_size;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001358 dma_addr_t tc_dma;
1359 void *tc;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001360 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001361 struct req_que *req = ha->req_q_map[0];
1362 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001363
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001364 if (ha->fw_dump) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001365 ql_dbg(ql_dbg_init, vha, 0x00bd,
1366 "Firmware dump already allocated.\n");
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001367 return;
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001368 }
1369
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001370 ha->fw_dumped = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001371 fixed_size = mem_size = eft_size = fce_size = mq_size = 0;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001372 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1373 fixed_size = sizeof(struct qla2100_fw_dump);
1374 } else if (IS_QLA23XX(ha)) {
1375 fixed_size = offsetof(struct qla2300_fw_dump, data_ram);
1376 mem_size = (ha->fw_memory_size - 0x11000 + 1) *
1377 sizeof(uint16_t);
Andrew Vasqueze4289242007-07-19 15:05:56 -07001378 } else if (IS_FWI2_CAPABLE(ha)) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001379 if (IS_QLA83XX(ha))
1380 fixed_size = offsetof(struct qla83xx_fw_dump, ext_mem);
1381 else if (IS_QLA81XX(ha))
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001382 fixed_size = offsetof(struct qla81xx_fw_dump, ext_mem);
1383 else if (IS_QLA25XX(ha))
1384 fixed_size = offsetof(struct qla25xx_fw_dump, ext_mem);
1385 else
1386 fixed_size = offsetof(struct qla24xx_fw_dump, ext_mem);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001387 mem_size = (ha->fw_memory_size - 0x100000 + 1) *
1388 sizeof(uint32_t);
Giridhar Malavali050c9bb2012-02-09 11:15:33 -08001389 if (ha->mqenable) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001390 if (!IS_QLA83XX(ha))
1391 mq_size = sizeof(struct qla2xxx_mq_chain);
Giridhar Malavali050c9bb2012-02-09 11:15:33 -08001392 /*
1393 * Allocate maximum buffer size for all queues.
1394 * Resizing must be done at end-of-dump processing.
1395 */
1396 mq_size += ha->max_req_queues *
1397 (req->length * sizeof(request_t));
1398 mq_size += ha->max_rsp_queues *
1399 (rsp->length * sizeof(response_t));
1400 }
Arun Easi00876ae2013-03-25 02:21:37 -04001401 if (ha->tgt.atio_ring)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001402 mq_size += ha->tgt.atio_q_length * sizeof(request_t);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001403 /* Allocate memory for Fibre Channel Event Buffer. */
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001404 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha) && !IS_QLA83XX(ha))
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001405 goto try_eft;
1406
1407 tc = dma_alloc_coherent(&ha->pdev->dev, FCE_SIZE, &tc_dma,
1408 GFP_KERNEL);
1409 if (!tc) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001410 ql_log(ql_log_warn, vha, 0x00be,
1411 "Unable to allocate (%d KB) for FCE.\n",
1412 FCE_SIZE / 1024);
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001413 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001414 }
1415
1416 memset(tc, 0, FCE_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001417 rval = qla2x00_enable_fce_trace(vha, tc_dma, FCE_NUM_BUFFERS,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001418 ha->fce_mb, &ha->fce_bufs);
1419 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001420 ql_log(ql_log_warn, vha, 0x00bf,
1421 "Unable to initialize FCE (%d).\n", rval);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001422 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, tc,
1423 tc_dma);
1424 ha->flags.fce_enabled = 0;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001425 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001426 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08001427 ql_dbg(ql_dbg_init, vha, 0x00c0,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001428 "Allocate (%d KB) for FCE...\n", FCE_SIZE / 1024);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001429
Giridhar Malavali7d9dade2009-03-24 09:07:58 -07001430 fce_size = sizeof(struct qla2xxx_fce_chain) + FCE_SIZE;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001431 ha->flags.fce_enabled = 1;
1432 ha->fce_dma = tc_dma;
1433 ha->fce = tc;
1434try_eft:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001435 /* Allocate memory for Extended Trace Buffer. */
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001436 tc = dma_alloc_coherent(&ha->pdev->dev, EFT_SIZE, &tc_dma,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001437 GFP_KERNEL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001438 if (!tc) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001439 ql_log(ql_log_warn, vha, 0x00c1,
1440 "Unable to allocate (%d KB) for EFT.\n",
1441 EFT_SIZE / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001442 goto cont_alloc;
1443 }
1444
Andrew Vasquezfc447652008-01-17 09:02:18 -08001445 memset(tc, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001446 rval = qla2x00_enable_eft_trace(vha, tc_dma, EFT_NUM_BUFFERS);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001447 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001448 ql_log(ql_log_warn, vha, 0x00c2,
1449 "Unable to initialize EFT (%d).\n", rval);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001450 dma_free_coherent(&ha->pdev->dev, EFT_SIZE, tc,
1451 tc_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001452 goto cont_alloc;
1453 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08001454 ql_dbg(ql_dbg_init, vha, 0x00c3,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001455 "Allocated (%d KB) EFT ...\n", EFT_SIZE / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001456
1457 eft_size = EFT_SIZE;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001458 ha->eft_dma = tc_dma;
1459 ha->eft = tc;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001460 }
1461cont_alloc:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001462 req_q_size = req->length * sizeof(request_t);
1463 rsp_q_size = rsp->length * sizeof(response_t);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001464
1465 dump_size = offsetof(struct qla2xxx_fw_dump, isp);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001466 dump_size += fixed_size + mem_size + req_q_size + rsp_q_size + eft_size;
Andrew Vasquezbb99de62009-01-05 11:18:08 -08001467 ha->chain_offset = dump_size;
1468 dump_size += mq_size + fce_size;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001469
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001470 ha->fw_dump = vmalloc(dump_size);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001471 if (!ha->fw_dump) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001472 ql_log(ql_log_warn, vha, 0x00c4,
1473 "Unable to allocate (%d KB) for firmware dump.\n",
1474 dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001475
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07001476 if (ha->fce) {
1477 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
1478 ha->fce_dma);
1479 ha->fce = NULL;
1480 ha->fce_dma = 0;
1481 }
1482
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001483 if (ha->eft) {
1484 dma_free_coherent(&ha->pdev->dev, eft_size, ha->eft,
1485 ha->eft_dma);
1486 ha->eft = NULL;
1487 ha->eft_dma = 0;
1488 }
1489 return;
1490 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08001491 ql_dbg(ql_dbg_init, vha, 0x00c5,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001492 "Allocated (%d KB) for firmware dump.\n", dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001493
1494 ha->fw_dump_len = dump_size;
1495 ha->fw_dump->signature[0] = 'Q';
1496 ha->fw_dump->signature[1] = 'L';
1497 ha->fw_dump->signature[2] = 'G';
1498 ha->fw_dump->signature[3] = 'C';
1499 ha->fw_dump->version = __constant_htonl(1);
1500
1501 ha->fw_dump->fixed_size = htonl(fixed_size);
1502 ha->fw_dump->mem_size = htonl(mem_size);
1503 ha->fw_dump->req_q_size = htonl(req_q_size);
1504 ha->fw_dump->rsp_q_size = htonl(rsp_q_size);
1505
1506 ha->fw_dump->eft_size = htonl(eft_size);
1507 ha->fw_dump->eft_addr_l = htonl(LSD(ha->eft_dma));
1508 ha->fw_dump->eft_addr_h = htonl(MSD(ha->eft_dma));
1509
1510 ha->fw_dump->header_size =
1511 htonl(offsetof(struct qla2xxx_fw_dump, isp));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001512}
1513
Andrew Vasquez18e75552009-06-03 09:55:30 -07001514static int
1515qla81xx_mpi_sync(scsi_qla_host_t *vha)
1516{
1517#define MPS_MASK 0xe0
1518 int rval;
1519 uint16_t dc;
1520 uint32_t dw;
Andrew Vasquez18e75552009-06-03 09:55:30 -07001521
1522 if (!IS_QLA81XX(vha->hw))
1523 return QLA_SUCCESS;
1524
1525 rval = qla2x00_write_ram_word(vha, 0x7c00, 1);
1526 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001527 ql_log(ql_log_warn, vha, 0x0105,
1528 "Unable to acquire semaphore.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001529 goto done;
1530 }
1531
1532 pci_read_config_word(vha->hw->pdev, 0x54, &dc);
1533 rval = qla2x00_read_ram_word(vha, 0x7a15, &dw);
1534 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001535 ql_log(ql_log_warn, vha, 0x0067, "Unable to read sync.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001536 goto done_release;
1537 }
1538
1539 dc &= MPS_MASK;
1540 if (dc == (dw & MPS_MASK))
1541 goto done_release;
1542
1543 dw &= ~MPS_MASK;
1544 dw |= dc;
1545 rval = qla2x00_write_ram_word(vha, 0x7a15, dw);
1546 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001547 ql_log(ql_log_warn, vha, 0x0114, "Unable to gain sync.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001548 }
1549
1550done_release:
1551 rval = qla2x00_write_ram_word(vha, 0x7c00, 0);
1552 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001553 ql_log(ql_log_warn, vha, 0x006d,
1554 "Unable to release semaphore.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001555 }
1556
1557done:
1558 return rval;
1559}
1560
Chad Dupuis8d93f552013-01-30 03:34:37 -05001561int
1562qla2x00_alloc_outstanding_cmds(struct qla_hw_data *ha, struct req_que *req)
1563{
1564 /* Don't try to reallocate the array */
1565 if (req->outstanding_cmds)
1566 return QLA_SUCCESS;
1567
1568 if (!IS_FWI2_CAPABLE(ha) || (ha->mqiobase &&
1569 (ql2xmultique_tag || ql2xmaxqueues > 1)))
1570 req->num_outstanding_cmds = DEFAULT_OUTSTANDING_COMMANDS;
1571 else {
1572 if (ha->fw_xcb_count <= ha->fw_iocb_count)
1573 req->num_outstanding_cmds = ha->fw_xcb_count;
1574 else
1575 req->num_outstanding_cmds = ha->fw_iocb_count;
1576 }
1577
1578 req->outstanding_cmds = kzalloc(sizeof(srb_t *) *
1579 req->num_outstanding_cmds, GFP_KERNEL);
1580
1581 if (!req->outstanding_cmds) {
1582 /*
1583 * Try to allocate a minimal size just so we can get through
1584 * initialization.
1585 */
1586 req->num_outstanding_cmds = MIN_OUTSTANDING_COMMANDS;
1587 req->outstanding_cmds = kzalloc(sizeof(srb_t *) *
1588 req->num_outstanding_cmds, GFP_KERNEL);
1589
1590 if (!req->outstanding_cmds) {
1591 ql_log(ql_log_fatal, NULL, 0x0126,
1592 "Failed to allocate memory for "
1593 "outstanding_cmds for req_que %p.\n", req);
1594 req->num_outstanding_cmds = 0;
1595 return QLA_FUNCTION_FAILED;
1596 }
1597 }
1598
1599 return QLA_SUCCESS;
1600}
1601
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001602/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 * qla2x00_setup_chip() - Load and start RISC firmware.
1604 * @ha: HA context
1605 *
1606 * Returns 0 on success.
1607 */
1608static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001609qla2x00_setup_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001611 int rval;
1612 uint32_t srisc_address = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001613 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001614 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1615 unsigned long flags;
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001616 uint16_t fw_major_version;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001617
Giridhar Malavalia9083012010-04-12 17:59:55 -07001618 if (IS_QLA82XX(ha)) {
1619 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001620 if (rval == QLA_SUCCESS) {
1621 qla2x00_stop_firmware(vha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001622 goto enable_82xx_npiv;
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001623 } else
Giridhar Malavalib9637522010-05-28 15:08:15 -07001624 goto failed;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001625 }
1626
Andrew Vasquez3db06522008-01-31 12:33:49 -08001627 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1628 /* Disable SRAM, Instruction RAM and GP RAM parity. */
1629 spin_lock_irqsave(&ha->hardware_lock, flags);
1630 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x0));
1631 RD_REG_WORD(&reg->hccr);
1632 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Andrew Vasquez18e75552009-06-03 09:55:30 -07001635 qla81xx_mpi_sync(vha);
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 /* Load firmware sequences */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001638 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001639 if (rval == QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001640 ql_dbg(ql_dbg_init, vha, 0x00c9,
1641 "Verifying Checksum of loaded RISC code.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001643 rval = qla2x00_verify_checksum(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (rval == QLA_SUCCESS) {
1645 /* Start firmware execution. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001646 ql_dbg(ql_dbg_init, vha, 0x00ca,
1647 "Starting firmware.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001649 rval = qla2x00_execute_fw(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 /* Retrieve firmware information. */
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001651 if (rval == QLA_SUCCESS) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07001652enable_82xx_npiv:
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001653 fw_major_version = ha->fw_major_version;
Giridhar Malavali31731672011-08-16 11:31:54 -07001654 if (IS_QLA82XX(ha))
1655 qla82xx_check_md_needed(vha);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001656 else
1657 rval = qla2x00_get_fw_version(vha);
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001658 if (rval != QLA_SUCCESS)
1659 goto failed;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001660 ha->flags.npiv_supported = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001661 if (IS_QLA2XXX_MIDTYPE(ha) &&
Mike Hernandez946fb892008-08-13 21:36:59 -07001662 (ha->fw_attributes & BIT_2)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001663 ha->flags.npiv_supported = 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001664 if ((!ha->max_npiv_vports) ||
1665 ((ha->max_npiv_vports + 1) %
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001666 MIN_MULTI_ID_FABRIC))
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001667 ha->max_npiv_vports =
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001668 MIN_MULTI_ID_FABRIC - 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001669 }
Andrew Vasquez24a08132009-03-24 09:08:16 -07001670 qla2x00_get_resource_cnts(vha, NULL,
Chad Dupuis8d93f552013-01-30 03:34:37 -05001671 &ha->fw_xcb_count, NULL, &ha->fw_iocb_count,
Andrew Vasquezf3a0a772009-10-13 15:16:49 -07001672 &ha->max_npiv_vports, NULL);
Andrew Vasquezd743de62009-03-24 09:08:15 -07001673
Chad Dupuis8d93f552013-01-30 03:34:37 -05001674 /*
1675 * Allocate the array of outstanding commands
1676 * now that we know the firmware resources.
1677 */
1678 rval = qla2x00_alloc_outstanding_cmds(ha,
1679 vha->req);
1680 if (rval != QLA_SUCCESS)
1681 goto failed;
1682
Saurav Kashyapbe5ea3c2011-11-18 09:02:11 -08001683 if (!fw_major_version && ql2xallocfwdump
1684 && !IS_QLA82XX(ha))
Giridhar Malavali08de2842011-08-16 11:31:44 -07001685 qla2x00_alloc_fw_dump(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
1687 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001688 ql_log(ql_log_fatal, vha, 0x00cd,
1689 "ISP Firmware failed checksum.\n");
1690 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
Andrew Vasquezc74d88a2012-08-22 14:21:19 -04001692 } else
1693 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Andrew Vasquez3db06522008-01-31 12:33:49 -08001695 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1696 /* Enable proper parity. */
1697 spin_lock_irqsave(&ha->hardware_lock, flags);
1698 if (IS_QLA2300(ha))
1699 /* SRAM parity */
1700 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x1);
1701 else
1702 /* SRAM, Instruction RAM and GP RAM parity */
1703 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x7);
1704 RD_REG_WORD(&reg->hccr);
1705 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1706 }
1707
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001708 if (IS_QLA83XX(ha))
1709 goto skip_fac_check;
1710
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001711 if (rval == QLA_SUCCESS && IS_FAC_REQUIRED(ha)) {
1712 uint32_t size;
1713
1714 rval = qla81xx_fac_get_sector_size(vha, &size);
1715 if (rval == QLA_SUCCESS) {
1716 ha->flags.fac_supported = 1;
1717 ha->fdt_block_size = size << 2;
1718 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001719 ql_log(ql_log_warn, vha, 0x00ce,
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001720 "Unsupported FAC firmware (%d.%02d.%02d).\n",
1721 ha->fw_major_version, ha->fw_minor_version,
1722 ha->fw_subminor_version);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001723skip_fac_check:
1724 if (IS_QLA83XX(ha)) {
1725 ha->flags.fac_supported = 0;
1726 rval = QLA_SUCCESS;
1727 }
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001728 }
1729 }
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001730failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001732 ql_log(ql_log_fatal, vha, 0x00cf,
1733 "Setup chip ****FAILED****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
1735
1736 return (rval);
1737}
1738
1739/**
1740 * qla2x00_init_response_q_entries() - Initializes response queue entries.
1741 * @ha: HA context
1742 *
1743 * Beginning of request ring has initialization control block already built
1744 * by nvram config routine.
1745 *
1746 * Returns 0 on success.
1747 */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001748void
1749qla2x00_init_response_q_entries(struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
1751 uint16_t cnt;
1752 response_t *pkt;
1753
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001754 rsp->ring_ptr = rsp->ring;
1755 rsp->ring_index = 0;
1756 rsp->status_srb = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001757 pkt = rsp->ring_ptr;
1758 for (cnt = 0; cnt < rsp->length; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 pkt->signature = RESPONSE_PROCESSED;
1760 pkt++;
1761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
1764/**
1765 * qla2x00_update_fw_options() - Read and process firmware options.
1766 * @ha: HA context
1767 *
1768 * Returns 0 on success.
1769 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001770void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001771qla2x00_update_fw_options(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
1773 uint16_t swing, emphasis, tx_sens, rx_sens;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001774 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 memset(ha->fw_options, 0, sizeof(ha->fw_options));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001777 qla2x00_get_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1780 return;
1781
1782 /* Serial Link options. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001783 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x0115,
1784 "Serial link options.\n");
1785 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0109,
1786 (uint8_t *)&ha->fw_seriallink_options,
1787 sizeof(ha->fw_seriallink_options));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1790 if (ha->fw_seriallink_options[3] & BIT_2) {
1791 ha->fw_options[1] |= FO1_SET_EMPHASIS_SWING;
1792
1793 /* 1G settings */
1794 swing = ha->fw_seriallink_options[2] & (BIT_2 | BIT_1 | BIT_0);
1795 emphasis = (ha->fw_seriallink_options[2] &
1796 (BIT_4 | BIT_3)) >> 3;
1797 tx_sens = ha->fw_seriallink_options[0] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001798 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 rx_sens = (ha->fw_seriallink_options[0] &
1800 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1801 ha->fw_options[10] = (emphasis << 14) | (swing << 8);
1802 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1803 if (rx_sens == 0x0)
1804 rx_sens = 0x3;
1805 ha->fw_options[10] |= (tx_sens << 4) | rx_sens;
1806 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1807 ha->fw_options[10] |= BIT_5 |
1808 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1809 (tx_sens & (BIT_1 | BIT_0));
1810
1811 /* 2G settings */
1812 swing = (ha->fw_seriallink_options[2] &
1813 (BIT_7 | BIT_6 | BIT_5)) >> 5;
1814 emphasis = ha->fw_seriallink_options[3] & (BIT_1 | BIT_0);
1815 tx_sens = ha->fw_seriallink_options[1] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001816 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 rx_sens = (ha->fw_seriallink_options[1] &
1818 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1819 ha->fw_options[11] = (emphasis << 14) | (swing << 8);
1820 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1821 if (rx_sens == 0x0)
1822 rx_sens = 0x3;
1823 ha->fw_options[11] |= (tx_sens << 4) | rx_sens;
1824 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1825 ha->fw_options[11] |= BIT_5 |
1826 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1827 (tx_sens & (BIT_1 | BIT_0));
1828 }
1829
1830 /* FCP2 options. */
1831 /* Return command IOCBs without waiting for an ABTS to complete. */
1832 ha->fw_options[3] |= BIT_13;
1833
1834 /* LED scheme. */
1835 if (ha->flags.enable_led_scheme)
1836 ha->fw_options[2] |= BIT_12;
1837
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08001838 /* Detect ISP6312. */
1839 if (IS_QLA6312(ha))
1840 ha->fw_options[2] |= BIT_13;
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 /* Update firmware options. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001843 qla2x00_set_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844}
1845
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001846void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001847qla24xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001848{
1849 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001850 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001851
Giridhar Malavalia9083012010-04-12 17:59:55 -07001852 if (IS_QLA82XX(ha))
1853 return;
1854
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001855 /* Update Serial Link options. */
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001856 if ((le16_to_cpu(ha->fw_seriallink_options24[0]) & BIT_0) == 0)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001857 return;
1858
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001859 rval = qla2x00_set_serdes_params(vha,
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001860 le16_to_cpu(ha->fw_seriallink_options24[1]),
1861 le16_to_cpu(ha->fw_seriallink_options24[2]),
1862 le16_to_cpu(ha->fw_seriallink_options24[3]));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001863 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001864 ql_log(ql_log_warn, vha, 0x0104,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001865 "Unable to update Serial Link options (%x).\n", rval);
1866 }
1867}
1868
1869void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001870qla2x00_config_rings(struct scsi_qla_host *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001871{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001872 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001873 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001874 struct req_que *req = ha->req_q_map[0];
1875 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001876
1877 /* Setup ring parameters in initialization control block. */
1878 ha->init_cb->request_q_outpointer = __constant_cpu_to_le16(0);
1879 ha->init_cb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001880 ha->init_cb->request_q_length = cpu_to_le16(req->length);
1881 ha->init_cb->response_q_length = cpu_to_le16(rsp->length);
1882 ha->init_cb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1883 ha->init_cb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1884 ha->init_cb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1885 ha->init_cb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001886
1887 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), 0);
1888 WRT_REG_WORD(ISP_REQ_Q_OUT(ha, reg), 0);
1889 WRT_REG_WORD(ISP_RSP_Q_IN(ha, reg), 0);
1890 WRT_REG_WORD(ISP_RSP_Q_OUT(ha, reg), 0);
1891 RD_REG_WORD(ISP_RSP_Q_OUT(ha, reg)); /* PCI Posting. */
1892}
1893
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001894void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001895qla24xx_config_rings(struct scsi_qla_host *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001896{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001897 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001898 device_reg_t __iomem *reg = ISP_QUE_REG(ha, 0);
1899 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1900 struct qla_msix_entry *msix;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001901 struct init_cb_24xx *icb;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001902 uint16_t rid = 0;
1903 struct req_que *req = ha->req_q_map[0];
1904 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001905
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001906 /* Setup ring parameters in initialization control block. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001907 icb = (struct init_cb_24xx *)ha->init_cb;
1908 icb->request_q_outpointer = __constant_cpu_to_le16(0);
1909 icb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001910 icb->request_q_length = cpu_to_le16(req->length);
1911 icb->response_q_length = cpu_to_le16(rsp->length);
1912 icb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1913 icb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1914 icb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1915 icb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001916
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001917 /* Setup ATIO queue dma pointers for target mode */
1918 icb->atio_q_inpointer = __constant_cpu_to_le16(0);
1919 icb->atio_q_length = cpu_to_le16(ha->tgt.atio_q_length);
1920 icb->atio_q_address[0] = cpu_to_le32(LSD(ha->tgt.atio_dma));
1921 icb->atio_q_address[1] = cpu_to_le32(MSD(ha->tgt.atio_dma));
1922
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001923 if (ha->mqenable || IS_QLA83XX(ha)) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001924 icb->qos = __constant_cpu_to_le16(QLA_DEFAULT_QUE_QOS);
1925 icb->rid = __constant_cpu_to_le16(rid);
1926 if (ha->flags.msix_enabled) {
1927 msix = &ha->msix_entries[1];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001928 ql_dbg(ql_dbg_init, vha, 0x00fd,
1929 "Registering vector 0x%x for base que.\n",
1930 msix->entry);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001931 icb->msix = cpu_to_le16(msix->entry);
1932 }
1933 /* Use alternate PCI bus number */
1934 if (MSB(rid))
1935 icb->firmware_options_2 |=
1936 __constant_cpu_to_le32(BIT_19);
1937 /* Use alternate PCI devfn */
1938 if (LSB(rid))
1939 icb->firmware_options_2 |=
1940 __constant_cpu_to_le32(BIT_18);
1941
Anirban Chakraborty31557542009-12-02 10:36:55 -08001942 /* Use Disable MSIX Handshake mode for capable adapters */
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001943 if ((ha->fw_attributes & BIT_6) && (IS_MSIX_NACK_CAPABLE(ha)) &&
1944 (ha->flags.msix_enabled)) {
Anirban Chakraborty31557542009-12-02 10:36:55 -08001945 icb->firmware_options_2 &=
1946 __constant_cpu_to_le32(~BIT_22);
1947 ha->flags.disable_msix_handshake = 1;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001948 ql_dbg(ql_dbg_init, vha, 0x00fe,
1949 "MSIX Handshake Disable Mode turned on.\n");
Anirban Chakraborty31557542009-12-02 10:36:55 -08001950 } else {
1951 icb->firmware_options_2 |=
1952 __constant_cpu_to_le32(BIT_22);
1953 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001954 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_23);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001955
1956 WRT_REG_DWORD(&reg->isp25mq.req_q_in, 0);
1957 WRT_REG_DWORD(&reg->isp25mq.req_q_out, 0);
1958 WRT_REG_DWORD(&reg->isp25mq.rsp_q_in, 0);
1959 WRT_REG_DWORD(&reg->isp25mq.rsp_q_out, 0);
1960 } else {
1961 WRT_REG_DWORD(&reg->isp24.req_q_in, 0);
1962 WRT_REG_DWORD(&reg->isp24.req_q_out, 0);
1963 WRT_REG_DWORD(&reg->isp24.rsp_q_in, 0);
1964 WRT_REG_DWORD(&reg->isp24.rsp_q_out, 0);
1965 }
Arun Easiaa230bc2013-01-30 03:34:39 -05001966 qlt_24xx_config_rings(vha);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001967
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001968 /* PCI posting */
1969 RD_REG_DWORD(&ioreg->hccr);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001970}
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972/**
1973 * qla2x00_init_rings() - Initializes firmware.
1974 * @ha: HA context
1975 *
1976 * Beginning of request ring has initialization control block already built
1977 * by nvram config routine.
1978 *
1979 * Returns 0 on success.
1980 */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001981int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001982qla2x00_init_rings(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 int rval;
1985 unsigned long flags = 0;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001986 int cnt, que;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001987 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001988 struct req_que *req;
1989 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001990 struct mid_init_cb_24xx *mid_init_cb =
1991 (struct mid_init_cb_24xx *) ha->init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993 spin_lock_irqsave(&ha->hardware_lock, flags);
1994
1995 /* Clear outstanding commands array. */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001996 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001997 req = ha->req_q_map[que];
1998 if (!req)
1999 continue;
Chad Dupuis8d93f552013-01-30 03:34:37 -05002000 for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++)
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002001 req->outstanding_cmds[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002003 req->current_outstanding_cmd = 1;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002004
2005 /* Initialize firmware. */
2006 req->ring_ptr = req->ring;
2007 req->ring_index = 0;
2008 req->cnt = req->length;
2009 }
2010
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002011 for (que = 0; que < ha->max_rsp_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002012 rsp = ha->rsp_q_map[que];
2013 if (!rsp)
2014 continue;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002015 /* Initialize response queue entries */
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002016 if (IS_QLAFX00(ha))
2017 qlafx00_init_response_q_entries(rsp);
2018 else
2019 qla2x00_init_response_q_entries(rsp);
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08002020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002022 ha->tgt.atio_ring_ptr = ha->tgt.atio_ring;
2023 ha->tgt.atio_ring_index = 0;
2024 /* Initialize ATIO queue entries */
2025 qlt_init_atio_q_entries(vha);
2026
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002027 ha->isp_ops->config_rings(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2030
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002031 ql_dbg(ql_dbg_init, vha, 0x00d1, "Issue init firmware.\n");
2032
2033 if (IS_QLAFX00(ha)) {
2034 rval = qlafx00_init_firmware(vha, ha->init_cb_size);
2035 goto next_check;
2036 }
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 /* Update any ISP specific firmware options before initialization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002039 ha->isp_ops->update_fw_options(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08002041 if (ha->flags.npiv_supported) {
Saurav Kashyap45980cc2012-08-22 14:21:21 -04002042 if (ha->operating_mode == LOOP && !IS_CNA_CAPABLE(ha))
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08002043 ha->max_npiv_vports = MIN_MULTI_ID_FABRIC - 1;
Seokmann Juc48339d2008-01-17 09:02:19 -08002044 mid_init_cb->count = cpu_to_le16(ha->max_npiv_vports);
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08002045 }
2046
Andrew Vasquez24a08132009-03-24 09:08:16 -07002047 if (IS_FWI2_CAPABLE(ha)) {
2048 mid_init_cb->options = __constant_cpu_to_le16(BIT_1);
2049 mid_init_cb->init_cb.execution_throttle =
2050 cpu_to_le16(ha->fw_xcb_count);
2051 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002052
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002053 rval = qla2x00_init_firmware(vha, ha->init_cb_size);
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002054next_check:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002056 ql_log(ql_log_fatal, vha, 0x00d2,
2057 "Init Firmware **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002059 ql_dbg(ql_dbg_init, vha, 0x00d3,
2060 "Init Firmware -- success.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
2062
2063 return (rval);
2064}
2065
2066/**
2067 * qla2x00_fw_ready() - Waits for firmware ready.
2068 * @ha: HA context
2069 *
2070 * Returns 0 on success.
2071 */
2072static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002073qla2x00_fw_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
2075 int rval;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002076 unsigned long wtime, mtime, cs84xx_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 uint16_t min_wait; /* Minimum wait time if loop is down */
2078 uint16_t wait_time; /* Wait time if loop is coming ready */
Andrew Vasquez656e8912009-06-03 09:55:29 -07002079 uint16_t state[5];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002080 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002082 if (IS_QLAFX00(vha->hw))
2083 return qlafx00_fw_ready(vha);
2084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 rval = QLA_SUCCESS;
2086
2087 /* 20 seconds for loop down. */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002088 min_wait = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 /*
2091 * Firmware should take at most one RATOV to login, plus 5 seconds for
2092 * our own processing.
2093 */
2094 if ((wait_time = (ha->retry_count*ha->login_timeout) + 5) < min_wait) {
2095 wait_time = min_wait;
2096 }
2097
2098 /* Min wait time if loop down */
2099 mtime = jiffies + (min_wait * HZ);
2100
2101 /* wait time before firmware ready */
2102 wtime = jiffies + (wait_time * HZ);
2103
2104 /* Wait for ISP to finish LIP */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002105 if (!vha->flags.init_done)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002106 ql_log(ql_log_info, vha, 0x801e,
2107 "Waiting for LIP to complete.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 do {
Andrew Vasquez5b939032012-11-21 02:40:26 -05002110 memset(state, -1, sizeof(state));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002111 rval = qla2x00_get_firmware_state(vha, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (rval == QLA_SUCCESS) {
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002113 if (state[0] < FSTATE_LOSS_OF_SYNC) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002114 vha->device_flags &= ~DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002116 if (IS_QLA84XX(ha) && state[0] != FSTATE_READY) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002117 ql_dbg(ql_dbg_taskm, vha, 0x801f,
2118 "fw_state=%x 84xx=%x.\n", state[0],
2119 state[2]);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002120 if ((state[2] & FSTATE_LOGGED_IN) &&
2121 (state[2] & FSTATE_WAITING_FOR_VERIFY)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002122 ql_dbg(ql_dbg_taskm, vha, 0x8028,
2123 "Sending verify iocb.\n");
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002124
2125 cs84xx_time = jiffies;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002126 rval = qla84xx_init_chip(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002127 if (rval != QLA_SUCCESS) {
2128 ql_log(ql_log_warn,
Chad Dupuiscfb09192011-11-18 09:03:07 -08002129 vha, 0x8007,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002130 "Init chip failed.\n");
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002131 break;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002132 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002133
2134 /* Add time taken to initialize. */
2135 cs84xx_time = jiffies - cs84xx_time;
2136 wtime += cs84xx_time;
2137 mtime += cs84xx_time;
Chad Dupuiscfb09192011-11-18 09:03:07 -08002138 ql_dbg(ql_dbg_taskm, vha, 0x8008,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002139 "Increasing wait time by %ld. "
2140 "New time %ld.\n", cs84xx_time,
2141 wtime);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002142 }
2143 } else if (state[0] == FSTATE_READY) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002144 ql_dbg(ql_dbg_taskm, vha, 0x8037,
2145 "F/W Ready - OK.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002147 qla2x00_get_retry_cnt(vha, &ha->retry_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 &ha->login_timeout, &ha->r_a_tov);
2149
2150 rval = QLA_SUCCESS;
2151 break;
2152 }
2153
2154 rval = QLA_FUNCTION_FAILED;
2155
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002156 if (atomic_read(&vha->loop_down_timer) &&
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002157 state[0] != FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 /* Loop down. Timeout on min_wait for states
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002159 * other than Wait for Login.
2160 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if (time_after_eq(jiffies, mtime)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002162 ql_log(ql_log_info, vha, 0x8038,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 "Cable is unplugged...\n");
2164
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002165 vha->device_flags |= DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 break;
2167 }
2168 }
2169 } else {
2170 /* Mailbox cmd failed. Timeout on min_wait. */
Santosh Vernekarcdbb0a4f2010-05-28 15:08:25 -07002171 if (time_after_eq(jiffies, mtime) ||
Giridhar Malavali71905752011-02-23 15:27:10 -08002172 ha->flags.isp82xx_fw_hung)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 break;
2174 }
2175
2176 if (time_after_eq(jiffies, wtime))
2177 break;
2178
2179 /* Delay for a while */
2180 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 } while (1);
2182
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002183 ql_dbg(ql_dbg_taskm, vha, 0x803a,
2184 "fw_state=%x (%x, %x, %x, %x) " "curr time=%lx.\n", state[0],
2185 state[1], state[2], state[3], state[4], jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Chad Dupuiscfb09192011-11-18 09:03:07 -08002187 if (rval && !(vha->device_flags & DFLG_NO_CABLE)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002188 ql_log(ql_log_warn, vha, 0x803b,
2189 "Firmware ready **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 }
2191
2192 return (rval);
2193}
2194
2195/*
2196* qla2x00_configure_hba
2197* Setup adapter context.
2198*
2199* Input:
2200* ha = adapter state pointer.
2201*
2202* Returns:
2203* 0 = success
2204*
2205* Context:
2206* Kernel context.
2207*/
2208static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002209qla2x00_configure_hba(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
2211 int rval;
2212 uint16_t loop_id;
2213 uint16_t topo;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002214 uint16_t sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 uint8_t al_pa;
2216 uint8_t area;
2217 uint8_t domain;
2218 char connect_type[22];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002219 struct qla_hw_data *ha = vha->hw;
Jiri Kosinaf24b5cb2012-10-08 09:23:54 +02002220 unsigned long flags;
Joe Carnuccio61e1b262013-02-08 01:57:48 -05002221 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 /* Get host addresses. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002224 rval = qla2x00_get_adapter_id(vha,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002225 &loop_id, &al_pa, &area, &domain, &topo, &sw_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002227 if (LOOP_TRANSITION(vha) || atomic_read(&ha->loop_down_timer) ||
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002228 IS_CNA_CAPABLE(ha) ||
Ravi Anand33135aa2005-11-08 14:37:20 -08002229 (rval == QLA_COMMAND_ERROR && loop_id == 0x7)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002230 ql_dbg(ql_dbg_disc, vha, 0x2008,
2231 "Loop is in a transition state.\n");
Ravi Anand33135aa2005-11-08 14:37:20 -08002232 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002233 ql_log(ql_log_warn, vha, 0x2009,
2234 "Unable to get host loop ID.\n");
Joe Carnuccio61e1b262013-02-08 01:57:48 -05002235 if (IS_FWI2_CAPABLE(ha) && (vha == base_vha) &&
2236 (rval == QLA_COMMAND_ERROR && loop_id == 0x1b)) {
2237 ql_log(ql_log_warn, vha, 0x1151,
2238 "Doing link init.\n");
2239 if (qla24xx_link_initialize(vha) == QLA_SUCCESS)
2240 return rval;
2241 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002242 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Ravi Anand33135aa2005-11-08 14:37:20 -08002243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 return (rval);
2245 }
2246
2247 if (topo == 4) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002248 ql_log(ql_log_info, vha, 0x200a,
2249 "Cannot get topology - retrying.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 return (QLA_FUNCTION_FAILED);
2251 }
2252
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002253 vha->loop_id = loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 /* initialize */
2256 ha->min_external_loopid = SNS_FIRST_LOOP_ID;
2257 ha->operating_mode = LOOP;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002258 ha->switch_cap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 switch (topo) {
2261 case 0:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002262 ql_dbg(ql_dbg_disc, vha, 0x200b, "HBA in NL topology.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 ha->current_topology = ISP_CFG_NL;
2264 strcpy(connect_type, "(Loop)");
2265 break;
2266
2267 case 1:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002268 ql_dbg(ql_dbg_disc, vha, 0x200c, "HBA in FL topology.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002269 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 ha->current_topology = ISP_CFG_FL;
2271 strcpy(connect_type, "(FL_Port)");
2272 break;
2273
2274 case 2:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002275 ql_dbg(ql_dbg_disc, vha, 0x200d, "HBA in N P2P topology.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 ha->operating_mode = P2P;
2277 ha->current_topology = ISP_CFG_N;
2278 strcpy(connect_type, "(N_Port-to-N_Port)");
2279 break;
2280
2281 case 3:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002282 ql_dbg(ql_dbg_disc, vha, 0x200e, "HBA in F P2P topology.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002283 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 ha->operating_mode = P2P;
2285 ha->current_topology = ISP_CFG_F;
2286 strcpy(connect_type, "(F_Port)");
2287 break;
2288
2289 default:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002290 ql_dbg(ql_dbg_disc, vha, 0x200f,
2291 "HBA in unknown topology %x, using NL.\n", topo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 ha->current_topology = ISP_CFG_NL;
2293 strcpy(connect_type, "(Loop)");
2294 break;
2295 }
2296
2297 /* Save Host port and loop ID. */
2298 /* byte order - Big Endian */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002299 vha->d_id.b.domain = domain;
2300 vha->d_id.b.area = area;
2301 vha->d_id.b.al_pa = al_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Jiri Kosinaf24b5cb2012-10-08 09:23:54 +02002303 spin_lock_irqsave(&ha->vport_slock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002304 qlt_update_vp_map(vha, SET_AL_PA);
Jiri Kosinaf24b5cb2012-10-08 09:23:54 +02002305 spin_unlock_irqrestore(&ha->vport_slock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002306
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002307 if (!vha->flags.init_done)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002308 ql_log(ql_log_info, vha, 0x2010,
2309 "Topology - %s, Host Loop address 0x%x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002310 connect_type, vha->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 return(rval);
2313}
2314
Giridhar Malavalia9083012010-04-12 17:59:55 -07002315inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002316qla2x00_set_model_info(scsi_qla_host_t *vha, uint8_t *model, size_t len,
2317 char *def)
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002318{
2319 char *st, *en;
2320 uint16_t index;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002321 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezab671142009-08-25 11:36:17 -07002322 int use_tbl = !IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002323 !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002324
2325 if (memcmp(model, BINZERO, len) != 0) {
2326 strncpy(ha->model_number, model, len);
2327 st = en = ha->model_number;
2328 en += len - 1;
2329 while (en > st) {
2330 if (*en != 0x20 && *en != 0x00)
2331 break;
2332 *en-- = '\0';
2333 }
2334
2335 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002336 if (use_tbl &&
2337 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002338 index < QLA_MODEL_NAMES)
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002339 strncpy(ha->model_desc,
2340 qla2x00_model_name[index * 2 + 1],
2341 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002342 } else {
2343 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002344 if (use_tbl &&
2345 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002346 index < QLA_MODEL_NAMES) {
2347 strcpy(ha->model_number,
2348 qla2x00_model_name[index * 2]);
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002349 strncpy(ha->model_desc,
2350 qla2x00_model_name[index * 2 + 1],
2351 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002352 } else {
2353 strcpy(ha->model_number, def);
2354 }
2355 }
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002356 if (IS_FWI2_CAPABLE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002357 qla2xxx_get_vpd_field(vha, "\x82", ha->model_desc,
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002358 sizeof(ha->model_desc));
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002359}
2360
David Miller4e08df32007-04-16 12:37:43 -07002361/* On sparc systems, obtain port and node WWN from firmware
2362 * properties.
2363 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002364static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t *vha, nvram_t *nv)
David Miller4e08df32007-04-16 12:37:43 -07002365{
2366#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002367 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07002368 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07002369 struct device_node *dp = pci_device_to_OF_node(pdev);
2370 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07002371 int len;
2372
2373 val = of_get_property(dp, "port-wwn", &len);
2374 if (val && len >= WWN_SIZE)
2375 memcpy(nv->port_name, val, WWN_SIZE);
2376
2377 val = of_get_property(dp, "node-wwn", &len);
2378 if (val && len >= WWN_SIZE)
2379 memcpy(nv->node_name, val, WWN_SIZE);
2380#endif
2381}
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383/*
2384* NVRAM configuration for ISP 2xxx
2385*
2386* Input:
2387* ha = adapter block pointer.
2388*
2389* Output:
2390* initialization control block in response_ring
2391* host adapters parameters in host adapter block
2392*
2393* Returns:
2394* 0 = success.
2395*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002396int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002397qla2x00_nvram_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
David Miller4e08df32007-04-16 12:37:43 -07002399 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002400 uint8_t chksum = 0;
2401 uint16_t cnt;
2402 uint8_t *dptr1, *dptr2;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002403 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002404 init_cb_t *icb = ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07002405 nvram_t *nv = ha->nvram;
2406 uint8_t *ptr = ha->nvram;
Andrew Vasquez3d716442005-07-06 10:30:26 -07002407 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
David Miller4e08df32007-04-16 12:37:43 -07002409 rval = QLA_SUCCESS;
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 /* Determine NVRAM starting address. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002412 ha->nvram_size = sizeof(nvram_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 ha->nvram_base = 0;
2414 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha))
2415 if ((RD_REG_WORD(&reg->ctrl_status) >> 14) == 1)
2416 ha->nvram_base = 0x80;
2417
2418 /* Get NVRAM data and calculate checksum. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002419 ha->isp_ops->read_nvram(vha, ptr, ha->nvram_base, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002420 for (cnt = 0, chksum = 0; cnt < ha->nvram_size; cnt++)
2421 chksum += *ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002423 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x010f,
2424 "Contents of NVRAM.\n");
2425 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0110,
2426 (uint8_t *)nv, ha->nvram_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428 /* Bad NVRAM data, set defaults parameters. */
2429 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' ||
2430 nv->id[2] != 'P' || nv->id[3] != ' ' || nv->nvram_version < 1) {
2431 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002432 ql_log(ql_log_warn, vha, 0x0064,
Raul Porcel9e336522012-05-15 14:34:08 -04002433 "Inconsistent NVRAM "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002434 "detected: checksum=0x%x id=%c version=0x%x.\n",
2435 chksum, nv->id[0], nv->nvram_version);
2436 ql_log(ql_log_warn, vha, 0x0065,
2437 "Falling back to "
2438 "functioning (yet invalid -- WWPN) defaults.\n");
David Miller4e08df32007-04-16 12:37:43 -07002439
2440 /*
2441 * Set default initialization control block.
2442 */
2443 memset(nv, 0, ha->nvram_size);
2444 nv->parameter_block_version = ICB_VERSION;
2445
2446 if (IS_QLA23XX(ha)) {
2447 nv->firmware_options[0] = BIT_2 | BIT_1;
2448 nv->firmware_options[1] = BIT_7 | BIT_5;
2449 nv->add_firmware_options[0] = BIT_5;
2450 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2451 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2452 nv->special_options[1] = BIT_7;
2453 } else if (IS_QLA2200(ha)) {
2454 nv->firmware_options[0] = BIT_2 | BIT_1;
2455 nv->firmware_options[1] = BIT_7 | BIT_5;
2456 nv->add_firmware_options[0] = BIT_5;
2457 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2458 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2459 } else if (IS_QLA2100(ha)) {
2460 nv->firmware_options[0] = BIT_3 | BIT_1;
2461 nv->firmware_options[1] = BIT_5;
2462 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2463 }
2464
2465 nv->max_iocb_allocation = __constant_cpu_to_le16(256);
2466 nv->execution_throttle = __constant_cpu_to_le16(16);
2467 nv->retry_count = 8;
2468 nv->retry_delay = 1;
2469
2470 nv->port_name[0] = 33;
2471 nv->port_name[3] = 224;
2472 nv->port_name[4] = 139;
2473
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002474 qla2xxx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07002475
2476 nv->login_timeout = 4;
2477
2478 /*
2479 * Set default host adapter parameters
2480 */
2481 nv->host_p[1] = BIT_2;
2482 nv->reset_delay = 5;
2483 nv->port_down_retry_count = 8;
2484 nv->max_luns_per_target = __constant_cpu_to_le16(8);
2485 nv->link_down_timeout = 60;
2486
2487 rval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 }
2489
2490#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
2491 /*
2492 * The SN2 does not provide BIOS emulation which means you can't change
2493 * potentially bogus BIOS settings. Force the use of default settings
2494 * for link rate and frame size. Hope that the rest of the settings
2495 * are valid.
2496 */
2497 if (ia64_platform_is("sn2")) {
2498 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2499 if (IS_QLA23XX(ha))
2500 nv->special_options[1] = BIT_7;
2501 }
2502#endif
2503
2504 /* Reset Initialization control block */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002505 memset(icb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
2507 /*
2508 * Setup driver NVRAM options.
2509 */
2510 nv->firmware_options[0] |= (BIT_6 | BIT_1);
2511 nv->firmware_options[0] &= ~(BIT_5 | BIT_4);
2512 nv->firmware_options[1] |= (BIT_5 | BIT_0);
2513 nv->firmware_options[1] &= ~BIT_4;
2514
2515 if (IS_QLA23XX(ha)) {
2516 nv->firmware_options[0] |= BIT_2;
2517 nv->firmware_options[0] &= ~BIT_3;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002518 nv->special_options[0] &= ~BIT_6;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002519 nv->add_firmware_options[1] |= BIT_5 | BIT_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 if (IS_QLA2300(ha)) {
2522 if (ha->fb_rev == FPM_2310) {
2523 strcpy(ha->model_number, "QLA2310");
2524 } else {
2525 strcpy(ha->model_number, "QLA2300");
2526 }
2527 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002528 qla2x00_set_model_info(vha, nv->model_number,
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002529 sizeof(nv->model_number), "QLA23xx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 }
2531 } else if (IS_QLA2200(ha)) {
2532 nv->firmware_options[0] |= BIT_2;
2533 /*
2534 * 'Point-to-point preferred, else loop' is not a safe
2535 * connection mode setting.
2536 */
2537 if ((nv->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) ==
2538 (BIT_5 | BIT_4)) {
2539 /* Force 'loop preferred, else point-to-point'. */
2540 nv->add_firmware_options[0] &= ~(BIT_6 | BIT_5 | BIT_4);
2541 nv->add_firmware_options[0] |= BIT_5;
2542 }
2543 strcpy(ha->model_number, "QLA22xx");
2544 } else /*if (IS_QLA2100(ha))*/ {
2545 strcpy(ha->model_number, "QLA2100");
2546 }
2547
2548 /*
2549 * Copy over NVRAM RISC parameter block to initialization control block.
2550 */
2551 dptr1 = (uint8_t *)icb;
2552 dptr2 = (uint8_t *)&nv->parameter_block_version;
2553 cnt = (uint8_t *)&icb->request_q_outpointer - (uint8_t *)&icb->version;
2554 while (cnt--)
2555 *dptr1++ = *dptr2++;
2556
2557 /* Copy 2nd half. */
2558 dptr1 = (uint8_t *)icb->add_firmware_options;
2559 cnt = (uint8_t *)icb->reserved_3 - (uint8_t *)icb->add_firmware_options;
2560 while (cnt--)
2561 *dptr1++ = *dptr2++;
2562
Andrew Vasquez5341e862006-05-17 15:09:16 -07002563 /* Use alternate WWN? */
2564 if (nv->host_p[1] & BIT_7) {
2565 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
2566 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
2567 }
2568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 /* Prepare nodename */
2570 if ((icb->firmware_options[1] & BIT_6) == 0) {
2571 /*
2572 * Firmware will apply the following mask if the nodename was
2573 * not provided.
2574 */
2575 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
2576 icb->node_name[0] &= 0xF0;
2577 }
2578
2579 /*
2580 * Set host adapter parameters.
2581 */
Saurav Kashyap3ce88662011-07-14 12:00:12 -07002582
2583 /*
2584 * BIT_7 in the host-parameters section allows for modification to
2585 * internal driver logging.
2586 */
Andrew Vasquez01819442006-06-23 16:11:10 -07002587 if (nv->host_p[0] & BIT_7)
Chad Dupuiscfb09192011-11-18 09:03:07 -08002588 ql2xextended_error_logging = QL_DBG_DEFAULT1_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 ha->flags.disable_risc_code_load = ((nv->host_p[0] & BIT_4) ? 1 : 0);
2590 /* Always load RISC code on non ISP2[12]00 chips. */
2591 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
2592 ha->flags.disable_risc_code_load = 0;
2593 ha->flags.enable_lip_reset = ((nv->host_p[1] & BIT_1) ? 1 : 0);
2594 ha->flags.enable_lip_full_login = ((nv->host_p[1] & BIT_2) ? 1 : 0);
2595 ha->flags.enable_target_reset = ((nv->host_p[1] & BIT_3) ? 1 : 0);
Andrew Vasquez06c22bd2005-08-26 19:09:00 -07002596 ha->flags.enable_led_scheme = (nv->special_options[1] & BIT_4) ? 1 : 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07002597 ha->flags.disable_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 ha->operating_mode =
2600 (icb->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) >> 4;
2601
2602 memcpy(ha->fw_seriallink_options, nv->seriallink_options,
2603 sizeof(ha->fw_seriallink_options));
2604
2605 /* save HBA serial number */
2606 ha->serial0 = icb->port_name[5];
2607 ha->serial1 = icb->port_name[6];
2608 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002609 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
2610 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
2613
2614 ha->retry_count = nv->retry_count;
2615
2616 /* Set minimum login_timeout to 4 seconds. */
Andrew Vasquez5b914902010-05-28 15:08:30 -07002617 if (nv->login_timeout != ql2xlogintimeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 nv->login_timeout = ql2xlogintimeout;
2619 if (nv->login_timeout < 4)
2620 nv->login_timeout = 4;
2621 ha->login_timeout = nv->login_timeout;
2622 icb->login_timeout = nv->login_timeout;
2623
Andrew Vasquez00a537b2008-02-28 14:06:11 -08002624 /* Set minimum RATOV to 100 tenths of a second. */
2625 ha->r_a_tov = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 ha->loop_reset_delay = nv->reset_delay;
2628
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 /* Link Down Timeout = 0:
2630 *
2631 * When Port Down timer expires we will start returning
2632 * I/O's to OS with "DID_NO_CONNECT".
2633 *
2634 * Link Down Timeout != 0:
2635 *
2636 * The driver waits for the link to come up after link down
2637 * before returning I/Os to OS with "DID_NO_CONNECT".
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002638 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 if (nv->link_down_timeout == 0) {
2640 ha->loop_down_abort_time =
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002641 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 } else {
2643 ha->link_down_timeout = nv->link_down_timeout;
2644 ha->loop_down_abort_time =
2645 (LOOP_DOWN_TIME - ha->link_down_timeout);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 /*
2649 * Need enough time to try and get the port back.
2650 */
2651 ha->port_down_retry_count = nv->port_down_retry_count;
2652 if (qlport_down_retry)
2653 ha->port_down_retry_count = qlport_down_retry;
2654 /* Set login_retry_count */
2655 ha->login_retry_count = nv->retry_count;
2656 if (ha->port_down_retry_count == nv->port_down_retry_count &&
2657 ha->port_down_retry_count > 3)
2658 ha->login_retry_count = ha->port_down_retry_count;
2659 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
2660 ha->login_retry_count = ha->port_down_retry_count;
2661 if (ql2xloginretrycount)
2662 ha->login_retry_count = ql2xloginretrycount;
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 icb->lun_enables = __constant_cpu_to_le16(0);
2665 icb->command_resource_count = 0;
2666 icb->immediate_notify_resource_count = 0;
2667 icb->timeout = __constant_cpu_to_le16(0);
2668
2669 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2670 /* Enable RIO */
2671 icb->firmware_options[0] &= ~BIT_3;
2672 icb->add_firmware_options[0] &=
2673 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
2674 icb->add_firmware_options[0] |= BIT_2;
2675 icb->response_accumulation_timer = 3;
2676 icb->interrupt_delay_timer = 5;
2677
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002678 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 } else {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002680 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002681 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002682 ha->zio_mode = icb->add_firmware_options[0] &
2683 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
2684 ha->zio_timer = icb->interrupt_delay_timer ?
2685 icb->interrupt_delay_timer: 2;
2686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 icb->add_firmware_options[0] &=
2688 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002689 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002690 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08002691 ha->zio_mode = QLA_ZIO_MODE_6;
2692
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002693 ql_log(ql_log_info, vha, 0x0068,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002694 "ZIO mode %d enabled; timer delay (%d us).\n",
2695 ha->zio_mode, ha->zio_timer * 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002697 icb->add_firmware_options[0] |= (uint8_t)ha->zio_mode;
2698 icb->interrupt_delay_timer = (uint8_t)ha->zio_timer;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002699 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 }
2701 }
2702
David Miller4e08df32007-04-16 12:37:43 -07002703 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002704 ql_log(ql_log_warn, vha, 0x0069,
2705 "NVRAM configuration failed.\n");
David Miller4e08df32007-04-16 12:37:43 -07002706 }
2707 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708}
2709
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002710static void
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002711qla2x00_rport_del(void *data)
2712{
2713 fc_port_t *fcport = data;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002714 struct fc_rport *rport;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002715 scsi_qla_host_t *vha = fcport->vha;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002716 unsigned long flags;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002717
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002718 spin_lock_irqsave(fcport->vha->host->host_lock, flags);
Andrew Vasquezac280b62009-08-20 11:06:05 -07002719 rport = fcport->drport ? fcport->drport: fcport->rport;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002720 fcport->drport = NULL;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002721 spin_unlock_irqrestore(fcport->vha->host->host_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002722 if (rport) {
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002723 fc_remote_port_delete(rport);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002724 /*
2725 * Release the target mode FC NEXUS in qla_target.c code
2726 * if target mod is enabled.
2727 */
2728 qlt_fc_port_deleted(vha, fcport);
2729 }
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002730}
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732/**
2733 * qla2x00_alloc_fcport() - Allocate a generic fcport.
2734 * @ha: HA context
2735 * @flags: allocation flags
2736 *
2737 * Returns a pointer to the allocated fcport, or NULL, if none available.
2738 */
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002739fc_port_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002740qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741{
2742 fc_port_t *fcport;
2743
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002744 fcport = kzalloc(sizeof(fc_port_t), flags);
2745 if (!fcport)
2746 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
2748 /* Setup fcport template structure. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002749 fcport->vha = vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 fcport->port_type = FCT_UNKNOWN;
2751 fcport->loop_id = FC_NO_LOOP_ID;
Chad Dupuisec426e12011-03-30 11:46:32 -07002752 qla2x00_set_fcport_state(fcport, FCS_UNCONFIGURED);
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002753 fcport->supported_classes = FC_COS_UNSPECIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002755 return fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756}
2757
2758/*
2759 * qla2x00_configure_loop
2760 * Updates Fibre Channel Device Database with what is actually on loop.
2761 *
2762 * Input:
2763 * ha = adapter block pointer.
2764 *
2765 * Returns:
2766 * 0 = success.
2767 * 1 = error.
2768 * 2 = database was full and device was not configured.
2769 */
2770static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002771qla2x00_configure_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772{
2773 int rval;
2774 unsigned long flags, save_flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002775 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 rval = QLA_SUCCESS;
2777
2778 /* Get Initiator ID */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002779 if (test_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags)) {
2780 rval = qla2x00_configure_hba(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002782 ql_dbg(ql_dbg_disc, vha, 0x2013,
2783 "Unable to configure HBA.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 return (rval);
2785 }
2786 }
2787
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002788 save_flags = flags = vha->dpc_flags;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002789 ql_dbg(ql_dbg_disc, vha, 0x2014,
2790 "Configure loop -- dpc flags = 0x%lx.\n", flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 /*
2793 * If we have both an RSCN and PORT UPDATE pending then handle them
2794 * both at the same time.
2795 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002796 clear_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2797 clear_bit(RSCN_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Michael Hernandez3064ff32009-12-15 21:29:44 -08002799 qla2x00_get_data_rate(vha);
2800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 /* Determine what we need to do */
2802 if (ha->current_topology == ISP_CFG_FL &&
2803 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 set_bit(RSCN_UPDATE, &flags);
2806
2807 } else if (ha->current_topology == ISP_CFG_F &&
2808 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2809
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 set_bit(RSCN_UPDATE, &flags);
2811 clear_bit(LOCAL_LOOP_UPDATE, &flags);
2812
Andrew Vasquez21333b42006-05-17 15:09:56 -07002813 } else if (ha->current_topology == ISP_CFG_N) {
2814 clear_bit(RSCN_UPDATE, &flags);
2815
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002816 } else if (!vha->flags.online ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 (test_bit(ABORT_ISP_ACTIVE, &flags))) {
2818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 set_bit(RSCN_UPDATE, &flags);
2820 set_bit(LOCAL_LOOP_UPDATE, &flags);
2821 }
2822
2823 if (test_bit(LOCAL_LOOP_UPDATE, &flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002824 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
2825 ql_dbg(ql_dbg_disc, vha, 0x2015,
2826 "Loop resync needed, failing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 rval = QLA_FUNCTION_FAILED;
Chad Dupuis642ef982012-02-09 11:15:57 -08002828 } else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002829 rval = qla2x00_configure_local_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 }
2831
2832 if (rval == QLA_SUCCESS && test_bit(RSCN_UPDATE, &flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002833 if (LOOP_TRANSITION(vha)) {
2834 ql_dbg(ql_dbg_disc, vha, 0x201e,
2835 "Needs RSCN update and loop transition.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 rval = QLA_FUNCTION_FAILED;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002837 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002838 else
2839 rval = qla2x00_configure_fabric(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 }
2841
2842 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002843 if (atomic_read(&vha->loop_down_timer) ||
2844 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 rval = QLA_FUNCTION_FAILED;
2846 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002847 atomic_set(&vha->loop_state, LOOP_READY);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002848 ql_dbg(ql_dbg_disc, vha, 0x2069,
2849 "LOOP READY.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 }
2851 }
2852
2853 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002854 ql_dbg(ql_dbg_disc, vha, 0x206a,
2855 "%s *** FAILED ***.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002857 ql_dbg(ql_dbg_disc, vha, 0x206b,
2858 "%s: exiting normally.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 }
2860
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -07002861 /* Restore state if a resync event occurred during processing */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002862 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 if (test_bit(LOCAL_LOOP_UPDATE, &save_flags))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002864 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002865 if (test_bit(RSCN_UPDATE, &save_flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002866 set_bit(RSCN_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 }
2869
2870 return (rval);
2871}
2872
2873
2874
2875/*
2876 * qla2x00_configure_local_loop
2877 * Updates Fibre Channel Device Database with local loop devices.
2878 *
2879 * Input:
2880 * ha = adapter block pointer.
2881 *
2882 * Returns:
2883 * 0 = success.
2884 */
2885static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002886qla2x00_configure_local_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887{
2888 int rval, rval2;
2889 int found_devs;
2890 int found;
2891 fc_port_t *fcport, *new_fcport;
2892
2893 uint16_t index;
2894 uint16_t entries;
2895 char *id_iter;
2896 uint16_t loop_id;
2897 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002898 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
2900 found_devs = 0;
2901 new_fcport = NULL;
Chad Dupuis642ef982012-02-09 11:15:57 -08002902 entries = MAX_FIBRE_DEVICES_LOOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 /* Get list of logged in devices. */
Chad Dupuis642ef982012-02-09 11:15:57 -08002905 memset(ha->gid_list, 0, qla2x00_gid_list_size(ha));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002906 rval = qla2x00_get_id_list(vha, ha->gid_list, ha->gid_list_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 &entries);
2908 if (rval != QLA_SUCCESS)
2909 goto cleanup_allocation;
2910
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002911 ql_dbg(ql_dbg_disc, vha, 0x2017,
2912 "Entries in ID list (%d).\n", entries);
2913 ql_dump_buffer(ql_dbg_disc + ql_dbg_buffer, vha, 0x2075,
2914 (uint8_t *)ha->gid_list,
2915 entries * sizeof(struct gid_list_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
2917 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002918 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002920 ql_log(ql_log_warn, vha, 0x2018,
2921 "Memory allocation failed for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 rval = QLA_MEMORY_ALLOC_FAILED;
2923 goto cleanup_allocation;
2924 }
2925 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2926
2927 /*
2928 * Mark local devices that were present with FCF_DEVICE_LOST for now.
2929 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002930 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 if (atomic_read(&fcport->state) == FCS_ONLINE &&
2932 fcport->port_type != FCT_BROADCAST &&
2933 (fcport->flags & FCF_FABRIC_DEVICE) == 0) {
2934
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002935 ql_dbg(ql_dbg_disc, vha, 0x2019,
2936 "Marking port lost loop_id=0x%04x.\n",
2937 fcport->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Chad Dupuisec426e12011-03-30 11:46:32 -07002939 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 }
2941 }
2942
2943 /* Add devices to port list. */
2944 id_iter = (char *)ha->gid_list;
2945 for (index = 0; index < entries; index++) {
2946 domain = ((struct gid_list_info *)id_iter)->domain;
2947 area = ((struct gid_list_info *)id_iter)->area;
2948 al_pa = ((struct gid_list_info *)id_iter)->al_pa;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002949 if (IS_QLA2100(ha) || IS_QLA2200(ha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 loop_id = (uint16_t)
2951 ((struct gid_list_info *)id_iter)->loop_id_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002952 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 loop_id = le16_to_cpu(
2954 ((struct gid_list_info *)id_iter)->loop_id);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002955 id_iter += ha->gid_list_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
2957 /* Bypass reserved domain fields. */
2958 if ((domain & 0xf0) == 0xf0)
2959 continue;
2960
2961 /* Bypass if not same domain and area of adapter. */
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07002962 if (area && domain &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002963 (area != vha->d_id.b.area || domain != vha->d_id.b.domain))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 continue;
2965
2966 /* Bypass invalid local loop ID. */
2967 if (loop_id > LAST_LOCAL_LOOP_ID)
2968 continue;
2969
Arun Easi370d5502012-08-22 14:21:10 -04002970 memset(new_fcport, 0, sizeof(fc_port_t));
2971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 /* Fill in member data. */
2973 new_fcport->d_id.b.domain = domain;
2974 new_fcport->d_id.b.area = area;
2975 new_fcport->d_id.b.al_pa = al_pa;
2976 new_fcport->loop_id = loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002977 rval2 = qla2x00_get_port_database(vha, new_fcport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 if (rval2 != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002979 ql_dbg(ql_dbg_disc, vha, 0x201a,
2980 "Failed to retrieve fcport information "
2981 "-- get_port_database=%x, loop_id=0x%04x.\n",
2982 rval2, new_fcport->loop_id);
2983 ql_dbg(ql_dbg_disc, vha, 0x201b,
2984 "Scheduling resync.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002985 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 continue;
2987 }
2988
2989 /* Check for matching device in port list. */
2990 found = 0;
2991 fcport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002992 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 if (memcmp(new_fcport->port_name, fcport->port_name,
2994 WWN_SIZE))
2995 continue;
2996
Shyam Sundarddb9b122009-03-24 09:08:10 -07002997 fcport->flags &= ~FCF_FABRIC_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 fcport->loop_id = new_fcport->loop_id;
2999 fcport->port_type = new_fcport->port_type;
3000 fcport->d_id.b24 = new_fcport->d_id.b24;
3001 memcpy(fcport->node_name, new_fcport->node_name,
3002 WWN_SIZE);
3003
3004 found++;
3005 break;
3006 }
3007
3008 if (!found) {
3009 /* New device, add to fcports list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003010 list_add_tail(&new_fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
3012 /* Allocate a new replacement fcport. */
3013 fcport = new_fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003014 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003016 ql_log(ql_log_warn, vha, 0x201c,
3017 "Failed to allocate memory for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 rval = QLA_MEMORY_ALLOC_FAILED;
3019 goto cleanup_allocation;
3020 }
3021 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
3022 }
3023
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003024 /* Base iIDMA settings on HBA port speed. */
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07003025 fcport->fp_speed = ha->link_data_rate;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003026
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003027 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
3029 found_devs++;
3030 }
3031
3032cleanup_allocation:
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003033 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
3035 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003036 ql_dbg(ql_dbg_disc, vha, 0x201d,
3037 "Configure local loop error exit: rval=%x.\n", rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 }
3039
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 return (rval);
3041}
3042
3043static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003044qla2x00_iidma_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003045{
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003046 int rval;
Harish Zunjarrao1bb39542009-06-17 10:30:29 -07003047 uint16_t mb[4];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003048 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003049
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07003050 if (!IS_IIDMA_CAPABLE(ha))
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003051 return;
3052
Giridhar Malavalic9afb9a2010-09-03 15:20:48 -07003053 if (atomic_read(&fcport->state) != FCS_ONLINE)
3054 return;
3055
Andrew Vasquez39bd9622007-09-20 14:07:34 -07003056 if (fcport->fp_speed == PORT_SPEED_UNKNOWN ||
3057 fcport->fp_speed > ha->link_data_rate)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003058 return;
3059
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003060 rval = qla2x00_set_idma_speed(vha, fcport->loop_id, fcport->fp_speed,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07003061 mb);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003062 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003063 ql_dbg(ql_dbg_disc, vha, 0x2004,
3064 "Unable to adjust iIDMA "
3065 "%02x%02x%02x%02x%02x%02x%02x%02x -- %04x %x %04x "
3066 "%04x.\n", fcport->port_name[0], fcport->port_name[1],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003067 fcport->port_name[2], fcport->port_name[3],
3068 fcport->port_name[4], fcport->port_name[5],
3069 fcport->port_name[6], fcport->port_name[7], rval,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003070 fcport->fp_speed, mb[0], mb[1]);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003071 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003072 ql_dbg(ql_dbg_disc, vha, 0x2005,
3073 "iIDMA adjusted to %s GB/s "
Joe Carnucciod0297c92012-11-21 02:40:40 -05003074 "on %02x%02x%02x%02x%02x%02x%02x%02x.\n",
3075 qla2x00_get_link_speed_str(ha, fcport->fp_speed),
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003076 fcport->port_name[0], fcport->port_name[1],
3077 fcport->port_name[2], fcport->port_name[3],
3078 fcport->port_name[4], fcport->port_name[5],
3079 fcport->port_name[6], fcport->port_name[7]);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003080 }
3081}
3082
Adrian Bunk23be3312006-11-24 02:46:01 +01003083static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003084qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport)
8482e1182005-04-17 15:04:54 -05003085{
3086 struct fc_rport_identifiers rport_ids;
bdf79622005-04-17 15:06:53 -05003087 struct fc_rport *rport;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08003088 unsigned long flags;
8482e1182005-04-17 15:04:54 -05003089
Andrew Vasquezac280b62009-08-20 11:06:05 -07003090 qla2x00_rport_del(fcport);
8482e1182005-04-17 15:04:54 -05003091
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07003092 rport_ids.node_name = wwn_to_u64(fcport->node_name);
3093 rport_ids.port_name = wwn_to_u64(fcport->port_name);
8482e1182005-04-17 15:04:54 -05003094 rport_ids.port_id = fcport->d_id.b.domain << 16 |
3095 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
3096 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003097 fcport->rport = rport = fc_remote_port_add(vha->host, 0, &rport_ids);
Andrew Vasquez77d74142005-07-08 18:00:36 -07003098 if (!rport) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003099 ql_log(ql_log_warn, vha, 0x2006,
3100 "Unable to allocate fc remote port.\n");
Andrew Vasquez77d74142005-07-08 18:00:36 -07003101 return;
3102 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003103 /*
3104 * Create target mode FC NEXUS in qla_target.c if target mode is
3105 * enabled..
3106 */
3107 qlt_fc_port_added(vha, fcport);
3108
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08003109 spin_lock_irqsave(fcport->vha->host->host_lock, flags);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003110 *((fc_port_t **)rport->dd_data) = fcport;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08003111 spin_unlock_irqrestore(fcport->vha->host->host_lock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003112
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003113 rport->supported_classes = fcport->supported_classes;
Andrew Vasquez77d74142005-07-08 18:00:36 -07003114
3115 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
8482e1182005-04-17 15:04:54 -05003116 if (fcport->port_type == FCT_INITIATOR)
3117 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
3118 if (fcport->port_type == FCT_TARGET)
3119 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
Andrew Vasquez77d74142005-07-08 18:00:36 -07003120 fc_remote_port_rolechg(rport, rport_ids.roles);
8482e1182005-04-17 15:04:54 -05003121}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
3123/*
Adrian Bunk23be3312006-11-24 02:46:01 +01003124 * qla2x00_update_fcport
3125 * Updates device on list.
3126 *
3127 * Input:
3128 * ha = adapter block pointer.
3129 * fcport = port structure pointer.
3130 *
3131 * Return:
3132 * 0 - Success
3133 * BIT_0 - error
3134 *
3135 * Context:
3136 * Kernel context.
3137 */
3138void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003139qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Adrian Bunk23be3312006-11-24 02:46:01 +01003140{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003141 fcport->vha = vha;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003142
3143 if (IS_QLAFX00(vha->hw)) {
3144 qla2x00_set_fcport_state(fcport, FCS_ONLINE);
3145 qla2x00_reg_remote_port(vha, fcport);
3146 return;
3147 }
Adrian Bunk23be3312006-11-24 02:46:01 +01003148 fcport->login_retry = 0;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003149 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
Adrian Bunk23be3312006-11-24 02:46:01 +01003150
Joe Carnuccio1f93da52012-11-21 02:40:38 -05003151 qla2x00_set_fcport_state(fcport, FCS_ONLINE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003152 qla2x00_iidma_fcport(vha, fcport);
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08003153 qla24xx_update_fcport_fcp_prio(vha, fcport);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003154 qla2x00_reg_remote_port(vha, fcport);
Adrian Bunk23be3312006-11-24 02:46:01 +01003155}
3156
3157/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 * qla2x00_configure_fabric
3159 * Setup SNS devices with loop ID's.
3160 *
3161 * Input:
3162 * ha = adapter block pointer.
3163 *
3164 * Returns:
3165 * 0 = success.
3166 * BIT_0 = error
3167 */
3168static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003169qla2x00_configure_fabric(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170{
Arun Easib3b02e62012-02-09 11:15:39 -08003171 int rval;
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003172 fc_port_t *fcport, *fcptemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 uint16_t next_loopid;
3174 uint16_t mb[MAILBOX_REGISTER_COUNT];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003175 uint16_t loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 LIST_HEAD(new_fcports);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003177 struct qla_hw_data *ha = vha->hw;
3178 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
3180 /* If FL port exists, then SNS is present */
Andrew Vasqueze4289242007-07-19 15:05:56 -07003181 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003182 loop_id = NPH_F_PORT;
3183 else
3184 loop_id = SNS_FL_PORT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003185 rval = qla2x00_get_port_name(vha, loop_id, vha->fabric_node_name, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003187 ql_dbg(ql_dbg_disc, vha, 0x201f,
3188 "MBX_GET_PORT_NAME failed, No FL Port.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003190 vha->device_flags &= ~SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 return (QLA_SUCCESS);
3192 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003193 vha->device_flags |= SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 do {
Andrew Vasquezcca53352005-08-26 19:08:30 -07003196 /* FDMI support. */
3197 if (ql2xfdmienable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003198 test_and_clear_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags))
3199 qla2x00_fdmi_register(vha);
Andrew Vasquezcca53352005-08-26 19:08:30 -07003200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 /* Ensure we are logged into the SNS. */
Andrew Vasqueze4289242007-07-19 15:05:56 -07003202 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003203 loop_id = NPH_SNS;
3204 else
3205 loop_id = SIMPLE_NAME_SERVER;
Chad Dupuis0b91d112012-02-09 11:15:42 -08003206 rval = ha->isp_ops->fabric_login(vha, loop_id, 0xff, 0xff,
3207 0xfc, mb, BIT_1|BIT_0);
3208 if (rval != QLA_SUCCESS) {
3209 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003210 return rval;
Chad Dupuis0b91d112012-02-09 11:15:42 -08003211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 if (mb[0] != MBS_COMMAND_COMPLETE) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003213 ql_dbg(ql_dbg_disc, vha, 0x2042,
3214 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x mb[2]=%x "
3215 "mb[6]=%x mb[7]=%x.\n", loop_id, mb[0], mb[1],
3216 mb[2], mb[6], mb[7]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 return (QLA_SUCCESS);
3218 }
3219
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003220 if (test_and_clear_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags)) {
3221 if (qla2x00_rft_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003223 ql_dbg(ql_dbg_disc, vha, 0x2045,
3224 "Register FC-4 TYPE failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003226 if (qla2x00_rff_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003228 ql_dbg(ql_dbg_disc, vha, 0x2049,
3229 "Register FC-4 Features failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003231 if (qla2x00_rnn_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003233 ql_dbg(ql_dbg_disc, vha, 0x204f,
3234 "Register Node Name failed.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003235 } else if (qla2x00_rsnn_nn(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003237 ql_dbg(ql_dbg_disc, vha, 0x2053,
3238 "Register Symobilic Node Name failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 }
3240 }
3241
Joe Carnuccio827210b2013-02-08 01:57:57 -05003242#define QLA_FCPORT_SCAN 1
3243#define QLA_FCPORT_FOUND 2
3244
3245 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3246 fcport->scan_state = QLA_FCPORT_SCAN;
3247 }
3248
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003249 rval = qla2x00_find_all_fabric_devs(vha, &new_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 if (rval != QLA_SUCCESS)
3251 break;
3252
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003253 /*
3254 * Logout all previous fabric devices marked lost, except
3255 * FCP2 devices.
3256 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003257 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3258 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 break;
3260
3261 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0)
3262 continue;
3263
Joe Carnuccio827210b2013-02-08 01:57:57 -05003264 if (fcport->scan_state == QLA_FCPORT_SCAN &&
Arun Easib3b02e62012-02-09 11:15:39 -08003265 atomic_read(&fcport->state) == FCS_ONLINE) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003266 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003267 ql2xplogiabsentdevice, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003269 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 fcport->port_type != FCT_INITIATOR &&
3271 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003272 ha->isp_ops->fabric_logout(vha,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003273 fcport->loop_id,
3274 fcport->d_id.b.domain,
3275 fcport->d_id.b.area,
3276 fcport->d_id.b.al_pa);
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003277 fcport->loop_id = FC_NO_LOOP_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 }
3279 }
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003282 /* Starting free loop ID. */
3283 next_loopid = ha->min_external_loopid;
3284
3285 /*
3286 * Scan through our port list and login entries that need to be
3287 * logged in.
3288 */
3289 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3290 if (atomic_read(&vha->loop_down_timer) ||
3291 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
3292 break;
3293
3294 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
3295 (fcport->flags & FCF_LOGIN_NEEDED) == 0)
3296 continue;
3297
3298 if (fcport->loop_id == FC_NO_LOOP_ID) {
3299 fcport->loop_id = next_loopid;
3300 rval = qla2x00_find_new_loop_id(
3301 base_vha, fcport);
3302 if (rval != QLA_SUCCESS) {
3303 /* Ran out of IDs to use */
3304 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 }
3306 }
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003307 /* Login and update database */
3308 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
3309 }
3310
3311 /* Exit if out of loop IDs. */
3312 if (rval != QLA_SUCCESS) {
3313 break;
3314 }
3315
3316 /*
3317 * Login and add the new devices to our port list.
3318 */
3319 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
3320 if (atomic_read(&vha->loop_down_timer) ||
3321 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
3322 break;
3323
3324 /* Find a new loop ID to use. */
3325 fcport->loop_id = next_loopid;
3326 rval = qla2x00_find_new_loop_id(base_vha, fcport);
3327 if (rval != QLA_SUCCESS) {
3328 /* Ran out of IDs to use */
3329 break;
3330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
bdf79622005-04-17 15:06:53 -05003332 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003333 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003334
3335 list_move_tail(&fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 }
3337 } while (0);
3338
Joe Carnuccioe452ceb2013-02-08 01:57:56 -05003339 /* Free all new device structures not processed. */
3340 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
3341 list_del(&fcport->list);
3342 kfree(fcport);
3343 }
3344
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003346 ql_dbg(ql_dbg_disc, vha, 0x2068,
3347 "Configure fabric error exit rval=%d.\n", rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 }
3349
3350 return (rval);
3351}
3352
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353/*
3354 * qla2x00_find_all_fabric_devs
3355 *
3356 * Input:
3357 * ha = adapter block pointer.
3358 * dev = database device entry pointer.
3359 *
3360 * Returns:
3361 * 0 = success.
3362 *
3363 * Context:
3364 * Kernel context.
3365 */
3366static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003367qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha,
3368 struct list_head *new_fcports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369{
3370 int rval;
3371 uint16_t loop_id;
3372 fc_port_t *fcport, *new_fcport, *fcptemp;
3373 int found;
3374
3375 sw_info_t *swl;
3376 int swl_idx;
3377 int first_dev, last_dev;
Mike Waychison1516ef42010-05-04 15:01:31 -07003378 port_id_t wrap = {}, nxt_d_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003379 struct qla_hw_data *ha = vha->hw;
Chad Dupuisbb4cf5b2013-02-08 01:58:01 -05003380 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
3382 rval = QLA_SUCCESS;
3383
3384 /* Try GID_PT to get device list, else GAN. */
Andrew Vasquez7a677352012-02-09 11:15:56 -08003385 if (!ha->swl)
Chad Dupuis642ef982012-02-09 11:15:57 -08003386 ha->swl = kcalloc(ha->max_fibre_devices, sizeof(sw_info_t),
Andrew Vasquez7a677352012-02-09 11:15:56 -08003387 GFP_KERNEL);
3388 swl = ha->swl;
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02003389 if (!swl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 /*EMPTY*/
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003391 ql_dbg(ql_dbg_disc, vha, 0x2054,
3392 "GID_PT allocations failed, fallback on GA_NXT.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 } else {
Chad Dupuis642ef982012-02-09 11:15:57 -08003394 memset(swl, 0, ha->max_fibre_devices * sizeof(sw_info_t));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003395 if (qla2x00_gid_pt(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003397 } else if (qla2x00_gpn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003399 } else if (qla2x00_gnn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 swl = NULL;
Andrew Vasqueze5896bd2008-07-10 16:55:52 -07003401 } else if (ql2xiidmaenable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003402 qla2x00_gfpn_id(vha, swl) == QLA_SUCCESS) {
3403 qla2x00_gpsc(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 }
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003405
3406 /* If other queries succeeded probe for FC-4 type */
3407 if (swl)
3408 qla2x00_gff_id(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 }
3410 swl_idx = 0;
3411
3412 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003413 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003415 ql_log(ql_log_warn, vha, 0x205e,
3416 "Failed to allocate memory for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 return (QLA_MEMORY_ALLOC_FAILED);
3418 }
3419 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 /* Set start port ID scan at adapter ID. */
3421 first_dev = 1;
3422 last_dev = 0;
3423
3424 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003425 loop_id = ha->min_external_loopid;
3426 for (; loop_id <= ha->max_loop_id; loop_id++) {
3427 if (qla2x00_is_reserved_id(vha, loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 continue;
3429
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07003430 if (ha->current_topology == ISP_CFG_FL &&
3431 (atomic_read(&vha->loop_down_timer) ||
3432 LOOP_TRANSITION(vha))) {
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003433 atomic_set(&vha->loop_down_timer, 0);
3434 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
3435 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 break;
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
3439 if (swl != NULL) {
3440 if (last_dev) {
3441 wrap.b24 = new_fcport->d_id.b24;
3442 } else {
3443 new_fcport->d_id.b24 = swl[swl_idx].d_id.b24;
3444 memcpy(new_fcport->node_name,
3445 swl[swl_idx].node_name, WWN_SIZE);
3446 memcpy(new_fcport->port_name,
3447 swl[swl_idx].port_name, WWN_SIZE);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003448 memcpy(new_fcport->fabric_port_name,
3449 swl[swl_idx].fabric_port_name, WWN_SIZE);
3450 new_fcport->fp_speed = swl[swl_idx].fp_speed;
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003451 new_fcport->fc4_type = swl[swl_idx].fc4_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452
3453 if (swl[swl_idx].d_id.b.rsvd_1 != 0) {
3454 last_dev = 1;
3455 }
3456 swl_idx++;
3457 }
3458 } else {
3459 /* Send GA_NXT to the switch */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003460 rval = qla2x00_ga_nxt(vha, new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003462 ql_log(ql_log_warn, vha, 0x2064,
3463 "SNS scan failed -- assuming "
3464 "zero-entry result.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 list_for_each_entry_safe(fcport, fcptemp,
3466 new_fcports, list) {
3467 list_del(&fcport->list);
3468 kfree(fcport);
3469 }
3470 rval = QLA_SUCCESS;
3471 break;
3472 }
3473 }
3474
3475 /* If wrap on switch device list, exit. */
3476 if (first_dev) {
3477 wrap.b24 = new_fcport->d_id.b24;
3478 first_dev = 0;
3479 } else if (new_fcport->d_id.b24 == wrap.b24) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003480 ql_dbg(ql_dbg_disc, vha, 0x2065,
3481 "Device wrap (%02x%02x%02x).\n",
3482 new_fcport->d_id.b.domain,
3483 new_fcport->d_id.b.area,
3484 new_fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 break;
3486 }
3487
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003488 /* Bypass if same physical adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003489 if (new_fcport->d_id.b24 == base_vha->d_id.b24)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 continue;
3491
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003492 /* Bypass virtual ports of the same host. */
Chad Dupuisbb4cf5b2013-02-08 01:58:01 -05003493 if (qla2x00_is_a_vp_did(vha, new_fcport->d_id.b24))
3494 continue;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003495
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003496 /* Bypass if same domain and area of adapter. */
3497 if (((new_fcport->d_id.b24 & 0xffff00) ==
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003498 (vha->d_id.b24 & 0xffff00)) && ha->current_topology ==
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003499 ISP_CFG_FL)
3500 continue;
3501
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 /* Bypass reserved domain fields. */
3503 if ((new_fcport->d_id.b.domain & 0xf0) == 0xf0)
3504 continue;
3505
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003506 /* Bypass ports whose FCP-4 type is not FCP_SCSI */
Chad Dupuis4da26e12010-10-15 11:27:40 -07003507 if (ql2xgffidenable &&
3508 (new_fcport->fc4_type != FC4_TYPE_FCP_SCSI &&
3509 new_fcport->fc4_type != FC4_TYPE_UNKNOWN))
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003510 continue;
3511
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 /* Locate matching device in database. */
3513 found = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003514 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 if (memcmp(new_fcport->port_name, fcport->port_name,
3516 WWN_SIZE))
3517 continue;
3518
Joe Carnuccio827210b2013-02-08 01:57:57 -05003519 fcport->scan_state = QLA_FCPORT_FOUND;
Arun Easib3b02e62012-02-09 11:15:39 -08003520
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 found++;
3522
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003523 /* Update port state. */
3524 memcpy(fcport->fabric_port_name,
3525 new_fcport->fabric_port_name, WWN_SIZE);
3526 fcport->fp_speed = new_fcport->fp_speed;
3527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 /*
3529 * If address the same and state FCS_ONLINE, nothing
3530 * changed.
3531 */
3532 if (fcport->d_id.b24 == new_fcport->d_id.b24 &&
3533 atomic_read(&fcport->state) == FCS_ONLINE) {
3534 break;
3535 }
3536
3537 /*
3538 * If device was not a fabric device before.
3539 */
3540 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0) {
3541 fcport->d_id.b24 = new_fcport->d_id.b24;
Chad Dupuis5f16b332012-08-22 14:21:00 -04003542 qla2x00_clear_loop_id(fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 fcport->flags |= (FCF_FABRIC_DEVICE |
3544 FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 break;
3546 }
3547
3548 /*
3549 * Port ID changed or device was marked to be updated;
3550 * Log it out if still logged in and mark it for
3551 * relogin later.
3552 */
3553 fcport->d_id.b24 = new_fcport->d_id.b24;
3554 fcport->flags |= FCF_LOGIN_NEEDED;
3555 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003556 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Arun Easi0eba25d2012-02-09 11:15:58 -08003557 (fcport->flags & FCF_ASYNC_SENT) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 fcport->port_type != FCT_INITIATOR &&
3559 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003560 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003561 fcport->d_id.b.domain, fcport->d_id.b.area,
3562 fcport->d_id.b.al_pa);
Chad Dupuis5f16b332012-08-22 14:21:00 -04003563 qla2x00_clear_loop_id(fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 }
3565
3566 break;
3567 }
3568
3569 if (found)
3570 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 /* If device was not in our fcports list, then add it. */
3572 list_add_tail(&new_fcport->list, new_fcports);
3573
3574 /* Allocate a new replacement fcport. */
3575 nxt_d_id.b24 = new_fcport->d_id.b24;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003576 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003578 ql_log(ql_log_warn, vha, 0x2066,
3579 "Memory allocation failed for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 return (QLA_MEMORY_ALLOC_FAILED);
3581 }
3582 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
3583 new_fcport->d_id.b24 = nxt_d_id.b24;
3584 }
3585
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003586 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 return (rval);
3589}
3590
3591/*
3592 * qla2x00_find_new_loop_id
3593 * Scan through our port list and find a new usable loop ID.
3594 *
3595 * Input:
3596 * ha: adapter state pointer.
3597 * dev: port structure pointer.
3598 *
3599 * Returns:
3600 * qla2x00 local function return status code.
3601 *
3602 * Context:
3603 * Kernel context.
3604 */
Joe Carnuccio03bcfb52011-03-30 11:46:27 -07003605int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003606qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607{
3608 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003609 struct qla_hw_data *ha = vha->hw;
Arun Easifeafb7b2010-09-03 14:57:00 -07003610 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
3612 rval = QLA_SUCCESS;
3613
Chad Dupuis5f16b332012-08-22 14:21:00 -04003614 spin_lock_irqsave(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
Chad Dupuis5f16b332012-08-22 14:21:00 -04003616 dev->loop_id = find_first_zero_bit(ha->loop_id_map,
3617 LOOPID_MAP_SIZE);
3618 if (dev->loop_id >= LOOPID_MAP_SIZE ||
3619 qla2x00_is_reserved_id(vha, dev->loop_id)) {
3620 dev->loop_id = FC_NO_LOOP_ID;
3621 rval = QLA_FUNCTION_FAILED;
3622 } else
3623 set_bit(dev->loop_id, ha->loop_id_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
Chad Dupuis5f16b332012-08-22 14:21:00 -04003625 spin_unlock_irqrestore(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Chad Dupuis5f16b332012-08-22 14:21:00 -04003627 if (rval == QLA_SUCCESS)
3628 ql_dbg(ql_dbg_disc, dev->vha, 0x2086,
3629 "Assigning new loopid=%x, portid=%x.\n",
3630 dev->loop_id, dev->d_id.b24);
3631 else
3632 ql_log(ql_log_warn, dev->vha, 0x2087,
3633 "No loop_id's available, portid=%x.\n",
3634 dev->d_id.b24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635
3636 return (rval);
3637}
3638
3639/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 * qla2x00_fabric_dev_login
3641 * Login fabric target device and update FC port database.
3642 *
3643 * Input:
3644 * ha: adapter state pointer.
3645 * fcport: port structure list pointer.
3646 * next_loopid: contains value of a new loop ID that can be used
3647 * by the next login attempt.
3648 *
3649 * Returns:
3650 * qla2x00 local function return status code.
3651 *
3652 * Context:
3653 * Kernel context.
3654 */
3655static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003656qla2x00_fabric_dev_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 uint16_t *next_loopid)
3658{
3659 int rval;
3660 int retry;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003661 uint8_t opts;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003662 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663
3664 rval = QLA_SUCCESS;
3665 retry = 0;
3666
Andrew Vasquezac280b62009-08-20 11:06:05 -07003667 if (IS_ALOGIO_CAPABLE(ha)) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003668 if (fcport->flags & FCF_ASYNC_SENT)
3669 return rval;
3670 fcport->flags |= FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003671 rval = qla2x00_post_async_login_work(vha, fcport, NULL);
3672 if (!rval)
3673 return rval;
3674 }
3675
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003676 fcport->flags &= ~FCF_ASYNC_SENT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003677 rval = qla2x00_fabric_login(vha, fcport, next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 if (rval == QLA_SUCCESS) {
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003679 /* Send an ADISC to FCP2 devices.*/
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003680 opts = 0;
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003681 if (fcport->flags & FCF_FCP2_DEVICE)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003682 opts |= BIT_1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003683 rval = qla2x00_get_port_database(vha, fcport, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003685 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003686 fcport->d_id.b.domain, fcport->d_id.b.area,
3687 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003688 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003690 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 }
Chad Dupuis0b91d112012-02-09 11:15:42 -08003692 } else {
3693 /* Retry Login. */
3694 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 }
3696
3697 return (rval);
3698}
3699
3700/*
3701 * qla2x00_fabric_login
3702 * Issue fabric login command.
3703 *
3704 * Input:
3705 * ha = adapter block pointer.
3706 * device = pointer to FC device type structure.
3707 *
3708 * Returns:
3709 * 0 - Login successfully
3710 * 1 - Login failed
3711 * 2 - Initiator device
3712 * 3 - Fatal error
3713 */
3714int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003715qla2x00_fabric_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 uint16_t *next_loopid)
3717{
3718 int rval;
3719 int retry;
3720 uint16_t tmp_loopid;
3721 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003722 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
3724 retry = 0;
3725 tmp_loopid = 0;
3726
3727 for (;;) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003728 ql_dbg(ql_dbg_disc, vha, 0x2000,
3729 "Trying Fabric Login w/loop id 0x%04x for port "
3730 "%02x%02x%02x.\n",
3731 fcport->loop_id, fcport->d_id.b.domain,
3732 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
3734 /* Login fcport on switch. */
Chad Dupuis0b91d112012-02-09 11:15:42 -08003735 rval = ha->isp_ops->fabric_login(vha, fcport->loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 fcport->d_id.b.domain, fcport->d_id.b.area,
3737 fcport->d_id.b.al_pa, mb, BIT_0);
Chad Dupuis0b91d112012-02-09 11:15:42 -08003738 if (rval != QLA_SUCCESS) {
3739 return rval;
3740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 if (mb[0] == MBS_PORT_ID_USED) {
3742 /*
3743 * Device has another loop ID. The firmware team
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003744 * recommends the driver perform an implicit login with
3745 * the specified ID again. The ID we just used is save
3746 * here so we return with an ID that can be tried by
3747 * the next login.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 */
3749 retry++;
3750 tmp_loopid = fcport->loop_id;
3751 fcport->loop_id = mb[1];
3752
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003753 ql_dbg(ql_dbg_disc, vha, 0x2001,
3754 "Fabric Login: port in use - next loop "
3755 "id=0x%04x, port id= %02x%02x%02x.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 fcport->loop_id, fcport->d_id.b.domain,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003757 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
3759 } else if (mb[0] == MBS_COMMAND_COMPLETE) {
3760 /*
3761 * Login succeeded.
3762 */
3763 if (retry) {
3764 /* A retry occurred before. */
3765 *next_loopid = tmp_loopid;
3766 } else {
3767 /*
3768 * No retry occurred before. Just increment the
3769 * ID value for next login.
3770 */
3771 *next_loopid = (fcport->loop_id + 1);
3772 }
3773
3774 if (mb[1] & BIT_0) {
3775 fcport->port_type = FCT_INITIATOR;
3776 } else {
3777 fcport->port_type = FCT_TARGET;
3778 if (mb[1] & BIT_1) {
Santosh Vernekar8474f3a2009-08-25 11:36:16 -07003779 fcport->flags |= FCF_FCP2_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 }
3781 }
3782
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003783 if (mb[10] & BIT_0)
3784 fcport->supported_classes |= FC_COS_CLASS2;
3785 if (mb[10] & BIT_1)
3786 fcport->supported_classes |= FC_COS_CLASS3;
3787
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003788 if (IS_FWI2_CAPABLE(ha)) {
3789 if (mb[10] & BIT_7)
3790 fcport->flags |=
3791 FCF_CONF_COMP_SUPPORTED;
3792 }
3793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 rval = QLA_SUCCESS;
3795 break;
3796 } else if (mb[0] == MBS_LOOP_ID_USED) {
3797 /*
3798 * Loop ID already used, try next loop ID.
3799 */
3800 fcport->loop_id++;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003801 rval = qla2x00_find_new_loop_id(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 if (rval != QLA_SUCCESS) {
3803 /* Ran out of loop IDs to use */
3804 break;
3805 }
3806 } else if (mb[0] == MBS_COMMAND_ERROR) {
3807 /*
3808 * Firmware possibly timed out during login. If NO
3809 * retries are left to do then the device is declared
3810 * dead.
3811 */
3812 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003813 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003814 fcport->d_id.b.domain, fcport->d_id.b.area,
3815 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003816 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
3818 rval = 1;
3819 break;
3820 } else {
3821 /*
3822 * unrecoverable / not handled error
3823 */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003824 ql_dbg(ql_dbg_disc, vha, 0x2002,
3825 "Failed=%x port_id=%02x%02x%02x loop_id=%x "
3826 "jiffies=%lx.\n", mb[0], fcport->d_id.b.domain,
3827 fcport->d_id.b.area, fcport->d_id.b.al_pa,
3828 fcport->loop_id, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
3830 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003831 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003832 fcport->d_id.b.domain, fcport->d_id.b.area,
3833 fcport->d_id.b.al_pa);
Chad Dupuis5f16b332012-08-22 14:21:00 -04003834 qla2x00_clear_loop_id(fcport);
Andrew Vasquez0eedfcf2005-10-27 11:09:38 -07003835 fcport->login_retry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
3837 rval = 3;
3838 break;
3839 }
3840 }
3841
3842 return (rval);
3843}
3844
3845/*
3846 * qla2x00_local_device_login
3847 * Issue local device login command.
3848 *
3849 * Input:
3850 * ha = adapter block pointer.
3851 * loop_id = loop id of device to login to.
3852 *
3853 * Returns (Where's the #define!!!!):
3854 * 0 - Login successfully
3855 * 1 - Login failed
3856 * 3 - Fatal error
3857 */
3858int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003859qla2x00_local_device_login(scsi_qla_host_t *vha, fc_port_t *fcport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860{
3861 int rval;
3862 uint16_t mb[MAILBOX_REGISTER_COUNT];
3863
3864 memset(mb, 0, sizeof(mb));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003865 rval = qla2x00_login_local_device(vha, fcport, mb, BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 if (rval == QLA_SUCCESS) {
3867 /* Interrogate mailbox registers for any errors */
3868 if (mb[0] == MBS_COMMAND_ERROR)
3869 rval = 1;
3870 else if (mb[0] == MBS_COMMAND_PARAMETER_ERROR)
3871 /* device not in PCB table */
3872 rval = 3;
3873 }
3874
3875 return (rval);
3876}
3877
3878/*
3879 * qla2x00_loop_resync
3880 * Resync with fibre channel devices.
3881 *
3882 * Input:
3883 * ha = adapter block pointer.
3884 *
3885 * Returns:
3886 * 0 = success
3887 */
3888int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003889qla2x00_loop_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003891 int rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 uint32_t wait_time;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003893 struct req_que *req;
3894 struct rsp_que *rsp;
3895
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07003896 if (vha->hw->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003897 req = vha->hw->req_q_map[0];
3898 else
3899 req = vha->req;
3900 rsp = req->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003902 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3903 if (vha->flags.online) {
3904 if (!(rval = qla2x00_fw_ready(vha))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 /* Wait at most MAX_TARGET RSCNs for a stable link. */
3906 wait_time = 256;
3907 do {
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003908 if (!IS_QLAFX00(vha->hw)) {
3909 /*
3910 * Issue a marker after FW becomes
3911 * ready.
3912 */
3913 qla2x00_marker(vha, req, rsp, 0, 0,
3914 MK_SYNC_ALL);
3915 vha->marker_needed = 0;
3916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
3918 /* Remap devices on Loop. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003919 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04003921 if (IS_QLAFX00(vha->hw))
3922 qlafx00_configure_devices(vha);
3923 else
3924 qla2x00_configure_loop(vha);
3925
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003927 } while (!atomic_read(&vha->loop_down_timer) &&
3928 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
3929 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
3930 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 }
3933
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003934 if (test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 return (QLA_FUNCTION_FAILED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003937 if (rval)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003938 ql_dbg(ql_dbg_disc, vha, 0x206c,
3939 "%s *** FAILED ***.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
3941 return (rval);
3942}
3943
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003944/*
3945* qla2x00_perform_loop_resync
3946* Description: This function will set the appropriate flags and call
3947* qla2x00_loop_resync. If successful loop will be resynced
3948* Arguments : scsi_qla_host_t pointer
3949* returm : Success or Failure
3950*/
3951
3952int qla2x00_perform_loop_resync(scsi_qla_host_t *ha)
3953{
3954 int32_t rval = 0;
3955
3956 if (!test_and_set_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags)) {
3957 /*Configure the flags so that resync happens properly*/
3958 atomic_set(&ha->loop_down_timer, 0);
3959 if (!(ha->device_flags & DFLG_NO_CABLE)) {
3960 atomic_set(&ha->loop_state, LOOP_UP);
3961 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
3962 set_bit(REGISTER_FC4_NEEDED, &ha->dpc_flags);
3963 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
3964
3965 rval = qla2x00_loop_resync(ha);
3966 } else
3967 atomic_set(&ha->loop_state, LOOP_DEAD);
3968
3969 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
3970 }
3971
3972 return rval;
3973}
3974
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975void
Andrew Vasquez67becc02009-08-25 11:36:20 -07003976qla2x00_update_fcports(scsi_qla_host_t *base_vha)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003977{
3978 fc_port_t *fcport;
Arun Easifeafb7b2010-09-03 14:57:00 -07003979 struct scsi_qla_host *vha;
3980 struct qla_hw_data *ha = base_vha->hw;
3981 unsigned long flags;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003982
Arun Easifeafb7b2010-09-03 14:57:00 -07003983 spin_lock_irqsave(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003984 /* Go with deferred removal of rport references. */
Arun Easifeafb7b2010-09-03 14:57:00 -07003985 list_for_each_entry(vha, &base_vha->hw->vp_list, list) {
3986 atomic_inc(&vha->vref_count);
3987 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Dan Carpenter8ae598d2010-12-21 16:00:15 -08003988 if (fcport->drport &&
Arun Easifeafb7b2010-09-03 14:57:00 -07003989 atomic_read(&fcport->state) != FCS_UNCONFIGURED) {
3990 spin_unlock_irqrestore(&ha->vport_slock, flags);
Andrew Vasquez67becc02009-08-25 11:36:20 -07003991 qla2x00_rport_del(fcport);
Arun Easifeafb7b2010-09-03 14:57:00 -07003992 spin_lock_irqsave(&ha->vport_slock, flags);
3993 }
3994 }
3995 atomic_dec(&vha->vref_count);
3996 }
3997 spin_unlock_irqrestore(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003998}
3999
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004000/* Assumes idc_lock always held on entry */
4001void
4002qla83xx_reset_ownership(scsi_qla_host_t *vha)
4003{
4004 struct qla_hw_data *ha = vha->hw;
4005 uint32_t drv_presence, drv_presence_mask;
4006 uint32_t dev_part_info1, dev_part_info2, class_type;
4007 uint32_t class_type_mask = 0x3;
4008 uint16_t fcoe_other_function = 0xffff, i;
4009
4010 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
4011
4012 qla83xx_rd_reg(vha, QLA83XX_DEV_PARTINFO1, &dev_part_info1);
4013 qla83xx_rd_reg(vha, QLA83XX_DEV_PARTINFO2, &dev_part_info2);
4014 for (i = 0; i < 8; i++) {
4015 class_type = ((dev_part_info1 >> (i * 4)) & class_type_mask);
4016 if ((class_type == QLA83XX_CLASS_TYPE_FCOE) &&
4017 (i != ha->portnum)) {
4018 fcoe_other_function = i;
4019 break;
4020 }
4021 }
4022 if (fcoe_other_function == 0xffff) {
4023 for (i = 0; i < 8; i++) {
4024 class_type = ((dev_part_info2 >> (i * 4)) &
4025 class_type_mask);
4026 if ((class_type == QLA83XX_CLASS_TYPE_FCOE) &&
4027 ((i + 8) != ha->portnum)) {
4028 fcoe_other_function = i + 8;
4029 break;
4030 }
4031 }
4032 }
4033 /*
4034 * Prepare drv-presence mask based on fcoe functions present.
4035 * However consider only valid physical fcoe function numbers (0-15).
4036 */
4037 drv_presence_mask = ~((1 << (ha->portnum)) |
4038 ((fcoe_other_function == 0xffff) ?
4039 0 : (1 << (fcoe_other_function))));
4040
4041 /* We are the reset owner iff:
4042 * - No other protocol drivers present.
4043 * - This is the lowest among fcoe functions. */
4044 if (!(drv_presence & drv_presence_mask) &&
4045 (ha->portnum < fcoe_other_function)) {
4046 ql_dbg(ql_dbg_p3p, vha, 0xb07f,
4047 "This host is Reset owner.\n");
4048 ha->flags.nic_core_reset_owner = 1;
4049 }
4050}
4051
Saurav Kashyapfa492632012-11-21 02:40:29 -05004052static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004053__qla83xx_set_drv_ack(scsi_qla_host_t *vha)
4054{
4055 int rval = QLA_SUCCESS;
4056 struct qla_hw_data *ha = vha->hw;
4057 uint32_t drv_ack;
4058
4059 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
4060 if (rval == QLA_SUCCESS) {
4061 drv_ack |= (1 << ha->portnum);
4062 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRIVER_ACK, drv_ack);
4063 }
4064
4065 return rval;
4066}
4067
Saurav Kashyapfa492632012-11-21 02:40:29 -05004068static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004069__qla83xx_clear_drv_ack(scsi_qla_host_t *vha)
4070{
4071 int rval = QLA_SUCCESS;
4072 struct qla_hw_data *ha = vha->hw;
4073 uint32_t drv_ack;
4074
4075 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
4076 if (rval == QLA_SUCCESS) {
4077 drv_ack &= ~(1 << ha->portnum);
4078 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRIVER_ACK, drv_ack);
4079 }
4080
4081 return rval;
4082}
4083
Saurav Kashyapfa492632012-11-21 02:40:29 -05004084static const char *
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004085qla83xx_dev_state_to_string(uint32_t dev_state)
4086{
4087 switch (dev_state) {
4088 case QLA8XXX_DEV_COLD:
4089 return "COLD/RE-INIT";
4090 case QLA8XXX_DEV_INITIALIZING:
4091 return "INITIALIZING";
4092 case QLA8XXX_DEV_READY:
4093 return "READY";
4094 case QLA8XXX_DEV_NEED_RESET:
4095 return "NEED RESET";
4096 case QLA8XXX_DEV_NEED_QUIESCENT:
4097 return "NEED QUIESCENT";
4098 case QLA8XXX_DEV_FAILED:
4099 return "FAILED";
4100 case QLA8XXX_DEV_QUIESCENT:
4101 return "QUIESCENT";
4102 default:
4103 return "Unknown";
4104 }
4105}
4106
4107/* Assumes idc-lock always held on entry */
4108void
4109qla83xx_idc_audit(scsi_qla_host_t *vha, int audit_type)
4110{
4111 struct qla_hw_data *ha = vha->hw;
4112 uint32_t idc_audit_reg = 0, duration_secs = 0;
4113
4114 switch (audit_type) {
4115 case IDC_AUDIT_TIMESTAMP:
4116 ha->idc_audit_ts = (jiffies_to_msecs(jiffies) / 1000);
4117 idc_audit_reg = (ha->portnum) |
4118 (IDC_AUDIT_TIMESTAMP << 7) | (ha->idc_audit_ts << 8);
4119 qla83xx_wr_reg(vha, QLA83XX_IDC_AUDIT, idc_audit_reg);
4120 break;
4121
4122 case IDC_AUDIT_COMPLETION:
4123 duration_secs = ((jiffies_to_msecs(jiffies) -
4124 jiffies_to_msecs(ha->idc_audit_ts)) / 1000);
4125 idc_audit_reg = (ha->portnum) |
4126 (IDC_AUDIT_COMPLETION << 7) | (duration_secs << 8);
4127 qla83xx_wr_reg(vha, QLA83XX_IDC_AUDIT, idc_audit_reg);
4128 break;
4129
4130 default:
4131 ql_log(ql_log_warn, vha, 0xb078,
4132 "Invalid audit type specified.\n");
4133 break;
4134 }
4135}
4136
4137/* Assumes idc_lock always held on entry */
Saurav Kashyapfa492632012-11-21 02:40:29 -05004138static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004139qla83xx_initiating_reset(scsi_qla_host_t *vha)
4140{
4141 struct qla_hw_data *ha = vha->hw;
4142 uint32_t idc_control, dev_state;
4143
4144 __qla83xx_get_idc_control(vha, &idc_control);
4145 if ((idc_control & QLA83XX_IDC_RESET_DISABLED)) {
4146 ql_log(ql_log_info, vha, 0xb080,
4147 "NIC Core reset has been disabled. idc-control=0x%x\n",
4148 idc_control);
4149 return QLA_FUNCTION_FAILED;
4150 }
4151
4152 /* Set NEED-RESET iff in READY state and we are the reset-owner */
4153 qla83xx_rd_reg(vha, QLA83XX_IDC_DEV_STATE, &dev_state);
4154 if (ha->flags.nic_core_reset_owner && dev_state == QLA8XXX_DEV_READY) {
4155 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE,
4156 QLA8XXX_DEV_NEED_RESET);
4157 ql_log(ql_log_info, vha, 0xb056, "HW State: NEED RESET.\n");
4158 qla83xx_idc_audit(vha, IDC_AUDIT_TIMESTAMP);
4159 } else {
4160 const char *state = qla83xx_dev_state_to_string(dev_state);
4161 ql_log(ql_log_info, vha, 0xb057, "HW State: %s.\n", state);
4162
4163 /* SV: XXX: Is timeout required here? */
4164 /* Wait for IDC state change READY -> NEED_RESET */
4165 while (dev_state == QLA8XXX_DEV_READY) {
4166 qla83xx_idc_unlock(vha, 0);
4167 msleep(200);
4168 qla83xx_idc_lock(vha, 0);
4169 qla83xx_rd_reg(vha, QLA83XX_IDC_DEV_STATE, &dev_state);
4170 }
4171 }
4172
4173 /* Send IDC ack by writing to drv-ack register */
4174 __qla83xx_set_drv_ack(vha);
4175
4176 return QLA_SUCCESS;
4177}
4178
4179int
4180__qla83xx_set_idc_control(scsi_qla_host_t *vha, uint32_t idc_control)
4181{
4182 return qla83xx_wr_reg(vha, QLA83XX_IDC_CONTROL, idc_control);
4183}
4184
4185int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004186__qla83xx_get_idc_control(scsi_qla_host_t *vha, uint32_t *idc_control)
4187{
4188 return qla83xx_rd_reg(vha, QLA83XX_IDC_CONTROL, idc_control);
4189}
4190
Saurav Kashyapfa492632012-11-21 02:40:29 -05004191static int
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004192qla83xx_check_driver_presence(scsi_qla_host_t *vha)
4193{
4194 uint32_t drv_presence = 0;
4195 struct qla_hw_data *ha = vha->hw;
4196
4197 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
4198 if (drv_presence & (1 << ha->portnum))
4199 return QLA_SUCCESS;
4200 else
4201 return QLA_TEST_FAILED;
4202}
4203
4204int
4205qla83xx_nic_core_reset(scsi_qla_host_t *vha)
4206{
4207 int rval = QLA_SUCCESS;
4208 struct qla_hw_data *ha = vha->hw;
4209
4210 ql_dbg(ql_dbg_p3p, vha, 0xb058,
4211 "Entered %s().\n", __func__);
4212
4213 if (vha->device_flags & DFLG_DEV_FAILED) {
4214 ql_log(ql_log_warn, vha, 0xb059,
4215 "Device in unrecoverable FAILED state.\n");
4216 return QLA_FUNCTION_FAILED;
4217 }
4218
4219 qla83xx_idc_lock(vha, 0);
4220
4221 if (qla83xx_check_driver_presence(vha) != QLA_SUCCESS) {
4222 ql_log(ql_log_warn, vha, 0xb05a,
4223 "Function=0x%x has been removed from IDC participation.\n",
4224 ha->portnum);
4225 rval = QLA_FUNCTION_FAILED;
4226 goto exit;
4227 }
4228
4229 qla83xx_reset_ownership(vha);
4230
4231 rval = qla83xx_initiating_reset(vha);
4232
4233 /*
4234 * Perform reset if we are the reset-owner,
4235 * else wait till IDC state changes to READY/FAILED.
4236 */
4237 if (rval == QLA_SUCCESS) {
4238 rval = qla83xx_idc_state_handler(vha);
4239
4240 if (rval == QLA_SUCCESS)
4241 ha->flags.nic_core_hung = 0;
4242 __qla83xx_clear_drv_ack(vha);
4243 }
4244
4245exit:
4246 qla83xx_idc_unlock(vha, 0);
4247
4248 ql_dbg(ql_dbg_p3p, vha, 0xb05b, "Exiting %s.\n", __func__);
4249
4250 return rval;
4251}
4252
Saurav Kashyap81178772012-08-22 14:21:04 -04004253int
4254qla2xxx_mctp_dump(scsi_qla_host_t *vha)
4255{
4256 struct qla_hw_data *ha = vha->hw;
4257 int rval = QLA_FUNCTION_FAILED;
4258
4259 if (!IS_MCTP_CAPABLE(ha)) {
4260 /* This message can be removed from the final version */
4261 ql_log(ql_log_info, vha, 0x506d,
4262 "This board is not MCTP capable\n");
4263 return rval;
4264 }
4265
4266 if (!ha->mctp_dump) {
4267 ha->mctp_dump = dma_alloc_coherent(&ha->pdev->dev,
4268 MCTP_DUMP_SIZE, &ha->mctp_dump_dma, GFP_KERNEL);
4269
4270 if (!ha->mctp_dump) {
4271 ql_log(ql_log_warn, vha, 0x506e,
4272 "Failed to allocate memory for mctp dump\n");
4273 return rval;
4274 }
4275 }
4276
4277#define MCTP_DUMP_STR_ADDR 0x00000000
4278 rval = qla2x00_dump_mctp_data(vha, ha->mctp_dump_dma,
4279 MCTP_DUMP_STR_ADDR, MCTP_DUMP_SIZE/4);
4280 if (rval != QLA_SUCCESS) {
4281 ql_log(ql_log_warn, vha, 0x506f,
4282 "Failed to capture mctp dump\n");
4283 } else {
4284 ql_log(ql_log_info, vha, 0x5070,
4285 "Mctp dump capture for host (%ld/%p).\n",
4286 vha->host_no, ha->mctp_dump);
4287 ha->mctp_dumped = 1;
4288 }
4289
Saurav Kashyap409ee0f2012-08-22 14:21:29 -04004290 if (!ha->flags.nic_core_reset_hdlr_active && !ha->portnum) {
Saurav Kashyap81178772012-08-22 14:21:04 -04004291 ha->flags.nic_core_reset_hdlr_active = 1;
4292 rval = qla83xx_restart_nic_firmware(vha);
4293 if (rval)
4294 /* NIC Core reset failed. */
4295 ql_log(ql_log_warn, vha, 0x5071,
4296 "Failed to restart nic firmware\n");
4297 else
4298 ql_dbg(ql_dbg_p3p, vha, 0xb084,
4299 "Restarted NIC firmware successfully.\n");
4300 ha->flags.nic_core_reset_hdlr_active = 0;
4301 }
4302
4303 return rval;
4304
4305}
4306
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004307/*
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004308* qla2x00_quiesce_io
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004309* Description: This function will block the new I/Os
4310* Its not aborting any I/Os as context
4311* is not destroyed during quiescence
4312* Arguments: scsi_qla_host_t
4313* return : void
4314*/
4315void
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004316qla2x00_quiesce_io(scsi_qla_host_t *vha)
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004317{
4318 struct qla_hw_data *ha = vha->hw;
4319 struct scsi_qla_host *vp;
4320
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004321 ql_dbg(ql_dbg_dpc, vha, 0x401d,
4322 "Quiescing I/O - ha=%p.\n", ha);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004323
4324 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
4325 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
4326 atomic_set(&vha->loop_state, LOOP_DOWN);
4327 qla2x00_mark_all_devices_lost(vha, 0);
4328 list_for_each_entry(vp, &ha->vp_list, list)
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004329 qla2x00_mark_all_devices_lost(vp, 0);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004330 } else {
4331 if (!atomic_read(&vha->loop_down_timer))
4332 atomic_set(&vha->loop_down_timer,
4333 LOOP_DOWN_TIME);
4334 }
4335 /* Wait for pending cmds to complete */
4336 qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST);
4337}
4338
Giridhar Malavalia9083012010-04-12 17:59:55 -07004339void
4340qla2x00_abort_isp_cleanup(scsi_qla_host_t *vha)
4341{
4342 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004343 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07004344 unsigned long flags;
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08004345 fc_port_t *fcport;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004346
Saurav Kashyape46ef002011-02-23 15:27:16 -08004347 /* For ISP82XX, driver waits for completion of the commands.
4348 * online flag should be set.
4349 */
4350 if (!IS_QLA82XX(ha))
4351 vha->flags.online = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004352 ha->flags.chip_reset_done = 0;
4353 clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Saurav Kashyap2be21fa2012-05-15 14:34:16 -04004354 vha->qla_stats.total_isp_aborts++;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004355
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004356 ql_log(ql_log_info, vha, 0x00af,
4357 "Performing ISP error recovery - ha=%p.\n", ha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004358
Saurav Kashyape46ef002011-02-23 15:27:16 -08004359 /* For ISP82XX, reset_chip is just disabling interrupts.
4360 * Driver waits for the completion of the commands.
4361 * the interrupts need to be enabled.
4362 */
Giridhar Malavalia9083012010-04-12 17:59:55 -07004363 if (!IS_QLA82XX(ha))
4364 ha->isp_ops->reset_chip(vha);
4365
4366 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
4367 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
4368 atomic_set(&vha->loop_state, LOOP_DOWN);
4369 qla2x00_mark_all_devices_lost(vha, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07004370
4371 spin_lock_irqsave(&ha->vport_slock, flags);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004372 list_for_each_entry(vp, &ha->vp_list, list) {
Arun Easifeafb7b2010-09-03 14:57:00 -07004373 atomic_inc(&vp->vref_count);
4374 spin_unlock_irqrestore(&ha->vport_slock, flags);
4375
Giridhar Malavalia9083012010-04-12 17:59:55 -07004376 qla2x00_mark_all_devices_lost(vp, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07004377
4378 spin_lock_irqsave(&ha->vport_slock, flags);
4379 atomic_dec(&vp->vref_count);
4380 }
4381 spin_unlock_irqrestore(&ha->vport_slock, flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004382 } else {
4383 if (!atomic_read(&vha->loop_down_timer))
4384 atomic_set(&vha->loop_down_timer,
4385 LOOP_DOWN_TIME);
4386 }
4387
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08004388 /* Clear all async request states across all VPs. */
4389 list_for_each_entry(fcport, &vha->vp_fcports, list)
4390 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
4391 spin_lock_irqsave(&ha->vport_slock, flags);
4392 list_for_each_entry(vp, &ha->vp_list, list) {
4393 atomic_inc(&vp->vref_count);
4394 spin_unlock_irqrestore(&ha->vport_slock, flags);
4395
4396 list_for_each_entry(fcport, &vp->vp_fcports, list)
4397 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
4398
4399 spin_lock_irqsave(&ha->vport_slock, flags);
4400 atomic_dec(&vp->vref_count);
4401 }
4402 spin_unlock_irqrestore(&ha->vport_slock, flags);
4403
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07004404 if (!ha->flags.eeh_busy) {
4405 /* Make sure for ISP 82XX IO DMA is complete */
4406 if (IS_QLA82XX(ha)) {
Giridhar Malavali71905752011-02-23 15:27:10 -08004407 qla82xx_chip_reset_cleanup(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004408 ql_log(ql_log_info, vha, 0x00b4,
4409 "Done chip reset cleanup.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -07004410
Saurav Kashyape46ef002011-02-23 15:27:16 -08004411 /* Done waiting for pending commands.
4412 * Reset the online flag.
4413 */
4414 vha->flags.online = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07004417 /* Requeue all commands in outstanding command list. */
4418 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
4419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420}
4421
4422/*
4423* qla2x00_abort_isp
4424* Resets ISP and aborts all outstanding commands.
4425*
4426* Input:
4427* ha = adapter block pointer.
4428*
4429* Returns:
4430* 0 = success
4431*/
4432int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004433qla2x00_abort_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434{
Andrew Vasquez476e8972006-08-23 14:54:55 -07004435 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 uint8_t status = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004437 struct qla_hw_data *ha = vha->hw;
4438 struct scsi_qla_host *vp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004439 struct req_que *req = ha->req_q_map[0];
Arun Easifeafb7b2010-09-03 14:57:00 -07004440 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004442 if (vha->flags.online) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07004443 qla2x00_abort_isp_cleanup(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
Santosh Vernekara61712972012-08-22 14:21:13 -04004445 if (IS_QLA8031(ha)) {
4446 ql_dbg(ql_dbg_p3p, vha, 0xb05c,
4447 "Clearing fcoe driver presence.\n");
4448 if (qla83xx_clear_drv_presence(vha) != QLA_SUCCESS)
4449 ql_dbg(ql_dbg_p3p, vha, 0xb073,
4450 "Error while clearing DRV-Presence.\n");
4451 }
4452
Andrew Vasquez85880802009-12-15 21:29:46 -08004453 if (unlikely(pci_channel_offline(ha->pdev) &&
4454 ha->flags.pci_channel_io_perm_failure)) {
4455 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
4456 status = 0;
4457 return status;
4458 }
4459
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004460 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -08004461
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004462 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004464 if (!qla2x00_restart_isp(vha)) {
4465 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004467 if (!atomic_read(&vha->loop_down_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 /*
4469 * Issue marker command only when we are going
4470 * to start the I/O .
4471 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004472 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 }
4474
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004475 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004477 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004479 ha->isp_abort_cnt = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004480 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Andrew Vasquez476e8972006-08-23 14:54:55 -07004481
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08004482 if (IS_QLA81XX(ha) || IS_QLA8031(ha))
4483 qla2x00_get_fw_version(vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004484 if (ha->fce) {
4485 ha->flags.fce_enabled = 1;
4486 memset(ha->fce, 0,
4487 fce_calc_size(ha->fce_bufs));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004488 rval = qla2x00_enable_fce_trace(vha,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004489 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
4490 &ha->fce_bufs);
4491 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004492 ql_log(ql_log_warn, vha, 0x8033,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004493 "Unable to reinitialize FCE "
4494 "(%d).\n", rval);
4495 ha->flags.fce_enabled = 0;
4496 }
4497 }
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004498
4499 if (ha->eft) {
4500 memset(ha->eft, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004501 rval = qla2x00_enable_eft_trace(vha,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004502 ha->eft_dma, EFT_NUM_BUFFERS);
4503 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004504 ql_log(ql_log_warn, vha, 0x8034,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004505 "Unable to reinitialize EFT "
4506 "(%d).\n", rval);
4507 }
4508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 } else { /* failed the ISP abort */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004510 vha->flags.online = 1;
4511 if (test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 if (ha->isp_abort_cnt == 0) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004513 ql_log(ql_log_fatal, vha, 0x8035,
4514 "ISP error recover failed - "
4515 "board disabled.\n");
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004516 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 * The next call disables the board
4518 * completely.
4519 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004520 ha->isp_ops->reset_adapter(vha);
4521 vha->flags.online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 clear_bit(ISP_ABORT_RETRY,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004523 &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 status = 0;
4525 } else { /* schedule another ISP abort */
4526 ha->isp_abort_cnt--;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004527 ql_dbg(ql_dbg_taskm, vha, 0x8020,
4528 "ISP abort - retry remaining %d.\n",
4529 ha->isp_abort_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 status = 1;
4531 }
4532 } else {
4533 ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004534 ql_dbg(ql_dbg_taskm, vha, 0x8021,
4535 "ISP error recovery - retrying (%d) "
4536 "more times.\n", ha->isp_abort_cnt);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004537 set_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 status = 1;
4539 }
4540 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004541
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542 }
4543
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004544 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004545 ql_dbg(ql_dbg_taskm, vha, 0x8022, "%s succeeded.\n", __func__);
Arun Easifeafb7b2010-09-03 14:57:00 -07004546
4547 spin_lock_irqsave(&ha->vport_slock, flags);
4548 list_for_each_entry(vp, &ha->vp_list, list) {
4549 if (vp->vp_idx) {
4550 atomic_inc(&vp->vref_count);
4551 spin_unlock_irqrestore(&ha->vport_slock, flags);
4552
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004553 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07004554
4555 spin_lock_irqsave(&ha->vport_slock, flags);
4556 atomic_dec(&vp->vref_count);
4557 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004558 }
Arun Easifeafb7b2010-09-03 14:57:00 -07004559 spin_unlock_irqrestore(&ha->vport_slock, flags);
4560
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004561 if (IS_QLA8031(ha)) {
4562 ql_dbg(ql_dbg_p3p, vha, 0xb05d,
4563 "Setting back fcoe driver presence.\n");
4564 if (qla83xx_set_drv_presence(vha) != QLA_SUCCESS)
4565 ql_dbg(ql_dbg_p3p, vha, 0xb074,
4566 "Error while setting DRV-Presence.\n");
4567 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004568 } else {
Joe Perchesd8424f62011-11-18 09:03:06 -08004569 ql_log(ql_log_warn, vha, 0x8023, "%s **** FAILED ****.\n",
4570 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 }
4572
4573 return(status);
4574}
4575
4576/*
4577* qla2x00_restart_isp
4578* restarts the ISP after a reset
4579*
4580* Input:
4581* ha = adapter block pointer.
4582*
4583* Returns:
4584* 0 = success
4585*/
4586static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004587qla2x00_restart_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588{
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08004589 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 uint32_t wait_time;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004591 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004592 struct req_que *req = ha->req_q_map[0];
4593 struct rsp_que *rsp = ha->rsp_q_map[0];
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004594 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595
4596 /* If firmware needs to be loaded */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004597 if (qla2x00_isp_firmware(vha)) {
4598 vha->flags.online = 0;
4599 status = ha->isp_ops->chip_diag(vha);
4600 if (!status)
4601 status = qla2x00_setup_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 }
4603
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004604 if (!status && !(status = qla2x00_init_rings(vha))) {
4605 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -07004606 ha->flags.chip_reset_done = 1;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004607 /* Initialize the queues in use */
4608 qla25xx_init_queues(ha);
4609
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004610 status = qla2x00_fw_ready(vha);
4611 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004612 ql_dbg(ql_dbg_taskm, vha, 0x8031,
4613 "Start configure loop status = %d.\n", status);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004614
4615 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004616 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004617
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004618 vha->flags.online = 1;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004619
4620 /*
4621 * Process any ATIO queue entries that came in
4622 * while we weren't online.
4623 */
4624 spin_lock_irqsave(&ha->hardware_lock, flags);
4625 if (qla_tgt_mode_enabled(vha))
4626 qlt_24xx_process_atio_queue(vha);
4627 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4628
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 /* Wait at most MAX_TARGET RSCNs for a stable link. */
4630 wait_time = 256;
4631 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004632 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4633 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004635 } while (!atomic_read(&vha->loop_down_timer) &&
4636 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
4637 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
4638 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 }
4640
4641 /* if no cable then assume it's good */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004642 if ((vha->device_flags & DFLG_NO_CABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 status = 0;
4644
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004645 ql_dbg(ql_dbg_taskm, vha, 0x8032,
4646 "Configure loop done, status = 0x%x.\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 }
4648 return (status);
4649}
4650
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004651static int
4652qla25xx_init_queues(struct qla_hw_data *ha)
4653{
4654 struct rsp_que *rsp = NULL;
4655 struct req_que *req = NULL;
4656 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
4657 int ret = -1;
4658 int i;
4659
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004660 for (i = 1; i < ha->max_rsp_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004661 rsp = ha->rsp_q_map[i];
4662 if (rsp) {
4663 rsp->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004664 ret = qla25xx_init_rsp_que(base_vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004665 if (ret != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004666 ql_dbg(ql_dbg_init, base_vha, 0x00ff,
4667 "%s Rsp que: %d init failed.\n",
4668 __func__, rsp->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004669 else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004670 ql_dbg(ql_dbg_init, base_vha, 0x0100,
4671 "%s Rsp que: %d inited.\n",
4672 __func__, rsp->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004673 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004674 }
4675 for (i = 1; i < ha->max_req_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004676 req = ha->req_q_map[i];
4677 if (req) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08004678 /* Clear outstanding commands array. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004679 req->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004680 ret = qla25xx_init_req_que(base_vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004681 if (ret != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004682 ql_dbg(ql_dbg_init, base_vha, 0x0101,
4683 "%s Req que: %d init failed.\n",
4684 __func__, req->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004685 else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004686 ql_dbg(ql_dbg_init, base_vha, 0x0102,
4687 "%s Req que: %d inited.\n",
4688 __func__, req->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004689 }
4690 }
4691 return ret;
4692}
4693
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694/*
4695* qla2x00_reset_adapter
4696* Reset adapter.
4697*
4698* Input:
4699* ha = adapter block pointer.
4700*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07004701void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004702qla2x00_reset_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703{
4704 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004705 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07004706 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004708 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004709 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 spin_lock_irqsave(&ha->hardware_lock, flags);
4712 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
4713 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4714 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
4715 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4716 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4717}
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004718
4719void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004720qla24xx_reset_adapter(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004721{
4722 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004723 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004724 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
4725
Giridhar Malavalia9083012010-04-12 17:59:55 -07004726 if (IS_QLA82XX(ha))
4727 return;
4728
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004729 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004730 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004731
4732 spin_lock_irqsave(&ha->hardware_lock, flags);
4733 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
4734 RD_REG_DWORD(&reg->hccr);
4735 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
4736 RD_REG_DWORD(&reg->hccr);
4737 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez09ff36d2009-01-22 09:45:30 -08004738
4739 if (IS_NOPOLLING_TYPE(ha))
4740 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004741}
4742
David Miller4e08df32007-04-16 12:37:43 -07004743/* On sparc systems, obtain port and node WWN from firmware
4744 * properties.
4745 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004746static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t *vha,
4747 struct nvram_24xx *nv)
David Miller4e08df32007-04-16 12:37:43 -07004748{
4749#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004750 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07004751 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07004752 struct device_node *dp = pci_device_to_OF_node(pdev);
4753 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07004754 int len;
4755
4756 val = of_get_property(dp, "port-wwn", &len);
4757 if (val && len >= WWN_SIZE)
4758 memcpy(nv->port_name, val, WWN_SIZE);
4759
4760 val = of_get_property(dp, "node-wwn", &len);
4761 if (val && len >= WWN_SIZE)
4762 memcpy(nv->node_name, val, WWN_SIZE);
4763#endif
4764}
4765
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004766int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004767qla24xx_nvram_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004768{
David Miller4e08df32007-04-16 12:37:43 -07004769 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004770 struct init_cb_24xx *icb;
4771 struct nvram_24xx *nv;
4772 uint32_t *dptr;
4773 uint8_t *dptr1, *dptr2;
4774 uint32_t chksum;
4775 uint16_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004776 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004777
David Miller4e08df32007-04-16 12:37:43 -07004778 rval = QLA_SUCCESS;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004779 icb = (struct init_cb_24xx *)ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07004780 nv = ha->nvram;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004781
4782 /* Determine NVRAM starting address. */
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004783 if (ha->flags.port0) {
4784 ha->nvram_base = FA_NVRAM_FUNC0_ADDR;
4785 ha->vpd_base = FA_NVRAM_VPD0_ADDR;
4786 } else {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004787 ha->nvram_base = FA_NVRAM_FUNC1_ADDR;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -08004788 ha->vpd_base = FA_NVRAM_VPD1_ADDR;
4789 }
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004790 ha->nvram_size = sizeof(struct nvram_24xx);
4791 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004792 if (IS_QLA82XX(ha))
4793 ha->vpd_size = FA_VPD_SIZE_82XX;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004794
Seokmann Ju281afe12007-07-26 13:43:34 -07004795 /* Get VPD data into cache */
4796 ha->vpd = ha->nvram + VPD_OFFSET;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004797 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd,
Seokmann Ju281afe12007-07-26 13:43:34 -07004798 ha->nvram_base - FA_NVRAM_FUNC0_ADDR, FA_NVRAM_VPD_SIZE * 4);
4799
4800 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004801 dptr = (uint32_t *)nv;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004802 ha->isp_ops->read_nvram(vha, (uint8_t *)dptr, ha->nvram_base,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004803 ha->nvram_size);
4804 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
4805 chksum += le32_to_cpu(*dptr++);
4806
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004807 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x006a,
4808 "Contents of NVRAM\n");
4809 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010d,
4810 (uint8_t *)nv, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004811
4812 /* Bad NVRAM data, set defaults parameters. */
4813 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
4814 || nv->id[3] != ' ' ||
4815 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
4816 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004817 ql_log(ql_log_warn, vha, 0x006b,
Raul Porcel9e336522012-05-15 14:34:08 -04004818 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004819 "version=0x%x.\n", chksum, nv->id[0], nv->nvram_version);
4820 ql_log(ql_log_warn, vha, 0x006c,
4821 "Falling back to functioning (yet invalid -- WWPN) "
4822 "defaults.\n");
David Miller4e08df32007-04-16 12:37:43 -07004823
4824 /*
4825 * Set default initialization control block.
4826 */
4827 memset(nv, 0, ha->nvram_size);
4828 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
4829 nv->version = __constant_cpu_to_le16(ICB_VERSION);
4830 nv->frame_payload_size = __constant_cpu_to_le16(2048);
4831 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4832 nv->exchange_count = __constant_cpu_to_le16(0);
4833 nv->hard_address = __constant_cpu_to_le16(124);
4834 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004835 nv->port_name[1] = 0x00 + ha->port_no;
David Miller4e08df32007-04-16 12:37:43 -07004836 nv->port_name[2] = 0x00;
4837 nv->port_name[3] = 0xe0;
4838 nv->port_name[4] = 0x8b;
4839 nv->port_name[5] = 0x1c;
4840 nv->port_name[6] = 0x55;
4841 nv->port_name[7] = 0x86;
4842 nv->node_name[0] = 0x20;
4843 nv->node_name[1] = 0x00;
4844 nv->node_name[2] = 0x00;
4845 nv->node_name[3] = 0xe0;
4846 nv->node_name[4] = 0x8b;
4847 nv->node_name[5] = 0x1c;
4848 nv->node_name[6] = 0x55;
4849 nv->node_name[7] = 0x86;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004850 qla24xx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07004851 nv->login_retry_count = __constant_cpu_to_le16(8);
4852 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
4853 nv->login_timeout = __constant_cpu_to_le16(0);
4854 nv->firmware_options_1 =
4855 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
4856 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
4857 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
4858 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
4859 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
4860 nv->efi_parameters = __constant_cpu_to_le32(0);
4861 nv->reset_delay = 5;
4862 nv->max_luns_per_target = __constant_cpu_to_le16(128);
4863 nv->port_down_retry_count = __constant_cpu_to_le16(30);
4864 nv->link_down_timeout = __constant_cpu_to_le16(30);
4865
4866 rval = 1;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004867 }
4868
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004869 if (!qla_ini_mode_enabled(vha)) {
4870 /* Don't enable full login after initial LIP */
4871 nv->firmware_options_1 &= __constant_cpu_to_le32(~BIT_13);
4872 /* Don't enable LIP full login for initiator */
4873 nv->host_p &= __constant_cpu_to_le32(~BIT_10);
4874 }
4875
4876 qlt_24xx_config_nvram_stage1(vha, nv);
4877
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004878 /* Reset Initialization control block */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004879 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004880
4881 /* Copy 1st segment. */
4882 dptr1 = (uint8_t *)icb;
4883 dptr2 = (uint8_t *)&nv->version;
4884 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
4885 while (cnt--)
4886 *dptr1++ = *dptr2++;
4887
4888 icb->login_retry_count = nv->login_retry_count;
Andrew Vasquez3ea66e22006-06-23 16:11:27 -07004889 icb->link_down_on_nos = nv->link_down_on_nos;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004890
4891 /* Copy 2nd segment. */
4892 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
4893 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
4894 cnt = (uint8_t *)&icb->reserved_3 -
4895 (uint8_t *)&icb->interrupt_delay_timer;
4896 while (cnt--)
4897 *dptr1++ = *dptr2++;
4898
4899 /*
4900 * Setup driver NVRAM options.
4901 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004902 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08004903 "QLA2462");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004904
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004905 qlt_24xx_config_nvram_stage2(vha, icb);
4906
Andrew Vasquez5341e862006-05-17 15:09:16 -07004907 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004908 /* Use alternate WWN? */
Andrew Vasquez5341e862006-05-17 15:09:16 -07004909 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
4910 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
4911 }
4912
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004913 /* Prepare nodename */
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004914 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004915 /*
4916 * Firmware will apply the following mask if the nodename was
4917 * not provided.
4918 */
4919 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
4920 icb->node_name[0] &= 0xF0;
4921 }
4922
4923 /* Set host adapter parameters. */
4924 ha->flags.disable_risc_code_load = 0;
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08004925 ha->flags.enable_lip_reset = 0;
4926 ha->flags.enable_lip_full_login =
4927 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
4928 ha->flags.enable_target_reset =
4929 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004930 ha->flags.enable_led_scheme = 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07004931 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004932
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004933 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
4934 (BIT_6 | BIT_5 | BIT_4)) >> 4;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004935
4936 memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
4937 sizeof(ha->fw_seriallink_options24));
4938
4939 /* save HBA serial number */
4940 ha->serial0 = icb->port_name[5];
4941 ha->serial1 = icb->port_name[6];
4942 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004943 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
4944 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004945
andrew.vasquez@qlogic.combc8fb3c2006-01-13 17:05:42 -08004946 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4947
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004948 ha->retry_count = le16_to_cpu(nv->login_retry_count);
4949
4950 /* Set minimum login_timeout to 4 seconds. */
4951 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
4952 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
4953 if (le16_to_cpu(nv->login_timeout) < 4)
4954 nv->login_timeout = __constant_cpu_to_le16(4);
4955 ha->login_timeout = le16_to_cpu(nv->login_timeout);
Seokmann Juc6852c42008-04-24 15:21:29 -07004956 icb->login_timeout = nv->login_timeout;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004957
Andrew Vasquez00a537b2008-02-28 14:06:11 -08004958 /* Set minimum RATOV to 100 tenths of a second. */
4959 ha->r_a_tov = 100;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004960
4961 ha->loop_reset_delay = nv->reset_delay;
4962
4963 /* Link Down Timeout = 0:
4964 *
4965 * When Port Down timer expires we will start returning
4966 * I/O's to OS with "DID_NO_CONNECT".
4967 *
4968 * Link Down Timeout != 0:
4969 *
4970 * The driver waits for the link to come up after link down
4971 * before returning I/Os to OS with "DID_NO_CONNECT".
4972 */
4973 if (le16_to_cpu(nv->link_down_timeout) == 0) {
4974 ha->loop_down_abort_time =
4975 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
4976 } else {
4977 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
4978 ha->loop_down_abort_time =
4979 (LOOP_DOWN_TIME - ha->link_down_timeout);
4980 }
4981
4982 /* Need enough time to try and get the port back. */
4983 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
4984 if (qlport_down_retry)
4985 ha->port_down_retry_count = qlport_down_retry;
4986
4987 /* Set login_retry_count */
4988 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
4989 if (ha->port_down_retry_count ==
4990 le16_to_cpu(nv->port_down_retry_count) &&
4991 ha->port_down_retry_count > 3)
4992 ha->login_retry_count = ha->port_down_retry_count;
4993 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
4994 ha->login_retry_count = ha->port_down_retry_count;
4995 if (ql2xloginretrycount)
4996 ha->login_retry_count = ql2xloginretrycount;
4997
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004998 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004999 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07005000 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
5001 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
5002 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
5003 le16_to_cpu(icb->interrupt_delay_timer): 2;
5004 }
5005 icb->firmware_options_2 &= __constant_cpu_to_le32(
5006 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005007 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07005008 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08005009 ha->zio_mode = QLA_ZIO_MODE_6;
5010
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005011 ql_log(ql_log_info, vha, 0x006f,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07005012 "ZIO mode %d enabled; timer delay (%d us).\n",
5013 ha->zio_mode, ha->zio_timer * 100);
5014
5015 icb->firmware_options_2 |= cpu_to_le32(
5016 (uint32_t)ha->zio_mode);
5017 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005018 vha->flags.process_response_queue = 1;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07005019 }
5020
David Miller4e08df32007-04-16 12:37:43 -07005021 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005022 ql_log(ql_log_warn, vha, 0x0070,
5023 "NVRAM configuration failed.\n");
David Miller4e08df32007-04-16 12:37:43 -07005024 }
5025 return (rval);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005026}
5027
Adrian Bunk413975a2006-06-30 02:33:06 -07005028static int
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005029qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
5030 uint32_t faddr)
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005031{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005032 int rval = QLA_SUCCESS;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005033 int segments, fragment;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005034 uint32_t *dcode, dlen;
5035 uint32_t risc_addr;
5036 uint32_t risc_size;
5037 uint32_t i;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005038 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005039 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005040
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005041 ql_dbg(ql_dbg_init, vha, 0x008b,
Chad Dupuiscfb09192011-11-18 09:03:07 -08005042 "FW: Loading firmware from flash (%x).\n", faddr);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005043
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005044 rval = QLA_SUCCESS;
5045
5046 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005047 dcode = (uint32_t *)req->ring;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005048 *srisc_addr = 0;
5049
5050 /* Validate firmware image by checking version. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005051 qla24xx_read_flash_data(vha, dcode, faddr + 4, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005052 for (i = 0; i < 4; i++)
5053 dcode[i] = be32_to_cpu(dcode[i]);
5054 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
5055 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
5056 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
5057 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005058 ql_log(ql_log_fatal, vha, 0x008c,
5059 "Unable to verify the integrity of flash firmware "
5060 "image.\n");
5061 ql_log(ql_log_fatal, vha, 0x008d,
5062 "Firmware data: %08x %08x %08x %08x.\n",
5063 dcode[0], dcode[1], dcode[2], dcode[3]);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005064
5065 return QLA_FUNCTION_FAILED;
5066 }
5067
5068 while (segments && rval == QLA_SUCCESS) {
5069 /* Read segment's load information. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005070 qla24xx_read_flash_data(vha, dcode, faddr, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005071
5072 risc_addr = be32_to_cpu(dcode[2]);
5073 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
5074 risc_size = be32_to_cpu(dcode[3]);
5075
5076 fragment = 0;
5077 while (risc_size > 0 && rval == QLA_SUCCESS) {
5078 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
5079 if (dlen > risc_size)
5080 dlen = risc_size;
5081
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005082 ql_dbg(ql_dbg_init, vha, 0x008e,
5083 "Loading risc segment@ risc addr %x "
5084 "number of dwords 0x%x offset 0x%x.\n",
5085 risc_addr, dlen, faddr);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005086
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005087 qla24xx_read_flash_data(vha, dcode, faddr, dlen);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005088 for (i = 0; i < dlen; i++)
5089 dcode[i] = swab32(dcode[i]);
5090
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005091 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005092 dlen);
5093 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005094 ql_log(ql_log_fatal, vha, 0x008f,
5095 "Failed to load segment %d of firmware.\n",
5096 fragment);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005097 break;
5098 }
5099
5100 faddr += dlen;
5101 risc_addr += dlen;
5102 risc_size -= dlen;
5103 fragment++;
5104 }
5105
5106 /* Next segment. */
5107 segments--;
5108 }
5109
5110 return rval;
5111}
5112
Giridhar Malavalie9454a82013-02-08 01:57:47 -05005113#define QLA_FW_URL "http://ldriver.qlogic.com/firmware/"
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005114
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005115int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005116qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez54333832005-11-09 15:49:04 -08005117{
5118 int rval;
5119 int i, fragment;
5120 uint16_t *wcode, *fwcode;
5121 uint32_t risc_addr, risc_size, fwclen, wlen, *seg;
5122 struct fw_blob *blob;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005123 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005124 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez54333832005-11-09 15:49:04 -08005125
5126 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005127 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08005128 if (!blob) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005129 ql_log(ql_log_info, vha, 0x0083,
5130 "Fimware image unavailable.\n");
5131 ql_log(ql_log_info, vha, 0x0084,
5132 "Firmware images can be retrieved from: "QLA_FW_URL ".\n");
Andrew Vasquez54333832005-11-09 15:49:04 -08005133 return QLA_FUNCTION_FAILED;
5134 }
5135
5136 rval = QLA_SUCCESS;
5137
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005138 wcode = (uint16_t *)req->ring;
Andrew Vasquez54333832005-11-09 15:49:04 -08005139 *srisc_addr = 0;
5140 fwcode = (uint16_t *)blob->fw->data;
5141 fwclen = 0;
5142
5143 /* Validate firmware image by checking version. */
5144 if (blob->fw->size < 8 * sizeof(uint16_t)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005145 ql_log(ql_log_fatal, vha, 0x0085,
5146 "Unable to verify integrity of firmware image (%Zd).\n",
Andrew Vasquez54333832005-11-09 15:49:04 -08005147 blob->fw->size);
5148 goto fail_fw_integrity;
5149 }
5150 for (i = 0; i < 4; i++)
5151 wcode[i] = be16_to_cpu(fwcode[i + 4]);
5152 if ((wcode[0] == 0xffff && wcode[1] == 0xffff && wcode[2] == 0xffff &&
5153 wcode[3] == 0xffff) || (wcode[0] == 0 && wcode[1] == 0 &&
5154 wcode[2] == 0 && wcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005155 ql_log(ql_log_fatal, vha, 0x0086,
5156 "Unable to verify integrity of firmware image.\n");
5157 ql_log(ql_log_fatal, vha, 0x0087,
5158 "Firmware data: %04x %04x %04x %04x.\n",
5159 wcode[0], wcode[1], wcode[2], wcode[3]);
Andrew Vasquez54333832005-11-09 15:49:04 -08005160 goto fail_fw_integrity;
5161 }
5162
5163 seg = blob->segs;
5164 while (*seg && rval == QLA_SUCCESS) {
5165 risc_addr = *seg;
5166 *srisc_addr = *srisc_addr == 0 ? *seg : *srisc_addr;
5167 risc_size = be16_to_cpu(fwcode[3]);
5168
5169 /* Validate firmware image size. */
5170 fwclen += risc_size * sizeof(uint16_t);
5171 if (blob->fw->size < fwclen) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005172 ql_log(ql_log_fatal, vha, 0x0088,
Andrew Vasquez54333832005-11-09 15:49:04 -08005173 "Unable to verify integrity of firmware image "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005174 "(%Zd).\n", blob->fw->size);
Andrew Vasquez54333832005-11-09 15:49:04 -08005175 goto fail_fw_integrity;
5176 }
5177
5178 fragment = 0;
5179 while (risc_size > 0 && rval == QLA_SUCCESS) {
5180 wlen = (uint16_t)(ha->fw_transfer_size >> 1);
5181 if (wlen > risc_size)
5182 wlen = risc_size;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005183 ql_dbg(ql_dbg_init, vha, 0x0089,
5184 "Loading risc segment@ risc addr %x number of "
5185 "words 0x%x.\n", risc_addr, wlen);
Andrew Vasquez54333832005-11-09 15:49:04 -08005186
5187 for (i = 0; i < wlen; i++)
5188 wcode[i] = swab16(fwcode[i]);
5189
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005190 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquez54333832005-11-09 15:49:04 -08005191 wlen);
5192 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005193 ql_log(ql_log_fatal, vha, 0x008a,
5194 "Failed to load segment %d of firmware.\n",
5195 fragment);
Andrew Vasquez54333832005-11-09 15:49:04 -08005196 break;
5197 }
5198
5199 fwcode += wlen;
5200 risc_addr += wlen;
5201 risc_size -= wlen;
5202 fragment++;
5203 }
5204
5205 /* Next segment. */
5206 seg++;
5207 }
5208 return rval;
5209
5210fail_fw_integrity:
5211 return QLA_FUNCTION_FAILED;
5212}
5213
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005214static int
5215qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005216{
5217 int rval;
5218 int segments, fragment;
5219 uint32_t *dcode, dlen;
5220 uint32_t risc_addr;
5221 uint32_t risc_size;
5222 uint32_t i;
Andrew Vasquez54333832005-11-09 15:49:04 -08005223 struct fw_blob *blob;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005224 uint32_t *fwcode, fwclen;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005225 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005226 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005227
Andrew Vasquez54333832005-11-09 15:49:04 -08005228 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005229 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08005230 if (!blob) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005231 ql_log(ql_log_warn, vha, 0x0090,
5232 "Fimware image unavailable.\n");
5233 ql_log(ql_log_warn, vha, 0x0091,
5234 "Firmware images can be retrieved from: "
5235 QLA_FW_URL ".\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005236
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005237 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005238 }
5239
Chad Dupuiscfb09192011-11-18 09:03:07 -08005240 ql_dbg(ql_dbg_init, vha, 0x0092,
5241 "FW: Loading via request-firmware.\n");
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005242
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005243 rval = QLA_SUCCESS;
5244
5245 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005246 dcode = (uint32_t *)req->ring;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005247 *srisc_addr = 0;
Andrew Vasquez54333832005-11-09 15:49:04 -08005248 fwcode = (uint32_t *)blob->fw->data;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005249 fwclen = 0;
5250
5251 /* Validate firmware image by checking version. */
Andrew Vasquez54333832005-11-09 15:49:04 -08005252 if (blob->fw->size < 8 * sizeof(uint32_t)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005253 ql_log(ql_log_fatal, vha, 0x0093,
5254 "Unable to verify integrity of firmware image (%Zd).\n",
Andrew Vasquez54333832005-11-09 15:49:04 -08005255 blob->fw->size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005256 goto fail_fw_integrity;
5257 }
5258 for (i = 0; i < 4; i++)
5259 dcode[i] = be32_to_cpu(fwcode[i + 4]);
5260 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
5261 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
5262 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
5263 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005264 ql_log(ql_log_fatal, vha, 0x0094,
5265 "Unable to verify integrity of firmware image (%Zd).\n",
5266 blob->fw->size);
5267 ql_log(ql_log_fatal, vha, 0x0095,
5268 "Firmware data: %08x %08x %08x %08x.\n",
5269 dcode[0], dcode[1], dcode[2], dcode[3]);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005270 goto fail_fw_integrity;
5271 }
5272
5273 while (segments && rval == QLA_SUCCESS) {
5274 risc_addr = be32_to_cpu(fwcode[2]);
5275 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
5276 risc_size = be32_to_cpu(fwcode[3]);
5277
5278 /* Validate firmware image size. */
5279 fwclen += risc_size * sizeof(uint32_t);
Andrew Vasquez54333832005-11-09 15:49:04 -08005280 if (blob->fw->size < fwclen) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005281 ql_log(ql_log_fatal, vha, 0x0096,
Andrew Vasquez54333832005-11-09 15:49:04 -08005282 "Unable to verify integrity of firmware image "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005283 "(%Zd).\n", blob->fw->size);
Andrew Vasquez54333832005-11-09 15:49:04 -08005284
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005285 goto fail_fw_integrity;
5286 }
5287
5288 fragment = 0;
5289 while (risc_size > 0 && rval == QLA_SUCCESS) {
5290 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
5291 if (dlen > risc_size)
5292 dlen = risc_size;
5293
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005294 ql_dbg(ql_dbg_init, vha, 0x0097,
5295 "Loading risc segment@ risc addr %x "
5296 "number of dwords 0x%x.\n", risc_addr, dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005297
5298 for (i = 0; i < dlen; i++)
5299 dcode[i] = swab32(fwcode[i]);
5300
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005301 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
andrew.vasquez@qlogic.com590f98e2006-01-13 17:05:37 -08005302 dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005303 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005304 ql_log(ql_log_fatal, vha, 0x0098,
5305 "Failed to load segment %d of firmware.\n",
5306 fragment);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005307 break;
5308 }
5309
5310 fwcode += dlen;
5311 risc_addr += dlen;
5312 risc_size -= dlen;
5313 fragment++;
5314 }
5315
5316 /* Next segment. */
5317 segments--;
5318 }
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005319 return rval;
5320
5321fail_fw_integrity:
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005322 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005323}
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005324
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005325int
5326qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
5327{
5328 int rval;
5329
Andrew Vasqueze337d902009-04-06 22:33:49 -07005330 if (ql2xfwloadbin == 1)
5331 return qla81xx_load_risc(vha, srisc_addr);
5332
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005333 /*
5334 * FW Load priority:
5335 * 1) Firmware via request-firmware interface (.bin file).
5336 * 2) Firmware residing in flash.
5337 */
5338 rval = qla24xx_load_risc_blob(vha, srisc_addr);
5339 if (rval == QLA_SUCCESS)
5340 return rval;
5341
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005342 return qla24xx_load_risc_flash(vha, srisc_addr,
5343 vha->hw->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005344}
5345
5346int
5347qla81xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
5348{
5349 int rval;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005350 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005351
Andrew Vasqueze337d902009-04-06 22:33:49 -07005352 if (ql2xfwloadbin == 2)
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005353 goto try_blob_fw;
Andrew Vasqueze337d902009-04-06 22:33:49 -07005354
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005355 /*
5356 * FW Load priority:
5357 * 1) Firmware residing in flash.
5358 * 2) Firmware via request-firmware interface (.bin file).
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005359 * 3) Golden-Firmware residing in flash -- limited operation.
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005360 */
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005361 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005362 if (rval == QLA_SUCCESS)
5363 return rval;
5364
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005365try_blob_fw:
5366 rval = qla24xx_load_risc_blob(vha, srisc_addr);
5367 if (rval == QLA_SUCCESS || !ha->flt_region_gold_fw)
5368 return rval;
5369
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005370 ql_log(ql_log_info, vha, 0x0099,
5371 "Attempting to fallback to golden firmware.\n");
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005372 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_gold_fw);
5373 if (rval != QLA_SUCCESS)
5374 return rval;
5375
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005376 ql_log(ql_log_info, vha, 0x009a, "Update operational firmware.\n");
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005377 ha->flags.running_gold_fw = 1;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005378 return rval;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005379}
5380
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005381void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005382qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005383{
5384 int ret, retries;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005385 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005386
Andrew Vasquez85880802009-12-15 21:29:46 -08005387 if (ha->flags.pci_channel_io_perm_failure)
5388 return;
Andrew Vasqueze4289242007-07-19 15:05:56 -07005389 if (!IS_FWI2_CAPABLE(ha))
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005390 return;
Andrew Vasquez75edf812007-05-07 07:43:00 -07005391 if (!ha->fw_major_version)
5392 return;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005393
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005394 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez7c7f1f22008-02-28 14:06:09 -08005395 for (retries = 5; ret != QLA_SUCCESS && ret != QLA_FUNCTION_TIMEOUT &&
Andrew Vasquezb469a7c2009-04-06 22:33:48 -07005396 ret != QLA_INVALID_COMMAND && retries ; retries--) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005397 ha->isp_ops->reset_chip(vha);
5398 if (ha->isp_ops->chip_diag(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005399 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005400 if (qla2x00_setup_chip(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005401 continue;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005402 ql_log(ql_log_info, vha, 0x8015,
5403 "Attempting retry of stop-firmware command.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005404 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005405 }
5406}
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005407
5408int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005409qla24xx_configure_vhba(scsi_qla_host_t *vha)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005410{
5411 int rval = QLA_SUCCESS;
Chad Dupuis0b91d112012-02-09 11:15:42 -08005412 int rval2;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005413 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005414 struct qla_hw_data *ha = vha->hw;
5415 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07005416 struct req_que *req;
5417 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005418
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005419 if (!vha->vp_idx)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005420 return -EINVAL;
5421
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005422 rval = qla2x00_fw_ready(base_vha);
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07005423 if (ha->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07005424 req = ha->req_q_map[0];
5425 else
5426 req = vha->req;
5427 rsp = req->rsp;
5428
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005429 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005430 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005431 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005432 }
5433
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005434 vha->flags.management_server_logged_in = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005435
5436 /* Login to SNS first */
Chad Dupuis0b91d112012-02-09 11:15:42 -08005437 rval2 = ha->isp_ops->fabric_login(vha, NPH_SNS, 0xff, 0xff, 0xfc, mb,
5438 BIT_1);
5439 if (rval2 != QLA_SUCCESS || mb[0] != MBS_COMMAND_COMPLETE) {
5440 if (rval2 == QLA_MEMORY_ALLOC_FAILED)
5441 ql_dbg(ql_dbg_init, vha, 0x0120,
5442 "Failed SNS login: loop_id=%x, rval2=%d\n",
5443 NPH_SNS, rval2);
5444 else
5445 ql_dbg(ql_dbg_init, vha, 0x0103,
5446 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
5447 "mb[2]=%x mb[6]=%x mb[7]=%x.\n",
5448 NPH_SNS, mb[0], mb[1], mb[2], mb[6], mb[7]);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005449 return (QLA_FUNCTION_FAILED);
5450 }
5451
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005452 atomic_set(&vha->loop_down_timer, 0);
5453 atomic_set(&vha->loop_state, LOOP_UP);
5454 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5455 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
5456 rval = qla2x00_loop_resync(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005457
5458 return rval;
5459}
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005460
5461/* 84XX Support **************************************************************/
5462
5463static LIST_HEAD(qla_cs84xx_list);
5464static DEFINE_MUTEX(qla_cs84xx_mutex);
5465
5466static struct qla_chip_state_84xx *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005467qla84xx_get_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005468{
5469 struct qla_chip_state_84xx *cs84xx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005470 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005471
5472 mutex_lock(&qla_cs84xx_mutex);
5473
5474 /* Find any shared 84xx chip. */
5475 list_for_each_entry(cs84xx, &qla_cs84xx_list, list) {
5476 if (cs84xx->bus == ha->pdev->bus) {
5477 kref_get(&cs84xx->kref);
5478 goto done;
5479 }
5480 }
5481
5482 cs84xx = kzalloc(sizeof(*cs84xx), GFP_KERNEL);
5483 if (!cs84xx)
5484 goto done;
5485
5486 kref_init(&cs84xx->kref);
5487 spin_lock_init(&cs84xx->access_lock);
5488 mutex_init(&cs84xx->fw_update_mutex);
5489 cs84xx->bus = ha->pdev->bus;
5490
5491 list_add_tail(&cs84xx->list, &qla_cs84xx_list);
5492done:
5493 mutex_unlock(&qla_cs84xx_mutex);
5494 return cs84xx;
5495}
5496
5497static void
5498__qla84xx_chip_release(struct kref *kref)
5499{
5500 struct qla_chip_state_84xx *cs84xx =
5501 container_of(kref, struct qla_chip_state_84xx, kref);
5502
5503 mutex_lock(&qla_cs84xx_mutex);
5504 list_del(&cs84xx->list);
5505 mutex_unlock(&qla_cs84xx_mutex);
5506 kfree(cs84xx);
5507}
5508
5509void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005510qla84xx_put_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005511{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005512 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005513 if (ha->cs84xx)
5514 kref_put(&ha->cs84xx->kref, __qla84xx_chip_release);
5515}
5516
5517static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005518qla84xx_init_chip(scsi_qla_host_t *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005519{
5520 int rval;
5521 uint16_t status[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005522 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005523
5524 mutex_lock(&ha->cs84xx->fw_update_mutex);
5525
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005526 rval = qla84xx_verify_chip(vha, status);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005527
5528 mutex_unlock(&ha->cs84xx->fw_update_mutex);
5529
5530 return rval != QLA_SUCCESS || status[0] ? QLA_FUNCTION_FAILED:
5531 QLA_SUCCESS;
5532}
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005533
5534/* 81XX Support **************************************************************/
5535
5536int
5537qla81xx_nvram_config(scsi_qla_host_t *vha)
5538{
5539 int rval;
5540 struct init_cb_81xx *icb;
5541 struct nvram_81xx *nv;
5542 uint32_t *dptr;
5543 uint8_t *dptr1, *dptr2;
5544 uint32_t chksum;
5545 uint16_t cnt;
5546 struct qla_hw_data *ha = vha->hw;
5547
5548 rval = QLA_SUCCESS;
5549 icb = (struct init_cb_81xx *)ha->init_cb;
5550 nv = ha->nvram;
5551
5552 /* Determine NVRAM starting address. */
5553 ha->nvram_size = sizeof(struct nvram_81xx);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005554 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005555
5556 /* Get VPD data into cache */
5557 ha->vpd = ha->nvram + VPD_OFFSET;
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005558 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
5559 ha->vpd_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005560
5561 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005562 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005563 ha->nvram_size);
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005564 dptr = (uint32_t *)nv;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005565 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
5566 chksum += le32_to_cpu(*dptr++);
5567
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005568 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x0111,
5569 "Contents of NVRAM:\n");
5570 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0112,
5571 (uint8_t *)nv, ha->nvram_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005572
5573 /* Bad NVRAM data, set defaults parameters. */
5574 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
5575 || nv->id[3] != ' ' ||
5576 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
5577 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005578 ql_log(ql_log_info, vha, 0x0073,
Raul Porcel9e336522012-05-15 14:34:08 -04005579 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005580 "version=0x%x.\n", chksum, nv->id[0],
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005581 le16_to_cpu(nv->nvram_version));
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005582 ql_log(ql_log_info, vha, 0x0074,
5583 "Falling back to functioning (yet invalid -- WWPN) "
5584 "defaults.\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005585
5586 /*
5587 * Set default initialization control block.
5588 */
5589 memset(nv, 0, ha->nvram_size);
5590 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
5591 nv->version = __constant_cpu_to_le16(ICB_VERSION);
5592 nv->frame_payload_size = __constant_cpu_to_le16(2048);
5593 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5594 nv->exchange_count = __constant_cpu_to_le16(0);
5595 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005596 nv->port_name[1] = 0x00 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005597 nv->port_name[2] = 0x00;
5598 nv->port_name[3] = 0xe0;
5599 nv->port_name[4] = 0x8b;
5600 nv->port_name[5] = 0x1c;
5601 nv->port_name[6] = 0x55;
5602 nv->port_name[7] = 0x86;
5603 nv->node_name[0] = 0x20;
5604 nv->node_name[1] = 0x00;
5605 nv->node_name[2] = 0x00;
5606 nv->node_name[3] = 0xe0;
5607 nv->node_name[4] = 0x8b;
5608 nv->node_name[5] = 0x1c;
5609 nv->node_name[6] = 0x55;
5610 nv->node_name[7] = 0x86;
5611 nv->login_retry_count = __constant_cpu_to_le16(8);
5612 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
5613 nv->login_timeout = __constant_cpu_to_le16(0);
5614 nv->firmware_options_1 =
5615 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
5616 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
5617 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
5618 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
5619 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
5620 nv->efi_parameters = __constant_cpu_to_le32(0);
5621 nv->reset_delay = 5;
5622 nv->max_luns_per_target = __constant_cpu_to_le16(128);
5623 nv->port_down_retry_count = __constant_cpu_to_le16(30);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005624 nv->link_down_timeout = __constant_cpu_to_le16(180);
Andrew Vasquezeeebcc92009-06-03 09:55:24 -07005625 nv->enode_mac[0] = 0x00;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005626 nv->enode_mac[1] = 0xC0;
5627 nv->enode_mac[2] = 0xDD;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005628 nv->enode_mac[3] = 0x04;
5629 nv->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005630 nv->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005631
5632 rval = 1;
5633 }
5634
Arun Easi9e522cd2012-08-22 14:21:31 -04005635 if (IS_T10_PI_CAPABLE(ha))
5636 nv->frame_payload_size &= ~7;
5637
Arun Easiaa230bc2013-01-30 03:34:39 -05005638 qlt_81xx_config_nvram_stage1(vha, nv);
5639
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005640 /* Reset Initialization control block */
Andrew Vasquez773120e2011-05-10 11:30:14 -07005641 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005642
5643 /* Copy 1st segment. */
5644 dptr1 = (uint8_t *)icb;
5645 dptr2 = (uint8_t *)&nv->version;
5646 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
5647 while (cnt--)
5648 *dptr1++ = *dptr2++;
5649
5650 icb->login_retry_count = nv->login_retry_count;
5651
5652 /* Copy 2nd segment. */
5653 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
5654 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
5655 cnt = (uint8_t *)&icb->reserved_5 -
5656 (uint8_t *)&icb->interrupt_delay_timer;
5657 while (cnt--)
5658 *dptr1++ = *dptr2++;
5659
5660 memcpy(icb->enode_mac, nv->enode_mac, sizeof(icb->enode_mac));
5661 /* Some boards (with valid NVRAMs) still have NULL enode_mac!! */
5662 if (!memcmp(icb->enode_mac, "\0\0\0\0\0\0", sizeof(icb->enode_mac))) {
Andrew Vasquez69e5f1e2012-02-09 11:15:35 -08005663 icb->enode_mac[0] = 0x00;
5664 icb->enode_mac[1] = 0xC0;
5665 icb->enode_mac[2] = 0xDD;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005666 icb->enode_mac[3] = 0x04;
5667 icb->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005668 icb->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005669 }
5670
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07005671 /* Use extended-initialization control block. */
5672 memcpy(ha->ex_init_cb, &nv->ex_version, sizeof(*ha->ex_init_cb));
5673
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005674 /*
5675 * Setup driver NVRAM options.
5676 */
5677 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Giridhar Malavalia9083012010-04-12 17:59:55 -07005678 "QLE8XXX");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005679
Arun Easiaa230bc2013-01-30 03:34:39 -05005680 qlt_81xx_config_nvram_stage2(vha, icb);
5681
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005682 /* Use alternate WWN? */
5683 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
5684 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
5685 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
5686 }
5687
5688 /* Prepare nodename */
5689 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
5690 /*
5691 * Firmware will apply the following mask if the nodename was
5692 * not provided.
5693 */
5694 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
5695 icb->node_name[0] &= 0xF0;
5696 }
5697
5698 /* Set host adapter parameters. */
5699 ha->flags.disable_risc_code_load = 0;
5700 ha->flags.enable_lip_reset = 0;
5701 ha->flags.enable_lip_full_login =
5702 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
5703 ha->flags.enable_target_reset =
5704 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
5705 ha->flags.enable_led_scheme = 0;
5706 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
5707
5708 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
5709 (BIT_6 | BIT_5 | BIT_4)) >> 4;
5710
5711 /* save HBA serial number */
5712 ha->serial0 = icb->port_name[5];
5713 ha->serial1 = icb->port_name[6];
5714 ha->serial2 = icb->port_name[7];
5715 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
5716 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
5717
5718 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5719
5720 ha->retry_count = le16_to_cpu(nv->login_retry_count);
5721
5722 /* Set minimum login_timeout to 4 seconds. */
5723 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
5724 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
5725 if (le16_to_cpu(nv->login_timeout) < 4)
5726 nv->login_timeout = __constant_cpu_to_le16(4);
5727 ha->login_timeout = le16_to_cpu(nv->login_timeout);
5728 icb->login_timeout = nv->login_timeout;
5729
5730 /* Set minimum RATOV to 100 tenths of a second. */
5731 ha->r_a_tov = 100;
5732
5733 ha->loop_reset_delay = nv->reset_delay;
5734
5735 /* Link Down Timeout = 0:
5736 *
5737 * When Port Down timer expires we will start returning
5738 * I/O's to OS with "DID_NO_CONNECT".
5739 *
5740 * Link Down Timeout != 0:
5741 *
5742 * The driver waits for the link to come up after link down
5743 * before returning I/Os to OS with "DID_NO_CONNECT".
5744 */
5745 if (le16_to_cpu(nv->link_down_timeout) == 0) {
5746 ha->loop_down_abort_time =
5747 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
5748 } else {
5749 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
5750 ha->loop_down_abort_time =
5751 (LOOP_DOWN_TIME - ha->link_down_timeout);
5752 }
5753
5754 /* Need enough time to try and get the port back. */
5755 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
5756 if (qlport_down_retry)
5757 ha->port_down_retry_count = qlport_down_retry;
5758
5759 /* Set login_retry_count */
5760 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
5761 if (ha->port_down_retry_count ==
5762 le16_to_cpu(nv->port_down_retry_count) &&
5763 ha->port_down_retry_count > 3)
5764 ha->login_retry_count = ha->port_down_retry_count;
5765 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
5766 ha->login_retry_count = ha->port_down_retry_count;
5767 if (ql2xloginretrycount)
5768 ha->login_retry_count = ql2xloginretrycount;
5769
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005770 /* if not running MSI-X we need handshaking on interrupts */
5771 if (!vha->hw->flags.msix_enabled && IS_QLA83XX(ha))
5772 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_22);
5773
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005774 /* Enable ZIO. */
5775 if (!vha->flags.init_done) {
5776 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
5777 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
5778 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
5779 le16_to_cpu(icb->interrupt_delay_timer): 2;
5780 }
5781 icb->firmware_options_2 &= __constant_cpu_to_le32(
5782 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
5783 vha->flags.process_response_queue = 0;
5784 if (ha->zio_mode != QLA_ZIO_DISABLED) {
5785 ha->zio_mode = QLA_ZIO_MODE_6;
5786
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005787 ql_log(ql_log_info, vha, 0x0075,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005788 "ZIO mode %d enabled; timer delay (%d us).\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005789 ha->zio_mode,
5790 ha->zio_timer * 100);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005791
5792 icb->firmware_options_2 |= cpu_to_le32(
5793 (uint32_t)ha->zio_mode);
5794 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
5795 vha->flags.process_response_queue = 1;
5796 }
5797
5798 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005799 ql_log(ql_log_warn, vha, 0x0076,
5800 "NVRAM configuration failed.\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005801 }
5802 return (rval);
5803}
5804
Giridhar Malavalia9083012010-04-12 17:59:55 -07005805int
5806qla82xx_restart_isp(scsi_qla_host_t *vha)
5807{
5808 int status, rval;
5809 uint32_t wait_time;
5810 struct qla_hw_data *ha = vha->hw;
5811 struct req_que *req = ha->req_q_map[0];
5812 struct rsp_que *rsp = ha->rsp_q_map[0];
5813 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07005814 unsigned long flags;
Giridhar Malavalia9083012010-04-12 17:59:55 -07005815
5816 status = qla2x00_init_rings(vha);
5817 if (!status) {
5818 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5819 ha->flags.chip_reset_done = 1;
5820
5821 status = qla2x00_fw_ready(vha);
5822 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005823 ql_log(ql_log_info, vha, 0x803c,
5824 "Start configure loop, status =%d.\n", status);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005825
5826 /* Issue a marker after FW becomes ready. */
5827 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
5828
5829 vha->flags.online = 1;
5830 /* Wait at most MAX_TARGET RSCNs for a stable link. */
5831 wait_time = 256;
5832 do {
5833 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5834 qla2x00_configure_loop(vha);
5835 wait_time--;
5836 } while (!atomic_read(&vha->loop_down_timer) &&
5837 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags)) &&
5838 wait_time &&
5839 (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)));
5840 }
5841
5842 /* if no cable then assume it's good */
5843 if ((vha->device_flags & DFLG_NO_CABLE))
5844 status = 0;
5845
Chad Dupuiscfb09192011-11-18 09:03:07 -08005846 ql_log(ql_log_info, vha, 0x8000,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005847 "Configure loop done, status = 0x%x.\n", status);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005848 }
5849
5850 if (!status) {
5851 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5852
5853 if (!atomic_read(&vha->loop_down_timer)) {
5854 /*
5855 * Issue marker command only when we are going
5856 * to start the I/O .
5857 */
5858 vha->marker_needed = 1;
5859 }
5860
5861 vha->flags.online = 1;
5862
5863 ha->isp_ops->enable_intrs(ha);
5864
5865 ha->isp_abort_cnt = 0;
5866 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
5867
Saurav Kashyap53296782011-05-10 11:30:06 -07005868 /* Update the firmware version */
Giridhar Malavali31731672011-08-16 11:31:54 -07005869 status = qla82xx_check_md_needed(vha);
Saurav Kashyap53296782011-05-10 11:30:06 -07005870
Giridhar Malavalia9083012010-04-12 17:59:55 -07005871 if (ha->fce) {
5872 ha->flags.fce_enabled = 1;
5873 memset(ha->fce, 0,
5874 fce_calc_size(ha->fce_bufs));
5875 rval = qla2x00_enable_fce_trace(vha,
5876 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
5877 &ha->fce_bufs);
5878 if (rval) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005879 ql_log(ql_log_warn, vha, 0x8001,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005880 "Unable to reinitialize FCE (%d).\n",
5881 rval);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005882 ha->flags.fce_enabled = 0;
5883 }
5884 }
5885
5886 if (ha->eft) {
5887 memset(ha->eft, 0, EFT_SIZE);
5888 rval = qla2x00_enable_eft_trace(vha,
5889 ha->eft_dma, EFT_NUM_BUFFERS);
5890 if (rval) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005891 ql_log(ql_log_warn, vha, 0x8010,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005892 "Unable to reinitialize EFT (%d).\n",
5893 rval);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005894 }
5895 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005896 }
5897
5898 if (!status) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005899 ql_dbg(ql_dbg_taskm, vha, 0x8011,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005900 "qla82xx_restart_isp succeeded.\n");
Arun Easifeafb7b2010-09-03 14:57:00 -07005901
5902 spin_lock_irqsave(&ha->vport_slock, flags);
5903 list_for_each_entry(vp, &ha->vp_list, list) {
5904 if (vp->vp_idx) {
5905 atomic_inc(&vp->vref_count);
5906 spin_unlock_irqrestore(&ha->vport_slock, flags);
5907
Giridhar Malavalia9083012010-04-12 17:59:55 -07005908 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07005909
5910 spin_lock_irqsave(&ha->vport_slock, flags);
5911 atomic_dec(&vp->vref_count);
5912 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005913 }
Arun Easifeafb7b2010-09-03 14:57:00 -07005914 spin_unlock_irqrestore(&ha->vport_slock, flags);
5915
Giridhar Malavalia9083012010-04-12 17:59:55 -07005916 } else {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005917 ql_log(ql_log_warn, vha, 0x8016,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005918 "qla82xx_restart_isp **** FAILED ****.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -07005919 }
5920
5921 return status;
5922}
5923
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005924void
Andrew Vasquezae97c912010-02-18 10:07:28 -08005925qla81xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005926{
Andrew Vasquezae97c912010-02-18 10:07:28 -08005927 struct qla_hw_data *ha = vha->hw;
5928
5929 if (!ql2xetsenable)
5930 return;
5931
5932 /* Enable ETS Burst. */
5933 memset(ha->fw_options, 0, sizeof(ha->fw_options));
5934 ha->fw_options[2] |= BIT_9;
5935 qla2x00_set_fw_options(vha, ha->fw_options);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005936}
Sarang Radke09ff7012010-03-19 17:03:59 -07005937
5938/*
5939 * qla24xx_get_fcp_prio
5940 * Gets the fcp cmd priority value for the logged in port.
5941 * Looks for a match of the port descriptors within
5942 * each of the fcp prio config entries. If a match is found,
5943 * the tag (priority) value is returned.
5944 *
5945 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005946 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07005947 * fcport = port structure pointer.
5948 *
5949 * Return:
Andrew Vasquez6c452a42010-03-19 17:04:02 -07005950 * non-zero (if found)
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005951 * -1 (if not found)
Sarang Radke09ff7012010-03-19 17:03:59 -07005952 *
5953 * Context:
5954 * Kernel context
5955 */
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005956static int
Sarang Radke09ff7012010-03-19 17:03:59 -07005957qla24xx_get_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
5958{
5959 int i, entries;
5960 uint8_t pid_match, wwn_match;
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005961 int priority;
Sarang Radke09ff7012010-03-19 17:03:59 -07005962 uint32_t pid1, pid2;
5963 uint64_t wwn1, wwn2;
5964 struct qla_fcp_prio_entry *pri_entry;
5965 struct qla_hw_data *ha = vha->hw;
5966
5967 if (!ha->fcp_prio_cfg || !ha->flags.fcp_prio_enabled)
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005968 return -1;
Sarang Radke09ff7012010-03-19 17:03:59 -07005969
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005970 priority = -1;
Sarang Radke09ff7012010-03-19 17:03:59 -07005971 entries = ha->fcp_prio_cfg->num_entries;
5972 pri_entry = &ha->fcp_prio_cfg->entry[0];
5973
5974 for (i = 0; i < entries; i++) {
5975 pid_match = wwn_match = 0;
5976
5977 if (!(pri_entry->flags & FCP_PRIO_ENTRY_VALID)) {
5978 pri_entry++;
5979 continue;
5980 }
5981
5982 /* check source pid for a match */
5983 if (pri_entry->flags & FCP_PRIO_ENTRY_SPID_VALID) {
5984 pid1 = pri_entry->src_pid & INVALID_PORT_ID;
5985 pid2 = vha->d_id.b24 & INVALID_PORT_ID;
5986 if (pid1 == INVALID_PORT_ID)
5987 pid_match++;
5988 else if (pid1 == pid2)
5989 pid_match++;
5990 }
5991
5992 /* check destination pid for a match */
5993 if (pri_entry->flags & FCP_PRIO_ENTRY_DPID_VALID) {
5994 pid1 = pri_entry->dst_pid & INVALID_PORT_ID;
5995 pid2 = fcport->d_id.b24 & INVALID_PORT_ID;
5996 if (pid1 == INVALID_PORT_ID)
5997 pid_match++;
5998 else if (pid1 == pid2)
5999 pid_match++;
6000 }
6001
6002 /* check source WWN for a match */
6003 if (pri_entry->flags & FCP_PRIO_ENTRY_SWWN_VALID) {
6004 wwn1 = wwn_to_u64(vha->port_name);
6005 wwn2 = wwn_to_u64(pri_entry->src_wwpn);
6006 if (wwn2 == (uint64_t)-1)
6007 wwn_match++;
6008 else if (wwn1 == wwn2)
6009 wwn_match++;
6010 }
6011
6012 /* check destination WWN for a match */
6013 if (pri_entry->flags & FCP_PRIO_ENTRY_DWWN_VALID) {
6014 wwn1 = wwn_to_u64(fcport->port_name);
6015 wwn2 = wwn_to_u64(pri_entry->dst_wwpn);
6016 if (wwn2 == (uint64_t)-1)
6017 wwn_match++;
6018 else if (wwn1 == wwn2)
6019 wwn_match++;
6020 }
6021
6022 if (pid_match == 2 || wwn_match == 2) {
6023 /* Found a matching entry */
6024 if (pri_entry->flags & FCP_PRIO_ENTRY_TAG_VALID)
6025 priority = pri_entry->tag;
6026 break;
6027 }
6028
6029 pri_entry++;
6030 }
6031
6032 return priority;
6033}
6034
6035/*
6036 * qla24xx_update_fcport_fcp_prio
6037 * Activates fcp priority for the logged in fc port
6038 *
6039 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006040 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07006041 * fcp = port structure pointer.
6042 *
6043 * Return:
6044 * QLA_SUCCESS or QLA_FUNCTION_FAILED
6045 *
6046 * Context:
6047 * Kernel context.
6048 */
6049int
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006050qla24xx_update_fcport_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
Sarang Radke09ff7012010-03-19 17:03:59 -07006051{
6052 int ret;
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07006053 int priority;
Sarang Radke09ff7012010-03-19 17:03:59 -07006054 uint16_t mb[5];
6055
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006056 if (fcport->port_type != FCT_TARGET ||
6057 fcport->loop_id == FC_NO_LOOP_ID)
Sarang Radke09ff7012010-03-19 17:03:59 -07006058 return QLA_FUNCTION_FAILED;
6059
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006060 priority = qla24xx_get_fcp_prio(vha, fcport);
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07006061 if (priority < 0)
6062 return QLA_FUNCTION_FAILED;
6063
Saurav Kashyapa00f6292011-11-18 09:03:19 -08006064 if (IS_QLA82XX(vha->hw)) {
6065 fcport->fcp_prio = priority & 0xf;
6066 return QLA_SUCCESS;
6067 }
6068
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08006069 ret = qla24xx_set_fcp_prio(vha, fcport->loop_id, priority, mb);
Chad Dupuiscfb09192011-11-18 09:03:07 -08006070 if (ret == QLA_SUCCESS) {
6071 if (fcport->fcp_prio != priority)
6072 ql_dbg(ql_dbg_user, vha, 0x709e,
6073 "Updated FCP_CMND priority - value=%d loop_id=%d "
6074 "port_id=%02x%02x%02x.\n", priority,
6075 fcport->loop_id, fcport->d_id.b.domain,
6076 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Saurav Kashyapa00f6292011-11-18 09:03:19 -08006077 fcport->fcp_prio = priority & 0xf;
Chad Dupuiscfb09192011-11-18 09:03:07 -08006078 } else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07006079 ql_dbg(ql_dbg_user, vha, 0x704f,
Chad Dupuiscfb09192011-11-18 09:03:07 -08006080 "Unable to update FCP_CMND priority - ret=0x%x for "
6081 "loop_id=%d port_id=%02x%02x%02x.\n", ret, fcport->loop_id,
6082 fcport->d_id.b.domain, fcport->d_id.b.area,
6083 fcport->d_id.b.al_pa);
Sarang Radke09ff7012010-03-19 17:03:59 -07006084 return ret;
6085}
6086
6087/*
6088 * qla24xx_update_all_fcp_prio
6089 * Activates fcp priority for all the logged in ports
6090 *
6091 * Input:
6092 * ha = adapter block pointer.
6093 *
6094 * Return:
6095 * QLA_SUCCESS or QLA_FUNCTION_FAILED
6096 *
6097 * Context:
6098 * Kernel context.
6099 */
6100int
6101qla24xx_update_all_fcp_prio(scsi_qla_host_t *vha)
6102{
6103 int ret;
6104 fc_port_t *fcport;
6105
6106 ret = QLA_FUNCTION_FAILED;
6107 /* We need to set priority for all logged in ports */
6108 list_for_each_entry(fcport, &vha->vp_fcports, list)
6109 ret = qla24xx_update_fcport_fcp_prio(vha, fcport);
6110
6111 return ret;
6112}