blob: c8ca25a8f2c23ac16b7e555bb41bc6ebb087fc84 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Giridhar Malavalide7c5d02010-07-23 15:28:36 +05003 * Copyright (c) 2003-2010 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 Vasquez01071092005-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
Linus Torvalds1da177e2005-04-16 15:20:36 -070020/*
21* QLogic ISP2x00 Hardware Support Function Prototypes.
22*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070023static int qla2x00_isp_firmware(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024static int qla2x00_setup_chip(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static int qla2x00_init_rings(scsi_qla_host_t *);
26static int qla2x00_fw_ready(scsi_qla_host_t *);
27static int qla2x00_configure_hba(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static int qla2x00_configure_loop(scsi_qla_host_t *);
29static int qla2x00_configure_local_loop(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static int qla2x00_configure_fabric(scsi_qla_host_t *);
31static int qla2x00_find_all_fabric_devs(scsi_qla_host_t *, struct list_head *);
32static int qla2x00_device_resync(scsi_qla_host_t *);
33static int qla2x00_fabric_dev_login(scsi_qla_host_t *, fc_port_t *,
34 uint16_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36static int qla2x00_restart_isp(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Anirban Chakrabortye315cd22008-11-06 10:40:51 -080038static int qla2x00_find_new_loop_id(scsi_qla_host_t *, fc_port_t *);
Adrian Bunk413975a2006-06-30 02:33:06 -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
46static void
47qla2x00_ctx_sp_timeout(unsigned long __data)
48{
49 srb_t *sp = (srb_t *)__data;
50 struct srb_ctx *ctx;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070051 struct srb_iocb *iocb;
Andrew Vasquezac280b62009-08-20 11:06:05 -070052 fc_port_t *fcport = sp->fcport;
53 struct qla_hw_data *ha = fcport->vha->hw;
54 struct req_que *req;
55 unsigned long flags;
56
57 spin_lock_irqsave(&ha->hardware_lock, flags);
58 req = ha->req_q_map[0];
59 req->outstanding_cmds[sp->handle] = NULL;
60 ctx = sp->ctx;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070061 iocb = ctx->u.iocb_cmd;
62 iocb->timeout(sp);
Madhuranath Iyengar49163922010-05-04 15:01:28 -070063 iocb->free(sp);
Andrew Vasquez6ac52602010-05-28 15:08:19 -070064 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquezac280b62009-08-20 11:06:05 -070065}
66
Andrew Vasquez3dbe7562010-07-23 15:28:37 +050067static void
Andrew Vasquezac280b62009-08-20 11:06:05 -070068qla2x00_ctx_sp_free(srb_t *sp)
69{
70 struct srb_ctx *ctx = sp->ctx;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070071 struct srb_iocb *iocb = ctx->u.iocb_cmd;
Arun Easifeafb7b2010-09-03 14:57:00 -070072 struct scsi_qla_host *vha = sp->fcport->vha;
Andrew Vasquezac280b62009-08-20 11:06:05 -070073
Chad Dupuis4d97cc52010-10-15 11:27:41 -070074 del_timer(&iocb->timer);
Madhuranath Iyengar49163922010-05-04 15:01:28 -070075 kfree(iocb);
Andrew Vasquezac280b62009-08-20 11:06:05 -070076 kfree(ctx);
77 mempool_free(sp, sp->fcport->vha->hw->srb_mempool);
Arun Easifeafb7b2010-09-03 14:57:00 -070078
79 QLA_VHA_MARK_NOT_BUSY(vha);
Andrew Vasquezac280b62009-08-20 11:06:05 -070080}
81
82inline srb_t *
83qla2x00_get_ctx_sp(scsi_qla_host_t *vha, fc_port_t *fcport, size_t size,
84 unsigned long tmo)
85{
Arun Easifeafb7b2010-09-03 14:57:00 -070086 srb_t *sp = NULL;
Andrew Vasquezac280b62009-08-20 11:06:05 -070087 struct qla_hw_data *ha = vha->hw;
88 struct srb_ctx *ctx;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070089 struct srb_iocb *iocb;
Arun Easifeafb7b2010-09-03 14:57:00 -070090 uint8_t bail;
91
92 QLA_VHA_MARK_BUSY(vha, bail);
93 if (bail)
94 return NULL;
Andrew Vasquezac280b62009-08-20 11:06:05 -070095
96 sp = mempool_alloc(ha->srb_mempool, GFP_KERNEL);
97 if (!sp)
98 goto done;
99 ctx = kzalloc(size, GFP_KERNEL);
100 if (!ctx) {
101 mempool_free(sp, ha->srb_mempool);
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700102 sp = NULL;
103 goto done;
104 }
105 iocb = kzalloc(sizeof(struct srb_iocb), GFP_KERNEL);
106 if (!iocb) {
107 mempool_free(sp, ha->srb_mempool);
108 sp = NULL;
109 kfree(ctx);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700110 goto done;
111 }
112
113 memset(sp, 0, sizeof(*sp));
114 sp->fcport = fcport;
115 sp->ctx = ctx;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700116 ctx->u.iocb_cmd = iocb;
117 iocb->free = qla2x00_ctx_sp_free;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700118
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700119 init_timer(&iocb->timer);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700120 if (!tmo)
121 goto done;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700122 iocb->timer.expires = jiffies + tmo * HZ;
123 iocb->timer.data = (unsigned long)sp;
124 iocb->timer.function = qla2x00_ctx_sp_timeout;
125 add_timer(&iocb->timer);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700126done:
Arun Easifeafb7b2010-09-03 14:57:00 -0700127 if (!sp)
128 QLA_VHA_MARK_NOT_BUSY(vha);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700129 return sp;
130}
131
132/* Asynchronous Login/Logout Routines -------------------------------------- */
133
Andrew Vasquez5b914902010-05-28 15:08:30 -0700134static inline unsigned long
135qla2x00_get_async_timeout(struct scsi_qla_host *vha)
136{
137 unsigned long tmo;
138 struct qla_hw_data *ha = vha->hw;
139
140 /* Firmware should use switch negotiated r_a_tov for timeout. */
141 tmo = ha->r_a_tov / 10 * 2;
142 if (!IS_FWI2_CAPABLE(ha)) {
143 /*
144 * Except for earlier ISPs where the timeout is seeded from the
145 * initialization control block.
146 */
147 tmo = ha->login_timeout;
148 }
149 return tmo;
150}
Andrew Vasquezac280b62009-08-20 11:06:05 -0700151
152static void
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700153qla2x00_async_iocb_timeout(srb_t *sp)
Andrew Vasquezac280b62009-08-20 11:06:05 -0700154{
155 fc_port_t *fcport = sp->fcport;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700156 struct srb_ctx *ctx = sp->ctx;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700157
158 DEBUG2(printk(KERN_WARNING
Andrew Vasquezd3fa9e72010-05-28 15:08:16 -0700159 "scsi(%ld:%x): Async-%s timeout - portid=%02x%02x%02x.\n",
160 fcport->vha->host_no, sp->handle,
161 ctx->name, fcport->d_id.b.domain,
162 fcport->d_id.b.area, fcport->d_id.b.al_pa));
Andrew Vasquezac280b62009-08-20 11:06:05 -0700163
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700164 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700165 if (ctx->type == SRB_LOGIN_CMD) {
166 struct srb_iocb *lio = ctx->u.iocb_cmd;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700167 qla2x00_post_async_logout_work(fcport->vha, fcport, NULL);
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700168 /* Retry as needed. */
169 lio->u.logio.data[0] = MBS_COMMAND_ERROR;
170 lio->u.logio.data[1] = lio->u.logio.flags & SRB_LOGIN_RETRIED ?
171 QLA_LOGIO_LOGIN_RETRIED : 0;
172 qla2x00_post_async_login_done_work(fcport->vha, fcport,
173 lio->u.logio.data);
174 }
Andrew Vasquezac280b62009-08-20 11:06:05 -0700175}
176
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700177static void
178qla2x00_async_login_ctx_done(srb_t *sp)
179{
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700180 struct srb_ctx *ctx = sp->ctx;
181 struct srb_iocb *lio = ctx->u.iocb_cmd;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700182
183 qla2x00_post_async_login_done_work(sp->fcport->vha, sp->fcport,
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700184 lio->u.logio.data);
185 lio->free(sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700186}
187
Andrew Vasquezac280b62009-08-20 11:06:05 -0700188int
189qla2x00_async_login(struct scsi_qla_host *vha, fc_port_t *fcport,
190 uint16_t *data)
191{
Andrew Vasquezac280b62009-08-20 11:06:05 -0700192 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700193 struct srb_ctx *ctx;
194 struct srb_iocb *lio;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700195 int rval;
196
197 rval = QLA_FUNCTION_FAILED;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700198 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_ctx),
Andrew Vasquez5b914902010-05-28 15:08:30 -0700199 qla2x00_get_async_timeout(vha) + 2);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700200 if (!sp)
201 goto done;
202
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700203 ctx = sp->ctx;
204 ctx->type = SRB_LOGIN_CMD;
205 ctx->name = "login";
206 lio = ctx->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700207 lio->timeout = qla2x00_async_iocb_timeout;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700208 lio->done = qla2x00_async_login_ctx_done;
209 lio->u.logio.flags |= SRB_LOGIN_COND_PLOGI;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700210 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700211 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700212 rval = qla2x00_start_sp(sp);
213 if (rval != QLA_SUCCESS)
214 goto done_free_sp;
215
216 DEBUG2(printk(KERN_DEBUG
217 "scsi(%ld:%x): Async-login - loop-id=%x portid=%02x%02x%02x "
218 "retries=%d.\n", fcport->vha->host_no, sp->handle, fcport->loop_id,
219 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa,
220 fcport->login_retry));
221 return rval;
222
223done_free_sp:
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700224 lio->free(sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700225done:
226 return rval;
227}
228
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700229static void
230qla2x00_async_logout_ctx_done(srb_t *sp)
231{
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700232 struct srb_ctx *ctx = sp->ctx;
233 struct srb_iocb *lio = ctx->u.iocb_cmd;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700234
235 qla2x00_post_async_logout_done_work(sp->fcport->vha, sp->fcport,
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700236 lio->u.logio.data);
237 lio->free(sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700238}
239
Andrew Vasquezac280b62009-08-20 11:06:05 -0700240int
241qla2x00_async_logout(struct scsi_qla_host *vha, fc_port_t *fcport)
242{
Andrew Vasquezac280b62009-08-20 11:06:05 -0700243 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700244 struct srb_ctx *ctx;
245 struct srb_iocb *lio;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700246 int rval;
247
248 rval = QLA_FUNCTION_FAILED;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700249 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_ctx),
Andrew Vasquez5b914902010-05-28 15:08:30 -0700250 qla2x00_get_async_timeout(vha) + 2);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700251 if (!sp)
252 goto done;
253
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700254 ctx = sp->ctx;
255 ctx->type = SRB_LOGOUT_CMD;
256 ctx->name = "logout";
257 lio = ctx->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700258 lio->timeout = qla2x00_async_iocb_timeout;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700259 lio->done = qla2x00_async_logout_ctx_done;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700260 rval = qla2x00_start_sp(sp);
261 if (rval != QLA_SUCCESS)
262 goto done_free_sp;
263
264 DEBUG2(printk(KERN_DEBUG
265 "scsi(%ld:%x): Async-logout - loop-id=%x portid=%02x%02x%02x.\n",
266 fcport->vha->host_no, sp->handle, fcport->loop_id,
267 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa));
268 return rval;
269
270done_free_sp:
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700271 lio->free(sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700272done:
273 return rval;
274}
275
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700276static void
277qla2x00_async_adisc_ctx_done(srb_t *sp)
278{
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700279 struct srb_ctx *ctx = sp->ctx;
280 struct srb_iocb *lio = ctx->u.iocb_cmd;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700281
282 qla2x00_post_async_adisc_done_work(sp->fcport->vha, sp->fcport,
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700283 lio->u.logio.data);
284 lio->free(sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700285}
286
287int
288qla2x00_async_adisc(struct scsi_qla_host *vha, fc_port_t *fcport,
289 uint16_t *data)
290{
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700291 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700292 struct srb_ctx *ctx;
293 struct srb_iocb *lio;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700294 int rval;
295
296 rval = QLA_FUNCTION_FAILED;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700297 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_ctx),
Andrew Vasquez5b914902010-05-28 15:08:30 -0700298 qla2x00_get_async_timeout(vha) + 2);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700299 if (!sp)
300 goto done;
301
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700302 ctx = sp->ctx;
303 ctx->type = SRB_ADISC_CMD;
304 ctx->name = "adisc";
305 lio = ctx->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700306 lio->timeout = qla2x00_async_iocb_timeout;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700307 lio->done = qla2x00_async_adisc_ctx_done;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700308 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700309 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700310 rval = qla2x00_start_sp(sp);
311 if (rval != QLA_SUCCESS)
312 goto done_free_sp;
313
314 DEBUG2(printk(KERN_DEBUG
315 "scsi(%ld:%x): Async-adisc - loop-id=%x portid=%02x%02x%02x.\n",
316 fcport->vha->host_no, sp->handle, fcport->loop_id,
317 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa));
318
319 return rval;
320
321done_free_sp:
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700322 lio->free(sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700323done:
324 return rval;
325}
326
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700327static void
328qla2x00_async_tm_cmd_ctx_done(srb_t *sp)
329{
330 struct srb_ctx *ctx = sp->ctx;
331 struct srb_iocb *iocb = (struct srb_iocb *)ctx->u.iocb_cmd;
332
333 qla2x00_async_tm_cmd_done(sp->fcport->vha, sp->fcport, iocb);
334 iocb->free(sp);
335}
336
337int
338qla2x00_async_tm_cmd(fc_port_t *fcport, uint32_t flags, uint32_t lun,
339 uint32_t tag)
340{
341 struct scsi_qla_host *vha = fcport->vha;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700342 srb_t *sp;
343 struct srb_ctx *ctx;
344 struct srb_iocb *tcf;
345 int rval;
346
347 rval = QLA_FUNCTION_FAILED;
348 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_ctx),
Andrew Vasquez5b914902010-05-28 15:08:30 -0700349 qla2x00_get_async_timeout(vha) + 2);
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700350 if (!sp)
351 goto done;
352
353 ctx = sp->ctx;
354 ctx->type = SRB_TM_CMD;
355 ctx->name = "tmf";
356 tcf = ctx->u.iocb_cmd;
357 tcf->u.tmf.flags = flags;
358 tcf->u.tmf.lun = lun;
359 tcf->u.tmf.data = tag;
360 tcf->timeout = qla2x00_async_iocb_timeout;
361 tcf->done = qla2x00_async_tm_cmd_ctx_done;
362
363 rval = qla2x00_start_sp(sp);
364 if (rval != QLA_SUCCESS)
365 goto done_free_sp;
366
367 DEBUG2(printk(KERN_DEBUG
368 "scsi(%ld:%x): Async-tmf - loop-id=%x portid=%02x%02x%02x.\n",
369 fcport->vha->host_no, sp->handle, fcport->loop_id,
370 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa));
371
372 return rval;
373
374done_free_sp:
375 tcf->free(sp);
376done:
377 return rval;
378}
379
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700380void
Andrew Vasquezac280b62009-08-20 11:06:05 -0700381qla2x00_async_login_done(struct scsi_qla_host *vha, fc_port_t *fcport,
382 uint16_t *data)
383{
384 int rval;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700385
386 switch (data[0]) {
387 case MBS_COMMAND_COMPLETE:
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700388 if (fcport->flags & FCF_FCP2_DEVICE) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700389 fcport->flags |= FCF_ASYNC_SENT;
390 qla2x00_post_async_adisc_work(vha, fcport, data);
391 break;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700392 }
393 qla2x00_update_fcport(vha, fcport);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700394 break;
395 case MBS_COMMAND_ERROR:
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700396 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700397 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
398 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
399 else
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700400 qla2x00_mark_device_lost(vha, fcport, 1, 1);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700401 break;
402 case MBS_PORT_ID_USED:
403 fcport->loop_id = data[1];
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700404 qla2x00_post_async_logout_work(vha, fcport, NULL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700405 qla2x00_post_async_login_work(vha, fcport, NULL);
406 break;
407 case MBS_LOOP_ID_USED:
408 fcport->loop_id++;
409 rval = qla2x00_find_new_loop_id(vha, fcport);
410 if (rval != QLA_SUCCESS) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700411 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700412 qla2x00_mark_device_lost(vha, fcport, 1, 1);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700413 break;
414 }
415 qla2x00_post_async_login_work(vha, fcport, NULL);
416 break;
417 }
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700418 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700419}
420
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700421void
Andrew Vasquezac280b62009-08-20 11:06:05 -0700422qla2x00_async_logout_done(struct scsi_qla_host *vha, fc_port_t *fcport,
423 uint16_t *data)
424{
425 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700426 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700427}
428
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700429void
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700430qla2x00_async_adisc_done(struct scsi_qla_host *vha, fc_port_t *fcport,
431 uint16_t *data)
432{
433 if (data[0] == MBS_COMMAND_COMPLETE) {
434 qla2x00_update_fcport(vha, fcport);
435
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700436 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700437 }
438
439 /* Retry login. */
440 fcport->flags &= ~FCF_ASYNC_SENT;
441 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
442 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
443 else
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700444 qla2x00_mark_device_lost(vha, fcport, 1, 1);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700445
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700446 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700447}
448
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700449void
450qla2x00_async_tm_cmd_done(struct scsi_qla_host *vha, fc_port_t *fcport,
451 struct srb_iocb *iocb)
452{
453 int rval;
454 uint32_t flags;
455 uint16_t lun;
456
457 flags = iocb->u.tmf.flags;
458 lun = (uint16_t)iocb->u.tmf.lun;
459
460 /* Issue Marker IOCB */
Giridhar Malavalid94d10e2010-07-23 15:28:23 +0500461 rval = qla2x00_marker(vha, vha->hw->req_q_map[0],
462 vha->hw->rsp_q_map[0], fcport->loop_id, lun,
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700463 flags == TCF_LUN_RESET ? MK_SYNC_ID_LUN : MK_SYNC_ID);
464
465 if ((rval != QLA_SUCCESS) || iocb->u.tmf.data) {
466 DEBUG2_3_11(printk(KERN_WARNING
467 "%s(%ld): TM IOCB failed (%x).\n",
468 __func__, vha->host_no, rval));
469 }
470
471 return;
472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/****************************************************************************/
475/* QLogic ISP2x00 Hardware Support Functions. */
476/****************************************************************************/
477
478/*
479* qla2x00_initialize_adapter
480* Initialize board.
481*
482* Input:
483* ha = adapter block pointer.
484*
485* Returns:
486* 0 = success
487*/
488int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800489qla2x00_initialize_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800492 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800493 struct req_que *req = ha->req_q_map[0];
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /* Clear adapter flags. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800496 vha->flags.online = 0;
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700497 ha->flags.chip_reset_done = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800498 vha->flags.reset_active = 0;
Andrew Vasquez85880802009-12-15 21:29:46 -0800499 ha->flags.pci_channel_io_perm_failure = 0;
500 ha->flags.eeh_busy = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800501 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
502 atomic_set(&vha->loop_state, LOOP_DOWN);
503 vha->device_flags = DFLG_NO_CABLE;
504 vha->dpc_flags = 0;
505 vha->flags.management_server_logged_in = 0;
506 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 ha->isp_abort_cnt = 0;
508 ha->beacon_blink_led = 0;
509
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800510 set_bit(0, ha->req_qid_map);
511 set_bit(0, ha->rsp_qid_map);
512
Andrew Vasquez01071092005-07-06 10:31:37 -0700513 qla_printk(KERN_INFO, ha, "Configuring PCI space...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800514 rval = ha->isp_ops->pci_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (rval) {
Andrew Vasquez7c98a042007-01-29 10:22:29 -0800516 DEBUG2(printk("scsi(%ld): Unable to configure PCI space.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800517 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return (rval);
519 }
520
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800521 ha->isp_ops->reset_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800523 rval = qla2xxx_get_flash_info(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700524 if (rval) {
525 DEBUG2(printk("scsi(%ld): Unable to validate FLASH data.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800526 vha->host_no));
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700527 return (rval);
528 }
529
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800530 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -0800531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 qla_printk(KERN_INFO, ha, "Configure NVRAM parameters...\n");
Andrew Vasquez01071092005-07-06 10:31:37 -0700533
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800534 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700536 if (ha->flags.disable_serdes) {
537 /* Mask HBA via NVRAM settings? */
538 qla_printk(KERN_INFO, ha, "Masking HBA WWPN "
539 "%02x%02x%02x%02x%02x%02x%02x%02x (via NVRAM).\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800540 vha->port_name[0], vha->port_name[1],
541 vha->port_name[2], vha->port_name[3],
542 vha->port_name[4], vha->port_name[5],
543 vha->port_name[6], vha->port_name[7]);
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700544 return QLA_FUNCTION_FAILED;
545 }
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 qla_printk(KERN_INFO, ha, "Verifying loaded RISC code...\n");
548
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800549 if (qla2x00_isp_firmware(vha) != QLA_SUCCESS) {
550 rval = ha->isp_ops->chip_diag(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800551 if (rval)
552 return (rval);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800553 rval = qla2x00_setup_chip(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800554 if (rval)
555 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
Giridhar Malavalia9083012010-04-12 17:59:55 -0700557
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700558 if (IS_QLA84XX(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800559 ha->cs84xx = qla84xx_get_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700560 if (!ha->cs84xx) {
561 qla_printk(KERN_ERR, ha,
562 "Unable to configure ISP84XX.\n");
563 return QLA_FUNCTION_FAILED;
564 }
565 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800566 rval = qla2x00_init_rings(vha);
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700567 ha->flags.chip_reset_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800569 if (rval == QLA_SUCCESS && IS_QLA84XX(ha)) {
Andrew Vasquez6c452a42010-03-19 17:04:02 -0700570 /* Issue verify 84xx FW IOCB to complete 84xx initialization */
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800571 rval = qla84xx_init_chip(vha);
572 if (rval != QLA_SUCCESS) {
573 qla_printk(KERN_ERR, ha,
574 "Unable to initialize ISP84XX.\n");
575 qla84xx_put_chip(vha);
576 }
577 }
578
Madhuranath Iyengar2f0f3f42010-07-23 15:28:24 +0500579 if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha))
580 qla24xx_read_fcp_prio_cfg(vha);
Sarang Radke09ff7012010-03-19 17:03:59 -0700581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return (rval);
583}
584
585/**
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700586 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 * @ha: HA context
588 *
589 * Returns 0 on success.
590 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700591int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800592qla2100_pci_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700594 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700595 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800596 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700597 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700600 pci_try_set_mwi(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700603 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
605
Andrew Vasquez737faec2008-10-24 15:13:45 -0700606 pci_disable_rom(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700608 /* Get PCI bus information. */
609 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700610 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700611 spin_unlock_irqrestore(&ha->hardware_lock, flags);
612
613 return QLA_SUCCESS;
614}
615
616/**
617 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
618 * @ha: HA context
619 *
620 * Returns 0 on success.
621 */
622int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800623qla2300_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700624{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700625 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700626 unsigned long flags = 0;
627 uint32_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800628 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700629 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700630
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700631 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700632 pci_try_set_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700633
634 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700635 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700636
637 if (IS_QLA2322(ha) || IS_QLA6322(ha))
638 w &= ~PCI_COMMAND_INTX_DISABLE;
Andrew Vasqueza157b102007-05-07 07:43:01 -0700639 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700640
641 /*
642 * If this is a 2300 card and not 2312, reset the
643 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
644 * the 2310 also reports itself as a 2300 so we need to get the
645 * fb revision level -- a 6 indicates it really is a 2300 and
646 * not a 2310.
647 */
648 if (IS_QLA2300(ha)) {
649 spin_lock_irqsave(&ha->hardware_lock, flags);
650
651 /* Pause RISC. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700652 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700653 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700654 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700655 break;
656
657 udelay(10);
658 }
659
660 /* Select FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700661 WRT_REG_WORD(&reg->ctrl_status, 0x20);
662 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700663
664 /* Get the fb rev level */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700665 ha->fb_rev = RD_FB_CMD_REG(ha, reg);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700666
667 if (ha->fb_rev == FPM_2300)
Andrew Vasqueza157b102007-05-07 07:43:01 -0700668 pci_clear_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700669
670 /* Deselect FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700671 WRT_REG_WORD(&reg->ctrl_status, 0x0);
672 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700673
674 /* Release RISC module. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700675 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700676 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700677 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) == 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700678 break;
679
680 udelay(10);
681 }
682
683 spin_unlock_irqrestore(&ha->hardware_lock, flags);
684 }
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700685
686 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
687
Andrew Vasquez737faec2008-10-24 15:13:45 -0700688 pci_disable_rom(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700689
690 /* Get PCI bus information. */
691 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700692 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700693 spin_unlock_irqrestore(&ha->hardware_lock, flags);
694
695 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698/**
Andrew Vasquez01071092005-07-06 10:31:37 -0700699 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
700 * @ha: HA context
701 *
702 * Returns 0 on success.
703 */
704int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800705qla24xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquez01071092005-07-06 10:31:37 -0700706{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700707 uint16_t w;
Andrew Vasquez01071092005-07-06 10:31:37 -0700708 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800709 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez01071092005-07-06 10:31:37 -0700710 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
Andrew Vasquez01071092005-07-06 10:31:37 -0700711
712 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700713 pci_try_set_mwi(ha->pdev);
Andrew Vasquez01071092005-07-06 10:31:37 -0700714
715 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700716 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquez01071092005-07-06 10:31:37 -0700717 w &= ~PCI_COMMAND_INTX_DISABLE;
718 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
719
720 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
721
722 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700723 if (pci_find_capability(ha->pdev, PCI_CAP_ID_PCIX))
724 pcix_set_mmrbc(ha->pdev, 2048);
Andrew Vasquez01071092005-07-06 10:31:37 -0700725
726 /* PCIe -- adjust Maximum Read Request Size (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700727 if (pci_find_capability(ha->pdev, PCI_CAP_ID_EXP))
728 pcie_set_readrq(ha->pdev, 2048);
Andrew Vasquez01071092005-07-06 10:31:37 -0700729
Andrew Vasquez737faec2008-10-24 15:13:45 -0700730 pci_disable_rom(ha->pdev);
Andrew Vasquez01071092005-07-06 10:31:37 -0700731
Auke Kok44c10132007-06-08 15:46:36 -0700732 ha->chip_revision = ha->pdev->revision;
Andrew Vasqueza8488ab2007-01-29 10:22:19 -0800733
Andrew Vasquez01071092005-07-06 10:31:37 -0700734 /* Get PCI bus information. */
735 spin_lock_irqsave(&ha->hardware_lock, flags);
736 ha->pci_attr = RD_REG_DWORD(&reg->ctrl_status);
737 spin_unlock_irqrestore(&ha->hardware_lock, flags);
738
739 return QLA_SUCCESS;
740}
741
742/**
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700743 * qla25xx_pci_config() - Setup ISP25xx PCI configuration registers.
744 * @ha: HA context
745 *
746 * Returns 0 on success.
747 */
748int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800749qla25xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700750{
751 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800752 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700753
754 pci_set_master(ha->pdev);
755 pci_try_set_mwi(ha->pdev);
756
757 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
758 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
759 w &= ~PCI_COMMAND_INTX_DISABLE;
760 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
761
762 /* PCIe -- adjust Maximum Read Request Size (2048). */
763 if (pci_find_capability(ha->pdev, PCI_CAP_ID_EXP))
764 pcie_set_readrq(ha->pdev, 2048);
765
Andrew Vasquez737faec2008-10-24 15:13:45 -0700766 pci_disable_rom(ha->pdev);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700767
768 ha->chip_revision = ha->pdev->revision;
769
770 return QLA_SUCCESS;
771}
772
773/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * qla2x00_isp_firmware() - Choose firmware image.
775 * @ha: HA context
776 *
777 * Returns 0 on success.
778 */
779static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800780qla2x00_isp_firmware(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 int rval;
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700783 uint16_t loop_id, topo, sw_cap;
784 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800785 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 /* Assume loading risc code */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700788 rval = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 if (ha->flags.disable_risc_code_load) {
791 DEBUG2(printk("scsi(%ld): RISC CODE NOT loaded\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800792 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 qla_printk(KERN_INFO, ha, "RISC CODE NOT loaded\n");
794
795 /* Verify checksum of loaded RISC code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800796 rval = qla2x00_verify_checksum(vha, ha->fw_srisc_address);
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700797 if (rval == QLA_SUCCESS) {
798 /* And, verify we are not in ROM code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800799 rval = qla2x00_get_adapter_id(vha, &loop_id, &al_pa,
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700800 &area, &domain, &topo, &sw_cap);
801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
804 if (rval) {
805 DEBUG2_3(printk("scsi(%ld): **** Load RISC code ****\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800806 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
809 return (rval);
810}
811
812/**
813 * qla2x00_reset_chip() - Reset ISP chip.
814 * @ha: HA context
815 *
816 * Returns 0 on success.
817 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700818void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800819qla2x00_reset_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800822 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700823 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 uint32_t cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 uint16_t cmd;
826
Andrew Vasquez85880802009-12-15 21:29:46 -0800827 if (unlikely(pci_channel_offline(ha->pdev)))
828 return;
829
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700830 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 spin_lock_irqsave(&ha->hardware_lock, flags);
833
834 /* Turn off master enable */
835 cmd = 0;
836 pci_read_config_word(ha->pdev, PCI_COMMAND, &cmd);
837 cmd &= ~PCI_COMMAND_MASTER;
838 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
839
840 if (!IS_QLA2100(ha)) {
841 /* Pause RISC. */
842 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
843 if (IS_QLA2200(ha) || IS_QLA2300(ha)) {
844 for (cnt = 0; cnt < 30000; cnt++) {
845 if ((RD_REG_WORD(&reg->hccr) &
846 HCCR_RISC_PAUSE) != 0)
847 break;
848 udelay(100);
849 }
850 } else {
851 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
852 udelay(10);
853 }
854
855 /* Select FPM registers. */
856 WRT_REG_WORD(&reg->ctrl_status, 0x20);
857 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
858
859 /* FPM Soft Reset. */
860 WRT_REG_WORD(&reg->fpm_diag_config, 0x100);
861 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
862
863 /* Toggle Fpm Reset. */
864 if (!IS_QLA2200(ha)) {
865 WRT_REG_WORD(&reg->fpm_diag_config, 0x0);
866 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
867 }
868
869 /* Select frame buffer registers. */
870 WRT_REG_WORD(&reg->ctrl_status, 0x10);
871 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
872
873 /* Reset frame buffer FIFOs. */
874 if (IS_QLA2200(ha)) {
875 WRT_FB_CMD_REG(ha, reg, 0xa000);
876 RD_FB_CMD_REG(ha, reg); /* PCI Posting. */
877 } else {
878 WRT_FB_CMD_REG(ha, reg, 0x00fc);
879
880 /* Read back fb_cmd until zero or 3 seconds max */
881 for (cnt = 0; cnt < 3000; cnt++) {
882 if ((RD_FB_CMD_REG(ha, reg) & 0xff) == 0)
883 break;
884 udelay(100);
885 }
886 }
887
888 /* Select RISC module registers. */
889 WRT_REG_WORD(&reg->ctrl_status, 0);
890 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
891
892 /* Reset RISC processor. */
893 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
894 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
895
896 /* Release RISC processor. */
897 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
898 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
899 }
900
901 WRT_REG_WORD(&reg->hccr, HCCR_CLR_RISC_INT);
902 WRT_REG_WORD(&reg->hccr, HCCR_CLR_HOST_INT);
903
904 /* Reset ISP chip. */
905 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
906
907 /* Wait for RISC to recover from reset. */
908 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
909 /*
910 * It is necessary to for a delay here since the card doesn't
911 * respond to PCI reads during a reset. On some architectures
912 * this will result in an MCA.
913 */
914 udelay(20);
915 for (cnt = 30000; cnt; cnt--) {
916 if ((RD_REG_WORD(&reg->ctrl_status) &
917 CSR_ISP_SOFT_RESET) == 0)
918 break;
919 udelay(100);
920 }
921 } else
922 udelay(10);
923
924 /* Reset RISC processor. */
925 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
926
927 WRT_REG_WORD(&reg->semaphore, 0);
928
929 /* Release RISC processor. */
930 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
931 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
932
933 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
934 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquezffb39f02006-05-17 15:09:06 -0700935 if (RD_MAILBOX_REG(ha, reg, 0) != MBS_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 udelay(100);
939 }
940 } else
941 udelay(100);
942
943 /* Turn on master enable */
944 cmd |= PCI_COMMAND_MASTER;
945 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
946
947 /* Disable RISC pause on FPM parity error. */
948 if (!IS_QLA2100(ha)) {
949 WRT_REG_WORD(&reg->hccr, HCCR_DISABLE_PARITY_PAUSE);
950 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
951 }
952
953 spin_unlock_irqrestore(&ha->hardware_lock, flags);
954}
955
956/**
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -0700957 * qla81xx_reset_mpi() - Reset's MPI FW via Write MPI Register MBC.
958 *
959 * Returns 0 on success.
960 */
961int
962qla81xx_reset_mpi(scsi_qla_host_t *vha)
963{
964 uint16_t mb[4] = {0x1010, 0, 1, 0};
965
966 return qla81xx_write_mpi_register(vha, mb);
967}
968
969/**
Andrew Vasquez88c26662005-07-08 17:59:26 -0700970 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
Andrew Vasquez01071092005-07-06 10:31:37 -0700971 * @ha: HA context
972 *
973 * Returns 0 on success.
974 */
Andrew Vasquez88c26662005-07-08 17:59:26 -0700975static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800976qla24xx_reset_risc(scsi_qla_host_t *vha)
Andrew Vasquez01071092005-07-06 10:31:37 -0700977{
978 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800979 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez01071092005-07-06 10:31:37 -0700980 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
981 uint32_t cnt, d2;
Andrew Vasquez335a1cc2005-11-08 14:37:48 -0800982 uint16_t wd;
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -0700983 static int abts_cnt; /* ISP abort retry counts */
Andrew Vasquez01071092005-07-06 10:31:37 -0700984
Andrew Vasquez01071092005-07-06 10:31:37 -0700985 spin_lock_irqsave(&ha->hardware_lock, flags);
986
987 /* Reset RISC. */
988 WRT_REG_DWORD(&reg->ctrl_status, CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
989 for (cnt = 0; cnt < 30000; cnt++) {
990 if ((RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE) == 0)
991 break;
992
993 udelay(10);
994 }
995
996 WRT_REG_DWORD(&reg->ctrl_status,
997 CSRX_ISP_SOFT_RESET|CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
Andrew Vasquez335a1cc2005-11-08 14:37:48 -0800998 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
Andrew Vasquez88c26662005-07-08 17:59:26 -0700999
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001000 udelay(100);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001001 /* Wait for firmware to complete NVRAM accesses. */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001002 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1003 for (cnt = 10000 ; cnt && d2; cnt--) {
1004 udelay(5);
1005 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1006 barrier();
1007 }
1008
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001009 /* Wait for soft-reset to complete. */
Andrew Vasquez01071092005-07-06 10:31:37 -07001010 d2 = RD_REG_DWORD(&reg->ctrl_status);
1011 for (cnt = 6000000 ; cnt && (d2 & CSRX_ISP_SOFT_RESET); cnt--) {
1012 udelay(5);
1013 d2 = RD_REG_DWORD(&reg->ctrl_status);
1014 barrier();
1015 }
1016
Madhuranath Iyengarb1d46982010-09-03 15:20:54 -07001017 /* If required, do an MPI FW reset now */
1018 if (test_and_clear_bit(MPI_RESET_NEEDED, &vha->dpc_flags)) {
1019 if (qla81xx_reset_mpi(vha) != QLA_SUCCESS) {
1020 if (++abts_cnt < 5) {
1021 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1022 set_bit(MPI_RESET_NEEDED, &vha->dpc_flags);
1023 } else {
1024 /*
1025 * We exhausted the ISP abort retries. We have to
1026 * set the board offline.
1027 */
1028 abts_cnt = 0;
1029 vha->flags.online = 0;
1030 }
1031 }
1032 }
1033
Andrew Vasquez01071092005-07-06 10:31:37 -07001034 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
1035 RD_REG_DWORD(&reg->hccr);
1036
1037 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
1038 RD_REG_DWORD(&reg->hccr);
1039
1040 WRT_REG_DWORD(&reg->hccr, HCCRX_CLR_RISC_RESET);
1041 RD_REG_DWORD(&reg->hccr);
1042
1043 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1044 for (cnt = 6000000 ; cnt && d2; cnt--) {
1045 udelay(5);
1046 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1047 barrier();
1048 }
1049
1050 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez124f85e2009-01-05 11:18:06 -08001051
1052 if (IS_NOPOLLING_TYPE(ha))
1053 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez01071092005-07-06 10:31:37 -07001054}
1055
1056/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001057 * qla24xx_reset_chip() - Reset ISP24xx chip.
1058 * @ha: HA context
1059 *
1060 * Returns 0 on success.
1061 */
1062void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001063qla24xx_reset_chip(scsi_qla_host_t *vha)
Andrew Vasquez88c26662005-07-08 17:59:26 -07001064{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001065 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez85880802009-12-15 21:29:46 -08001066
1067 if (pci_channel_offline(ha->pdev) &&
1068 ha->flags.pci_channel_io_perm_failure) {
1069 return;
1070 }
1071
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001072 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001073
1074 /* Perform RISC reset. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001075 qla24xx_reset_risc(vha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001076}
1077
1078/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 * qla2x00_chip_diag() - Test chip for proper operation.
1080 * @ha: HA context
1081 *
1082 * Returns 0 on success.
1083 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001084int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001085qla2x00_chip_diag(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001088 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001089 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 unsigned long flags = 0;
1091 uint16_t data;
1092 uint32_t cnt;
1093 uint16_t mb[5];
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001094 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /* Assume a failed state */
1097 rval = QLA_FUNCTION_FAILED;
1098
1099 DEBUG3(printk("scsi(%ld): Testing device at %lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001100 vha->host_no, (u_long)&reg->flash_address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 spin_lock_irqsave(&ha->hardware_lock, flags);
1103
1104 /* Reset ISP chip. */
1105 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
1106
1107 /*
1108 * We need to have a delay here since the card will not respond while
1109 * in reset causing an MCA on some architectures.
1110 */
1111 udelay(20);
1112 data = qla2x00_debounce_register(&reg->ctrl_status);
1113 for (cnt = 6000000 ; cnt && (data & CSR_ISP_SOFT_RESET); cnt--) {
1114 udelay(5);
1115 data = RD_REG_WORD(&reg->ctrl_status);
1116 barrier();
1117 }
1118
1119 if (!cnt)
1120 goto chip_diag_failed;
1121
1122 DEBUG3(printk("scsi(%ld): Reset register cleared by chip reset\n",
Andrew Vasquez76403352009-04-06 22:33:39 -07001123 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 /* Reset RISC processor. */
1126 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
1127 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
1128
1129 /* Workaround for QLA2312 PCI parity error */
1130 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
1131 data = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 0));
1132 for (cnt = 6000000; cnt && (data == MBS_BUSY); cnt--) {
1133 udelay(5);
1134 data = RD_MAILBOX_REG(ha, reg, 0);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001135 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137 } else
1138 udelay(10);
1139
1140 if (!cnt)
1141 goto chip_diag_failed;
1142
1143 /* Check product ID of chip */
Andrew Vasquez76403352009-04-06 22:33:39 -07001144 DEBUG3(printk("scsi(%ld): Checking product ID of chip\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
1147 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
1148 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
1149 mb[4] = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 4));
1150 if (mb[1] != PROD_ID_1 || (mb[2] != PROD_ID_2 && mb[2] != PROD_ID_2a) ||
1151 mb[3] != PROD_ID_3) {
1152 qla_printk(KERN_WARNING, ha,
1153 "Wrong product ID = 0x%x,0x%x,0x%x\n", mb[1], mb[2], mb[3]);
1154
1155 goto chip_diag_failed;
1156 }
1157 ha->product_id[0] = mb[1];
1158 ha->product_id[1] = mb[2];
1159 ha->product_id[2] = mb[3];
1160 ha->product_id[3] = mb[4];
1161
1162 /* Adjust fw RISC transfer size */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001163 if (req->length > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
1165 else
1166 ha->fw_transfer_size = REQUEST_ENTRY_SIZE *
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001167 req->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 if (IS_QLA2200(ha) &&
1170 RD_MAILBOX_REG(ha, reg, 7) == QLA2200A_RISC_ROM_VER) {
1171 /* Limit firmware transfer size with a 2200A */
1172 DEBUG3(printk("scsi(%ld): Found QLA2200A chip.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001173 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001175 ha->device_type |= DT_ISP2200A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 ha->fw_transfer_size = 128;
1177 }
1178
1179 /* Wrap Incoming Mailboxes Test. */
1180 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1181
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001182 DEBUG3(printk("scsi(%ld): Checking mailboxes.\n", vha->host_no));
1183 rval = qla2x00_mbx_reg_test(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (rval) {
1185 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001186 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 qla_printk(KERN_WARNING, ha,
1188 "Failed mailbox send register test\n");
1189 }
1190 else {
1191 /* Flag a successful rval */
1192 rval = QLA_SUCCESS;
1193 }
1194 spin_lock_irqsave(&ha->hardware_lock, flags);
1195
1196chip_diag_failed:
1197 if (rval)
1198 DEBUG2_3(printk("scsi(%ld): Chip diagnostics **** FAILED "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001199 "****\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1202
1203 return (rval);
1204}
1205
1206/**
Andrew Vasquez01071092005-07-06 10:31:37 -07001207 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
1208 * @ha: HA context
1209 *
1210 * Returns 0 on success.
1211 */
1212int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001213qla24xx_chip_diag(scsi_qla_host_t *vha)
Andrew Vasquez01071092005-07-06 10:31:37 -07001214{
1215 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001216 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001217 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez01071092005-07-06 10:31:37 -07001218
Giridhar Malavalia9083012010-04-12 17:59:55 -07001219 if (IS_QLA82XX(ha))
1220 return QLA_SUCCESS;
1221
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001222 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * req->length;
Andrew Vasquez01071092005-07-06 10:31:37 -07001223
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001224 rval = qla2x00_mbx_reg_test(vha);
Andrew Vasquez01071092005-07-06 10:31:37 -07001225 if (rval) {
1226 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001227 vha->host_no));
Andrew Vasquez01071092005-07-06 10:31:37 -07001228 qla_printk(KERN_WARNING, ha,
1229 "Failed mailbox send register test\n");
1230 } else {
1231 /* Flag a successful rval */
1232 rval = QLA_SUCCESS;
1233 }
1234
1235 return rval;
1236}
1237
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001238void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001239qla2x00_alloc_fw_dump(scsi_qla_host_t *vha)
Andrew Vasquez01071092005-07-06 10:31:37 -07001240{
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001241 int rval;
1242 uint32_t dump_size, fixed_size, mem_size, req_q_size, rsp_q_size,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001243 eft_size, fce_size, mq_size;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001244 dma_addr_t tc_dma;
1245 void *tc;
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];
1248 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001249
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001250 if (ha->fw_dump) {
1251 qla_printk(KERN_WARNING, ha,
1252 "Firmware dump previously allocated.\n");
1253 return;
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001254 }
1255
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001256 ha->fw_dumped = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001257 fixed_size = mem_size = eft_size = fce_size = mq_size = 0;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001258 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1259 fixed_size = sizeof(struct qla2100_fw_dump);
1260 } else if (IS_QLA23XX(ha)) {
1261 fixed_size = offsetof(struct qla2300_fw_dump, data_ram);
1262 mem_size = (ha->fw_memory_size - 0x11000 + 1) *
1263 sizeof(uint16_t);
Andrew Vasqueze4289242007-07-19 15:05:56 -07001264 } else if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001265 if (IS_QLA81XX(ha))
1266 fixed_size = offsetof(struct qla81xx_fw_dump, ext_mem);
1267 else if (IS_QLA25XX(ha))
1268 fixed_size = offsetof(struct qla25xx_fw_dump, ext_mem);
1269 else
1270 fixed_size = offsetof(struct qla24xx_fw_dump, ext_mem);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001271 mem_size = (ha->fw_memory_size - 0x100000 + 1) *
1272 sizeof(uint32_t);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001273 if (ha->mqenable)
1274 mq_size = sizeof(struct qla2xxx_mq_chain);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001275 /* Allocate memory for Fibre Channel Event Buffer. */
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001276 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001277 goto try_eft;
1278
1279 tc = dma_alloc_coherent(&ha->pdev->dev, FCE_SIZE, &tc_dma,
1280 GFP_KERNEL);
1281 if (!tc) {
1282 qla_printk(KERN_WARNING, ha, "Unable to allocate "
1283 "(%d KB) for FCE.\n", FCE_SIZE / 1024);
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001284 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001285 }
1286
1287 memset(tc, 0, FCE_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001288 rval = qla2x00_enable_fce_trace(vha, tc_dma, FCE_NUM_BUFFERS,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001289 ha->fce_mb, &ha->fce_bufs);
1290 if (rval) {
1291 qla_printk(KERN_WARNING, ha, "Unable to initialize "
1292 "FCE (%d).\n", rval);
1293 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, tc,
1294 tc_dma);
1295 ha->flags.fce_enabled = 0;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001296 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001297 }
1298
1299 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for FCE...\n",
1300 FCE_SIZE / 1024);
1301
Giridhar Malavali7d9dade2009-03-24 09:07:58 -07001302 fce_size = sizeof(struct qla2xxx_fce_chain) + FCE_SIZE;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001303 ha->flags.fce_enabled = 1;
1304 ha->fce_dma = tc_dma;
1305 ha->fce = tc;
1306try_eft:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001307 /* Allocate memory for Extended Trace Buffer. */
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001308 tc = dma_alloc_coherent(&ha->pdev->dev, EFT_SIZE, &tc_dma,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001309 GFP_KERNEL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001310 if (!tc) {
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001311 qla_printk(KERN_WARNING, ha, "Unable to allocate "
1312 "(%d KB) for EFT.\n", EFT_SIZE / 1024);
1313 goto cont_alloc;
1314 }
1315
Andrew Vasquezfc447652008-01-17 09:02:18 -08001316 memset(tc, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001317 rval = qla2x00_enable_eft_trace(vha, tc_dma, EFT_NUM_BUFFERS);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001318 if (rval) {
1319 qla_printk(KERN_WARNING, ha, "Unable to initialize "
1320 "EFT (%d).\n", rval);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001321 dma_free_coherent(&ha->pdev->dev, EFT_SIZE, tc,
1322 tc_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001323 goto cont_alloc;
1324 }
1325
1326 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for EFT...\n",
1327 EFT_SIZE / 1024);
1328
1329 eft_size = EFT_SIZE;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001330 ha->eft_dma = tc_dma;
1331 ha->eft = tc;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001332 }
1333cont_alloc:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001334 req_q_size = req->length * sizeof(request_t);
1335 rsp_q_size = rsp->length * sizeof(response_t);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001336
1337 dump_size = offsetof(struct qla2xxx_fw_dump, isp);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001338 dump_size += fixed_size + mem_size + req_q_size + rsp_q_size + eft_size;
Andrew Vasquezbb99de62009-01-05 11:18:08 -08001339 ha->chain_offset = dump_size;
1340 dump_size += mq_size + fce_size;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001341
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001342 ha->fw_dump = vmalloc(dump_size);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001343 if (!ha->fw_dump) {
Andrew Vasquez01071092005-07-06 10:31:37 -07001344 qla_printk(KERN_WARNING, ha, "Unable to allocate (%d KB) for "
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001345 "firmware dump!!!\n", dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001346
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07001347 if (ha->fce) {
1348 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
1349 ha->fce_dma);
1350 ha->fce = NULL;
1351 ha->fce_dma = 0;
1352 }
1353
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001354 if (ha->eft) {
1355 dma_free_coherent(&ha->pdev->dev, eft_size, ha->eft,
1356 ha->eft_dma);
1357 ha->eft = NULL;
1358 ha->eft_dma = 0;
1359 }
1360 return;
1361 }
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001362 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for firmware dump...\n",
1363 dump_size / 1024);
1364
1365 ha->fw_dump_len = dump_size;
1366 ha->fw_dump->signature[0] = 'Q';
1367 ha->fw_dump->signature[1] = 'L';
1368 ha->fw_dump->signature[2] = 'G';
1369 ha->fw_dump->signature[3] = 'C';
1370 ha->fw_dump->version = __constant_htonl(1);
1371
1372 ha->fw_dump->fixed_size = htonl(fixed_size);
1373 ha->fw_dump->mem_size = htonl(mem_size);
1374 ha->fw_dump->req_q_size = htonl(req_q_size);
1375 ha->fw_dump->rsp_q_size = htonl(rsp_q_size);
1376
1377 ha->fw_dump->eft_size = htonl(eft_size);
1378 ha->fw_dump->eft_addr_l = htonl(LSD(ha->eft_dma));
1379 ha->fw_dump->eft_addr_h = htonl(MSD(ha->eft_dma));
1380
1381 ha->fw_dump->header_size =
1382 htonl(offsetof(struct qla2xxx_fw_dump, isp));
Andrew Vasquez01071092005-07-06 10:31:37 -07001383}
1384
Andrew Vasquez18e75552009-06-03 09:55:30 -07001385static int
1386qla81xx_mpi_sync(scsi_qla_host_t *vha)
1387{
1388#define MPS_MASK 0xe0
1389 int rval;
1390 uint16_t dc;
1391 uint32_t dw;
1392 struct qla_hw_data *ha = vha->hw;
1393
1394 if (!IS_QLA81XX(vha->hw))
1395 return QLA_SUCCESS;
1396
1397 rval = qla2x00_write_ram_word(vha, 0x7c00, 1);
1398 if (rval != QLA_SUCCESS) {
1399 DEBUG2(qla_printk(KERN_WARNING, ha,
1400 "Sync-MPI: Unable to acquire semaphore.\n"));
1401 goto done;
1402 }
1403
1404 pci_read_config_word(vha->hw->pdev, 0x54, &dc);
1405 rval = qla2x00_read_ram_word(vha, 0x7a15, &dw);
1406 if (rval != QLA_SUCCESS) {
1407 DEBUG2(qla_printk(KERN_WARNING, ha,
1408 "Sync-MPI: Unable to read sync.\n"));
1409 goto done_release;
1410 }
1411
1412 dc &= MPS_MASK;
1413 if (dc == (dw & MPS_MASK))
1414 goto done_release;
1415
1416 dw &= ~MPS_MASK;
1417 dw |= dc;
1418 rval = qla2x00_write_ram_word(vha, 0x7a15, dw);
1419 if (rval != QLA_SUCCESS) {
1420 DEBUG2(qla_printk(KERN_WARNING, ha,
1421 "Sync-MPI: Unable to gain sync.\n"));
1422 }
1423
1424done_release:
1425 rval = qla2x00_write_ram_word(vha, 0x7c00, 0);
1426 if (rval != QLA_SUCCESS) {
1427 DEBUG2(qla_printk(KERN_WARNING, ha,
1428 "Sync-MPI: Unable to release semaphore.\n"));
1429 }
1430
1431done:
1432 return rval;
1433}
1434
Andrew Vasquez01071092005-07-06 10:31:37 -07001435/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 * qla2x00_setup_chip() - Load and start RISC firmware.
1437 * @ha: HA context
1438 *
1439 * Returns 0 on success.
1440 */
1441static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001442qla2x00_setup_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Andrew Vasquez01071092005-07-06 10:31:37 -07001444 int rval;
1445 uint32_t srisc_address = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001446 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001447 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1448 unsigned long flags;
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001449 uint16_t fw_major_version;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001450
Giridhar Malavalia9083012010-04-12 17:59:55 -07001451 if (IS_QLA82XX(ha)) {
1452 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001453 if (rval == QLA_SUCCESS) {
1454 qla2x00_stop_firmware(vha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001455 goto enable_82xx_npiv;
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001456 } else
Giridhar Malavalib9637522010-05-28 15:08:15 -07001457 goto failed;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001458 }
1459
Andrew Vasquez3db06522008-01-31 12:33:49 -08001460 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1461 /* Disable SRAM, Instruction RAM and GP RAM parity. */
1462 spin_lock_irqsave(&ha->hardware_lock, flags);
1463 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x0));
1464 RD_REG_WORD(&reg->hccr);
1465 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Andrew Vasquez18e75552009-06-03 09:55:30 -07001468 qla81xx_mpi_sync(vha);
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 /* Load firmware sequences */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001471 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez01071092005-07-06 10:31:37 -07001472 if (rval == QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 DEBUG(printk("scsi(%ld): Verifying Checksum of loaded RISC "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001474 "code.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001476 rval = qla2x00_verify_checksum(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 if (rval == QLA_SUCCESS) {
1478 /* Start firmware execution. */
1479 DEBUG(printk("scsi(%ld): Checksum OK, start "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001480 "firmware.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001482 rval = qla2x00_execute_fw(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* Retrieve firmware information. */
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001484 if (rval == QLA_SUCCESS) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07001485enable_82xx_npiv:
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001486 fw_major_version = ha->fw_major_version;
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001487 rval = qla2x00_get_fw_version(vha,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 &ha->fw_major_version,
1489 &ha->fw_minor_version,
1490 &ha->fw_subminor_version,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001491 &ha->fw_attributes, &ha->fw_memory_size,
Andrew Vasquez55a96152009-03-24 09:08:03 -07001492 ha->mpi_version, &ha->mpi_capabilities,
1493 ha->phy_version);
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001494 if (rval != QLA_SUCCESS)
1495 goto failed;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001496 ha->flags.npiv_supported = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001497 if (IS_QLA2XXX_MIDTYPE(ha) &&
Mike Hernandez946fb892008-08-13 21:36:59 -07001498 (ha->fw_attributes & BIT_2)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001499 ha->flags.npiv_supported = 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001500 if ((!ha->max_npiv_vports) ||
1501 ((ha->max_npiv_vports + 1) %
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001502 MIN_MULTI_ID_FABRIC))
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001503 ha->max_npiv_vports =
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001504 MIN_MULTI_ID_FABRIC - 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001505 }
Andrew Vasquez24a08132009-03-24 09:08:16 -07001506 qla2x00_get_resource_cnts(vha, NULL,
1507 &ha->fw_xcb_count, NULL, NULL,
Andrew Vasquezf3a0a772009-10-13 15:16:49 -07001508 &ha->max_npiv_vports, NULL);
Andrew Vasquezd743de62009-03-24 09:08:15 -07001509
Giridhar Malavalia9083012010-04-12 17:59:55 -07001510 if (!fw_major_version && ql2xallocfwdump) {
1511 if (!IS_QLA82XX(ha))
1512 qla2x00_alloc_fw_dump(vha);
1513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515 } else {
1516 DEBUG2(printk(KERN_INFO
1517 "scsi(%ld): ISP Firmware failed checksum.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001518 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
1520 }
1521
Andrew Vasquez3db06522008-01-31 12:33:49 -08001522 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1523 /* Enable proper parity. */
1524 spin_lock_irqsave(&ha->hardware_lock, flags);
1525 if (IS_QLA2300(ha))
1526 /* SRAM parity */
1527 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x1);
1528 else
1529 /* SRAM, Instruction RAM and GP RAM parity */
1530 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x7);
1531 RD_REG_WORD(&reg->hccr);
1532 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1533 }
1534
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001535 if (rval == QLA_SUCCESS && IS_FAC_REQUIRED(ha)) {
1536 uint32_t size;
1537
1538 rval = qla81xx_fac_get_sector_size(vha, &size);
1539 if (rval == QLA_SUCCESS) {
1540 ha->flags.fac_supported = 1;
1541 ha->fdt_block_size = size << 2;
1542 } else {
1543 qla_printk(KERN_ERR, ha,
1544 "Unsupported FAC firmware (%d.%02d.%02d).\n",
1545 ha->fw_major_version, ha->fw_minor_version,
1546 ha->fw_subminor_version);
1547 }
1548 }
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001549failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (rval) {
1551 DEBUG2_3(printk("scsi(%ld): Setup chip **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001552 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554
1555 return (rval);
1556}
1557
1558/**
1559 * qla2x00_init_response_q_entries() - Initializes response queue entries.
1560 * @ha: HA context
1561 *
1562 * Beginning of request ring has initialization control block already built
1563 * by nvram config routine.
1564 *
1565 * Returns 0 on success.
1566 */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001567void
1568qla2x00_init_response_q_entries(struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
1570 uint16_t cnt;
1571 response_t *pkt;
1572
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001573 rsp->ring_ptr = rsp->ring;
1574 rsp->ring_index = 0;
1575 rsp->status_srb = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001576 pkt = rsp->ring_ptr;
1577 for (cnt = 0; cnt < rsp->length; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 pkt->signature = RESPONSE_PROCESSED;
1579 pkt++;
1580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
1583/**
1584 * qla2x00_update_fw_options() - Read and process firmware options.
1585 * @ha: HA context
1586 *
1587 * Returns 0 on success.
1588 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001589void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001590qla2x00_update_fw_options(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 uint16_t swing, emphasis, tx_sens, rx_sens;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001593 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 memset(ha->fw_options, 0, sizeof(ha->fw_options));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001596 qla2x00_get_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1599 return;
1600
1601 /* Serial Link options. */
1602 DEBUG3(printk("scsi(%ld): Serial link options:\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001603 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 DEBUG3(qla2x00_dump_buffer((uint8_t *)&ha->fw_seriallink_options,
1605 sizeof(ha->fw_seriallink_options)));
1606
1607 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1608 if (ha->fw_seriallink_options[3] & BIT_2) {
1609 ha->fw_options[1] |= FO1_SET_EMPHASIS_SWING;
1610
1611 /* 1G settings */
1612 swing = ha->fw_seriallink_options[2] & (BIT_2 | BIT_1 | BIT_0);
1613 emphasis = (ha->fw_seriallink_options[2] &
1614 (BIT_4 | BIT_3)) >> 3;
1615 tx_sens = ha->fw_seriallink_options[0] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001616 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 rx_sens = (ha->fw_seriallink_options[0] &
1618 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1619 ha->fw_options[10] = (emphasis << 14) | (swing << 8);
1620 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1621 if (rx_sens == 0x0)
1622 rx_sens = 0x3;
1623 ha->fw_options[10] |= (tx_sens << 4) | rx_sens;
1624 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1625 ha->fw_options[10] |= BIT_5 |
1626 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1627 (tx_sens & (BIT_1 | BIT_0));
1628
1629 /* 2G settings */
1630 swing = (ha->fw_seriallink_options[2] &
1631 (BIT_7 | BIT_6 | BIT_5)) >> 5;
1632 emphasis = ha->fw_seriallink_options[3] & (BIT_1 | BIT_0);
1633 tx_sens = ha->fw_seriallink_options[1] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001634 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 rx_sens = (ha->fw_seriallink_options[1] &
1636 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1637 ha->fw_options[11] = (emphasis << 14) | (swing << 8);
1638 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1639 if (rx_sens == 0x0)
1640 rx_sens = 0x3;
1641 ha->fw_options[11] |= (tx_sens << 4) | rx_sens;
1642 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1643 ha->fw_options[11] |= BIT_5 |
1644 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1645 (tx_sens & (BIT_1 | BIT_0));
1646 }
1647
1648 /* FCP2 options. */
1649 /* Return command IOCBs without waiting for an ABTS to complete. */
1650 ha->fw_options[3] |= BIT_13;
1651
1652 /* LED scheme. */
1653 if (ha->flags.enable_led_scheme)
1654 ha->fw_options[2] |= BIT_12;
1655
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08001656 /* Detect ISP6312. */
1657 if (IS_QLA6312(ha))
1658 ha->fw_options[2] |= BIT_13;
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 /* Update firmware options. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001661 qla2x00_set_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662}
1663
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001664void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001665qla24xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez01071092005-07-06 10:31:37 -07001666{
1667 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001668 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez01071092005-07-06 10:31:37 -07001669
Giridhar Malavalia9083012010-04-12 17:59:55 -07001670 if (IS_QLA82XX(ha))
1671 return;
1672
Andrew Vasquez01071092005-07-06 10:31:37 -07001673 /* Update Serial Link options. */
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001674 if ((le16_to_cpu(ha->fw_seriallink_options24[0]) & BIT_0) == 0)
Andrew Vasquez01071092005-07-06 10:31:37 -07001675 return;
1676
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001677 rval = qla2x00_set_serdes_params(vha,
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001678 le16_to_cpu(ha->fw_seriallink_options24[1]),
1679 le16_to_cpu(ha->fw_seriallink_options24[2]),
1680 le16_to_cpu(ha->fw_seriallink_options24[3]));
Andrew Vasquez01071092005-07-06 10:31:37 -07001681 if (rval != QLA_SUCCESS) {
1682 qla_printk(KERN_WARNING, ha,
1683 "Unable to update Serial Link options (%x).\n", rval);
1684 }
1685}
1686
1687void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001688qla2x00_config_rings(struct scsi_qla_host *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001689{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001690 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001691 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001692 struct req_que *req = ha->req_q_map[0];
1693 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001694
1695 /* Setup ring parameters in initialization control block. */
1696 ha->init_cb->request_q_outpointer = __constant_cpu_to_le16(0);
1697 ha->init_cb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001698 ha->init_cb->request_q_length = cpu_to_le16(req->length);
1699 ha->init_cb->response_q_length = cpu_to_le16(rsp->length);
1700 ha->init_cb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1701 ha->init_cb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1702 ha->init_cb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1703 ha->init_cb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001704
1705 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), 0);
1706 WRT_REG_WORD(ISP_REQ_Q_OUT(ha, reg), 0);
1707 WRT_REG_WORD(ISP_RSP_Q_IN(ha, reg), 0);
1708 WRT_REG_WORD(ISP_RSP_Q_OUT(ha, reg), 0);
1709 RD_REG_WORD(ISP_RSP_Q_OUT(ha, reg)); /* PCI Posting. */
1710}
1711
Andrew Vasquez01071092005-07-06 10:31:37 -07001712void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001713qla24xx_config_rings(struct scsi_qla_host *vha)
Andrew Vasquez01071092005-07-06 10:31:37 -07001714{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001715 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001716 device_reg_t __iomem *reg = ISP_QUE_REG(ha, 0);
1717 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1718 struct qla_msix_entry *msix;
Andrew Vasquez01071092005-07-06 10:31:37 -07001719 struct init_cb_24xx *icb;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001720 uint16_t rid = 0;
1721 struct req_que *req = ha->req_q_map[0];
1722 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquez01071092005-07-06 10:31:37 -07001723
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001724/* Setup ring parameters in initialization control block. */
Andrew Vasquez01071092005-07-06 10:31:37 -07001725 icb = (struct init_cb_24xx *)ha->init_cb;
1726 icb->request_q_outpointer = __constant_cpu_to_le16(0);
1727 icb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001728 icb->request_q_length = cpu_to_le16(req->length);
1729 icb->response_q_length = cpu_to_le16(rsp->length);
1730 icb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1731 icb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1732 icb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1733 icb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquez01071092005-07-06 10:31:37 -07001734
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001735 if (ha->mqenable) {
1736 icb->qos = __constant_cpu_to_le16(QLA_DEFAULT_QUE_QOS);
1737 icb->rid = __constant_cpu_to_le16(rid);
1738 if (ha->flags.msix_enabled) {
1739 msix = &ha->msix_entries[1];
1740 DEBUG2_17(printk(KERN_INFO
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001741 "Registering vector 0x%x for base que\n", msix->entry));
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001742 icb->msix = cpu_to_le16(msix->entry);
1743 }
1744 /* Use alternate PCI bus number */
1745 if (MSB(rid))
1746 icb->firmware_options_2 |=
1747 __constant_cpu_to_le32(BIT_19);
1748 /* Use alternate PCI devfn */
1749 if (LSB(rid))
1750 icb->firmware_options_2 |=
1751 __constant_cpu_to_le32(BIT_18);
1752
Anirban Chakraborty31557542009-12-02 10:36:55 -08001753 /* Use Disable MSIX Handshake mode for capable adapters */
1754 if (IS_MSIX_NACK_CAPABLE(ha)) {
1755 icb->firmware_options_2 &=
1756 __constant_cpu_to_le32(~BIT_22);
1757 ha->flags.disable_msix_handshake = 1;
1758 qla_printk(KERN_INFO, ha,
1759 "MSIX Handshake Disable Mode turned on\n");
1760 } else {
1761 icb->firmware_options_2 |=
1762 __constant_cpu_to_le32(BIT_22);
1763 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001764 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_23);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001765
1766 WRT_REG_DWORD(&reg->isp25mq.req_q_in, 0);
1767 WRT_REG_DWORD(&reg->isp25mq.req_q_out, 0);
1768 WRT_REG_DWORD(&reg->isp25mq.rsp_q_in, 0);
1769 WRT_REG_DWORD(&reg->isp25mq.rsp_q_out, 0);
1770 } else {
1771 WRT_REG_DWORD(&reg->isp24.req_q_in, 0);
1772 WRT_REG_DWORD(&reg->isp24.req_q_out, 0);
1773 WRT_REG_DWORD(&reg->isp24.rsp_q_in, 0);
1774 WRT_REG_DWORD(&reg->isp24.rsp_q_out, 0);
1775 }
1776 /* PCI posting */
1777 RD_REG_DWORD(&ioreg->hccr);
Andrew Vasquez01071092005-07-06 10:31:37 -07001778}
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780/**
1781 * qla2x00_init_rings() - Initializes firmware.
1782 * @ha: HA context
1783 *
1784 * Beginning of request ring has initialization control block already built
1785 * by nvram config routine.
1786 *
1787 * Returns 0 on success.
1788 */
1789static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001790qla2x00_init_rings(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
1792 int rval;
1793 unsigned long flags = 0;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001794 int cnt, que;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001795 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001796 struct req_que *req;
1797 struct rsp_que *rsp;
1798 struct scsi_qla_host *vp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001799 struct mid_init_cb_24xx *mid_init_cb =
1800 (struct mid_init_cb_24xx *) ha->init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 spin_lock_irqsave(&ha->hardware_lock, flags);
1803
1804 /* Clear outstanding commands array. */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001805 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001806 req = ha->req_q_map[que];
1807 if (!req)
1808 continue;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001809 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++)
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001810 req->outstanding_cmds[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001812 req->current_outstanding_cmd = 1;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001813
1814 /* Initialize firmware. */
1815 req->ring_ptr = req->ring;
1816 req->ring_index = 0;
1817 req->cnt = req->length;
1818 }
1819
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001820 for (que = 0; que < ha->max_rsp_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001821 rsp = ha->rsp_q_map[que];
1822 if (!rsp)
1823 continue;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001824 /* Initialize response queue entries */
1825 qla2x00_init_response_q_entries(rsp);
1826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Dan Carpenter542bce12010-10-15 11:27:38 -07001828 spin_lock(&ha->vport_slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 /* Clear RSCN queue. */
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001830 list_for_each_entry(vp, &ha->vp_list, list) {
1831 vp->rscn_in_ptr = 0;
1832 vp->rscn_out_ptr = 0;
1833 }
Arun Easifeafb7b2010-09-03 14:57:00 -07001834
Dan Carpenter542bce12010-10-15 11:27:38 -07001835 spin_unlock(&ha->vport_slock);
Arun Easifeafb7b2010-09-03 14:57:00 -07001836
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001837 ha->isp_ops->config_rings(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1840
1841 /* Update any ISP specific firmware options before initialization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001842 ha->isp_ops->update_fw_options(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001844 DEBUG(printk("scsi(%ld): Issue init firmware.\n", vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001845
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001846 if (ha->flags.npiv_supported) {
1847 if (ha->operating_mode == LOOP)
1848 ha->max_npiv_vports = MIN_MULTI_ID_FABRIC - 1;
Seokmann Juc48339d2008-01-17 09:02:19 -08001849 mid_init_cb->count = cpu_to_le16(ha->max_npiv_vports);
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001850 }
1851
Andrew Vasquez24a08132009-03-24 09:08:16 -07001852 if (IS_FWI2_CAPABLE(ha)) {
1853 mid_init_cb->options = __constant_cpu_to_le16(BIT_1);
1854 mid_init_cb->init_cb.execution_throttle =
1855 cpu_to_le16(ha->fw_xcb_count);
1856 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001857
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001858 rval = qla2x00_init_firmware(vha, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 if (rval) {
1860 DEBUG2_3(printk("scsi(%ld): Init firmware **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001861 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 } else {
1863 DEBUG3(printk("scsi(%ld): Init firmware -- success.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001864 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 }
1866
1867 return (rval);
1868}
1869
1870/**
1871 * qla2x00_fw_ready() - Waits for firmware ready.
1872 * @ha: HA context
1873 *
1874 * Returns 0 on success.
1875 */
1876static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001877qla2x00_fw_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
1879 int rval;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001880 unsigned long wtime, mtime, cs84xx_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 uint16_t min_wait; /* Minimum wait time if loop is down */
1882 uint16_t wait_time; /* Wait time if loop is coming ready */
Andrew Vasquez656e8912009-06-03 09:55:29 -07001883 uint16_t state[5];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001884 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 rval = QLA_SUCCESS;
1887
1888 /* 20 seconds for loop down. */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001889 min_wait = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 /*
1892 * Firmware should take at most one RATOV to login, plus 5 seconds for
1893 * our own processing.
1894 */
1895 if ((wait_time = (ha->retry_count*ha->login_timeout) + 5) < min_wait) {
1896 wait_time = min_wait;
1897 }
1898
1899 /* Min wait time if loop down */
1900 mtime = jiffies + (min_wait * HZ);
1901
1902 /* wait time before firmware ready */
1903 wtime = jiffies + (wait_time * HZ);
1904
1905 /* Wait for ISP to finish LIP */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001906 if (!vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 qla_printk(KERN_INFO, ha, "Waiting for LIP to complete...\n");
1908
1909 DEBUG3(printk("scsi(%ld): Waiting for LIP to complete...\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001910 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001913 rval = qla2x00_get_firmware_state(vha, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 if (rval == QLA_SUCCESS) {
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001915 if (state[0] < FSTATE_LOSS_OF_SYNC) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001916 vha->device_flags &= ~DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001918 if (IS_QLA84XX(ha) && state[0] != FSTATE_READY) {
1919 DEBUG16(printk("scsi(%ld): fw_state=%x "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001920 "84xx=%x.\n", vha->host_no, state[0],
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001921 state[2]));
1922 if ((state[2] & FSTATE_LOGGED_IN) &&
1923 (state[2] & FSTATE_WAITING_FOR_VERIFY)) {
1924 DEBUG16(printk("scsi(%ld): Sending "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001925 "verify iocb.\n", vha->host_no));
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001926
1927 cs84xx_time = jiffies;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001928 rval = qla84xx_init_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001929 if (rval != QLA_SUCCESS)
1930 break;
1931
1932 /* Add time taken to initialize. */
1933 cs84xx_time = jiffies - cs84xx_time;
1934 wtime += cs84xx_time;
1935 mtime += cs84xx_time;
1936 DEBUG16(printk("scsi(%ld): Increasing "
1937 "wait time by %ld. New time %ld\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001938 vha->host_no, cs84xx_time, wtime));
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001939 }
1940 } else if (state[0] == FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 DEBUG(printk("scsi(%ld): F/W Ready - OK \n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001942 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001944 qla2x00_get_retry_cnt(vha, &ha->retry_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 &ha->login_timeout, &ha->r_a_tov);
1946
1947 rval = QLA_SUCCESS;
1948 break;
1949 }
1950
1951 rval = QLA_FUNCTION_FAILED;
1952
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001953 if (atomic_read(&vha->loop_down_timer) &&
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001954 state[0] != FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 /* Loop down. Timeout on min_wait for states
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001956 * other than Wait for Login.
1957 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 if (time_after_eq(jiffies, mtime)) {
1959 qla_printk(KERN_INFO, ha,
1960 "Cable is unplugged...\n");
1961
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001962 vha->device_flags |= DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 break;
1964 }
1965 }
1966 } else {
1967 /* Mailbox cmd failed. Timeout on min_wait. */
Santosh Vernekarcdbb0a42010-05-28 15:08:25 -07001968 if (time_after_eq(jiffies, mtime) ||
1969 (IS_QLA82XX(ha) && ha->flags.fw_hung))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 break;
1971 }
1972
1973 if (time_after_eq(jiffies, wtime))
1974 break;
1975
1976 /* Delay for a while */
1977 msleep(500);
1978
1979 DEBUG3(printk("scsi(%ld): fw_state=%x curr time=%lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001980 vha->host_no, state[0], jiffies));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 } while (1);
1982
Andrew Vasquez656e8912009-06-03 09:55:29 -07001983 DEBUG(printk("scsi(%ld): fw_state=%x (%x, %x, %x, %x) curr time=%lx.\n",
1984 vha->host_no, state[0], state[1], state[2], state[3], state[4],
1985 jiffies));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 if (rval) {
1988 DEBUG2_3(printk("scsi(%ld): Firmware ready **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001989 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 }
1991
1992 return (rval);
1993}
1994
1995/*
1996* qla2x00_configure_hba
1997* Setup adapter context.
1998*
1999* Input:
2000* ha = adapter state pointer.
2001*
2002* Returns:
2003* 0 = success
2004*
2005* Context:
2006* Kernel context.
2007*/
2008static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002009qla2x00_configure_hba(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
2011 int rval;
2012 uint16_t loop_id;
2013 uint16_t topo;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002014 uint16_t sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 uint8_t al_pa;
2016 uint8_t area;
2017 uint8_t domain;
2018 char connect_type[22];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002019 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 /* Get host addresses. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002022 rval = qla2x00_get_adapter_id(vha,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002023 &loop_id, &al_pa, &area, &domain, &topo, &sw_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002025 if (LOOP_TRANSITION(vha) || atomic_read(&ha->loop_down_timer) ||
Ravi Anand33135aa2005-11-08 14:37:20 -08002026 (rval == QLA_COMMAND_ERROR && loop_id == 0x7)) {
2027 DEBUG2(printk("%s(%ld) Loop is in a transition state\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002028 __func__, vha->host_no));
Ravi Anand33135aa2005-11-08 14:37:20 -08002029 } else {
2030 qla_printk(KERN_WARNING, ha,
2031 "ERROR -- Unable to get host loop ID.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002032 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Ravi Anand33135aa2005-11-08 14:37:20 -08002033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return (rval);
2035 }
2036
2037 if (topo == 4) {
2038 qla_printk(KERN_INFO, ha,
2039 "Cannot get topology - retrying.\n");
2040 return (QLA_FUNCTION_FAILED);
2041 }
2042
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002043 vha->loop_id = loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045 /* initialize */
2046 ha->min_external_loopid = SNS_FIRST_LOOP_ID;
2047 ha->operating_mode = LOOP;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002048 ha->switch_cap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050 switch (topo) {
2051 case 0:
2052 DEBUG3(printk("scsi(%ld): HBA in NL topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002053 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 ha->current_topology = ISP_CFG_NL;
2055 strcpy(connect_type, "(Loop)");
2056 break;
2057
2058 case 1:
2059 DEBUG3(printk("scsi(%ld): HBA in FL topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002060 vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002061 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 ha->current_topology = ISP_CFG_FL;
2063 strcpy(connect_type, "(FL_Port)");
2064 break;
2065
2066 case 2:
2067 DEBUG3(printk("scsi(%ld): HBA in N P2P topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002068 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 ha->operating_mode = P2P;
2070 ha->current_topology = ISP_CFG_N;
2071 strcpy(connect_type, "(N_Port-to-N_Port)");
2072 break;
2073
2074 case 3:
2075 DEBUG3(printk("scsi(%ld): HBA in F P2P topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002076 vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002077 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 ha->operating_mode = P2P;
2079 ha->current_topology = ISP_CFG_F;
2080 strcpy(connect_type, "(F_Port)");
2081 break;
2082
2083 default:
2084 DEBUG3(printk("scsi(%ld): HBA in unknown topology %x. "
2085 "Using NL.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002086 vha->host_no, topo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 ha->current_topology = ISP_CFG_NL;
2088 strcpy(connect_type, "(Loop)");
2089 break;
2090 }
2091
2092 /* Save Host port and loop ID. */
2093 /* byte order - Big Endian */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002094 vha->d_id.b.domain = domain;
2095 vha->d_id.b.area = area;
2096 vha->d_id.b.al_pa = al_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002098 if (!vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 qla_printk(KERN_INFO, ha,
2100 "Topology - %s, Host Loop address 0x%x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002101 connect_type, vha->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 if (rval) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002104 DEBUG2_3(printk("scsi(%ld): FAILED.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002106 DEBUG3(printk("scsi(%ld): exiting normally.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
2108
2109 return(rval);
2110}
2111
Giridhar Malavalia9083012010-04-12 17:59:55 -07002112inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002113qla2x00_set_model_info(scsi_qla_host_t *vha, uint8_t *model, size_t len,
2114 char *def)
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002115{
2116 char *st, *en;
2117 uint16_t index;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002118 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezab671142009-08-25 11:36:17 -07002119 int use_tbl = !IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
Giridhar Malavalia9083012010-04-12 17:59:55 -07002120 !IS_QLA8XXX_TYPE(ha);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002121
2122 if (memcmp(model, BINZERO, len) != 0) {
2123 strncpy(ha->model_number, model, len);
2124 st = en = ha->model_number;
2125 en += len - 1;
2126 while (en > st) {
2127 if (*en != 0x20 && *en != 0x00)
2128 break;
2129 *en-- = '\0';
2130 }
2131
2132 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002133 if (use_tbl &&
2134 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002135 index < QLA_MODEL_NAMES)
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002136 strncpy(ha->model_desc,
2137 qla2x00_model_name[index * 2 + 1],
2138 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002139 } else {
2140 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002141 if (use_tbl &&
2142 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002143 index < QLA_MODEL_NAMES) {
2144 strcpy(ha->model_number,
2145 qla2x00_model_name[index * 2]);
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002146 strncpy(ha->model_desc,
2147 qla2x00_model_name[index * 2 + 1],
2148 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002149 } else {
2150 strcpy(ha->model_number, def);
2151 }
2152 }
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002153 if (IS_FWI2_CAPABLE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002154 qla2xxx_get_vpd_field(vha, "\x82", ha->model_desc,
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002155 sizeof(ha->model_desc));
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002156}
2157
David Miller4e08df32007-04-16 12:37:43 -07002158/* On sparc systems, obtain port and node WWN from firmware
2159 * properties.
2160 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002161static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t *vha, nvram_t *nv)
David Miller4e08df32007-04-16 12:37:43 -07002162{
2163#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002164 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07002165 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07002166 struct device_node *dp = pci_device_to_OF_node(pdev);
2167 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07002168 int len;
2169
2170 val = of_get_property(dp, "port-wwn", &len);
2171 if (val && len >= WWN_SIZE)
2172 memcpy(nv->port_name, val, WWN_SIZE);
2173
2174 val = of_get_property(dp, "node-wwn", &len);
2175 if (val && len >= WWN_SIZE)
2176 memcpy(nv->node_name, val, WWN_SIZE);
2177#endif
2178}
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180/*
2181* NVRAM configuration for ISP 2xxx
2182*
2183* Input:
2184* ha = adapter block pointer.
2185*
2186* Output:
2187* initialization control block in response_ring
2188* host adapters parameters in host adapter block
2189*
2190* Returns:
2191* 0 = success.
2192*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002193int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002194qla2x00_nvram_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
David Miller4e08df32007-04-16 12:37:43 -07002196 int rval;
Andrew Vasquez01071092005-07-06 10:31:37 -07002197 uint8_t chksum = 0;
2198 uint16_t cnt;
2199 uint8_t *dptr1, *dptr2;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002200 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez01071092005-07-06 10:31:37 -07002201 init_cb_t *icb = ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07002202 nvram_t *nv = ha->nvram;
2203 uint8_t *ptr = ha->nvram;
Andrew Vasquez3d716442005-07-06 10:30:26 -07002204 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
David Miller4e08df32007-04-16 12:37:43 -07002206 rval = QLA_SUCCESS;
2207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 /* Determine NVRAM starting address. */
Andrew Vasquez01071092005-07-06 10:31:37 -07002209 ha->nvram_size = sizeof(nvram_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 ha->nvram_base = 0;
2211 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha))
2212 if ((RD_REG_WORD(&reg->ctrl_status) >> 14) == 1)
2213 ha->nvram_base = 0x80;
2214
2215 /* Get NVRAM data and calculate checksum. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002216 ha->isp_ops->read_nvram(vha, ptr, ha->nvram_base, ha->nvram_size);
Andrew Vasquez01071092005-07-06 10:31:37 -07002217 for (cnt = 0, chksum = 0; cnt < ha->nvram_size; cnt++)
2218 chksum += *ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002220 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Seokmann Ju281afe12007-07-26 13:43:34 -07002221 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 /* Bad NVRAM data, set defaults parameters. */
2224 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' ||
2225 nv->id[2] != 'P' || nv->id[3] != ' ' || nv->nvram_version < 1) {
2226 /* Reset NVRAM data. */
2227 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
2228 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
2229 nv->nvram_version);
David Miller4e08df32007-04-16 12:37:43 -07002230 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
2231 "invalid -- WWPN) defaults.\n");
2232
2233 /*
2234 * Set default initialization control block.
2235 */
2236 memset(nv, 0, ha->nvram_size);
2237 nv->parameter_block_version = ICB_VERSION;
2238
2239 if (IS_QLA23XX(ha)) {
2240 nv->firmware_options[0] = BIT_2 | BIT_1;
2241 nv->firmware_options[1] = BIT_7 | BIT_5;
2242 nv->add_firmware_options[0] = BIT_5;
2243 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2244 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2245 nv->special_options[1] = BIT_7;
2246 } else if (IS_QLA2200(ha)) {
2247 nv->firmware_options[0] = BIT_2 | BIT_1;
2248 nv->firmware_options[1] = BIT_7 | BIT_5;
2249 nv->add_firmware_options[0] = BIT_5;
2250 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2251 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2252 } else if (IS_QLA2100(ha)) {
2253 nv->firmware_options[0] = BIT_3 | BIT_1;
2254 nv->firmware_options[1] = BIT_5;
2255 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2256 }
2257
2258 nv->max_iocb_allocation = __constant_cpu_to_le16(256);
2259 nv->execution_throttle = __constant_cpu_to_le16(16);
2260 nv->retry_count = 8;
2261 nv->retry_delay = 1;
2262
2263 nv->port_name[0] = 33;
2264 nv->port_name[3] = 224;
2265 nv->port_name[4] = 139;
2266
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002267 qla2xxx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07002268
2269 nv->login_timeout = 4;
2270
2271 /*
2272 * Set default host adapter parameters
2273 */
2274 nv->host_p[1] = BIT_2;
2275 nv->reset_delay = 5;
2276 nv->port_down_retry_count = 8;
2277 nv->max_luns_per_target = __constant_cpu_to_le16(8);
2278 nv->link_down_timeout = 60;
2279
2280 rval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 }
2282
2283#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
2284 /*
2285 * The SN2 does not provide BIOS emulation which means you can't change
2286 * potentially bogus BIOS settings. Force the use of default settings
2287 * for link rate and frame size. Hope that the rest of the settings
2288 * are valid.
2289 */
2290 if (ia64_platform_is("sn2")) {
2291 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2292 if (IS_QLA23XX(ha))
2293 nv->special_options[1] = BIT_7;
2294 }
2295#endif
2296
2297 /* Reset Initialization control block */
Andrew Vasquez01071092005-07-06 10:31:37 -07002298 memset(icb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
2300 /*
2301 * Setup driver NVRAM options.
2302 */
2303 nv->firmware_options[0] |= (BIT_6 | BIT_1);
2304 nv->firmware_options[0] &= ~(BIT_5 | BIT_4);
2305 nv->firmware_options[1] |= (BIT_5 | BIT_0);
2306 nv->firmware_options[1] &= ~BIT_4;
2307
2308 if (IS_QLA23XX(ha)) {
2309 nv->firmware_options[0] |= BIT_2;
2310 nv->firmware_options[0] &= ~BIT_3;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002311 nv->firmware_options[0] &= ~BIT_6;
Andrew Vasquez01071092005-07-06 10:31:37 -07002312 nv->add_firmware_options[1] |= BIT_5 | BIT_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
2314 if (IS_QLA2300(ha)) {
2315 if (ha->fb_rev == FPM_2310) {
2316 strcpy(ha->model_number, "QLA2310");
2317 } else {
2318 strcpy(ha->model_number, "QLA2300");
2319 }
2320 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002321 qla2x00_set_model_info(vha, nv->model_number,
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002322 sizeof(nv->model_number), "QLA23xx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 }
2324 } else if (IS_QLA2200(ha)) {
2325 nv->firmware_options[0] |= BIT_2;
2326 /*
2327 * 'Point-to-point preferred, else loop' is not a safe
2328 * connection mode setting.
2329 */
2330 if ((nv->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) ==
2331 (BIT_5 | BIT_4)) {
2332 /* Force 'loop preferred, else point-to-point'. */
2333 nv->add_firmware_options[0] &= ~(BIT_6 | BIT_5 | BIT_4);
2334 nv->add_firmware_options[0] |= BIT_5;
2335 }
2336 strcpy(ha->model_number, "QLA22xx");
2337 } else /*if (IS_QLA2100(ha))*/ {
2338 strcpy(ha->model_number, "QLA2100");
2339 }
2340
2341 /*
2342 * Copy over NVRAM RISC parameter block to initialization control block.
2343 */
2344 dptr1 = (uint8_t *)icb;
2345 dptr2 = (uint8_t *)&nv->parameter_block_version;
2346 cnt = (uint8_t *)&icb->request_q_outpointer - (uint8_t *)&icb->version;
2347 while (cnt--)
2348 *dptr1++ = *dptr2++;
2349
2350 /* Copy 2nd half. */
2351 dptr1 = (uint8_t *)icb->add_firmware_options;
2352 cnt = (uint8_t *)icb->reserved_3 - (uint8_t *)icb->add_firmware_options;
2353 while (cnt--)
2354 *dptr1++ = *dptr2++;
2355
Andrew Vasquez5341e862006-05-17 15:09:16 -07002356 /* Use alternate WWN? */
2357 if (nv->host_p[1] & BIT_7) {
2358 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
2359 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
2360 }
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 /* Prepare nodename */
2363 if ((icb->firmware_options[1] & BIT_6) == 0) {
2364 /*
2365 * Firmware will apply the following mask if the nodename was
2366 * not provided.
2367 */
2368 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
2369 icb->node_name[0] &= 0xF0;
2370 }
2371
2372 /*
2373 * Set host adapter parameters.
2374 */
Andrew Vasquez01819442006-06-23 16:11:10 -07002375 if (nv->host_p[0] & BIT_7)
Andrew Vasquez11010fe2006-10-06 09:54:59 -07002376 ql2xextended_error_logging = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 ha->flags.disable_risc_code_load = ((nv->host_p[0] & BIT_4) ? 1 : 0);
2378 /* Always load RISC code on non ISP2[12]00 chips. */
2379 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
2380 ha->flags.disable_risc_code_load = 0;
2381 ha->flags.enable_lip_reset = ((nv->host_p[1] & BIT_1) ? 1 : 0);
2382 ha->flags.enable_lip_full_login = ((nv->host_p[1] & BIT_2) ? 1 : 0);
2383 ha->flags.enable_target_reset = ((nv->host_p[1] & BIT_3) ? 1 : 0);
Andrew Vasquez06c22bd2005-08-26 19:09:00 -07002384 ha->flags.enable_led_scheme = (nv->special_options[1] & BIT_4) ? 1 : 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07002385 ha->flags.disable_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 ha->operating_mode =
2388 (icb->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) >> 4;
2389
2390 memcpy(ha->fw_seriallink_options, nv->seriallink_options,
2391 sizeof(ha->fw_seriallink_options));
2392
2393 /* save HBA serial number */
2394 ha->serial0 = icb->port_name[5];
2395 ha->serial1 = icb->port_name[6];
2396 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002397 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
2398 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
2401
2402 ha->retry_count = nv->retry_count;
2403
2404 /* Set minimum login_timeout to 4 seconds. */
Andrew Vasquez5b914902010-05-28 15:08:30 -07002405 if (nv->login_timeout != ql2xlogintimeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 nv->login_timeout = ql2xlogintimeout;
2407 if (nv->login_timeout < 4)
2408 nv->login_timeout = 4;
2409 ha->login_timeout = nv->login_timeout;
2410 icb->login_timeout = nv->login_timeout;
2411
Andrew Vasquez00a537b2008-02-28 14:06:11 -08002412 /* Set minimum RATOV to 100 tenths of a second. */
2413 ha->r_a_tov = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 ha->loop_reset_delay = nv->reset_delay;
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 /* Link Down Timeout = 0:
2418 *
2419 * When Port Down timer expires we will start returning
2420 * I/O's to OS with "DID_NO_CONNECT".
2421 *
2422 * Link Down Timeout != 0:
2423 *
2424 * The driver waits for the link to come up after link down
2425 * before returning I/Os to OS with "DID_NO_CONNECT".
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002426 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 if (nv->link_down_timeout == 0) {
2428 ha->loop_down_abort_time =
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002429 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 } else {
2431 ha->link_down_timeout = nv->link_down_timeout;
2432 ha->loop_down_abort_time =
2433 (LOOP_DOWN_TIME - ha->link_down_timeout);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 /*
2437 * Need enough time to try and get the port back.
2438 */
2439 ha->port_down_retry_count = nv->port_down_retry_count;
2440 if (qlport_down_retry)
2441 ha->port_down_retry_count = qlport_down_retry;
2442 /* Set login_retry_count */
2443 ha->login_retry_count = nv->retry_count;
2444 if (ha->port_down_retry_count == nv->port_down_retry_count &&
2445 ha->port_down_retry_count > 3)
2446 ha->login_retry_count = ha->port_down_retry_count;
2447 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
2448 ha->login_retry_count = ha->port_down_retry_count;
2449 if (ql2xloginretrycount)
2450 ha->login_retry_count = ql2xloginretrycount;
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 icb->lun_enables = __constant_cpu_to_le16(0);
2453 icb->command_resource_count = 0;
2454 icb->immediate_notify_resource_count = 0;
2455 icb->timeout = __constant_cpu_to_le16(0);
2456
2457 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2458 /* Enable RIO */
2459 icb->firmware_options[0] &= ~BIT_3;
2460 icb->add_firmware_options[0] &=
2461 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
2462 icb->add_firmware_options[0] |= BIT_2;
2463 icb->response_accumulation_timer = 3;
2464 icb->interrupt_delay_timer = 5;
2465
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002466 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 } else {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002468 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002469 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002470 ha->zio_mode = icb->add_firmware_options[0] &
2471 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
2472 ha->zio_timer = icb->interrupt_delay_timer ?
2473 icb->interrupt_delay_timer: 2;
2474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 icb->add_firmware_options[0] &=
2476 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002477 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002478 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08002479 ha->zio_mode = QLA_ZIO_MODE_6;
2480
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002481 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002482 "delay (%d us).\n", vha->host_no, ha->zio_mode,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002483 ha->zio_timer * 100));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 qla_printk(KERN_INFO, ha,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002485 "ZIO mode %d enabled; timer delay (%d us).\n",
2486 ha->zio_mode, ha->zio_timer * 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002488 icb->add_firmware_options[0] |= (uint8_t)ha->zio_mode;
2489 icb->interrupt_delay_timer = (uint8_t)ha->zio_timer;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002490 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 }
2492 }
2493
David Miller4e08df32007-04-16 12:37:43 -07002494 if (rval) {
2495 DEBUG2_3(printk(KERN_WARNING
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002496 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
David Miller4e08df32007-04-16 12:37:43 -07002497 }
2498 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499}
2500
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002501static void
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002502qla2x00_rport_del(void *data)
2503{
2504 fc_port_t *fcport = data;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002505 struct fc_rport *rport;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002506
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002507 spin_lock_irq(fcport->vha->host->host_lock);
Andrew Vasquezac280b62009-08-20 11:06:05 -07002508 rport = fcport->drport ? fcport->drport: fcport->rport;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002509 fcport->drport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002510 spin_unlock_irq(fcport->vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002511 if (rport)
2512 fc_remote_port_delete(rport);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002513}
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515/**
2516 * qla2x00_alloc_fcport() - Allocate a generic fcport.
2517 * @ha: HA context
2518 * @flags: allocation flags
2519 *
2520 * Returns a pointer to the allocated fcport, or NULL, if none available.
2521 */
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002522fc_port_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002523qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
2525 fc_port_t *fcport;
2526
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002527 fcport = kzalloc(sizeof(fc_port_t), flags);
2528 if (!fcport)
2529 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
2531 /* Setup fcport template structure. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002532 fcport->vha = vha;
2533 fcport->vp_idx = vha->vp_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 fcport->port_type = FCT_UNKNOWN;
2535 fcport->loop_id = FC_NO_LOOP_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 atomic_set(&fcport->state, FCS_UNCONFIGURED);
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002537 fcport->supported_classes = FC_COS_UNSPECIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002539 return fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540}
2541
2542/*
2543 * qla2x00_configure_loop
2544 * Updates Fibre Channel Device Database with what is actually on loop.
2545 *
2546 * Input:
2547 * ha = adapter block pointer.
2548 *
2549 * Returns:
2550 * 0 = success.
2551 * 1 = error.
2552 * 2 = database was full and device was not configured.
2553 */
2554static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002555qla2x00_configure_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556{
2557 int rval;
2558 unsigned long flags, save_flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002559 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 rval = QLA_SUCCESS;
2561
2562 /* Get Initiator ID */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002563 if (test_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags)) {
2564 rval = qla2x00_configure_hba(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 if (rval != QLA_SUCCESS) {
2566 DEBUG(printk("scsi(%ld): Unable to configure HBA.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002567 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 return (rval);
2569 }
2570 }
2571
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002572 save_flags = flags = vha->dpc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 DEBUG(printk("scsi(%ld): Configure loop -- dpc flags =0x%lx\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002574 vha->host_no, flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
2576 /*
2577 * If we have both an RSCN and PORT UPDATE pending then handle them
2578 * both at the same time.
2579 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002580 clear_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2581 clear_bit(RSCN_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Michael Hernandez3064ff32009-12-15 21:29:44 -08002583 qla2x00_get_data_rate(vha);
2584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 /* Determine what we need to do */
2586 if (ha->current_topology == ISP_CFG_FL &&
2587 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2588
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002589 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 set_bit(RSCN_UPDATE, &flags);
2591
2592 } else if (ha->current_topology == ISP_CFG_F &&
2593 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2594
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002595 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 set_bit(RSCN_UPDATE, &flags);
2597 clear_bit(LOCAL_LOOP_UPDATE, &flags);
2598
Andrew Vasquez21333b42006-05-17 15:09:56 -07002599 } else if (ha->current_topology == ISP_CFG_N) {
2600 clear_bit(RSCN_UPDATE, &flags);
2601
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002602 } else if (!vha->flags.online ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 (test_bit(ABORT_ISP_ACTIVE, &flags))) {
2604
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002605 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 set_bit(RSCN_UPDATE, &flags);
2607 set_bit(LOCAL_LOOP_UPDATE, &flags);
2608 }
2609
2610 if (test_bit(LOCAL_LOOP_UPDATE, &flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002611 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 rval = QLA_FUNCTION_FAILED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002613 else
2614 rval = qla2x00_configure_local_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 }
2616
2617 if (rval == QLA_SUCCESS && test_bit(RSCN_UPDATE, &flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002618 if (LOOP_TRANSITION(vha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 rval = QLA_FUNCTION_FAILED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002620 else
2621 rval = qla2x00_configure_fabric(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
2623
2624 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002625 if (atomic_read(&vha->loop_down_timer) ||
2626 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 rval = QLA_FUNCTION_FAILED;
2628 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002629 atomic_set(&vha->loop_state, LOOP_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002631 DEBUG(printk("scsi(%ld): LOOP READY\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 }
2633 }
2634
2635 if (rval) {
2636 DEBUG2_3(printk("%s(%ld): *** FAILED ***\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002637 __func__, vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 } else {
2639 DEBUG3(printk("%s: exiting normally\n", __func__));
2640 }
2641
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -07002642 /* Restore state if a resync event occurred during processing */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002643 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 if (test_bit(LOCAL_LOOP_UPDATE, &save_flags))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002645 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002646 if (test_bit(RSCN_UPDATE, &save_flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002647 set_bit(RSCN_UPDATE, &vha->dpc_flags);
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07002648 if (!IS_ALOGIO_CAPABLE(ha))
2649 vha->flags.rscn_queue_overflow = 1;
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 }
2652
2653 return (rval);
2654}
2655
2656
2657
2658/*
2659 * qla2x00_configure_local_loop
2660 * Updates Fibre Channel Device Database with local loop devices.
2661 *
2662 * Input:
2663 * ha = adapter block pointer.
2664 *
2665 * Returns:
2666 * 0 = success.
2667 */
2668static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002669qla2x00_configure_local_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
2671 int rval, rval2;
2672 int found_devs;
2673 int found;
2674 fc_port_t *fcport, *new_fcport;
2675
2676 uint16_t index;
2677 uint16_t entries;
2678 char *id_iter;
2679 uint16_t loop_id;
2680 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002681 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
2683 found_devs = 0;
2684 new_fcport = NULL;
2685 entries = MAX_FIBRE_DEVICES;
2686
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002687 DEBUG3(printk("scsi(%ld): Getting FCAL position map\n", vha->host_no));
2688 DEBUG3(qla2x00_get_fcal_position_map(vha, NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
2690 /* Get list of logged in devices. */
2691 memset(ha->gid_list, 0, GID_LIST_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002692 rval = qla2x00_get_id_list(vha, ha->gid_list, ha->gid_list_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 &entries);
2694 if (rval != QLA_SUCCESS)
2695 goto cleanup_allocation;
2696
2697 DEBUG3(printk("scsi(%ld): Entries in ID list (%d)\n",
Andrew Vasquez76403352009-04-06 22:33:39 -07002698 vha->host_no, entries));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 DEBUG3(qla2x00_dump_buffer((uint8_t *)ha->gid_list,
2700 entries * sizeof(struct gid_list_info)));
2701
2702 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002703 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 if (new_fcport == NULL) {
2705 rval = QLA_MEMORY_ALLOC_FAILED;
2706 goto cleanup_allocation;
2707 }
2708 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2709
2710 /*
2711 * Mark local devices that were present with FCF_DEVICE_LOST for now.
2712 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002713 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 if (atomic_read(&fcport->state) == FCS_ONLINE &&
2715 fcport->port_type != FCT_BROADCAST &&
2716 (fcport->flags & FCF_FABRIC_DEVICE) == 0) {
2717
2718 DEBUG(printk("scsi(%ld): Marking port lost, "
2719 "loop_id=0x%04x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002720 vha->host_no, fcport->loop_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722 atomic_set(&fcport->state, FCS_DEVICE_LOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 }
2724 }
2725
2726 /* Add devices to port list. */
2727 id_iter = (char *)ha->gid_list;
2728 for (index = 0; index < entries; index++) {
2729 domain = ((struct gid_list_info *)id_iter)->domain;
2730 area = ((struct gid_list_info *)id_iter)->area;
2731 al_pa = ((struct gid_list_info *)id_iter)->al_pa;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002732 if (IS_QLA2100(ha) || IS_QLA2200(ha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 loop_id = (uint16_t)
2734 ((struct gid_list_info *)id_iter)->loop_id_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002735 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 loop_id = le16_to_cpu(
2737 ((struct gid_list_info *)id_iter)->loop_id);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002738 id_iter += ha->gid_list_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
2740 /* Bypass reserved domain fields. */
2741 if ((domain & 0xf0) == 0xf0)
2742 continue;
2743
2744 /* Bypass if not same domain and area of adapter. */
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07002745 if (area && domain &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002746 (area != vha->d_id.b.area || domain != vha->d_id.b.domain))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 continue;
2748
2749 /* Bypass invalid local loop ID. */
2750 if (loop_id > LAST_LOCAL_LOOP_ID)
2751 continue;
2752
2753 /* Fill in member data. */
2754 new_fcport->d_id.b.domain = domain;
2755 new_fcport->d_id.b.area = area;
2756 new_fcport->d_id.b.al_pa = al_pa;
2757 new_fcport->loop_id = loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002758 new_fcport->vp_idx = vha->vp_idx;
2759 rval2 = qla2x00_get_port_database(vha, new_fcport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 if (rval2 != QLA_SUCCESS) {
2761 DEBUG2(printk("scsi(%ld): Failed to retrieve fcport "
2762 "information -- get_port_database=%x, "
2763 "loop_id=0x%04x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002764 vha->host_no, rval2, new_fcport->loop_id));
andrew.vasquez@qlogic.comc9d02ac2006-01-13 17:05:26 -08002765 DEBUG2(printk("scsi(%ld): Scheduling resync...\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002766 vha->host_no));
2767 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 continue;
2769 }
2770
2771 /* Check for matching device in port list. */
2772 found = 0;
2773 fcport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002774 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 if (memcmp(new_fcport->port_name, fcport->port_name,
2776 WWN_SIZE))
2777 continue;
2778
Shyam Sundarddb9b122009-03-24 09:08:10 -07002779 fcport->flags &= ~FCF_FABRIC_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 fcport->loop_id = new_fcport->loop_id;
2781 fcport->port_type = new_fcport->port_type;
2782 fcport->d_id.b24 = new_fcport->d_id.b24;
2783 memcpy(fcport->node_name, new_fcport->node_name,
2784 WWN_SIZE);
2785
2786 found++;
2787 break;
2788 }
2789
2790 if (!found) {
2791 /* New device, add to fcports list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002792 if (vha->vp_idx) {
2793 new_fcport->vha = vha;
2794 new_fcport->vp_idx = vha->vp_idx;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002795 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002796 list_add_tail(&new_fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 /* Allocate a new replacement fcport. */
2799 fcport = new_fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002800 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 if (new_fcport == NULL) {
2802 rval = QLA_MEMORY_ALLOC_FAILED;
2803 goto cleanup_allocation;
2804 }
2805 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2806 }
2807
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002808 /* Base iIDMA settings on HBA port speed. */
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002809 fcport->fp_speed = ha->link_data_rate;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002810
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002811 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813 found_devs++;
2814 }
2815
2816cleanup_allocation:
Jesper Juhlc9475cb2005-11-07 01:01:26 -08002817 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
2819 if (rval != QLA_SUCCESS) {
2820 DEBUG2(printk("scsi(%ld): Configure local loop error exit: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002821 "rval=%x\n", vha->host_no, rval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
2823
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 return (rval);
2825}
2826
2827static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002828qla2x00_iidma_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002829{
2830#define LS_UNKNOWN 2
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002831 static char *link_speeds[] = { "1", "2", "?", "4", "8", "10" };
2832 char *link_speed;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002833 int rval;
Harish Zunjarrao1bb39542009-06-17 10:30:29 -07002834 uint16_t mb[4];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002835 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002836
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07002837 if (!IS_IIDMA_CAPABLE(ha))
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002838 return;
2839
Giridhar Malavalic9afb9a2010-09-03 15:20:48 -07002840 if (atomic_read(&fcport->state) != FCS_ONLINE)
2841 return;
2842
Andrew Vasquez39bd9622007-09-20 14:07:34 -07002843 if (fcport->fp_speed == PORT_SPEED_UNKNOWN ||
2844 fcport->fp_speed > ha->link_data_rate)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002845 return;
2846
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002847 rval = qla2x00_set_idma_speed(vha, fcport->loop_id, fcport->fp_speed,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002848 mb);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002849 if (rval != QLA_SUCCESS) {
2850 DEBUG2(printk("scsi(%ld): Unable to adjust iIDMA "
2851 "%02x%02x%02x%02x%02x%02x%02x%02x -- %04x %x %04x %04x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002852 vha->host_no, fcport->port_name[0], fcport->port_name[1],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002853 fcport->port_name[2], fcport->port_name[3],
2854 fcport->port_name[4], fcport->port_name[5],
2855 fcport->port_name[6], fcport->port_name[7], rval,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002856 fcport->fp_speed, mb[0], mb[1]));
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002857 } else {
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002858 link_speed = link_speeds[LS_UNKNOWN];
2859 if (fcport->fp_speed < 5)
2860 link_speed = link_speeds[fcport->fp_speed];
2861 else if (fcport->fp_speed == 0x13)
2862 link_speed = link_speeds[5];
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002863 DEBUG2(qla_printk(KERN_INFO, ha,
2864 "iIDMA adjusted to %s GB/s on "
2865 "%02x%02x%02x%02x%02x%02x%02x%02x.\n",
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002866 link_speed, fcport->port_name[0],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002867 fcport->port_name[1], fcport->port_name[2],
2868 fcport->port_name[3], fcport->port_name[4],
2869 fcport->port_name[5], fcport->port_name[6],
2870 fcport->port_name[7]));
2871 }
2872}
2873
Adrian Bunk23be3312006-11-24 02:46:01 +01002874static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002875qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport)
8482e112005-04-17 15:04:54 -05002876{
2877 struct fc_rport_identifiers rport_ids;
bdf79622005-04-17 15:06:53 -05002878 struct fc_rport *rport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002879 struct qla_hw_data *ha = vha->hw;
8482e112005-04-17 15:04:54 -05002880
Andrew Vasquezac280b62009-08-20 11:06:05 -07002881 qla2x00_rport_del(fcport);
8482e112005-04-17 15:04:54 -05002882
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07002883 rport_ids.node_name = wwn_to_u64(fcport->node_name);
2884 rport_ids.port_name = wwn_to_u64(fcport->port_name);
8482e112005-04-17 15:04:54 -05002885 rport_ids.port_id = fcport->d_id.b.domain << 16 |
2886 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
2887 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002888 fcport->rport = rport = fc_remote_port_add(vha->host, 0, &rport_ids);
Andrew Vasquez77d74142005-07-08 18:00:36 -07002889 if (!rport) {
2890 qla_printk(KERN_WARNING, ha,
2891 "Unable to allocate fc remote port!\n");
2892 return;
2893 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002894 spin_lock_irq(fcport->vha->host->host_lock);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002895 *((fc_port_t **)rport->dd_data) = fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002896 spin_unlock_irq(fcport->vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002897
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002898 rport->supported_classes = fcport->supported_classes;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002899
2900 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
8482e112005-04-17 15:04:54 -05002901 if (fcport->port_type == FCT_INITIATOR)
2902 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
2903 if (fcport->port_type == FCT_TARGET)
2904 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002905 fc_remote_port_rolechg(rport, rport_ids.roles);
8482e112005-04-17 15:04:54 -05002906}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908/*
Adrian Bunk23be3312006-11-24 02:46:01 +01002909 * qla2x00_update_fcport
2910 * Updates device on list.
2911 *
2912 * Input:
2913 * ha = adapter block pointer.
2914 * fcport = port structure pointer.
2915 *
2916 * Return:
2917 * 0 - Success
2918 * BIT_0 - error
2919 *
2920 * Context:
2921 * Kernel context.
2922 */
2923void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002924qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Adrian Bunk23be3312006-11-24 02:46:01 +01002925{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002926 fcport->vha = vha;
Adrian Bunk23be3312006-11-24 02:46:01 +01002927 fcport->login_retry = 0;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002928 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
Adrian Bunk23be3312006-11-24 02:46:01 +01002929
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002930 qla2x00_iidma_fcport(vha, fcport);
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08002931 qla24xx_update_fcport_fcp_prio(vha, fcport);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002932 qla2x00_reg_remote_port(vha, fcport);
Giridhar Malavali38170fa2010-10-15 11:27:49 -07002933 atomic_set(&fcport->state, FCS_ONLINE);
Adrian Bunk23be3312006-11-24 02:46:01 +01002934}
2935
2936/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 * qla2x00_configure_fabric
2938 * Setup SNS devices with loop ID's.
2939 *
2940 * Input:
2941 * ha = adapter block pointer.
2942 *
2943 * Returns:
2944 * 0 = success.
2945 * BIT_0 = error
2946 */
2947static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002948qla2x00_configure_fabric(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949{
2950 int rval, rval2;
2951 fc_port_t *fcport, *fcptemp;
2952 uint16_t next_loopid;
2953 uint16_t mb[MAILBOX_REGISTER_COUNT];
Andrew Vasquez01071092005-07-06 10:31:37 -07002954 uint16_t loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 LIST_HEAD(new_fcports);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002956 struct qla_hw_data *ha = vha->hw;
2957 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
2959 /* If FL port exists, then SNS is present */
Andrew Vasqueze4289242007-07-19 15:05:56 -07002960 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez01071092005-07-06 10:31:37 -07002961 loop_id = NPH_F_PORT;
2962 else
2963 loop_id = SNS_FL_PORT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002964 rval = qla2x00_get_port_name(vha, loop_id, vha->fabric_node_name, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 if (rval != QLA_SUCCESS) {
2966 DEBUG2(printk("scsi(%ld): MBC_GET_PORT_NAME Failed, No FL "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002967 "Port\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002969 vha->device_flags &= ~SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 return (QLA_SUCCESS);
2971 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002972 vha->device_flags |= SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
2974 /* Mark devices that need re-synchronization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002975 rval2 = qla2x00_device_resync(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 if (rval2 == QLA_RSCNS_HANDLED) {
2977 /* No point doing the scan, just continue. */
2978 return (QLA_SUCCESS);
2979 }
2980 do {
Andrew Vasquezcca53352005-08-26 19:08:30 -07002981 /* FDMI support. */
2982 if (ql2xfdmienable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002983 test_and_clear_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags))
2984 qla2x00_fdmi_register(vha);
Andrew Vasquezcca53352005-08-26 19:08:30 -07002985
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 /* Ensure we are logged into the SNS. */
Andrew Vasqueze4289242007-07-19 15:05:56 -07002987 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez01071092005-07-06 10:31:37 -07002988 loop_id = NPH_SNS;
2989 else
2990 loop_id = SIMPLE_NAME_SERVER;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002991 ha->isp_ops->fabric_login(vha, loop_id, 0xff, 0xff,
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002992 0xfc, mb, BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 if (mb[0] != MBS_COMMAND_COMPLETE) {
2994 DEBUG2(qla_printk(KERN_INFO, ha,
2995 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
Andrew Vasquez01071092005-07-06 10:31:37 -07002996 "mb[2]=%x mb[6]=%x mb[7]=%x\n", loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 mb[0], mb[1], mb[2], mb[6], mb[7]));
2998 return (QLA_SUCCESS);
2999 }
3000
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003001 if (test_and_clear_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags)) {
3002 if (qla2x00_rft_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 /* EMPTY */
3004 DEBUG2(printk("scsi(%ld): Register FC-4 "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003005 "TYPE failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003007 if (qla2x00_rff_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 /* EMPTY */
3009 DEBUG2(printk("scsi(%ld): Register FC-4 "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003010 "Features failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003012 if (qla2x00_rnn_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 /* EMPTY */
3014 DEBUG2(printk("scsi(%ld): Register Node Name "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003015 "failed.\n", vha->host_no));
3016 } else if (qla2x00_rsnn_nn(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 /* EMPTY */
3018 DEBUG2(printk("scsi(%ld): Register Symbolic "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003019 "Node Name failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 }
3021 }
3022
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003023 rval = qla2x00_find_all_fabric_devs(vha, &new_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 if (rval != QLA_SUCCESS)
3025 break;
3026
3027 /*
3028 * Logout all previous fabric devices marked lost, except
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003029 * FCP2 devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003031 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3032 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 break;
3034
3035 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0)
3036 continue;
3037
3038 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003039 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003040 ql2xplogiabsentdevice, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003042 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 fcport->port_type != FCT_INITIATOR &&
3044 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003045 ha->isp_ops->fabric_logout(vha,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003046 fcport->loop_id,
3047 fcport->d_id.b.domain,
3048 fcport->d_id.b.area,
3049 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 fcport->loop_id = FC_NO_LOOP_ID;
3051 }
3052 }
3053 }
3054
3055 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003056 next_loopid = ha->min_external_loopid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
3058 /*
3059 * Scan through our port list and login entries that need to be
3060 * logged in.
3061 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003062 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3063 if (atomic_read(&vha->loop_down_timer) ||
3064 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 break;
3066
3067 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
3068 (fcport->flags & FCF_LOGIN_NEEDED) == 0)
3069 continue;
3070
3071 if (fcport->loop_id == FC_NO_LOOP_ID) {
3072 fcport->loop_id = next_loopid;
Seokmann Jud4486fd2008-04-03 13:13:28 -07003073 rval = qla2x00_find_new_loop_id(
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003074 base_vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 if (rval != QLA_SUCCESS) {
3076 /* Ran out of IDs to use */
3077 break;
3078 }
3079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003081 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083
3084 /* Exit if out of loop IDs. */
3085 if (rval != QLA_SUCCESS) {
3086 break;
3087 }
3088
3089 /*
3090 * Login and add the new devices to our port list.
3091 */
3092 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003093 if (atomic_read(&vha->loop_down_timer) ||
3094 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 break;
3096
3097 /* Find a new loop ID to use. */
3098 fcport->loop_id = next_loopid;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003099 rval = qla2x00_find_new_loop_id(base_vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 if (rval != QLA_SUCCESS) {
3101 /* Ran out of IDs to use */
3102 break;
3103 }
3104
bdf79622005-04-17 15:06:53 -05003105 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003106 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003107
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003108 if (vha->vp_idx) {
3109 fcport->vha = vha;
3110 fcport->vp_idx = vha->vp_idx;
3111 }
3112 list_move_tail(&fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 }
3114 } while (0);
3115
3116 /* Free all new device structures not processed. */
3117 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
3118 list_del(&fcport->list);
3119 kfree(fcport);
3120 }
3121
3122 if (rval) {
3123 DEBUG2(printk("scsi(%ld): Configure fabric error exit: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003124 "rval=%d\n", vha->host_no, rval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 }
3126
3127 return (rval);
3128}
3129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130/*
3131 * qla2x00_find_all_fabric_devs
3132 *
3133 * Input:
3134 * ha = adapter block pointer.
3135 * dev = database device entry pointer.
3136 *
3137 * Returns:
3138 * 0 = success.
3139 *
3140 * Context:
3141 * Kernel context.
3142 */
3143static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003144qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha,
3145 struct list_head *new_fcports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146{
3147 int rval;
3148 uint16_t loop_id;
3149 fc_port_t *fcport, *new_fcport, *fcptemp;
3150 int found;
3151
3152 sw_info_t *swl;
3153 int swl_idx;
3154 int first_dev, last_dev;
Mike Waychison1516ef42010-05-04 15:01:31 -07003155 port_id_t wrap = {}, nxt_d_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003156 struct qla_hw_data *ha = vha->hw;
3157 struct scsi_qla_host *vp, *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003158 struct scsi_qla_host *tvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
3160 rval = QLA_SUCCESS;
3161
3162 /* Try GID_PT to get device list, else GAN. */
Andrew Vasquez4b892582008-09-11 21:22:48 -07003163 swl = kcalloc(MAX_FIBRE_DEVICES, sizeof(sw_info_t), GFP_KERNEL);
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02003164 if (!swl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 /*EMPTY*/
3166 DEBUG2(printk("scsi(%ld): GID_PT allocations failed, fallback "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003167 "on GA_NXT\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003169 if (qla2x00_gid_pt(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 kfree(swl);
3171 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003172 } else if (qla2x00_gpn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 kfree(swl);
3174 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003175 } else if (qla2x00_gnn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 kfree(swl);
3177 swl = NULL;
Andrew Vasqueze5896bd2008-07-10 16:55:52 -07003178 } else if (ql2xiidmaenable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003179 qla2x00_gfpn_id(vha, swl) == QLA_SUCCESS) {
3180 qla2x00_gpsc(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 }
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003182
3183 /* If other queries succeeded probe for FC-4 type */
3184 if (swl)
3185 qla2x00_gff_id(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 }
3187 swl_idx = 0;
3188
3189 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003190 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 if (new_fcport == NULL) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003192 kfree(swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 return (QLA_MEMORY_ALLOC_FAILED);
3194 }
3195 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 /* Set start port ID scan at adapter ID. */
3197 first_dev = 1;
3198 last_dev = 0;
3199
3200 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003201 loop_id = ha->min_external_loopid;
3202 for (; loop_id <= ha->max_loop_id; loop_id++) {
3203 if (qla2x00_is_reserved_id(vha, loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 continue;
3205
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07003206 if (ha->current_topology == ISP_CFG_FL &&
3207 (atomic_read(&vha->loop_down_timer) ||
3208 LOOP_TRANSITION(vha))) {
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003209 atomic_set(&vha->loop_down_timer, 0);
3210 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
3211 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 break;
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
3215 if (swl != NULL) {
3216 if (last_dev) {
3217 wrap.b24 = new_fcport->d_id.b24;
3218 } else {
3219 new_fcport->d_id.b24 = swl[swl_idx].d_id.b24;
3220 memcpy(new_fcport->node_name,
3221 swl[swl_idx].node_name, WWN_SIZE);
3222 memcpy(new_fcport->port_name,
3223 swl[swl_idx].port_name, WWN_SIZE);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003224 memcpy(new_fcport->fabric_port_name,
3225 swl[swl_idx].fabric_port_name, WWN_SIZE);
3226 new_fcport->fp_speed = swl[swl_idx].fp_speed;
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003227 new_fcport->fc4_type = swl[swl_idx].fc4_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
3229 if (swl[swl_idx].d_id.b.rsvd_1 != 0) {
3230 last_dev = 1;
3231 }
3232 swl_idx++;
3233 }
3234 } else {
3235 /* Send GA_NXT to the switch */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003236 rval = qla2x00_ga_nxt(vha, new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 if (rval != QLA_SUCCESS) {
3238 qla_printk(KERN_WARNING, ha,
3239 "SNS scan failed -- assuming zero-entry "
3240 "result...\n");
3241 list_for_each_entry_safe(fcport, fcptemp,
3242 new_fcports, list) {
3243 list_del(&fcport->list);
3244 kfree(fcport);
3245 }
3246 rval = QLA_SUCCESS;
3247 break;
3248 }
3249 }
3250
3251 /* If wrap on switch device list, exit. */
3252 if (first_dev) {
3253 wrap.b24 = new_fcport->d_id.b24;
3254 first_dev = 0;
3255 } else if (new_fcport->d_id.b24 == wrap.b24) {
3256 DEBUG2(printk("scsi(%ld): device wrap (%02x%02x%02x)\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003257 vha->host_no, new_fcport->d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 new_fcport->d_id.b.area, new_fcport->d_id.b.al_pa));
3259 break;
3260 }
3261
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003262 /* Bypass if same physical adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003263 if (new_fcport->d_id.b24 == base_vha->d_id.b24)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 continue;
3265
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003266 /* Bypass virtual ports of the same host. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003267 found = 0;
3268 if (ha->num_vhosts) {
Arun Easifeafb7b2010-09-03 14:57:00 -07003269 unsigned long flags;
3270
3271 spin_lock_irqsave(&ha->vport_slock, flags);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003272 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003273 if (new_fcport->d_id.b24 == vp->d_id.b24) {
3274 found = 1;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003275 break;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003276 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003277 }
Arun Easifeafb7b2010-09-03 14:57:00 -07003278 spin_unlock_irqrestore(&ha->vport_slock, flags);
3279
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003280 if (found)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003281 continue;
3282 }
3283
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003284 /* Bypass if same domain and area of adapter. */
3285 if (((new_fcport->d_id.b24 & 0xffff00) ==
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003286 (vha->d_id.b24 & 0xffff00)) && ha->current_topology ==
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003287 ISP_CFG_FL)
3288 continue;
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 /* Bypass reserved domain fields. */
3291 if ((new_fcport->d_id.b.domain & 0xf0) == 0xf0)
3292 continue;
3293
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003294 /* Bypass ports whose FCP-4 type is not FCP_SCSI */
Chad Dupuis4da26e12010-10-15 11:27:40 -07003295 if (ql2xgffidenable &&
3296 (new_fcport->fc4_type != FC4_TYPE_FCP_SCSI &&
3297 new_fcport->fc4_type != FC4_TYPE_UNKNOWN))
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003298 continue;
3299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 /* Locate matching device in database. */
3301 found = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003302 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 if (memcmp(new_fcport->port_name, fcport->port_name,
3304 WWN_SIZE))
3305 continue;
3306
3307 found++;
3308
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003309 /* Update port state. */
3310 memcpy(fcport->fabric_port_name,
3311 new_fcport->fabric_port_name, WWN_SIZE);
3312 fcport->fp_speed = new_fcport->fp_speed;
3313
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 /*
3315 * If address the same and state FCS_ONLINE, nothing
3316 * changed.
3317 */
3318 if (fcport->d_id.b24 == new_fcport->d_id.b24 &&
3319 atomic_read(&fcport->state) == FCS_ONLINE) {
3320 break;
3321 }
3322
3323 /*
3324 * If device was not a fabric device before.
3325 */
3326 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0) {
3327 fcport->d_id.b24 = new_fcport->d_id.b24;
3328 fcport->loop_id = FC_NO_LOOP_ID;
3329 fcport->flags |= (FCF_FABRIC_DEVICE |
3330 FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 break;
3332 }
3333
3334 /*
3335 * Port ID changed or device was marked to be updated;
3336 * Log it out if still logged in and mark it for
3337 * relogin later.
3338 */
3339 fcport->d_id.b24 = new_fcport->d_id.b24;
3340 fcport->flags |= FCF_LOGIN_NEEDED;
3341 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003342 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 fcport->port_type != FCT_INITIATOR &&
3344 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003345 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003346 fcport->d_id.b.domain, fcport->d_id.b.area,
3347 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 fcport->loop_id = FC_NO_LOOP_ID;
3349 }
3350
3351 break;
3352 }
3353
3354 if (found)
3355 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 /* If device was not in our fcports list, then add it. */
3357 list_add_tail(&new_fcport->list, new_fcports);
3358
3359 /* Allocate a new replacement fcport. */
3360 nxt_d_id.b24 = new_fcport->d_id.b24;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003361 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 if (new_fcport == NULL) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003363 kfree(swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 return (QLA_MEMORY_ALLOC_FAILED);
3365 }
3366 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
3367 new_fcport->d_id.b24 = nxt_d_id.b24;
3368 }
3369
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003370 kfree(swl);
3371 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 return (rval);
3374}
3375
3376/*
3377 * qla2x00_find_new_loop_id
3378 * Scan through our port list and find a new usable loop ID.
3379 *
3380 * Input:
3381 * ha: adapter state pointer.
3382 * dev: port structure pointer.
3383 *
3384 * Returns:
3385 * qla2x00 local function return status code.
3386 *
3387 * Context:
3388 * Kernel context.
3389 */
Adrian Bunk413975a2006-06-30 02:33:06 -07003390static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003391qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392{
3393 int rval;
3394 int found;
3395 fc_port_t *fcport;
3396 uint16_t first_loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003397 struct qla_hw_data *ha = vha->hw;
3398 struct scsi_qla_host *vp;
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003399 struct scsi_qla_host *tvp;
Arun Easifeafb7b2010-09-03 14:57:00 -07003400 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
3402 rval = QLA_SUCCESS;
3403
3404 /* Save starting loop ID. */
3405 first_loop_id = dev->loop_id;
3406
3407 for (;;) {
3408 /* Skip loop ID if already used by adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003409 if (dev->loop_id == vha->loop_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 dev->loop_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
3412 /* Skip reserved loop IDs. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003413 while (qla2x00_is_reserved_id(vha, dev->loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 dev->loop_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
3416 /* Reset loop ID if passed the end. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003417 if (dev->loop_id > ha->max_loop_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 /* first loop ID. */
3419 dev->loop_id = ha->min_external_loopid;
3420 }
3421
3422 /* Check for loop ID being already in use. */
3423 found = 0;
3424 fcport = NULL;
Arun Easifeafb7b2010-09-03 14:57:00 -07003425
3426 spin_lock_irqsave(&ha->vport_slock, flags);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003427 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003428 list_for_each_entry(fcport, &vp->vp_fcports, list) {
3429 if (fcport->loop_id == dev->loop_id &&
3430 fcport != dev) {
3431 /* ID possibly in use */
3432 found++;
3433 break;
3434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003436 if (found)
3437 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 }
Arun Easifeafb7b2010-09-03 14:57:00 -07003439 spin_unlock_irqrestore(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441 /* If not in use then it is free to use. */
3442 if (!found) {
3443 break;
3444 }
3445
3446 /* ID in use. Try next value. */
3447 dev->loop_id++;
3448
3449 /* If wrap around. No free ID to use. */
3450 if (dev->loop_id == first_loop_id) {
3451 dev->loop_id = FC_NO_LOOP_ID;
3452 rval = QLA_FUNCTION_FAILED;
3453 break;
3454 }
3455 }
3456
3457 return (rval);
3458}
3459
3460/*
3461 * qla2x00_device_resync
3462 * Marks devices in the database that needs resynchronization.
3463 *
3464 * Input:
3465 * ha = adapter block pointer.
3466 *
3467 * Context:
3468 * Kernel context.
3469 */
3470static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003471qla2x00_device_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472{
3473 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 uint32_t mask;
3475 fc_port_t *fcport;
3476 uint32_t rscn_entry;
3477 uint8_t rscn_out_iter;
3478 uint8_t format;
Mike Waychison1516ef42010-05-04 15:01:31 -07003479 port_id_t d_id = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
3481 rval = QLA_RSCNS_HANDLED;
3482
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003483 while (vha->rscn_out_ptr != vha->rscn_in_ptr ||
3484 vha->flags.rscn_queue_overflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003486 rscn_entry = vha->rscn_queue[vha->rscn_out_ptr];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 format = MSB(MSW(rscn_entry));
3488 d_id.b.domain = LSB(MSW(rscn_entry));
3489 d_id.b.area = MSB(LSW(rscn_entry));
3490 d_id.b.al_pa = LSB(LSW(rscn_entry));
3491
3492 DEBUG(printk("scsi(%ld): RSCN queue entry[%d] = "
3493 "[%02x/%02x%02x%02x].\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003494 vha->host_no, vha->rscn_out_ptr, format, d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 d_id.b.area, d_id.b.al_pa));
3496
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003497 vha->rscn_out_ptr++;
3498 if (vha->rscn_out_ptr == MAX_RSCN_COUNT)
3499 vha->rscn_out_ptr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
3501 /* Skip duplicate entries. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003502 for (rscn_out_iter = vha->rscn_out_ptr;
3503 !vha->flags.rscn_queue_overflow &&
3504 rscn_out_iter != vha->rscn_in_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 rscn_out_iter = (rscn_out_iter ==
3506 (MAX_RSCN_COUNT - 1)) ? 0: rscn_out_iter + 1) {
3507
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003508 if (rscn_entry != vha->rscn_queue[rscn_out_iter])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 break;
3510
3511 DEBUG(printk("scsi(%ld): Skipping duplicate RSCN queue "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003512 "entry found at [%d].\n", vha->host_no,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 rscn_out_iter));
3514
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003515 vha->rscn_out_ptr = rscn_out_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 }
3517
3518 /* Queue overflow, set switch default case. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003519 if (vha->flags.rscn_queue_overflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 DEBUG(printk("scsi(%ld): device_resync: rscn "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003521 "overflow.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
3523 format = 3;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003524 vha->flags.rscn_queue_overflow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 }
3526
3527 switch (format) {
3528 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 mask = 0xffffff;
3530 break;
3531 case 1:
3532 mask = 0xffff00;
3533 break;
3534 case 2:
3535 mask = 0xff0000;
3536 break;
3537 default:
3538 mask = 0x0;
3539 d_id.b24 = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003540 vha->rscn_out_ptr = vha->rscn_in_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 break;
3542 }
3543
3544 rval = QLA_SUCCESS;
3545
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003546 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
3548 (fcport->d_id.b24 & mask) != d_id.b24 ||
3549 fcport->port_type == FCT_BROADCAST)
3550 continue;
3551
3552 if (atomic_read(&fcport->state) == FCS_ONLINE) {
3553 if (format != 3 ||
3554 fcport->port_type != FCT_INITIATOR) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003555 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003556 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 }
3558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 }
3560 }
3561 return (rval);
3562}
3563
3564/*
3565 * qla2x00_fabric_dev_login
3566 * Login fabric target device and update FC port database.
3567 *
3568 * Input:
3569 * ha: adapter state pointer.
3570 * fcport: port structure list pointer.
3571 * next_loopid: contains value of a new loop ID that can be used
3572 * by the next login attempt.
3573 *
3574 * Returns:
3575 * qla2x00 local function return status code.
3576 *
3577 * Context:
3578 * Kernel context.
3579 */
3580static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003581qla2x00_fabric_dev_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 uint16_t *next_loopid)
3583{
3584 int rval;
3585 int retry;
Andrew Vasquez01071092005-07-06 10:31:37 -07003586 uint8_t opts;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003587 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
3589 rval = QLA_SUCCESS;
3590 retry = 0;
3591
Andrew Vasquezac280b62009-08-20 11:06:05 -07003592 if (IS_ALOGIO_CAPABLE(ha)) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003593 if (fcport->flags & FCF_ASYNC_SENT)
3594 return rval;
3595 fcport->flags |= FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003596 rval = qla2x00_post_async_login_work(vha, fcport, NULL);
3597 if (!rval)
3598 return rval;
3599 }
3600
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003601 fcport->flags &= ~FCF_ASYNC_SENT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003602 rval = qla2x00_fabric_login(vha, fcport, next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 if (rval == QLA_SUCCESS) {
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003604 /* Send an ADISC to FCP2 devices.*/
Andrew Vasquez01071092005-07-06 10:31:37 -07003605 opts = 0;
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003606 if (fcport->flags & FCF_FCP2_DEVICE)
Andrew Vasquez01071092005-07-06 10:31:37 -07003607 opts |= BIT_1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003608 rval = qla2x00_get_port_database(vha, fcport, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003610 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003611 fcport->d_id.b.domain, fcport->d_id.b.area,
3612 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003613 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003615 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 }
3617 }
3618
3619 return (rval);
3620}
3621
3622/*
3623 * qla2x00_fabric_login
3624 * Issue fabric login command.
3625 *
3626 * Input:
3627 * ha = adapter block pointer.
3628 * device = pointer to FC device type structure.
3629 *
3630 * Returns:
3631 * 0 - Login successfully
3632 * 1 - Login failed
3633 * 2 - Initiator device
3634 * 3 - Fatal error
3635 */
3636int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003637qla2x00_fabric_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 uint16_t *next_loopid)
3639{
3640 int rval;
3641 int retry;
3642 uint16_t tmp_loopid;
3643 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003644 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645
3646 retry = 0;
3647 tmp_loopid = 0;
3648
3649 for (;;) {
3650 DEBUG(printk("scsi(%ld): Trying Fabric Login w/loop id 0x%04x "
3651 "for port %02x%02x%02x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003652 vha->host_no, fcport->loop_id, fcport->d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 fcport->d_id.b.area, fcport->d_id.b.al_pa));
3654
3655 /* Login fcport on switch. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003656 ha->isp_ops->fabric_login(vha, fcport->loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 fcport->d_id.b.domain, fcport->d_id.b.area,
3658 fcport->d_id.b.al_pa, mb, BIT_0);
3659 if (mb[0] == MBS_PORT_ID_USED) {
3660 /*
3661 * Device has another loop ID. The firmware team
Andrew Vasquez01071092005-07-06 10:31:37 -07003662 * recommends the driver perform an implicit login with
3663 * the specified ID again. The ID we just used is save
3664 * here so we return with an ID that can be tried by
3665 * the next login.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 */
3667 retry++;
3668 tmp_loopid = fcport->loop_id;
3669 fcport->loop_id = mb[1];
3670
3671 DEBUG(printk("Fabric Login: port in use - next "
3672 "loop id=0x%04x, port Id=%02x%02x%02x.\n",
3673 fcport->loop_id, fcport->d_id.b.domain,
3674 fcport->d_id.b.area, fcport->d_id.b.al_pa));
3675
3676 } else if (mb[0] == MBS_COMMAND_COMPLETE) {
3677 /*
3678 * Login succeeded.
3679 */
3680 if (retry) {
3681 /* A retry occurred before. */
3682 *next_loopid = tmp_loopid;
3683 } else {
3684 /*
3685 * No retry occurred before. Just increment the
3686 * ID value for next login.
3687 */
3688 *next_loopid = (fcport->loop_id + 1);
3689 }
3690
3691 if (mb[1] & BIT_0) {
3692 fcport->port_type = FCT_INITIATOR;
3693 } else {
3694 fcport->port_type = FCT_TARGET;
3695 if (mb[1] & BIT_1) {
Santosh Vernekar8474f3a2009-08-25 11:36:16 -07003696 fcport->flags |= FCF_FCP2_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 }
3698 }
3699
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003700 if (mb[10] & BIT_0)
3701 fcport->supported_classes |= FC_COS_CLASS2;
3702 if (mb[10] & BIT_1)
3703 fcport->supported_classes |= FC_COS_CLASS3;
3704
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 rval = QLA_SUCCESS;
3706 break;
3707 } else if (mb[0] == MBS_LOOP_ID_USED) {
3708 /*
3709 * Loop ID already used, try next loop ID.
3710 */
3711 fcport->loop_id++;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003712 rval = qla2x00_find_new_loop_id(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 if (rval != QLA_SUCCESS) {
3714 /* Ran out of loop IDs to use */
3715 break;
3716 }
3717 } else if (mb[0] == MBS_COMMAND_ERROR) {
3718 /*
3719 * Firmware possibly timed out during login. If NO
3720 * retries are left to do then the device is declared
3721 * dead.
3722 */
3723 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003724 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003725 fcport->d_id.b.domain, fcport->d_id.b.area,
3726 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003727 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728
3729 rval = 1;
3730 break;
3731 } else {
3732 /*
3733 * unrecoverable / not handled error
3734 */
3735 DEBUG2(printk("%s(%ld): failed=%x port_id=%02x%02x%02x "
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003736 "loop_id=%x jiffies=%lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003737 __func__, vha->host_no, mb[0],
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 fcport->d_id.b.domain, fcport->d_id.b.area,
3739 fcport->d_id.b.al_pa, fcport->loop_id, jiffies));
3740
3741 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003742 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003743 fcport->d_id.b.domain, fcport->d_id.b.area,
3744 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 fcport->loop_id = FC_NO_LOOP_ID;
Andrew Vasquez0eedfcf2005-10-27 11:09:38 -07003746 fcport->login_retry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
3748 rval = 3;
3749 break;
3750 }
3751 }
3752
3753 return (rval);
3754}
3755
3756/*
3757 * qla2x00_local_device_login
3758 * Issue local device login command.
3759 *
3760 * Input:
3761 * ha = adapter block pointer.
3762 * loop_id = loop id of device to login to.
3763 *
3764 * Returns (Where's the #define!!!!):
3765 * 0 - Login successfully
3766 * 1 - Login failed
3767 * 3 - Fatal error
3768 */
3769int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003770qla2x00_local_device_login(scsi_qla_host_t *vha, fc_port_t *fcport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771{
3772 int rval;
3773 uint16_t mb[MAILBOX_REGISTER_COUNT];
3774
3775 memset(mb, 0, sizeof(mb));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003776 rval = qla2x00_login_local_device(vha, fcport, mb, BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 if (rval == QLA_SUCCESS) {
3778 /* Interrogate mailbox registers for any errors */
3779 if (mb[0] == MBS_COMMAND_ERROR)
3780 rval = 1;
3781 else if (mb[0] == MBS_COMMAND_PARAMETER_ERROR)
3782 /* device not in PCB table */
3783 rval = 3;
3784 }
3785
3786 return (rval);
3787}
3788
3789/*
3790 * qla2x00_loop_resync
3791 * Resync with fibre channel devices.
3792 *
3793 * Input:
3794 * ha = adapter block pointer.
3795 *
3796 * Returns:
3797 * 0 = success
3798 */
3799int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003800qla2x00_loop_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003802 int rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 uint32_t wait_time;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003804 struct req_que *req;
3805 struct rsp_que *rsp;
3806
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07003807 if (vha->hw->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003808 req = vha->hw->req_q_map[0];
3809 else
3810 req = vha->req;
3811 rsp = req->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003813 atomic_set(&vha->loop_state, LOOP_UPDATE);
3814 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3815 if (vha->flags.online) {
3816 if (!(rval = qla2x00_fw_ready(vha))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 /* Wait at most MAX_TARGET RSCNs for a stable link. */
3818 wait_time = 256;
3819 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003820 atomic_set(&vha->loop_state, LOOP_UPDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Andrew Vasquez01071092005-07-06 10:31:37 -07003822 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003823 qla2x00_marker(vha, req, rsp, 0, 0,
3824 MK_SYNC_ALL);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003825 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826
3827 /* Remap devices on Loop. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003828 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003830 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003832 } while (!atomic_read(&vha->loop_down_timer) &&
3833 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
3834 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
3835 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 }
3838
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003839 if (test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 return (QLA_FUNCTION_FAILED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003842 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
3845 return (rval);
3846}
3847
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003848/*
3849* qla2x00_perform_loop_resync
3850* Description: This function will set the appropriate flags and call
3851* qla2x00_loop_resync. If successful loop will be resynced
3852* Arguments : scsi_qla_host_t pointer
3853* returm : Success or Failure
3854*/
3855
3856int qla2x00_perform_loop_resync(scsi_qla_host_t *ha)
3857{
3858 int32_t rval = 0;
3859
3860 if (!test_and_set_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags)) {
3861 /*Configure the flags so that resync happens properly*/
3862 atomic_set(&ha->loop_down_timer, 0);
3863 if (!(ha->device_flags & DFLG_NO_CABLE)) {
3864 atomic_set(&ha->loop_state, LOOP_UP);
3865 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
3866 set_bit(REGISTER_FC4_NEEDED, &ha->dpc_flags);
3867 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
3868
3869 rval = qla2x00_loop_resync(ha);
3870 } else
3871 atomic_set(&ha->loop_state, LOOP_DEAD);
3872
3873 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
3874 }
3875
3876 return rval;
3877}
3878
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879void
Andrew Vasquez67becc02009-08-25 11:36:20 -07003880qla2x00_update_fcports(scsi_qla_host_t *base_vha)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003881{
3882 fc_port_t *fcport;
Arun Easifeafb7b2010-09-03 14:57:00 -07003883 struct scsi_qla_host *vha;
3884 struct qla_hw_data *ha = base_vha->hw;
3885 unsigned long flags;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003886
Arun Easifeafb7b2010-09-03 14:57:00 -07003887 spin_lock_irqsave(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003888 /* Go with deferred removal of rport references. */
Arun Easifeafb7b2010-09-03 14:57:00 -07003889 list_for_each_entry(vha, &base_vha->hw->vp_list, list) {
3890 atomic_inc(&vha->vref_count);
3891 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Dan Carpenter8ae598d2010-12-21 16:00:15 -08003892 if (fcport->drport &&
Arun Easifeafb7b2010-09-03 14:57:00 -07003893 atomic_read(&fcport->state) != FCS_UNCONFIGURED) {
3894 spin_unlock_irqrestore(&ha->vport_slock, flags);
3895
Andrew Vasquez67becc02009-08-25 11:36:20 -07003896 qla2x00_rport_del(fcport);
Arun Easifeafb7b2010-09-03 14:57:00 -07003897
3898 spin_lock_irqsave(&ha->vport_slock, flags);
3899 }
3900 }
3901 atomic_dec(&vha->vref_count);
3902 }
3903 spin_unlock_irqrestore(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003904}
3905
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003906/*
3907* qla82xx_quiescent_state_cleanup
3908* Description: This function will block the new I/Os
3909* Its not aborting any I/Os as context
3910* is not destroyed during quiescence
3911* Arguments: scsi_qla_host_t
3912* return : void
3913*/
3914void
3915qla82xx_quiescent_state_cleanup(scsi_qla_host_t *vha)
3916{
3917 struct qla_hw_data *ha = vha->hw;
3918 struct scsi_qla_host *vp;
3919
3920 qla_printk(KERN_INFO, ha,
3921 "Performing ISP error recovery - ha= %p.\n", ha);
3922
3923 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
3924 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
3925 atomic_set(&vha->loop_state, LOOP_DOWN);
3926 qla2x00_mark_all_devices_lost(vha, 0);
3927 list_for_each_entry(vp, &ha->vp_list, list)
3928 qla2x00_mark_all_devices_lost(vha, 0);
3929 } else {
3930 if (!atomic_read(&vha->loop_down_timer))
3931 atomic_set(&vha->loop_down_timer,
3932 LOOP_DOWN_TIME);
3933 }
3934 /* Wait for pending cmds to complete */
3935 qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST);
3936}
3937
Giridhar Malavalia9083012010-04-12 17:59:55 -07003938void
3939qla2x00_abort_isp_cleanup(scsi_qla_host_t *vha)
3940{
3941 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003942 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07003943 unsigned long flags;
Giridhar Malavalia9083012010-04-12 17:59:55 -07003944
3945 vha->flags.online = 0;
3946 ha->flags.chip_reset_done = 0;
3947 clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
3948 ha->qla_stats.total_isp_aborts++;
3949
3950 qla_printk(KERN_INFO, ha,
3951 "Performing ISP error recovery - ha= %p.\n", ha);
3952
3953 /* Chip reset does not apply to 82XX */
3954 if (!IS_QLA82XX(ha))
3955 ha->isp_ops->reset_chip(vha);
3956
3957 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
3958 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
3959 atomic_set(&vha->loop_state, LOOP_DOWN);
3960 qla2x00_mark_all_devices_lost(vha, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07003961
3962 spin_lock_irqsave(&ha->vport_slock, flags);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003963 list_for_each_entry(vp, &ha->vp_list, list) {
Arun Easifeafb7b2010-09-03 14:57:00 -07003964 atomic_inc(&vp->vref_count);
3965 spin_unlock_irqrestore(&ha->vport_slock, flags);
3966
Giridhar Malavalia9083012010-04-12 17:59:55 -07003967 qla2x00_mark_all_devices_lost(vp, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07003968
3969 spin_lock_irqsave(&ha->vport_slock, flags);
3970 atomic_dec(&vp->vref_count);
3971 }
3972 spin_unlock_irqrestore(&ha->vport_slock, flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07003973 } else {
3974 if (!atomic_read(&vha->loop_down_timer))
3975 atomic_set(&vha->loop_down_timer,
3976 LOOP_DOWN_TIME);
3977 }
3978
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07003979 if (!ha->flags.eeh_busy) {
3980 /* Make sure for ISP 82XX IO DMA is complete */
3981 if (IS_QLA82XX(ha)) {
3982 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0,
3983 WAIT_HOST) == QLA_SUCCESS) {
3984 DEBUG2(qla_printk(KERN_INFO, ha,
3985 "Done wait for pending commands\n"));
3986 }
Giridhar Malavali4d78c972010-07-23 15:28:35 +05003987 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07003988
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07003989 /* Requeue all commands in outstanding command list. */
3990 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
3991 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07003992}
3993
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994/*
3995* qla2x00_abort_isp
3996* Resets ISP and aborts all outstanding commands.
3997*
3998* Input:
3999* ha = adapter block pointer.
4000*
4001* Returns:
4002* 0 = success
4003*/
4004int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004005qla2x00_abort_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006{
Andrew Vasquez476e8972006-08-23 14:54:55 -07004007 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 uint8_t status = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004009 struct qla_hw_data *ha = vha->hw;
4010 struct scsi_qla_host *vp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004011 struct req_que *req = ha->req_q_map[0];
Arun Easifeafb7b2010-09-03 14:57:00 -07004012 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004014 if (vha->flags.online) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07004015 qla2x00_abort_isp_cleanup(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016
Andrew Vasquez85880802009-12-15 21:29:46 -08004017 if (unlikely(pci_channel_offline(ha->pdev) &&
4018 ha->flags.pci_channel_io_perm_failure)) {
4019 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
4020 status = 0;
4021 return status;
4022 }
4023
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004024 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -08004025
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004026 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004028 if (!qla2x00_restart_isp(vha)) {
4029 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004031 if (!atomic_read(&vha->loop_down_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 /*
4033 * Issue marker command only when we are going
4034 * to start the I/O .
4035 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004036 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 }
4038
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004039 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004041 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004043 ha->isp_abort_cnt = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004044 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Andrew Vasquez476e8972006-08-23 14:54:55 -07004045
Lalit Chandivade29c53972009-10-13 15:16:47 -07004046 if (IS_QLA81XX(ha))
4047 qla2x00_get_fw_version(vha,
4048 &ha->fw_major_version,
4049 &ha->fw_minor_version,
4050 &ha->fw_subminor_version,
4051 &ha->fw_attributes, &ha->fw_memory_size,
4052 ha->mpi_version, &ha->mpi_capabilities,
4053 ha->phy_version);
4054
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004055 if (ha->fce) {
4056 ha->flags.fce_enabled = 1;
4057 memset(ha->fce, 0,
4058 fce_calc_size(ha->fce_bufs));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004059 rval = qla2x00_enable_fce_trace(vha,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004060 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
4061 &ha->fce_bufs);
4062 if (rval) {
4063 qla_printk(KERN_WARNING, ha,
4064 "Unable to reinitialize FCE "
4065 "(%d).\n", rval);
4066 ha->flags.fce_enabled = 0;
4067 }
4068 }
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004069
4070 if (ha->eft) {
4071 memset(ha->eft, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004072 rval = qla2x00_enable_eft_trace(vha,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004073 ha->eft_dma, EFT_NUM_BUFFERS);
4074 if (rval) {
4075 qla_printk(KERN_WARNING, ha,
4076 "Unable to reinitialize EFT "
4077 "(%d).\n", rval);
4078 }
4079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 } else { /* failed the ISP abort */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004081 vha->flags.online = 1;
4082 if (test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 if (ha->isp_abort_cnt == 0) {
4084 qla_printk(KERN_WARNING, ha,
4085 "ISP error recovery failed - "
4086 "board disabled\n");
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004087 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 * The next call disables the board
4089 * completely.
4090 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004091 ha->isp_ops->reset_adapter(vha);
4092 vha->flags.online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 clear_bit(ISP_ABORT_RETRY,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004094 &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 status = 0;
4096 } else { /* schedule another ISP abort */
4097 ha->isp_abort_cnt--;
4098 DEBUG(printk("qla%ld: ISP abort - "
Andrew Vasquez01071092005-07-06 10:31:37 -07004099 "retry remaining %d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004100 vha->host_no, ha->isp_abort_cnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 status = 1;
4102 }
4103 } else {
4104 ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
4105 DEBUG(printk("qla2x00(%ld): ISP error recovery "
4106 "- retrying (%d) more times\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004107 vha->host_no, ha->isp_abort_cnt));
4108 set_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 status = 1;
4110 }
4111 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004112
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 }
4114
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004115 if (!status) {
4116 DEBUG(printk(KERN_INFO
4117 "qla2x00_abort_isp(%ld): succeeded.\n",
4118 vha->host_no));
Arun Easifeafb7b2010-09-03 14:57:00 -07004119
4120 spin_lock_irqsave(&ha->vport_slock, flags);
4121 list_for_each_entry(vp, &ha->vp_list, list) {
4122 if (vp->vp_idx) {
4123 atomic_inc(&vp->vref_count);
4124 spin_unlock_irqrestore(&ha->vport_slock, flags);
4125
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004126 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07004127
4128 spin_lock_irqsave(&ha->vport_slock, flags);
4129 atomic_dec(&vp->vref_count);
4130 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004131 }
Arun Easifeafb7b2010-09-03 14:57:00 -07004132 spin_unlock_irqrestore(&ha->vport_slock, flags);
4133
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004134 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 qla_printk(KERN_INFO, ha,
4136 "qla2x00_abort_isp: **** FAILED ****\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 }
4138
4139 return(status);
4140}
4141
4142/*
4143* qla2x00_restart_isp
4144* restarts the ISP after a reset
4145*
4146* Input:
4147* ha = adapter block pointer.
4148*
4149* Returns:
4150* 0 = success
4151*/
4152static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004153qla2x00_restart_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154{
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08004155 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 uint32_t wait_time;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004157 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004158 struct req_que *req = ha->req_q_map[0];
4159 struct rsp_que *rsp = ha->rsp_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
4161 /* If firmware needs to be loaded */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004162 if (qla2x00_isp_firmware(vha)) {
4163 vha->flags.online = 0;
4164 status = ha->isp_ops->chip_diag(vha);
4165 if (!status)
4166 status = qla2x00_setup_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 }
4168
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004169 if (!status && !(status = qla2x00_init_rings(vha))) {
4170 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -07004171 ha->flags.chip_reset_done = 1;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004172 /* Initialize the queues in use */
4173 qla25xx_init_queues(ha);
4174
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004175 status = qla2x00_fw_ready(vha);
4176 if (!status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 DEBUG(printk("%s(): Start configure loop, "
Andrew Vasquez744f11fd2006-06-23 16:11:05 -07004178 "status = %d\n", __func__, status));
Andrew Vasquez01071092005-07-06 10:31:37 -07004179
4180 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004181 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Andrew Vasquez01071092005-07-06 10:31:37 -07004182
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004183 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 /* Wait at most MAX_TARGET RSCNs for a stable link. */
4185 wait_time = 256;
4186 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004187 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4188 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004190 } while (!atomic_read(&vha->loop_down_timer) &&
4191 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
4192 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
4193 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 }
4195
4196 /* if no cable then assume it's good */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004197 if ((vha->device_flags & DFLG_NO_CABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 status = 0;
4199
4200 DEBUG(printk("%s(): Configure loop done, status = 0x%x\n",
4201 __func__,
Andrew Vasquez744f11fd2006-06-23 16:11:05 -07004202 status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 }
4204 return (status);
4205}
4206
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004207static int
4208qla25xx_init_queues(struct qla_hw_data *ha)
4209{
4210 struct rsp_que *rsp = NULL;
4211 struct req_que *req = NULL;
4212 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
4213 int ret = -1;
4214 int i;
4215
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004216 for (i = 1; i < ha->max_rsp_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004217 rsp = ha->rsp_q_map[i];
4218 if (rsp) {
4219 rsp->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004220 ret = qla25xx_init_rsp_que(base_vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004221 if (ret != QLA_SUCCESS)
4222 DEBUG2_17(printk(KERN_WARNING
4223 "%s Rsp que:%d init failed\n", __func__,
4224 rsp->id));
4225 else
4226 DEBUG2_17(printk(KERN_INFO
4227 "%s Rsp que:%d inited\n", __func__,
4228 rsp->id));
4229 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004230 }
4231 for (i = 1; i < ha->max_req_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004232 req = ha->req_q_map[i];
4233 if (req) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08004234 /* Clear outstanding commands array. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004235 req->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004236 ret = qla25xx_init_req_que(base_vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004237 if (ret != QLA_SUCCESS)
4238 DEBUG2_17(printk(KERN_WARNING
4239 "%s Req que:%d init failed\n", __func__,
4240 req->id));
4241 else
4242 DEBUG2_17(printk(KERN_WARNING
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08004243 "%s Req que:%d inited\n", __func__,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004244 req->id));
4245 }
4246 }
4247 return ret;
4248}
4249
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250/*
4251* qla2x00_reset_adapter
4252* Reset adapter.
4253*
4254* Input:
4255* ha = adapter block pointer.
4256*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07004257void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004258qla2x00_reset_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259{
4260 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004261 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07004262 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004264 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004265 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 spin_lock_irqsave(&ha->hardware_lock, flags);
4268 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
4269 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4270 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
4271 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4272 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4273}
Andrew Vasquez01071092005-07-06 10:31:37 -07004274
4275void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004276qla24xx_reset_adapter(scsi_qla_host_t *vha)
Andrew Vasquez01071092005-07-06 10:31:37 -07004277{
4278 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004279 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez01071092005-07-06 10:31:37 -07004280 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
4281
Giridhar Malavalia9083012010-04-12 17:59:55 -07004282 if (IS_QLA82XX(ha))
4283 return;
4284
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004285 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004286 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez01071092005-07-06 10:31:37 -07004287
4288 spin_lock_irqsave(&ha->hardware_lock, flags);
4289 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
4290 RD_REG_DWORD(&reg->hccr);
4291 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
4292 RD_REG_DWORD(&reg->hccr);
4293 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez09ff36d2009-01-22 09:45:30 -08004294
4295 if (IS_NOPOLLING_TYPE(ha))
4296 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez01071092005-07-06 10:31:37 -07004297}
4298
David Miller4e08df32007-04-16 12:37:43 -07004299/* On sparc systems, obtain port and node WWN from firmware
4300 * properties.
4301 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004302static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t *vha,
4303 struct nvram_24xx *nv)
David Miller4e08df32007-04-16 12:37:43 -07004304{
4305#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004306 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07004307 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07004308 struct device_node *dp = pci_device_to_OF_node(pdev);
4309 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07004310 int len;
4311
4312 val = of_get_property(dp, "port-wwn", &len);
4313 if (val && len >= WWN_SIZE)
4314 memcpy(nv->port_name, val, WWN_SIZE);
4315
4316 val = of_get_property(dp, "node-wwn", &len);
4317 if (val && len >= WWN_SIZE)
4318 memcpy(nv->node_name, val, WWN_SIZE);
4319#endif
4320}
4321
Andrew Vasquez01071092005-07-06 10:31:37 -07004322int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004323qla24xx_nvram_config(scsi_qla_host_t *vha)
Andrew Vasquez01071092005-07-06 10:31:37 -07004324{
David Miller4e08df32007-04-16 12:37:43 -07004325 int rval;
Andrew Vasquez01071092005-07-06 10:31:37 -07004326 struct init_cb_24xx *icb;
4327 struct nvram_24xx *nv;
4328 uint32_t *dptr;
4329 uint8_t *dptr1, *dptr2;
4330 uint32_t chksum;
4331 uint16_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004332 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez01071092005-07-06 10:31:37 -07004333
David Miller4e08df32007-04-16 12:37:43 -07004334 rval = QLA_SUCCESS;
Andrew Vasquez01071092005-07-06 10:31:37 -07004335 icb = (struct init_cb_24xx *)ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07004336 nv = ha->nvram;
Andrew Vasquez01071092005-07-06 10:31:37 -07004337
4338 /* Determine NVRAM starting address. */
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004339 if (ha->flags.port0) {
4340 ha->nvram_base = FA_NVRAM_FUNC0_ADDR;
4341 ha->vpd_base = FA_NVRAM_VPD0_ADDR;
4342 } else {
Andrew Vasquez01071092005-07-06 10:31:37 -07004343 ha->nvram_base = FA_NVRAM_FUNC1_ADDR;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -08004344 ha->vpd_base = FA_NVRAM_VPD1_ADDR;
4345 }
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004346 ha->nvram_size = sizeof(struct nvram_24xx);
4347 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004348 if (IS_QLA82XX(ha))
4349 ha->vpd_size = FA_VPD_SIZE_82XX;
Andrew Vasquez01071092005-07-06 10:31:37 -07004350
Seokmann Ju281afe12007-07-26 13:43:34 -07004351 /* Get VPD data into cache */
4352 ha->vpd = ha->nvram + VPD_OFFSET;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004353 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd,
Seokmann Ju281afe12007-07-26 13:43:34 -07004354 ha->nvram_base - FA_NVRAM_FUNC0_ADDR, FA_NVRAM_VPD_SIZE * 4);
4355
4356 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez01071092005-07-06 10:31:37 -07004357 dptr = (uint32_t *)nv;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004358 ha->isp_ops->read_nvram(vha, (uint8_t *)dptr, ha->nvram_base,
Andrew Vasquez01071092005-07-06 10:31:37 -07004359 ha->nvram_size);
4360 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
4361 chksum += le32_to_cpu(*dptr++);
4362
Andrew Vasquez76403352009-04-06 22:33:39 -07004363 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Seokmann Ju281afe12007-07-26 13:43:34 -07004364 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
Andrew Vasquez01071092005-07-06 10:31:37 -07004365
4366 /* Bad NVRAM data, set defaults parameters. */
4367 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
4368 || nv->id[3] != ' ' ||
4369 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
4370 /* Reset NVRAM data. */
4371 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
4372 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
4373 le16_to_cpu(nv->nvram_version));
David Miller4e08df32007-04-16 12:37:43 -07004374 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
4375 "invalid -- WWPN) defaults.\n");
4376
4377 /*
4378 * Set default initialization control block.
4379 */
4380 memset(nv, 0, ha->nvram_size);
4381 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
4382 nv->version = __constant_cpu_to_le16(ICB_VERSION);
4383 nv->frame_payload_size = __constant_cpu_to_le16(2048);
4384 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4385 nv->exchange_count = __constant_cpu_to_le16(0);
4386 nv->hard_address = __constant_cpu_to_le16(124);
4387 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004388 nv->port_name[1] = 0x00 + ha->port_no;
David Miller4e08df32007-04-16 12:37:43 -07004389 nv->port_name[2] = 0x00;
4390 nv->port_name[3] = 0xe0;
4391 nv->port_name[4] = 0x8b;
4392 nv->port_name[5] = 0x1c;
4393 nv->port_name[6] = 0x55;
4394 nv->port_name[7] = 0x86;
4395 nv->node_name[0] = 0x20;
4396 nv->node_name[1] = 0x00;
4397 nv->node_name[2] = 0x00;
4398 nv->node_name[3] = 0xe0;
4399 nv->node_name[4] = 0x8b;
4400 nv->node_name[5] = 0x1c;
4401 nv->node_name[6] = 0x55;
4402 nv->node_name[7] = 0x86;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004403 qla24xx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07004404 nv->login_retry_count = __constant_cpu_to_le16(8);
4405 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
4406 nv->login_timeout = __constant_cpu_to_le16(0);
4407 nv->firmware_options_1 =
4408 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
4409 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
4410 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
4411 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
4412 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
4413 nv->efi_parameters = __constant_cpu_to_le32(0);
4414 nv->reset_delay = 5;
4415 nv->max_luns_per_target = __constant_cpu_to_le16(128);
4416 nv->port_down_retry_count = __constant_cpu_to_le16(30);
4417 nv->link_down_timeout = __constant_cpu_to_le16(30);
4418
4419 rval = 1;
Andrew Vasquez01071092005-07-06 10:31:37 -07004420 }
4421
4422 /* Reset Initialization control block */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004423 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez01071092005-07-06 10:31:37 -07004424
4425 /* Copy 1st segment. */
4426 dptr1 = (uint8_t *)icb;
4427 dptr2 = (uint8_t *)&nv->version;
4428 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
4429 while (cnt--)
4430 *dptr1++ = *dptr2++;
4431
4432 icb->login_retry_count = nv->login_retry_count;
Andrew Vasquez3ea66e22006-06-23 16:11:27 -07004433 icb->link_down_on_nos = nv->link_down_on_nos;
Andrew Vasquez01071092005-07-06 10:31:37 -07004434
4435 /* Copy 2nd segment. */
4436 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
4437 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
4438 cnt = (uint8_t *)&icb->reserved_3 -
4439 (uint8_t *)&icb->interrupt_delay_timer;
4440 while (cnt--)
4441 *dptr1++ = *dptr2++;
4442
4443 /*
4444 * Setup driver NVRAM options.
4445 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004446 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08004447 "QLA2462");
Andrew Vasquez01071092005-07-06 10:31:37 -07004448
Andrew Vasquez5341e862006-05-17 15:09:16 -07004449 /* Use alternate WWN? */
4450 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
4451 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
4452 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
4453 }
4454
Andrew Vasquez01071092005-07-06 10:31:37 -07004455 /* Prepare nodename */
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004456 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
Andrew Vasquez01071092005-07-06 10:31:37 -07004457 /*
4458 * Firmware will apply the following mask if the nodename was
4459 * not provided.
4460 */
4461 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
4462 icb->node_name[0] &= 0xF0;
4463 }
4464
4465 /* Set host adapter parameters. */
4466 ha->flags.disable_risc_code_load = 0;
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08004467 ha->flags.enable_lip_reset = 0;
4468 ha->flags.enable_lip_full_login =
4469 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
4470 ha->flags.enable_target_reset =
4471 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
Andrew Vasquez01071092005-07-06 10:31:37 -07004472 ha->flags.enable_led_scheme = 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07004473 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
Andrew Vasquez01071092005-07-06 10:31:37 -07004474
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004475 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
4476 (BIT_6 | BIT_5 | BIT_4)) >> 4;
Andrew Vasquez01071092005-07-06 10:31:37 -07004477
4478 memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
4479 sizeof(ha->fw_seriallink_options24));
4480
4481 /* save HBA serial number */
4482 ha->serial0 = icb->port_name[5];
4483 ha->serial1 = icb->port_name[6];
4484 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004485 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
4486 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Andrew Vasquez01071092005-07-06 10:31:37 -07004487
andrew.vasquez@qlogic.combc8fb3c2006-01-13 17:05:42 -08004488 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4489
Andrew Vasquez01071092005-07-06 10:31:37 -07004490 ha->retry_count = le16_to_cpu(nv->login_retry_count);
4491
4492 /* Set minimum login_timeout to 4 seconds. */
4493 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
4494 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
4495 if (le16_to_cpu(nv->login_timeout) < 4)
4496 nv->login_timeout = __constant_cpu_to_le16(4);
4497 ha->login_timeout = le16_to_cpu(nv->login_timeout);
Seokmann Juc6852c42008-04-24 15:21:29 -07004498 icb->login_timeout = nv->login_timeout;
Andrew Vasquez01071092005-07-06 10:31:37 -07004499
Andrew Vasquez00a537b2008-02-28 14:06:11 -08004500 /* Set minimum RATOV to 100 tenths of a second. */
4501 ha->r_a_tov = 100;
Andrew Vasquez01071092005-07-06 10:31:37 -07004502
4503 ha->loop_reset_delay = nv->reset_delay;
4504
4505 /* Link Down Timeout = 0:
4506 *
4507 * When Port Down timer expires we will start returning
4508 * I/O's to OS with "DID_NO_CONNECT".
4509 *
4510 * Link Down Timeout != 0:
4511 *
4512 * The driver waits for the link to come up after link down
4513 * before returning I/Os to OS with "DID_NO_CONNECT".
4514 */
4515 if (le16_to_cpu(nv->link_down_timeout) == 0) {
4516 ha->loop_down_abort_time =
4517 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
4518 } else {
4519 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
4520 ha->loop_down_abort_time =
4521 (LOOP_DOWN_TIME - ha->link_down_timeout);
4522 }
4523
4524 /* Need enough time to try and get the port back. */
4525 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
4526 if (qlport_down_retry)
4527 ha->port_down_retry_count = qlport_down_retry;
4528
4529 /* Set login_retry_count */
4530 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
4531 if (ha->port_down_retry_count ==
4532 le16_to_cpu(nv->port_down_retry_count) &&
4533 ha->port_down_retry_count > 3)
4534 ha->login_retry_count = ha->port_down_retry_count;
4535 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
4536 ha->login_retry_count = ha->port_down_retry_count;
4537 if (ql2xloginretrycount)
4538 ha->login_retry_count = ql2xloginretrycount;
4539
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004540 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004541 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004542 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
4543 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
4544 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
4545 le16_to_cpu(icb->interrupt_delay_timer): 2;
4546 }
4547 icb->firmware_options_2 &= __constant_cpu_to_le32(
4548 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004549 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004550 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08004551 ha->zio_mode = QLA_ZIO_MODE_6;
4552
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004553 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer delay "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004554 "(%d us).\n", vha->host_no, ha->zio_mode,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004555 ha->zio_timer * 100));
4556 qla_printk(KERN_INFO, ha,
4557 "ZIO mode %d enabled; timer delay (%d us).\n",
4558 ha->zio_mode, ha->zio_timer * 100);
4559
4560 icb->firmware_options_2 |= cpu_to_le32(
4561 (uint32_t)ha->zio_mode);
4562 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004563 vha->flags.process_response_queue = 1;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004564 }
4565
David Miller4e08df32007-04-16 12:37:43 -07004566 if (rval) {
4567 DEBUG2_3(printk(KERN_WARNING
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004568 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
David Miller4e08df32007-04-16 12:37:43 -07004569 }
4570 return (rval);
Andrew Vasquez01071092005-07-06 10:31:37 -07004571}
4572
Adrian Bunk413975a2006-06-30 02:33:06 -07004573static int
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004574qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
4575 uint32_t faddr)
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004576{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004577 int rval = QLA_SUCCESS;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004578 int segments, fragment;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004579 uint32_t *dcode, dlen;
4580 uint32_t risc_addr;
4581 uint32_t risc_size;
4582 uint32_t i;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004583 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004584 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004585
4586 qla_printk(KERN_INFO, ha,
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004587 "FW: Loading from flash (%x)...\n", faddr);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004588
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004589 rval = QLA_SUCCESS;
4590
4591 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004592 dcode = (uint32_t *)req->ring;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004593 *srisc_addr = 0;
4594
4595 /* Validate firmware image by checking version. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004596 qla24xx_read_flash_data(vha, dcode, faddr + 4, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004597 for (i = 0; i < 4; i++)
4598 dcode[i] = be32_to_cpu(dcode[i]);
4599 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
4600 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
4601 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
4602 dcode[3] == 0)) {
4603 qla_printk(KERN_WARNING, ha,
4604 "Unable to verify integrity of flash firmware image!\n");
4605 qla_printk(KERN_WARNING, ha,
4606 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
4607 dcode[1], dcode[2], dcode[3]);
4608
4609 return QLA_FUNCTION_FAILED;
4610 }
4611
4612 while (segments && rval == QLA_SUCCESS) {
4613 /* Read segment's load information. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004614 qla24xx_read_flash_data(vha, dcode, faddr, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004615
4616 risc_addr = be32_to_cpu(dcode[2]);
4617 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
4618 risc_size = be32_to_cpu(dcode[3]);
4619
4620 fragment = 0;
4621 while (risc_size > 0 && rval == QLA_SUCCESS) {
4622 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
4623 if (dlen > risc_size)
4624 dlen = risc_size;
4625
4626 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
4627 "addr %x, number of dwords 0x%x, offset 0x%x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004628 vha->host_no, risc_addr, dlen, faddr));
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004629
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004630 qla24xx_read_flash_data(vha, dcode, faddr, dlen);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004631 for (i = 0; i < dlen; i++)
4632 dcode[i] = swab32(dcode[i]);
4633
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004634 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004635 dlen);
4636 if (rval) {
4637 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004638 "segment %d of firmware\n", vha->host_no,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004639 fragment));
4640 qla_printk(KERN_WARNING, ha,
4641 "[ERROR] Failed to load segment %d of "
4642 "firmware\n", fragment);
4643 break;
4644 }
4645
4646 faddr += dlen;
4647 risc_addr += dlen;
4648 risc_size -= dlen;
4649 fragment++;
4650 }
4651
4652 /* Next segment. */
4653 segments--;
4654 }
4655
4656 return rval;
4657}
4658
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004659#define QLA_FW_URL "ftp://ftp.qlogic.com/outgoing/linux/firmware/"
4660
Andrew Vasquez01071092005-07-06 10:31:37 -07004661int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004662qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez54333832005-11-09 15:49:04 -08004663{
4664 int rval;
4665 int i, fragment;
4666 uint16_t *wcode, *fwcode;
4667 uint32_t risc_addr, risc_size, fwclen, wlen, *seg;
4668 struct fw_blob *blob;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004669 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004670 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez54333832005-11-09 15:49:04 -08004671
4672 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004673 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08004674 if (!blob) {
4675 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004676 qla_printk(KERN_ERR, ha, "Firmware images can be retrieved "
4677 "from: " QLA_FW_URL ".\n");
Andrew Vasquez54333832005-11-09 15:49:04 -08004678 return QLA_FUNCTION_FAILED;
4679 }
4680
4681 rval = QLA_SUCCESS;
4682
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004683 wcode = (uint16_t *)req->ring;
Andrew Vasquez54333832005-11-09 15:49:04 -08004684 *srisc_addr = 0;
4685 fwcode = (uint16_t *)blob->fw->data;
4686 fwclen = 0;
4687
4688 /* Validate firmware image by checking version. */
4689 if (blob->fw->size < 8 * sizeof(uint16_t)) {
4690 qla_printk(KERN_WARNING, ha,
4691 "Unable to verify integrity of firmware image (%Zd)!\n",
4692 blob->fw->size);
4693 goto fail_fw_integrity;
4694 }
4695 for (i = 0; i < 4; i++)
4696 wcode[i] = be16_to_cpu(fwcode[i + 4]);
4697 if ((wcode[0] == 0xffff && wcode[1] == 0xffff && wcode[2] == 0xffff &&
4698 wcode[3] == 0xffff) || (wcode[0] == 0 && wcode[1] == 0 &&
4699 wcode[2] == 0 && wcode[3] == 0)) {
4700 qla_printk(KERN_WARNING, ha,
4701 "Unable to verify integrity of firmware image!\n");
4702 qla_printk(KERN_WARNING, ha,
4703 "Firmware data: %04x %04x %04x %04x!\n", wcode[0],
4704 wcode[1], wcode[2], wcode[3]);
4705 goto fail_fw_integrity;
4706 }
4707
4708 seg = blob->segs;
4709 while (*seg && rval == QLA_SUCCESS) {
4710 risc_addr = *seg;
4711 *srisc_addr = *srisc_addr == 0 ? *seg : *srisc_addr;
4712 risc_size = be16_to_cpu(fwcode[3]);
4713
4714 /* Validate firmware image size. */
4715 fwclen += risc_size * sizeof(uint16_t);
4716 if (blob->fw->size < fwclen) {
4717 qla_printk(KERN_WARNING, ha,
4718 "Unable to verify integrity of firmware image "
4719 "(%Zd)!\n", blob->fw->size);
4720 goto fail_fw_integrity;
4721 }
4722
4723 fragment = 0;
4724 while (risc_size > 0 && rval == QLA_SUCCESS) {
4725 wlen = (uint16_t)(ha->fw_transfer_size >> 1);
4726 if (wlen > risc_size)
4727 wlen = risc_size;
4728
4729 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004730 "addr %x, number of words 0x%x.\n", vha->host_no,
Andrew Vasquez54333832005-11-09 15:49:04 -08004731 risc_addr, wlen));
4732
4733 for (i = 0; i < wlen; i++)
4734 wcode[i] = swab16(fwcode[i]);
4735
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004736 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquez54333832005-11-09 15:49:04 -08004737 wlen);
4738 if (rval) {
4739 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004740 "segment %d of firmware\n", vha->host_no,
Andrew Vasquez54333832005-11-09 15:49:04 -08004741 fragment));
4742 qla_printk(KERN_WARNING, ha,
4743 "[ERROR] Failed to load segment %d of "
4744 "firmware\n", fragment);
4745 break;
4746 }
4747
4748 fwcode += wlen;
4749 risc_addr += wlen;
4750 risc_size -= wlen;
4751 fragment++;
4752 }
4753
4754 /* Next segment. */
4755 seg++;
4756 }
4757 return rval;
4758
4759fail_fw_integrity:
4760 return QLA_FUNCTION_FAILED;
4761}
4762
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004763static int
4764qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez01071092005-07-06 10:31:37 -07004765{
4766 int rval;
4767 int segments, fragment;
4768 uint32_t *dcode, dlen;
4769 uint32_t risc_addr;
4770 uint32_t risc_size;
4771 uint32_t i;
Andrew Vasquez54333832005-11-09 15:49:04 -08004772 struct fw_blob *blob;
Andrew Vasquez01071092005-07-06 10:31:37 -07004773 uint32_t *fwcode, fwclen;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004774 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004775 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez01071092005-07-06 10:31:37 -07004776
Andrew Vasquez54333832005-11-09 15:49:04 -08004777 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004778 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08004779 if (!blob) {
4780 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004781 qla_printk(KERN_ERR, ha, "Firmware images can be retrieved "
4782 "from: " QLA_FW_URL ".\n");
4783
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004784 return QLA_FUNCTION_FAILED;
Andrew Vasquez01071092005-07-06 10:31:37 -07004785 }
4786
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004787 qla_printk(KERN_INFO, ha,
4788 "FW: Loading via request-firmware...\n");
4789
Andrew Vasquez01071092005-07-06 10:31:37 -07004790 rval = QLA_SUCCESS;
4791
4792 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004793 dcode = (uint32_t *)req->ring;
Andrew Vasquez01071092005-07-06 10:31:37 -07004794 *srisc_addr = 0;
Andrew Vasquez54333832005-11-09 15:49:04 -08004795 fwcode = (uint32_t *)blob->fw->data;
Andrew Vasquez01071092005-07-06 10:31:37 -07004796 fwclen = 0;
4797
4798 /* Validate firmware image by checking version. */
Andrew Vasquez54333832005-11-09 15:49:04 -08004799 if (blob->fw->size < 8 * sizeof(uint32_t)) {
Andrew Vasquez01071092005-07-06 10:31:37 -07004800 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004801 "Unable to verify integrity of firmware image (%Zd)!\n",
4802 blob->fw->size);
Andrew Vasquez01071092005-07-06 10:31:37 -07004803 goto fail_fw_integrity;
4804 }
4805 for (i = 0; i < 4; i++)
4806 dcode[i] = be32_to_cpu(fwcode[i + 4]);
4807 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
4808 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
4809 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
4810 dcode[3] == 0)) {
4811 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004812 "Unable to verify integrity of firmware image!\n");
Andrew Vasquez01071092005-07-06 10:31:37 -07004813 qla_printk(KERN_WARNING, ha,
4814 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
4815 dcode[1], dcode[2], dcode[3]);
4816 goto fail_fw_integrity;
4817 }
4818
4819 while (segments && rval == QLA_SUCCESS) {
4820 risc_addr = be32_to_cpu(fwcode[2]);
4821 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
4822 risc_size = be32_to_cpu(fwcode[3]);
4823
4824 /* Validate firmware image size. */
4825 fwclen += risc_size * sizeof(uint32_t);
Andrew Vasquez54333832005-11-09 15:49:04 -08004826 if (blob->fw->size < fwclen) {
Andrew Vasquez01071092005-07-06 10:31:37 -07004827 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004828 "Unable to verify integrity of firmware image "
4829 "(%Zd)!\n", blob->fw->size);
4830
Andrew Vasquez01071092005-07-06 10:31:37 -07004831 goto fail_fw_integrity;
4832 }
4833
4834 fragment = 0;
4835 while (risc_size > 0 && rval == QLA_SUCCESS) {
4836 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
4837 if (dlen > risc_size)
4838 dlen = risc_size;
4839
4840 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004841 "addr %x, number of dwords 0x%x.\n", vha->host_no,
Andrew Vasquez01071092005-07-06 10:31:37 -07004842 risc_addr, dlen));
4843
4844 for (i = 0; i < dlen; i++)
4845 dcode[i] = swab32(fwcode[i]);
4846
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004847 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
andrew.vasquez@qlogic.com590f98e2006-01-13 17:05:37 -08004848 dlen);
Andrew Vasquez01071092005-07-06 10:31:37 -07004849 if (rval) {
4850 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004851 "segment %d of firmware\n", vha->host_no,
Andrew Vasquez01071092005-07-06 10:31:37 -07004852 fragment));
4853 qla_printk(KERN_WARNING, ha,
4854 "[ERROR] Failed to load segment %d of "
4855 "firmware\n", fragment);
4856 break;
4857 }
4858
4859 fwcode += dlen;
4860 risc_addr += dlen;
4861 risc_size -= dlen;
4862 fragment++;
4863 }
4864
4865 /* Next segment. */
4866 segments--;
4867 }
Andrew Vasquez01071092005-07-06 10:31:37 -07004868 return rval;
4869
4870fail_fw_integrity:
Andrew Vasquez01071092005-07-06 10:31:37 -07004871 return QLA_FUNCTION_FAILED;
Andrew Vasquez01071092005-07-06 10:31:37 -07004872}
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004873
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004874int
4875qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
4876{
4877 int rval;
4878
Andrew Vasqueze337d902009-04-06 22:33:49 -07004879 if (ql2xfwloadbin == 1)
4880 return qla81xx_load_risc(vha, srisc_addr);
4881
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004882 /*
4883 * FW Load priority:
4884 * 1) Firmware via request-firmware interface (.bin file).
4885 * 2) Firmware residing in flash.
4886 */
4887 rval = qla24xx_load_risc_blob(vha, srisc_addr);
4888 if (rval == QLA_SUCCESS)
4889 return rval;
4890
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004891 return qla24xx_load_risc_flash(vha, srisc_addr,
4892 vha->hw->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004893}
4894
4895int
4896qla81xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
4897{
4898 int rval;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004899 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004900
Andrew Vasqueze337d902009-04-06 22:33:49 -07004901 if (ql2xfwloadbin == 2)
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004902 goto try_blob_fw;
Andrew Vasqueze337d902009-04-06 22:33:49 -07004903
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004904 /*
4905 * FW Load priority:
4906 * 1) Firmware residing in flash.
4907 * 2) Firmware via request-firmware interface (.bin file).
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004908 * 3) Golden-Firmware residing in flash -- limited operation.
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004909 */
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004910 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004911 if (rval == QLA_SUCCESS)
4912 return rval;
4913
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004914try_blob_fw:
4915 rval = qla24xx_load_risc_blob(vha, srisc_addr);
4916 if (rval == QLA_SUCCESS || !ha->flt_region_gold_fw)
4917 return rval;
4918
4919 qla_printk(KERN_ERR, ha,
4920 "FW: Attempting to fallback to golden firmware...\n");
4921 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_gold_fw);
4922 if (rval != QLA_SUCCESS)
4923 return rval;
4924
4925 qla_printk(KERN_ERR, ha,
4926 "FW: Please update operational firmware...\n");
4927 ha->flags.running_gold_fw = 1;
4928
4929 return rval;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004930}
4931
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004932void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004933qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004934{
4935 int ret, retries;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004936 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004937
Andrew Vasquez85880802009-12-15 21:29:46 -08004938 if (ha->flags.pci_channel_io_perm_failure)
4939 return;
Andrew Vasqueze4289242007-07-19 15:05:56 -07004940 if (!IS_FWI2_CAPABLE(ha))
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004941 return;
Andrew Vasquez75edf812007-05-07 07:43:00 -07004942 if (!ha->fw_major_version)
4943 return;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004944
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004945 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez7c7f1f22008-02-28 14:06:09 -08004946 for (retries = 5; ret != QLA_SUCCESS && ret != QLA_FUNCTION_TIMEOUT &&
Andrew Vasquezb469a7c2009-04-06 22:33:48 -07004947 ret != QLA_INVALID_COMMAND && retries ; retries--) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004948 ha->isp_ops->reset_chip(vha);
4949 if (ha->isp_ops->chip_diag(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004950 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004951 if (qla2x00_setup_chip(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004952 continue;
4953 qla_printk(KERN_INFO, ha,
4954 "Attempting retry of stop-firmware command...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004955 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004956 }
4957}
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004958
4959int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004960qla24xx_configure_vhba(scsi_qla_host_t *vha)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004961{
4962 int rval = QLA_SUCCESS;
4963 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004964 struct qla_hw_data *ha = vha->hw;
4965 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07004966 struct req_que *req;
4967 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004968
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004969 if (!vha->vp_idx)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004970 return -EINVAL;
4971
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004972 rval = qla2x00_fw_ready(base_vha);
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07004973 if (ha->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07004974 req = ha->req_q_map[0];
4975 else
4976 req = vha->req;
4977 rsp = req->rsp;
4978
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004979 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004980 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004981 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004982 }
4983
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004984 vha->flags.management_server_logged_in = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004985
4986 /* Login to SNS first */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004987 ha->isp_ops->fabric_login(vha, NPH_SNS, 0xff, 0xff, 0xfc, mb, BIT_1);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004988 if (mb[0] != MBS_COMMAND_COMPLETE) {
4989 DEBUG15(qla_printk(KERN_INFO, ha,
4990 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
4991 "mb[2]=%x mb[6]=%x mb[7]=%x\n", NPH_SNS,
4992 mb[0], mb[1], mb[2], mb[6], mb[7]));
4993 return (QLA_FUNCTION_FAILED);
4994 }
4995
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004996 atomic_set(&vha->loop_down_timer, 0);
4997 atomic_set(&vha->loop_state, LOOP_UP);
4998 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4999 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
5000 rval = qla2x00_loop_resync(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005001
5002 return rval;
5003}
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005004
5005/* 84XX Support **************************************************************/
5006
5007static LIST_HEAD(qla_cs84xx_list);
5008static DEFINE_MUTEX(qla_cs84xx_mutex);
5009
5010static struct qla_chip_state_84xx *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005011qla84xx_get_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005012{
5013 struct qla_chip_state_84xx *cs84xx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005014 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005015
5016 mutex_lock(&qla_cs84xx_mutex);
5017
5018 /* Find any shared 84xx chip. */
5019 list_for_each_entry(cs84xx, &qla_cs84xx_list, list) {
5020 if (cs84xx->bus == ha->pdev->bus) {
5021 kref_get(&cs84xx->kref);
5022 goto done;
5023 }
5024 }
5025
5026 cs84xx = kzalloc(sizeof(*cs84xx), GFP_KERNEL);
5027 if (!cs84xx)
5028 goto done;
5029
5030 kref_init(&cs84xx->kref);
5031 spin_lock_init(&cs84xx->access_lock);
5032 mutex_init(&cs84xx->fw_update_mutex);
5033 cs84xx->bus = ha->pdev->bus;
5034
5035 list_add_tail(&cs84xx->list, &qla_cs84xx_list);
5036done:
5037 mutex_unlock(&qla_cs84xx_mutex);
5038 return cs84xx;
5039}
5040
5041static void
5042__qla84xx_chip_release(struct kref *kref)
5043{
5044 struct qla_chip_state_84xx *cs84xx =
5045 container_of(kref, struct qla_chip_state_84xx, kref);
5046
5047 mutex_lock(&qla_cs84xx_mutex);
5048 list_del(&cs84xx->list);
5049 mutex_unlock(&qla_cs84xx_mutex);
5050 kfree(cs84xx);
5051}
5052
5053void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005054qla84xx_put_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005055{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005056 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005057 if (ha->cs84xx)
5058 kref_put(&ha->cs84xx->kref, __qla84xx_chip_release);
5059}
5060
5061static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005062qla84xx_init_chip(scsi_qla_host_t *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005063{
5064 int rval;
5065 uint16_t status[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005066 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005067
5068 mutex_lock(&ha->cs84xx->fw_update_mutex);
5069
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005070 rval = qla84xx_verify_chip(vha, status);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005071
5072 mutex_unlock(&ha->cs84xx->fw_update_mutex);
5073
5074 return rval != QLA_SUCCESS || status[0] ? QLA_FUNCTION_FAILED:
5075 QLA_SUCCESS;
5076}
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005077
5078/* 81XX Support **************************************************************/
5079
5080int
5081qla81xx_nvram_config(scsi_qla_host_t *vha)
5082{
5083 int rval;
5084 struct init_cb_81xx *icb;
5085 struct nvram_81xx *nv;
5086 uint32_t *dptr;
5087 uint8_t *dptr1, *dptr2;
5088 uint32_t chksum;
5089 uint16_t cnt;
5090 struct qla_hw_data *ha = vha->hw;
5091
5092 rval = QLA_SUCCESS;
5093 icb = (struct init_cb_81xx *)ha->init_cb;
5094 nv = ha->nvram;
5095
5096 /* Determine NVRAM starting address. */
5097 ha->nvram_size = sizeof(struct nvram_81xx);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005098 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005099
5100 /* Get VPD data into cache */
5101 ha->vpd = ha->nvram + VPD_OFFSET;
Andrew Vasquez3d790382009-03-24 09:08:14 -07005102 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
5103 ha->vpd_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005104
5105 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez3d790382009-03-24 09:08:14 -07005106 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005107 ha->nvram_size);
Andrew Vasquez3d790382009-03-24 09:08:14 -07005108 dptr = (uint32_t *)nv;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005109 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
5110 chksum += le32_to_cpu(*dptr++);
5111
Andrew Vasquez76403352009-04-06 22:33:39 -07005112 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005113 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
5114
5115 /* Bad NVRAM data, set defaults parameters. */
5116 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
5117 || nv->id[3] != ' ' ||
5118 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
5119 /* Reset NVRAM data. */
5120 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
5121 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
5122 le16_to_cpu(nv->nvram_version));
5123 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
5124 "invalid -- WWPN) defaults.\n");
5125
5126 /*
5127 * Set default initialization control block.
5128 */
5129 memset(nv, 0, ha->nvram_size);
5130 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
5131 nv->version = __constant_cpu_to_le16(ICB_VERSION);
5132 nv->frame_payload_size = __constant_cpu_to_le16(2048);
5133 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5134 nv->exchange_count = __constant_cpu_to_le16(0);
5135 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005136 nv->port_name[1] = 0x00 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005137 nv->port_name[2] = 0x00;
5138 nv->port_name[3] = 0xe0;
5139 nv->port_name[4] = 0x8b;
5140 nv->port_name[5] = 0x1c;
5141 nv->port_name[6] = 0x55;
5142 nv->port_name[7] = 0x86;
5143 nv->node_name[0] = 0x20;
5144 nv->node_name[1] = 0x00;
5145 nv->node_name[2] = 0x00;
5146 nv->node_name[3] = 0xe0;
5147 nv->node_name[4] = 0x8b;
5148 nv->node_name[5] = 0x1c;
5149 nv->node_name[6] = 0x55;
5150 nv->node_name[7] = 0x86;
5151 nv->login_retry_count = __constant_cpu_to_le16(8);
5152 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
5153 nv->login_timeout = __constant_cpu_to_le16(0);
5154 nv->firmware_options_1 =
5155 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
5156 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
5157 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
5158 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
5159 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
5160 nv->efi_parameters = __constant_cpu_to_le32(0);
5161 nv->reset_delay = 5;
5162 nv->max_luns_per_target = __constant_cpu_to_le16(128);
5163 nv->port_down_retry_count = __constant_cpu_to_le16(30);
5164 nv->link_down_timeout = __constant_cpu_to_le16(30);
Andrew Vasquezeeebcc92009-06-03 09:55:24 -07005165 nv->enode_mac[0] = 0x00;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005166 nv->enode_mac[1] = 0x02;
5167 nv->enode_mac[2] = 0x03;
5168 nv->enode_mac[3] = 0x04;
5169 nv->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005170 nv->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005171
5172 rval = 1;
5173 }
5174
5175 /* Reset Initialization control block */
5176 memset(icb, 0, sizeof(struct init_cb_81xx));
5177
5178 /* Copy 1st segment. */
5179 dptr1 = (uint8_t *)icb;
5180 dptr2 = (uint8_t *)&nv->version;
5181 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
5182 while (cnt--)
5183 *dptr1++ = *dptr2++;
5184
5185 icb->login_retry_count = nv->login_retry_count;
5186
5187 /* Copy 2nd segment. */
5188 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
5189 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
5190 cnt = (uint8_t *)&icb->reserved_5 -
5191 (uint8_t *)&icb->interrupt_delay_timer;
5192 while (cnt--)
5193 *dptr1++ = *dptr2++;
5194
5195 memcpy(icb->enode_mac, nv->enode_mac, sizeof(icb->enode_mac));
5196 /* Some boards (with valid NVRAMs) still have NULL enode_mac!! */
5197 if (!memcmp(icb->enode_mac, "\0\0\0\0\0\0", sizeof(icb->enode_mac))) {
5198 icb->enode_mac[0] = 0x01;
5199 icb->enode_mac[1] = 0x02;
5200 icb->enode_mac[2] = 0x03;
5201 icb->enode_mac[3] = 0x04;
5202 icb->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005203 icb->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005204 }
5205
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07005206 /* Use extended-initialization control block. */
5207 memcpy(ha->ex_init_cb, &nv->ex_version, sizeof(*ha->ex_init_cb));
5208
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005209 /*
5210 * Setup driver NVRAM options.
5211 */
5212 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Giridhar Malavalia9083012010-04-12 17:59:55 -07005213 "QLE8XXX");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005214
5215 /* Use alternate WWN? */
5216 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
5217 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
5218 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
5219 }
5220
5221 /* Prepare nodename */
5222 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
5223 /*
5224 * Firmware will apply the following mask if the nodename was
5225 * not provided.
5226 */
5227 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
5228 icb->node_name[0] &= 0xF0;
5229 }
5230
5231 /* Set host adapter parameters. */
5232 ha->flags.disable_risc_code_load = 0;
5233 ha->flags.enable_lip_reset = 0;
5234 ha->flags.enable_lip_full_login =
5235 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
5236 ha->flags.enable_target_reset =
5237 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
5238 ha->flags.enable_led_scheme = 0;
5239 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
5240
5241 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
5242 (BIT_6 | BIT_5 | BIT_4)) >> 4;
5243
5244 /* save HBA serial number */
5245 ha->serial0 = icb->port_name[5];
5246 ha->serial1 = icb->port_name[6];
5247 ha->serial2 = icb->port_name[7];
5248 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
5249 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
5250
5251 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5252
5253 ha->retry_count = le16_to_cpu(nv->login_retry_count);
5254
5255 /* Set minimum login_timeout to 4 seconds. */
5256 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
5257 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
5258 if (le16_to_cpu(nv->login_timeout) < 4)
5259 nv->login_timeout = __constant_cpu_to_le16(4);
5260 ha->login_timeout = le16_to_cpu(nv->login_timeout);
5261 icb->login_timeout = nv->login_timeout;
5262
5263 /* Set minimum RATOV to 100 tenths of a second. */
5264 ha->r_a_tov = 100;
5265
5266 ha->loop_reset_delay = nv->reset_delay;
5267
5268 /* Link Down Timeout = 0:
5269 *
5270 * When Port Down timer expires we will start returning
5271 * I/O's to OS with "DID_NO_CONNECT".
5272 *
5273 * Link Down Timeout != 0:
5274 *
5275 * The driver waits for the link to come up after link down
5276 * before returning I/Os to OS with "DID_NO_CONNECT".
5277 */
5278 if (le16_to_cpu(nv->link_down_timeout) == 0) {
5279 ha->loop_down_abort_time =
5280 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
5281 } else {
5282 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
5283 ha->loop_down_abort_time =
5284 (LOOP_DOWN_TIME - ha->link_down_timeout);
5285 }
5286
5287 /* Need enough time to try and get the port back. */
5288 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
5289 if (qlport_down_retry)
5290 ha->port_down_retry_count = qlport_down_retry;
5291
5292 /* Set login_retry_count */
5293 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
5294 if (ha->port_down_retry_count ==
5295 le16_to_cpu(nv->port_down_retry_count) &&
5296 ha->port_down_retry_count > 3)
5297 ha->login_retry_count = ha->port_down_retry_count;
5298 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
5299 ha->login_retry_count = ha->port_down_retry_count;
5300 if (ql2xloginretrycount)
5301 ha->login_retry_count = ql2xloginretrycount;
5302
5303 /* Enable ZIO. */
5304 if (!vha->flags.init_done) {
5305 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
5306 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
5307 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
5308 le16_to_cpu(icb->interrupt_delay_timer): 2;
5309 }
5310 icb->firmware_options_2 &= __constant_cpu_to_le32(
5311 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
5312 vha->flags.process_response_queue = 0;
5313 if (ha->zio_mode != QLA_ZIO_DISABLED) {
5314 ha->zio_mode = QLA_ZIO_MODE_6;
5315
5316 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer delay "
5317 "(%d us).\n", vha->host_no, ha->zio_mode,
5318 ha->zio_timer * 100));
5319 qla_printk(KERN_INFO, ha,
5320 "ZIO mode %d enabled; timer delay (%d us).\n",
5321 ha->zio_mode, ha->zio_timer * 100);
5322
5323 icb->firmware_options_2 |= cpu_to_le32(
5324 (uint32_t)ha->zio_mode);
5325 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
5326 vha->flags.process_response_queue = 1;
5327 }
5328
5329 if (rval) {
5330 DEBUG2_3(printk(KERN_WARNING
5331 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
5332 }
5333 return (rval);
5334}
5335
Giridhar Malavalia9083012010-04-12 17:59:55 -07005336int
5337qla82xx_restart_isp(scsi_qla_host_t *vha)
5338{
5339 int status, rval;
5340 uint32_t wait_time;
5341 struct qla_hw_data *ha = vha->hw;
5342 struct req_que *req = ha->req_q_map[0];
5343 struct rsp_que *rsp = ha->rsp_q_map[0];
5344 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07005345 unsigned long flags;
Giridhar Malavalia9083012010-04-12 17:59:55 -07005346
5347 status = qla2x00_init_rings(vha);
5348 if (!status) {
5349 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5350 ha->flags.chip_reset_done = 1;
5351
5352 status = qla2x00_fw_ready(vha);
5353 if (!status) {
5354 qla_printk(KERN_INFO, ha,
5355 "%s(): Start configure loop, "
5356 "status = %d\n", __func__, status);
5357
5358 /* Issue a marker after FW becomes ready. */
5359 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
5360
5361 vha->flags.online = 1;
5362 /* Wait at most MAX_TARGET RSCNs for a stable link. */
5363 wait_time = 256;
5364 do {
5365 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5366 qla2x00_configure_loop(vha);
5367 wait_time--;
5368 } while (!atomic_read(&vha->loop_down_timer) &&
5369 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags)) &&
5370 wait_time &&
5371 (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)));
5372 }
5373
5374 /* if no cable then assume it's good */
5375 if ((vha->device_flags & DFLG_NO_CABLE))
5376 status = 0;
5377
5378 qla_printk(KERN_INFO, ha,
5379 "%s(): Configure loop done, status = 0x%x\n",
5380 __func__, status);
5381 }
5382
5383 if (!status) {
5384 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5385
5386 if (!atomic_read(&vha->loop_down_timer)) {
5387 /*
5388 * Issue marker command only when we are going
5389 * to start the I/O .
5390 */
5391 vha->marker_needed = 1;
5392 }
5393
5394 vha->flags.online = 1;
5395
5396 ha->isp_ops->enable_intrs(ha);
5397
5398 ha->isp_abort_cnt = 0;
5399 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
5400
5401 if (ha->fce) {
5402 ha->flags.fce_enabled = 1;
5403 memset(ha->fce, 0,
5404 fce_calc_size(ha->fce_bufs));
5405 rval = qla2x00_enable_fce_trace(vha,
5406 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
5407 &ha->fce_bufs);
5408 if (rval) {
5409 qla_printk(KERN_WARNING, ha,
5410 "Unable to reinitialize FCE "
5411 "(%d).\n", rval);
5412 ha->flags.fce_enabled = 0;
5413 }
5414 }
5415
5416 if (ha->eft) {
5417 memset(ha->eft, 0, EFT_SIZE);
5418 rval = qla2x00_enable_eft_trace(vha,
5419 ha->eft_dma, EFT_NUM_BUFFERS);
5420 if (rval) {
5421 qla_printk(KERN_WARNING, ha,
5422 "Unable to reinitialize EFT "
5423 "(%d).\n", rval);
5424 }
5425 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005426 }
5427
5428 if (!status) {
5429 DEBUG(printk(KERN_INFO
5430 "qla82xx_restart_isp(%ld): succeeded.\n",
5431 vha->host_no));
Arun Easifeafb7b2010-09-03 14:57:00 -07005432
5433 spin_lock_irqsave(&ha->vport_slock, flags);
5434 list_for_each_entry(vp, &ha->vp_list, list) {
5435 if (vp->vp_idx) {
5436 atomic_inc(&vp->vref_count);
5437 spin_unlock_irqrestore(&ha->vport_slock, flags);
5438
Giridhar Malavalia9083012010-04-12 17:59:55 -07005439 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07005440
5441 spin_lock_irqsave(&ha->vport_slock, flags);
5442 atomic_dec(&vp->vref_count);
5443 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005444 }
Arun Easifeafb7b2010-09-03 14:57:00 -07005445 spin_unlock_irqrestore(&ha->vport_slock, flags);
5446
Giridhar Malavalia9083012010-04-12 17:59:55 -07005447 } else {
5448 qla_printk(KERN_INFO, ha,
5449 "qla82xx_restart_isp: **** FAILED ****\n");
5450 }
5451
5452 return status;
5453}
5454
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005455void
Andrew Vasquezae97c912010-02-18 10:07:28 -08005456qla81xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005457{
Andrew Vasquezae97c912010-02-18 10:07:28 -08005458 struct qla_hw_data *ha = vha->hw;
5459
5460 if (!ql2xetsenable)
5461 return;
5462
5463 /* Enable ETS Burst. */
5464 memset(ha->fw_options, 0, sizeof(ha->fw_options));
5465 ha->fw_options[2] |= BIT_9;
5466 qla2x00_set_fw_options(vha, ha->fw_options);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005467}
Sarang Radke09ff7012010-03-19 17:03:59 -07005468
5469/*
5470 * qla24xx_get_fcp_prio
5471 * Gets the fcp cmd priority value for the logged in port.
5472 * Looks for a match of the port descriptors within
5473 * each of the fcp prio config entries. If a match is found,
5474 * the tag (priority) value is returned.
5475 *
5476 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005477 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07005478 * fcport = port structure pointer.
5479 *
5480 * Return:
Andrew Vasquez6c452a42010-03-19 17:04:02 -07005481 * non-zero (if found)
Sarang Radke09ff7012010-03-19 17:03:59 -07005482 * 0 (if not found)
5483 *
5484 * Context:
5485 * Kernel context
5486 */
5487uint8_t
5488qla24xx_get_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
5489{
5490 int i, entries;
5491 uint8_t pid_match, wwn_match;
5492 uint8_t priority;
5493 uint32_t pid1, pid2;
5494 uint64_t wwn1, wwn2;
5495 struct qla_fcp_prio_entry *pri_entry;
5496 struct qla_hw_data *ha = vha->hw;
5497
5498 if (!ha->fcp_prio_cfg || !ha->flags.fcp_prio_enabled)
5499 return 0;
5500
5501 priority = 0;
5502 entries = ha->fcp_prio_cfg->num_entries;
5503 pri_entry = &ha->fcp_prio_cfg->entry[0];
5504
5505 for (i = 0; i < entries; i++) {
5506 pid_match = wwn_match = 0;
5507
5508 if (!(pri_entry->flags & FCP_PRIO_ENTRY_VALID)) {
5509 pri_entry++;
5510 continue;
5511 }
5512
5513 /* check source pid for a match */
5514 if (pri_entry->flags & FCP_PRIO_ENTRY_SPID_VALID) {
5515 pid1 = pri_entry->src_pid & INVALID_PORT_ID;
5516 pid2 = vha->d_id.b24 & INVALID_PORT_ID;
5517 if (pid1 == INVALID_PORT_ID)
5518 pid_match++;
5519 else if (pid1 == pid2)
5520 pid_match++;
5521 }
5522
5523 /* check destination pid for a match */
5524 if (pri_entry->flags & FCP_PRIO_ENTRY_DPID_VALID) {
5525 pid1 = pri_entry->dst_pid & INVALID_PORT_ID;
5526 pid2 = fcport->d_id.b24 & INVALID_PORT_ID;
5527 if (pid1 == INVALID_PORT_ID)
5528 pid_match++;
5529 else if (pid1 == pid2)
5530 pid_match++;
5531 }
5532
5533 /* check source WWN for a match */
5534 if (pri_entry->flags & FCP_PRIO_ENTRY_SWWN_VALID) {
5535 wwn1 = wwn_to_u64(vha->port_name);
5536 wwn2 = wwn_to_u64(pri_entry->src_wwpn);
5537 if (wwn2 == (uint64_t)-1)
5538 wwn_match++;
5539 else if (wwn1 == wwn2)
5540 wwn_match++;
5541 }
5542
5543 /* check destination WWN for a match */
5544 if (pri_entry->flags & FCP_PRIO_ENTRY_DWWN_VALID) {
5545 wwn1 = wwn_to_u64(fcport->port_name);
5546 wwn2 = wwn_to_u64(pri_entry->dst_wwpn);
5547 if (wwn2 == (uint64_t)-1)
5548 wwn_match++;
5549 else if (wwn1 == wwn2)
5550 wwn_match++;
5551 }
5552
5553 if (pid_match == 2 || wwn_match == 2) {
5554 /* Found a matching entry */
5555 if (pri_entry->flags & FCP_PRIO_ENTRY_TAG_VALID)
5556 priority = pri_entry->tag;
5557 break;
5558 }
5559
5560 pri_entry++;
5561 }
5562
5563 return priority;
5564}
5565
5566/*
5567 * qla24xx_update_fcport_fcp_prio
5568 * Activates fcp priority for the logged in fc port
5569 *
5570 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005571 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07005572 * fcp = port structure pointer.
5573 *
5574 * Return:
5575 * QLA_SUCCESS or QLA_FUNCTION_FAILED
5576 *
5577 * Context:
5578 * Kernel context.
5579 */
5580int
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005581qla24xx_update_fcport_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
Sarang Radke09ff7012010-03-19 17:03:59 -07005582{
5583 int ret;
5584 uint8_t priority;
5585 uint16_t mb[5];
5586
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005587 if (fcport->port_type != FCT_TARGET ||
5588 fcport->loop_id == FC_NO_LOOP_ID)
Sarang Radke09ff7012010-03-19 17:03:59 -07005589 return QLA_FUNCTION_FAILED;
5590
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005591 priority = qla24xx_get_fcp_prio(vha, fcport);
5592 ret = qla24xx_set_fcp_prio(vha, fcport->loop_id, priority, mb);
Sarang Radke09ff7012010-03-19 17:03:59 -07005593 if (ret == QLA_SUCCESS)
5594 fcport->fcp_prio = priority;
5595 else
5596 DEBUG2(printk(KERN_WARNING
5597 "scsi(%ld): Unable to activate fcp priority, "
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005598 " ret=0x%x\n", vha->host_no, ret));
Sarang Radke09ff7012010-03-19 17:03:59 -07005599
5600 return ret;
5601}
5602
5603/*
5604 * qla24xx_update_all_fcp_prio
5605 * Activates fcp priority for all the logged in ports
5606 *
5607 * Input:
5608 * ha = adapter block pointer.
5609 *
5610 * Return:
5611 * QLA_SUCCESS or QLA_FUNCTION_FAILED
5612 *
5613 * Context:
5614 * Kernel context.
5615 */
5616int
5617qla24xx_update_all_fcp_prio(scsi_qla_host_t *vha)
5618{
5619 int ret;
5620 fc_port_t *fcport;
5621
5622 ret = QLA_FUNCTION_FAILED;
5623 /* We need to set priority for all logged in ports */
5624 list_for_each_entry(fcport, &vha->vp_fcports, list)
5625 ret = qla24xx_update_fcport_fcp_prio(vha, fcport);
5626
5627 return ret;
5628}