blob: 414f810726f083cd009f1e136ae66d6fdd1a74c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Chad Dupuis46152ce2012-08-22 14:21:08 -04003 * Copyright (c) 2003-2012 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_init_rings(scsi_qla_host_t *);
29static int qla2x00_fw_ready(scsi_qla_host_t *);
30static int qla2x00_configure_hba(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int qla2x00_configure_loop(scsi_qla_host_t *);
32static int qla2x00_configure_local_loop(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static int qla2x00_configure_fabric(scsi_qla_host_t *);
34static int qla2x00_find_all_fabric_devs(scsi_qla_host_t *, struct list_head *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static int qla2x00_fabric_dev_login(scsi_qla_host_t *, fc_port_t *,
36 uint16_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38static int qla2x00_restart_isp(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Harihara Kadayam4d4df192008-04-03 13:13:26 -070040static struct qla_chip_state_84xx *qla84xx_get_chip(struct scsi_qla_host *);
41static int qla84xx_init_chip(scsi_qla_host_t *);
Anirban Chakraborty73208df2008-12-09 16:45:39 -080042static int qla25xx_init_queues(struct qla_hw_data *);
Harihara Kadayam4d4df192008-04-03 13:13:26 -070043
Andrew Vasquezac280b62009-08-20 11:06:05 -070044/* SRB Extensions ---------------------------------------------------------- */
45
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080046void
47qla2x00_sp_timeout(unsigned long __data)
Andrew Vasquezac280b62009-08-20 11:06:05 -070048{
49 srb_t *sp = (srb_t *)__data;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070050 struct srb_iocb *iocb;
Andrew Vasquezac280b62009-08-20 11:06:05 -070051 fc_port_t *fcport = sp->fcport;
52 struct qla_hw_data *ha = fcport->vha->hw;
53 struct req_que *req;
54 unsigned long flags;
55
56 spin_lock_irqsave(&ha->hardware_lock, flags);
57 req = ha->req_q_map[0];
58 req->outstanding_cmds[sp->handle] = NULL;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080059 iocb = &sp->u.iocb_cmd;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070060 iocb->timeout(sp);
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080061 sp->free(fcport->vha, sp);
Andrew Vasquez6ac52602010-05-28 15:08:19 -070062 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquezac280b62009-08-20 11:06:05 -070063}
64
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080065void
66qla2x00_sp_free(void *data, void *ptr)
Andrew Vasquezac280b62009-08-20 11:06:05 -070067{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080068 srb_t *sp = (srb_t *)ptr;
69 struct srb_iocb *iocb = &sp->u.iocb_cmd;
70 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
Andrew Vasquezac280b62009-08-20 11:06:05 -070071
Chad Dupuis4d97cc52010-10-15 11:27:41 -070072 del_timer(&iocb->timer);
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080073 mempool_free(sp, vha->hw->srb_mempool);
Arun Easifeafb7b2010-09-03 14:57:00 -070074
75 QLA_VHA_MARK_NOT_BUSY(vha);
Andrew Vasquezac280b62009-08-20 11:06:05 -070076}
77
Andrew Vasquezac280b62009-08-20 11:06:05 -070078/* Asynchronous Login/Logout Routines -------------------------------------- */
79
Saurav Kashyapa9b6f722012-08-22 14:21:01 -040080unsigned long
Andrew Vasquez5b914902010-05-28 15:08:30 -070081qla2x00_get_async_timeout(struct scsi_qla_host *vha)
82{
83 unsigned long tmo;
84 struct qla_hw_data *ha = vha->hw;
85
86 /* Firmware should use switch negotiated r_a_tov for timeout. */
87 tmo = ha->r_a_tov / 10 * 2;
88 if (!IS_FWI2_CAPABLE(ha)) {
89 /*
90 * Except for earlier ISPs where the timeout is seeded from the
91 * initialization control block.
92 */
93 tmo = ha->login_timeout;
94 }
95 return tmo;
96}
Andrew Vasquezac280b62009-08-20 11:06:05 -070097
98static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -080099qla2x00_async_iocb_timeout(void *data)
Andrew Vasquezac280b62009-08-20 11:06:05 -0700100{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800101 srb_t *sp = (srb_t *)data;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700102 fc_port_t *fcport = sp->fcport;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700103
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700104 ql_dbg(ql_dbg_disc, fcport->vha, 0x2071,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800105 "Async-%s timeout - hdl=%x portid=%02x%02x%02x.\n",
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800106 sp->name, sp->handle, fcport->d_id.b.domain, fcport->d_id.b.area,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700107 fcport->d_id.b.al_pa);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700108
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700109 fcport->flags &= ~FCF_ASYNC_SENT;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800110 if (sp->type == SRB_LOGIN_CMD) {
111 struct srb_iocb *lio = &sp->u.iocb_cmd;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700112 qla2x00_post_async_logout_work(fcport->vha, fcport, NULL);
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700113 /* Retry as needed. */
114 lio->u.logio.data[0] = MBS_COMMAND_ERROR;
115 lio->u.logio.data[1] = lio->u.logio.flags & SRB_LOGIN_RETRIED ?
116 QLA_LOGIO_LOGIN_RETRIED : 0;
117 qla2x00_post_async_login_done_work(fcport->vha, fcport,
118 lio->u.logio.data);
119 }
Andrew Vasquezac280b62009-08-20 11:06:05 -0700120}
121
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700122static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800123qla2x00_async_login_sp_done(void *data, void *ptr, int res)
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700124{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800125 srb_t *sp = (srb_t *)ptr;
126 struct srb_iocb *lio = &sp->u.iocb_cmd;
127 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700128
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800129 if (!test_bit(UNLOADING, &vha->dpc_flags))
130 qla2x00_post_async_login_done_work(sp->fcport->vha, sp->fcport,
131 lio->u.logio.data);
132 sp->free(sp->fcport->vha, sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700133}
134
Andrew Vasquezac280b62009-08-20 11:06:05 -0700135int
136qla2x00_async_login(struct scsi_qla_host *vha, fc_port_t *fcport,
137 uint16_t *data)
138{
Andrew Vasquezac280b62009-08-20 11:06:05 -0700139 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700140 struct srb_iocb *lio;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700141 int rval;
142
143 rval = QLA_FUNCTION_FAILED;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800144 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700145 if (!sp)
146 goto done;
147
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800148 sp->type = SRB_LOGIN_CMD;
149 sp->name = "login";
150 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
151
152 lio = &sp->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700153 lio->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800154 sp->done = qla2x00_async_login_sp_done;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700155 lio->u.logio.flags |= SRB_LOGIN_COND_PLOGI;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700156 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700157 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700158 rval = qla2x00_start_sp(sp);
159 if (rval != QLA_SUCCESS)
160 goto done_free_sp;
161
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700162 ql_dbg(ql_dbg_disc, vha, 0x2072,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800163 "Async-login - hdl=%x, loopid=%x portid=%02x%02x%02x "
164 "retries=%d.\n", sp->handle, fcport->loop_id,
165 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa,
166 fcport->login_retry);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700167 return rval;
168
169done_free_sp:
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800170 sp->free(fcport->vha, sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700171done:
172 return rval;
173}
174
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700175static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800176qla2x00_async_logout_sp_done(void *data, void *ptr, int res)
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700177{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800178 srb_t *sp = (srb_t *)ptr;
179 struct srb_iocb *lio = &sp->u.iocb_cmd;
180 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700181
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800182 if (!test_bit(UNLOADING, &vha->dpc_flags))
183 qla2x00_post_async_logout_done_work(sp->fcport->vha, sp->fcport,
184 lio->u.logio.data);
185 sp->free(sp->fcport->vha, sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700186}
187
Andrew Vasquezac280b62009-08-20 11:06:05 -0700188int
189qla2x00_async_logout(struct scsi_qla_host *vha, fc_port_t *fcport)
190{
Andrew Vasquezac280b62009-08-20 11:06:05 -0700191 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700192 struct srb_iocb *lio;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700193 int rval;
194
195 rval = QLA_FUNCTION_FAILED;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800196 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700197 if (!sp)
198 goto done;
199
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800200 sp->type = SRB_LOGOUT_CMD;
201 sp->name = "logout";
202 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
203
204 lio = &sp->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700205 lio->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800206 sp->done = qla2x00_async_logout_sp_done;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700207 rval = qla2x00_start_sp(sp);
208 if (rval != QLA_SUCCESS)
209 goto done_free_sp;
210
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700211 ql_dbg(ql_dbg_disc, vha, 0x2070,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800212 "Async-logout - hdl=%x loop-id=%x portid=%02x%02x%02x.\n",
213 sp->handle, fcport->loop_id, fcport->d_id.b.domain,
214 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700215 return rval;
216
217done_free_sp:
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800218 sp->free(fcport->vha, sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700219done:
220 return rval;
221}
222
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700223static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800224qla2x00_async_adisc_sp_done(void *data, void *ptr, int res)
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700225{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800226 srb_t *sp = (srb_t *)ptr;
227 struct srb_iocb *lio = &sp->u.iocb_cmd;
228 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700229
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800230 if (!test_bit(UNLOADING, &vha->dpc_flags))
231 qla2x00_post_async_adisc_done_work(sp->fcport->vha, sp->fcport,
232 lio->u.logio.data);
233 sp->free(sp->fcport->vha, sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700234}
235
236int
237qla2x00_async_adisc(struct scsi_qla_host *vha, fc_port_t *fcport,
238 uint16_t *data)
239{
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700240 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700241 struct srb_iocb *lio;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700242 int rval;
243
244 rval = QLA_FUNCTION_FAILED;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800245 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700246 if (!sp)
247 goto done;
248
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800249 sp->type = SRB_ADISC_CMD;
250 sp->name = "adisc";
251 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
252
253 lio = &sp->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700254 lio->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800255 sp->done = qla2x00_async_adisc_sp_done;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700256 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700257 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700258 rval = qla2x00_start_sp(sp);
259 if (rval != QLA_SUCCESS)
260 goto done_free_sp;
261
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700262 ql_dbg(ql_dbg_disc, vha, 0x206f,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800263 "Async-adisc - hdl=%x loopid=%x portid=%02x%02x%02x.\n",
264 sp->handle, fcport->loop_id, fcport->d_id.b.domain,
265 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700266 return rval;
267
268done_free_sp:
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800269 sp->free(fcport->vha, sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700270done:
271 return rval;
272}
273
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700274static void
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800275qla2x00_async_tm_cmd_done(void *data, void *ptr, int res)
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700276{
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800277 srb_t *sp = (srb_t *)ptr;
278 struct srb_iocb *iocb = &sp->u.iocb_cmd;
279 struct scsi_qla_host *vha = (scsi_qla_host_t *)data;
280 uint32_t flags;
281 uint16_t lun;
282 int rval;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700283
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800284 if (!test_bit(UNLOADING, &vha->dpc_flags)) {
285 flags = iocb->u.tmf.flags;
286 lun = (uint16_t)iocb->u.tmf.lun;
287
288 /* Issue Marker IOCB */
289 rval = qla2x00_marker(vha, vha->hw->req_q_map[0],
290 vha->hw->rsp_q_map[0], sp->fcport->loop_id, lun,
291 flags == TCF_LUN_RESET ? MK_SYNC_ID_LUN : MK_SYNC_ID);
292
293 if ((rval != QLA_SUCCESS) || iocb->u.tmf.data) {
294 ql_dbg(ql_dbg_taskm, vha, 0x8030,
295 "TM IOCB failed (%x).\n", rval);
296 }
297 }
298 sp->free(sp->fcport->vha, sp);
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700299}
300
301int
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800302qla2x00_async_tm_cmd(fc_port_t *fcport, uint32_t tm_flags, uint32_t lun,
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700303 uint32_t tag)
304{
305 struct scsi_qla_host *vha = fcport->vha;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700306 srb_t *sp;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700307 struct srb_iocb *tcf;
308 int rval;
309
310 rval = QLA_FUNCTION_FAILED;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800311 sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700312 if (!sp)
313 goto done;
314
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800315 sp->type = SRB_TM_CMD;
316 sp->name = "tmf";
317 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
318
319 tcf = &sp->u.iocb_cmd;
320 tcf->u.tmf.flags = tm_flags;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700321 tcf->u.tmf.lun = lun;
322 tcf->u.tmf.data = tag;
323 tcf->timeout = qla2x00_async_iocb_timeout;
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800324 sp->done = qla2x00_async_tm_cmd_done;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700325
326 rval = qla2x00_start_sp(sp);
327 if (rval != QLA_SUCCESS)
328 goto done_free_sp;
329
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700330 ql_dbg(ql_dbg_taskm, vha, 0x802f,
Chad Dupuiscfb09192011-11-18 09:03:07 -0800331 "Async-tmf hdl=%x loop-id=%x portid=%02x%02x%02x.\n",
332 sp->handle, fcport->loop_id, fcport->d_id.b.domain,
333 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700334 return rval;
335
336done_free_sp:
Giridhar Malavali9ba56b92012-02-09 11:15:36 -0800337 sp->free(fcport->vha, sp);
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700338done:
339 return rval;
340}
341
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700342void
Andrew Vasquezac280b62009-08-20 11:06:05 -0700343qla2x00_async_login_done(struct scsi_qla_host *vha, fc_port_t *fcport,
344 uint16_t *data)
345{
346 int rval;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700347
348 switch (data[0]) {
349 case MBS_COMMAND_COMPLETE:
Andrew Vasqueza4f92a32011-03-30 11:46:31 -0700350 /*
351 * Driver must validate login state - If PRLI not complete,
352 * force a relogin attempt via implicit LOGO, PLOGI, and PRLI
353 * requests.
354 */
355 rval = qla2x00_get_port_database(vha, fcport, 0);
Arun Easi0eba25d2012-02-09 11:15:58 -0800356 if (rval == QLA_NOT_LOGGED_IN) {
357 fcport->flags &= ~FCF_ASYNC_SENT;
358 fcport->flags |= FCF_LOGIN_NEEDED;
359 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
360 break;
361 }
362
Andrew Vasqueza4f92a32011-03-30 11:46:31 -0700363 if (rval != QLA_SUCCESS) {
364 qla2x00_post_async_logout_work(vha, fcport, NULL);
365 qla2x00_post_async_login_work(vha, fcport, NULL);
366 break;
367 }
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700368 if (fcport->flags & FCF_FCP2_DEVICE) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700369 qla2x00_post_async_adisc_work(vha, fcport, data);
370 break;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700371 }
372 qla2x00_update_fcport(vha, fcport);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700373 break;
374 case MBS_COMMAND_ERROR:
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700375 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700376 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
377 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
378 else
Andrew Vasquez80d79442011-03-30 11:46:17 -0700379 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700380 break;
381 case MBS_PORT_ID_USED:
382 fcport->loop_id = data[1];
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700383 qla2x00_post_async_logout_work(vha, fcport, NULL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700384 qla2x00_post_async_login_work(vha, fcport, NULL);
385 break;
386 case MBS_LOOP_ID_USED:
387 fcport->loop_id++;
388 rval = qla2x00_find_new_loop_id(vha, fcport);
389 if (rval != QLA_SUCCESS) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700390 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquez80d79442011-03-30 11:46:17 -0700391 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700392 break;
393 }
394 qla2x00_post_async_login_work(vha, fcport, NULL);
395 break;
396 }
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700397 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700398}
399
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700400void
Andrew Vasquezac280b62009-08-20 11:06:05 -0700401qla2x00_async_logout_done(struct scsi_qla_host *vha, fc_port_t *fcport,
402 uint16_t *data)
403{
404 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700405 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700406}
407
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700408void
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700409qla2x00_async_adisc_done(struct scsi_qla_host *vha, fc_port_t *fcport,
410 uint16_t *data)
411{
412 if (data[0] == MBS_COMMAND_COMPLETE) {
413 qla2x00_update_fcport(vha, fcport);
414
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700415 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700416 }
417
418 /* Retry login. */
419 fcport->flags &= ~FCF_ASYNC_SENT;
420 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
421 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
422 else
Andrew Vasquez80d79442011-03-30 11:46:17 -0700423 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700424
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700425 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700426}
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428/****************************************************************************/
429/* QLogic ISP2x00 Hardware Support Functions. */
430/****************************************************************************/
431
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400432int
433qla83xx_nic_core_fw_load(scsi_qla_host_t *vha)
434{
435 int rval = QLA_SUCCESS;
436 struct qla_hw_data *ha = vha->hw;
437 uint32_t idc_major_ver, idc_minor_ver;
438
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
489 rval = qla83xx_idc_state_handler(vha);
490
491exit:
492 qla83xx_idc_unlock(vha, 0);
493
494 return rval;
495}
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497/*
498* qla2x00_initialize_adapter
499* Initialize board.
500*
501* Input:
502* ha = adapter block pointer.
503*
504* Returns:
505* 0 = success
506*/
507int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800508qla2x00_initialize_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800511 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800512 struct req_que *req = ha->req_q_map[0];
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /* Clear adapter flags. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800515 vha->flags.online = 0;
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700516 ha->flags.chip_reset_done = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800517 vha->flags.reset_active = 0;
Andrew Vasquez85880802009-12-15 21:29:46 -0800518 ha->flags.pci_channel_io_perm_failure = 0;
519 ha->flags.eeh_busy = 0;
Andrew Vasquez794a5692010-12-21 16:00:21 -0800520 ha->flags.thermal_supported = 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800521 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
522 atomic_set(&vha->loop_state, LOOP_DOWN);
523 vha->device_flags = DFLG_NO_CABLE;
524 vha->dpc_flags = 0;
525 vha->flags.management_server_logged_in = 0;
526 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 ha->isp_abort_cnt = 0;
528 ha->beacon_blink_led = 0;
529
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800530 set_bit(0, ha->req_qid_map);
531 set_bit(0, ha->rsp_qid_map);
532
Chad Dupuiscfb09192011-11-18 09:03:07 -0800533 ql_dbg(ql_dbg_init, vha, 0x0040,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700534 "Configuring PCI space...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800535 rval = ha->isp_ops->pci_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700537 ql_log(ql_log_warn, vha, 0x0044,
538 "Unable to configure PCI space.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return (rval);
540 }
541
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800542 ha->isp_ops->reset_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800544 rval = qla2xxx_get_flash_info(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700545 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700546 ql_log(ql_log_fatal, vha, 0x004f,
547 "Unable to validate FLASH data.\n");
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700548 return (rval);
549 }
550
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800551 ha->isp_ops->get_flash_version(vha, req->ring);
Chad Dupuiscfb09192011-11-18 09:03:07 -0800552 ql_dbg(ql_dbg_init, vha, 0x0061,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700553 "Configure NVRAM parameters...\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700554
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800555 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700557 if (ha->flags.disable_serdes) {
558 /* Mask HBA via NVRAM settings? */
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700559 ql_log(ql_log_info, vha, 0x0077,
560 "Masking HBA WWPN "
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700561 "%02x%02x%02x%02x%02x%02x%02x%02x (via NVRAM).\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800562 vha->port_name[0], vha->port_name[1],
563 vha->port_name[2], vha->port_name[3],
564 vha->port_name[4], vha->port_name[5],
565 vha->port_name[6], vha->port_name[7]);
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700566 return QLA_FUNCTION_FAILED;
567 }
568
Chad Dupuiscfb09192011-11-18 09:03:07 -0800569 ql_dbg(ql_dbg_init, vha, 0x0078,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700570 "Verifying loaded RISC code...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800572 if (qla2x00_isp_firmware(vha) != QLA_SUCCESS) {
573 rval = ha->isp_ops->chip_diag(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800574 if (rval)
575 return (rval);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800576 rval = qla2x00_setup_chip(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800577 if (rval)
578 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Giridhar Malavalia9083012010-04-12 17:59:55 -0700580
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700581 if (IS_QLA84XX(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800582 ha->cs84xx = qla84xx_get_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700583 if (!ha->cs84xx) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700584 ql_log(ql_log_warn, vha, 0x00d0,
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700585 "Unable to configure ISP84XX.\n");
586 return QLA_FUNCTION_FAILED;
587 }
588 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400589
590 if (qla_ini_mode_enabled(vha))
591 rval = qla2x00_init_rings(vha);
592
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700593 ha->flags.chip_reset_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800595 if (rval == QLA_SUCCESS && IS_QLA84XX(ha)) {
Andrew Vasquez6c452a42010-03-19 17:04:02 -0700596 /* Issue verify 84xx FW IOCB to complete 84xx initialization */
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800597 rval = qla84xx_init_chip(vha);
598 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700599 ql_log(ql_log_warn, vha, 0x00d4,
600 "Unable to initialize ISP84XX.\n");
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800601 qla84xx_put_chip(vha);
602 }
603 }
604
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400605 /* Load the NIC Core f/w if we are the first protocol driver. */
606 if (IS_QLA8031(ha)) {
607 rval = qla83xx_nic_core_fw_load(vha);
608 if (rval)
609 ql_log(ql_log_warn, vha, 0x0124,
610 "Error in initializing NIC Core f/w.\n");
611 }
612
Madhuranath Iyengar2f0f3f42010-07-23 15:28:24 +0500613 if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha))
614 qla24xx_read_fcp_prio_cfg(vha);
Sarang Radke09ff7012010-03-19 17:03:59 -0700615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return (rval);
617}
618
619/**
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700620 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 * @ha: HA context
622 *
623 * Returns 0 on success.
624 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700625int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800626qla2100_pci_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700628 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700629 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800630 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700631 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700634 pci_try_set_mwi(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700637 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
639
Andrew Vasquez737faec2008-10-24 15:13:45 -0700640 pci_disable_rom(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700642 /* Get PCI bus information. */
643 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700644 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700645 spin_unlock_irqrestore(&ha->hardware_lock, flags);
646
647 return QLA_SUCCESS;
648}
649
650/**
651 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
652 * @ha: HA context
653 *
654 * Returns 0 on success.
655 */
656int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800657qla2300_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700658{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700659 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700660 unsigned long flags = 0;
661 uint32_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800662 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700663 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700664
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700665 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700666 pci_try_set_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700667
668 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700669 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700670
671 if (IS_QLA2322(ha) || IS_QLA6322(ha))
672 w &= ~PCI_COMMAND_INTX_DISABLE;
Andrew Vasqueza157b102007-05-07 07:43:01 -0700673 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700674
675 /*
676 * If this is a 2300 card and not 2312, reset the
677 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
678 * the 2310 also reports itself as a 2300 so we need to get the
679 * fb revision level -- a 6 indicates it really is a 2300 and
680 * not a 2310.
681 */
682 if (IS_QLA2300(ha)) {
683 spin_lock_irqsave(&ha->hardware_lock, flags);
684
685 /* Pause RISC. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700686 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700687 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700688 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700689 break;
690
691 udelay(10);
692 }
693
694 /* Select FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700695 WRT_REG_WORD(&reg->ctrl_status, 0x20);
696 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700697
698 /* Get the fb rev level */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700699 ha->fb_rev = RD_FB_CMD_REG(ha, reg);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700700
701 if (ha->fb_rev == FPM_2300)
Andrew Vasqueza157b102007-05-07 07:43:01 -0700702 pci_clear_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700703
704 /* Deselect FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700705 WRT_REG_WORD(&reg->ctrl_status, 0x0);
706 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700707
708 /* Release RISC module. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700709 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700710 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700711 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) == 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700712 break;
713
714 udelay(10);
715 }
716
717 spin_unlock_irqrestore(&ha->hardware_lock, flags);
718 }
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700719
720 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
721
Andrew Vasquez737faec2008-10-24 15:13:45 -0700722 pci_disable_rom(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700723
724 /* Get PCI bus information. */
725 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700726 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700727 spin_unlock_irqrestore(&ha->hardware_lock, flags);
728
729 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700733 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
734 * @ha: HA context
735 *
736 * Returns 0 on success.
737 */
738int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800739qla24xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700740{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700741 uint16_t w;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700742 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800743 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700744 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700745
746 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700747 pci_try_set_mwi(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700748
749 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700750 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700751 w &= ~PCI_COMMAND_INTX_DISABLE;
752 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
753
754 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
755
756 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700757 if (pci_find_capability(ha->pdev, PCI_CAP_ID_PCIX))
758 pcix_set_mmrbc(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700759
760 /* PCIe -- adjust Maximum Read Request Size (2048). */
Jon Masone67f1322012-07-10 14:57:56 -0700761 if (pci_is_pcie(ha->pdev))
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700762 pcie_set_readrq(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700763
Andrew Vasquez737faec2008-10-24 15:13:45 -0700764 pci_disable_rom(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700765
Auke Kok44c10132007-06-08 15:46:36 -0700766 ha->chip_revision = ha->pdev->revision;
Andrew Vasqueza8488ab2007-01-29 10:22:19 -0800767
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700768 /* Get PCI bus information. */
769 spin_lock_irqsave(&ha->hardware_lock, flags);
770 ha->pci_attr = RD_REG_DWORD(&reg->ctrl_status);
771 spin_unlock_irqrestore(&ha->hardware_lock, flags);
772
773 return QLA_SUCCESS;
774}
775
776/**
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700777 * qla25xx_pci_config() - Setup ISP25xx PCI configuration registers.
778 * @ha: HA context
779 *
780 * Returns 0 on success.
781 */
782int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800783qla25xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700784{
785 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800786 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700787
788 pci_set_master(ha->pdev);
789 pci_try_set_mwi(ha->pdev);
790
791 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
792 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
793 w &= ~PCI_COMMAND_INTX_DISABLE;
794 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
795
796 /* PCIe -- adjust Maximum Read Request Size (2048). */
Jon Masone67f1322012-07-10 14:57:56 -0700797 if (pci_is_pcie(ha->pdev))
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700798 pcie_set_readrq(ha->pdev, 2048);
799
Andrew Vasquez737faec2008-10-24 15:13:45 -0700800 pci_disable_rom(ha->pdev);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700801
802 ha->chip_revision = ha->pdev->revision;
803
804 return QLA_SUCCESS;
805}
806
807/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 * qla2x00_isp_firmware() - Choose firmware image.
809 * @ha: HA context
810 *
811 * Returns 0 on success.
812 */
813static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800814qla2x00_isp_firmware(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 int rval;
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700817 uint16_t loop_id, topo, sw_cap;
818 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800819 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 /* Assume loading risc code */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700822 rval = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 if (ha->flags.disable_risc_code_load) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700825 ql_log(ql_log_info, vha, 0x0079, "RISC CODE NOT loaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /* Verify checksum of loaded RISC code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800828 rval = qla2x00_verify_checksum(vha, ha->fw_srisc_address);
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700829 if (rval == QLA_SUCCESS) {
830 /* And, verify we are not in ROM code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800831 rval = qla2x00_get_adapter_id(vha, &loop_id, &al_pa,
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700832 &area, &domain, &topo, &sw_cap);
833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700836 if (rval)
837 ql_dbg(ql_dbg_init, vha, 0x007a,
838 "**** Load RISC code ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 return (rval);
841}
842
843/**
844 * qla2x00_reset_chip() - Reset ISP chip.
845 * @ha: HA context
846 *
847 * Returns 0 on success.
848 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700849void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800850qla2x00_reset_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
852 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800853 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700854 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 uint32_t cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 uint16_t cmd;
857
Andrew Vasquez85880802009-12-15 21:29:46 -0800858 if (unlikely(pci_channel_offline(ha->pdev)))
859 return;
860
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700861 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 spin_lock_irqsave(&ha->hardware_lock, flags);
864
865 /* Turn off master enable */
866 cmd = 0;
867 pci_read_config_word(ha->pdev, PCI_COMMAND, &cmd);
868 cmd &= ~PCI_COMMAND_MASTER;
869 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
870
871 if (!IS_QLA2100(ha)) {
872 /* Pause RISC. */
873 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
874 if (IS_QLA2200(ha) || IS_QLA2300(ha)) {
875 for (cnt = 0; cnt < 30000; cnt++) {
876 if ((RD_REG_WORD(&reg->hccr) &
877 HCCR_RISC_PAUSE) != 0)
878 break;
879 udelay(100);
880 }
881 } else {
882 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
883 udelay(10);
884 }
885
886 /* Select FPM registers. */
887 WRT_REG_WORD(&reg->ctrl_status, 0x20);
888 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
889
890 /* FPM Soft Reset. */
891 WRT_REG_WORD(&reg->fpm_diag_config, 0x100);
892 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
893
894 /* Toggle Fpm Reset. */
895 if (!IS_QLA2200(ha)) {
896 WRT_REG_WORD(&reg->fpm_diag_config, 0x0);
897 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
898 }
899
900 /* Select frame buffer registers. */
901 WRT_REG_WORD(&reg->ctrl_status, 0x10);
902 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
903
904 /* Reset frame buffer FIFOs. */
905 if (IS_QLA2200(ha)) {
906 WRT_FB_CMD_REG(ha, reg, 0xa000);
907 RD_FB_CMD_REG(ha, reg); /* PCI Posting. */
908 } else {
909 WRT_FB_CMD_REG(ha, reg, 0x00fc);
910
911 /* Read back fb_cmd until zero or 3 seconds max */
912 for (cnt = 0; cnt < 3000; cnt++) {
913 if ((RD_FB_CMD_REG(ha, reg) & 0xff) == 0)
914 break;
915 udelay(100);
916 }
917 }
918
919 /* Select RISC module registers. */
920 WRT_REG_WORD(&reg->ctrl_status, 0);
921 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
922
923 /* Reset RISC processor. */
924 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
925 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
926
927 /* Release RISC processor. */
928 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
929 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
930 }
931
932 WRT_REG_WORD(&reg->hccr, HCCR_CLR_RISC_INT);
933 WRT_REG_WORD(&reg->hccr, HCCR_CLR_HOST_INT);
934
935 /* Reset ISP chip. */
936 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
937
938 /* Wait for RISC to recover from reset. */
939 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
940 /*
941 * It is necessary to for a delay here since the card doesn't
942 * respond to PCI reads during a reset. On some architectures
943 * this will result in an MCA.
944 */
945 udelay(20);
946 for (cnt = 30000; cnt; cnt--) {
947 if ((RD_REG_WORD(&reg->ctrl_status) &
948 CSR_ISP_SOFT_RESET) == 0)
949 break;
950 udelay(100);
951 }
952 } else
953 udelay(10);
954
955 /* Reset RISC processor. */
956 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
957
958 WRT_REG_WORD(&reg->semaphore, 0);
959
960 /* Release RISC processor. */
961 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
962 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
963
964 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
965 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquezffb39f02006-05-17 15:09:06 -0700966 if (RD_MAILBOX_REG(ha, reg, 0) != MBS_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 udelay(100);
970 }
971 } else
972 udelay(100);
973
974 /* Turn on master enable */
975 cmd |= PCI_COMMAND_MASTER;
976 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
977
978 /* Disable RISC pause on FPM parity error. */
979 if (!IS_QLA2100(ha)) {
980 WRT_REG_WORD(&reg->hccr, HCCR_DISABLE_PARITY_PAUSE);
981 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
982 }
983
984 spin_unlock_irqrestore(&ha->hardware_lock, flags);
985}
986
987/**
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -0700988 * qla81xx_reset_mpi() - Reset's MPI FW via Write MPI Register MBC.
989 *
990 * Returns 0 on success.
991 */
992int
993qla81xx_reset_mpi(scsi_qla_host_t *vha)
994{
995 uint16_t mb[4] = {0x1010, 0, 1, 0};
996
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800997 if (!IS_QLA81XX(vha->hw))
998 return QLA_SUCCESS;
999
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -07001000 return qla81xx_write_mpi_register(vha, mb);
1001}
1002
1003/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001004 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001005 * @ha: HA context
1006 *
1007 * Returns 0 on success.
1008 */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001009static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001010qla24xx_reset_risc(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001011{
1012 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001013 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001014 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1015 uint32_t cnt, d2;
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001016 uint16_t wd;
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -07001017 static int abts_cnt; /* ISP abort retry counts */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001018
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001019 spin_lock_irqsave(&ha->hardware_lock, flags);
1020
1021 /* Reset RISC. */
1022 WRT_REG_DWORD(&reg->ctrl_status, CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
1023 for (cnt = 0; cnt < 30000; cnt++) {
1024 if ((RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE) == 0)
1025 break;
1026
1027 udelay(10);
1028 }
1029
1030 WRT_REG_DWORD(&reg->ctrl_status,
1031 CSRX_ISP_SOFT_RESET|CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001032 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001033
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001034 udelay(100);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001035 /* Wait for firmware to complete NVRAM accesses. */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001036 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1037 for (cnt = 10000 ; cnt && d2; cnt--) {
1038 udelay(5);
1039 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1040 barrier();
1041 }
1042
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001043 /* Wait for soft-reset to complete. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001044 d2 = RD_REG_DWORD(&reg->ctrl_status);
1045 for (cnt = 6000000 ; cnt && (d2 & CSRX_ISP_SOFT_RESET); cnt--) {
1046 udelay(5);
1047 d2 = RD_REG_DWORD(&reg->ctrl_status);
1048 barrier();
1049 }
1050
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -07001051 /* If required, do an MPI FW reset now */
1052 if (test_and_clear_bit(MPI_RESET_NEEDED, &vha->dpc_flags)) {
1053 if (qla81xx_reset_mpi(vha) != QLA_SUCCESS) {
1054 if (++abts_cnt < 5) {
1055 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1056 set_bit(MPI_RESET_NEEDED, &vha->dpc_flags);
1057 } else {
1058 /*
1059 * We exhausted the ISP abort retries. We have to
1060 * set the board offline.
1061 */
1062 abts_cnt = 0;
1063 vha->flags.online = 0;
1064 }
1065 }
1066 }
1067
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001068 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
1069 RD_REG_DWORD(&reg->hccr);
1070
1071 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
1072 RD_REG_DWORD(&reg->hccr);
1073
1074 WRT_REG_DWORD(&reg->hccr, HCCRX_CLR_RISC_RESET);
1075 RD_REG_DWORD(&reg->hccr);
1076
1077 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1078 for (cnt = 6000000 ; cnt && d2; cnt--) {
1079 udelay(5);
1080 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1081 barrier();
1082 }
1083
1084 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez124f85e2009-01-05 11:18:06 -08001085
1086 if (IS_NOPOLLING_TYPE(ha))
1087 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001088}
1089
1090/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001091 * qla24xx_reset_chip() - Reset ISP24xx chip.
1092 * @ha: HA context
1093 *
1094 * Returns 0 on success.
1095 */
1096void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001097qla24xx_reset_chip(scsi_qla_host_t *vha)
Andrew Vasquez88c26662005-07-08 17:59:26 -07001098{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001099 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez85880802009-12-15 21:29:46 -08001100
1101 if (pci_channel_offline(ha->pdev) &&
1102 ha->flags.pci_channel_io_perm_failure) {
1103 return;
1104 }
1105
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001106 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001107
1108 /* Perform RISC reset. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001109 qla24xx_reset_risc(vha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001110}
1111
1112/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 * qla2x00_chip_diag() - Test chip for proper operation.
1114 * @ha: HA context
1115 *
1116 * Returns 0 on success.
1117 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001118int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001119qla2x00_chip_diag(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
1121 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001122 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001123 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 unsigned long flags = 0;
1125 uint16_t data;
1126 uint32_t cnt;
1127 uint16_t mb[5];
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001128 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 /* Assume a failed state */
1131 rval = QLA_FUNCTION_FAILED;
1132
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001133 ql_dbg(ql_dbg_init, vha, 0x007b,
1134 "Testing device at %lx.\n", (u_long)&reg->flash_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
1136 spin_lock_irqsave(&ha->hardware_lock, flags);
1137
1138 /* Reset ISP chip. */
1139 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
1140
1141 /*
1142 * We need to have a delay here since the card will not respond while
1143 * in reset causing an MCA on some architectures.
1144 */
1145 udelay(20);
1146 data = qla2x00_debounce_register(&reg->ctrl_status);
1147 for (cnt = 6000000 ; cnt && (data & CSR_ISP_SOFT_RESET); cnt--) {
1148 udelay(5);
1149 data = RD_REG_WORD(&reg->ctrl_status);
1150 barrier();
1151 }
1152
1153 if (!cnt)
1154 goto chip_diag_failed;
1155
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001156 ql_dbg(ql_dbg_init, vha, 0x007c,
1157 "Reset register cleared by chip reset.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /* Reset RISC processor. */
1160 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
1161 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
1162
1163 /* Workaround for QLA2312 PCI parity error */
1164 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
1165 data = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 0));
1166 for (cnt = 6000000; cnt && (data == MBS_BUSY); cnt--) {
1167 udelay(5);
1168 data = RD_MAILBOX_REG(ha, reg, 0);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001169 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
1171 } else
1172 udelay(10);
1173
1174 if (!cnt)
1175 goto chip_diag_failed;
1176
1177 /* Check product ID of chip */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001178 ql_dbg(ql_dbg_init, vha, 0x007d, "Checking product Id of chip.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
1181 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
1182 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
1183 mb[4] = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 4));
1184 if (mb[1] != PROD_ID_1 || (mb[2] != PROD_ID_2 && mb[2] != PROD_ID_2a) ||
1185 mb[3] != PROD_ID_3) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001186 ql_log(ql_log_warn, vha, 0x0062,
1187 "Wrong product ID = 0x%x,0x%x,0x%x.\n",
1188 mb[1], mb[2], mb[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 goto chip_diag_failed;
1191 }
1192 ha->product_id[0] = mb[1];
1193 ha->product_id[1] = mb[2];
1194 ha->product_id[2] = mb[3];
1195 ha->product_id[3] = mb[4];
1196
1197 /* Adjust fw RISC transfer size */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001198 if (req->length > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
1200 else
1201 ha->fw_transfer_size = REQUEST_ENTRY_SIZE *
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001202 req->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 if (IS_QLA2200(ha) &&
1205 RD_MAILBOX_REG(ha, reg, 7) == QLA2200A_RISC_ROM_VER) {
1206 /* Limit firmware transfer size with a 2200A */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001207 ql_dbg(ql_dbg_init, vha, 0x007e, "Found QLA2200A Chip.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001209 ha->device_type |= DT_ISP2200A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 ha->fw_transfer_size = 128;
1211 }
1212
1213 /* Wrap Incoming Mailboxes Test. */
1214 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1215
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001216 ql_dbg(ql_dbg_init, vha, 0x007f, "Checking mailboxes.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001217 rval = qla2x00_mbx_reg_test(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001218 if (rval)
1219 ql_log(ql_log_warn, vha, 0x0080,
1220 "Failed mailbox send register test.\n");
1221 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 /* Flag a successful rval */
1223 rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 spin_lock_irqsave(&ha->hardware_lock, flags);
1225
1226chip_diag_failed:
1227 if (rval)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001228 ql_log(ql_log_info, vha, 0x0081,
1229 "Chip diagnostics **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1232
1233 return (rval);
1234}
1235
1236/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001237 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
1238 * @ha: HA context
1239 *
1240 * Returns 0 on success.
1241 */
1242int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001243qla24xx_chip_diag(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001244{
1245 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001246 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001247 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001248
Giridhar Malavalia9083012010-04-12 17:59:55 -07001249 if (IS_QLA82XX(ha))
1250 return QLA_SUCCESS;
1251
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001252 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * req->length;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001253
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001254 rval = qla2x00_mbx_reg_test(vha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001255 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001256 ql_log(ql_log_warn, vha, 0x0082,
1257 "Failed mailbox send register test.\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001258 } else {
1259 /* Flag a successful rval */
1260 rval = QLA_SUCCESS;
1261 }
1262
1263 return rval;
1264}
1265
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001266void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001267qla2x00_alloc_fw_dump(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001268{
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001269 int rval;
1270 uint32_t dump_size, fixed_size, mem_size, req_q_size, rsp_q_size,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001271 eft_size, fce_size, mq_size;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001272 dma_addr_t tc_dma;
1273 void *tc;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001274 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001275 struct req_que *req = ha->req_q_map[0];
1276 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001277
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001278 if (ha->fw_dump) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001279 ql_dbg(ql_dbg_init, vha, 0x00bd,
1280 "Firmware dump already allocated.\n");
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001281 return;
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001282 }
1283
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001284 ha->fw_dumped = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001285 fixed_size = mem_size = eft_size = fce_size = mq_size = 0;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001286 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1287 fixed_size = sizeof(struct qla2100_fw_dump);
1288 } else if (IS_QLA23XX(ha)) {
1289 fixed_size = offsetof(struct qla2300_fw_dump, data_ram);
1290 mem_size = (ha->fw_memory_size - 0x11000 + 1) *
1291 sizeof(uint16_t);
Andrew Vasqueze4289242007-07-19 15:05:56 -07001292 } else if (IS_FWI2_CAPABLE(ha)) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001293 if (IS_QLA83XX(ha))
1294 fixed_size = offsetof(struct qla83xx_fw_dump, ext_mem);
1295 else if (IS_QLA81XX(ha))
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001296 fixed_size = offsetof(struct qla81xx_fw_dump, ext_mem);
1297 else if (IS_QLA25XX(ha))
1298 fixed_size = offsetof(struct qla25xx_fw_dump, ext_mem);
1299 else
1300 fixed_size = offsetof(struct qla24xx_fw_dump, ext_mem);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001301 mem_size = (ha->fw_memory_size - 0x100000 + 1) *
1302 sizeof(uint32_t);
Giridhar Malavali050c9bb2012-02-09 11:15:33 -08001303 if (ha->mqenable) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001304 if (!IS_QLA83XX(ha))
1305 mq_size = sizeof(struct qla2xxx_mq_chain);
Giridhar Malavali050c9bb2012-02-09 11:15:33 -08001306 /*
1307 * Allocate maximum buffer size for all queues.
1308 * Resizing must be done at end-of-dump processing.
1309 */
1310 mq_size += ha->max_req_queues *
1311 (req->length * sizeof(request_t));
1312 mq_size += ha->max_rsp_queues *
1313 (rsp->length * sizeof(response_t));
1314 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001315 if (ha->tgt.atio_q_length)
1316 mq_size += ha->tgt.atio_q_length * sizeof(request_t);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001317 /* Allocate memory for Fibre Channel Event Buffer. */
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001318 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha) && !IS_QLA83XX(ha))
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001319 goto try_eft;
1320
1321 tc = dma_alloc_coherent(&ha->pdev->dev, FCE_SIZE, &tc_dma,
1322 GFP_KERNEL);
1323 if (!tc) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001324 ql_log(ql_log_warn, vha, 0x00be,
1325 "Unable to allocate (%d KB) for FCE.\n",
1326 FCE_SIZE / 1024);
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001327 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001328 }
1329
1330 memset(tc, 0, FCE_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001331 rval = qla2x00_enable_fce_trace(vha, tc_dma, FCE_NUM_BUFFERS,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001332 ha->fce_mb, &ha->fce_bufs);
1333 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001334 ql_log(ql_log_warn, vha, 0x00bf,
1335 "Unable to initialize FCE (%d).\n", rval);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001336 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, tc,
1337 tc_dma);
1338 ha->flags.fce_enabled = 0;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001339 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001340 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08001341 ql_dbg(ql_dbg_init, vha, 0x00c0,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001342 "Allocate (%d KB) for FCE...\n", FCE_SIZE / 1024);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001343
Giridhar Malavali7d9dade2009-03-24 09:07:58 -07001344 fce_size = sizeof(struct qla2xxx_fce_chain) + FCE_SIZE;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001345 ha->flags.fce_enabled = 1;
1346 ha->fce_dma = tc_dma;
1347 ha->fce = tc;
1348try_eft:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001349 /* Allocate memory for Extended Trace Buffer. */
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001350 tc = dma_alloc_coherent(&ha->pdev->dev, EFT_SIZE, &tc_dma,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001351 GFP_KERNEL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001352 if (!tc) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001353 ql_log(ql_log_warn, vha, 0x00c1,
1354 "Unable to allocate (%d KB) for EFT.\n",
1355 EFT_SIZE / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001356 goto cont_alloc;
1357 }
1358
Andrew Vasquezfc447652008-01-17 09:02:18 -08001359 memset(tc, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001360 rval = qla2x00_enable_eft_trace(vha, tc_dma, EFT_NUM_BUFFERS);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001361 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001362 ql_log(ql_log_warn, vha, 0x00c2,
1363 "Unable to initialize EFT (%d).\n", rval);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001364 dma_free_coherent(&ha->pdev->dev, EFT_SIZE, tc,
1365 tc_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001366 goto cont_alloc;
1367 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08001368 ql_dbg(ql_dbg_init, vha, 0x00c3,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001369 "Allocated (%d KB) EFT ...\n", EFT_SIZE / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001370
1371 eft_size = EFT_SIZE;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001372 ha->eft_dma = tc_dma;
1373 ha->eft = tc;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001374 }
1375cont_alloc:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001376 req_q_size = req->length * sizeof(request_t);
1377 rsp_q_size = rsp->length * sizeof(response_t);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001378
1379 dump_size = offsetof(struct qla2xxx_fw_dump, isp);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001380 dump_size += fixed_size + mem_size + req_q_size + rsp_q_size + eft_size;
Andrew Vasquezbb99de62009-01-05 11:18:08 -08001381 ha->chain_offset = dump_size;
1382 dump_size += mq_size + fce_size;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001383
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001384 ha->fw_dump = vmalloc(dump_size);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001385 if (!ha->fw_dump) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001386 ql_log(ql_log_warn, vha, 0x00c4,
1387 "Unable to allocate (%d KB) for firmware dump.\n",
1388 dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001389
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07001390 if (ha->fce) {
1391 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
1392 ha->fce_dma);
1393 ha->fce = NULL;
1394 ha->fce_dma = 0;
1395 }
1396
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001397 if (ha->eft) {
1398 dma_free_coherent(&ha->pdev->dev, eft_size, ha->eft,
1399 ha->eft_dma);
1400 ha->eft = NULL;
1401 ha->eft_dma = 0;
1402 }
1403 return;
1404 }
Chad Dupuiscfb09192011-11-18 09:03:07 -08001405 ql_dbg(ql_dbg_init, vha, 0x00c5,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001406 "Allocated (%d KB) for firmware dump.\n", dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001407
1408 ha->fw_dump_len = dump_size;
1409 ha->fw_dump->signature[0] = 'Q';
1410 ha->fw_dump->signature[1] = 'L';
1411 ha->fw_dump->signature[2] = 'G';
1412 ha->fw_dump->signature[3] = 'C';
1413 ha->fw_dump->version = __constant_htonl(1);
1414
1415 ha->fw_dump->fixed_size = htonl(fixed_size);
1416 ha->fw_dump->mem_size = htonl(mem_size);
1417 ha->fw_dump->req_q_size = htonl(req_q_size);
1418 ha->fw_dump->rsp_q_size = htonl(rsp_q_size);
1419
1420 ha->fw_dump->eft_size = htonl(eft_size);
1421 ha->fw_dump->eft_addr_l = htonl(LSD(ha->eft_dma));
1422 ha->fw_dump->eft_addr_h = htonl(MSD(ha->eft_dma));
1423
1424 ha->fw_dump->header_size =
1425 htonl(offsetof(struct qla2xxx_fw_dump, isp));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001426}
1427
Andrew Vasquez18e75552009-06-03 09:55:30 -07001428static int
1429qla81xx_mpi_sync(scsi_qla_host_t *vha)
1430{
1431#define MPS_MASK 0xe0
1432 int rval;
1433 uint16_t dc;
1434 uint32_t dw;
Andrew Vasquez18e75552009-06-03 09:55:30 -07001435
1436 if (!IS_QLA81XX(vha->hw))
1437 return QLA_SUCCESS;
1438
1439 rval = qla2x00_write_ram_word(vha, 0x7c00, 1);
1440 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001441 ql_log(ql_log_warn, vha, 0x0105,
1442 "Unable to acquire semaphore.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001443 goto done;
1444 }
1445
1446 pci_read_config_word(vha->hw->pdev, 0x54, &dc);
1447 rval = qla2x00_read_ram_word(vha, 0x7a15, &dw);
1448 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001449 ql_log(ql_log_warn, vha, 0x0067, "Unable to read sync.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001450 goto done_release;
1451 }
1452
1453 dc &= MPS_MASK;
1454 if (dc == (dw & MPS_MASK))
1455 goto done_release;
1456
1457 dw &= ~MPS_MASK;
1458 dw |= dc;
1459 rval = qla2x00_write_ram_word(vha, 0x7a15, dw);
1460 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001461 ql_log(ql_log_warn, vha, 0x0114, "Unable to gain sync.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001462 }
1463
1464done_release:
1465 rval = qla2x00_write_ram_word(vha, 0x7c00, 0);
1466 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001467 ql_log(ql_log_warn, vha, 0x006d,
1468 "Unable to release semaphore.\n");
Andrew Vasquez18e75552009-06-03 09:55:30 -07001469 }
1470
1471done:
1472 return rval;
1473}
1474
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001475/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 * qla2x00_setup_chip() - Load and start RISC firmware.
1477 * @ha: HA context
1478 *
1479 * Returns 0 on success.
1480 */
1481static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001482qla2x00_setup_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001484 int rval;
1485 uint32_t srisc_address = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001486 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001487 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1488 unsigned long flags;
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001489 uint16_t fw_major_version;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001490
Giridhar Malavalia9083012010-04-12 17:59:55 -07001491 if (IS_QLA82XX(ha)) {
1492 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001493 if (rval == QLA_SUCCESS) {
1494 qla2x00_stop_firmware(vha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001495 goto enable_82xx_npiv;
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001496 } else
Giridhar Malavalib9637522010-05-28 15:08:15 -07001497 goto failed;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001498 }
1499
Andrew Vasquez3db06522008-01-31 12:33:49 -08001500 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1501 /* Disable SRAM, Instruction RAM and GP RAM parity. */
1502 spin_lock_irqsave(&ha->hardware_lock, flags);
1503 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x0));
1504 RD_REG_WORD(&reg->hccr);
1505 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Andrew Vasquez18e75552009-06-03 09:55:30 -07001508 qla81xx_mpi_sync(vha);
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 /* Load firmware sequences */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001511 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001512 if (rval == QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001513 ql_dbg(ql_dbg_init, vha, 0x00c9,
1514 "Verifying Checksum of loaded RISC code.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001516 rval = qla2x00_verify_checksum(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 if (rval == QLA_SUCCESS) {
1518 /* Start firmware execution. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001519 ql_dbg(ql_dbg_init, vha, 0x00ca,
1520 "Starting firmware.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001522 rval = qla2x00_execute_fw(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 /* Retrieve firmware information. */
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001524 if (rval == QLA_SUCCESS) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07001525enable_82xx_npiv:
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001526 fw_major_version = ha->fw_major_version;
Giridhar Malavali31731672011-08-16 11:31:54 -07001527 if (IS_QLA82XX(ha))
1528 qla82xx_check_md_needed(vha);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001529 else
1530 rval = qla2x00_get_fw_version(vha);
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001531 if (rval != QLA_SUCCESS)
1532 goto failed;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001533 ha->flags.npiv_supported = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001534 if (IS_QLA2XXX_MIDTYPE(ha) &&
Mike Hernandez946fb892008-08-13 21:36:59 -07001535 (ha->fw_attributes & BIT_2)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001536 ha->flags.npiv_supported = 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001537 if ((!ha->max_npiv_vports) ||
1538 ((ha->max_npiv_vports + 1) %
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001539 MIN_MULTI_ID_FABRIC))
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001540 ha->max_npiv_vports =
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001541 MIN_MULTI_ID_FABRIC - 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001542 }
Andrew Vasquez24a08132009-03-24 09:08:16 -07001543 qla2x00_get_resource_cnts(vha, NULL,
1544 &ha->fw_xcb_count, NULL, NULL,
Andrew Vasquezf3a0a772009-10-13 15:16:49 -07001545 &ha->max_npiv_vports, NULL);
Andrew Vasquezd743de62009-03-24 09:08:15 -07001546
Saurav Kashyapbe5ea3c2011-11-18 09:02:11 -08001547 if (!fw_major_version && ql2xallocfwdump
1548 && !IS_QLA82XX(ha))
Giridhar Malavali08de2842011-08-16 11:31:44 -07001549 qla2x00_alloc_fw_dump(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 }
1551 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001552 ql_log(ql_log_fatal, vha, 0x00cd,
1553 "ISP Firmware failed checksum.\n");
1554 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
1556 }
1557
Andrew Vasquez3db06522008-01-31 12:33:49 -08001558 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1559 /* Enable proper parity. */
1560 spin_lock_irqsave(&ha->hardware_lock, flags);
1561 if (IS_QLA2300(ha))
1562 /* SRAM parity */
1563 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x1);
1564 else
1565 /* SRAM, Instruction RAM and GP RAM parity */
1566 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x7);
1567 RD_REG_WORD(&reg->hccr);
1568 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1569 }
1570
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001571 if (IS_QLA83XX(ha))
1572 goto skip_fac_check;
1573
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001574 if (rval == QLA_SUCCESS && IS_FAC_REQUIRED(ha)) {
1575 uint32_t size;
1576
1577 rval = qla81xx_fac_get_sector_size(vha, &size);
1578 if (rval == QLA_SUCCESS) {
1579 ha->flags.fac_supported = 1;
1580 ha->fdt_block_size = size << 2;
1581 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001582 ql_log(ql_log_warn, vha, 0x00ce,
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001583 "Unsupported FAC firmware (%d.%02d.%02d).\n",
1584 ha->fw_major_version, ha->fw_minor_version,
1585 ha->fw_subminor_version);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001586skip_fac_check:
1587 if (IS_QLA83XX(ha)) {
1588 ha->flags.fac_supported = 0;
1589 rval = QLA_SUCCESS;
1590 }
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001591 }
1592 }
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001593failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001595 ql_log(ql_log_fatal, vha, 0x00cf,
1596 "Setup chip ****FAILED****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
1598
1599 return (rval);
1600}
1601
1602/**
1603 * qla2x00_init_response_q_entries() - Initializes response queue entries.
1604 * @ha: HA context
1605 *
1606 * Beginning of request ring has initialization control block already built
1607 * by nvram config routine.
1608 *
1609 * Returns 0 on success.
1610 */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001611void
1612qla2x00_init_response_q_entries(struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613{
1614 uint16_t cnt;
1615 response_t *pkt;
1616
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001617 rsp->ring_ptr = rsp->ring;
1618 rsp->ring_index = 0;
1619 rsp->status_srb = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001620 pkt = rsp->ring_ptr;
1621 for (cnt = 0; cnt < rsp->length; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 pkt->signature = RESPONSE_PROCESSED;
1623 pkt++;
1624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
1627/**
1628 * qla2x00_update_fw_options() - Read and process firmware options.
1629 * @ha: HA context
1630 *
1631 * Returns 0 on success.
1632 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001633void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001634qla2x00_update_fw_options(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
1636 uint16_t swing, emphasis, tx_sens, rx_sens;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001637 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 memset(ha->fw_options, 0, sizeof(ha->fw_options));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001640 qla2x00_get_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1643 return;
1644
1645 /* Serial Link options. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001646 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x0115,
1647 "Serial link options.\n");
1648 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0109,
1649 (uint8_t *)&ha->fw_seriallink_options,
1650 sizeof(ha->fw_seriallink_options));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1653 if (ha->fw_seriallink_options[3] & BIT_2) {
1654 ha->fw_options[1] |= FO1_SET_EMPHASIS_SWING;
1655
1656 /* 1G settings */
1657 swing = ha->fw_seriallink_options[2] & (BIT_2 | BIT_1 | BIT_0);
1658 emphasis = (ha->fw_seriallink_options[2] &
1659 (BIT_4 | BIT_3)) >> 3;
1660 tx_sens = ha->fw_seriallink_options[0] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001661 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 rx_sens = (ha->fw_seriallink_options[0] &
1663 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1664 ha->fw_options[10] = (emphasis << 14) | (swing << 8);
1665 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1666 if (rx_sens == 0x0)
1667 rx_sens = 0x3;
1668 ha->fw_options[10] |= (tx_sens << 4) | rx_sens;
1669 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1670 ha->fw_options[10] |= BIT_5 |
1671 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1672 (tx_sens & (BIT_1 | BIT_0));
1673
1674 /* 2G settings */
1675 swing = (ha->fw_seriallink_options[2] &
1676 (BIT_7 | BIT_6 | BIT_5)) >> 5;
1677 emphasis = ha->fw_seriallink_options[3] & (BIT_1 | BIT_0);
1678 tx_sens = ha->fw_seriallink_options[1] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001679 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 rx_sens = (ha->fw_seriallink_options[1] &
1681 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1682 ha->fw_options[11] = (emphasis << 14) | (swing << 8);
1683 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1684 if (rx_sens == 0x0)
1685 rx_sens = 0x3;
1686 ha->fw_options[11] |= (tx_sens << 4) | rx_sens;
1687 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1688 ha->fw_options[11] |= BIT_5 |
1689 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1690 (tx_sens & (BIT_1 | BIT_0));
1691 }
1692
1693 /* FCP2 options. */
1694 /* Return command IOCBs without waiting for an ABTS to complete. */
1695 ha->fw_options[3] |= BIT_13;
1696
1697 /* LED scheme. */
1698 if (ha->flags.enable_led_scheme)
1699 ha->fw_options[2] |= BIT_12;
1700
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08001701 /* Detect ISP6312. */
1702 if (IS_QLA6312(ha))
1703 ha->fw_options[2] |= BIT_13;
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /* Update firmware options. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001706 qla2x00_set_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001709void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001710qla24xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001711{
1712 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001713 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001714
Giridhar Malavalia9083012010-04-12 17:59:55 -07001715 if (IS_QLA82XX(ha))
1716 return;
1717
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001718 /* Update Serial Link options. */
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001719 if ((le16_to_cpu(ha->fw_seriallink_options24[0]) & BIT_0) == 0)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001720 return;
1721
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001722 rval = qla2x00_set_serdes_params(vha,
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001723 le16_to_cpu(ha->fw_seriallink_options24[1]),
1724 le16_to_cpu(ha->fw_seriallink_options24[2]),
1725 le16_to_cpu(ha->fw_seriallink_options24[3]));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001726 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001727 ql_log(ql_log_warn, vha, 0x0104,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001728 "Unable to update Serial Link options (%x).\n", rval);
1729 }
1730}
1731
1732void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001733qla2x00_config_rings(struct scsi_qla_host *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001734{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001735 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001736 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001737 struct req_que *req = ha->req_q_map[0];
1738 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001739
1740 /* Setup ring parameters in initialization control block. */
1741 ha->init_cb->request_q_outpointer = __constant_cpu_to_le16(0);
1742 ha->init_cb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001743 ha->init_cb->request_q_length = cpu_to_le16(req->length);
1744 ha->init_cb->response_q_length = cpu_to_le16(rsp->length);
1745 ha->init_cb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1746 ha->init_cb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1747 ha->init_cb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1748 ha->init_cb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001749
1750 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), 0);
1751 WRT_REG_WORD(ISP_REQ_Q_OUT(ha, reg), 0);
1752 WRT_REG_WORD(ISP_RSP_Q_IN(ha, reg), 0);
1753 WRT_REG_WORD(ISP_RSP_Q_OUT(ha, reg), 0);
1754 RD_REG_WORD(ISP_RSP_Q_OUT(ha, reg)); /* PCI Posting. */
1755}
1756
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001757void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001758qla24xx_config_rings(struct scsi_qla_host *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001759{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001760 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001761 device_reg_t __iomem *reg = ISP_QUE_REG(ha, 0);
1762 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1763 struct qla_msix_entry *msix;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001764 struct init_cb_24xx *icb;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001765 uint16_t rid = 0;
1766 struct req_que *req = ha->req_q_map[0];
1767 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001768
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001769 /* Setup ring parameters in initialization control block. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001770 icb = (struct init_cb_24xx *)ha->init_cb;
1771 icb->request_q_outpointer = __constant_cpu_to_le16(0);
1772 icb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001773 icb->request_q_length = cpu_to_le16(req->length);
1774 icb->response_q_length = cpu_to_le16(rsp->length);
1775 icb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1776 icb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1777 icb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1778 icb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001779
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001780 /* Setup ATIO queue dma pointers for target mode */
1781 icb->atio_q_inpointer = __constant_cpu_to_le16(0);
1782 icb->atio_q_length = cpu_to_le16(ha->tgt.atio_q_length);
1783 icb->atio_q_address[0] = cpu_to_le32(LSD(ha->tgt.atio_dma));
1784 icb->atio_q_address[1] = cpu_to_le32(MSD(ha->tgt.atio_dma));
1785
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001786 if (ha->mqenable || IS_QLA83XX(ha)) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001787 icb->qos = __constant_cpu_to_le16(QLA_DEFAULT_QUE_QOS);
1788 icb->rid = __constant_cpu_to_le16(rid);
1789 if (ha->flags.msix_enabled) {
1790 msix = &ha->msix_entries[1];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001791 ql_dbg(ql_dbg_init, vha, 0x00fd,
1792 "Registering vector 0x%x for base que.\n",
1793 msix->entry);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001794 icb->msix = cpu_to_le16(msix->entry);
1795 }
1796 /* Use alternate PCI bus number */
1797 if (MSB(rid))
1798 icb->firmware_options_2 |=
1799 __constant_cpu_to_le32(BIT_19);
1800 /* Use alternate PCI devfn */
1801 if (LSB(rid))
1802 icb->firmware_options_2 |=
1803 __constant_cpu_to_le32(BIT_18);
1804
Anirban Chakraborty31557542009-12-02 10:36:55 -08001805 /* Use Disable MSIX Handshake mode for capable adapters */
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001806 if ((ha->fw_attributes & BIT_6) && (IS_MSIX_NACK_CAPABLE(ha)) &&
1807 (ha->flags.msix_enabled)) {
Anirban Chakraborty31557542009-12-02 10:36:55 -08001808 icb->firmware_options_2 &=
1809 __constant_cpu_to_le32(~BIT_22);
1810 ha->flags.disable_msix_handshake = 1;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001811 ql_dbg(ql_dbg_init, vha, 0x00fe,
1812 "MSIX Handshake Disable Mode turned on.\n");
Anirban Chakraborty31557542009-12-02 10:36:55 -08001813 } else {
1814 icb->firmware_options_2 |=
1815 __constant_cpu_to_le32(BIT_22);
1816 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001817 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_23);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001818
1819 WRT_REG_DWORD(&reg->isp25mq.req_q_in, 0);
1820 WRT_REG_DWORD(&reg->isp25mq.req_q_out, 0);
1821 WRT_REG_DWORD(&reg->isp25mq.rsp_q_in, 0);
1822 WRT_REG_DWORD(&reg->isp25mq.rsp_q_out, 0);
1823 } else {
1824 WRT_REG_DWORD(&reg->isp24.req_q_in, 0);
1825 WRT_REG_DWORD(&reg->isp24.req_q_out, 0);
1826 WRT_REG_DWORD(&reg->isp24.rsp_q_in, 0);
1827 WRT_REG_DWORD(&reg->isp24.rsp_q_out, 0);
1828 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001829 qlt_24xx_config_rings(vha, reg);
1830
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001831 /* PCI posting */
1832 RD_REG_DWORD(&ioreg->hccr);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001833}
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835/**
1836 * qla2x00_init_rings() - Initializes firmware.
1837 * @ha: HA context
1838 *
1839 * Beginning of request ring has initialization control block already built
1840 * by nvram config routine.
1841 *
1842 * Returns 0 on success.
1843 */
1844static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001845qla2x00_init_rings(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
1847 int rval;
1848 unsigned long flags = 0;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001849 int cnt, que;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001850 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001851 struct req_que *req;
1852 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001853 struct mid_init_cb_24xx *mid_init_cb =
1854 (struct mid_init_cb_24xx *) ha->init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 spin_lock_irqsave(&ha->hardware_lock, flags);
1857
1858 /* Clear outstanding commands array. */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001859 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001860 req = ha->req_q_map[que];
1861 if (!req)
1862 continue;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001863 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++)
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001864 req->outstanding_cmds[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001866 req->current_outstanding_cmd = 1;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001867
1868 /* Initialize firmware. */
1869 req->ring_ptr = req->ring;
1870 req->ring_index = 0;
1871 req->cnt = req->length;
1872 }
1873
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001874 for (que = 0; que < ha->max_rsp_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001875 rsp = ha->rsp_q_map[que];
1876 if (!rsp)
1877 continue;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001878 /* Initialize response queue entries */
1879 qla2x00_init_response_q_entries(rsp);
1880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Dan Carpenter542bce12010-10-15 11:27:38 -07001882 spin_lock(&ha->vport_slock);
Arun Easifeafb7b2010-09-03 14:57:00 -07001883
Dan Carpenter542bce12010-10-15 11:27:38 -07001884 spin_unlock(&ha->vport_slock);
Arun Easifeafb7b2010-09-03 14:57:00 -07001885
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001886 ha->tgt.atio_ring_ptr = ha->tgt.atio_ring;
1887 ha->tgt.atio_ring_index = 0;
1888 /* Initialize ATIO queue entries */
1889 qlt_init_atio_q_entries(vha);
1890
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001891 ha->isp_ops->config_rings(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1894
1895 /* Update any ISP specific firmware options before initialization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001896 ha->isp_ops->update_fw_options(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001898 ql_dbg(ql_dbg_init, vha, 0x00d1, "Issue init firmware.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001899
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001900 if (ha->flags.npiv_supported) {
1901 if (ha->operating_mode == LOOP)
1902 ha->max_npiv_vports = MIN_MULTI_ID_FABRIC - 1;
Seokmann Juc48339d2008-01-17 09:02:19 -08001903 mid_init_cb->count = cpu_to_le16(ha->max_npiv_vports);
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001904 }
1905
Andrew Vasquez24a08132009-03-24 09:08:16 -07001906 if (IS_FWI2_CAPABLE(ha)) {
1907 mid_init_cb->options = __constant_cpu_to_le16(BIT_1);
1908 mid_init_cb->init_cb.execution_throttle =
1909 cpu_to_le16(ha->fw_xcb_count);
1910 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001911
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001912 rval = qla2x00_init_firmware(vha, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001914 ql_log(ql_log_fatal, vha, 0x00d2,
1915 "Init Firmware **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001917 ql_dbg(ql_dbg_init, vha, 0x00d3,
1918 "Init Firmware -- success.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 }
1920
1921 return (rval);
1922}
1923
1924/**
1925 * qla2x00_fw_ready() - Waits for firmware ready.
1926 * @ha: HA context
1927 *
1928 * Returns 0 on success.
1929 */
1930static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001931qla2x00_fw_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
1933 int rval;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001934 unsigned long wtime, mtime, cs84xx_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 uint16_t min_wait; /* Minimum wait time if loop is down */
1936 uint16_t wait_time; /* Wait time if loop is coming ready */
Andrew Vasquez656e8912009-06-03 09:55:29 -07001937 uint16_t state[5];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001938 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 rval = QLA_SUCCESS;
1941
1942 /* 20 seconds for loop down. */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001943 min_wait = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 /*
1946 * Firmware should take at most one RATOV to login, plus 5 seconds for
1947 * our own processing.
1948 */
1949 if ((wait_time = (ha->retry_count*ha->login_timeout) + 5) < min_wait) {
1950 wait_time = min_wait;
1951 }
1952
1953 /* Min wait time if loop down */
1954 mtime = jiffies + (min_wait * HZ);
1955
1956 /* wait time before firmware ready */
1957 wtime = jiffies + (wait_time * HZ);
1958
1959 /* Wait for ISP to finish LIP */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001960 if (!vha->flags.init_done)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001961 ql_log(ql_log_info, vha, 0x801e,
1962 "Waiting for LIP to complete.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001965 rval = qla2x00_get_firmware_state(vha, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (rval == QLA_SUCCESS) {
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001967 if (state[0] < FSTATE_LOSS_OF_SYNC) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001968 vha->device_flags &= ~DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001970 if (IS_QLA84XX(ha) && state[0] != FSTATE_READY) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001971 ql_dbg(ql_dbg_taskm, vha, 0x801f,
1972 "fw_state=%x 84xx=%x.\n", state[0],
1973 state[2]);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001974 if ((state[2] & FSTATE_LOGGED_IN) &&
1975 (state[2] & FSTATE_WAITING_FOR_VERIFY)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001976 ql_dbg(ql_dbg_taskm, vha, 0x8028,
1977 "Sending verify iocb.\n");
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001978
1979 cs84xx_time = jiffies;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001980 rval = qla84xx_init_chip(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001981 if (rval != QLA_SUCCESS) {
1982 ql_log(ql_log_warn,
Chad Dupuiscfb09192011-11-18 09:03:07 -08001983 vha, 0x8007,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001984 "Init chip failed.\n");
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001985 break;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001986 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001987
1988 /* Add time taken to initialize. */
1989 cs84xx_time = jiffies - cs84xx_time;
1990 wtime += cs84xx_time;
1991 mtime += cs84xx_time;
Chad Dupuiscfb09192011-11-18 09:03:07 -08001992 ql_dbg(ql_dbg_taskm, vha, 0x8008,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001993 "Increasing wait time by %ld. "
1994 "New time %ld.\n", cs84xx_time,
1995 wtime);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001996 }
1997 } else if (state[0] == FSTATE_READY) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001998 ql_dbg(ql_dbg_taskm, vha, 0x8037,
1999 "F/W Ready - OK.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002001 qla2x00_get_retry_cnt(vha, &ha->retry_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 &ha->login_timeout, &ha->r_a_tov);
2003
2004 rval = QLA_SUCCESS;
2005 break;
2006 }
2007
2008 rval = QLA_FUNCTION_FAILED;
2009
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002010 if (atomic_read(&vha->loop_down_timer) &&
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002011 state[0] != FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /* Loop down. Timeout on min_wait for states
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002013 * other than Wait for Login.
2014 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 if (time_after_eq(jiffies, mtime)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002016 ql_log(ql_log_info, vha, 0x8038,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 "Cable is unplugged...\n");
2018
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002019 vha->device_flags |= DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 break;
2021 }
2022 }
2023 } else {
2024 /* Mailbox cmd failed. Timeout on min_wait. */
Santosh Vernekarcdbb0a4f2010-05-28 15:08:25 -07002025 if (time_after_eq(jiffies, mtime) ||
Giridhar Malavali71905752011-02-23 15:27:10 -08002026 ha->flags.isp82xx_fw_hung)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 break;
2028 }
2029
2030 if (time_after_eq(jiffies, wtime))
2031 break;
2032
2033 /* Delay for a while */
2034 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 } while (1);
2036
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002037 ql_dbg(ql_dbg_taskm, vha, 0x803a,
2038 "fw_state=%x (%x, %x, %x, %x) " "curr time=%lx.\n", state[0],
2039 state[1], state[2], state[3], state[4], jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Chad Dupuiscfb09192011-11-18 09:03:07 -08002041 if (rval && !(vha->device_flags & DFLG_NO_CABLE)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002042 ql_log(ql_log_warn, vha, 0x803b,
2043 "Firmware ready **** FAILED ****.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 }
2045
2046 return (rval);
2047}
2048
2049/*
2050* qla2x00_configure_hba
2051* Setup adapter context.
2052*
2053* Input:
2054* ha = adapter state pointer.
2055*
2056* Returns:
2057* 0 = success
2058*
2059* Context:
2060* Kernel context.
2061*/
2062static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002063qla2x00_configure_hba(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
2065 int rval;
2066 uint16_t loop_id;
2067 uint16_t topo;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002068 uint16_t sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 uint8_t al_pa;
2070 uint8_t area;
2071 uint8_t domain;
2072 char connect_type[22];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002073 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075 /* Get host addresses. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002076 rval = qla2x00_get_adapter_id(vha,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002077 &loop_id, &al_pa, &area, &domain, &topo, &sw_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002079 if (LOOP_TRANSITION(vha) || atomic_read(&ha->loop_down_timer) ||
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002080 IS_CNA_CAPABLE(ha) ||
Ravi Anand33135aa2005-11-08 14:37:20 -08002081 (rval == QLA_COMMAND_ERROR && loop_id == 0x7)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002082 ql_dbg(ql_dbg_disc, vha, 0x2008,
2083 "Loop is in a transition state.\n");
Ravi Anand33135aa2005-11-08 14:37:20 -08002084 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002085 ql_log(ql_log_warn, vha, 0x2009,
2086 "Unable to get host loop ID.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002087 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Ravi Anand33135aa2005-11-08 14:37:20 -08002088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 return (rval);
2090 }
2091
2092 if (topo == 4) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002093 ql_log(ql_log_info, vha, 0x200a,
2094 "Cannot get topology - retrying.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 return (QLA_FUNCTION_FAILED);
2096 }
2097
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002098 vha->loop_id = loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 /* initialize */
2101 ha->min_external_loopid = SNS_FIRST_LOOP_ID;
2102 ha->operating_mode = LOOP;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002103 ha->switch_cap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 switch (topo) {
2106 case 0:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002107 ql_dbg(ql_dbg_disc, vha, 0x200b, "HBA in NL topology.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 ha->current_topology = ISP_CFG_NL;
2109 strcpy(connect_type, "(Loop)");
2110 break;
2111
2112 case 1:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002113 ql_dbg(ql_dbg_disc, vha, 0x200c, "HBA in FL topology.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002114 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 ha->current_topology = ISP_CFG_FL;
2116 strcpy(connect_type, "(FL_Port)");
2117 break;
2118
2119 case 2:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002120 ql_dbg(ql_dbg_disc, vha, 0x200d, "HBA in N P2P topology.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 ha->operating_mode = P2P;
2122 ha->current_topology = ISP_CFG_N;
2123 strcpy(connect_type, "(N_Port-to-N_Port)");
2124 break;
2125
2126 case 3:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002127 ql_dbg(ql_dbg_disc, vha, 0x200e, "HBA in F P2P topology.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002128 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 ha->operating_mode = P2P;
2130 ha->current_topology = ISP_CFG_F;
2131 strcpy(connect_type, "(F_Port)");
2132 break;
2133
2134 default:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002135 ql_dbg(ql_dbg_disc, vha, 0x200f,
2136 "HBA in unknown topology %x, using NL.\n", topo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 ha->current_topology = ISP_CFG_NL;
2138 strcpy(connect_type, "(Loop)");
2139 break;
2140 }
2141
2142 /* Save Host port and loop ID. */
2143 /* byte order - Big Endian */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002144 vha->d_id.b.domain = domain;
2145 vha->d_id.b.area = area;
2146 vha->d_id.b.al_pa = al_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002148 spin_lock(&ha->vport_slock);
2149 qlt_update_vp_map(vha, SET_AL_PA);
2150 spin_unlock(&ha->vport_slock);
2151
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002152 if (!vha->flags.init_done)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002153 ql_log(ql_log_info, vha, 0x2010,
2154 "Topology - %s, Host Loop address 0x%x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002155 connect_type, vha->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002158 ql_log(ql_log_warn, vha, 0x2011,
2159 "%s FAILED\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002161 ql_dbg(ql_dbg_disc, vha, 0x2012,
2162 "%s success\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 }
2164
2165 return(rval);
2166}
2167
Giridhar Malavalia9083012010-04-12 17:59:55 -07002168inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002169qla2x00_set_model_info(scsi_qla_host_t *vha, uint8_t *model, size_t len,
2170 char *def)
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002171{
2172 char *st, *en;
2173 uint16_t index;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002174 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezab671142009-08-25 11:36:17 -07002175 int use_tbl = !IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002176 !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002177
2178 if (memcmp(model, BINZERO, len) != 0) {
2179 strncpy(ha->model_number, model, len);
2180 st = en = ha->model_number;
2181 en += len - 1;
2182 while (en > st) {
2183 if (*en != 0x20 && *en != 0x00)
2184 break;
2185 *en-- = '\0';
2186 }
2187
2188 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002189 if (use_tbl &&
2190 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002191 index < QLA_MODEL_NAMES)
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002192 strncpy(ha->model_desc,
2193 qla2x00_model_name[index * 2 + 1],
2194 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002195 } else {
2196 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002197 if (use_tbl &&
2198 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002199 index < QLA_MODEL_NAMES) {
2200 strcpy(ha->model_number,
2201 qla2x00_model_name[index * 2]);
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002202 strncpy(ha->model_desc,
2203 qla2x00_model_name[index * 2 + 1],
2204 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002205 } else {
2206 strcpy(ha->model_number, def);
2207 }
2208 }
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002209 if (IS_FWI2_CAPABLE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002210 qla2xxx_get_vpd_field(vha, "\x82", ha->model_desc,
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002211 sizeof(ha->model_desc));
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002212}
2213
David Miller4e08df32007-04-16 12:37:43 -07002214/* On sparc systems, obtain port and node WWN from firmware
2215 * properties.
2216 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002217static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t *vha, nvram_t *nv)
David Miller4e08df32007-04-16 12:37:43 -07002218{
2219#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002220 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07002221 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07002222 struct device_node *dp = pci_device_to_OF_node(pdev);
2223 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07002224 int len;
2225
2226 val = of_get_property(dp, "port-wwn", &len);
2227 if (val && len >= WWN_SIZE)
2228 memcpy(nv->port_name, val, WWN_SIZE);
2229
2230 val = of_get_property(dp, "node-wwn", &len);
2231 if (val && len >= WWN_SIZE)
2232 memcpy(nv->node_name, val, WWN_SIZE);
2233#endif
2234}
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236/*
2237* NVRAM configuration for ISP 2xxx
2238*
2239* Input:
2240* ha = adapter block pointer.
2241*
2242* Output:
2243* initialization control block in response_ring
2244* host adapters parameters in host adapter block
2245*
2246* Returns:
2247* 0 = success.
2248*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002249int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002250qla2x00_nvram_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
David Miller4e08df32007-04-16 12:37:43 -07002252 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002253 uint8_t chksum = 0;
2254 uint16_t cnt;
2255 uint8_t *dptr1, *dptr2;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002256 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002257 init_cb_t *icb = ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07002258 nvram_t *nv = ha->nvram;
2259 uint8_t *ptr = ha->nvram;
Andrew Vasquez3d716442005-07-06 10:30:26 -07002260 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
David Miller4e08df32007-04-16 12:37:43 -07002262 rval = QLA_SUCCESS;
2263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 /* Determine NVRAM starting address. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002265 ha->nvram_size = sizeof(nvram_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 ha->nvram_base = 0;
2267 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha))
2268 if ((RD_REG_WORD(&reg->ctrl_status) >> 14) == 1)
2269 ha->nvram_base = 0x80;
2270
2271 /* Get NVRAM data and calculate checksum. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002272 ha->isp_ops->read_nvram(vha, ptr, ha->nvram_base, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002273 for (cnt = 0, chksum = 0; cnt < ha->nvram_size; cnt++)
2274 chksum += *ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002276 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x010f,
2277 "Contents of NVRAM.\n");
2278 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0110,
2279 (uint8_t *)nv, ha->nvram_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 /* Bad NVRAM data, set defaults parameters. */
2282 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' ||
2283 nv->id[2] != 'P' || nv->id[3] != ' ' || nv->nvram_version < 1) {
2284 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002285 ql_log(ql_log_warn, vha, 0x0064,
Raul Porcel9e336522012-05-15 14:34:08 -04002286 "Inconsistent NVRAM "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002287 "detected: checksum=0x%x id=%c version=0x%x.\n",
2288 chksum, nv->id[0], nv->nvram_version);
2289 ql_log(ql_log_warn, vha, 0x0065,
2290 "Falling back to "
2291 "functioning (yet invalid -- WWPN) defaults.\n");
David Miller4e08df32007-04-16 12:37:43 -07002292
2293 /*
2294 * Set default initialization control block.
2295 */
2296 memset(nv, 0, ha->nvram_size);
2297 nv->parameter_block_version = ICB_VERSION;
2298
2299 if (IS_QLA23XX(ha)) {
2300 nv->firmware_options[0] = BIT_2 | BIT_1;
2301 nv->firmware_options[1] = BIT_7 | BIT_5;
2302 nv->add_firmware_options[0] = BIT_5;
2303 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2304 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2305 nv->special_options[1] = BIT_7;
2306 } else if (IS_QLA2200(ha)) {
2307 nv->firmware_options[0] = BIT_2 | BIT_1;
2308 nv->firmware_options[1] = BIT_7 | BIT_5;
2309 nv->add_firmware_options[0] = BIT_5;
2310 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2311 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2312 } else if (IS_QLA2100(ha)) {
2313 nv->firmware_options[0] = BIT_3 | BIT_1;
2314 nv->firmware_options[1] = BIT_5;
2315 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2316 }
2317
2318 nv->max_iocb_allocation = __constant_cpu_to_le16(256);
2319 nv->execution_throttle = __constant_cpu_to_le16(16);
2320 nv->retry_count = 8;
2321 nv->retry_delay = 1;
2322
2323 nv->port_name[0] = 33;
2324 nv->port_name[3] = 224;
2325 nv->port_name[4] = 139;
2326
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002327 qla2xxx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07002328
2329 nv->login_timeout = 4;
2330
2331 /*
2332 * Set default host adapter parameters
2333 */
2334 nv->host_p[1] = BIT_2;
2335 nv->reset_delay = 5;
2336 nv->port_down_retry_count = 8;
2337 nv->max_luns_per_target = __constant_cpu_to_le16(8);
2338 nv->link_down_timeout = 60;
2339
2340 rval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 }
2342
2343#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
2344 /*
2345 * The SN2 does not provide BIOS emulation which means you can't change
2346 * potentially bogus BIOS settings. Force the use of default settings
2347 * for link rate and frame size. Hope that the rest of the settings
2348 * are valid.
2349 */
2350 if (ia64_platform_is("sn2")) {
2351 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2352 if (IS_QLA23XX(ha))
2353 nv->special_options[1] = BIT_7;
2354 }
2355#endif
2356
2357 /* Reset Initialization control block */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002358 memset(icb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 /*
2361 * Setup driver NVRAM options.
2362 */
2363 nv->firmware_options[0] |= (BIT_6 | BIT_1);
2364 nv->firmware_options[0] &= ~(BIT_5 | BIT_4);
2365 nv->firmware_options[1] |= (BIT_5 | BIT_0);
2366 nv->firmware_options[1] &= ~BIT_4;
2367
2368 if (IS_QLA23XX(ha)) {
2369 nv->firmware_options[0] |= BIT_2;
2370 nv->firmware_options[0] &= ~BIT_3;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002371 nv->special_options[0] &= ~BIT_6;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002372 nv->add_firmware_options[1] |= BIT_5 | BIT_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
2374 if (IS_QLA2300(ha)) {
2375 if (ha->fb_rev == FPM_2310) {
2376 strcpy(ha->model_number, "QLA2310");
2377 } else {
2378 strcpy(ha->model_number, "QLA2300");
2379 }
2380 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002381 qla2x00_set_model_info(vha, nv->model_number,
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002382 sizeof(nv->model_number), "QLA23xx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
2384 } else if (IS_QLA2200(ha)) {
2385 nv->firmware_options[0] |= BIT_2;
2386 /*
2387 * 'Point-to-point preferred, else loop' is not a safe
2388 * connection mode setting.
2389 */
2390 if ((nv->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) ==
2391 (BIT_5 | BIT_4)) {
2392 /* Force 'loop preferred, else point-to-point'. */
2393 nv->add_firmware_options[0] &= ~(BIT_6 | BIT_5 | BIT_4);
2394 nv->add_firmware_options[0] |= BIT_5;
2395 }
2396 strcpy(ha->model_number, "QLA22xx");
2397 } else /*if (IS_QLA2100(ha))*/ {
2398 strcpy(ha->model_number, "QLA2100");
2399 }
2400
2401 /*
2402 * Copy over NVRAM RISC parameter block to initialization control block.
2403 */
2404 dptr1 = (uint8_t *)icb;
2405 dptr2 = (uint8_t *)&nv->parameter_block_version;
2406 cnt = (uint8_t *)&icb->request_q_outpointer - (uint8_t *)&icb->version;
2407 while (cnt--)
2408 *dptr1++ = *dptr2++;
2409
2410 /* Copy 2nd half. */
2411 dptr1 = (uint8_t *)icb->add_firmware_options;
2412 cnt = (uint8_t *)icb->reserved_3 - (uint8_t *)icb->add_firmware_options;
2413 while (cnt--)
2414 *dptr1++ = *dptr2++;
2415
Andrew Vasquez5341e862006-05-17 15:09:16 -07002416 /* Use alternate WWN? */
2417 if (nv->host_p[1] & BIT_7) {
2418 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
2419 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
2420 }
2421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 /* Prepare nodename */
2423 if ((icb->firmware_options[1] & BIT_6) == 0) {
2424 /*
2425 * Firmware will apply the following mask if the nodename was
2426 * not provided.
2427 */
2428 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
2429 icb->node_name[0] &= 0xF0;
2430 }
2431
2432 /*
2433 * Set host adapter parameters.
2434 */
Saurav Kashyap3ce88662011-07-14 12:00:12 -07002435
2436 /*
2437 * BIT_7 in the host-parameters section allows for modification to
2438 * internal driver logging.
2439 */
Andrew Vasquez01819442006-06-23 16:11:10 -07002440 if (nv->host_p[0] & BIT_7)
Chad Dupuiscfb09192011-11-18 09:03:07 -08002441 ql2xextended_error_logging = QL_DBG_DEFAULT1_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 ha->flags.disable_risc_code_load = ((nv->host_p[0] & BIT_4) ? 1 : 0);
2443 /* Always load RISC code on non ISP2[12]00 chips. */
2444 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
2445 ha->flags.disable_risc_code_load = 0;
2446 ha->flags.enable_lip_reset = ((nv->host_p[1] & BIT_1) ? 1 : 0);
2447 ha->flags.enable_lip_full_login = ((nv->host_p[1] & BIT_2) ? 1 : 0);
2448 ha->flags.enable_target_reset = ((nv->host_p[1] & BIT_3) ? 1 : 0);
Andrew Vasquez06c22bd2005-08-26 19:09:00 -07002449 ha->flags.enable_led_scheme = (nv->special_options[1] & BIT_4) ? 1 : 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07002450 ha->flags.disable_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
2452 ha->operating_mode =
2453 (icb->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) >> 4;
2454
2455 memcpy(ha->fw_seriallink_options, nv->seriallink_options,
2456 sizeof(ha->fw_seriallink_options));
2457
2458 /* save HBA serial number */
2459 ha->serial0 = icb->port_name[5];
2460 ha->serial1 = icb->port_name[6];
2461 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002462 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
2463 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
2466
2467 ha->retry_count = nv->retry_count;
2468
2469 /* Set minimum login_timeout to 4 seconds. */
Andrew Vasquez5b914902010-05-28 15:08:30 -07002470 if (nv->login_timeout != ql2xlogintimeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 nv->login_timeout = ql2xlogintimeout;
2472 if (nv->login_timeout < 4)
2473 nv->login_timeout = 4;
2474 ha->login_timeout = nv->login_timeout;
2475 icb->login_timeout = nv->login_timeout;
2476
Andrew Vasquez00a537b2008-02-28 14:06:11 -08002477 /* Set minimum RATOV to 100 tenths of a second. */
2478 ha->r_a_tov = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 ha->loop_reset_delay = nv->reset_delay;
2481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 /* Link Down Timeout = 0:
2483 *
2484 * When Port Down timer expires we will start returning
2485 * I/O's to OS with "DID_NO_CONNECT".
2486 *
2487 * Link Down Timeout != 0:
2488 *
2489 * The driver waits for the link to come up after link down
2490 * before returning I/Os to OS with "DID_NO_CONNECT".
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002491 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 if (nv->link_down_timeout == 0) {
2493 ha->loop_down_abort_time =
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002494 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 } else {
2496 ha->link_down_timeout = nv->link_down_timeout;
2497 ha->loop_down_abort_time =
2498 (LOOP_DOWN_TIME - ha->link_down_timeout);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 /*
2502 * Need enough time to try and get the port back.
2503 */
2504 ha->port_down_retry_count = nv->port_down_retry_count;
2505 if (qlport_down_retry)
2506 ha->port_down_retry_count = qlport_down_retry;
2507 /* Set login_retry_count */
2508 ha->login_retry_count = nv->retry_count;
2509 if (ha->port_down_retry_count == nv->port_down_retry_count &&
2510 ha->port_down_retry_count > 3)
2511 ha->login_retry_count = ha->port_down_retry_count;
2512 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
2513 ha->login_retry_count = ha->port_down_retry_count;
2514 if (ql2xloginretrycount)
2515 ha->login_retry_count = ql2xloginretrycount;
2516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 icb->lun_enables = __constant_cpu_to_le16(0);
2518 icb->command_resource_count = 0;
2519 icb->immediate_notify_resource_count = 0;
2520 icb->timeout = __constant_cpu_to_le16(0);
2521
2522 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2523 /* Enable RIO */
2524 icb->firmware_options[0] &= ~BIT_3;
2525 icb->add_firmware_options[0] &=
2526 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
2527 icb->add_firmware_options[0] |= BIT_2;
2528 icb->response_accumulation_timer = 3;
2529 icb->interrupt_delay_timer = 5;
2530
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002531 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 } else {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002533 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002534 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002535 ha->zio_mode = icb->add_firmware_options[0] &
2536 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
2537 ha->zio_timer = icb->interrupt_delay_timer ?
2538 icb->interrupt_delay_timer: 2;
2539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 icb->add_firmware_options[0] &=
2541 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002542 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002543 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08002544 ha->zio_mode = QLA_ZIO_MODE_6;
2545
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002546 ql_log(ql_log_info, vha, 0x0068,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002547 "ZIO mode %d enabled; timer delay (%d us).\n",
2548 ha->zio_mode, ha->zio_timer * 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002550 icb->add_firmware_options[0] |= (uint8_t)ha->zio_mode;
2551 icb->interrupt_delay_timer = (uint8_t)ha->zio_timer;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002552 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 }
2554 }
2555
David Miller4e08df32007-04-16 12:37:43 -07002556 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002557 ql_log(ql_log_warn, vha, 0x0069,
2558 "NVRAM configuration failed.\n");
David Miller4e08df32007-04-16 12:37:43 -07002559 }
2560 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561}
2562
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002563static void
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002564qla2x00_rport_del(void *data)
2565{
2566 fc_port_t *fcport = data;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002567 struct fc_rport *rport;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002568 scsi_qla_host_t *vha = fcport->vha;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002569 unsigned long flags;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002570
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002571 spin_lock_irqsave(fcport->vha->host->host_lock, flags);
Andrew Vasquezac280b62009-08-20 11:06:05 -07002572 rport = fcport->drport ? fcport->drport: fcport->rport;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002573 fcport->drport = NULL;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002574 spin_unlock_irqrestore(fcport->vha->host->host_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002575 if (rport) {
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002576 fc_remote_port_delete(rport);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002577 /*
2578 * Release the target mode FC NEXUS in qla_target.c code
2579 * if target mod is enabled.
2580 */
2581 qlt_fc_port_deleted(vha, fcport);
2582 }
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002583}
2584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585/**
2586 * qla2x00_alloc_fcport() - Allocate a generic fcport.
2587 * @ha: HA context
2588 * @flags: allocation flags
2589 *
2590 * Returns a pointer to the allocated fcport, or NULL, if none available.
2591 */
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002592fc_port_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002593qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
2595 fc_port_t *fcport;
2596
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002597 fcport = kzalloc(sizeof(fc_port_t), flags);
2598 if (!fcport)
2599 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
2601 /* Setup fcport template structure. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002602 fcport->vha = vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 fcport->port_type = FCT_UNKNOWN;
2604 fcport->loop_id = FC_NO_LOOP_ID;
Chad Dupuisec426e12011-03-30 11:46:32 -07002605 qla2x00_set_fcport_state(fcport, FCS_UNCONFIGURED);
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002606 fcport->supported_classes = FC_COS_UNSPECIFIED;
Joe Carnuccioc0822b62012-05-15 14:34:21 -04002607 fcport->scan_state = QLA_FCPORT_SCAN_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002609 return fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610}
2611
2612/*
2613 * qla2x00_configure_loop
2614 * Updates Fibre Channel Device Database with what is actually on loop.
2615 *
2616 * Input:
2617 * ha = adapter block pointer.
2618 *
2619 * Returns:
2620 * 0 = success.
2621 * 1 = error.
2622 * 2 = database was full and device was not configured.
2623 */
2624static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002625qla2x00_configure_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626{
2627 int rval;
2628 unsigned long flags, save_flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002629 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 rval = QLA_SUCCESS;
2631
2632 /* Get Initiator ID */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002633 if (test_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags)) {
2634 rval = qla2x00_configure_hba(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002636 ql_dbg(ql_dbg_disc, vha, 0x2013,
2637 "Unable to configure HBA.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 return (rval);
2639 }
2640 }
2641
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002642 save_flags = flags = vha->dpc_flags;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002643 ql_dbg(ql_dbg_disc, vha, 0x2014,
2644 "Configure loop -- dpc flags = 0x%lx.\n", flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
2646 /*
2647 * If we have both an RSCN and PORT UPDATE pending then handle them
2648 * both at the same time.
2649 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002650 clear_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2651 clear_bit(RSCN_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
Michael Hernandez3064ff32009-12-15 21:29:44 -08002653 qla2x00_get_data_rate(vha);
2654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 /* Determine what we need to do */
2656 if (ha->current_topology == ISP_CFG_FL &&
2657 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2658
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 set_bit(RSCN_UPDATE, &flags);
2660
2661 } else if (ha->current_topology == ISP_CFG_F &&
2662 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 set_bit(RSCN_UPDATE, &flags);
2665 clear_bit(LOCAL_LOOP_UPDATE, &flags);
2666
Andrew Vasquez21333b42006-05-17 15:09:56 -07002667 } else if (ha->current_topology == ISP_CFG_N) {
2668 clear_bit(RSCN_UPDATE, &flags);
2669
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002670 } else if (!vha->flags.online ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 (test_bit(ABORT_ISP_ACTIVE, &flags))) {
2672
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 set_bit(RSCN_UPDATE, &flags);
2674 set_bit(LOCAL_LOOP_UPDATE, &flags);
2675 }
2676
2677 if (test_bit(LOCAL_LOOP_UPDATE, &flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002678 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
2679 ql_dbg(ql_dbg_disc, vha, 0x2015,
2680 "Loop resync needed, failing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 rval = QLA_FUNCTION_FAILED;
Chad Dupuis642ef982012-02-09 11:15:57 -08002682 } else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002683 rval = qla2x00_configure_local_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 }
2685
2686 if (rval == QLA_SUCCESS && test_bit(RSCN_UPDATE, &flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002687 if (LOOP_TRANSITION(vha)) {
2688 ql_dbg(ql_dbg_disc, vha, 0x201e,
2689 "Needs RSCN update and loop transition.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 rval = QLA_FUNCTION_FAILED;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002691 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002692 else
2693 rval = qla2x00_configure_fabric(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 }
2695
2696 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002697 if (atomic_read(&vha->loop_down_timer) ||
2698 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 rval = QLA_FUNCTION_FAILED;
2700 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002701 atomic_set(&vha->loop_state, LOOP_READY);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002702 ql_dbg(ql_dbg_disc, vha, 0x2069,
2703 "LOOP READY.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 }
2705 }
2706
2707 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002708 ql_dbg(ql_dbg_disc, vha, 0x206a,
2709 "%s *** FAILED ***.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 } else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002711 ql_dbg(ql_dbg_disc, vha, 0x206b,
2712 "%s: exiting normally.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 }
2714
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -07002715 /* Restore state if a resync event occurred during processing */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002716 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 if (test_bit(LOCAL_LOOP_UPDATE, &save_flags))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002718 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002719 if (test_bit(RSCN_UPDATE, &save_flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002720 set_bit(RSCN_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 }
2723
2724 return (rval);
2725}
2726
2727
2728
2729/*
2730 * qla2x00_configure_local_loop
2731 * Updates Fibre Channel Device Database with local loop devices.
2732 *
2733 * Input:
2734 * ha = adapter block pointer.
2735 *
2736 * Returns:
2737 * 0 = success.
2738 */
2739static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002740qla2x00_configure_local_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741{
2742 int rval, rval2;
2743 int found_devs;
2744 int found;
2745 fc_port_t *fcport, *new_fcport;
2746
2747 uint16_t index;
2748 uint16_t entries;
2749 char *id_iter;
2750 uint16_t loop_id;
2751 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002752 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
2754 found_devs = 0;
2755 new_fcport = NULL;
Chad Dupuis642ef982012-02-09 11:15:57 -08002756 entries = MAX_FIBRE_DEVICES_LOOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002758 ql_dbg(ql_dbg_disc, vha, 0x2016,
2759 "Getting FCAL position map.\n");
2760 if (ql2xextended_error_logging & ql_dbg_disc)
2761 qla2x00_get_fcal_position_map(vha, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763 /* Get list of logged in devices. */
Chad Dupuis642ef982012-02-09 11:15:57 -08002764 memset(ha->gid_list, 0, qla2x00_gid_list_size(ha));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002765 rval = qla2x00_get_id_list(vha, ha->gid_list, ha->gid_list_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 &entries);
2767 if (rval != QLA_SUCCESS)
2768 goto cleanup_allocation;
2769
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002770 ql_dbg(ql_dbg_disc, vha, 0x2017,
2771 "Entries in ID list (%d).\n", entries);
2772 ql_dump_buffer(ql_dbg_disc + ql_dbg_buffer, vha, 0x2075,
2773 (uint8_t *)ha->gid_list,
2774 entries * sizeof(struct gid_list_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
2776 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002777 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002779 ql_log(ql_log_warn, vha, 0x2018,
2780 "Memory allocation failed for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 rval = QLA_MEMORY_ALLOC_FAILED;
2782 goto cleanup_allocation;
2783 }
2784 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2785
2786 /*
2787 * Mark local devices that were present with FCF_DEVICE_LOST for now.
2788 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002789 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 if (atomic_read(&fcport->state) == FCS_ONLINE &&
2791 fcport->port_type != FCT_BROADCAST &&
2792 (fcport->flags & FCF_FABRIC_DEVICE) == 0) {
2793
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002794 ql_dbg(ql_dbg_disc, vha, 0x2019,
2795 "Marking port lost loop_id=0x%04x.\n",
2796 fcport->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Chad Dupuisec426e12011-03-30 11:46:32 -07002798 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 }
2800 }
2801
2802 /* Add devices to port list. */
2803 id_iter = (char *)ha->gid_list;
2804 for (index = 0; index < entries; index++) {
2805 domain = ((struct gid_list_info *)id_iter)->domain;
2806 area = ((struct gid_list_info *)id_iter)->area;
2807 al_pa = ((struct gid_list_info *)id_iter)->al_pa;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002808 if (IS_QLA2100(ha) || IS_QLA2200(ha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 loop_id = (uint16_t)
2810 ((struct gid_list_info *)id_iter)->loop_id_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002811 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 loop_id = le16_to_cpu(
2813 ((struct gid_list_info *)id_iter)->loop_id);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002814 id_iter += ha->gid_list_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
2816 /* Bypass reserved domain fields. */
2817 if ((domain & 0xf0) == 0xf0)
2818 continue;
2819
2820 /* Bypass if not same domain and area of adapter. */
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07002821 if (area && domain &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002822 (area != vha->d_id.b.area || domain != vha->d_id.b.domain))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 continue;
2824
2825 /* Bypass invalid local loop ID. */
2826 if (loop_id > LAST_LOCAL_LOOP_ID)
2827 continue;
2828
Arun Easi370d5502012-08-22 14:21:10 -04002829 memset(new_fcport, 0, sizeof(fc_port_t));
2830
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 /* Fill in member data. */
2832 new_fcport->d_id.b.domain = domain;
2833 new_fcport->d_id.b.area = area;
2834 new_fcport->d_id.b.al_pa = al_pa;
2835 new_fcport->loop_id = loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002836 rval2 = qla2x00_get_port_database(vha, new_fcport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 if (rval2 != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002838 ql_dbg(ql_dbg_disc, vha, 0x201a,
2839 "Failed to retrieve fcport information "
2840 "-- get_port_database=%x, loop_id=0x%04x.\n",
2841 rval2, new_fcport->loop_id);
2842 ql_dbg(ql_dbg_disc, vha, 0x201b,
2843 "Scheduling resync.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002844 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 continue;
2846 }
2847
2848 /* Check for matching device in port list. */
2849 found = 0;
2850 fcport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002851 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 if (memcmp(new_fcport->port_name, fcport->port_name,
2853 WWN_SIZE))
2854 continue;
2855
Shyam Sundarddb9b122009-03-24 09:08:10 -07002856 fcport->flags &= ~FCF_FABRIC_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 fcport->loop_id = new_fcport->loop_id;
2858 fcport->port_type = new_fcport->port_type;
2859 fcport->d_id.b24 = new_fcport->d_id.b24;
2860 memcpy(fcport->node_name, new_fcport->node_name,
2861 WWN_SIZE);
2862
2863 found++;
2864 break;
2865 }
2866
2867 if (!found) {
2868 /* New device, add to fcports list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002869 list_add_tail(&new_fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
2871 /* Allocate a new replacement fcport. */
2872 fcport = new_fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002873 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002875 ql_log(ql_log_warn, vha, 0x201c,
2876 "Failed to allocate memory for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 rval = QLA_MEMORY_ALLOC_FAILED;
2878 goto cleanup_allocation;
2879 }
2880 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2881 }
2882
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002883 /* Base iIDMA settings on HBA port speed. */
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002884 fcport->fp_speed = ha->link_data_rate;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002885
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002886 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888 found_devs++;
2889 }
2890
2891cleanup_allocation:
Jesper Juhlc9475cb2005-11-07 01:01:26 -08002892 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
2894 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002895 ql_dbg(ql_dbg_disc, vha, 0x201d,
2896 "Configure local loop error exit: rval=%x.\n", rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 }
2898
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 return (rval);
2900}
2901
2902static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002903qla2x00_iidma_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002904{
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002905 char *link_speed;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002906 int rval;
Harish Zunjarrao1bb39542009-06-17 10:30:29 -07002907 uint16_t mb[4];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002908 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002909
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07002910 if (!IS_IIDMA_CAPABLE(ha))
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002911 return;
2912
Giridhar Malavalic9afb9a2010-09-03 15:20:48 -07002913 if (atomic_read(&fcport->state) != FCS_ONLINE)
2914 return;
2915
Andrew Vasquez39bd9622007-09-20 14:07:34 -07002916 if (fcport->fp_speed == PORT_SPEED_UNKNOWN ||
2917 fcport->fp_speed > ha->link_data_rate)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002918 return;
2919
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002920 rval = qla2x00_set_idma_speed(vha, fcport->loop_id, fcport->fp_speed,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002921 mb);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002922 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002923 ql_dbg(ql_dbg_disc, vha, 0x2004,
2924 "Unable to adjust iIDMA "
2925 "%02x%02x%02x%02x%02x%02x%02x%02x -- %04x %x %04x "
2926 "%04x.\n", fcport->port_name[0], fcport->port_name[1],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002927 fcport->port_name[2], fcport->port_name[3],
2928 fcport->port_name[4], fcport->port_name[5],
2929 fcport->port_name[6], fcport->port_name[7], rval,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002930 fcport->fp_speed, mb[0], mb[1]);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002931 } else {
Chad Dupuisdaae62a2012-05-15 14:34:23 -04002932 link_speed = qla2x00_get_link_speed_str(ha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002933 ql_dbg(ql_dbg_disc, vha, 0x2005,
2934 "iIDMA adjusted to %s GB/s "
2935 "on %02x%02x%02x%02x%02x%02x%02x%02x.\n", link_speed,
2936 fcport->port_name[0], fcport->port_name[1],
2937 fcport->port_name[2], fcport->port_name[3],
2938 fcport->port_name[4], fcport->port_name[5],
2939 fcport->port_name[6], fcport->port_name[7]);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002940 }
2941}
2942
Adrian Bunk23be3312006-11-24 02:46:01 +01002943static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002944qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport)
8482e1182005-04-17 15:04:54 -05002945{
2946 struct fc_rport_identifiers rport_ids;
bdf79622005-04-17 15:06:53 -05002947 struct fc_rport *rport;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002948 unsigned long flags;
8482e1182005-04-17 15:04:54 -05002949
Andrew Vasquezac280b62009-08-20 11:06:05 -07002950 qla2x00_rport_del(fcport);
8482e1182005-04-17 15:04:54 -05002951
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07002952 rport_ids.node_name = wwn_to_u64(fcport->node_name);
2953 rport_ids.port_name = wwn_to_u64(fcport->port_name);
8482e1182005-04-17 15:04:54 -05002954 rport_ids.port_id = fcport->d_id.b.domain << 16 |
2955 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
2956 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002957 fcport->rport = rport = fc_remote_port_add(vha->host, 0, &rport_ids);
Andrew Vasquez77d74142005-07-08 18:00:36 -07002958 if (!rport) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002959 ql_log(ql_log_warn, vha, 0x2006,
2960 "Unable to allocate fc remote port.\n");
Andrew Vasquez77d74142005-07-08 18:00:36 -07002961 return;
2962 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002963 /*
2964 * Create target mode FC NEXUS in qla_target.c if target mode is
2965 * enabled..
2966 */
2967 qlt_fc_port_added(vha, fcport);
2968
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002969 spin_lock_irqsave(fcport->vha->host->host_lock, flags);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002970 *((fc_port_t **)rport->dd_data) = fcport;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08002971 spin_unlock_irqrestore(fcport->vha->host->host_lock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002972
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002973 rport->supported_classes = fcport->supported_classes;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002974
2975 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
8482e1182005-04-17 15:04:54 -05002976 if (fcport->port_type == FCT_INITIATOR)
2977 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
2978 if (fcport->port_type == FCT_TARGET)
2979 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002980 fc_remote_port_rolechg(rport, rport_ids.roles);
8482e1182005-04-17 15:04:54 -05002981}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
2983/*
Adrian Bunk23be3312006-11-24 02:46:01 +01002984 * qla2x00_update_fcport
2985 * Updates device on list.
2986 *
2987 * Input:
2988 * ha = adapter block pointer.
2989 * fcport = port structure pointer.
2990 *
2991 * Return:
2992 * 0 - Success
2993 * BIT_0 - error
2994 *
2995 * Context:
2996 * Kernel context.
2997 */
2998void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002999qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Adrian Bunk23be3312006-11-24 02:46:01 +01003000{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003001 fcport->vha = vha;
Adrian Bunk23be3312006-11-24 02:46:01 +01003002 fcport->login_retry = 0;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003003 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
Adrian Bunk23be3312006-11-24 02:46:01 +01003004
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003005 qla2x00_iidma_fcport(vha, fcport);
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08003006 qla24xx_update_fcport_fcp_prio(vha, fcport);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003007 qla2x00_reg_remote_port(vha, fcport);
Chad Dupuisec426e12011-03-30 11:46:32 -07003008 qla2x00_set_fcport_state(fcport, FCS_ONLINE);
Adrian Bunk23be3312006-11-24 02:46:01 +01003009}
3010
3011/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 * qla2x00_configure_fabric
3013 * Setup SNS devices with loop ID's.
3014 *
3015 * Input:
3016 * ha = adapter block pointer.
3017 *
3018 * Returns:
3019 * 0 = success.
3020 * BIT_0 = error
3021 */
3022static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003023qla2x00_configure_fabric(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024{
Arun Easib3b02e62012-02-09 11:15:39 -08003025 int rval;
Joe Carnuccio4dc77c32012-05-15 14:34:24 -04003026 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 uint16_t next_loopid;
3028 uint16_t mb[MAILBOX_REGISTER_COUNT];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003029 uint16_t loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 LIST_HEAD(new_fcports);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003031 struct qla_hw_data *ha = vha->hw;
3032 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
3034 /* If FL port exists, then SNS is present */
Andrew Vasqueze4289242007-07-19 15:05:56 -07003035 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003036 loop_id = NPH_F_PORT;
3037 else
3038 loop_id = SNS_FL_PORT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003039 rval = qla2x00_get_port_name(vha, loop_id, vha->fabric_node_name, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003041 ql_dbg(ql_dbg_disc, vha, 0x201f,
3042 "MBX_GET_PORT_NAME failed, No FL Port.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003044 vha->device_flags &= ~SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 return (QLA_SUCCESS);
3046 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003047 vha->device_flags |= SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 do {
Andrew Vasquezcca53352005-08-26 19:08:30 -07003050 /* FDMI support. */
3051 if (ql2xfdmienable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003052 test_and_clear_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags))
3053 qla2x00_fdmi_register(vha);
Andrew Vasquezcca53352005-08-26 19:08:30 -07003054
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 /* Ensure we are logged into the SNS. */
Andrew Vasqueze4289242007-07-19 15:05:56 -07003056 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003057 loop_id = NPH_SNS;
3058 else
3059 loop_id = SIMPLE_NAME_SERVER;
Chad Dupuis0b91d112012-02-09 11:15:42 -08003060 rval = ha->isp_ops->fabric_login(vha, loop_id, 0xff, 0xff,
3061 0xfc, mb, BIT_1|BIT_0);
3062 if (rval != QLA_SUCCESS) {
3063 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Joe Carnuccio4dc77c32012-05-15 14:34:24 -04003064 break;
Chad Dupuis0b91d112012-02-09 11:15:42 -08003065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 if (mb[0] != MBS_COMMAND_COMPLETE) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003067 ql_dbg(ql_dbg_disc, vha, 0x2042,
3068 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x mb[2]=%x "
3069 "mb[6]=%x mb[7]=%x.\n", loop_id, mb[0], mb[1],
3070 mb[2], mb[6], mb[7]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 return (QLA_SUCCESS);
3072 }
3073
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003074 if (test_and_clear_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags)) {
3075 if (qla2x00_rft_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003077 ql_dbg(ql_dbg_disc, vha, 0x2045,
3078 "Register FC-4 TYPE failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003080 if (qla2x00_rff_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003082 ql_dbg(ql_dbg_disc, vha, 0x2049,
3083 "Register FC-4 Features failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003085 if (qla2x00_rnn_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003087 ql_dbg(ql_dbg_disc, vha, 0x204f,
3088 "Register Node Name failed.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003089 } else if (qla2x00_rsnn_nn(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 /* EMPTY */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003091 ql_dbg(ql_dbg_disc, vha, 0x2053,
3092 "Register Symobilic Node Name failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 }
3094 }
3095
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003096 rval = qla2x00_find_all_fabric_devs(vha, &new_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 if (rval != QLA_SUCCESS)
3098 break;
3099
Joe Carnuccio4dc77c32012-05-15 14:34:24 -04003100 /* Add new ports to existing port list */
3101 list_splice_tail_init(&new_fcports, &vha->vp_fcports);
3102
3103 /* Starting free loop ID. */
3104 next_loopid = ha->min_external_loopid;
3105
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003106 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3107 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 break;
3109
3110 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0)
3111 continue;
3112
Joe Carnuccio4dc77c32012-05-15 14:34:24 -04003113 /* Logout lost/gone fabric devices (non-FCP2) */
Joe Carnuccioc0822b62012-05-15 14:34:21 -04003114 if (fcport->scan_state != QLA_FCPORT_SCAN_FOUND &&
Arun Easib3b02e62012-02-09 11:15:39 -08003115 atomic_read(&fcport->state) == FCS_ONLINE) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003116 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003117 ql2xplogiabsentdevice, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003119 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 fcport->port_type != FCT_INITIATOR &&
3121 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003122 ha->isp_ops->fabric_logout(vha,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003123 fcport->loop_id,
3124 fcport->d_id.b.domain,
3125 fcport->d_id.b.area,
3126 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 }
Joe Carnuccioc0822b62012-05-15 14:34:21 -04003128 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 }
Joe Carnuccioc0822b62012-05-15 14:34:21 -04003130 fcport->scan_state = QLA_FCPORT_SCAN_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Joe Carnuccio4dc77c32012-05-15 14:34:24 -04003132 /* Login fabric devices that need a login */
3133 if ((fcport->flags & FCF_LOGIN_NEEDED) != 0 &&
3134 atomic_read(&vha->loop_down_timer) == 0) {
3135 if (fcport->loop_id == FC_NO_LOOP_ID) {
3136 fcport->loop_id = next_loopid;
3137 rval = qla2x00_find_new_loop_id(
3138 base_vha, fcport);
3139 if (rval != QLA_SUCCESS) {
3140 /* Ran out of IDs to use */
3141 continue;
3142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 }
3144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
bdf79622005-04-17 15:06:53 -05003146 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003147 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 }
3149 } while (0);
3150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003152 ql_dbg(ql_dbg_disc, vha, 0x2068,
3153 "Configure fabric error exit rval=%d.\n", rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 }
3155
3156 return (rval);
3157}
3158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159/*
3160 * qla2x00_find_all_fabric_devs
3161 *
3162 * Input:
3163 * ha = adapter block pointer.
3164 * dev = database device entry pointer.
3165 *
3166 * Returns:
3167 * 0 = success.
3168 *
3169 * Context:
3170 * Kernel context.
3171 */
3172static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003173qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha,
3174 struct list_head *new_fcports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175{
3176 int rval;
3177 uint16_t loop_id;
3178 fc_port_t *fcport, *new_fcport, *fcptemp;
3179 int found;
3180
3181 sw_info_t *swl;
3182 int swl_idx;
3183 int first_dev, last_dev;
Mike Waychison1516ef42010-05-04 15:01:31 -07003184 port_id_t wrap = {}, nxt_d_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003185 struct qla_hw_data *ha = vha->hw;
3186 struct scsi_qla_host *vp, *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003187 struct scsi_qla_host *tvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
3189 rval = QLA_SUCCESS;
3190
3191 /* Try GID_PT to get device list, else GAN. */
Andrew Vasquez7a677352012-02-09 11:15:56 -08003192 if (!ha->swl)
Chad Dupuis642ef982012-02-09 11:15:57 -08003193 ha->swl = kcalloc(ha->max_fibre_devices, sizeof(sw_info_t),
Andrew Vasquez7a677352012-02-09 11:15:56 -08003194 GFP_KERNEL);
3195 swl = ha->swl;
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02003196 if (!swl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 /*EMPTY*/
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003198 ql_dbg(ql_dbg_disc, vha, 0x2054,
3199 "GID_PT allocations failed, fallback on GA_NXT.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 } else {
Chad Dupuis642ef982012-02-09 11:15:57 -08003201 memset(swl, 0, ha->max_fibre_devices * sizeof(sw_info_t));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003202 if (qla2x00_gid_pt(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003204 } else if (qla2x00_gpn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003206 } else if (qla2x00_gnn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 swl = NULL;
Andrew Vasqueze5896bd2008-07-10 16:55:52 -07003208 } else if (ql2xiidmaenable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003209 qla2x00_gfpn_id(vha, swl) == QLA_SUCCESS) {
3210 qla2x00_gpsc(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 }
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003212
3213 /* If other queries succeeded probe for FC-4 type */
3214 if (swl)
3215 qla2x00_gff_id(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 }
3217 swl_idx = 0;
3218
3219 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003220 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003222 ql_log(ql_log_warn, vha, 0x205e,
3223 "Failed to allocate memory for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 return (QLA_MEMORY_ALLOC_FAILED);
3225 }
3226 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 /* Set start port ID scan at adapter ID. */
3228 first_dev = 1;
3229 last_dev = 0;
3230
3231 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003232 loop_id = ha->min_external_loopid;
3233 for (; loop_id <= ha->max_loop_id; loop_id++) {
3234 if (qla2x00_is_reserved_id(vha, loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 continue;
3236
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07003237 if (ha->current_topology == ISP_CFG_FL &&
3238 (atomic_read(&vha->loop_down_timer) ||
3239 LOOP_TRANSITION(vha))) {
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003240 atomic_set(&vha->loop_down_timer, 0);
3241 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
3242 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 break;
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
3246 if (swl != NULL) {
3247 if (last_dev) {
3248 wrap.b24 = new_fcport->d_id.b24;
3249 } else {
3250 new_fcport->d_id.b24 = swl[swl_idx].d_id.b24;
3251 memcpy(new_fcport->node_name,
3252 swl[swl_idx].node_name, WWN_SIZE);
3253 memcpy(new_fcport->port_name,
3254 swl[swl_idx].port_name, WWN_SIZE);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003255 memcpy(new_fcport->fabric_port_name,
3256 swl[swl_idx].fabric_port_name, WWN_SIZE);
3257 new_fcport->fp_speed = swl[swl_idx].fp_speed;
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003258 new_fcport->fc4_type = swl[swl_idx].fc4_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260 if (swl[swl_idx].d_id.b.rsvd_1 != 0) {
3261 last_dev = 1;
3262 }
3263 swl_idx++;
3264 }
3265 } else {
3266 /* Send GA_NXT to the switch */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003267 rval = qla2x00_ga_nxt(vha, new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003269 ql_log(ql_log_warn, vha, 0x2064,
3270 "SNS scan failed -- assuming "
3271 "zero-entry result.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 list_for_each_entry_safe(fcport, fcptemp,
3273 new_fcports, list) {
3274 list_del(&fcport->list);
3275 kfree(fcport);
3276 }
3277 rval = QLA_SUCCESS;
3278 break;
3279 }
3280 }
3281
3282 /* If wrap on switch device list, exit. */
3283 if (first_dev) {
3284 wrap.b24 = new_fcport->d_id.b24;
3285 first_dev = 0;
3286 } else if (new_fcport->d_id.b24 == wrap.b24) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003287 ql_dbg(ql_dbg_disc, vha, 0x2065,
3288 "Device wrap (%02x%02x%02x).\n",
3289 new_fcport->d_id.b.domain,
3290 new_fcport->d_id.b.area,
3291 new_fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 break;
3293 }
3294
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003295 /* Bypass if same physical adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003296 if (new_fcport->d_id.b24 == base_vha->d_id.b24)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 continue;
3298
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003299 /* Bypass virtual ports of the same host. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003300 found = 0;
3301 if (ha->num_vhosts) {
Arun Easifeafb7b2010-09-03 14:57:00 -07003302 unsigned long flags;
3303
3304 spin_lock_irqsave(&ha->vport_slock, flags);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003305 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003306 if (new_fcport->d_id.b24 == vp->d_id.b24) {
3307 found = 1;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003308 break;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003309 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003310 }
Arun Easifeafb7b2010-09-03 14:57:00 -07003311 spin_unlock_irqrestore(&ha->vport_slock, flags);
3312
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003313 if (found)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003314 continue;
3315 }
3316
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003317 /* Bypass if same domain and area of adapter. */
3318 if (((new_fcport->d_id.b24 & 0xffff00) ==
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003319 (vha->d_id.b24 & 0xffff00)) && ha->current_topology ==
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003320 ISP_CFG_FL)
3321 continue;
3322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 /* Bypass reserved domain fields. */
3324 if ((new_fcport->d_id.b.domain & 0xf0) == 0xf0)
3325 continue;
3326
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003327 /* Bypass ports whose FCP-4 type is not FCP_SCSI */
Chad Dupuis4da26e12010-10-15 11:27:40 -07003328 if (ql2xgffidenable &&
3329 (new_fcport->fc4_type != FC4_TYPE_FCP_SCSI &&
3330 new_fcport->fc4_type != FC4_TYPE_UNKNOWN))
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003331 continue;
3332
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 /* Locate matching device in database. */
3334 found = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003335 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 if (memcmp(new_fcport->port_name, fcport->port_name,
3337 WWN_SIZE))
3338 continue;
3339
Joe Carnuccioc0822b62012-05-15 14:34:21 -04003340 fcport->scan_state = QLA_FCPORT_SCAN_FOUND;
Arun Easib3b02e62012-02-09 11:15:39 -08003341
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 found++;
3343
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003344 /* Update port state. */
3345 memcpy(fcport->fabric_port_name,
3346 new_fcport->fabric_port_name, WWN_SIZE);
3347 fcport->fp_speed = new_fcport->fp_speed;
3348
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 /*
3350 * If address the same and state FCS_ONLINE, nothing
3351 * changed.
3352 */
3353 if (fcport->d_id.b24 == new_fcport->d_id.b24 &&
3354 atomic_read(&fcport->state) == FCS_ONLINE) {
3355 break;
3356 }
3357
3358 /*
3359 * If device was not a fabric device before.
3360 */
3361 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0) {
3362 fcport->d_id.b24 = new_fcport->d_id.b24;
Chad Dupuis5f16b332012-08-22 14:21:00 -04003363 qla2x00_clear_loop_id(fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 fcport->flags |= (FCF_FABRIC_DEVICE |
3365 FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 break;
3367 }
3368
3369 /*
3370 * Port ID changed or device was marked to be updated;
3371 * Log it out if still logged in and mark it for
3372 * relogin later.
3373 */
3374 fcport->d_id.b24 = new_fcport->d_id.b24;
3375 fcport->flags |= FCF_LOGIN_NEEDED;
3376 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003377 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Arun Easi0eba25d2012-02-09 11:15:58 -08003378 (fcport->flags & FCF_ASYNC_SENT) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 fcport->port_type != FCT_INITIATOR &&
3380 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003381 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003382 fcport->d_id.b.domain, fcport->d_id.b.area,
3383 fcport->d_id.b.al_pa);
Chad Dupuis5f16b332012-08-22 14:21:00 -04003384 qla2x00_clear_loop_id(fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 }
3386
3387 break;
3388 }
3389
3390 if (found)
3391 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 /* If device was not in our fcports list, then add it. */
3393 list_add_tail(&new_fcport->list, new_fcports);
3394
3395 /* Allocate a new replacement fcport. */
3396 nxt_d_id.b24 = new_fcport->d_id.b24;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003397 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 if (new_fcport == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003399 ql_log(ql_log_warn, vha, 0x2066,
3400 "Memory allocation failed for fcport.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 return (QLA_MEMORY_ALLOC_FAILED);
3402 }
3403 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
3404 new_fcport->d_id.b24 = nxt_d_id.b24;
3405 }
3406
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003407 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 return (rval);
3410}
3411
3412/*
3413 * qla2x00_find_new_loop_id
3414 * Scan through our port list and find a new usable loop ID.
3415 *
3416 * Input:
3417 * ha: adapter state pointer.
3418 * dev: port structure pointer.
3419 *
3420 * Returns:
3421 * qla2x00 local function return status code.
3422 *
3423 * Context:
3424 * Kernel context.
3425 */
Joe Carnuccio03bcfb52011-03-30 11:46:27 -07003426int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003427qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428{
3429 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003430 struct qla_hw_data *ha = vha->hw;
Arun Easifeafb7b2010-09-03 14:57:00 -07003431 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
3433 rval = QLA_SUCCESS;
3434
Chad Dupuis5f16b332012-08-22 14:21:00 -04003435 spin_lock_irqsave(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Chad Dupuis5f16b332012-08-22 14:21:00 -04003437 dev->loop_id = find_first_zero_bit(ha->loop_id_map,
3438 LOOPID_MAP_SIZE);
3439 if (dev->loop_id >= LOOPID_MAP_SIZE ||
3440 qla2x00_is_reserved_id(vha, dev->loop_id)) {
3441 dev->loop_id = FC_NO_LOOP_ID;
3442 rval = QLA_FUNCTION_FAILED;
3443 } else
3444 set_bit(dev->loop_id, ha->loop_id_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445
Chad Dupuis5f16b332012-08-22 14:21:00 -04003446 spin_unlock_irqrestore(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Chad Dupuis5f16b332012-08-22 14:21:00 -04003448 if (rval == QLA_SUCCESS)
3449 ql_dbg(ql_dbg_disc, dev->vha, 0x2086,
3450 "Assigning new loopid=%x, portid=%x.\n",
3451 dev->loop_id, dev->d_id.b24);
3452 else
3453 ql_log(ql_log_warn, dev->vha, 0x2087,
3454 "No loop_id's available, portid=%x.\n",
3455 dev->d_id.b24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
3457 return (rval);
3458}
3459
3460/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 * qla2x00_fabric_dev_login
3462 * Login fabric target device and update FC port database.
3463 *
3464 * Input:
3465 * ha: adapter state pointer.
3466 * fcport: port structure list pointer.
3467 * next_loopid: contains value of a new loop ID that can be used
3468 * by the next login attempt.
3469 *
3470 * Returns:
3471 * qla2x00 local function return status code.
3472 *
3473 * Context:
3474 * Kernel context.
3475 */
3476static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003477qla2x00_fabric_dev_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 uint16_t *next_loopid)
3479{
3480 int rval;
3481 int retry;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003482 uint8_t opts;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003483 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
3485 rval = QLA_SUCCESS;
3486 retry = 0;
3487
Andrew Vasquezac280b62009-08-20 11:06:05 -07003488 if (IS_ALOGIO_CAPABLE(ha)) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003489 if (fcport->flags & FCF_ASYNC_SENT)
3490 return rval;
3491 fcport->flags |= FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003492 rval = qla2x00_post_async_login_work(vha, fcport, NULL);
3493 if (!rval)
3494 return rval;
3495 }
3496
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003497 fcport->flags &= ~FCF_ASYNC_SENT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003498 rval = qla2x00_fabric_login(vha, fcport, next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 if (rval == QLA_SUCCESS) {
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003500 /* Send an ADISC to FCP2 devices.*/
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003501 opts = 0;
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003502 if (fcport->flags & FCF_FCP2_DEVICE)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003503 opts |= BIT_1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003504 rval = qla2x00_get_port_database(vha, fcport, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003506 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003507 fcport->d_id.b.domain, fcport->d_id.b.area,
3508 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003509 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003511 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 }
Chad Dupuis0b91d112012-02-09 11:15:42 -08003513 } else {
3514 /* Retry Login. */
3515 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 }
3517
3518 return (rval);
3519}
3520
3521/*
3522 * qla2x00_fabric_login
3523 * Issue fabric login command.
3524 *
3525 * Input:
3526 * ha = adapter block pointer.
3527 * device = pointer to FC device type structure.
3528 *
3529 * Returns:
3530 * 0 - Login successfully
3531 * 1 - Login failed
3532 * 2 - Initiator device
3533 * 3 - Fatal error
3534 */
3535int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003536qla2x00_fabric_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 uint16_t *next_loopid)
3538{
3539 int rval;
3540 int retry;
3541 uint16_t tmp_loopid;
3542 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003543 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
3545 retry = 0;
3546 tmp_loopid = 0;
3547
3548 for (;;) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003549 ql_dbg(ql_dbg_disc, vha, 0x2000,
3550 "Trying Fabric Login w/loop id 0x%04x for port "
3551 "%02x%02x%02x.\n",
3552 fcport->loop_id, fcport->d_id.b.domain,
3553 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
3555 /* Login fcport on switch. */
Chad Dupuis0b91d112012-02-09 11:15:42 -08003556 rval = ha->isp_ops->fabric_login(vha, fcport->loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 fcport->d_id.b.domain, fcport->d_id.b.area,
3558 fcport->d_id.b.al_pa, mb, BIT_0);
Chad Dupuis0b91d112012-02-09 11:15:42 -08003559 if (rval != QLA_SUCCESS) {
3560 return rval;
3561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 if (mb[0] == MBS_PORT_ID_USED) {
3563 /*
3564 * Device has another loop ID. The firmware team
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003565 * recommends the driver perform an implicit login with
3566 * the specified ID again. The ID we just used is save
3567 * here so we return with an ID that can be tried by
3568 * the next login.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 */
3570 retry++;
3571 tmp_loopid = fcport->loop_id;
3572 fcport->loop_id = mb[1];
3573
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003574 ql_dbg(ql_dbg_disc, vha, 0x2001,
3575 "Fabric Login: port in use - next loop "
3576 "id=0x%04x, port id= %02x%02x%02x.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 fcport->loop_id, fcport->d_id.b.domain,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003578 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
3580 } else if (mb[0] == MBS_COMMAND_COMPLETE) {
3581 /*
3582 * Login succeeded.
3583 */
3584 if (retry) {
3585 /* A retry occurred before. */
3586 *next_loopid = tmp_loopid;
3587 } else {
3588 /*
3589 * No retry occurred before. Just increment the
3590 * ID value for next login.
3591 */
3592 *next_loopid = (fcport->loop_id + 1);
3593 }
3594
3595 if (mb[1] & BIT_0) {
3596 fcport->port_type = FCT_INITIATOR;
3597 } else {
3598 fcport->port_type = FCT_TARGET;
3599 if (mb[1] & BIT_1) {
Santosh Vernekar8474f3a2009-08-25 11:36:16 -07003600 fcport->flags |= FCF_FCP2_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 }
3602 }
3603
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003604 if (mb[10] & BIT_0)
3605 fcport->supported_classes |= FC_COS_CLASS2;
3606 if (mb[10] & BIT_1)
3607 fcport->supported_classes |= FC_COS_CLASS3;
3608
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003609 if (IS_FWI2_CAPABLE(ha)) {
3610 if (mb[10] & BIT_7)
3611 fcport->flags |=
3612 FCF_CONF_COMP_SUPPORTED;
3613 }
3614
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 rval = QLA_SUCCESS;
3616 break;
3617 } else if (mb[0] == MBS_LOOP_ID_USED) {
3618 /*
3619 * Loop ID already used, try next loop ID.
3620 */
3621 fcport->loop_id++;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003622 rval = qla2x00_find_new_loop_id(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 if (rval != QLA_SUCCESS) {
3624 /* Ran out of loop IDs to use */
3625 break;
3626 }
3627 } else if (mb[0] == MBS_COMMAND_ERROR) {
3628 /*
3629 * Firmware possibly timed out during login. If NO
3630 * retries are left to do then the device is declared
3631 * dead.
3632 */
3633 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003634 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003635 fcport->d_id.b.domain, fcport->d_id.b.area,
3636 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003637 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
3639 rval = 1;
3640 break;
3641 } else {
3642 /*
3643 * unrecoverable / not handled error
3644 */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003645 ql_dbg(ql_dbg_disc, vha, 0x2002,
3646 "Failed=%x port_id=%02x%02x%02x loop_id=%x "
3647 "jiffies=%lx.\n", mb[0], fcport->d_id.b.domain,
3648 fcport->d_id.b.area, fcport->d_id.b.al_pa,
3649 fcport->loop_id, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
3651 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003652 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003653 fcport->d_id.b.domain, fcport->d_id.b.area,
3654 fcport->d_id.b.al_pa);
Chad Dupuis5f16b332012-08-22 14:21:00 -04003655 qla2x00_clear_loop_id(fcport);
Andrew Vasquez0eedfcf2005-10-27 11:09:38 -07003656 fcport->login_retry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657
3658 rval = 3;
3659 break;
3660 }
3661 }
3662
3663 return (rval);
3664}
3665
3666/*
3667 * qla2x00_local_device_login
3668 * Issue local device login command.
3669 *
3670 * Input:
3671 * ha = adapter block pointer.
3672 * loop_id = loop id of device to login to.
3673 *
3674 * Returns (Where's the #define!!!!):
3675 * 0 - Login successfully
3676 * 1 - Login failed
3677 * 3 - Fatal error
3678 */
3679int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003680qla2x00_local_device_login(scsi_qla_host_t *vha, fc_port_t *fcport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681{
3682 int rval;
3683 uint16_t mb[MAILBOX_REGISTER_COUNT];
3684
3685 memset(mb, 0, sizeof(mb));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003686 rval = qla2x00_login_local_device(vha, fcport, mb, BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 if (rval == QLA_SUCCESS) {
3688 /* Interrogate mailbox registers for any errors */
3689 if (mb[0] == MBS_COMMAND_ERROR)
3690 rval = 1;
3691 else if (mb[0] == MBS_COMMAND_PARAMETER_ERROR)
3692 /* device not in PCB table */
3693 rval = 3;
3694 }
3695
3696 return (rval);
3697}
3698
3699/*
3700 * qla2x00_loop_resync
3701 * Resync with fibre channel devices.
3702 *
3703 * Input:
3704 * ha = adapter block pointer.
3705 *
3706 * Returns:
3707 * 0 = success
3708 */
3709int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003710qla2x00_loop_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003712 int rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 uint32_t wait_time;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003714 struct req_que *req;
3715 struct rsp_que *rsp;
3716
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07003717 if (vha->hw->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003718 req = vha->hw->req_q_map[0];
3719 else
3720 req = vha->req;
3721 rsp = req->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003723 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3724 if (vha->flags.online) {
3725 if (!(rval = qla2x00_fw_ready(vha))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 /* Wait at most MAX_TARGET RSCNs for a stable link. */
3727 wait_time = 256;
3728 do {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003729 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003730 qla2x00_marker(vha, req, rsp, 0, 0,
3731 MK_SYNC_ALL);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003732 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
3734 /* Remap devices on Loop. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003735 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003737 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003739 } while (!atomic_read(&vha->loop_down_timer) &&
3740 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
3741 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
3742 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 }
3745
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003746 if (test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 return (QLA_FUNCTION_FAILED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003749 if (rval)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003750 ql_dbg(ql_dbg_disc, vha, 0x206c,
3751 "%s *** FAILED ***.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
3753 return (rval);
3754}
3755
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003756/*
3757* qla2x00_perform_loop_resync
3758* Description: This function will set the appropriate flags and call
3759* qla2x00_loop_resync. If successful loop will be resynced
3760* Arguments : scsi_qla_host_t pointer
3761* returm : Success or Failure
3762*/
3763
3764int qla2x00_perform_loop_resync(scsi_qla_host_t *ha)
3765{
3766 int32_t rval = 0;
3767
3768 if (!test_and_set_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags)) {
3769 /*Configure the flags so that resync happens properly*/
3770 atomic_set(&ha->loop_down_timer, 0);
3771 if (!(ha->device_flags & DFLG_NO_CABLE)) {
3772 atomic_set(&ha->loop_state, LOOP_UP);
3773 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
3774 set_bit(REGISTER_FC4_NEEDED, &ha->dpc_flags);
3775 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
3776
3777 rval = qla2x00_loop_resync(ha);
3778 } else
3779 atomic_set(&ha->loop_state, LOOP_DEAD);
3780
3781 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
3782 }
3783
3784 return rval;
3785}
3786
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787void
Andrew Vasquez67becc02009-08-25 11:36:20 -07003788qla2x00_update_fcports(scsi_qla_host_t *base_vha)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003789{
3790 fc_port_t *fcport;
Arun Easifeafb7b2010-09-03 14:57:00 -07003791 struct scsi_qla_host *vha;
3792 struct qla_hw_data *ha = base_vha->hw;
3793 unsigned long flags;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003794
Arun Easifeafb7b2010-09-03 14:57:00 -07003795 spin_lock_irqsave(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003796 /* Go with deferred removal of rport references. */
Arun Easifeafb7b2010-09-03 14:57:00 -07003797 list_for_each_entry(vha, &base_vha->hw->vp_list, list) {
3798 atomic_inc(&vha->vref_count);
3799 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Dan Carpenter8ae598d2010-12-21 16:00:15 -08003800 if (fcport->drport &&
Arun Easifeafb7b2010-09-03 14:57:00 -07003801 atomic_read(&fcport->state) != FCS_UNCONFIGURED) {
3802 spin_unlock_irqrestore(&ha->vport_slock, flags);
3803
Andrew Vasquez67becc02009-08-25 11:36:20 -07003804 qla2x00_rport_del(fcport);
Arun Easifeafb7b2010-09-03 14:57:00 -07003805
3806 spin_lock_irqsave(&ha->vport_slock, flags);
3807 }
3808 }
3809 atomic_dec(&vha->vref_count);
3810 }
3811 spin_unlock_irqrestore(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003812}
3813
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04003814/* Assumes idc_lock always held on entry */
3815void
3816qla83xx_reset_ownership(scsi_qla_host_t *vha)
3817{
3818 struct qla_hw_data *ha = vha->hw;
3819 uint32_t drv_presence, drv_presence_mask;
3820 uint32_t dev_part_info1, dev_part_info2, class_type;
3821 uint32_t class_type_mask = 0x3;
3822 uint16_t fcoe_other_function = 0xffff, i;
3823
3824 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
3825
3826 qla83xx_rd_reg(vha, QLA83XX_DEV_PARTINFO1, &dev_part_info1);
3827 qla83xx_rd_reg(vha, QLA83XX_DEV_PARTINFO2, &dev_part_info2);
3828 for (i = 0; i < 8; i++) {
3829 class_type = ((dev_part_info1 >> (i * 4)) & class_type_mask);
3830 if ((class_type == QLA83XX_CLASS_TYPE_FCOE) &&
3831 (i != ha->portnum)) {
3832 fcoe_other_function = i;
3833 break;
3834 }
3835 }
3836 if (fcoe_other_function == 0xffff) {
3837 for (i = 0; i < 8; i++) {
3838 class_type = ((dev_part_info2 >> (i * 4)) &
3839 class_type_mask);
3840 if ((class_type == QLA83XX_CLASS_TYPE_FCOE) &&
3841 ((i + 8) != ha->portnum)) {
3842 fcoe_other_function = i + 8;
3843 break;
3844 }
3845 }
3846 }
3847 /*
3848 * Prepare drv-presence mask based on fcoe functions present.
3849 * However consider only valid physical fcoe function numbers (0-15).
3850 */
3851 drv_presence_mask = ~((1 << (ha->portnum)) |
3852 ((fcoe_other_function == 0xffff) ?
3853 0 : (1 << (fcoe_other_function))));
3854
3855 /* We are the reset owner iff:
3856 * - No other protocol drivers present.
3857 * - This is the lowest among fcoe functions. */
3858 if (!(drv_presence & drv_presence_mask) &&
3859 (ha->portnum < fcoe_other_function)) {
3860 ql_dbg(ql_dbg_p3p, vha, 0xb07f,
3861 "This host is Reset owner.\n");
3862 ha->flags.nic_core_reset_owner = 1;
3863 }
3864}
3865
3866int
3867__qla83xx_set_drv_ack(scsi_qla_host_t *vha)
3868{
3869 int rval = QLA_SUCCESS;
3870 struct qla_hw_data *ha = vha->hw;
3871 uint32_t drv_ack;
3872
3873 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
3874 if (rval == QLA_SUCCESS) {
3875 drv_ack |= (1 << ha->portnum);
3876 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRIVER_ACK, drv_ack);
3877 }
3878
3879 return rval;
3880}
3881
3882int
3883qla83xx_set_drv_ack(scsi_qla_host_t *vha)
3884{
3885 int rval = QLA_SUCCESS;
3886
3887 qla83xx_idc_lock(vha, 0);
3888 rval = __qla83xx_set_drv_ack(vha);
3889 qla83xx_idc_unlock(vha, 0);
3890
3891 return rval;
3892}
3893
3894int
3895__qla83xx_clear_drv_ack(scsi_qla_host_t *vha)
3896{
3897 int rval = QLA_SUCCESS;
3898 struct qla_hw_data *ha = vha->hw;
3899 uint32_t drv_ack;
3900
3901 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
3902 if (rval == QLA_SUCCESS) {
3903 drv_ack &= ~(1 << ha->portnum);
3904 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRIVER_ACK, drv_ack);
3905 }
3906
3907 return rval;
3908}
3909
3910int
3911qla83xx_clear_drv_ack(scsi_qla_host_t *vha)
3912{
3913 int rval = QLA_SUCCESS;
3914
3915 qla83xx_idc_lock(vha, 0);
3916 rval = __qla83xx_clear_drv_ack(vha);
3917 qla83xx_idc_unlock(vha, 0);
3918
3919 return rval;
3920}
3921
3922const char *
3923qla83xx_dev_state_to_string(uint32_t dev_state)
3924{
3925 switch (dev_state) {
3926 case QLA8XXX_DEV_COLD:
3927 return "COLD/RE-INIT";
3928 case QLA8XXX_DEV_INITIALIZING:
3929 return "INITIALIZING";
3930 case QLA8XXX_DEV_READY:
3931 return "READY";
3932 case QLA8XXX_DEV_NEED_RESET:
3933 return "NEED RESET";
3934 case QLA8XXX_DEV_NEED_QUIESCENT:
3935 return "NEED QUIESCENT";
3936 case QLA8XXX_DEV_FAILED:
3937 return "FAILED";
3938 case QLA8XXX_DEV_QUIESCENT:
3939 return "QUIESCENT";
3940 default:
3941 return "Unknown";
3942 }
3943}
3944
3945/* Assumes idc-lock always held on entry */
3946void
3947qla83xx_idc_audit(scsi_qla_host_t *vha, int audit_type)
3948{
3949 struct qla_hw_data *ha = vha->hw;
3950 uint32_t idc_audit_reg = 0, duration_secs = 0;
3951
3952 switch (audit_type) {
3953 case IDC_AUDIT_TIMESTAMP:
3954 ha->idc_audit_ts = (jiffies_to_msecs(jiffies) / 1000);
3955 idc_audit_reg = (ha->portnum) |
3956 (IDC_AUDIT_TIMESTAMP << 7) | (ha->idc_audit_ts << 8);
3957 qla83xx_wr_reg(vha, QLA83XX_IDC_AUDIT, idc_audit_reg);
3958 break;
3959
3960 case IDC_AUDIT_COMPLETION:
3961 duration_secs = ((jiffies_to_msecs(jiffies) -
3962 jiffies_to_msecs(ha->idc_audit_ts)) / 1000);
3963 idc_audit_reg = (ha->portnum) |
3964 (IDC_AUDIT_COMPLETION << 7) | (duration_secs << 8);
3965 qla83xx_wr_reg(vha, QLA83XX_IDC_AUDIT, idc_audit_reg);
3966 break;
3967
3968 default:
3969 ql_log(ql_log_warn, vha, 0xb078,
3970 "Invalid audit type specified.\n");
3971 break;
3972 }
3973}
3974
3975/* Assumes idc_lock always held on entry */
3976int
3977qla83xx_initiating_reset(scsi_qla_host_t *vha)
3978{
3979 struct qla_hw_data *ha = vha->hw;
3980 uint32_t idc_control, dev_state;
3981
3982 __qla83xx_get_idc_control(vha, &idc_control);
3983 if ((idc_control & QLA83XX_IDC_RESET_DISABLED)) {
3984 ql_log(ql_log_info, vha, 0xb080,
3985 "NIC Core reset has been disabled. idc-control=0x%x\n",
3986 idc_control);
3987 return QLA_FUNCTION_FAILED;
3988 }
3989
3990 /* Set NEED-RESET iff in READY state and we are the reset-owner */
3991 qla83xx_rd_reg(vha, QLA83XX_IDC_DEV_STATE, &dev_state);
3992 if (ha->flags.nic_core_reset_owner && dev_state == QLA8XXX_DEV_READY) {
3993 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE,
3994 QLA8XXX_DEV_NEED_RESET);
3995 ql_log(ql_log_info, vha, 0xb056, "HW State: NEED RESET.\n");
3996 qla83xx_idc_audit(vha, IDC_AUDIT_TIMESTAMP);
3997 } else {
3998 const char *state = qla83xx_dev_state_to_string(dev_state);
3999 ql_log(ql_log_info, vha, 0xb057, "HW State: %s.\n", state);
4000
4001 /* SV: XXX: Is timeout required here? */
4002 /* Wait for IDC state change READY -> NEED_RESET */
4003 while (dev_state == QLA8XXX_DEV_READY) {
4004 qla83xx_idc_unlock(vha, 0);
4005 msleep(200);
4006 qla83xx_idc_lock(vha, 0);
4007 qla83xx_rd_reg(vha, QLA83XX_IDC_DEV_STATE, &dev_state);
4008 }
4009 }
4010
4011 /* Send IDC ack by writing to drv-ack register */
4012 __qla83xx_set_drv_ack(vha);
4013
4014 return QLA_SUCCESS;
4015}
4016
4017int
4018__qla83xx_set_idc_control(scsi_qla_host_t *vha, uint32_t idc_control)
4019{
4020 return qla83xx_wr_reg(vha, QLA83XX_IDC_CONTROL, idc_control);
4021}
4022
4023int
4024qla83xx_set_idc_control(scsi_qla_host_t *vha, uint32_t idc_control)
4025{
4026 int rval = QLA_SUCCESS;
4027
4028 qla83xx_idc_lock(vha, 0);
4029 rval = __qla83xx_set_idc_control(vha, idc_control);
4030 qla83xx_idc_unlock(vha, 0);
4031
4032 return rval;
4033}
4034
4035int
4036__qla83xx_get_idc_control(scsi_qla_host_t *vha, uint32_t *idc_control)
4037{
4038 return qla83xx_rd_reg(vha, QLA83XX_IDC_CONTROL, idc_control);
4039}
4040
4041int
4042qla83xx_get_idc_control(scsi_qla_host_t *vha, uint32_t *idc_control)
4043{
4044 int rval = QLA_SUCCESS;
4045
4046 qla83xx_idc_lock(vha, 0);
4047 rval = __qla83xx_get_idc_control(vha, idc_control);
4048 qla83xx_idc_unlock(vha, 0);
4049
4050 return rval;
4051}
4052
4053int
4054qla83xx_check_driver_presence(scsi_qla_host_t *vha)
4055{
4056 uint32_t drv_presence = 0;
4057 struct qla_hw_data *ha = vha->hw;
4058
4059 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
4060 if (drv_presence & (1 << ha->portnum))
4061 return QLA_SUCCESS;
4062 else
4063 return QLA_TEST_FAILED;
4064}
4065
4066int
4067qla83xx_nic_core_reset(scsi_qla_host_t *vha)
4068{
4069 int rval = QLA_SUCCESS;
4070 struct qla_hw_data *ha = vha->hw;
4071
4072 ql_dbg(ql_dbg_p3p, vha, 0xb058,
4073 "Entered %s().\n", __func__);
4074
4075 if (vha->device_flags & DFLG_DEV_FAILED) {
4076 ql_log(ql_log_warn, vha, 0xb059,
4077 "Device in unrecoverable FAILED state.\n");
4078 return QLA_FUNCTION_FAILED;
4079 }
4080
4081 qla83xx_idc_lock(vha, 0);
4082
4083 if (qla83xx_check_driver_presence(vha) != QLA_SUCCESS) {
4084 ql_log(ql_log_warn, vha, 0xb05a,
4085 "Function=0x%x has been removed from IDC participation.\n",
4086 ha->portnum);
4087 rval = QLA_FUNCTION_FAILED;
4088 goto exit;
4089 }
4090
4091 qla83xx_reset_ownership(vha);
4092
4093 rval = qla83xx_initiating_reset(vha);
4094
4095 /*
4096 * Perform reset if we are the reset-owner,
4097 * else wait till IDC state changes to READY/FAILED.
4098 */
4099 if (rval == QLA_SUCCESS) {
4100 rval = qla83xx_idc_state_handler(vha);
4101
4102 if (rval == QLA_SUCCESS)
4103 ha->flags.nic_core_hung = 0;
4104 __qla83xx_clear_drv_ack(vha);
4105 }
4106
4107exit:
4108 qla83xx_idc_unlock(vha, 0);
4109
4110 ql_dbg(ql_dbg_p3p, vha, 0xb05b, "Exiting %s.\n", __func__);
4111
4112 return rval;
4113}
4114
Saurav Kashyap81178772012-08-22 14:21:04 -04004115int
4116qla2xxx_mctp_dump(scsi_qla_host_t *vha)
4117{
4118 struct qla_hw_data *ha = vha->hw;
4119 int rval = QLA_FUNCTION_FAILED;
4120
4121 if (!IS_MCTP_CAPABLE(ha)) {
4122 /* This message can be removed from the final version */
4123 ql_log(ql_log_info, vha, 0x506d,
4124 "This board is not MCTP capable\n");
4125 return rval;
4126 }
4127
4128 if (!ha->mctp_dump) {
4129 ha->mctp_dump = dma_alloc_coherent(&ha->pdev->dev,
4130 MCTP_DUMP_SIZE, &ha->mctp_dump_dma, GFP_KERNEL);
4131
4132 if (!ha->mctp_dump) {
4133 ql_log(ql_log_warn, vha, 0x506e,
4134 "Failed to allocate memory for mctp dump\n");
4135 return rval;
4136 }
4137 }
4138
4139#define MCTP_DUMP_STR_ADDR 0x00000000
4140 rval = qla2x00_dump_mctp_data(vha, ha->mctp_dump_dma,
4141 MCTP_DUMP_STR_ADDR, MCTP_DUMP_SIZE/4);
4142 if (rval != QLA_SUCCESS) {
4143 ql_log(ql_log_warn, vha, 0x506f,
4144 "Failed to capture mctp dump\n");
4145 } else {
4146 ql_log(ql_log_info, vha, 0x5070,
4147 "Mctp dump capture for host (%ld/%p).\n",
4148 vha->host_no, ha->mctp_dump);
4149 ha->mctp_dumped = 1;
4150 }
4151
4152 if (!ha->flags.nic_core_reset_hdlr_active) {
4153 ha->flags.nic_core_reset_hdlr_active = 1;
4154 rval = qla83xx_restart_nic_firmware(vha);
4155 if (rval)
4156 /* NIC Core reset failed. */
4157 ql_log(ql_log_warn, vha, 0x5071,
4158 "Failed to restart nic firmware\n");
4159 else
4160 ql_dbg(ql_dbg_p3p, vha, 0xb084,
4161 "Restarted NIC firmware successfully.\n");
4162 ha->flags.nic_core_reset_hdlr_active = 0;
4163 }
4164
4165 return rval;
4166
4167}
4168
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004169/*
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004170* qla2x00_quiesce_io
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004171* Description: This function will block the new I/Os
4172* Its not aborting any I/Os as context
4173* is not destroyed during quiescence
4174* Arguments: scsi_qla_host_t
4175* return : void
4176*/
4177void
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004178qla2x00_quiesce_io(scsi_qla_host_t *vha)
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004179{
4180 struct qla_hw_data *ha = vha->hw;
4181 struct scsi_qla_host *vp;
4182
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004183 ql_dbg(ql_dbg_dpc, vha, 0x401d,
4184 "Quiescing I/O - ha=%p.\n", ha);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004185
4186 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
4187 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
4188 atomic_set(&vha->loop_state, LOOP_DOWN);
4189 qla2x00_mark_all_devices_lost(vha, 0);
4190 list_for_each_entry(vp, &ha->vp_list, list)
Chad Dupuis8fcd6b82012-08-22 14:21:06 -04004191 qla2x00_mark_all_devices_lost(vp, 0);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004192 } else {
4193 if (!atomic_read(&vha->loop_down_timer))
4194 atomic_set(&vha->loop_down_timer,
4195 LOOP_DOWN_TIME);
4196 }
4197 /* Wait for pending cmds to complete */
4198 qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST);
4199}
4200
Giridhar Malavalia9083012010-04-12 17:59:55 -07004201void
4202qla2x00_abort_isp_cleanup(scsi_qla_host_t *vha)
4203{
4204 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004205 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07004206 unsigned long flags;
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08004207 fc_port_t *fcport;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004208
Saurav Kashyape46ef002011-02-23 15:27:16 -08004209 /* For ISP82XX, driver waits for completion of the commands.
4210 * online flag should be set.
4211 */
4212 if (!IS_QLA82XX(ha))
4213 vha->flags.online = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004214 ha->flags.chip_reset_done = 0;
4215 clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Saurav Kashyap2be21fa2012-05-15 14:34:16 -04004216 vha->qla_stats.total_isp_aborts++;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004217
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004218 ql_log(ql_log_info, vha, 0x00af,
4219 "Performing ISP error recovery - ha=%p.\n", ha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004220
Saurav Kashyape46ef002011-02-23 15:27:16 -08004221 /* For ISP82XX, reset_chip is just disabling interrupts.
4222 * Driver waits for the completion of the commands.
4223 * the interrupts need to be enabled.
4224 */
Giridhar Malavalia9083012010-04-12 17:59:55 -07004225 if (!IS_QLA82XX(ha))
4226 ha->isp_ops->reset_chip(vha);
4227
4228 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
4229 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
4230 atomic_set(&vha->loop_state, LOOP_DOWN);
4231 qla2x00_mark_all_devices_lost(vha, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07004232
4233 spin_lock_irqsave(&ha->vport_slock, flags);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08004234 list_for_each_entry(vp, &ha->vp_list, list) {
Arun Easifeafb7b2010-09-03 14:57:00 -07004235 atomic_inc(&vp->vref_count);
4236 spin_unlock_irqrestore(&ha->vport_slock, flags);
4237
Giridhar Malavalia9083012010-04-12 17:59:55 -07004238 qla2x00_mark_all_devices_lost(vp, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07004239
4240 spin_lock_irqsave(&ha->vport_slock, flags);
4241 atomic_dec(&vp->vref_count);
4242 }
4243 spin_unlock_irqrestore(&ha->vport_slock, flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004244 } else {
4245 if (!atomic_read(&vha->loop_down_timer))
4246 atomic_set(&vha->loop_down_timer,
4247 LOOP_DOWN_TIME);
4248 }
4249
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08004250 /* Clear all async request states across all VPs. */
4251 list_for_each_entry(fcport, &vha->vp_fcports, list)
4252 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
4253 spin_lock_irqsave(&ha->vport_slock, flags);
4254 list_for_each_entry(vp, &ha->vp_list, list) {
4255 atomic_inc(&vp->vref_count);
4256 spin_unlock_irqrestore(&ha->vport_slock, flags);
4257
4258 list_for_each_entry(fcport, &vp->vp_fcports, list)
4259 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
4260
4261 spin_lock_irqsave(&ha->vport_slock, flags);
4262 atomic_dec(&vp->vref_count);
4263 }
4264 spin_unlock_irqrestore(&ha->vport_slock, flags);
4265
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07004266 if (!ha->flags.eeh_busy) {
4267 /* Make sure for ISP 82XX IO DMA is complete */
4268 if (IS_QLA82XX(ha)) {
Giridhar Malavali71905752011-02-23 15:27:10 -08004269 qla82xx_chip_reset_cleanup(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004270 ql_log(ql_log_info, vha, 0x00b4,
4271 "Done chip reset cleanup.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -07004272
Saurav Kashyape46ef002011-02-23 15:27:16 -08004273 /* Done waiting for pending commands.
4274 * Reset the online flag.
4275 */
4276 vha->flags.online = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07004279 /* Requeue all commands in outstanding command list. */
4280 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
4281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282}
4283
4284/*
4285* qla2x00_abort_isp
4286* Resets ISP and aborts all outstanding commands.
4287*
4288* Input:
4289* ha = adapter block pointer.
4290*
4291* Returns:
4292* 0 = success
4293*/
4294int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004295qla2x00_abort_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296{
Andrew Vasquez476e8972006-08-23 14:54:55 -07004297 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 uint8_t status = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004299 struct qla_hw_data *ha = vha->hw;
4300 struct scsi_qla_host *vp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004301 struct req_que *req = ha->req_q_map[0];
Arun Easifeafb7b2010-09-03 14:57:00 -07004302 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004304 if (IS_QLA8031(ha)) {
4305 ql_dbg(ql_dbg_p3p, vha, 0xb05c,
4306 "Clearing fcoe driver presence.\n");
4307 if (qla83xx_clear_drv_presence(vha) != QLA_SUCCESS)
4308 ql_dbg(ql_dbg_p3p, vha, 0xb073,
4309 "Erro while clearing DRV-Presence.\n");
4310 }
4311
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004312 if (vha->flags.online) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07004313 qla2x00_abort_isp_cleanup(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
Andrew Vasquez85880802009-12-15 21:29:46 -08004315 if (unlikely(pci_channel_offline(ha->pdev) &&
4316 ha->flags.pci_channel_io_perm_failure)) {
4317 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
4318 status = 0;
4319 return status;
4320 }
4321
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004322 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -08004323
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004324 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004326 if (!qla2x00_restart_isp(vha)) {
4327 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004329 if (!atomic_read(&vha->loop_down_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 /*
4331 * Issue marker command only when we are going
4332 * to start the I/O .
4333 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004334 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 }
4336
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004337 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004339 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004341 ha->isp_abort_cnt = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004342 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Andrew Vasquez476e8972006-08-23 14:54:55 -07004343
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08004344 if (IS_QLA81XX(ha) || IS_QLA8031(ha))
4345 qla2x00_get_fw_version(vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004346 if (ha->fce) {
4347 ha->flags.fce_enabled = 1;
4348 memset(ha->fce, 0,
4349 fce_calc_size(ha->fce_bufs));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004350 rval = qla2x00_enable_fce_trace(vha,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004351 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
4352 &ha->fce_bufs);
4353 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004354 ql_log(ql_log_warn, vha, 0x8033,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004355 "Unable to reinitialize FCE "
4356 "(%d).\n", rval);
4357 ha->flags.fce_enabled = 0;
4358 }
4359 }
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004360
4361 if (ha->eft) {
4362 memset(ha->eft, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004363 rval = qla2x00_enable_eft_trace(vha,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004364 ha->eft_dma, EFT_NUM_BUFFERS);
4365 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004366 ql_log(ql_log_warn, vha, 0x8034,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004367 "Unable to reinitialize EFT "
4368 "(%d).\n", rval);
4369 }
4370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 } else { /* failed the ISP abort */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004372 vha->flags.online = 1;
4373 if (test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 if (ha->isp_abort_cnt == 0) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004375 ql_log(ql_log_fatal, vha, 0x8035,
4376 "ISP error recover failed - "
4377 "board disabled.\n");
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004378 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 * The next call disables the board
4380 * completely.
4381 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004382 ha->isp_ops->reset_adapter(vha);
4383 vha->flags.online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 clear_bit(ISP_ABORT_RETRY,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004385 &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 status = 0;
4387 } else { /* schedule another ISP abort */
4388 ha->isp_abort_cnt--;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004389 ql_dbg(ql_dbg_taskm, vha, 0x8020,
4390 "ISP abort - retry remaining %d.\n",
4391 ha->isp_abort_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 status = 1;
4393 }
4394 } else {
4395 ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004396 ql_dbg(ql_dbg_taskm, vha, 0x8021,
4397 "ISP error recovery - retrying (%d) "
4398 "more times.\n", ha->isp_abort_cnt);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004399 set_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 status = 1;
4401 }
4402 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004403
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 }
4405
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004406 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004407 ql_dbg(ql_dbg_taskm, vha, 0x8022, "%s succeeded.\n", __func__);
Arun Easifeafb7b2010-09-03 14:57:00 -07004408
4409 spin_lock_irqsave(&ha->vport_slock, flags);
4410 list_for_each_entry(vp, &ha->vp_list, list) {
4411 if (vp->vp_idx) {
4412 atomic_inc(&vp->vref_count);
4413 spin_unlock_irqrestore(&ha->vport_slock, flags);
4414
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004415 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07004416
4417 spin_lock_irqsave(&ha->vport_slock, flags);
4418 atomic_dec(&vp->vref_count);
4419 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004420 }
Arun Easifeafb7b2010-09-03 14:57:00 -07004421 spin_unlock_irqrestore(&ha->vport_slock, flags);
4422
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04004423 if (IS_QLA8031(ha)) {
4424 ql_dbg(ql_dbg_p3p, vha, 0xb05d,
4425 "Setting back fcoe driver presence.\n");
4426 if (qla83xx_set_drv_presence(vha) != QLA_SUCCESS)
4427 ql_dbg(ql_dbg_p3p, vha, 0xb074,
4428 "Error while setting DRV-Presence.\n");
4429 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004430 } else {
Joe Perchesd8424f62011-11-18 09:03:06 -08004431 ql_log(ql_log_warn, vha, 0x8023, "%s **** FAILED ****.\n",
4432 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 }
4434
4435 return(status);
4436}
4437
4438/*
4439* qla2x00_restart_isp
4440* restarts the ISP after a reset
4441*
4442* Input:
4443* ha = adapter block pointer.
4444*
4445* Returns:
4446* 0 = success
4447*/
4448static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004449qla2x00_restart_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450{
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08004451 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 uint32_t wait_time;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004453 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004454 struct req_que *req = ha->req_q_map[0];
4455 struct rsp_que *rsp = ha->rsp_q_map[0];
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004456 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
4458 /* If firmware needs to be loaded */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004459 if (qla2x00_isp_firmware(vha)) {
4460 vha->flags.online = 0;
4461 status = ha->isp_ops->chip_diag(vha);
4462 if (!status)
4463 status = qla2x00_setup_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 }
4465
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004466 if (!status && !(status = qla2x00_init_rings(vha))) {
4467 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -07004468 ha->flags.chip_reset_done = 1;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004469 /* Initialize the queues in use */
4470 qla25xx_init_queues(ha);
4471
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004472 status = qla2x00_fw_ready(vha);
4473 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004474 ql_dbg(ql_dbg_taskm, vha, 0x8031,
4475 "Start configure loop status = %d.\n", status);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004476
4477 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004478 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004479
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004480 vha->flags.online = 1;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004481
4482 /*
4483 * Process any ATIO queue entries that came in
4484 * while we weren't online.
4485 */
4486 spin_lock_irqsave(&ha->hardware_lock, flags);
4487 if (qla_tgt_mode_enabled(vha))
4488 qlt_24xx_process_atio_queue(vha);
4489 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4490
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 /* Wait at most MAX_TARGET RSCNs for a stable link. */
4492 wait_time = 256;
4493 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004494 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4495 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004497 } while (!atomic_read(&vha->loop_down_timer) &&
4498 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
4499 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
4500 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 }
4502
4503 /* if no cable then assume it's good */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004504 if ((vha->device_flags & DFLG_NO_CABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 status = 0;
4506
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004507 ql_dbg(ql_dbg_taskm, vha, 0x8032,
4508 "Configure loop done, status = 0x%x.\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 }
4510 return (status);
4511}
4512
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004513static int
4514qla25xx_init_queues(struct qla_hw_data *ha)
4515{
4516 struct rsp_que *rsp = NULL;
4517 struct req_que *req = NULL;
4518 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
4519 int ret = -1;
4520 int i;
4521
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004522 for (i = 1; i < ha->max_rsp_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004523 rsp = ha->rsp_q_map[i];
4524 if (rsp) {
4525 rsp->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004526 ret = qla25xx_init_rsp_que(base_vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004527 if (ret != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004528 ql_dbg(ql_dbg_init, base_vha, 0x00ff,
4529 "%s Rsp que: %d init failed.\n",
4530 __func__, rsp->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004531 else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004532 ql_dbg(ql_dbg_init, base_vha, 0x0100,
4533 "%s Rsp que: %d inited.\n",
4534 __func__, rsp->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004535 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004536 }
4537 for (i = 1; i < ha->max_req_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004538 req = ha->req_q_map[i];
4539 if (req) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08004540 /* Clear outstanding commands array. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004541 req->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004542 ret = qla25xx_init_req_que(base_vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004543 if (ret != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004544 ql_dbg(ql_dbg_init, base_vha, 0x0101,
4545 "%s Req que: %d init failed.\n",
4546 __func__, req->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004547 else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004548 ql_dbg(ql_dbg_init, base_vha, 0x0102,
4549 "%s Req que: %d inited.\n",
4550 __func__, req->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004551 }
4552 }
4553 return ret;
4554}
4555
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556/*
4557* qla2x00_reset_adapter
4558* Reset adapter.
4559*
4560* Input:
4561* ha = adapter block pointer.
4562*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07004563void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004564qla2x00_reset_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565{
4566 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004567 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07004568 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004570 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004571 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 spin_lock_irqsave(&ha->hardware_lock, flags);
4574 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
4575 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4576 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
4577 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4578 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4579}
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004580
4581void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004582qla24xx_reset_adapter(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004583{
4584 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004585 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004586 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
4587
Giridhar Malavalia9083012010-04-12 17:59:55 -07004588 if (IS_QLA82XX(ha))
4589 return;
4590
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004591 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004592 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004593
4594 spin_lock_irqsave(&ha->hardware_lock, flags);
4595 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
4596 RD_REG_DWORD(&reg->hccr);
4597 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
4598 RD_REG_DWORD(&reg->hccr);
4599 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez09ff36d2009-01-22 09:45:30 -08004600
4601 if (IS_NOPOLLING_TYPE(ha))
4602 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004603}
4604
David Miller4e08df32007-04-16 12:37:43 -07004605/* On sparc systems, obtain port and node WWN from firmware
4606 * properties.
4607 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004608static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t *vha,
4609 struct nvram_24xx *nv)
David Miller4e08df32007-04-16 12:37:43 -07004610{
4611#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004612 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07004613 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07004614 struct device_node *dp = pci_device_to_OF_node(pdev);
4615 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07004616 int len;
4617
4618 val = of_get_property(dp, "port-wwn", &len);
4619 if (val && len >= WWN_SIZE)
4620 memcpy(nv->port_name, val, WWN_SIZE);
4621
4622 val = of_get_property(dp, "node-wwn", &len);
4623 if (val && len >= WWN_SIZE)
4624 memcpy(nv->node_name, val, WWN_SIZE);
4625#endif
4626}
4627
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004628int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004629qla24xx_nvram_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004630{
David Miller4e08df32007-04-16 12:37:43 -07004631 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004632 struct init_cb_24xx *icb;
4633 struct nvram_24xx *nv;
4634 uint32_t *dptr;
4635 uint8_t *dptr1, *dptr2;
4636 uint32_t chksum;
4637 uint16_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004638 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004639
David Miller4e08df32007-04-16 12:37:43 -07004640 rval = QLA_SUCCESS;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004641 icb = (struct init_cb_24xx *)ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07004642 nv = ha->nvram;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004643
4644 /* Determine NVRAM starting address. */
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004645 if (ha->flags.port0) {
4646 ha->nvram_base = FA_NVRAM_FUNC0_ADDR;
4647 ha->vpd_base = FA_NVRAM_VPD0_ADDR;
4648 } else {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004649 ha->nvram_base = FA_NVRAM_FUNC1_ADDR;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -08004650 ha->vpd_base = FA_NVRAM_VPD1_ADDR;
4651 }
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004652 ha->nvram_size = sizeof(struct nvram_24xx);
4653 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004654 if (IS_QLA82XX(ha))
4655 ha->vpd_size = FA_VPD_SIZE_82XX;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004656
Seokmann Ju281afe12007-07-26 13:43:34 -07004657 /* Get VPD data into cache */
4658 ha->vpd = ha->nvram + VPD_OFFSET;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004659 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd,
Seokmann Ju281afe12007-07-26 13:43:34 -07004660 ha->nvram_base - FA_NVRAM_FUNC0_ADDR, FA_NVRAM_VPD_SIZE * 4);
4661
4662 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004663 dptr = (uint32_t *)nv;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004664 ha->isp_ops->read_nvram(vha, (uint8_t *)dptr, ha->nvram_base,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004665 ha->nvram_size);
4666 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
4667 chksum += le32_to_cpu(*dptr++);
4668
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004669 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x006a,
4670 "Contents of NVRAM\n");
4671 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010d,
4672 (uint8_t *)nv, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004673
4674 /* Bad NVRAM data, set defaults parameters. */
4675 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
4676 || nv->id[3] != ' ' ||
4677 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
4678 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004679 ql_log(ql_log_warn, vha, 0x006b,
Raul Porcel9e336522012-05-15 14:34:08 -04004680 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004681 "version=0x%x.\n", chksum, nv->id[0], nv->nvram_version);
4682 ql_log(ql_log_warn, vha, 0x006c,
4683 "Falling back to functioning (yet invalid -- WWPN) "
4684 "defaults.\n");
David Miller4e08df32007-04-16 12:37:43 -07004685
4686 /*
4687 * Set default initialization control block.
4688 */
4689 memset(nv, 0, ha->nvram_size);
4690 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
4691 nv->version = __constant_cpu_to_le16(ICB_VERSION);
4692 nv->frame_payload_size = __constant_cpu_to_le16(2048);
4693 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4694 nv->exchange_count = __constant_cpu_to_le16(0);
4695 nv->hard_address = __constant_cpu_to_le16(124);
4696 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004697 nv->port_name[1] = 0x00 + ha->port_no;
David Miller4e08df32007-04-16 12:37:43 -07004698 nv->port_name[2] = 0x00;
4699 nv->port_name[3] = 0xe0;
4700 nv->port_name[4] = 0x8b;
4701 nv->port_name[5] = 0x1c;
4702 nv->port_name[6] = 0x55;
4703 nv->port_name[7] = 0x86;
4704 nv->node_name[0] = 0x20;
4705 nv->node_name[1] = 0x00;
4706 nv->node_name[2] = 0x00;
4707 nv->node_name[3] = 0xe0;
4708 nv->node_name[4] = 0x8b;
4709 nv->node_name[5] = 0x1c;
4710 nv->node_name[6] = 0x55;
4711 nv->node_name[7] = 0x86;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004712 qla24xx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07004713 nv->login_retry_count = __constant_cpu_to_le16(8);
4714 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
4715 nv->login_timeout = __constant_cpu_to_le16(0);
4716 nv->firmware_options_1 =
4717 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
4718 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
4719 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
4720 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
4721 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
4722 nv->efi_parameters = __constant_cpu_to_le32(0);
4723 nv->reset_delay = 5;
4724 nv->max_luns_per_target = __constant_cpu_to_le16(128);
4725 nv->port_down_retry_count = __constant_cpu_to_le16(30);
4726 nv->link_down_timeout = __constant_cpu_to_le16(30);
4727
4728 rval = 1;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004729 }
4730
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004731 if (!qla_ini_mode_enabled(vha)) {
4732 /* Don't enable full login after initial LIP */
4733 nv->firmware_options_1 &= __constant_cpu_to_le32(~BIT_13);
4734 /* Don't enable LIP full login for initiator */
4735 nv->host_p &= __constant_cpu_to_le32(~BIT_10);
4736 }
4737
4738 qlt_24xx_config_nvram_stage1(vha, nv);
4739
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004740 /* Reset Initialization control block */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004741 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004742
4743 /* Copy 1st segment. */
4744 dptr1 = (uint8_t *)icb;
4745 dptr2 = (uint8_t *)&nv->version;
4746 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
4747 while (cnt--)
4748 *dptr1++ = *dptr2++;
4749
4750 icb->login_retry_count = nv->login_retry_count;
Andrew Vasquez3ea66e22006-06-23 16:11:27 -07004751 icb->link_down_on_nos = nv->link_down_on_nos;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004752
4753 /* Copy 2nd segment. */
4754 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
4755 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
4756 cnt = (uint8_t *)&icb->reserved_3 -
4757 (uint8_t *)&icb->interrupt_delay_timer;
4758 while (cnt--)
4759 *dptr1++ = *dptr2++;
4760
4761 /*
4762 * Setup driver NVRAM options.
4763 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004764 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08004765 "QLA2462");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004766
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004767 qlt_24xx_config_nvram_stage2(vha, icb);
4768
Andrew Vasquez5341e862006-05-17 15:09:16 -07004769 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004770 /* Use alternate WWN? */
Andrew Vasquez5341e862006-05-17 15:09:16 -07004771 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
4772 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
4773 }
4774
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004775 /* Prepare nodename */
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004776 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004777 /*
4778 * Firmware will apply the following mask if the nodename was
4779 * not provided.
4780 */
4781 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
4782 icb->node_name[0] &= 0xF0;
4783 }
4784
4785 /* Set host adapter parameters. */
4786 ha->flags.disable_risc_code_load = 0;
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08004787 ha->flags.enable_lip_reset = 0;
4788 ha->flags.enable_lip_full_login =
4789 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
4790 ha->flags.enable_target_reset =
4791 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004792 ha->flags.enable_led_scheme = 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07004793 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004794
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004795 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
4796 (BIT_6 | BIT_5 | BIT_4)) >> 4;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004797
4798 memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
4799 sizeof(ha->fw_seriallink_options24));
4800
4801 /* save HBA serial number */
4802 ha->serial0 = icb->port_name[5];
4803 ha->serial1 = icb->port_name[6];
4804 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004805 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
4806 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004807
andrew.vasquez@qlogic.combc8fb3c2006-01-13 17:05:42 -08004808 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4809
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004810 ha->retry_count = le16_to_cpu(nv->login_retry_count);
4811
4812 /* Set minimum login_timeout to 4 seconds. */
4813 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
4814 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
4815 if (le16_to_cpu(nv->login_timeout) < 4)
4816 nv->login_timeout = __constant_cpu_to_le16(4);
4817 ha->login_timeout = le16_to_cpu(nv->login_timeout);
Seokmann Juc6852c42008-04-24 15:21:29 -07004818 icb->login_timeout = nv->login_timeout;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004819
Andrew Vasquez00a537b2008-02-28 14:06:11 -08004820 /* Set minimum RATOV to 100 tenths of a second. */
4821 ha->r_a_tov = 100;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004822
4823 ha->loop_reset_delay = nv->reset_delay;
4824
4825 /* Link Down Timeout = 0:
4826 *
4827 * When Port Down timer expires we will start returning
4828 * I/O's to OS with "DID_NO_CONNECT".
4829 *
4830 * Link Down Timeout != 0:
4831 *
4832 * The driver waits for the link to come up after link down
4833 * before returning I/Os to OS with "DID_NO_CONNECT".
4834 */
4835 if (le16_to_cpu(nv->link_down_timeout) == 0) {
4836 ha->loop_down_abort_time =
4837 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
4838 } else {
4839 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
4840 ha->loop_down_abort_time =
4841 (LOOP_DOWN_TIME - ha->link_down_timeout);
4842 }
4843
4844 /* Need enough time to try and get the port back. */
4845 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
4846 if (qlport_down_retry)
4847 ha->port_down_retry_count = qlport_down_retry;
4848
4849 /* Set login_retry_count */
4850 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
4851 if (ha->port_down_retry_count ==
4852 le16_to_cpu(nv->port_down_retry_count) &&
4853 ha->port_down_retry_count > 3)
4854 ha->login_retry_count = ha->port_down_retry_count;
4855 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
4856 ha->login_retry_count = ha->port_down_retry_count;
4857 if (ql2xloginretrycount)
4858 ha->login_retry_count = ql2xloginretrycount;
4859
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004860 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004861 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004862 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
4863 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
4864 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
4865 le16_to_cpu(icb->interrupt_delay_timer): 2;
4866 }
4867 icb->firmware_options_2 &= __constant_cpu_to_le32(
4868 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004869 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004870 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08004871 ha->zio_mode = QLA_ZIO_MODE_6;
4872
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004873 ql_log(ql_log_info, vha, 0x006f,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004874 "ZIO mode %d enabled; timer delay (%d us).\n",
4875 ha->zio_mode, ha->zio_timer * 100);
4876
4877 icb->firmware_options_2 |= cpu_to_le32(
4878 (uint32_t)ha->zio_mode);
4879 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004880 vha->flags.process_response_queue = 1;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004881 }
4882
David Miller4e08df32007-04-16 12:37:43 -07004883 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004884 ql_log(ql_log_warn, vha, 0x0070,
4885 "NVRAM configuration failed.\n");
David Miller4e08df32007-04-16 12:37:43 -07004886 }
4887 return (rval);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004888}
4889
Adrian Bunk413975a2006-06-30 02:33:06 -07004890static int
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004891qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
4892 uint32_t faddr)
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004893{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004894 int rval = QLA_SUCCESS;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004895 int segments, fragment;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004896 uint32_t *dcode, dlen;
4897 uint32_t risc_addr;
4898 uint32_t risc_size;
4899 uint32_t i;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004900 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004901 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004902
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004903 ql_dbg(ql_dbg_init, vha, 0x008b,
Chad Dupuiscfb09192011-11-18 09:03:07 -08004904 "FW: Loading firmware from flash (%x).\n", faddr);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004905
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004906 rval = QLA_SUCCESS;
4907
4908 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004909 dcode = (uint32_t *)req->ring;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004910 *srisc_addr = 0;
4911
4912 /* Validate firmware image by checking version. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004913 qla24xx_read_flash_data(vha, dcode, faddr + 4, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004914 for (i = 0; i < 4; i++)
4915 dcode[i] = be32_to_cpu(dcode[i]);
4916 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
4917 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
4918 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
4919 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004920 ql_log(ql_log_fatal, vha, 0x008c,
4921 "Unable to verify the integrity of flash firmware "
4922 "image.\n");
4923 ql_log(ql_log_fatal, vha, 0x008d,
4924 "Firmware data: %08x %08x %08x %08x.\n",
4925 dcode[0], dcode[1], dcode[2], dcode[3]);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004926
4927 return QLA_FUNCTION_FAILED;
4928 }
4929
4930 while (segments && rval == QLA_SUCCESS) {
4931 /* Read segment's load information. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004932 qla24xx_read_flash_data(vha, dcode, faddr, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004933
4934 risc_addr = be32_to_cpu(dcode[2]);
4935 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
4936 risc_size = be32_to_cpu(dcode[3]);
4937
4938 fragment = 0;
4939 while (risc_size > 0 && rval == QLA_SUCCESS) {
4940 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
4941 if (dlen > risc_size)
4942 dlen = risc_size;
4943
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004944 ql_dbg(ql_dbg_init, vha, 0x008e,
4945 "Loading risc segment@ risc addr %x "
4946 "number of dwords 0x%x offset 0x%x.\n",
4947 risc_addr, dlen, faddr);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004948
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004949 qla24xx_read_flash_data(vha, dcode, faddr, dlen);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004950 for (i = 0; i < dlen; i++)
4951 dcode[i] = swab32(dcode[i]);
4952
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004953 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004954 dlen);
4955 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004956 ql_log(ql_log_fatal, vha, 0x008f,
4957 "Failed to load segment %d of firmware.\n",
4958 fragment);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004959 break;
4960 }
4961
4962 faddr += dlen;
4963 risc_addr += dlen;
4964 risc_size -= dlen;
4965 fragment++;
4966 }
4967
4968 /* Next segment. */
4969 segments--;
4970 }
4971
4972 return rval;
4973}
4974
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004975#define QLA_FW_URL "ftp://ftp.qlogic.com/outgoing/linux/firmware/"
4976
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004977int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004978qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez54333832005-11-09 15:49:04 -08004979{
4980 int rval;
4981 int i, fragment;
4982 uint16_t *wcode, *fwcode;
4983 uint32_t risc_addr, risc_size, fwclen, wlen, *seg;
4984 struct fw_blob *blob;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004985 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004986 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez54333832005-11-09 15:49:04 -08004987
4988 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004989 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08004990 if (!blob) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07004991 ql_log(ql_log_info, vha, 0x0083,
4992 "Fimware image unavailable.\n");
4993 ql_log(ql_log_info, vha, 0x0084,
4994 "Firmware images can be retrieved from: "QLA_FW_URL ".\n");
Andrew Vasquez54333832005-11-09 15:49:04 -08004995 return QLA_FUNCTION_FAILED;
4996 }
4997
4998 rval = QLA_SUCCESS;
4999
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005000 wcode = (uint16_t *)req->ring;
Andrew Vasquez54333832005-11-09 15:49:04 -08005001 *srisc_addr = 0;
5002 fwcode = (uint16_t *)blob->fw->data;
5003 fwclen = 0;
5004
5005 /* Validate firmware image by checking version. */
5006 if (blob->fw->size < 8 * sizeof(uint16_t)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005007 ql_log(ql_log_fatal, vha, 0x0085,
5008 "Unable to verify integrity of firmware image (%Zd).\n",
Andrew Vasquez54333832005-11-09 15:49:04 -08005009 blob->fw->size);
5010 goto fail_fw_integrity;
5011 }
5012 for (i = 0; i < 4; i++)
5013 wcode[i] = be16_to_cpu(fwcode[i + 4]);
5014 if ((wcode[0] == 0xffff && wcode[1] == 0xffff && wcode[2] == 0xffff &&
5015 wcode[3] == 0xffff) || (wcode[0] == 0 && wcode[1] == 0 &&
5016 wcode[2] == 0 && wcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005017 ql_log(ql_log_fatal, vha, 0x0086,
5018 "Unable to verify integrity of firmware image.\n");
5019 ql_log(ql_log_fatal, vha, 0x0087,
5020 "Firmware data: %04x %04x %04x %04x.\n",
5021 wcode[0], wcode[1], wcode[2], wcode[3]);
Andrew Vasquez54333832005-11-09 15:49:04 -08005022 goto fail_fw_integrity;
5023 }
5024
5025 seg = blob->segs;
5026 while (*seg && rval == QLA_SUCCESS) {
5027 risc_addr = *seg;
5028 *srisc_addr = *srisc_addr == 0 ? *seg : *srisc_addr;
5029 risc_size = be16_to_cpu(fwcode[3]);
5030
5031 /* Validate firmware image size. */
5032 fwclen += risc_size * sizeof(uint16_t);
5033 if (blob->fw->size < fwclen) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005034 ql_log(ql_log_fatal, vha, 0x0088,
Andrew Vasquez54333832005-11-09 15:49:04 -08005035 "Unable to verify integrity of firmware image "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005036 "(%Zd).\n", blob->fw->size);
Andrew Vasquez54333832005-11-09 15:49:04 -08005037 goto fail_fw_integrity;
5038 }
5039
5040 fragment = 0;
5041 while (risc_size > 0 && rval == QLA_SUCCESS) {
5042 wlen = (uint16_t)(ha->fw_transfer_size >> 1);
5043 if (wlen > risc_size)
5044 wlen = risc_size;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005045 ql_dbg(ql_dbg_init, vha, 0x0089,
5046 "Loading risc segment@ risc addr %x number of "
5047 "words 0x%x.\n", risc_addr, wlen);
Andrew Vasquez54333832005-11-09 15:49:04 -08005048
5049 for (i = 0; i < wlen; i++)
5050 wcode[i] = swab16(fwcode[i]);
5051
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005052 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquez54333832005-11-09 15:49:04 -08005053 wlen);
5054 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005055 ql_log(ql_log_fatal, vha, 0x008a,
5056 "Failed to load segment %d of firmware.\n",
5057 fragment);
Andrew Vasquez54333832005-11-09 15:49:04 -08005058 break;
5059 }
5060
5061 fwcode += wlen;
5062 risc_addr += wlen;
5063 risc_size -= wlen;
5064 fragment++;
5065 }
5066
5067 /* Next segment. */
5068 seg++;
5069 }
5070 return rval;
5071
5072fail_fw_integrity:
5073 return QLA_FUNCTION_FAILED;
5074}
5075
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005076static int
5077qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005078{
5079 int rval;
5080 int segments, fragment;
5081 uint32_t *dcode, dlen;
5082 uint32_t risc_addr;
5083 uint32_t risc_size;
5084 uint32_t i;
Andrew Vasquez54333832005-11-09 15:49:04 -08005085 struct fw_blob *blob;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005086 uint32_t *fwcode, fwclen;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005087 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005088 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005089
Andrew Vasquez54333832005-11-09 15:49:04 -08005090 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005091 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08005092 if (!blob) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005093 ql_log(ql_log_warn, vha, 0x0090,
5094 "Fimware image unavailable.\n");
5095 ql_log(ql_log_warn, vha, 0x0091,
5096 "Firmware images can be retrieved from: "
5097 QLA_FW_URL ".\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07005098
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005099 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005100 }
5101
Chad Dupuiscfb09192011-11-18 09:03:07 -08005102 ql_dbg(ql_dbg_init, vha, 0x0092,
5103 "FW: Loading via request-firmware.\n");
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005104
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005105 rval = QLA_SUCCESS;
5106
5107 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005108 dcode = (uint32_t *)req->ring;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005109 *srisc_addr = 0;
Andrew Vasquez54333832005-11-09 15:49:04 -08005110 fwcode = (uint32_t *)blob->fw->data;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005111 fwclen = 0;
5112
5113 /* Validate firmware image by checking version. */
Andrew Vasquez54333832005-11-09 15:49:04 -08005114 if (blob->fw->size < 8 * sizeof(uint32_t)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005115 ql_log(ql_log_fatal, vha, 0x0093,
5116 "Unable to verify integrity of firmware image (%Zd).\n",
Andrew Vasquez54333832005-11-09 15:49:04 -08005117 blob->fw->size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005118 goto fail_fw_integrity;
5119 }
5120 for (i = 0; i < 4; i++)
5121 dcode[i] = be32_to_cpu(fwcode[i + 4]);
5122 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
5123 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
5124 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
5125 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005126 ql_log(ql_log_fatal, vha, 0x0094,
5127 "Unable to verify integrity of firmware image (%Zd).\n",
5128 blob->fw->size);
5129 ql_log(ql_log_fatal, vha, 0x0095,
5130 "Firmware data: %08x %08x %08x %08x.\n",
5131 dcode[0], dcode[1], dcode[2], dcode[3]);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005132 goto fail_fw_integrity;
5133 }
5134
5135 while (segments && rval == QLA_SUCCESS) {
5136 risc_addr = be32_to_cpu(fwcode[2]);
5137 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
5138 risc_size = be32_to_cpu(fwcode[3]);
5139
5140 /* Validate firmware image size. */
5141 fwclen += risc_size * sizeof(uint32_t);
Andrew Vasquez54333832005-11-09 15:49:04 -08005142 if (blob->fw->size < fwclen) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005143 ql_log(ql_log_fatal, vha, 0x0096,
Andrew Vasquez54333832005-11-09 15:49:04 -08005144 "Unable to verify integrity of firmware image "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005145 "(%Zd).\n", blob->fw->size);
Andrew Vasquez54333832005-11-09 15:49:04 -08005146
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005147 goto fail_fw_integrity;
5148 }
5149
5150 fragment = 0;
5151 while (risc_size > 0 && rval == QLA_SUCCESS) {
5152 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
5153 if (dlen > risc_size)
5154 dlen = risc_size;
5155
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005156 ql_dbg(ql_dbg_init, vha, 0x0097,
5157 "Loading risc segment@ risc addr %x "
5158 "number of dwords 0x%x.\n", risc_addr, dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005159
5160 for (i = 0; i < dlen; i++)
5161 dcode[i] = swab32(fwcode[i]);
5162
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005163 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
andrew.vasquez@qlogic.com590f98e2006-01-13 17:05:37 -08005164 dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005165 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005166 ql_log(ql_log_fatal, vha, 0x0098,
5167 "Failed to load segment %d of firmware.\n",
5168 fragment);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005169 break;
5170 }
5171
5172 fwcode += dlen;
5173 risc_addr += dlen;
5174 risc_size -= dlen;
5175 fragment++;
5176 }
5177
5178 /* Next segment. */
5179 segments--;
5180 }
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005181 return rval;
5182
5183fail_fw_integrity:
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005184 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07005185}
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005186
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005187int
5188qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
5189{
5190 int rval;
5191
Andrew Vasqueze337d902009-04-06 22:33:49 -07005192 if (ql2xfwloadbin == 1)
5193 return qla81xx_load_risc(vha, srisc_addr);
5194
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005195 /*
5196 * FW Load priority:
5197 * 1) Firmware via request-firmware interface (.bin file).
5198 * 2) Firmware residing in flash.
5199 */
5200 rval = qla24xx_load_risc_blob(vha, srisc_addr);
5201 if (rval == QLA_SUCCESS)
5202 return rval;
5203
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005204 return qla24xx_load_risc_flash(vha, srisc_addr,
5205 vha->hw->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005206}
5207
5208int
5209qla81xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
5210{
5211 int rval;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005212 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005213
Andrew Vasqueze337d902009-04-06 22:33:49 -07005214 if (ql2xfwloadbin == 2)
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005215 goto try_blob_fw;
Andrew Vasqueze337d902009-04-06 22:33:49 -07005216
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005217 /*
5218 * FW Load priority:
5219 * 1) Firmware residing in flash.
5220 * 2) Firmware via request-firmware interface (.bin file).
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005221 * 3) Golden-Firmware residing in flash -- limited operation.
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005222 */
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005223 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005224 if (rval == QLA_SUCCESS)
5225 return rval;
5226
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005227try_blob_fw:
5228 rval = qla24xx_load_risc_blob(vha, srisc_addr);
5229 if (rval == QLA_SUCCESS || !ha->flt_region_gold_fw)
5230 return rval;
5231
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005232 ql_log(ql_log_info, vha, 0x0099,
5233 "Attempting to fallback to golden firmware.\n");
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005234 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_gold_fw);
5235 if (rval != QLA_SUCCESS)
5236 return rval;
5237
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005238 ql_log(ql_log_info, vha, 0x009a, "Update operational firmware.\n");
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005239 ha->flags.running_gold_fw = 1;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07005240 return rval;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08005241}
5242
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005243void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005244qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005245{
5246 int ret, retries;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005247 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005248
Andrew Vasquez85880802009-12-15 21:29:46 -08005249 if (ha->flags.pci_channel_io_perm_failure)
5250 return;
Andrew Vasqueze4289242007-07-19 15:05:56 -07005251 if (!IS_FWI2_CAPABLE(ha))
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005252 return;
Andrew Vasquez75edf812007-05-07 07:43:00 -07005253 if (!ha->fw_major_version)
5254 return;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005255
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005256 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez7c7f1f22008-02-28 14:06:09 -08005257 for (retries = 5; ret != QLA_SUCCESS && ret != QLA_FUNCTION_TIMEOUT &&
Andrew Vasquezb469a7c2009-04-06 22:33:48 -07005258 ret != QLA_INVALID_COMMAND && retries ; retries--) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005259 ha->isp_ops->reset_chip(vha);
5260 if (ha->isp_ops->chip_diag(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005261 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005262 if (qla2x00_setup_chip(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005263 continue;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005264 ql_log(ql_log_info, vha, 0x8015,
5265 "Attempting retry of stop-firmware command.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005266 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez18c6c122006-10-13 09:33:38 -07005267 }
5268}
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005269
5270int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005271qla24xx_configure_vhba(scsi_qla_host_t *vha)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005272{
5273 int rval = QLA_SUCCESS;
Chad Dupuis0b91d112012-02-09 11:15:42 -08005274 int rval2;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005275 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005276 struct qla_hw_data *ha = vha->hw;
5277 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07005278 struct req_que *req;
5279 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005280
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005281 if (!vha->vp_idx)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005282 return -EINVAL;
5283
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005284 rval = qla2x00_fw_ready(base_vha);
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07005285 if (ha->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07005286 req = ha->req_q_map[0];
5287 else
5288 req = vha->req;
5289 rsp = req->rsp;
5290
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005291 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005292 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005293 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005294 }
5295
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005296 vha->flags.management_server_logged_in = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005297
5298 /* Login to SNS first */
Chad Dupuis0b91d112012-02-09 11:15:42 -08005299 rval2 = ha->isp_ops->fabric_login(vha, NPH_SNS, 0xff, 0xff, 0xfc, mb,
5300 BIT_1);
5301 if (rval2 != QLA_SUCCESS || mb[0] != MBS_COMMAND_COMPLETE) {
5302 if (rval2 == QLA_MEMORY_ALLOC_FAILED)
5303 ql_dbg(ql_dbg_init, vha, 0x0120,
5304 "Failed SNS login: loop_id=%x, rval2=%d\n",
5305 NPH_SNS, rval2);
5306 else
5307 ql_dbg(ql_dbg_init, vha, 0x0103,
5308 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
5309 "mb[2]=%x mb[6]=%x mb[7]=%x.\n",
5310 NPH_SNS, mb[0], mb[1], mb[2], mb[6], mb[7]);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005311 return (QLA_FUNCTION_FAILED);
5312 }
5313
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005314 atomic_set(&vha->loop_down_timer, 0);
5315 atomic_set(&vha->loop_state, LOOP_UP);
5316 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5317 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
5318 rval = qla2x00_loop_resync(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005319
5320 return rval;
5321}
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005322
5323/* 84XX Support **************************************************************/
5324
5325static LIST_HEAD(qla_cs84xx_list);
5326static DEFINE_MUTEX(qla_cs84xx_mutex);
5327
5328static struct qla_chip_state_84xx *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005329qla84xx_get_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005330{
5331 struct qla_chip_state_84xx *cs84xx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005332 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005333
5334 mutex_lock(&qla_cs84xx_mutex);
5335
5336 /* Find any shared 84xx chip. */
5337 list_for_each_entry(cs84xx, &qla_cs84xx_list, list) {
5338 if (cs84xx->bus == ha->pdev->bus) {
5339 kref_get(&cs84xx->kref);
5340 goto done;
5341 }
5342 }
5343
5344 cs84xx = kzalloc(sizeof(*cs84xx), GFP_KERNEL);
5345 if (!cs84xx)
5346 goto done;
5347
5348 kref_init(&cs84xx->kref);
5349 spin_lock_init(&cs84xx->access_lock);
5350 mutex_init(&cs84xx->fw_update_mutex);
5351 cs84xx->bus = ha->pdev->bus;
5352
5353 list_add_tail(&cs84xx->list, &qla_cs84xx_list);
5354done:
5355 mutex_unlock(&qla_cs84xx_mutex);
5356 return cs84xx;
5357}
5358
5359static void
5360__qla84xx_chip_release(struct kref *kref)
5361{
5362 struct qla_chip_state_84xx *cs84xx =
5363 container_of(kref, struct qla_chip_state_84xx, kref);
5364
5365 mutex_lock(&qla_cs84xx_mutex);
5366 list_del(&cs84xx->list);
5367 mutex_unlock(&qla_cs84xx_mutex);
5368 kfree(cs84xx);
5369}
5370
5371void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005372qla84xx_put_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005373{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005374 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005375 if (ha->cs84xx)
5376 kref_put(&ha->cs84xx->kref, __qla84xx_chip_release);
5377}
5378
5379static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005380qla84xx_init_chip(scsi_qla_host_t *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005381{
5382 int rval;
5383 uint16_t status[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005384 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005385
5386 mutex_lock(&ha->cs84xx->fw_update_mutex);
5387
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005388 rval = qla84xx_verify_chip(vha, status);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005389
5390 mutex_unlock(&ha->cs84xx->fw_update_mutex);
5391
5392 return rval != QLA_SUCCESS || status[0] ? QLA_FUNCTION_FAILED:
5393 QLA_SUCCESS;
5394}
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005395
5396/* 81XX Support **************************************************************/
5397
5398int
5399qla81xx_nvram_config(scsi_qla_host_t *vha)
5400{
5401 int rval;
5402 struct init_cb_81xx *icb;
5403 struct nvram_81xx *nv;
5404 uint32_t *dptr;
5405 uint8_t *dptr1, *dptr2;
5406 uint32_t chksum;
5407 uint16_t cnt;
5408 struct qla_hw_data *ha = vha->hw;
5409
5410 rval = QLA_SUCCESS;
5411 icb = (struct init_cb_81xx *)ha->init_cb;
5412 nv = ha->nvram;
5413
5414 /* Determine NVRAM starting address. */
5415 ha->nvram_size = sizeof(struct nvram_81xx);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005416 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005417
5418 /* Get VPD data into cache */
5419 ha->vpd = ha->nvram + VPD_OFFSET;
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005420 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
5421 ha->vpd_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005422
5423 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005424 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005425 ha->nvram_size);
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005426 dptr = (uint32_t *)nv;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005427 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
5428 chksum += le32_to_cpu(*dptr++);
5429
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005430 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x0111,
5431 "Contents of NVRAM:\n");
5432 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0112,
5433 (uint8_t *)nv, ha->nvram_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005434
5435 /* Bad NVRAM data, set defaults parameters. */
5436 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
5437 || nv->id[3] != ' ' ||
5438 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
5439 /* Reset NVRAM data. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005440 ql_log(ql_log_info, vha, 0x0073,
Raul Porcel9e336522012-05-15 14:34:08 -04005441 "Inconsistent NVRAM detected: checksum=0x%x id=%c "
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005442 "version=0x%x.\n", chksum, nv->id[0],
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005443 le16_to_cpu(nv->nvram_version));
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005444 ql_log(ql_log_info, vha, 0x0074,
5445 "Falling back to functioning (yet invalid -- WWPN) "
5446 "defaults.\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005447
5448 /*
5449 * Set default initialization control block.
5450 */
5451 memset(nv, 0, ha->nvram_size);
5452 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
5453 nv->version = __constant_cpu_to_le16(ICB_VERSION);
5454 nv->frame_payload_size = __constant_cpu_to_le16(2048);
5455 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5456 nv->exchange_count = __constant_cpu_to_le16(0);
5457 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005458 nv->port_name[1] = 0x00 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005459 nv->port_name[2] = 0x00;
5460 nv->port_name[3] = 0xe0;
5461 nv->port_name[4] = 0x8b;
5462 nv->port_name[5] = 0x1c;
5463 nv->port_name[6] = 0x55;
5464 nv->port_name[7] = 0x86;
5465 nv->node_name[0] = 0x20;
5466 nv->node_name[1] = 0x00;
5467 nv->node_name[2] = 0x00;
5468 nv->node_name[3] = 0xe0;
5469 nv->node_name[4] = 0x8b;
5470 nv->node_name[5] = 0x1c;
5471 nv->node_name[6] = 0x55;
5472 nv->node_name[7] = 0x86;
5473 nv->login_retry_count = __constant_cpu_to_le16(8);
5474 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
5475 nv->login_timeout = __constant_cpu_to_le16(0);
5476 nv->firmware_options_1 =
5477 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
5478 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
5479 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
5480 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
5481 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
5482 nv->efi_parameters = __constant_cpu_to_le32(0);
5483 nv->reset_delay = 5;
5484 nv->max_luns_per_target = __constant_cpu_to_le16(128);
5485 nv->port_down_retry_count = __constant_cpu_to_le16(30);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005486 nv->link_down_timeout = __constant_cpu_to_le16(180);
Andrew Vasquezeeebcc92009-06-03 09:55:24 -07005487 nv->enode_mac[0] = 0x00;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005488 nv->enode_mac[1] = 0xC0;
5489 nv->enode_mac[2] = 0xDD;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005490 nv->enode_mac[3] = 0x04;
5491 nv->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005492 nv->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005493
5494 rval = 1;
5495 }
5496
5497 /* Reset Initialization control block */
Andrew Vasquez773120e2011-05-10 11:30:14 -07005498 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005499
5500 /* Copy 1st segment. */
5501 dptr1 = (uint8_t *)icb;
5502 dptr2 = (uint8_t *)&nv->version;
5503 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
5504 while (cnt--)
5505 *dptr1++ = *dptr2++;
5506
5507 icb->login_retry_count = nv->login_retry_count;
5508
5509 /* Copy 2nd segment. */
5510 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
5511 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
5512 cnt = (uint8_t *)&icb->reserved_5 -
5513 (uint8_t *)&icb->interrupt_delay_timer;
5514 while (cnt--)
5515 *dptr1++ = *dptr2++;
5516
5517 memcpy(icb->enode_mac, nv->enode_mac, sizeof(icb->enode_mac));
5518 /* Some boards (with valid NVRAMs) still have NULL enode_mac!! */
5519 if (!memcmp(icb->enode_mac, "\0\0\0\0\0\0", sizeof(icb->enode_mac))) {
Andrew Vasquez69e5f1e2012-02-09 11:15:35 -08005520 icb->enode_mac[0] = 0x00;
5521 icb->enode_mac[1] = 0xC0;
5522 icb->enode_mac[2] = 0xDD;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005523 icb->enode_mac[3] = 0x04;
5524 icb->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005525 icb->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005526 }
5527
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07005528 /* Use extended-initialization control block. */
5529 memcpy(ha->ex_init_cb, &nv->ex_version, sizeof(*ha->ex_init_cb));
5530
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005531 /*
5532 * Setup driver NVRAM options.
5533 */
5534 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Giridhar Malavalia9083012010-04-12 17:59:55 -07005535 "QLE8XXX");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005536
5537 /* Use alternate WWN? */
5538 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
5539 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
5540 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
5541 }
5542
5543 /* Prepare nodename */
5544 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
5545 /*
5546 * Firmware will apply the following mask if the nodename was
5547 * not provided.
5548 */
5549 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
5550 icb->node_name[0] &= 0xF0;
5551 }
5552
5553 /* Set host adapter parameters. */
5554 ha->flags.disable_risc_code_load = 0;
5555 ha->flags.enable_lip_reset = 0;
5556 ha->flags.enable_lip_full_login =
5557 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
5558 ha->flags.enable_target_reset =
5559 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
5560 ha->flags.enable_led_scheme = 0;
5561 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
5562
5563 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
5564 (BIT_6 | BIT_5 | BIT_4)) >> 4;
5565
5566 /* save HBA serial number */
5567 ha->serial0 = icb->port_name[5];
5568 ha->serial1 = icb->port_name[6];
5569 ha->serial2 = icb->port_name[7];
5570 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
5571 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
5572
5573 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5574
5575 ha->retry_count = le16_to_cpu(nv->login_retry_count);
5576
5577 /* Set minimum login_timeout to 4 seconds. */
5578 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
5579 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
5580 if (le16_to_cpu(nv->login_timeout) < 4)
5581 nv->login_timeout = __constant_cpu_to_le16(4);
5582 ha->login_timeout = le16_to_cpu(nv->login_timeout);
5583 icb->login_timeout = nv->login_timeout;
5584
5585 /* Set minimum RATOV to 100 tenths of a second. */
5586 ha->r_a_tov = 100;
5587
5588 ha->loop_reset_delay = nv->reset_delay;
5589
5590 /* Link Down Timeout = 0:
5591 *
5592 * When Port Down timer expires we will start returning
5593 * I/O's to OS with "DID_NO_CONNECT".
5594 *
5595 * Link Down Timeout != 0:
5596 *
5597 * The driver waits for the link to come up after link down
5598 * before returning I/Os to OS with "DID_NO_CONNECT".
5599 */
5600 if (le16_to_cpu(nv->link_down_timeout) == 0) {
5601 ha->loop_down_abort_time =
5602 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
5603 } else {
5604 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
5605 ha->loop_down_abort_time =
5606 (LOOP_DOWN_TIME - ha->link_down_timeout);
5607 }
5608
5609 /* Need enough time to try and get the port back. */
5610 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
5611 if (qlport_down_retry)
5612 ha->port_down_retry_count = qlport_down_retry;
5613
5614 /* Set login_retry_count */
5615 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
5616 if (ha->port_down_retry_count ==
5617 le16_to_cpu(nv->port_down_retry_count) &&
5618 ha->port_down_retry_count > 3)
5619 ha->login_retry_count = ha->port_down_retry_count;
5620 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
5621 ha->login_retry_count = ha->port_down_retry_count;
5622 if (ql2xloginretrycount)
5623 ha->login_retry_count = ql2xloginretrycount;
5624
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08005625 /* if not running MSI-X we need handshaking on interrupts */
5626 if (!vha->hw->flags.msix_enabled && IS_QLA83XX(ha))
5627 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_22);
5628
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005629 /* Enable ZIO. */
5630 if (!vha->flags.init_done) {
5631 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
5632 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
5633 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
5634 le16_to_cpu(icb->interrupt_delay_timer): 2;
5635 }
5636 icb->firmware_options_2 &= __constant_cpu_to_le32(
5637 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
5638 vha->flags.process_response_queue = 0;
5639 if (ha->zio_mode != QLA_ZIO_DISABLED) {
5640 ha->zio_mode = QLA_ZIO_MODE_6;
5641
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005642 ql_log(ql_log_info, vha, 0x0075,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005643 "ZIO mode %d enabled; timer delay (%d us).\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005644 ha->zio_mode,
5645 ha->zio_timer * 100);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005646
5647 icb->firmware_options_2 |= cpu_to_le32(
5648 (uint32_t)ha->zio_mode);
5649 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
5650 vha->flags.process_response_queue = 1;
5651 }
5652
5653 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005654 ql_log(ql_log_warn, vha, 0x0076,
5655 "NVRAM configuration failed.\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005656 }
5657 return (rval);
5658}
5659
Giridhar Malavalia9083012010-04-12 17:59:55 -07005660int
5661qla82xx_restart_isp(scsi_qla_host_t *vha)
5662{
5663 int status, rval;
5664 uint32_t wait_time;
5665 struct qla_hw_data *ha = vha->hw;
5666 struct req_que *req = ha->req_q_map[0];
5667 struct rsp_que *rsp = ha->rsp_q_map[0];
5668 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07005669 unsigned long flags;
Giridhar Malavalia9083012010-04-12 17:59:55 -07005670
5671 status = qla2x00_init_rings(vha);
5672 if (!status) {
5673 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5674 ha->flags.chip_reset_done = 1;
5675
5676 status = qla2x00_fw_ready(vha);
5677 if (!status) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005678 ql_log(ql_log_info, vha, 0x803c,
5679 "Start configure loop, status =%d.\n", status);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005680
5681 /* Issue a marker after FW becomes ready. */
5682 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
5683
5684 vha->flags.online = 1;
5685 /* Wait at most MAX_TARGET RSCNs for a stable link. */
5686 wait_time = 256;
5687 do {
5688 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5689 qla2x00_configure_loop(vha);
5690 wait_time--;
5691 } while (!atomic_read(&vha->loop_down_timer) &&
5692 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags)) &&
5693 wait_time &&
5694 (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)));
5695 }
5696
5697 /* if no cable then assume it's good */
5698 if ((vha->device_flags & DFLG_NO_CABLE))
5699 status = 0;
5700
Chad Dupuiscfb09192011-11-18 09:03:07 -08005701 ql_log(ql_log_info, vha, 0x8000,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005702 "Configure loop done, status = 0x%x.\n", status);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005703 }
5704
5705 if (!status) {
5706 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5707
5708 if (!atomic_read(&vha->loop_down_timer)) {
5709 /*
5710 * Issue marker command only when we are going
5711 * to start the I/O .
5712 */
5713 vha->marker_needed = 1;
5714 }
5715
5716 vha->flags.online = 1;
5717
5718 ha->isp_ops->enable_intrs(ha);
5719
5720 ha->isp_abort_cnt = 0;
5721 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
5722
Saurav Kashyap53296782011-05-10 11:30:06 -07005723 /* Update the firmware version */
Giridhar Malavali31731672011-08-16 11:31:54 -07005724 status = qla82xx_check_md_needed(vha);
Saurav Kashyap53296782011-05-10 11:30:06 -07005725
Giridhar Malavalia9083012010-04-12 17:59:55 -07005726 if (ha->fce) {
5727 ha->flags.fce_enabled = 1;
5728 memset(ha->fce, 0,
5729 fce_calc_size(ha->fce_bufs));
5730 rval = qla2x00_enable_fce_trace(vha,
5731 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
5732 &ha->fce_bufs);
5733 if (rval) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005734 ql_log(ql_log_warn, vha, 0x8001,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005735 "Unable to reinitialize FCE (%d).\n",
5736 rval);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005737 ha->flags.fce_enabled = 0;
5738 }
5739 }
5740
5741 if (ha->eft) {
5742 memset(ha->eft, 0, EFT_SIZE);
5743 rval = qla2x00_enable_eft_trace(vha,
5744 ha->eft_dma, EFT_NUM_BUFFERS);
5745 if (rval) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005746 ql_log(ql_log_warn, vha, 0x8010,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005747 "Unable to reinitialize EFT (%d).\n",
5748 rval);
Giridhar Malavalia9083012010-04-12 17:59:55 -07005749 }
5750 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005751 }
5752
5753 if (!status) {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005754 ql_dbg(ql_dbg_taskm, vha, 0x8011,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005755 "qla82xx_restart_isp succeeded.\n");
Arun Easifeafb7b2010-09-03 14:57:00 -07005756
5757 spin_lock_irqsave(&ha->vport_slock, flags);
5758 list_for_each_entry(vp, &ha->vp_list, list) {
5759 if (vp->vp_idx) {
5760 atomic_inc(&vp->vref_count);
5761 spin_unlock_irqrestore(&ha->vport_slock, flags);
5762
Giridhar Malavalia9083012010-04-12 17:59:55 -07005763 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07005764
5765 spin_lock_irqsave(&ha->vport_slock, flags);
5766 atomic_dec(&vp->vref_count);
5767 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005768 }
Arun Easifeafb7b2010-09-03 14:57:00 -07005769 spin_unlock_irqrestore(&ha->vport_slock, flags);
5770
Giridhar Malavalia9083012010-04-12 17:59:55 -07005771 } else {
Chad Dupuiscfb09192011-11-18 09:03:07 -08005772 ql_log(ql_log_warn, vha, 0x8016,
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005773 "qla82xx_restart_isp **** FAILED ****.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -07005774 }
5775
5776 return status;
5777}
5778
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005779void
Andrew Vasquezae97c912010-02-18 10:07:28 -08005780qla81xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005781{
Andrew Vasquezae97c912010-02-18 10:07:28 -08005782 struct qla_hw_data *ha = vha->hw;
5783
5784 if (!ql2xetsenable)
5785 return;
5786
5787 /* Enable ETS Burst. */
5788 memset(ha->fw_options, 0, sizeof(ha->fw_options));
5789 ha->fw_options[2] |= BIT_9;
5790 qla2x00_set_fw_options(vha, ha->fw_options);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005791}
Sarang Radke09ff7012010-03-19 17:03:59 -07005792
5793/*
5794 * qla24xx_get_fcp_prio
5795 * Gets the fcp cmd priority value for the logged in port.
5796 * Looks for a match of the port descriptors within
5797 * each of the fcp prio config entries. If a match is found,
5798 * the tag (priority) value is returned.
5799 *
5800 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005801 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07005802 * fcport = port structure pointer.
5803 *
5804 * Return:
Andrew Vasquez6c452a42010-03-19 17:04:02 -07005805 * non-zero (if found)
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005806 * -1 (if not found)
Sarang Radke09ff7012010-03-19 17:03:59 -07005807 *
5808 * Context:
5809 * Kernel context
5810 */
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005811static int
Sarang Radke09ff7012010-03-19 17:03:59 -07005812qla24xx_get_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
5813{
5814 int i, entries;
5815 uint8_t pid_match, wwn_match;
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005816 int priority;
Sarang Radke09ff7012010-03-19 17:03:59 -07005817 uint32_t pid1, pid2;
5818 uint64_t wwn1, wwn2;
5819 struct qla_fcp_prio_entry *pri_entry;
5820 struct qla_hw_data *ha = vha->hw;
5821
5822 if (!ha->fcp_prio_cfg || !ha->flags.fcp_prio_enabled)
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005823 return -1;
Sarang Radke09ff7012010-03-19 17:03:59 -07005824
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005825 priority = -1;
Sarang Radke09ff7012010-03-19 17:03:59 -07005826 entries = ha->fcp_prio_cfg->num_entries;
5827 pri_entry = &ha->fcp_prio_cfg->entry[0];
5828
5829 for (i = 0; i < entries; i++) {
5830 pid_match = wwn_match = 0;
5831
5832 if (!(pri_entry->flags & FCP_PRIO_ENTRY_VALID)) {
5833 pri_entry++;
5834 continue;
5835 }
5836
5837 /* check source pid for a match */
5838 if (pri_entry->flags & FCP_PRIO_ENTRY_SPID_VALID) {
5839 pid1 = pri_entry->src_pid & INVALID_PORT_ID;
5840 pid2 = vha->d_id.b24 & INVALID_PORT_ID;
5841 if (pid1 == INVALID_PORT_ID)
5842 pid_match++;
5843 else if (pid1 == pid2)
5844 pid_match++;
5845 }
5846
5847 /* check destination pid for a match */
5848 if (pri_entry->flags & FCP_PRIO_ENTRY_DPID_VALID) {
5849 pid1 = pri_entry->dst_pid & INVALID_PORT_ID;
5850 pid2 = fcport->d_id.b24 & INVALID_PORT_ID;
5851 if (pid1 == INVALID_PORT_ID)
5852 pid_match++;
5853 else if (pid1 == pid2)
5854 pid_match++;
5855 }
5856
5857 /* check source WWN for a match */
5858 if (pri_entry->flags & FCP_PRIO_ENTRY_SWWN_VALID) {
5859 wwn1 = wwn_to_u64(vha->port_name);
5860 wwn2 = wwn_to_u64(pri_entry->src_wwpn);
5861 if (wwn2 == (uint64_t)-1)
5862 wwn_match++;
5863 else if (wwn1 == wwn2)
5864 wwn_match++;
5865 }
5866
5867 /* check destination WWN for a match */
5868 if (pri_entry->flags & FCP_PRIO_ENTRY_DWWN_VALID) {
5869 wwn1 = wwn_to_u64(fcport->port_name);
5870 wwn2 = wwn_to_u64(pri_entry->dst_wwpn);
5871 if (wwn2 == (uint64_t)-1)
5872 wwn_match++;
5873 else if (wwn1 == wwn2)
5874 wwn_match++;
5875 }
5876
5877 if (pid_match == 2 || wwn_match == 2) {
5878 /* Found a matching entry */
5879 if (pri_entry->flags & FCP_PRIO_ENTRY_TAG_VALID)
5880 priority = pri_entry->tag;
5881 break;
5882 }
5883
5884 pri_entry++;
5885 }
5886
5887 return priority;
5888}
5889
5890/*
5891 * qla24xx_update_fcport_fcp_prio
5892 * Activates fcp priority for the logged in fc port
5893 *
5894 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005895 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07005896 * fcp = port structure pointer.
5897 *
5898 * Return:
5899 * QLA_SUCCESS or QLA_FUNCTION_FAILED
5900 *
5901 * Context:
5902 * Kernel context.
5903 */
5904int
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005905qla24xx_update_fcport_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
Sarang Radke09ff7012010-03-19 17:03:59 -07005906{
5907 int ret;
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005908 int priority;
Sarang Radke09ff7012010-03-19 17:03:59 -07005909 uint16_t mb[5];
5910
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005911 if (fcport->port_type != FCT_TARGET ||
5912 fcport->loop_id == FC_NO_LOOP_ID)
Sarang Radke09ff7012010-03-19 17:03:59 -07005913 return QLA_FUNCTION_FAILED;
5914
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005915 priority = qla24xx_get_fcp_prio(vha, fcport);
Andrew Vasquezf28a0a92011-03-30 11:46:18 -07005916 if (priority < 0)
5917 return QLA_FUNCTION_FAILED;
5918
Saurav Kashyapa00f6292011-11-18 09:03:19 -08005919 if (IS_QLA82XX(vha->hw)) {
5920 fcport->fcp_prio = priority & 0xf;
5921 return QLA_SUCCESS;
5922 }
5923
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005924 ret = qla24xx_set_fcp_prio(vha, fcport->loop_id, priority, mb);
Chad Dupuiscfb09192011-11-18 09:03:07 -08005925 if (ret == QLA_SUCCESS) {
5926 if (fcport->fcp_prio != priority)
5927 ql_dbg(ql_dbg_user, vha, 0x709e,
5928 "Updated FCP_CMND priority - value=%d loop_id=%d "
5929 "port_id=%02x%02x%02x.\n", priority,
5930 fcport->loop_id, fcport->d_id.b.domain,
5931 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Saurav Kashyapa00f6292011-11-18 09:03:19 -08005932 fcport->fcp_prio = priority & 0xf;
Chad Dupuiscfb09192011-11-18 09:03:07 -08005933 } else
Saurav Kashyap7c3df132011-07-14 12:00:13 -07005934 ql_dbg(ql_dbg_user, vha, 0x704f,
Chad Dupuiscfb09192011-11-18 09:03:07 -08005935 "Unable to update FCP_CMND priority - ret=0x%x for "
5936 "loop_id=%d port_id=%02x%02x%02x.\n", ret, fcport->loop_id,
5937 fcport->d_id.b.domain, fcport->d_id.b.area,
5938 fcport->d_id.b.al_pa);
Sarang Radke09ff7012010-03-19 17:03:59 -07005939 return ret;
5940}
5941
5942/*
5943 * qla24xx_update_all_fcp_prio
5944 * Activates fcp priority for all the logged in ports
5945 *
5946 * Input:
5947 * ha = adapter block pointer.
5948 *
5949 * Return:
5950 * QLA_SUCCESS or QLA_FUNCTION_FAILED
5951 *
5952 * Context:
5953 * Kernel context.
5954 */
5955int
5956qla24xx_update_all_fcp_prio(scsi_qla_host_t *vha)
5957{
5958 int ret;
5959 fc_port_t *fcport;
5960
5961 ret = QLA_FUNCTION_FAILED;
5962 /* We need to set priority for all logged in ports */
5963 list_for_each_entry(fcport, &vha->vp_fcports, list)
5964 ret = qla24xx_update_fcport_fcp_prio(vha, fcport);
5965
5966 return ret;
5967}