blob: 85b86b82b964ae8f73fce4edd07de524e5f07dcb [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 Vasquez0107109e2005-07-06 10:31:37 -070012#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include "qla_devtbl.h"
15
David Miller4e08df32007-04-16 12:37:43 -070016#ifdef CONFIG_SPARC
17#include <asm/prom.h>
David Miller4e08df32007-04-16 12:37:43 -070018#endif
19
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;
Andrew Vasquez794a5692010-12-21 16:00:21 -0800501 ha->flags.thermal_supported = 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800502 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
503 atomic_set(&vha->loop_state, LOOP_DOWN);
504 vha->device_flags = DFLG_NO_CABLE;
505 vha->dpc_flags = 0;
506 vha->flags.management_server_logged_in = 0;
507 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 ha->isp_abort_cnt = 0;
509 ha->beacon_blink_led = 0;
510
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800511 set_bit(0, ha->req_qid_map);
512 set_bit(0, ha->rsp_qid_map);
513
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700514 qla_printk(KERN_INFO, ha, "Configuring PCI space...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800515 rval = ha->isp_ops->pci_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (rval) {
Andrew Vasquez7c98a042007-01-29 10:22:29 -0800517 DEBUG2(printk("scsi(%ld): Unable to configure PCI space.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800518 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return (rval);
520 }
521
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800522 ha->isp_ops->reset_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800524 rval = qla2xxx_get_flash_info(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700525 if (rval) {
526 DEBUG2(printk("scsi(%ld): Unable to validate FLASH data.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800527 vha->host_no));
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700528 return (rval);
529 }
530
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800531 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -0800532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 qla_printk(KERN_INFO, ha, "Configure NVRAM parameters...\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700534
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800535 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700537 if (ha->flags.disable_serdes) {
538 /* Mask HBA via NVRAM settings? */
539 qla_printk(KERN_INFO, ha, "Masking HBA WWPN "
540 "%02x%02x%02x%02x%02x%02x%02x%02x (via NVRAM).\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800541 vha->port_name[0], vha->port_name[1],
542 vha->port_name[2], vha->port_name[3],
543 vha->port_name[4], vha->port_name[5],
544 vha->port_name[6], vha->port_name[7]);
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700545 return QLA_FUNCTION_FAILED;
546 }
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 qla_printk(KERN_INFO, ha, "Verifying loaded RISC code...\n");
549
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800550 if (qla2x00_isp_firmware(vha) != QLA_SUCCESS) {
551 rval = ha->isp_ops->chip_diag(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800552 if (rval)
553 return (rval);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800554 rval = qla2x00_setup_chip(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800555 if (rval)
556 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Giridhar Malavalia9083012010-04-12 17:59:55 -0700558
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700559 if (IS_QLA84XX(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800560 ha->cs84xx = qla84xx_get_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700561 if (!ha->cs84xx) {
562 qla_printk(KERN_ERR, ha,
563 "Unable to configure ISP84XX.\n");
564 return QLA_FUNCTION_FAILED;
565 }
566 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800567 rval = qla2x00_init_rings(vha);
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700568 ha->flags.chip_reset_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800570 if (rval == QLA_SUCCESS && IS_QLA84XX(ha)) {
Andrew Vasquez6c452a42010-03-19 17:04:02 -0700571 /* Issue verify 84xx FW IOCB to complete 84xx initialization */
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800572 rval = qla84xx_init_chip(vha);
573 if (rval != QLA_SUCCESS) {
574 qla_printk(KERN_ERR, ha,
575 "Unable to initialize ISP84XX.\n");
576 qla84xx_put_chip(vha);
577 }
578 }
579
Madhuranath Iyengar2f0f3f42010-07-23 15:28:24 +0500580 if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha))
581 qla24xx_read_fcp_prio_cfg(vha);
Sarang Radke09ff7012010-03-19 17:03:59 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return (rval);
584}
585
586/**
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700587 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 * @ha: HA context
589 *
590 * Returns 0 on success.
591 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700592int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800593qla2100_pci_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700595 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700596 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800597 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700598 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700601 pci_try_set_mwi(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700604 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
606
Andrew Vasquez737faec2008-10-24 15:13:45 -0700607 pci_disable_rom(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700609 /* Get PCI bus information. */
610 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700611 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700612 spin_unlock_irqrestore(&ha->hardware_lock, flags);
613
614 return QLA_SUCCESS;
615}
616
617/**
618 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
619 * @ha: HA context
620 *
621 * Returns 0 on success.
622 */
623int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800624qla2300_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700625{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700626 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700627 unsigned long flags = 0;
628 uint32_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800629 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700630 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700631
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700632 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700633 pci_try_set_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700634
635 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700636 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700637
638 if (IS_QLA2322(ha) || IS_QLA6322(ha))
639 w &= ~PCI_COMMAND_INTX_DISABLE;
Andrew Vasqueza157b102007-05-07 07:43:01 -0700640 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700641
642 /*
643 * If this is a 2300 card and not 2312, reset the
644 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
645 * the 2310 also reports itself as a 2300 so we need to get the
646 * fb revision level -- a 6 indicates it really is a 2300 and
647 * not a 2310.
648 */
649 if (IS_QLA2300(ha)) {
650 spin_lock_irqsave(&ha->hardware_lock, flags);
651
652 /* Pause RISC. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700653 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700654 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700655 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700656 break;
657
658 udelay(10);
659 }
660
661 /* Select FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700662 WRT_REG_WORD(&reg->ctrl_status, 0x20);
663 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700664
665 /* Get the fb rev level */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700666 ha->fb_rev = RD_FB_CMD_REG(ha, reg);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700667
668 if (ha->fb_rev == FPM_2300)
Andrew Vasqueza157b102007-05-07 07:43:01 -0700669 pci_clear_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700670
671 /* Deselect FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700672 WRT_REG_WORD(&reg->ctrl_status, 0x0);
673 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700674
675 /* Release RISC module. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700676 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700677 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700678 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) == 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700679 break;
680
681 udelay(10);
682 }
683
684 spin_unlock_irqrestore(&ha->hardware_lock, flags);
685 }
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700686
687 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
688
Andrew Vasquez737faec2008-10-24 15:13:45 -0700689 pci_disable_rom(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700690
691 /* Get PCI bus information. */
692 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700693 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700694 spin_unlock_irqrestore(&ha->hardware_lock, flags);
695
696 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
699/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700700 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
701 * @ha: HA context
702 *
703 * Returns 0 on success.
704 */
705int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800706qla24xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700707{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700708 uint16_t w;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700709 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800710 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700711 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700712
713 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700714 pci_try_set_mwi(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700715
716 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700717 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700718 w &= ~PCI_COMMAND_INTX_DISABLE;
719 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
720
721 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
722
723 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700724 if (pci_find_capability(ha->pdev, PCI_CAP_ID_PCIX))
725 pcix_set_mmrbc(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700726
727 /* PCIe -- adjust Maximum Read Request Size (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700728 if (pci_find_capability(ha->pdev, PCI_CAP_ID_EXP))
729 pcie_set_readrq(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700730
Andrew Vasquez737faec2008-10-24 15:13:45 -0700731 pci_disable_rom(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700732
Auke Kok44c10132007-06-08 15:46:36 -0700733 ha->chip_revision = ha->pdev->revision;
Andrew Vasqueza8488ab2007-01-29 10:22:19 -0800734
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700735 /* Get PCI bus information. */
736 spin_lock_irqsave(&ha->hardware_lock, flags);
737 ha->pci_attr = RD_REG_DWORD(&reg->ctrl_status);
738 spin_unlock_irqrestore(&ha->hardware_lock, flags);
739
740 return QLA_SUCCESS;
741}
742
743/**
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700744 * qla25xx_pci_config() - Setup ISP25xx PCI configuration registers.
745 * @ha: HA context
746 *
747 * Returns 0 on success.
748 */
749int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800750qla25xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700751{
752 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800753 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700754
755 pci_set_master(ha->pdev);
756 pci_try_set_mwi(ha->pdev);
757
758 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
759 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
760 w &= ~PCI_COMMAND_INTX_DISABLE;
761 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
762
763 /* PCIe -- adjust Maximum Read Request Size (2048). */
764 if (pci_find_capability(ha->pdev, PCI_CAP_ID_EXP))
765 pcie_set_readrq(ha->pdev, 2048);
766
Andrew Vasquez737faec2008-10-24 15:13:45 -0700767 pci_disable_rom(ha->pdev);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700768
769 ha->chip_revision = ha->pdev->revision;
770
771 return QLA_SUCCESS;
772}
773
774/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 * qla2x00_isp_firmware() - Choose firmware image.
776 * @ha: HA context
777 *
778 * Returns 0 on success.
779 */
780static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800781qla2x00_isp_firmware(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
783 int rval;
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700784 uint16_t loop_id, topo, sw_cap;
785 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800786 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 /* Assume loading risc code */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700789 rval = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 if (ha->flags.disable_risc_code_load) {
792 DEBUG2(printk("scsi(%ld): RISC CODE NOT loaded\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800793 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 qla_printk(KERN_INFO, ha, "RISC CODE NOT loaded\n");
795
796 /* Verify checksum of loaded RISC code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800797 rval = qla2x00_verify_checksum(vha, ha->fw_srisc_address);
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700798 if (rval == QLA_SUCCESS) {
799 /* And, verify we are not in ROM code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800800 rval = qla2x00_get_adapter_id(vha, &loop_id, &al_pa,
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700801 &area, &domain, &topo, &sw_cap);
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804
805 if (rval) {
806 DEBUG2_3(printk("scsi(%ld): **** Load RISC code ****\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800807 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809
810 return (rval);
811}
812
813/**
814 * qla2x00_reset_chip() - Reset ISP chip.
815 * @ha: HA context
816 *
817 * Returns 0 on success.
818 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700819void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800820qla2x00_reset_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800823 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700824 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 uint32_t cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 uint16_t cmd;
827
Andrew Vasquez85880802009-12-15 21:29:46 -0800828 if (unlikely(pci_channel_offline(ha->pdev)))
829 return;
830
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700831 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 spin_lock_irqsave(&ha->hardware_lock, flags);
834
835 /* Turn off master enable */
836 cmd = 0;
837 pci_read_config_word(ha->pdev, PCI_COMMAND, &cmd);
838 cmd &= ~PCI_COMMAND_MASTER;
839 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
840
841 if (!IS_QLA2100(ha)) {
842 /* Pause RISC. */
843 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
844 if (IS_QLA2200(ha) || IS_QLA2300(ha)) {
845 for (cnt = 0; cnt < 30000; cnt++) {
846 if ((RD_REG_WORD(&reg->hccr) &
847 HCCR_RISC_PAUSE) != 0)
848 break;
849 udelay(100);
850 }
851 } else {
852 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
853 udelay(10);
854 }
855
856 /* Select FPM registers. */
857 WRT_REG_WORD(&reg->ctrl_status, 0x20);
858 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
859
860 /* FPM Soft Reset. */
861 WRT_REG_WORD(&reg->fpm_diag_config, 0x100);
862 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
863
864 /* Toggle Fpm Reset. */
865 if (!IS_QLA2200(ha)) {
866 WRT_REG_WORD(&reg->fpm_diag_config, 0x0);
867 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
868 }
869
870 /* Select frame buffer registers. */
871 WRT_REG_WORD(&reg->ctrl_status, 0x10);
872 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
873
874 /* Reset frame buffer FIFOs. */
875 if (IS_QLA2200(ha)) {
876 WRT_FB_CMD_REG(ha, reg, 0xa000);
877 RD_FB_CMD_REG(ha, reg); /* PCI Posting. */
878 } else {
879 WRT_FB_CMD_REG(ha, reg, 0x00fc);
880
881 /* Read back fb_cmd until zero or 3 seconds max */
882 for (cnt = 0; cnt < 3000; cnt++) {
883 if ((RD_FB_CMD_REG(ha, reg) & 0xff) == 0)
884 break;
885 udelay(100);
886 }
887 }
888
889 /* Select RISC module registers. */
890 WRT_REG_WORD(&reg->ctrl_status, 0);
891 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
892
893 /* Reset RISC processor. */
894 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
895 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
896
897 /* Release RISC processor. */
898 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
899 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
900 }
901
902 WRT_REG_WORD(&reg->hccr, HCCR_CLR_RISC_INT);
903 WRT_REG_WORD(&reg->hccr, HCCR_CLR_HOST_INT);
904
905 /* Reset ISP chip. */
906 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
907
908 /* Wait for RISC to recover from reset. */
909 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
910 /*
911 * It is necessary to for a delay here since the card doesn't
912 * respond to PCI reads during a reset. On some architectures
913 * this will result in an MCA.
914 */
915 udelay(20);
916 for (cnt = 30000; cnt; cnt--) {
917 if ((RD_REG_WORD(&reg->ctrl_status) &
918 CSR_ISP_SOFT_RESET) == 0)
919 break;
920 udelay(100);
921 }
922 } else
923 udelay(10);
924
925 /* Reset RISC processor. */
926 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
927
928 WRT_REG_WORD(&reg->semaphore, 0);
929
930 /* Release RISC processor. */
931 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
932 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
933
934 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
935 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquezffb39f02006-05-17 15:09:06 -0700936 if (RD_MAILBOX_REG(ha, reg, 0) != MBS_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 udelay(100);
940 }
941 } else
942 udelay(100);
943
944 /* Turn on master enable */
945 cmd |= PCI_COMMAND_MASTER;
946 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
947
948 /* Disable RISC pause on FPM parity error. */
949 if (!IS_QLA2100(ha)) {
950 WRT_REG_WORD(&reg->hccr, HCCR_DISABLE_PARITY_PAUSE);
951 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
952 }
953
954 spin_unlock_irqrestore(&ha->hardware_lock, flags);
955}
956
957/**
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -0700958 * qla81xx_reset_mpi() - Reset's MPI FW via Write MPI Register MBC.
959 *
960 * Returns 0 on success.
961 */
962int
963qla81xx_reset_mpi(scsi_qla_host_t *vha)
964{
965 uint16_t mb[4] = {0x1010, 0, 1, 0};
966
967 return qla81xx_write_mpi_register(vha, mb);
968}
969
970/**
Andrew Vasquez88c26662005-07-08 17:59:26 -0700971 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700972 * @ha: HA context
973 *
974 * Returns 0 on success.
975 */
Andrew Vasquez88c26662005-07-08 17:59:26 -0700976static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800977qla24xx_reset_risc(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700978{
979 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800980 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700981 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
982 uint32_t cnt, d2;
Andrew Vasquez335a1cc2005-11-08 14:37:48 -0800983 uint16_t wd;
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -0700984 static int abts_cnt; /* ISP abort retry counts */
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700985
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700986 spin_lock_irqsave(&ha->hardware_lock, flags);
987
988 /* Reset RISC. */
989 WRT_REG_DWORD(&reg->ctrl_status, CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
990 for (cnt = 0; cnt < 30000; cnt++) {
991 if ((RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE) == 0)
992 break;
993
994 udelay(10);
995 }
996
997 WRT_REG_DWORD(&reg->ctrl_status,
998 CSRX_ISP_SOFT_RESET|CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
Andrew Vasquez335a1cc2005-11-08 14:37:48 -0800999 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001000
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001001 udelay(100);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001002 /* Wait for firmware to complete NVRAM accesses. */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001003 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1004 for (cnt = 10000 ; cnt && d2; cnt--) {
1005 udelay(5);
1006 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1007 barrier();
1008 }
1009
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001010 /* Wait for soft-reset to complete. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001011 d2 = RD_REG_DWORD(&reg->ctrl_status);
1012 for (cnt = 6000000 ; cnt && (d2 & CSRX_ISP_SOFT_RESET); cnt--) {
1013 udelay(5);
1014 d2 = RD_REG_DWORD(&reg->ctrl_status);
1015 barrier();
1016 }
1017
Madhuranath Iyengarb1d469892010-09-03 15:20:54 -07001018 /* If required, do an MPI FW reset now */
1019 if (test_and_clear_bit(MPI_RESET_NEEDED, &vha->dpc_flags)) {
1020 if (qla81xx_reset_mpi(vha) != QLA_SUCCESS) {
1021 if (++abts_cnt < 5) {
1022 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1023 set_bit(MPI_RESET_NEEDED, &vha->dpc_flags);
1024 } else {
1025 /*
1026 * We exhausted the ISP abort retries. We have to
1027 * set the board offline.
1028 */
1029 abts_cnt = 0;
1030 vha->flags.online = 0;
1031 }
1032 }
1033 }
1034
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001035 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
1036 RD_REG_DWORD(&reg->hccr);
1037
1038 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
1039 RD_REG_DWORD(&reg->hccr);
1040
1041 WRT_REG_DWORD(&reg->hccr, HCCRX_CLR_RISC_RESET);
1042 RD_REG_DWORD(&reg->hccr);
1043
1044 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1045 for (cnt = 6000000 ; cnt && d2; cnt--) {
1046 udelay(5);
1047 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1048 barrier();
1049 }
1050
1051 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez124f85e2009-01-05 11:18:06 -08001052
1053 if (IS_NOPOLLING_TYPE(ha))
1054 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001055}
1056
1057/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001058 * qla24xx_reset_chip() - Reset ISP24xx chip.
1059 * @ha: HA context
1060 *
1061 * Returns 0 on success.
1062 */
1063void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001064qla24xx_reset_chip(scsi_qla_host_t *vha)
Andrew Vasquez88c26662005-07-08 17:59:26 -07001065{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001066 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez85880802009-12-15 21:29:46 -08001067
1068 if (pci_channel_offline(ha->pdev) &&
1069 ha->flags.pci_channel_io_perm_failure) {
1070 return;
1071 }
1072
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001073 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001074
1075 /* Perform RISC reset. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001076 qla24xx_reset_risc(vha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001077}
1078
1079/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 * qla2x00_chip_diag() - Test chip for proper operation.
1081 * @ha: HA context
1082 *
1083 * Returns 0 on success.
1084 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001085int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001086qla2x00_chip_diag(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
1088 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001089 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001090 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 unsigned long flags = 0;
1092 uint16_t data;
1093 uint32_t cnt;
1094 uint16_t mb[5];
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001095 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 /* Assume a failed state */
1098 rval = QLA_FUNCTION_FAILED;
1099
1100 DEBUG3(printk("scsi(%ld): Testing device at %lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001101 vha->host_no, (u_long)&reg->flash_address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 spin_lock_irqsave(&ha->hardware_lock, flags);
1104
1105 /* Reset ISP chip. */
1106 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
1107
1108 /*
1109 * We need to have a delay here since the card will not respond while
1110 * in reset causing an MCA on some architectures.
1111 */
1112 udelay(20);
1113 data = qla2x00_debounce_register(&reg->ctrl_status);
1114 for (cnt = 6000000 ; cnt && (data & CSR_ISP_SOFT_RESET); cnt--) {
1115 udelay(5);
1116 data = RD_REG_WORD(&reg->ctrl_status);
1117 barrier();
1118 }
1119
1120 if (!cnt)
1121 goto chip_diag_failed;
1122
1123 DEBUG3(printk("scsi(%ld): Reset register cleared by chip reset\n",
Andrew Vasquez76403352009-04-06 22:33:39 -07001124 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 /* Reset RISC processor. */
1127 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
1128 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
1129
1130 /* Workaround for QLA2312 PCI parity error */
1131 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
1132 data = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 0));
1133 for (cnt = 6000000; cnt && (data == MBS_BUSY); cnt--) {
1134 udelay(5);
1135 data = RD_MAILBOX_REG(ha, reg, 0);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001136 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
1138 } else
1139 udelay(10);
1140
1141 if (!cnt)
1142 goto chip_diag_failed;
1143
1144 /* Check product ID of chip */
Andrew Vasquez76403352009-04-06 22:33:39 -07001145 DEBUG3(printk("scsi(%ld): Checking product ID of chip\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
1148 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
1149 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
1150 mb[4] = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 4));
1151 if (mb[1] != PROD_ID_1 || (mb[2] != PROD_ID_2 && mb[2] != PROD_ID_2a) ||
1152 mb[3] != PROD_ID_3) {
1153 qla_printk(KERN_WARNING, ha,
1154 "Wrong product ID = 0x%x,0x%x,0x%x\n", mb[1], mb[2], mb[3]);
1155
1156 goto chip_diag_failed;
1157 }
1158 ha->product_id[0] = mb[1];
1159 ha->product_id[1] = mb[2];
1160 ha->product_id[2] = mb[3];
1161 ha->product_id[3] = mb[4];
1162
1163 /* Adjust fw RISC transfer size */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001164 if (req->length > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
1166 else
1167 ha->fw_transfer_size = REQUEST_ENTRY_SIZE *
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001168 req->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 if (IS_QLA2200(ha) &&
1171 RD_MAILBOX_REG(ha, reg, 7) == QLA2200A_RISC_ROM_VER) {
1172 /* Limit firmware transfer size with a 2200A */
1173 DEBUG3(printk("scsi(%ld): Found QLA2200A chip.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001174 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001176 ha->device_type |= DT_ISP2200A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 ha->fw_transfer_size = 128;
1178 }
1179
1180 /* Wrap Incoming Mailboxes Test. */
1181 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1182
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001183 DEBUG3(printk("scsi(%ld): Checking mailboxes.\n", vha->host_no));
1184 rval = qla2x00_mbx_reg_test(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (rval) {
1186 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001187 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 qla_printk(KERN_WARNING, ha,
1189 "Failed mailbox send register test\n");
1190 }
1191 else {
1192 /* Flag a successful rval */
1193 rval = QLA_SUCCESS;
1194 }
1195 spin_lock_irqsave(&ha->hardware_lock, flags);
1196
1197chip_diag_failed:
1198 if (rval)
1199 DEBUG2_3(printk("scsi(%ld): Chip diagnostics **** FAILED "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001200 "****\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1203
1204 return (rval);
1205}
1206
1207/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001208 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
1209 * @ha: HA context
1210 *
1211 * Returns 0 on success.
1212 */
1213int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001214qla24xx_chip_diag(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001215{
1216 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001217 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001218 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001219
Giridhar Malavalia9083012010-04-12 17:59:55 -07001220 if (IS_QLA82XX(ha))
1221 return QLA_SUCCESS;
1222
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001223 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * req->length;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001224
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001225 rval = qla2x00_mbx_reg_test(vha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001226 if (rval) {
1227 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001228 vha->host_no));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001229 qla_printk(KERN_WARNING, ha,
1230 "Failed mailbox send register test\n");
1231 } else {
1232 /* Flag a successful rval */
1233 rval = QLA_SUCCESS;
1234 }
1235
1236 return rval;
1237}
1238
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001239void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001240qla2x00_alloc_fw_dump(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001241{
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001242 int rval;
1243 uint32_t dump_size, fixed_size, mem_size, req_q_size, rsp_q_size,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001244 eft_size, fce_size, mq_size;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001245 dma_addr_t tc_dma;
1246 void *tc;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001247 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001248 struct req_que *req = ha->req_q_map[0];
1249 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001250
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001251 if (ha->fw_dump) {
1252 qla_printk(KERN_WARNING, ha,
1253 "Firmware dump previously allocated.\n");
1254 return;
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001255 }
1256
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001257 ha->fw_dumped = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001258 fixed_size = mem_size = eft_size = fce_size = mq_size = 0;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001259 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1260 fixed_size = sizeof(struct qla2100_fw_dump);
1261 } else if (IS_QLA23XX(ha)) {
1262 fixed_size = offsetof(struct qla2300_fw_dump, data_ram);
1263 mem_size = (ha->fw_memory_size - 0x11000 + 1) *
1264 sizeof(uint16_t);
Andrew Vasqueze4289242007-07-19 15:05:56 -07001265 } else if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001266 if (IS_QLA81XX(ha))
1267 fixed_size = offsetof(struct qla81xx_fw_dump, ext_mem);
1268 else if (IS_QLA25XX(ha))
1269 fixed_size = offsetof(struct qla25xx_fw_dump, ext_mem);
1270 else
1271 fixed_size = offsetof(struct qla24xx_fw_dump, ext_mem);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001272 mem_size = (ha->fw_memory_size - 0x100000 + 1) *
1273 sizeof(uint32_t);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001274 if (ha->mqenable)
1275 mq_size = sizeof(struct qla2xxx_mq_chain);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001276 /* Allocate memory for Fibre Channel Event Buffer. */
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001277 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001278 goto try_eft;
1279
1280 tc = dma_alloc_coherent(&ha->pdev->dev, FCE_SIZE, &tc_dma,
1281 GFP_KERNEL);
1282 if (!tc) {
1283 qla_printk(KERN_WARNING, ha, "Unable to allocate "
1284 "(%d KB) for FCE.\n", FCE_SIZE / 1024);
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001285 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001286 }
1287
1288 memset(tc, 0, FCE_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001289 rval = qla2x00_enable_fce_trace(vha, tc_dma, FCE_NUM_BUFFERS,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001290 ha->fce_mb, &ha->fce_bufs);
1291 if (rval) {
1292 qla_printk(KERN_WARNING, ha, "Unable to initialize "
1293 "FCE (%d).\n", rval);
1294 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, tc,
1295 tc_dma);
1296 ha->flags.fce_enabled = 0;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001297 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001298 }
1299
1300 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for FCE...\n",
1301 FCE_SIZE / 1024);
1302
Giridhar Malavali7d9dade2009-03-24 09:07:58 -07001303 fce_size = sizeof(struct qla2xxx_fce_chain) + FCE_SIZE;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001304 ha->flags.fce_enabled = 1;
1305 ha->fce_dma = tc_dma;
1306 ha->fce = tc;
1307try_eft:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001308 /* Allocate memory for Extended Trace Buffer. */
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001309 tc = dma_alloc_coherent(&ha->pdev->dev, EFT_SIZE, &tc_dma,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001310 GFP_KERNEL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001311 if (!tc) {
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001312 qla_printk(KERN_WARNING, ha, "Unable to allocate "
1313 "(%d KB) for EFT.\n", EFT_SIZE / 1024);
1314 goto cont_alloc;
1315 }
1316
Andrew Vasquezfc447652008-01-17 09:02:18 -08001317 memset(tc, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001318 rval = qla2x00_enable_eft_trace(vha, tc_dma, EFT_NUM_BUFFERS);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001319 if (rval) {
1320 qla_printk(KERN_WARNING, ha, "Unable to initialize "
1321 "EFT (%d).\n", rval);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001322 dma_free_coherent(&ha->pdev->dev, EFT_SIZE, tc,
1323 tc_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001324 goto cont_alloc;
1325 }
1326
1327 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for EFT...\n",
1328 EFT_SIZE / 1024);
1329
1330 eft_size = EFT_SIZE;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001331 ha->eft_dma = tc_dma;
1332 ha->eft = tc;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001333 }
1334cont_alloc:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001335 req_q_size = req->length * sizeof(request_t);
1336 rsp_q_size = rsp->length * sizeof(response_t);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001337
1338 dump_size = offsetof(struct qla2xxx_fw_dump, isp);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001339 dump_size += fixed_size + mem_size + req_q_size + rsp_q_size + eft_size;
Andrew Vasquezbb99de62009-01-05 11:18:08 -08001340 ha->chain_offset = dump_size;
1341 dump_size += mq_size + fce_size;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001342
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001343 ha->fw_dump = vmalloc(dump_size);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001344 if (!ha->fw_dump) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001345 qla_printk(KERN_WARNING, ha, "Unable to allocate (%d KB) for "
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001346 "firmware dump!!!\n", dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001347
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07001348 if (ha->fce) {
1349 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
1350 ha->fce_dma);
1351 ha->fce = NULL;
1352 ha->fce_dma = 0;
1353 }
1354
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001355 if (ha->eft) {
1356 dma_free_coherent(&ha->pdev->dev, eft_size, ha->eft,
1357 ha->eft_dma);
1358 ha->eft = NULL;
1359 ha->eft_dma = 0;
1360 }
1361 return;
1362 }
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001363 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for firmware dump...\n",
1364 dump_size / 1024);
1365
1366 ha->fw_dump_len = dump_size;
1367 ha->fw_dump->signature[0] = 'Q';
1368 ha->fw_dump->signature[1] = 'L';
1369 ha->fw_dump->signature[2] = 'G';
1370 ha->fw_dump->signature[3] = 'C';
1371 ha->fw_dump->version = __constant_htonl(1);
1372
1373 ha->fw_dump->fixed_size = htonl(fixed_size);
1374 ha->fw_dump->mem_size = htonl(mem_size);
1375 ha->fw_dump->req_q_size = htonl(req_q_size);
1376 ha->fw_dump->rsp_q_size = htonl(rsp_q_size);
1377
1378 ha->fw_dump->eft_size = htonl(eft_size);
1379 ha->fw_dump->eft_addr_l = htonl(LSD(ha->eft_dma));
1380 ha->fw_dump->eft_addr_h = htonl(MSD(ha->eft_dma));
1381
1382 ha->fw_dump->header_size =
1383 htonl(offsetof(struct qla2xxx_fw_dump, isp));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001384}
1385
Andrew Vasquez18e75552009-06-03 09:55:30 -07001386static int
1387qla81xx_mpi_sync(scsi_qla_host_t *vha)
1388{
1389#define MPS_MASK 0xe0
1390 int rval;
1391 uint16_t dc;
1392 uint32_t dw;
1393 struct qla_hw_data *ha = vha->hw;
1394
1395 if (!IS_QLA81XX(vha->hw))
1396 return QLA_SUCCESS;
1397
1398 rval = qla2x00_write_ram_word(vha, 0x7c00, 1);
1399 if (rval != QLA_SUCCESS) {
1400 DEBUG2(qla_printk(KERN_WARNING, ha,
1401 "Sync-MPI: Unable to acquire semaphore.\n"));
1402 goto done;
1403 }
1404
1405 pci_read_config_word(vha->hw->pdev, 0x54, &dc);
1406 rval = qla2x00_read_ram_word(vha, 0x7a15, &dw);
1407 if (rval != QLA_SUCCESS) {
1408 DEBUG2(qla_printk(KERN_WARNING, ha,
1409 "Sync-MPI: Unable to read sync.\n"));
1410 goto done_release;
1411 }
1412
1413 dc &= MPS_MASK;
1414 if (dc == (dw & MPS_MASK))
1415 goto done_release;
1416
1417 dw &= ~MPS_MASK;
1418 dw |= dc;
1419 rval = qla2x00_write_ram_word(vha, 0x7a15, dw);
1420 if (rval != QLA_SUCCESS) {
1421 DEBUG2(qla_printk(KERN_WARNING, ha,
1422 "Sync-MPI: Unable to gain sync.\n"));
1423 }
1424
1425done_release:
1426 rval = qla2x00_write_ram_word(vha, 0x7c00, 0);
1427 if (rval != QLA_SUCCESS) {
1428 DEBUG2(qla_printk(KERN_WARNING, ha,
1429 "Sync-MPI: Unable to release semaphore.\n"));
1430 }
1431
1432done:
1433 return rval;
1434}
1435
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001436/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 * qla2x00_setup_chip() - Load and start RISC firmware.
1438 * @ha: HA context
1439 *
1440 * Returns 0 on success.
1441 */
1442static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001443qla2x00_setup_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001445 int rval;
1446 uint32_t srisc_address = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001447 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001448 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1449 unsigned long flags;
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001450 uint16_t fw_major_version;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001451
Giridhar Malavalia9083012010-04-12 17:59:55 -07001452 if (IS_QLA82XX(ha)) {
1453 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001454 if (rval == QLA_SUCCESS) {
1455 qla2x00_stop_firmware(vha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001456 goto enable_82xx_npiv;
Andrew Vasquez14e303d2010-07-23 15:28:29 +05001457 } else
Giridhar Malavalib9637522010-05-28 15:08:15 -07001458 goto failed;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001459 }
1460
Andrew Vasquez3db06522008-01-31 12:33:49 -08001461 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1462 /* Disable SRAM, Instruction RAM and GP RAM parity. */
1463 spin_lock_irqsave(&ha->hardware_lock, flags);
1464 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x0));
1465 RD_REG_WORD(&reg->hccr);
1466 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Andrew Vasquez18e75552009-06-03 09:55:30 -07001469 qla81xx_mpi_sync(vha);
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 /* Load firmware sequences */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001472 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001473 if (rval == QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 DEBUG(printk("scsi(%ld): Verifying Checksum of loaded RISC "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001475 "code.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001477 rval = qla2x00_verify_checksum(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (rval == QLA_SUCCESS) {
1479 /* Start firmware execution. */
1480 DEBUG(printk("scsi(%ld): Checksum OK, start "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001481 "firmware.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001483 rval = qla2x00_execute_fw(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 /* Retrieve firmware information. */
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001485 if (rval == QLA_SUCCESS) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07001486enable_82xx_npiv:
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001487 fw_major_version = ha->fw_major_version;
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001488 rval = qla2x00_get_fw_version(vha,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 &ha->fw_major_version,
1490 &ha->fw_minor_version,
1491 &ha->fw_subminor_version,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001492 &ha->fw_attributes, &ha->fw_memory_size,
Andrew Vasquez55a96152009-03-24 09:08:03 -07001493 ha->mpi_version, &ha->mpi_capabilities,
1494 ha->phy_version);
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001495 if (rval != QLA_SUCCESS)
1496 goto failed;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001497 ha->flags.npiv_supported = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001498 if (IS_QLA2XXX_MIDTYPE(ha) &&
Mike Hernandez946fb892008-08-13 21:36:59 -07001499 (ha->fw_attributes & BIT_2)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001500 ha->flags.npiv_supported = 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001501 if ((!ha->max_npiv_vports) ||
1502 ((ha->max_npiv_vports + 1) %
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001503 MIN_MULTI_ID_FABRIC))
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001504 ha->max_npiv_vports =
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001505 MIN_MULTI_ID_FABRIC - 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001506 }
Andrew Vasquez24a08132009-03-24 09:08:16 -07001507 qla2x00_get_resource_cnts(vha, NULL,
1508 &ha->fw_xcb_count, NULL, NULL,
Andrew Vasquezf3a0a772009-10-13 15:16:49 -07001509 &ha->max_npiv_vports, NULL);
Andrew Vasquezd743de62009-03-24 09:08:15 -07001510
Giridhar Malavalia9083012010-04-12 17:59:55 -07001511 if (!fw_major_version && ql2xallocfwdump) {
1512 if (!IS_QLA82XX(ha))
1513 qla2x00_alloc_fw_dump(vha);
1514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516 } else {
1517 DEBUG2(printk(KERN_INFO
1518 "scsi(%ld): ISP Firmware failed checksum.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001519 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 }
1521 }
1522
Andrew Vasquez3db06522008-01-31 12:33:49 -08001523 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1524 /* Enable proper parity. */
1525 spin_lock_irqsave(&ha->hardware_lock, flags);
1526 if (IS_QLA2300(ha))
1527 /* SRAM parity */
1528 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x1);
1529 else
1530 /* SRAM, Instruction RAM and GP RAM parity */
1531 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x7);
1532 RD_REG_WORD(&reg->hccr);
1533 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1534 }
1535
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001536 if (rval == QLA_SUCCESS && IS_FAC_REQUIRED(ha)) {
1537 uint32_t size;
1538
1539 rval = qla81xx_fac_get_sector_size(vha, &size);
1540 if (rval == QLA_SUCCESS) {
1541 ha->flags.fac_supported = 1;
1542 ha->fdt_block_size = size << 2;
1543 } else {
1544 qla_printk(KERN_ERR, ha,
1545 "Unsupported FAC firmware (%d.%02d.%02d).\n",
1546 ha->fw_major_version, ha->fw_minor_version,
1547 ha->fw_subminor_version);
1548 }
1549 }
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001550failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (rval) {
1552 DEBUG2_3(printk("scsi(%ld): Setup chip **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001553 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 }
1555
1556 return (rval);
1557}
1558
1559/**
1560 * qla2x00_init_response_q_entries() - Initializes response queue entries.
1561 * @ha: HA context
1562 *
1563 * Beginning of request ring has initialization control block already built
1564 * by nvram config routine.
1565 *
1566 * Returns 0 on success.
1567 */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001568void
1569qla2x00_init_response_q_entries(struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
1571 uint16_t cnt;
1572 response_t *pkt;
1573
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001574 rsp->ring_ptr = rsp->ring;
1575 rsp->ring_index = 0;
1576 rsp->status_srb = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001577 pkt = rsp->ring_ptr;
1578 for (cnt = 0; cnt < rsp->length; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 pkt->signature = RESPONSE_PROCESSED;
1580 pkt++;
1581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
1584/**
1585 * qla2x00_update_fw_options() - Read and process firmware options.
1586 * @ha: HA context
1587 *
1588 * Returns 0 on success.
1589 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001590void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001591qla2x00_update_fw_options(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 uint16_t swing, emphasis, tx_sens, rx_sens;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001594 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 memset(ha->fw_options, 0, sizeof(ha->fw_options));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001597 qla2x00_get_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1600 return;
1601
1602 /* Serial Link options. */
1603 DEBUG3(printk("scsi(%ld): Serial link options:\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001604 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 DEBUG3(qla2x00_dump_buffer((uint8_t *)&ha->fw_seriallink_options,
1606 sizeof(ha->fw_seriallink_options)));
1607
1608 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1609 if (ha->fw_seriallink_options[3] & BIT_2) {
1610 ha->fw_options[1] |= FO1_SET_EMPHASIS_SWING;
1611
1612 /* 1G settings */
1613 swing = ha->fw_seriallink_options[2] & (BIT_2 | BIT_1 | BIT_0);
1614 emphasis = (ha->fw_seriallink_options[2] &
1615 (BIT_4 | BIT_3)) >> 3;
1616 tx_sens = ha->fw_seriallink_options[0] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001617 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 rx_sens = (ha->fw_seriallink_options[0] &
1619 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1620 ha->fw_options[10] = (emphasis << 14) | (swing << 8);
1621 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1622 if (rx_sens == 0x0)
1623 rx_sens = 0x3;
1624 ha->fw_options[10] |= (tx_sens << 4) | rx_sens;
1625 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1626 ha->fw_options[10] |= BIT_5 |
1627 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1628 (tx_sens & (BIT_1 | BIT_0));
1629
1630 /* 2G settings */
1631 swing = (ha->fw_seriallink_options[2] &
1632 (BIT_7 | BIT_6 | BIT_5)) >> 5;
1633 emphasis = ha->fw_seriallink_options[3] & (BIT_1 | BIT_0);
1634 tx_sens = ha->fw_seriallink_options[1] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001635 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 rx_sens = (ha->fw_seriallink_options[1] &
1637 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1638 ha->fw_options[11] = (emphasis << 14) | (swing << 8);
1639 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1640 if (rx_sens == 0x0)
1641 rx_sens = 0x3;
1642 ha->fw_options[11] |= (tx_sens << 4) | rx_sens;
1643 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1644 ha->fw_options[11] |= BIT_5 |
1645 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1646 (tx_sens & (BIT_1 | BIT_0));
1647 }
1648
1649 /* FCP2 options. */
1650 /* Return command IOCBs without waiting for an ABTS to complete. */
1651 ha->fw_options[3] |= BIT_13;
1652
1653 /* LED scheme. */
1654 if (ha->flags.enable_led_scheme)
1655 ha->fw_options[2] |= BIT_12;
1656
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08001657 /* Detect ISP6312. */
1658 if (IS_QLA6312(ha))
1659 ha->fw_options[2] |= BIT_13;
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 /* Update firmware options. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001662 qla2x00_set_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001665void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001666qla24xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001667{
1668 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001669 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001670
Giridhar Malavalia9083012010-04-12 17:59:55 -07001671 if (IS_QLA82XX(ha))
1672 return;
1673
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001674 /* Update Serial Link options. */
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001675 if ((le16_to_cpu(ha->fw_seriallink_options24[0]) & BIT_0) == 0)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001676 return;
1677
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001678 rval = qla2x00_set_serdes_params(vha,
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001679 le16_to_cpu(ha->fw_seriallink_options24[1]),
1680 le16_to_cpu(ha->fw_seriallink_options24[2]),
1681 le16_to_cpu(ha->fw_seriallink_options24[3]));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001682 if (rval != QLA_SUCCESS) {
1683 qla_printk(KERN_WARNING, ha,
1684 "Unable to update Serial Link options (%x).\n", rval);
1685 }
1686}
1687
1688void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001689qla2x00_config_rings(struct scsi_qla_host *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001690{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001691 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001692 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001693 struct req_que *req = ha->req_q_map[0];
1694 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001695
1696 /* Setup ring parameters in initialization control block. */
1697 ha->init_cb->request_q_outpointer = __constant_cpu_to_le16(0);
1698 ha->init_cb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001699 ha->init_cb->request_q_length = cpu_to_le16(req->length);
1700 ha->init_cb->response_q_length = cpu_to_le16(rsp->length);
1701 ha->init_cb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1702 ha->init_cb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1703 ha->init_cb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1704 ha->init_cb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001705
1706 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), 0);
1707 WRT_REG_WORD(ISP_REQ_Q_OUT(ha, reg), 0);
1708 WRT_REG_WORD(ISP_RSP_Q_IN(ha, reg), 0);
1709 WRT_REG_WORD(ISP_RSP_Q_OUT(ha, reg), 0);
1710 RD_REG_WORD(ISP_RSP_Q_OUT(ha, reg)); /* PCI Posting. */
1711}
1712
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001713void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001714qla24xx_config_rings(struct scsi_qla_host *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001715{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001716 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001717 device_reg_t __iomem *reg = ISP_QUE_REG(ha, 0);
1718 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1719 struct qla_msix_entry *msix;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001720 struct init_cb_24xx *icb;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001721 uint16_t rid = 0;
1722 struct req_que *req = ha->req_q_map[0];
1723 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001724
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001725/* Setup ring parameters in initialization control block. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001726 icb = (struct init_cb_24xx *)ha->init_cb;
1727 icb->request_q_outpointer = __constant_cpu_to_le16(0);
1728 icb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001729 icb->request_q_length = cpu_to_le16(req->length);
1730 icb->response_q_length = cpu_to_le16(rsp->length);
1731 icb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1732 icb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1733 icb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1734 icb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001735
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001736 if (ha->mqenable) {
1737 icb->qos = __constant_cpu_to_le16(QLA_DEFAULT_QUE_QOS);
1738 icb->rid = __constant_cpu_to_le16(rid);
1739 if (ha->flags.msix_enabled) {
1740 msix = &ha->msix_entries[1];
1741 DEBUG2_17(printk(KERN_INFO
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001742 "Registering vector 0x%x for base que\n", msix->entry));
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001743 icb->msix = cpu_to_le16(msix->entry);
1744 }
1745 /* Use alternate PCI bus number */
1746 if (MSB(rid))
1747 icb->firmware_options_2 |=
1748 __constant_cpu_to_le32(BIT_19);
1749 /* Use alternate PCI devfn */
1750 if (LSB(rid))
1751 icb->firmware_options_2 |=
1752 __constant_cpu_to_le32(BIT_18);
1753
Anirban Chakraborty31557542009-12-02 10:36:55 -08001754 /* Use Disable MSIX Handshake mode for capable adapters */
1755 if (IS_MSIX_NACK_CAPABLE(ha)) {
1756 icb->firmware_options_2 &=
1757 __constant_cpu_to_le32(~BIT_22);
1758 ha->flags.disable_msix_handshake = 1;
1759 qla_printk(KERN_INFO, ha,
1760 "MSIX Handshake Disable Mode turned on\n");
1761 } else {
1762 icb->firmware_options_2 |=
1763 __constant_cpu_to_le32(BIT_22);
1764 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001765 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_23);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001766
1767 WRT_REG_DWORD(&reg->isp25mq.req_q_in, 0);
1768 WRT_REG_DWORD(&reg->isp25mq.req_q_out, 0);
1769 WRT_REG_DWORD(&reg->isp25mq.rsp_q_in, 0);
1770 WRT_REG_DWORD(&reg->isp25mq.rsp_q_out, 0);
1771 } else {
1772 WRT_REG_DWORD(&reg->isp24.req_q_in, 0);
1773 WRT_REG_DWORD(&reg->isp24.req_q_out, 0);
1774 WRT_REG_DWORD(&reg->isp24.rsp_q_in, 0);
1775 WRT_REG_DWORD(&reg->isp24.rsp_q_out, 0);
1776 }
1777 /* PCI posting */
1778 RD_REG_DWORD(&ioreg->hccr);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001779}
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781/**
1782 * qla2x00_init_rings() - Initializes firmware.
1783 * @ha: HA context
1784 *
1785 * Beginning of request ring has initialization control block already built
1786 * by nvram config routine.
1787 *
1788 * Returns 0 on success.
1789 */
1790static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001791qla2x00_init_rings(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
1793 int rval;
1794 unsigned long flags = 0;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001795 int cnt, que;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001796 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001797 struct req_que *req;
1798 struct rsp_que *rsp;
1799 struct scsi_qla_host *vp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001800 struct mid_init_cb_24xx *mid_init_cb =
1801 (struct mid_init_cb_24xx *) ha->init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
1803 spin_lock_irqsave(&ha->hardware_lock, flags);
1804
1805 /* Clear outstanding commands array. */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001806 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001807 req = ha->req_q_map[que];
1808 if (!req)
1809 continue;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001810 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++)
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001811 req->outstanding_cmds[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001813 req->current_outstanding_cmd = 1;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001814
1815 /* Initialize firmware. */
1816 req->ring_ptr = req->ring;
1817 req->ring_index = 0;
1818 req->cnt = req->length;
1819 }
1820
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001821 for (que = 0; que < ha->max_rsp_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001822 rsp = ha->rsp_q_map[que];
1823 if (!rsp)
1824 continue;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001825 /* Initialize response queue entries */
1826 qla2x00_init_response_q_entries(rsp);
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Dan Carpenter542bce12010-10-15 11:27:38 -07001829 spin_lock(&ha->vport_slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 /* Clear RSCN queue. */
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001831 list_for_each_entry(vp, &ha->vp_list, list) {
1832 vp->rscn_in_ptr = 0;
1833 vp->rscn_out_ptr = 0;
1834 }
Arun Easifeafb7b2010-09-03 14:57:00 -07001835
Dan Carpenter542bce12010-10-15 11:27:38 -07001836 spin_unlock(&ha->vport_slock);
Arun Easifeafb7b2010-09-03 14:57:00 -07001837
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001838 ha->isp_ops->config_rings(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1841
1842 /* Update any ISP specific firmware options before initialization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001843 ha->isp_ops->update_fw_options(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001845 DEBUG(printk("scsi(%ld): Issue init firmware.\n", vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001846
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001847 if (ha->flags.npiv_supported) {
1848 if (ha->operating_mode == LOOP)
1849 ha->max_npiv_vports = MIN_MULTI_ID_FABRIC - 1;
Seokmann Juc48339d2008-01-17 09:02:19 -08001850 mid_init_cb->count = cpu_to_le16(ha->max_npiv_vports);
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001851 }
1852
Andrew Vasquez24a08132009-03-24 09:08:16 -07001853 if (IS_FWI2_CAPABLE(ha)) {
1854 mid_init_cb->options = __constant_cpu_to_le16(BIT_1);
1855 mid_init_cb->init_cb.execution_throttle =
1856 cpu_to_le16(ha->fw_xcb_count);
1857 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001858
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001859 rval = qla2x00_init_firmware(vha, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 if (rval) {
1861 DEBUG2_3(printk("scsi(%ld): Init firmware **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001862 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 } else {
1864 DEBUG3(printk("scsi(%ld): Init firmware -- success.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001865 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 }
1867
1868 return (rval);
1869}
1870
1871/**
1872 * qla2x00_fw_ready() - Waits for firmware ready.
1873 * @ha: HA context
1874 *
1875 * Returns 0 on success.
1876 */
1877static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001878qla2x00_fw_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
1880 int rval;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001881 unsigned long wtime, mtime, cs84xx_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 uint16_t min_wait; /* Minimum wait time if loop is down */
1883 uint16_t wait_time; /* Wait time if loop is coming ready */
Andrew Vasquez656e8912009-06-03 09:55:29 -07001884 uint16_t state[5];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001885 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 rval = QLA_SUCCESS;
1888
1889 /* 20 seconds for loop down. */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001890 min_wait = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 /*
1893 * Firmware should take at most one RATOV to login, plus 5 seconds for
1894 * our own processing.
1895 */
1896 if ((wait_time = (ha->retry_count*ha->login_timeout) + 5) < min_wait) {
1897 wait_time = min_wait;
1898 }
1899
1900 /* Min wait time if loop down */
1901 mtime = jiffies + (min_wait * HZ);
1902
1903 /* wait time before firmware ready */
1904 wtime = jiffies + (wait_time * HZ);
1905
1906 /* Wait for ISP to finish LIP */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001907 if (!vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 qla_printk(KERN_INFO, ha, "Waiting for LIP to complete...\n");
1909
1910 DEBUG3(printk("scsi(%ld): Waiting for LIP to complete...\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001911 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001914 rval = qla2x00_get_firmware_state(vha, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (rval == QLA_SUCCESS) {
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001916 if (state[0] < FSTATE_LOSS_OF_SYNC) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001917 vha->device_flags &= ~DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001919 if (IS_QLA84XX(ha) && state[0] != FSTATE_READY) {
1920 DEBUG16(printk("scsi(%ld): fw_state=%x "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001921 "84xx=%x.\n", vha->host_no, state[0],
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001922 state[2]));
1923 if ((state[2] & FSTATE_LOGGED_IN) &&
1924 (state[2] & FSTATE_WAITING_FOR_VERIFY)) {
1925 DEBUG16(printk("scsi(%ld): Sending "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001926 "verify iocb.\n", vha->host_no));
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001927
1928 cs84xx_time = jiffies;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001929 rval = qla84xx_init_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001930 if (rval != QLA_SUCCESS)
1931 break;
1932
1933 /* Add time taken to initialize. */
1934 cs84xx_time = jiffies - cs84xx_time;
1935 wtime += cs84xx_time;
1936 mtime += cs84xx_time;
1937 DEBUG16(printk("scsi(%ld): Increasing "
1938 "wait time by %ld. New time %ld\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001939 vha->host_no, cs84xx_time, wtime));
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001940 }
1941 } else if (state[0] == FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 DEBUG(printk("scsi(%ld): F/W Ready - OK \n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001943 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001945 qla2x00_get_retry_cnt(vha, &ha->retry_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 &ha->login_timeout, &ha->r_a_tov);
1947
1948 rval = QLA_SUCCESS;
1949 break;
1950 }
1951
1952 rval = QLA_FUNCTION_FAILED;
1953
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001954 if (atomic_read(&vha->loop_down_timer) &&
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001955 state[0] != FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 /* Loop down. Timeout on min_wait for states
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001957 * other than Wait for Login.
1958 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 if (time_after_eq(jiffies, mtime)) {
1960 qla_printk(KERN_INFO, ha,
1961 "Cable is unplugged...\n");
1962
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001963 vha->device_flags |= DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 break;
1965 }
1966 }
1967 } else {
1968 /* Mailbox cmd failed. Timeout on min_wait. */
Santosh Vernekarcdbb0a4f2010-05-28 15:08:25 -07001969 if (time_after_eq(jiffies, mtime) ||
Giridhar Malavali71905752011-02-23 15:27:10 -08001970 ha->flags.isp82xx_fw_hung)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 break;
1972 }
1973
1974 if (time_after_eq(jiffies, wtime))
1975 break;
1976
1977 /* Delay for a while */
1978 msleep(500);
1979
1980 DEBUG3(printk("scsi(%ld): fw_state=%x curr time=%lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001981 vha->host_no, state[0], jiffies));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 } while (1);
1983
Andrew Vasquez656e8912009-06-03 09:55:29 -07001984 DEBUG(printk("scsi(%ld): fw_state=%x (%x, %x, %x, %x) curr time=%lx.\n",
1985 vha->host_no, state[0], state[1], state[2], state[3], state[4],
1986 jiffies));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 if (rval) {
1989 DEBUG2_3(printk("scsi(%ld): Firmware ready **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001990 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
1992
1993 return (rval);
1994}
1995
1996/*
1997* qla2x00_configure_hba
1998* Setup adapter context.
1999*
2000* Input:
2001* ha = adapter state pointer.
2002*
2003* Returns:
2004* 0 = success
2005*
2006* Context:
2007* Kernel context.
2008*/
2009static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002010qla2x00_configure_hba(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
2012 int rval;
2013 uint16_t loop_id;
2014 uint16_t topo;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002015 uint16_t sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 uint8_t al_pa;
2017 uint8_t area;
2018 uint8_t domain;
2019 char connect_type[22];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002020 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 /* Get host addresses. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002023 rval = qla2x00_get_adapter_id(vha,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002024 &loop_id, &al_pa, &area, &domain, &topo, &sw_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002026 if (LOOP_TRANSITION(vha) || atomic_read(&ha->loop_down_timer) ||
Andrew Vasquez7a44b862010-12-21 16:00:23 -08002027 IS_QLA8XXX_TYPE(ha) ||
Ravi Anand33135aa2005-11-08 14:37:20 -08002028 (rval == QLA_COMMAND_ERROR && loop_id == 0x7)) {
2029 DEBUG2(printk("%s(%ld) Loop is in a transition state\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002030 __func__, vha->host_no));
Ravi Anand33135aa2005-11-08 14:37:20 -08002031 } else {
2032 qla_printk(KERN_WARNING, ha,
2033 "ERROR -- Unable to get host loop ID.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002034 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Ravi Anand33135aa2005-11-08 14:37:20 -08002035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 return (rval);
2037 }
2038
2039 if (topo == 4) {
2040 qla_printk(KERN_INFO, ha,
2041 "Cannot get topology - retrying.\n");
2042 return (QLA_FUNCTION_FAILED);
2043 }
2044
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002045 vha->loop_id = loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 /* initialize */
2048 ha->min_external_loopid = SNS_FIRST_LOOP_ID;
2049 ha->operating_mode = LOOP;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002050 ha->switch_cap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 switch (topo) {
2053 case 0:
2054 DEBUG3(printk("scsi(%ld): HBA in NL topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002055 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 ha->current_topology = ISP_CFG_NL;
2057 strcpy(connect_type, "(Loop)");
2058 break;
2059
2060 case 1:
2061 DEBUG3(printk("scsi(%ld): HBA in FL topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002062 vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002063 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 ha->current_topology = ISP_CFG_FL;
2065 strcpy(connect_type, "(FL_Port)");
2066 break;
2067
2068 case 2:
2069 DEBUG3(printk("scsi(%ld): HBA in N P2P topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002070 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 ha->operating_mode = P2P;
2072 ha->current_topology = ISP_CFG_N;
2073 strcpy(connect_type, "(N_Port-to-N_Port)");
2074 break;
2075
2076 case 3:
2077 DEBUG3(printk("scsi(%ld): HBA in F P2P topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002078 vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002079 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 ha->operating_mode = P2P;
2081 ha->current_topology = ISP_CFG_F;
2082 strcpy(connect_type, "(F_Port)");
2083 break;
2084
2085 default:
2086 DEBUG3(printk("scsi(%ld): HBA in unknown topology %x. "
2087 "Using NL.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002088 vha->host_no, topo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 ha->current_topology = ISP_CFG_NL;
2090 strcpy(connect_type, "(Loop)");
2091 break;
2092 }
2093
2094 /* Save Host port and loop ID. */
2095 /* byte order - Big Endian */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002096 vha->d_id.b.domain = domain;
2097 vha->d_id.b.area = area;
2098 vha->d_id.b.al_pa = al_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002100 if (!vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 qla_printk(KERN_INFO, ha,
2102 "Topology - %s, Host Loop address 0x%x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002103 connect_type, vha->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 if (rval) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002106 DEBUG2_3(printk("scsi(%ld): FAILED.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002108 DEBUG3(printk("scsi(%ld): exiting normally.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
2110
2111 return(rval);
2112}
2113
Giridhar Malavalia9083012010-04-12 17:59:55 -07002114inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002115qla2x00_set_model_info(scsi_qla_host_t *vha, uint8_t *model, size_t len,
2116 char *def)
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002117{
2118 char *st, *en;
2119 uint16_t index;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002120 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezab671142009-08-25 11:36:17 -07002121 int use_tbl = !IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
Giridhar Malavalia9083012010-04-12 17:59:55 -07002122 !IS_QLA8XXX_TYPE(ha);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002123
2124 if (memcmp(model, BINZERO, len) != 0) {
2125 strncpy(ha->model_number, model, len);
2126 st = en = ha->model_number;
2127 en += len - 1;
2128 while (en > st) {
2129 if (*en != 0x20 && *en != 0x00)
2130 break;
2131 *en-- = '\0';
2132 }
2133
2134 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002135 if (use_tbl &&
2136 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002137 index < QLA_MODEL_NAMES)
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002138 strncpy(ha->model_desc,
2139 qla2x00_model_name[index * 2 + 1],
2140 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002141 } else {
2142 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002143 if (use_tbl &&
2144 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002145 index < QLA_MODEL_NAMES) {
2146 strcpy(ha->model_number,
2147 qla2x00_model_name[index * 2]);
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002148 strncpy(ha->model_desc,
2149 qla2x00_model_name[index * 2 + 1],
2150 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002151 } else {
2152 strcpy(ha->model_number, def);
2153 }
2154 }
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002155 if (IS_FWI2_CAPABLE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002156 qla2xxx_get_vpd_field(vha, "\x82", ha->model_desc,
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002157 sizeof(ha->model_desc));
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002158}
2159
David Miller4e08df32007-04-16 12:37:43 -07002160/* On sparc systems, obtain port and node WWN from firmware
2161 * properties.
2162 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002163static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t *vha, nvram_t *nv)
David Miller4e08df32007-04-16 12:37:43 -07002164{
2165#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002166 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07002167 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07002168 struct device_node *dp = pci_device_to_OF_node(pdev);
2169 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07002170 int len;
2171
2172 val = of_get_property(dp, "port-wwn", &len);
2173 if (val && len >= WWN_SIZE)
2174 memcpy(nv->port_name, val, WWN_SIZE);
2175
2176 val = of_get_property(dp, "node-wwn", &len);
2177 if (val && len >= WWN_SIZE)
2178 memcpy(nv->node_name, val, WWN_SIZE);
2179#endif
2180}
2181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182/*
2183* NVRAM configuration for ISP 2xxx
2184*
2185* Input:
2186* ha = adapter block pointer.
2187*
2188* Output:
2189* initialization control block in response_ring
2190* host adapters parameters in host adapter block
2191*
2192* Returns:
2193* 0 = success.
2194*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002195int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002196qla2x00_nvram_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197{
David Miller4e08df32007-04-16 12:37:43 -07002198 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002199 uint8_t chksum = 0;
2200 uint16_t cnt;
2201 uint8_t *dptr1, *dptr2;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002202 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002203 init_cb_t *icb = ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07002204 nvram_t *nv = ha->nvram;
2205 uint8_t *ptr = ha->nvram;
Andrew Vasquez3d716442005-07-06 10:30:26 -07002206 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
David Miller4e08df32007-04-16 12:37:43 -07002208 rval = QLA_SUCCESS;
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 /* Determine NVRAM starting address. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002211 ha->nvram_size = sizeof(nvram_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 ha->nvram_base = 0;
2213 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha))
2214 if ((RD_REG_WORD(&reg->ctrl_status) >> 14) == 1)
2215 ha->nvram_base = 0x80;
2216
2217 /* Get NVRAM data and calculate checksum. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002218 ha->isp_ops->read_nvram(vha, ptr, ha->nvram_base, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002219 for (cnt = 0, chksum = 0; cnt < ha->nvram_size; cnt++)
2220 chksum += *ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002222 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Seokmann Ju281afe12007-07-26 13:43:34 -07002223 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 /* Bad NVRAM data, set defaults parameters. */
2226 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' ||
2227 nv->id[2] != 'P' || nv->id[3] != ' ' || nv->nvram_version < 1) {
2228 /* Reset NVRAM data. */
2229 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
2230 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
2231 nv->nvram_version);
David Miller4e08df32007-04-16 12:37:43 -07002232 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
2233 "invalid -- WWPN) defaults.\n");
2234
2235 /*
2236 * Set default initialization control block.
2237 */
2238 memset(nv, 0, ha->nvram_size);
2239 nv->parameter_block_version = ICB_VERSION;
2240
2241 if (IS_QLA23XX(ha)) {
2242 nv->firmware_options[0] = BIT_2 | BIT_1;
2243 nv->firmware_options[1] = BIT_7 | BIT_5;
2244 nv->add_firmware_options[0] = BIT_5;
2245 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2246 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2247 nv->special_options[1] = BIT_7;
2248 } else if (IS_QLA2200(ha)) {
2249 nv->firmware_options[0] = BIT_2 | BIT_1;
2250 nv->firmware_options[1] = BIT_7 | BIT_5;
2251 nv->add_firmware_options[0] = BIT_5;
2252 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2253 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2254 } else if (IS_QLA2100(ha)) {
2255 nv->firmware_options[0] = BIT_3 | BIT_1;
2256 nv->firmware_options[1] = BIT_5;
2257 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2258 }
2259
2260 nv->max_iocb_allocation = __constant_cpu_to_le16(256);
2261 nv->execution_throttle = __constant_cpu_to_le16(16);
2262 nv->retry_count = 8;
2263 nv->retry_delay = 1;
2264
2265 nv->port_name[0] = 33;
2266 nv->port_name[3] = 224;
2267 nv->port_name[4] = 139;
2268
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002269 qla2xxx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07002270
2271 nv->login_timeout = 4;
2272
2273 /*
2274 * Set default host adapter parameters
2275 */
2276 nv->host_p[1] = BIT_2;
2277 nv->reset_delay = 5;
2278 nv->port_down_retry_count = 8;
2279 nv->max_luns_per_target = __constant_cpu_to_le16(8);
2280 nv->link_down_timeout = 60;
2281
2282 rval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
2284
2285#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
2286 /*
2287 * The SN2 does not provide BIOS emulation which means you can't change
2288 * potentially bogus BIOS settings. Force the use of default settings
2289 * for link rate and frame size. Hope that the rest of the settings
2290 * are valid.
2291 */
2292 if (ia64_platform_is("sn2")) {
2293 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2294 if (IS_QLA23XX(ha))
2295 nv->special_options[1] = BIT_7;
2296 }
2297#endif
2298
2299 /* Reset Initialization control block */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002300 memset(icb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302 /*
2303 * Setup driver NVRAM options.
2304 */
2305 nv->firmware_options[0] |= (BIT_6 | BIT_1);
2306 nv->firmware_options[0] &= ~(BIT_5 | BIT_4);
2307 nv->firmware_options[1] |= (BIT_5 | BIT_0);
2308 nv->firmware_options[1] &= ~BIT_4;
2309
2310 if (IS_QLA23XX(ha)) {
2311 nv->firmware_options[0] |= BIT_2;
2312 nv->firmware_options[0] &= ~BIT_3;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002313 nv->firmware_options[0] &= ~BIT_6;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002314 nv->add_firmware_options[1] |= BIT_5 | BIT_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 if (IS_QLA2300(ha)) {
2317 if (ha->fb_rev == FPM_2310) {
2318 strcpy(ha->model_number, "QLA2310");
2319 } else {
2320 strcpy(ha->model_number, "QLA2300");
2321 }
2322 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002323 qla2x00_set_model_info(vha, nv->model_number,
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002324 sizeof(nv->model_number), "QLA23xx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 }
2326 } else if (IS_QLA2200(ha)) {
2327 nv->firmware_options[0] |= BIT_2;
2328 /*
2329 * 'Point-to-point preferred, else loop' is not a safe
2330 * connection mode setting.
2331 */
2332 if ((nv->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) ==
2333 (BIT_5 | BIT_4)) {
2334 /* Force 'loop preferred, else point-to-point'. */
2335 nv->add_firmware_options[0] &= ~(BIT_6 | BIT_5 | BIT_4);
2336 nv->add_firmware_options[0] |= BIT_5;
2337 }
2338 strcpy(ha->model_number, "QLA22xx");
2339 } else /*if (IS_QLA2100(ha))*/ {
2340 strcpy(ha->model_number, "QLA2100");
2341 }
2342
2343 /*
2344 * Copy over NVRAM RISC parameter block to initialization control block.
2345 */
2346 dptr1 = (uint8_t *)icb;
2347 dptr2 = (uint8_t *)&nv->parameter_block_version;
2348 cnt = (uint8_t *)&icb->request_q_outpointer - (uint8_t *)&icb->version;
2349 while (cnt--)
2350 *dptr1++ = *dptr2++;
2351
2352 /* Copy 2nd half. */
2353 dptr1 = (uint8_t *)icb->add_firmware_options;
2354 cnt = (uint8_t *)icb->reserved_3 - (uint8_t *)icb->add_firmware_options;
2355 while (cnt--)
2356 *dptr1++ = *dptr2++;
2357
Andrew Vasquez5341e862006-05-17 15:09:16 -07002358 /* Use alternate WWN? */
2359 if (nv->host_p[1] & BIT_7) {
2360 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
2361 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
2362 }
2363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 /* Prepare nodename */
2365 if ((icb->firmware_options[1] & BIT_6) == 0) {
2366 /*
2367 * Firmware will apply the following mask if the nodename was
2368 * not provided.
2369 */
2370 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
2371 icb->node_name[0] &= 0xF0;
2372 }
2373
2374 /*
2375 * Set host adapter parameters.
2376 */
Andrew Vasquez01819442006-06-23 16:11:10 -07002377 if (nv->host_p[0] & BIT_7)
Andrew Vasquez11010fe2006-10-06 09:54:59 -07002378 ql2xextended_error_logging = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 ha->flags.disable_risc_code_load = ((nv->host_p[0] & BIT_4) ? 1 : 0);
2380 /* Always load RISC code on non ISP2[12]00 chips. */
2381 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
2382 ha->flags.disable_risc_code_load = 0;
2383 ha->flags.enable_lip_reset = ((nv->host_p[1] & BIT_1) ? 1 : 0);
2384 ha->flags.enable_lip_full_login = ((nv->host_p[1] & BIT_2) ? 1 : 0);
2385 ha->flags.enable_target_reset = ((nv->host_p[1] & BIT_3) ? 1 : 0);
Andrew Vasquez06c22bd2005-08-26 19:09:00 -07002386 ha->flags.enable_led_scheme = (nv->special_options[1] & BIT_4) ? 1 : 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07002387 ha->flags.disable_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 ha->operating_mode =
2390 (icb->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) >> 4;
2391
2392 memcpy(ha->fw_seriallink_options, nv->seriallink_options,
2393 sizeof(ha->fw_seriallink_options));
2394
2395 /* save HBA serial number */
2396 ha->serial0 = icb->port_name[5];
2397 ha->serial1 = icb->port_name[6];
2398 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002399 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
2400 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
2403
2404 ha->retry_count = nv->retry_count;
2405
2406 /* Set minimum login_timeout to 4 seconds. */
Andrew Vasquez5b914902010-05-28 15:08:30 -07002407 if (nv->login_timeout != ql2xlogintimeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 nv->login_timeout = ql2xlogintimeout;
2409 if (nv->login_timeout < 4)
2410 nv->login_timeout = 4;
2411 ha->login_timeout = nv->login_timeout;
2412 icb->login_timeout = nv->login_timeout;
2413
Andrew Vasquez00a537b2008-02-28 14:06:11 -08002414 /* Set minimum RATOV to 100 tenths of a second. */
2415 ha->r_a_tov = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 ha->loop_reset_delay = nv->reset_delay;
2418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 /* Link Down Timeout = 0:
2420 *
2421 * When Port Down timer expires we will start returning
2422 * I/O's to OS with "DID_NO_CONNECT".
2423 *
2424 * Link Down Timeout != 0:
2425 *
2426 * The driver waits for the link to come up after link down
2427 * before returning I/Os to OS with "DID_NO_CONNECT".
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002428 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (nv->link_down_timeout == 0) {
2430 ha->loop_down_abort_time =
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002431 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 } else {
2433 ha->link_down_timeout = nv->link_down_timeout;
2434 ha->loop_down_abort_time =
2435 (LOOP_DOWN_TIME - ha->link_down_timeout);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 /*
2439 * Need enough time to try and get the port back.
2440 */
2441 ha->port_down_retry_count = nv->port_down_retry_count;
2442 if (qlport_down_retry)
2443 ha->port_down_retry_count = qlport_down_retry;
2444 /* Set login_retry_count */
2445 ha->login_retry_count = nv->retry_count;
2446 if (ha->port_down_retry_count == nv->port_down_retry_count &&
2447 ha->port_down_retry_count > 3)
2448 ha->login_retry_count = ha->port_down_retry_count;
2449 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
2450 ha->login_retry_count = ha->port_down_retry_count;
2451 if (ql2xloginretrycount)
2452 ha->login_retry_count = ql2xloginretrycount;
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 icb->lun_enables = __constant_cpu_to_le16(0);
2455 icb->command_resource_count = 0;
2456 icb->immediate_notify_resource_count = 0;
2457 icb->timeout = __constant_cpu_to_le16(0);
2458
2459 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2460 /* Enable RIO */
2461 icb->firmware_options[0] &= ~BIT_3;
2462 icb->add_firmware_options[0] &=
2463 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
2464 icb->add_firmware_options[0] |= BIT_2;
2465 icb->response_accumulation_timer = 3;
2466 icb->interrupt_delay_timer = 5;
2467
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002468 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 } else {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002470 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002471 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002472 ha->zio_mode = icb->add_firmware_options[0] &
2473 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
2474 ha->zio_timer = icb->interrupt_delay_timer ?
2475 icb->interrupt_delay_timer: 2;
2476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 icb->add_firmware_options[0] &=
2478 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002479 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002480 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08002481 ha->zio_mode = QLA_ZIO_MODE_6;
2482
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002483 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002484 "delay (%d us).\n", vha->host_no, ha->zio_mode,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002485 ha->zio_timer * 100));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 qla_printk(KERN_INFO, ha,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002487 "ZIO mode %d enabled; timer delay (%d us).\n",
2488 ha->zio_mode, ha->zio_timer * 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002490 icb->add_firmware_options[0] |= (uint8_t)ha->zio_mode;
2491 icb->interrupt_delay_timer = (uint8_t)ha->zio_timer;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002492 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 }
2494 }
2495
David Miller4e08df32007-04-16 12:37:43 -07002496 if (rval) {
2497 DEBUG2_3(printk(KERN_WARNING
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002498 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
David Miller4e08df32007-04-16 12:37:43 -07002499 }
2500 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002503static void
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002504qla2x00_rport_del(void *data)
2505{
2506 fc_port_t *fcport = data;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002507 struct fc_rport *rport;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002508
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002509 spin_lock_irq(fcport->vha->host->host_lock);
Andrew Vasquezac280b62009-08-20 11:06:05 -07002510 rport = fcport->drport ? fcport->drport: fcport->rport;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002511 fcport->drport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002512 spin_unlock_irq(fcport->vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002513 if (rport)
2514 fc_remote_port_delete(rport);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002515}
2516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517/**
2518 * qla2x00_alloc_fcport() - Allocate a generic fcport.
2519 * @ha: HA context
2520 * @flags: allocation flags
2521 *
2522 * Returns a pointer to the allocated fcport, or NULL, if none available.
2523 */
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002524fc_port_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002525qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
2527 fc_port_t *fcport;
2528
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002529 fcport = kzalloc(sizeof(fc_port_t), flags);
2530 if (!fcport)
2531 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 /* Setup fcport template structure. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002534 fcport->vha = vha;
2535 fcport->vp_idx = vha->vp_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 fcport->port_type = FCT_UNKNOWN;
2537 fcport->loop_id = FC_NO_LOOP_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 atomic_set(&fcport->state, FCS_UNCONFIGURED);
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002539 fcport->supported_classes = FC_COS_UNSPECIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002541 return fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
2543
2544/*
2545 * qla2x00_configure_loop
2546 * Updates Fibre Channel Device Database with what is actually on loop.
2547 *
2548 * Input:
2549 * ha = adapter block pointer.
2550 *
2551 * Returns:
2552 * 0 = success.
2553 * 1 = error.
2554 * 2 = database was full and device was not configured.
2555 */
2556static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002557qla2x00_configure_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
2559 int rval;
2560 unsigned long flags, save_flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002561 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 rval = QLA_SUCCESS;
2563
2564 /* Get Initiator ID */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002565 if (test_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags)) {
2566 rval = qla2x00_configure_hba(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 if (rval != QLA_SUCCESS) {
2568 DEBUG(printk("scsi(%ld): Unable to configure HBA.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002569 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 return (rval);
2571 }
2572 }
2573
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002574 save_flags = flags = vha->dpc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 DEBUG(printk("scsi(%ld): Configure loop -- dpc flags =0x%lx\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002576 vha->host_no, flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578 /*
2579 * If we have both an RSCN and PORT UPDATE pending then handle them
2580 * both at the same time.
2581 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002582 clear_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2583 clear_bit(RSCN_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Michael Hernandez3064ff32009-12-15 21:29:44 -08002585 qla2x00_get_data_rate(vha);
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 /* Determine what we need to do */
2588 if (ha->current_topology == ISP_CFG_FL &&
2589 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2590
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002591 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 set_bit(RSCN_UPDATE, &flags);
2593
2594 } else if (ha->current_topology == ISP_CFG_F &&
2595 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2596
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002597 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 set_bit(RSCN_UPDATE, &flags);
2599 clear_bit(LOCAL_LOOP_UPDATE, &flags);
2600
Andrew Vasquez21333b42006-05-17 15:09:56 -07002601 } else if (ha->current_topology == ISP_CFG_N) {
2602 clear_bit(RSCN_UPDATE, &flags);
2603
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002604 } else if (!vha->flags.online ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 (test_bit(ABORT_ISP_ACTIVE, &flags))) {
2606
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002607 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 set_bit(RSCN_UPDATE, &flags);
2609 set_bit(LOCAL_LOOP_UPDATE, &flags);
2610 }
2611
2612 if (test_bit(LOCAL_LOOP_UPDATE, &flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002613 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 rval = QLA_FUNCTION_FAILED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002615 else
2616 rval = qla2x00_configure_local_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 }
2618
2619 if (rval == QLA_SUCCESS && test_bit(RSCN_UPDATE, &flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002620 if (LOOP_TRANSITION(vha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 rval = QLA_FUNCTION_FAILED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002622 else
2623 rval = qla2x00_configure_fabric(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 }
2625
2626 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002627 if (atomic_read(&vha->loop_down_timer) ||
2628 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 rval = QLA_FUNCTION_FAILED;
2630 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002631 atomic_set(&vha->loop_state, LOOP_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002633 DEBUG(printk("scsi(%ld): LOOP READY\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 }
2635 }
2636
2637 if (rval) {
2638 DEBUG2_3(printk("%s(%ld): *** FAILED ***\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002639 __func__, vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 } else {
2641 DEBUG3(printk("%s: exiting normally\n", __func__));
2642 }
2643
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -07002644 /* Restore state if a resync event occurred during processing */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002645 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 if (test_bit(LOCAL_LOOP_UPDATE, &save_flags))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002647 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002648 if (test_bit(RSCN_UPDATE, &save_flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002649 set_bit(RSCN_UPDATE, &vha->dpc_flags);
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07002650 if (!IS_ALOGIO_CAPABLE(ha))
2651 vha->flags.rscn_queue_overflow = 1;
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 }
2654
2655 return (rval);
2656}
2657
2658
2659
2660/*
2661 * qla2x00_configure_local_loop
2662 * Updates Fibre Channel Device Database with local loop devices.
2663 *
2664 * Input:
2665 * ha = adapter block pointer.
2666 *
2667 * Returns:
2668 * 0 = success.
2669 */
2670static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002671qla2x00_configure_local_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
2673 int rval, rval2;
2674 int found_devs;
2675 int found;
2676 fc_port_t *fcport, *new_fcport;
2677
2678 uint16_t index;
2679 uint16_t entries;
2680 char *id_iter;
2681 uint16_t loop_id;
2682 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002683 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
2685 found_devs = 0;
2686 new_fcport = NULL;
2687 entries = MAX_FIBRE_DEVICES;
2688
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002689 DEBUG3(printk("scsi(%ld): Getting FCAL position map\n", vha->host_no));
2690 DEBUG3(qla2x00_get_fcal_position_map(vha, NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
2692 /* Get list of logged in devices. */
2693 memset(ha->gid_list, 0, GID_LIST_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002694 rval = qla2x00_get_id_list(vha, ha->gid_list, ha->gid_list_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 &entries);
2696 if (rval != QLA_SUCCESS)
2697 goto cleanup_allocation;
2698
2699 DEBUG3(printk("scsi(%ld): Entries in ID list (%d)\n",
Andrew Vasquez76403352009-04-06 22:33:39 -07002700 vha->host_no, entries));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 DEBUG3(qla2x00_dump_buffer((uint8_t *)ha->gid_list,
2702 entries * sizeof(struct gid_list_info)));
2703
2704 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002705 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 if (new_fcport == NULL) {
2707 rval = QLA_MEMORY_ALLOC_FAILED;
2708 goto cleanup_allocation;
2709 }
2710 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2711
2712 /*
2713 * Mark local devices that were present with FCF_DEVICE_LOST for now.
2714 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002715 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 if (atomic_read(&fcport->state) == FCS_ONLINE &&
2717 fcport->port_type != FCT_BROADCAST &&
2718 (fcport->flags & FCF_FABRIC_DEVICE) == 0) {
2719
2720 DEBUG(printk("scsi(%ld): Marking port lost, "
2721 "loop_id=0x%04x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002722 vha->host_no, fcport->loop_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724 atomic_set(&fcport->state, FCS_DEVICE_LOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 }
2726 }
2727
2728 /* Add devices to port list. */
2729 id_iter = (char *)ha->gid_list;
2730 for (index = 0; index < entries; index++) {
2731 domain = ((struct gid_list_info *)id_iter)->domain;
2732 area = ((struct gid_list_info *)id_iter)->area;
2733 al_pa = ((struct gid_list_info *)id_iter)->al_pa;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002734 if (IS_QLA2100(ha) || IS_QLA2200(ha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 loop_id = (uint16_t)
2736 ((struct gid_list_info *)id_iter)->loop_id_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002737 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 loop_id = le16_to_cpu(
2739 ((struct gid_list_info *)id_iter)->loop_id);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002740 id_iter += ha->gid_list_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
2742 /* Bypass reserved domain fields. */
2743 if ((domain & 0xf0) == 0xf0)
2744 continue;
2745
2746 /* Bypass if not same domain and area of adapter. */
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07002747 if (area && domain &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002748 (area != vha->d_id.b.area || domain != vha->d_id.b.domain))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 continue;
2750
2751 /* Bypass invalid local loop ID. */
2752 if (loop_id > LAST_LOCAL_LOOP_ID)
2753 continue;
2754
2755 /* Fill in member data. */
2756 new_fcport->d_id.b.domain = domain;
2757 new_fcport->d_id.b.area = area;
2758 new_fcport->d_id.b.al_pa = al_pa;
2759 new_fcport->loop_id = loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002760 new_fcport->vp_idx = vha->vp_idx;
2761 rval2 = qla2x00_get_port_database(vha, new_fcport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 if (rval2 != QLA_SUCCESS) {
2763 DEBUG2(printk("scsi(%ld): Failed to retrieve fcport "
2764 "information -- get_port_database=%x, "
2765 "loop_id=0x%04x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002766 vha->host_no, rval2, new_fcport->loop_id));
andrew.vasquez@qlogic.comc9d02ac2006-01-13 17:05:26 -08002767 DEBUG2(printk("scsi(%ld): Scheduling resync...\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002768 vha->host_no));
2769 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 continue;
2771 }
2772
2773 /* Check for matching device in port list. */
2774 found = 0;
2775 fcport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002776 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (memcmp(new_fcport->port_name, fcport->port_name,
2778 WWN_SIZE))
2779 continue;
2780
Shyam Sundarddb9b122009-03-24 09:08:10 -07002781 fcport->flags &= ~FCF_FABRIC_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 fcport->loop_id = new_fcport->loop_id;
2783 fcport->port_type = new_fcport->port_type;
2784 fcport->d_id.b24 = new_fcport->d_id.b24;
2785 memcpy(fcport->node_name, new_fcport->node_name,
2786 WWN_SIZE);
2787
2788 found++;
2789 break;
2790 }
2791
2792 if (!found) {
2793 /* New device, add to fcports list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002794 if (vha->vp_idx) {
2795 new_fcport->vha = vha;
2796 new_fcport->vp_idx = vha->vp_idx;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002797 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002798 list_add_tail(&new_fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
2800 /* Allocate a new replacement fcport. */
2801 fcport = new_fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002802 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 if (new_fcport == NULL) {
2804 rval = QLA_MEMORY_ALLOC_FAILED;
2805 goto cleanup_allocation;
2806 }
2807 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2808 }
2809
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002810 /* Base iIDMA settings on HBA port speed. */
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002811 fcport->fp_speed = ha->link_data_rate;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002812
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002813 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
2815 found_devs++;
2816 }
2817
2818cleanup_allocation:
Jesper Juhlc9475cb2005-11-07 01:01:26 -08002819 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
2821 if (rval != QLA_SUCCESS) {
2822 DEBUG2(printk("scsi(%ld): Configure local loop error exit: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002823 "rval=%x\n", vha->host_no, rval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 }
2825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 return (rval);
2827}
2828
2829static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002830qla2x00_iidma_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002831{
2832#define LS_UNKNOWN 2
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002833 static char *link_speeds[] = { "1", "2", "?", "4", "8", "10" };
2834 char *link_speed;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002835 int rval;
Harish Zunjarrao1bb39542009-06-17 10:30:29 -07002836 uint16_t mb[4];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002837 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002838
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07002839 if (!IS_IIDMA_CAPABLE(ha))
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002840 return;
2841
Giridhar Malavalic9afb9a2010-09-03 15:20:48 -07002842 if (atomic_read(&fcport->state) != FCS_ONLINE)
2843 return;
2844
Andrew Vasquez39bd9622007-09-20 14:07:34 -07002845 if (fcport->fp_speed == PORT_SPEED_UNKNOWN ||
2846 fcport->fp_speed > ha->link_data_rate)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002847 return;
2848
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002849 rval = qla2x00_set_idma_speed(vha, fcport->loop_id, fcport->fp_speed,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002850 mb);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002851 if (rval != QLA_SUCCESS) {
2852 DEBUG2(printk("scsi(%ld): Unable to adjust iIDMA "
2853 "%02x%02x%02x%02x%02x%02x%02x%02x -- %04x %x %04x %04x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002854 vha->host_no, fcport->port_name[0], fcport->port_name[1],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002855 fcport->port_name[2], fcport->port_name[3],
2856 fcport->port_name[4], fcport->port_name[5],
2857 fcport->port_name[6], fcport->port_name[7], rval,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002858 fcport->fp_speed, mb[0], mb[1]));
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002859 } else {
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002860 link_speed = link_speeds[LS_UNKNOWN];
2861 if (fcport->fp_speed < 5)
2862 link_speed = link_speeds[fcport->fp_speed];
2863 else if (fcport->fp_speed == 0x13)
2864 link_speed = link_speeds[5];
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002865 DEBUG2(qla_printk(KERN_INFO, ha,
2866 "iIDMA adjusted to %s GB/s on "
2867 "%02x%02x%02x%02x%02x%02x%02x%02x.\n",
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002868 link_speed, fcport->port_name[0],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002869 fcport->port_name[1], fcport->port_name[2],
2870 fcport->port_name[3], fcport->port_name[4],
2871 fcport->port_name[5], fcport->port_name[6],
2872 fcport->port_name[7]));
2873 }
2874}
2875
Adrian Bunk23be3312006-11-24 02:46:01 +01002876static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002877qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport)
8482e1182005-04-17 15:04:54 -05002878{
2879 struct fc_rport_identifiers rport_ids;
bdf79622005-04-17 15:06:53 -05002880 struct fc_rport *rport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002881 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -05002882
Andrew Vasquezac280b62009-08-20 11:06:05 -07002883 qla2x00_rport_del(fcport);
8482e1182005-04-17 15:04:54 -05002884
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07002885 rport_ids.node_name = wwn_to_u64(fcport->node_name);
2886 rport_ids.port_name = wwn_to_u64(fcport->port_name);
8482e1182005-04-17 15:04:54 -05002887 rport_ids.port_id = fcport->d_id.b.domain << 16 |
2888 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
2889 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002890 fcport->rport = rport = fc_remote_port_add(vha->host, 0, &rport_ids);
Andrew Vasquez77d74142005-07-08 18:00:36 -07002891 if (!rport) {
2892 qla_printk(KERN_WARNING, ha,
2893 "Unable to allocate fc remote port!\n");
2894 return;
2895 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002896 spin_lock_irq(fcport->vha->host->host_lock);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002897 *((fc_port_t **)rport->dd_data) = fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002898 spin_unlock_irq(fcport->vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002899
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002900 rport->supported_classes = fcport->supported_classes;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002901
2902 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
8482e1182005-04-17 15:04:54 -05002903 if (fcport->port_type == FCT_INITIATOR)
2904 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
2905 if (fcport->port_type == FCT_TARGET)
2906 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002907 fc_remote_port_rolechg(rport, rport_ids.roles);
8482e1182005-04-17 15:04:54 -05002908}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910/*
Adrian Bunk23be3312006-11-24 02:46:01 +01002911 * qla2x00_update_fcport
2912 * Updates device on list.
2913 *
2914 * Input:
2915 * ha = adapter block pointer.
2916 * fcport = port structure pointer.
2917 *
2918 * Return:
2919 * 0 - Success
2920 * BIT_0 - error
2921 *
2922 * Context:
2923 * Kernel context.
2924 */
2925void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002926qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Adrian Bunk23be3312006-11-24 02:46:01 +01002927{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002928 fcport->vha = vha;
Adrian Bunk23be3312006-11-24 02:46:01 +01002929 fcport->login_retry = 0;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002930 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
Adrian Bunk23be3312006-11-24 02:46:01 +01002931
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002932 qla2x00_iidma_fcport(vha, fcport);
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08002933 qla24xx_update_fcport_fcp_prio(vha, fcport);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002934 qla2x00_reg_remote_port(vha, fcport);
Giridhar Malavali38170fa2010-10-15 11:27:49 -07002935 atomic_set(&fcport->state, FCS_ONLINE);
Adrian Bunk23be3312006-11-24 02:46:01 +01002936}
2937
2938/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 * qla2x00_configure_fabric
2940 * Setup SNS devices with loop ID's.
2941 *
2942 * Input:
2943 * ha = adapter block pointer.
2944 *
2945 * Returns:
2946 * 0 = success.
2947 * BIT_0 = error
2948 */
2949static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002950qla2x00_configure_fabric(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
2952 int rval, rval2;
2953 fc_port_t *fcport, *fcptemp;
2954 uint16_t next_loopid;
2955 uint16_t mb[MAILBOX_REGISTER_COUNT];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002956 uint16_t loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 LIST_HEAD(new_fcports);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002958 struct qla_hw_data *ha = vha->hw;
2959 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
2961 /* If FL port exists, then SNS is present */
Andrew Vasqueze4289242007-07-19 15:05:56 -07002962 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002963 loop_id = NPH_F_PORT;
2964 else
2965 loop_id = SNS_FL_PORT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002966 rval = qla2x00_get_port_name(vha, loop_id, vha->fabric_node_name, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 if (rval != QLA_SUCCESS) {
2968 DEBUG2(printk("scsi(%ld): MBC_GET_PORT_NAME Failed, No FL "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002969 "Port\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002971 vha->device_flags &= ~SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 return (QLA_SUCCESS);
2973 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002974 vha->device_flags |= SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976 /* Mark devices that need re-synchronization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002977 rval2 = qla2x00_device_resync(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 if (rval2 == QLA_RSCNS_HANDLED) {
2979 /* No point doing the scan, just continue. */
2980 return (QLA_SUCCESS);
2981 }
2982 do {
Andrew Vasquezcca53352005-08-26 19:08:30 -07002983 /* FDMI support. */
2984 if (ql2xfdmienable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002985 test_and_clear_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags))
2986 qla2x00_fdmi_register(vha);
Andrew Vasquezcca53352005-08-26 19:08:30 -07002987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 /* Ensure we are logged into the SNS. */
Andrew Vasqueze4289242007-07-19 15:05:56 -07002989 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002990 loop_id = NPH_SNS;
2991 else
2992 loop_id = SIMPLE_NAME_SERVER;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002993 ha->isp_ops->fabric_login(vha, loop_id, 0xff, 0xff,
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002994 0xfc, mb, BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 if (mb[0] != MBS_COMMAND_COMPLETE) {
2996 DEBUG2(qla_printk(KERN_INFO, ha,
2997 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002998 "mb[2]=%x mb[6]=%x mb[7]=%x\n", loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 mb[0], mb[1], mb[2], mb[6], mb[7]));
3000 return (QLA_SUCCESS);
3001 }
3002
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003003 if (test_and_clear_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags)) {
3004 if (qla2x00_rft_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 /* EMPTY */
3006 DEBUG2(printk("scsi(%ld): Register FC-4 "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003007 "TYPE failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003009 if (qla2x00_rff_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 /* EMPTY */
3011 DEBUG2(printk("scsi(%ld): Register FC-4 "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003012 "Features failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003014 if (qla2x00_rnn_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 /* EMPTY */
3016 DEBUG2(printk("scsi(%ld): Register Node Name "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003017 "failed.\n", vha->host_no));
3018 } else if (qla2x00_rsnn_nn(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 /* EMPTY */
3020 DEBUG2(printk("scsi(%ld): Register Symbolic "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003021 "Node Name failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 }
3023 }
3024
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003025 rval = qla2x00_find_all_fabric_devs(vha, &new_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 if (rval != QLA_SUCCESS)
3027 break;
3028
3029 /*
3030 * Logout all previous fabric devices marked lost, except
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003031 * FCP2 devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003033 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3034 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 break;
3036
3037 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0)
3038 continue;
3039
3040 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003041 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003042 ql2xplogiabsentdevice, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003044 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 fcport->port_type != FCT_INITIATOR &&
3046 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003047 ha->isp_ops->fabric_logout(vha,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003048 fcport->loop_id,
3049 fcport->d_id.b.domain,
3050 fcport->d_id.b.area,
3051 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 fcport->loop_id = FC_NO_LOOP_ID;
3053 }
3054 }
3055 }
3056
3057 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003058 next_loopid = ha->min_external_loopid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
3060 /*
3061 * Scan through our port list and login entries that need to be
3062 * logged in.
3063 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003064 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3065 if (atomic_read(&vha->loop_down_timer) ||
3066 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 break;
3068
3069 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
3070 (fcport->flags & FCF_LOGIN_NEEDED) == 0)
3071 continue;
3072
3073 if (fcport->loop_id == FC_NO_LOOP_ID) {
3074 fcport->loop_id = next_loopid;
Seokmann Jud4486fd62008-04-03 13:13:28 -07003075 rval = qla2x00_find_new_loop_id(
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003076 base_vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 if (rval != QLA_SUCCESS) {
3078 /* Ran out of IDs to use */
3079 break;
3080 }
3081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003083 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
3085
3086 /* Exit if out of loop IDs. */
3087 if (rval != QLA_SUCCESS) {
3088 break;
3089 }
3090
3091 /*
3092 * Login and add the new devices to our port list.
3093 */
3094 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003095 if (atomic_read(&vha->loop_down_timer) ||
3096 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 break;
3098
3099 /* Find a new loop ID to use. */
3100 fcport->loop_id = next_loopid;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003101 rval = qla2x00_find_new_loop_id(base_vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 if (rval != QLA_SUCCESS) {
3103 /* Ran out of IDs to use */
3104 break;
3105 }
3106
bdf79622005-04-17 15:06:53 -05003107 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003108 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003109
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003110 if (vha->vp_idx) {
3111 fcport->vha = vha;
3112 fcport->vp_idx = vha->vp_idx;
3113 }
3114 list_move_tail(&fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 }
3116 } while (0);
3117
3118 /* Free all new device structures not processed. */
3119 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
3120 list_del(&fcport->list);
3121 kfree(fcport);
3122 }
3123
3124 if (rval) {
3125 DEBUG2(printk("scsi(%ld): Configure fabric error exit: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003126 "rval=%d\n", vha->host_no, rval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 }
3128
3129 return (rval);
3130}
3131
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132/*
3133 * qla2x00_find_all_fabric_devs
3134 *
3135 * Input:
3136 * ha = adapter block pointer.
3137 * dev = database device entry pointer.
3138 *
3139 * Returns:
3140 * 0 = success.
3141 *
3142 * Context:
3143 * Kernel context.
3144 */
3145static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003146qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha,
3147 struct list_head *new_fcports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148{
3149 int rval;
3150 uint16_t loop_id;
3151 fc_port_t *fcport, *new_fcport, *fcptemp;
3152 int found;
3153
3154 sw_info_t *swl;
3155 int swl_idx;
3156 int first_dev, last_dev;
Mike Waychison1516ef42010-05-04 15:01:31 -07003157 port_id_t wrap = {}, nxt_d_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003158 struct qla_hw_data *ha = vha->hw;
3159 struct scsi_qla_host *vp, *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003160 struct scsi_qla_host *tvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
3162 rval = QLA_SUCCESS;
3163
3164 /* Try GID_PT to get device list, else GAN. */
Andrew Vasquez4b892582008-09-11 21:22:48 -07003165 swl = kcalloc(MAX_FIBRE_DEVICES, sizeof(sw_info_t), GFP_KERNEL);
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02003166 if (!swl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 /*EMPTY*/
3168 DEBUG2(printk("scsi(%ld): GID_PT allocations failed, fallback "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003169 "on GA_NXT\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003171 if (qla2x00_gid_pt(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 kfree(swl);
3173 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003174 } else if (qla2x00_gpn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 kfree(swl);
3176 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003177 } else if (qla2x00_gnn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 kfree(swl);
3179 swl = NULL;
Andrew Vasqueze5896bd2008-07-10 16:55:52 -07003180 } else if (ql2xiidmaenable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003181 qla2x00_gfpn_id(vha, swl) == QLA_SUCCESS) {
3182 qla2x00_gpsc(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003184
3185 /* If other queries succeeded probe for FC-4 type */
3186 if (swl)
3187 qla2x00_gff_id(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 }
3189 swl_idx = 0;
3190
3191 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003192 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 if (new_fcport == NULL) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003194 kfree(swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 return (QLA_MEMORY_ALLOC_FAILED);
3196 }
3197 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 /* Set start port ID scan at adapter ID. */
3199 first_dev = 1;
3200 last_dev = 0;
3201
3202 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003203 loop_id = ha->min_external_loopid;
3204 for (; loop_id <= ha->max_loop_id; loop_id++) {
3205 if (qla2x00_is_reserved_id(vha, loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 continue;
3207
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07003208 if (ha->current_topology == ISP_CFG_FL &&
3209 (atomic_read(&vha->loop_down_timer) ||
3210 LOOP_TRANSITION(vha))) {
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003211 atomic_set(&vha->loop_down_timer, 0);
3212 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
3213 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 break;
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
3217 if (swl != NULL) {
3218 if (last_dev) {
3219 wrap.b24 = new_fcport->d_id.b24;
3220 } else {
3221 new_fcport->d_id.b24 = swl[swl_idx].d_id.b24;
3222 memcpy(new_fcport->node_name,
3223 swl[swl_idx].node_name, WWN_SIZE);
3224 memcpy(new_fcport->port_name,
3225 swl[swl_idx].port_name, WWN_SIZE);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003226 memcpy(new_fcport->fabric_port_name,
3227 swl[swl_idx].fabric_port_name, WWN_SIZE);
3228 new_fcport->fp_speed = swl[swl_idx].fp_speed;
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003229 new_fcport->fc4_type = swl[swl_idx].fc4_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
3231 if (swl[swl_idx].d_id.b.rsvd_1 != 0) {
3232 last_dev = 1;
3233 }
3234 swl_idx++;
3235 }
3236 } else {
3237 /* Send GA_NXT to the switch */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003238 rval = qla2x00_ga_nxt(vha, new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 if (rval != QLA_SUCCESS) {
3240 qla_printk(KERN_WARNING, ha,
3241 "SNS scan failed -- assuming zero-entry "
3242 "result...\n");
3243 list_for_each_entry_safe(fcport, fcptemp,
3244 new_fcports, list) {
3245 list_del(&fcport->list);
3246 kfree(fcport);
3247 }
3248 rval = QLA_SUCCESS;
3249 break;
3250 }
3251 }
3252
3253 /* If wrap on switch device list, exit. */
3254 if (first_dev) {
3255 wrap.b24 = new_fcport->d_id.b24;
3256 first_dev = 0;
3257 } else if (new_fcport->d_id.b24 == wrap.b24) {
3258 DEBUG2(printk("scsi(%ld): device wrap (%02x%02x%02x)\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003259 vha->host_no, new_fcport->d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 new_fcport->d_id.b.area, new_fcport->d_id.b.al_pa));
3261 break;
3262 }
3263
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003264 /* Bypass if same physical adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003265 if (new_fcport->d_id.b24 == base_vha->d_id.b24)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 continue;
3267
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003268 /* Bypass virtual ports of the same host. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003269 found = 0;
3270 if (ha->num_vhosts) {
Arun Easifeafb7b2010-09-03 14:57:00 -07003271 unsigned long flags;
3272
3273 spin_lock_irqsave(&ha->vport_slock, flags);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003274 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003275 if (new_fcport->d_id.b24 == vp->d_id.b24) {
3276 found = 1;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003277 break;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003278 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003279 }
Arun Easifeafb7b2010-09-03 14:57:00 -07003280 spin_unlock_irqrestore(&ha->vport_slock, flags);
3281
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003282 if (found)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003283 continue;
3284 }
3285
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003286 /* Bypass if same domain and area of adapter. */
3287 if (((new_fcport->d_id.b24 & 0xffff00) ==
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003288 (vha->d_id.b24 & 0xffff00)) && ha->current_topology ==
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07003289 ISP_CFG_FL)
3290 continue;
3291
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 /* Bypass reserved domain fields. */
3293 if ((new_fcport->d_id.b.domain & 0xf0) == 0xf0)
3294 continue;
3295
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003296 /* Bypass ports whose FCP-4 type is not FCP_SCSI */
Chad Dupuis4da26e12010-10-15 11:27:40 -07003297 if (ql2xgffidenable &&
3298 (new_fcport->fc4_type != FC4_TYPE_FCP_SCSI &&
3299 new_fcport->fc4_type != FC4_TYPE_UNKNOWN))
Chad Dupuise8c72ba2010-07-23 15:28:25 +05003300 continue;
3301
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 /* Locate matching device in database. */
3303 found = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003304 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 if (memcmp(new_fcport->port_name, fcport->port_name,
3306 WWN_SIZE))
3307 continue;
3308
3309 found++;
3310
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003311 /* Update port state. */
3312 memcpy(fcport->fabric_port_name,
3313 new_fcport->fabric_port_name, WWN_SIZE);
3314 fcport->fp_speed = new_fcport->fp_speed;
3315
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 /*
3317 * If address the same and state FCS_ONLINE, nothing
3318 * changed.
3319 */
3320 if (fcport->d_id.b24 == new_fcport->d_id.b24 &&
3321 atomic_read(&fcport->state) == FCS_ONLINE) {
3322 break;
3323 }
3324
3325 /*
3326 * If device was not a fabric device before.
3327 */
3328 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0) {
3329 fcport->d_id.b24 = new_fcport->d_id.b24;
3330 fcport->loop_id = FC_NO_LOOP_ID;
3331 fcport->flags |= (FCF_FABRIC_DEVICE |
3332 FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 break;
3334 }
3335
3336 /*
3337 * Port ID changed or device was marked to be updated;
3338 * Log it out if still logged in and mark it for
3339 * relogin later.
3340 */
3341 fcport->d_id.b24 = new_fcport->d_id.b24;
3342 fcport->flags |= FCF_LOGIN_NEEDED;
3343 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003344 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 fcport->port_type != FCT_INITIATOR &&
3346 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003347 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003348 fcport->d_id.b.domain, fcport->d_id.b.area,
3349 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 fcport->loop_id = FC_NO_LOOP_ID;
3351 }
3352
3353 break;
3354 }
3355
3356 if (found)
3357 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 /* If device was not in our fcports list, then add it. */
3359 list_add_tail(&new_fcport->list, new_fcports);
3360
3361 /* Allocate a new replacement fcport. */
3362 nxt_d_id.b24 = new_fcport->d_id.b24;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003363 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 if (new_fcport == NULL) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003365 kfree(swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 return (QLA_MEMORY_ALLOC_FAILED);
3367 }
3368 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
3369 new_fcport->d_id.b24 = nxt_d_id.b24;
3370 }
3371
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003372 kfree(swl);
3373 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 return (rval);
3376}
3377
3378/*
3379 * qla2x00_find_new_loop_id
3380 * Scan through our port list and find a new usable loop ID.
3381 *
3382 * Input:
3383 * ha: adapter state pointer.
3384 * dev: port structure pointer.
3385 *
3386 * Returns:
3387 * qla2x00 local function return status code.
3388 *
3389 * Context:
3390 * Kernel context.
3391 */
Adrian Bunk413975a2006-06-30 02:33:06 -07003392static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003393qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394{
3395 int rval;
3396 int found;
3397 fc_port_t *fcport;
3398 uint16_t first_loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003399 struct qla_hw_data *ha = vha->hw;
3400 struct scsi_qla_host *vp;
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003401 struct scsi_qla_host *tvp;
Arun Easifeafb7b2010-09-03 14:57:00 -07003402 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
3404 rval = QLA_SUCCESS;
3405
3406 /* Save starting loop ID. */
3407 first_loop_id = dev->loop_id;
3408
3409 for (;;) {
3410 /* Skip loop ID if already used by adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003411 if (dev->loop_id == vha->loop_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 dev->loop_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
3414 /* Skip reserved loop IDs. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003415 while (qla2x00_is_reserved_id(vha, dev->loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 dev->loop_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
3418 /* Reset loop ID if passed the end. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003419 if (dev->loop_id > ha->max_loop_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 /* first loop ID. */
3421 dev->loop_id = ha->min_external_loopid;
3422 }
3423
3424 /* Check for loop ID being already in use. */
3425 found = 0;
3426 fcport = NULL;
Arun Easifeafb7b2010-09-03 14:57:00 -07003427
3428 spin_lock_irqsave(&ha->vport_slock, flags);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003429 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003430 list_for_each_entry(fcport, &vp->vp_fcports, list) {
3431 if (fcport->loop_id == dev->loop_id &&
3432 fcport != dev) {
3433 /* ID possibly in use */
3434 found++;
3435 break;
3436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003438 if (found)
3439 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 }
Arun Easifeafb7b2010-09-03 14:57:00 -07003441 spin_unlock_irqrestore(&ha->vport_slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
3443 /* If not in use then it is free to use. */
3444 if (!found) {
3445 break;
3446 }
3447
3448 /* ID in use. Try next value. */
3449 dev->loop_id++;
3450
3451 /* If wrap around. No free ID to use. */
3452 if (dev->loop_id == first_loop_id) {
3453 dev->loop_id = FC_NO_LOOP_ID;
3454 rval = QLA_FUNCTION_FAILED;
3455 break;
3456 }
3457 }
3458
3459 return (rval);
3460}
3461
3462/*
3463 * qla2x00_device_resync
3464 * Marks devices in the database that needs resynchronization.
3465 *
3466 * Input:
3467 * ha = adapter block pointer.
3468 *
3469 * Context:
3470 * Kernel context.
3471 */
3472static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003473qla2x00_device_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474{
3475 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 uint32_t mask;
3477 fc_port_t *fcport;
3478 uint32_t rscn_entry;
3479 uint8_t rscn_out_iter;
3480 uint8_t format;
Mike Waychison1516ef42010-05-04 15:01:31 -07003481 port_id_t d_id = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
3483 rval = QLA_RSCNS_HANDLED;
3484
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003485 while (vha->rscn_out_ptr != vha->rscn_in_ptr ||
3486 vha->flags.rscn_queue_overflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003488 rscn_entry = vha->rscn_queue[vha->rscn_out_ptr];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 format = MSB(MSW(rscn_entry));
3490 d_id.b.domain = LSB(MSW(rscn_entry));
3491 d_id.b.area = MSB(LSW(rscn_entry));
3492 d_id.b.al_pa = LSB(LSW(rscn_entry));
3493
3494 DEBUG(printk("scsi(%ld): RSCN queue entry[%d] = "
3495 "[%02x/%02x%02x%02x].\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003496 vha->host_no, vha->rscn_out_ptr, format, d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 d_id.b.area, d_id.b.al_pa));
3498
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003499 vha->rscn_out_ptr++;
3500 if (vha->rscn_out_ptr == MAX_RSCN_COUNT)
3501 vha->rscn_out_ptr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502
3503 /* Skip duplicate entries. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003504 for (rscn_out_iter = vha->rscn_out_ptr;
3505 !vha->flags.rscn_queue_overflow &&
3506 rscn_out_iter != vha->rscn_in_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 rscn_out_iter = (rscn_out_iter ==
3508 (MAX_RSCN_COUNT - 1)) ? 0: rscn_out_iter + 1) {
3509
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003510 if (rscn_entry != vha->rscn_queue[rscn_out_iter])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 break;
3512
3513 DEBUG(printk("scsi(%ld): Skipping duplicate RSCN queue "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003514 "entry found at [%d].\n", vha->host_no,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 rscn_out_iter));
3516
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003517 vha->rscn_out_ptr = rscn_out_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 }
3519
3520 /* Queue overflow, set switch default case. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003521 if (vha->flags.rscn_queue_overflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 DEBUG(printk("scsi(%ld): device_resync: rscn "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003523 "overflow.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
3525 format = 3;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003526 vha->flags.rscn_queue_overflow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 }
3528
3529 switch (format) {
3530 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 mask = 0xffffff;
3532 break;
3533 case 1:
3534 mask = 0xffff00;
3535 break;
3536 case 2:
3537 mask = 0xff0000;
3538 break;
3539 default:
3540 mask = 0x0;
3541 d_id.b24 = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003542 vha->rscn_out_ptr = vha->rscn_in_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 break;
3544 }
3545
3546 rval = QLA_SUCCESS;
3547
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003548 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
3550 (fcport->d_id.b24 & mask) != d_id.b24 ||
3551 fcport->port_type == FCT_BROADCAST)
3552 continue;
3553
3554 if (atomic_read(&fcport->state) == FCS_ONLINE) {
3555 if (format != 3 ||
3556 fcport->port_type != FCT_INITIATOR) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003557 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003558 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 }
3560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 }
3562 }
3563 return (rval);
3564}
3565
3566/*
3567 * qla2x00_fabric_dev_login
3568 * Login fabric target device and update FC port database.
3569 *
3570 * Input:
3571 * ha: adapter state pointer.
3572 * fcport: port structure list pointer.
3573 * next_loopid: contains value of a new loop ID that can be used
3574 * by the next login attempt.
3575 *
3576 * Returns:
3577 * qla2x00 local function return status code.
3578 *
3579 * Context:
3580 * Kernel context.
3581 */
3582static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003583qla2x00_fabric_dev_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 uint16_t *next_loopid)
3585{
3586 int rval;
3587 int retry;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003588 uint8_t opts;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003589 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
3591 rval = QLA_SUCCESS;
3592 retry = 0;
3593
Andrew Vasquezac280b62009-08-20 11:06:05 -07003594 if (IS_ALOGIO_CAPABLE(ha)) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003595 if (fcport->flags & FCF_ASYNC_SENT)
3596 return rval;
3597 fcport->flags |= FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003598 rval = qla2x00_post_async_login_work(vha, fcport, NULL);
3599 if (!rval)
3600 return rval;
3601 }
3602
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003603 fcport->flags &= ~FCF_ASYNC_SENT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003604 rval = qla2x00_fabric_login(vha, fcport, next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 if (rval == QLA_SUCCESS) {
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003606 /* Send an ADISC to FCP2 devices.*/
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003607 opts = 0;
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003608 if (fcport->flags & FCF_FCP2_DEVICE)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003609 opts |= BIT_1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003610 rval = qla2x00_get_port_database(vha, fcport, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003612 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003613 fcport->d_id.b.domain, fcport->d_id.b.area,
3614 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003615 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003617 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 }
3619 }
3620
3621 return (rval);
3622}
3623
3624/*
3625 * qla2x00_fabric_login
3626 * Issue fabric login command.
3627 *
3628 * Input:
3629 * ha = adapter block pointer.
3630 * device = pointer to FC device type structure.
3631 *
3632 * Returns:
3633 * 0 - Login successfully
3634 * 1 - Login failed
3635 * 2 - Initiator device
3636 * 3 - Fatal error
3637 */
3638int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003639qla2x00_fabric_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 uint16_t *next_loopid)
3641{
3642 int rval;
3643 int retry;
3644 uint16_t tmp_loopid;
3645 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003646 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647
3648 retry = 0;
3649 tmp_loopid = 0;
3650
3651 for (;;) {
3652 DEBUG(printk("scsi(%ld): Trying Fabric Login w/loop id 0x%04x "
3653 "for port %02x%02x%02x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003654 vha->host_no, fcport->loop_id, fcport->d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 fcport->d_id.b.area, fcport->d_id.b.al_pa));
3656
3657 /* Login fcport on switch. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003658 ha->isp_ops->fabric_login(vha, fcport->loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 fcport->d_id.b.domain, fcport->d_id.b.area,
3660 fcport->d_id.b.al_pa, mb, BIT_0);
3661 if (mb[0] == MBS_PORT_ID_USED) {
3662 /*
3663 * Device has another loop ID. The firmware team
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003664 * recommends the driver perform an implicit login with
3665 * the specified ID again. The ID we just used is save
3666 * here so we return with an ID that can be tried by
3667 * the next login.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 */
3669 retry++;
3670 tmp_loopid = fcport->loop_id;
3671 fcport->loop_id = mb[1];
3672
3673 DEBUG(printk("Fabric Login: port in use - next "
3674 "loop id=0x%04x, port Id=%02x%02x%02x.\n",
3675 fcport->loop_id, fcport->d_id.b.domain,
3676 fcport->d_id.b.area, fcport->d_id.b.al_pa));
3677
3678 } else if (mb[0] == MBS_COMMAND_COMPLETE) {
3679 /*
3680 * Login succeeded.
3681 */
3682 if (retry) {
3683 /* A retry occurred before. */
3684 *next_loopid = tmp_loopid;
3685 } else {
3686 /*
3687 * No retry occurred before. Just increment the
3688 * ID value for next login.
3689 */
3690 *next_loopid = (fcport->loop_id + 1);
3691 }
3692
3693 if (mb[1] & BIT_0) {
3694 fcport->port_type = FCT_INITIATOR;
3695 } else {
3696 fcport->port_type = FCT_TARGET;
3697 if (mb[1] & BIT_1) {
Santosh Vernekar8474f3a2009-08-25 11:36:16 -07003698 fcport->flags |= FCF_FCP2_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 }
3700 }
3701
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003702 if (mb[10] & BIT_0)
3703 fcport->supported_classes |= FC_COS_CLASS2;
3704 if (mb[10] & BIT_1)
3705 fcport->supported_classes |= FC_COS_CLASS3;
3706
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 rval = QLA_SUCCESS;
3708 break;
3709 } else if (mb[0] == MBS_LOOP_ID_USED) {
3710 /*
3711 * Loop ID already used, try next loop ID.
3712 */
3713 fcport->loop_id++;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003714 rval = qla2x00_find_new_loop_id(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 if (rval != QLA_SUCCESS) {
3716 /* Ran out of loop IDs to use */
3717 break;
3718 }
3719 } else if (mb[0] == MBS_COMMAND_ERROR) {
3720 /*
3721 * Firmware possibly timed out during login. If NO
3722 * retries are left to do then the device is declared
3723 * dead.
3724 */
3725 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003726 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003727 fcport->d_id.b.domain, fcport->d_id.b.area,
3728 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003729 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
3731 rval = 1;
3732 break;
3733 } else {
3734 /*
3735 * unrecoverable / not handled error
3736 */
3737 DEBUG2(printk("%s(%ld): failed=%x port_id=%02x%02x%02x "
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003738 "loop_id=%x jiffies=%lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003739 __func__, vha->host_no, mb[0],
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 fcport->d_id.b.domain, fcport->d_id.b.area,
3741 fcport->d_id.b.al_pa, fcport->loop_id, jiffies));
3742
3743 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003744 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003745 fcport->d_id.b.domain, fcport->d_id.b.area,
3746 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 fcport->loop_id = FC_NO_LOOP_ID;
Andrew Vasquez0eedfcf2005-10-27 11:09:38 -07003748 fcport->login_retry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749
3750 rval = 3;
3751 break;
3752 }
3753 }
3754
3755 return (rval);
3756}
3757
3758/*
3759 * qla2x00_local_device_login
3760 * Issue local device login command.
3761 *
3762 * Input:
3763 * ha = adapter block pointer.
3764 * loop_id = loop id of device to login to.
3765 *
3766 * Returns (Where's the #define!!!!):
3767 * 0 - Login successfully
3768 * 1 - Login failed
3769 * 3 - Fatal error
3770 */
3771int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003772qla2x00_local_device_login(scsi_qla_host_t *vha, fc_port_t *fcport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773{
3774 int rval;
3775 uint16_t mb[MAILBOX_REGISTER_COUNT];
3776
3777 memset(mb, 0, sizeof(mb));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003778 rval = qla2x00_login_local_device(vha, fcport, mb, BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 if (rval == QLA_SUCCESS) {
3780 /* Interrogate mailbox registers for any errors */
3781 if (mb[0] == MBS_COMMAND_ERROR)
3782 rval = 1;
3783 else if (mb[0] == MBS_COMMAND_PARAMETER_ERROR)
3784 /* device not in PCB table */
3785 rval = 3;
3786 }
3787
3788 return (rval);
3789}
3790
3791/*
3792 * qla2x00_loop_resync
3793 * Resync with fibre channel devices.
3794 *
3795 * Input:
3796 * ha = adapter block pointer.
3797 *
3798 * Returns:
3799 * 0 = success
3800 */
3801int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003802qla2x00_loop_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003804 int rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 uint32_t wait_time;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003806 struct req_que *req;
3807 struct rsp_que *rsp;
3808
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07003809 if (vha->hw->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003810 req = vha->hw->req_q_map[0];
3811 else
3812 req = vha->req;
3813 rsp = req->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003815 atomic_set(&vha->loop_state, LOOP_UPDATE);
3816 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3817 if (vha->flags.online) {
3818 if (!(rval = qla2x00_fw_ready(vha))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 /* Wait at most MAX_TARGET RSCNs for a stable link. */
3820 wait_time = 256;
3821 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003822 atomic_set(&vha->loop_state, LOOP_UPDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003824 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003825 qla2x00_marker(vha, req, rsp, 0, 0,
3826 MK_SYNC_ALL);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003827 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
3829 /* Remap devices on Loop. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003830 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003832 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003834 } while (!atomic_read(&vha->loop_down_timer) &&
3835 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
3836 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
3837 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 }
3840
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003841 if (test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 return (QLA_FUNCTION_FAILED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003844 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
3847 return (rval);
3848}
3849
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003850/*
3851* qla2x00_perform_loop_resync
3852* Description: This function will set the appropriate flags and call
3853* qla2x00_loop_resync. If successful loop will be resynced
3854* Arguments : scsi_qla_host_t pointer
3855* returm : Success or Failure
3856*/
3857
3858int qla2x00_perform_loop_resync(scsi_qla_host_t *ha)
3859{
3860 int32_t rval = 0;
3861
3862 if (!test_and_set_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags)) {
3863 /*Configure the flags so that resync happens properly*/
3864 atomic_set(&ha->loop_down_timer, 0);
3865 if (!(ha->device_flags & DFLG_NO_CABLE)) {
3866 atomic_set(&ha->loop_state, LOOP_UP);
3867 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
3868 set_bit(REGISTER_FC4_NEEDED, &ha->dpc_flags);
3869 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
3870
3871 rval = qla2x00_loop_resync(ha);
3872 } else
3873 atomic_set(&ha->loop_state, LOOP_DEAD);
3874
3875 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
3876 }
3877
3878 return rval;
3879}
3880
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881void
Andrew Vasquez67becc02009-08-25 11:36:20 -07003882qla2x00_update_fcports(scsi_qla_host_t *base_vha)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003883{
3884 fc_port_t *fcport;
Arun Easifeafb7b2010-09-03 14:57:00 -07003885 struct scsi_qla_host *vha;
3886 struct qla_hw_data *ha = base_vha->hw;
3887 unsigned long flags;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003888
Arun Easifeafb7b2010-09-03 14:57:00 -07003889 spin_lock_irqsave(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003890 /* Go with deferred removal of rport references. */
Arun Easifeafb7b2010-09-03 14:57:00 -07003891 list_for_each_entry(vha, &base_vha->hw->vp_list, list) {
3892 atomic_inc(&vha->vref_count);
3893 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Dan Carpenter8ae598d2010-12-21 16:00:15 -08003894 if (fcport->drport &&
Arun Easifeafb7b2010-09-03 14:57:00 -07003895 atomic_read(&fcport->state) != FCS_UNCONFIGURED) {
3896 spin_unlock_irqrestore(&ha->vport_slock, flags);
3897
Andrew Vasquez67becc02009-08-25 11:36:20 -07003898 qla2x00_rport_del(fcport);
Arun Easifeafb7b2010-09-03 14:57:00 -07003899
3900 spin_lock_irqsave(&ha->vport_slock, flags);
3901 }
3902 }
3903 atomic_dec(&vha->vref_count);
3904 }
3905 spin_unlock_irqrestore(&ha->vport_slock, flags);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003906}
3907
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003908/*
3909* qla82xx_quiescent_state_cleanup
3910* Description: This function will block the new I/Os
3911* Its not aborting any I/Os as context
3912* is not destroyed during quiescence
3913* Arguments: scsi_qla_host_t
3914* return : void
3915*/
3916void
3917qla82xx_quiescent_state_cleanup(scsi_qla_host_t *vha)
3918{
3919 struct qla_hw_data *ha = vha->hw;
3920 struct scsi_qla_host *vp;
3921
3922 qla_printk(KERN_INFO, ha,
3923 "Performing ISP error recovery - ha= %p.\n", ha);
3924
3925 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
3926 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
3927 atomic_set(&vha->loop_state, LOOP_DOWN);
3928 qla2x00_mark_all_devices_lost(vha, 0);
3929 list_for_each_entry(vp, &ha->vp_list, list)
3930 qla2x00_mark_all_devices_lost(vha, 0);
3931 } else {
3932 if (!atomic_read(&vha->loop_down_timer))
3933 atomic_set(&vha->loop_down_timer,
3934 LOOP_DOWN_TIME);
3935 }
3936 /* Wait for pending cmds to complete */
3937 qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST);
3938}
3939
Giridhar Malavalia9083012010-04-12 17:59:55 -07003940void
3941qla2x00_abort_isp_cleanup(scsi_qla_host_t *vha)
3942{
3943 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003944 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07003945 unsigned long flags;
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08003946 fc_port_t *fcport;
Giridhar Malavalia9083012010-04-12 17:59:55 -07003947
Saurav Kashyape46ef002011-02-23 15:27:16 -08003948 /* For ISP82XX, driver waits for completion of the commands.
3949 * online flag should be set.
3950 */
3951 if (!IS_QLA82XX(ha))
3952 vha->flags.online = 0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07003953 ha->flags.chip_reset_done = 0;
3954 clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
3955 ha->qla_stats.total_isp_aborts++;
3956
3957 qla_printk(KERN_INFO, ha,
3958 "Performing ISP error recovery - ha= %p.\n", ha);
3959
Saurav Kashyape46ef002011-02-23 15:27:16 -08003960 /* For ISP82XX, reset_chip is just disabling interrupts.
3961 * Driver waits for the completion of the commands.
3962 * the interrupts need to be enabled.
3963 */
Giridhar Malavalia9083012010-04-12 17:59:55 -07003964 if (!IS_QLA82XX(ha))
3965 ha->isp_ops->reset_chip(vha);
3966
3967 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
3968 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
3969 atomic_set(&vha->loop_state, LOOP_DOWN);
3970 qla2x00_mark_all_devices_lost(vha, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07003971
3972 spin_lock_irqsave(&ha->vport_slock, flags);
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003973 list_for_each_entry(vp, &ha->vp_list, list) {
Arun Easifeafb7b2010-09-03 14:57:00 -07003974 atomic_inc(&vp->vref_count);
3975 spin_unlock_irqrestore(&ha->vport_slock, flags);
3976
Giridhar Malavalia9083012010-04-12 17:59:55 -07003977 qla2x00_mark_all_devices_lost(vp, 0);
Arun Easifeafb7b2010-09-03 14:57:00 -07003978
3979 spin_lock_irqsave(&ha->vport_slock, flags);
3980 atomic_dec(&vp->vref_count);
3981 }
3982 spin_unlock_irqrestore(&ha->vport_slock, flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07003983 } else {
3984 if (!atomic_read(&vha->loop_down_timer))
3985 atomic_set(&vha->loop_down_timer,
3986 LOOP_DOWN_TIME);
3987 }
3988
Andrew Vasquez6aef87b2011-02-23 15:27:13 -08003989 /* Clear all async request states across all VPs. */
3990 list_for_each_entry(fcport, &vha->vp_fcports, list)
3991 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
3992 spin_lock_irqsave(&ha->vport_slock, flags);
3993 list_for_each_entry(vp, &ha->vp_list, list) {
3994 atomic_inc(&vp->vref_count);
3995 spin_unlock_irqrestore(&ha->vport_slock, flags);
3996
3997 list_for_each_entry(fcport, &vp->vp_fcports, list)
3998 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
3999
4000 spin_lock_irqsave(&ha->vport_slock, flags);
4001 atomic_dec(&vp->vref_count);
4002 }
4003 spin_unlock_irqrestore(&ha->vport_slock, flags);
4004
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07004005 if (!ha->flags.eeh_busy) {
4006 /* Make sure for ISP 82XX IO DMA is complete */
Saurav Kashyape46ef002011-02-23 15:27:16 -08004007 if (IS_QLA82XX(ha)) {
Giridhar Malavali71905752011-02-23 15:27:10 -08004008 qla82xx_chip_reset_cleanup(vha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004009
Saurav Kashyape46ef002011-02-23 15:27:16 -08004010 /* Done waiting for pending commands.
4011 * Reset the online flag.
4012 */
4013 vha->flags.online = 0;
4014 }
4015
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07004016 /* Requeue all commands in outstanding command list. */
4017 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
4018 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07004019}
4020
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021/*
4022* qla2x00_abort_isp
4023* Resets ISP and aborts all outstanding commands.
4024*
4025* Input:
4026* ha = adapter block pointer.
4027*
4028* Returns:
4029* 0 = success
4030*/
4031int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004032qla2x00_abort_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033{
Andrew Vasquez476e8972006-08-23 14:54:55 -07004034 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 uint8_t status = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004036 struct qla_hw_data *ha = vha->hw;
4037 struct scsi_qla_host *vp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004038 struct req_que *req = ha->req_q_map[0];
Arun Easifeafb7b2010-09-03 14:57:00 -07004039 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004041 if (vha->flags.online) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07004042 qla2x00_abort_isp_cleanup(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Andrew Vasquez85880802009-12-15 21:29:46 -08004044 if (unlikely(pci_channel_offline(ha->pdev) &&
4045 ha->flags.pci_channel_io_perm_failure)) {
4046 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
4047 status = 0;
4048 return status;
4049 }
4050
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004051 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -08004052
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004053 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004055 if (!qla2x00_restart_isp(vha)) {
4056 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004058 if (!atomic_read(&vha->loop_down_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 /*
4060 * Issue marker command only when we are going
4061 * to start the I/O .
4062 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004063 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 }
4065
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004066 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004068 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004070 ha->isp_abort_cnt = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004071 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Andrew Vasquez476e8972006-08-23 14:54:55 -07004072
Lalit Chandivade29c53972009-10-13 15:16:47 -07004073 if (IS_QLA81XX(ha))
4074 qla2x00_get_fw_version(vha,
4075 &ha->fw_major_version,
4076 &ha->fw_minor_version,
4077 &ha->fw_subminor_version,
4078 &ha->fw_attributes, &ha->fw_memory_size,
4079 ha->mpi_version, &ha->mpi_capabilities,
4080 ha->phy_version);
4081
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004082 if (ha->fce) {
4083 ha->flags.fce_enabled = 1;
4084 memset(ha->fce, 0,
4085 fce_calc_size(ha->fce_bufs));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004086 rval = qla2x00_enable_fce_trace(vha,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08004087 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
4088 &ha->fce_bufs);
4089 if (rval) {
4090 qla_printk(KERN_WARNING, ha,
4091 "Unable to reinitialize FCE "
4092 "(%d).\n", rval);
4093 ha->flags.fce_enabled = 0;
4094 }
4095 }
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004096
4097 if (ha->eft) {
4098 memset(ha->eft, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004099 rval = qla2x00_enable_eft_trace(vha,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07004100 ha->eft_dma, EFT_NUM_BUFFERS);
4101 if (rval) {
4102 qla_printk(KERN_WARNING, ha,
4103 "Unable to reinitialize EFT "
4104 "(%d).\n", rval);
4105 }
4106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 } else { /* failed the ISP abort */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004108 vha->flags.online = 1;
4109 if (test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 if (ha->isp_abort_cnt == 0) {
4111 qla_printk(KERN_WARNING, ha,
4112 "ISP error recovery failed - "
4113 "board disabled\n");
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004114 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 * The next call disables the board
4116 * completely.
4117 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004118 ha->isp_ops->reset_adapter(vha);
4119 vha->flags.online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 clear_bit(ISP_ABORT_RETRY,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004121 &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 status = 0;
4123 } else { /* schedule another ISP abort */
4124 ha->isp_abort_cnt--;
4125 DEBUG(printk("qla%ld: ISP abort - "
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004126 "retry remaining %d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004127 vha->host_no, ha->isp_abort_cnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 status = 1;
4129 }
4130 } else {
4131 ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
4132 DEBUG(printk("qla2x00(%ld): ISP error recovery "
4133 "- retrying (%d) more times\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004134 vha->host_no, ha->isp_abort_cnt));
4135 set_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 status = 1;
4137 }
4138 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004139
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 }
4141
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004142 if (!status) {
4143 DEBUG(printk(KERN_INFO
4144 "qla2x00_abort_isp(%ld): succeeded.\n",
4145 vha->host_no));
Arun Easifeafb7b2010-09-03 14:57:00 -07004146
4147 spin_lock_irqsave(&ha->vport_slock, flags);
4148 list_for_each_entry(vp, &ha->vp_list, list) {
4149 if (vp->vp_idx) {
4150 atomic_inc(&vp->vref_count);
4151 spin_unlock_irqrestore(&ha->vport_slock, flags);
4152
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004153 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07004154
4155 spin_lock_irqsave(&ha->vport_slock, flags);
4156 atomic_dec(&vp->vref_count);
4157 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004158 }
Arun Easifeafb7b2010-09-03 14:57:00 -07004159 spin_unlock_irqrestore(&ha->vport_slock, flags);
4160
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004161 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 qla_printk(KERN_INFO, ha,
4163 "qla2x00_abort_isp: **** FAILED ****\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 }
4165
4166 return(status);
4167}
4168
4169/*
4170* qla2x00_restart_isp
4171* restarts the ISP after a reset
4172*
4173* Input:
4174* ha = adapter block pointer.
4175*
4176* Returns:
4177* 0 = success
4178*/
4179static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004180qla2x00_restart_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181{
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08004182 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 uint32_t wait_time;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004184 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004185 struct req_que *req = ha->req_q_map[0];
4186 struct rsp_que *rsp = ha->rsp_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187
4188 /* If firmware needs to be loaded */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004189 if (qla2x00_isp_firmware(vha)) {
4190 vha->flags.online = 0;
4191 status = ha->isp_ops->chip_diag(vha);
4192 if (!status)
4193 status = qla2x00_setup_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 }
4195
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004196 if (!status && !(status = qla2x00_init_rings(vha))) {
4197 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -07004198 ha->flags.chip_reset_done = 1;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004199 /* Initialize the queues in use */
4200 qla25xx_init_queues(ha);
4201
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004202 status = qla2x00_fw_ready(vha);
4203 if (!status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 DEBUG(printk("%s(): Start configure loop, "
Andrew Vasquez744f11fd2006-06-23 16:11:05 -07004205 "status = %d\n", __func__, status));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004206
4207 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004208 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004209
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004210 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 /* Wait at most MAX_TARGET RSCNs for a stable link. */
4212 wait_time = 256;
4213 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004214 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4215 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004217 } while (!atomic_read(&vha->loop_down_timer) &&
4218 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
4219 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
4220 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 }
4222
4223 /* if no cable then assume it's good */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004224 if ((vha->device_flags & DFLG_NO_CABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 status = 0;
4226
4227 DEBUG(printk("%s(): Configure loop done, status = 0x%x\n",
4228 __func__,
Andrew Vasquez744f11fd2006-06-23 16:11:05 -07004229 status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 }
4231 return (status);
4232}
4233
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004234static int
4235qla25xx_init_queues(struct qla_hw_data *ha)
4236{
4237 struct rsp_que *rsp = NULL;
4238 struct req_que *req = NULL;
4239 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
4240 int ret = -1;
4241 int i;
4242
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004243 for (i = 1; i < ha->max_rsp_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004244 rsp = ha->rsp_q_map[i];
4245 if (rsp) {
4246 rsp->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004247 ret = qla25xx_init_rsp_que(base_vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004248 if (ret != QLA_SUCCESS)
4249 DEBUG2_17(printk(KERN_WARNING
4250 "%s Rsp que:%d init failed\n", __func__,
4251 rsp->id));
4252 else
4253 DEBUG2_17(printk(KERN_INFO
4254 "%s Rsp que:%d inited\n", __func__,
4255 rsp->id));
4256 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004257 }
4258 for (i = 1; i < ha->max_req_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004259 req = ha->req_q_map[i];
4260 if (req) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08004261 /* Clear outstanding commands array. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004262 req->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004263 ret = qla25xx_init_req_que(base_vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004264 if (ret != QLA_SUCCESS)
4265 DEBUG2_17(printk(KERN_WARNING
4266 "%s Req que:%d init failed\n", __func__,
4267 req->id));
4268 else
4269 DEBUG2_17(printk(KERN_WARNING
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08004270 "%s Req que:%d inited\n", __func__,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004271 req->id));
4272 }
4273 }
4274 return ret;
4275}
4276
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277/*
4278* qla2x00_reset_adapter
4279* Reset adapter.
4280*
4281* Input:
4282* ha = adapter block pointer.
4283*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07004284void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004285qla2x00_reset_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286{
4287 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004288 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07004289 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004291 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004292 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 spin_lock_irqsave(&ha->hardware_lock, flags);
4295 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
4296 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4297 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
4298 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4299 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4300}
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004301
4302void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004303qla24xx_reset_adapter(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004304{
4305 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004306 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004307 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
4308
Giridhar Malavalia9083012010-04-12 17:59:55 -07004309 if (IS_QLA82XX(ha))
4310 return;
4311
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004312 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004313 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004314
4315 spin_lock_irqsave(&ha->hardware_lock, flags);
4316 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
4317 RD_REG_DWORD(&reg->hccr);
4318 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
4319 RD_REG_DWORD(&reg->hccr);
4320 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez09ff36d2009-01-22 09:45:30 -08004321
4322 if (IS_NOPOLLING_TYPE(ha))
4323 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004324}
4325
David Miller4e08df32007-04-16 12:37:43 -07004326/* On sparc systems, obtain port and node WWN from firmware
4327 * properties.
4328 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004329static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t *vha,
4330 struct nvram_24xx *nv)
David Miller4e08df32007-04-16 12:37:43 -07004331{
4332#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004333 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07004334 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07004335 struct device_node *dp = pci_device_to_OF_node(pdev);
4336 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07004337 int len;
4338
4339 val = of_get_property(dp, "port-wwn", &len);
4340 if (val && len >= WWN_SIZE)
4341 memcpy(nv->port_name, val, WWN_SIZE);
4342
4343 val = of_get_property(dp, "node-wwn", &len);
4344 if (val && len >= WWN_SIZE)
4345 memcpy(nv->node_name, val, WWN_SIZE);
4346#endif
4347}
4348
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004349int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004350qla24xx_nvram_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004351{
David Miller4e08df32007-04-16 12:37:43 -07004352 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004353 struct init_cb_24xx *icb;
4354 struct nvram_24xx *nv;
4355 uint32_t *dptr;
4356 uint8_t *dptr1, *dptr2;
4357 uint32_t chksum;
4358 uint16_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004359 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004360
David Miller4e08df32007-04-16 12:37:43 -07004361 rval = QLA_SUCCESS;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004362 icb = (struct init_cb_24xx *)ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07004363 nv = ha->nvram;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004364
4365 /* Determine NVRAM starting address. */
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004366 if (ha->flags.port0) {
4367 ha->nvram_base = FA_NVRAM_FUNC0_ADDR;
4368 ha->vpd_base = FA_NVRAM_VPD0_ADDR;
4369 } else {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004370 ha->nvram_base = FA_NVRAM_FUNC1_ADDR;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -08004371 ha->vpd_base = FA_NVRAM_VPD1_ADDR;
4372 }
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004373 ha->nvram_size = sizeof(struct nvram_24xx);
4374 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004375 if (IS_QLA82XX(ha))
4376 ha->vpd_size = FA_VPD_SIZE_82XX;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004377
Seokmann Ju281afe12007-07-26 13:43:34 -07004378 /* Get VPD data into cache */
4379 ha->vpd = ha->nvram + VPD_OFFSET;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004380 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd,
Seokmann Ju281afe12007-07-26 13:43:34 -07004381 ha->nvram_base - FA_NVRAM_FUNC0_ADDR, FA_NVRAM_VPD_SIZE * 4);
4382
4383 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004384 dptr = (uint32_t *)nv;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004385 ha->isp_ops->read_nvram(vha, (uint8_t *)dptr, ha->nvram_base,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004386 ha->nvram_size);
4387 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
4388 chksum += le32_to_cpu(*dptr++);
4389
Andrew Vasquez76403352009-04-06 22:33:39 -07004390 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Seokmann Ju281afe12007-07-26 13:43:34 -07004391 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004392
4393 /* Bad NVRAM data, set defaults parameters. */
4394 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
4395 || nv->id[3] != ' ' ||
4396 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
4397 /* Reset NVRAM data. */
4398 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
4399 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
4400 le16_to_cpu(nv->nvram_version));
David Miller4e08df32007-04-16 12:37:43 -07004401 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
4402 "invalid -- WWPN) defaults.\n");
4403
4404 /*
4405 * Set default initialization control block.
4406 */
4407 memset(nv, 0, ha->nvram_size);
4408 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
4409 nv->version = __constant_cpu_to_le16(ICB_VERSION);
4410 nv->frame_payload_size = __constant_cpu_to_le16(2048);
4411 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4412 nv->exchange_count = __constant_cpu_to_le16(0);
4413 nv->hard_address = __constant_cpu_to_le16(124);
4414 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004415 nv->port_name[1] = 0x00 + ha->port_no;
David Miller4e08df32007-04-16 12:37:43 -07004416 nv->port_name[2] = 0x00;
4417 nv->port_name[3] = 0xe0;
4418 nv->port_name[4] = 0x8b;
4419 nv->port_name[5] = 0x1c;
4420 nv->port_name[6] = 0x55;
4421 nv->port_name[7] = 0x86;
4422 nv->node_name[0] = 0x20;
4423 nv->node_name[1] = 0x00;
4424 nv->node_name[2] = 0x00;
4425 nv->node_name[3] = 0xe0;
4426 nv->node_name[4] = 0x8b;
4427 nv->node_name[5] = 0x1c;
4428 nv->node_name[6] = 0x55;
4429 nv->node_name[7] = 0x86;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004430 qla24xx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07004431 nv->login_retry_count = __constant_cpu_to_le16(8);
4432 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
4433 nv->login_timeout = __constant_cpu_to_le16(0);
4434 nv->firmware_options_1 =
4435 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
4436 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
4437 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
4438 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
4439 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
4440 nv->efi_parameters = __constant_cpu_to_le32(0);
4441 nv->reset_delay = 5;
4442 nv->max_luns_per_target = __constant_cpu_to_le16(128);
4443 nv->port_down_retry_count = __constant_cpu_to_le16(30);
4444 nv->link_down_timeout = __constant_cpu_to_le16(30);
4445
4446 rval = 1;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004447 }
4448
4449 /* Reset Initialization control block */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004450 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004451
4452 /* Copy 1st segment. */
4453 dptr1 = (uint8_t *)icb;
4454 dptr2 = (uint8_t *)&nv->version;
4455 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
4456 while (cnt--)
4457 *dptr1++ = *dptr2++;
4458
4459 icb->login_retry_count = nv->login_retry_count;
Andrew Vasquez3ea66e22006-06-23 16:11:27 -07004460 icb->link_down_on_nos = nv->link_down_on_nos;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004461
4462 /* Copy 2nd segment. */
4463 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
4464 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
4465 cnt = (uint8_t *)&icb->reserved_3 -
4466 (uint8_t *)&icb->interrupt_delay_timer;
4467 while (cnt--)
4468 *dptr1++ = *dptr2++;
4469
4470 /*
4471 * Setup driver NVRAM options.
4472 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004473 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08004474 "QLA2462");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004475
Andrew Vasquez5341e862006-05-17 15:09:16 -07004476 /* Use alternate WWN? */
4477 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
4478 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
4479 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
4480 }
4481
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004482 /* Prepare nodename */
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004483 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004484 /*
4485 * Firmware will apply the following mask if the nodename was
4486 * not provided.
4487 */
4488 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
4489 icb->node_name[0] &= 0xF0;
4490 }
4491
4492 /* Set host adapter parameters. */
4493 ha->flags.disable_risc_code_load = 0;
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08004494 ha->flags.enable_lip_reset = 0;
4495 ha->flags.enable_lip_full_login =
4496 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
4497 ha->flags.enable_target_reset =
4498 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004499 ha->flags.enable_led_scheme = 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07004500 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004501
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004502 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
4503 (BIT_6 | BIT_5 | BIT_4)) >> 4;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004504
4505 memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
4506 sizeof(ha->fw_seriallink_options24));
4507
4508 /* save HBA serial number */
4509 ha->serial0 = icb->port_name[5];
4510 ha->serial1 = icb->port_name[6];
4511 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004512 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
4513 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004514
andrew.vasquez@qlogic.combc8fb3c2006-01-13 17:05:42 -08004515 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4516
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004517 ha->retry_count = le16_to_cpu(nv->login_retry_count);
4518
4519 /* Set minimum login_timeout to 4 seconds. */
4520 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
4521 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
4522 if (le16_to_cpu(nv->login_timeout) < 4)
4523 nv->login_timeout = __constant_cpu_to_le16(4);
4524 ha->login_timeout = le16_to_cpu(nv->login_timeout);
Seokmann Juc6852c42008-04-24 15:21:29 -07004525 icb->login_timeout = nv->login_timeout;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004526
Andrew Vasquez00a537b2008-02-28 14:06:11 -08004527 /* Set minimum RATOV to 100 tenths of a second. */
4528 ha->r_a_tov = 100;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004529
4530 ha->loop_reset_delay = nv->reset_delay;
4531
4532 /* Link Down Timeout = 0:
4533 *
4534 * When Port Down timer expires we will start returning
4535 * I/O's to OS with "DID_NO_CONNECT".
4536 *
4537 * Link Down Timeout != 0:
4538 *
4539 * The driver waits for the link to come up after link down
4540 * before returning I/Os to OS with "DID_NO_CONNECT".
4541 */
4542 if (le16_to_cpu(nv->link_down_timeout) == 0) {
4543 ha->loop_down_abort_time =
4544 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
4545 } else {
4546 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
4547 ha->loop_down_abort_time =
4548 (LOOP_DOWN_TIME - ha->link_down_timeout);
4549 }
4550
4551 /* Need enough time to try and get the port back. */
4552 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
4553 if (qlport_down_retry)
4554 ha->port_down_retry_count = qlport_down_retry;
4555
4556 /* Set login_retry_count */
4557 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
4558 if (ha->port_down_retry_count ==
4559 le16_to_cpu(nv->port_down_retry_count) &&
4560 ha->port_down_retry_count > 3)
4561 ha->login_retry_count = ha->port_down_retry_count;
4562 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
4563 ha->login_retry_count = ha->port_down_retry_count;
4564 if (ql2xloginretrycount)
4565 ha->login_retry_count = ql2xloginretrycount;
4566
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004567 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004568 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004569 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
4570 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
4571 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
4572 le16_to_cpu(icb->interrupt_delay_timer): 2;
4573 }
4574 icb->firmware_options_2 &= __constant_cpu_to_le32(
4575 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004576 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004577 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08004578 ha->zio_mode = QLA_ZIO_MODE_6;
4579
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004580 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer delay "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004581 "(%d us).\n", vha->host_no, ha->zio_mode,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004582 ha->zio_timer * 100));
4583 qla_printk(KERN_INFO, ha,
4584 "ZIO mode %d enabled; timer delay (%d us).\n",
4585 ha->zio_mode, ha->zio_timer * 100);
4586
4587 icb->firmware_options_2 |= cpu_to_le32(
4588 (uint32_t)ha->zio_mode);
4589 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004590 vha->flags.process_response_queue = 1;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004591 }
4592
David Miller4e08df32007-04-16 12:37:43 -07004593 if (rval) {
4594 DEBUG2_3(printk(KERN_WARNING
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004595 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
David Miller4e08df32007-04-16 12:37:43 -07004596 }
4597 return (rval);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004598}
4599
Adrian Bunk413975a2006-06-30 02:33:06 -07004600static int
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004601qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
4602 uint32_t faddr)
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004603{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004604 int rval = QLA_SUCCESS;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004605 int segments, fragment;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004606 uint32_t *dcode, dlen;
4607 uint32_t risc_addr;
4608 uint32_t risc_size;
4609 uint32_t i;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004610 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004611 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004612
4613 qla_printk(KERN_INFO, ha,
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004614 "FW: Loading from flash (%x)...\n", faddr);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004615
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004616 rval = QLA_SUCCESS;
4617
4618 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004619 dcode = (uint32_t *)req->ring;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004620 *srisc_addr = 0;
4621
4622 /* Validate firmware image by checking version. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004623 qla24xx_read_flash_data(vha, dcode, faddr + 4, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004624 for (i = 0; i < 4; i++)
4625 dcode[i] = be32_to_cpu(dcode[i]);
4626 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
4627 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
4628 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
4629 dcode[3] == 0)) {
4630 qla_printk(KERN_WARNING, ha,
4631 "Unable to verify integrity of flash firmware image!\n");
4632 qla_printk(KERN_WARNING, ha,
4633 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
4634 dcode[1], dcode[2], dcode[3]);
4635
4636 return QLA_FUNCTION_FAILED;
4637 }
4638
4639 while (segments && rval == QLA_SUCCESS) {
4640 /* Read segment's load information. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004641 qla24xx_read_flash_data(vha, dcode, faddr, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004642
4643 risc_addr = be32_to_cpu(dcode[2]);
4644 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
4645 risc_size = be32_to_cpu(dcode[3]);
4646
4647 fragment = 0;
4648 while (risc_size > 0 && rval == QLA_SUCCESS) {
4649 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
4650 if (dlen > risc_size)
4651 dlen = risc_size;
4652
4653 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
4654 "addr %x, number of dwords 0x%x, offset 0x%x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004655 vha->host_no, risc_addr, dlen, faddr));
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004656
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004657 qla24xx_read_flash_data(vha, dcode, faddr, dlen);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004658 for (i = 0; i < dlen; i++)
4659 dcode[i] = swab32(dcode[i]);
4660
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004661 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004662 dlen);
4663 if (rval) {
4664 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004665 "segment %d of firmware\n", vha->host_no,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004666 fragment));
4667 qla_printk(KERN_WARNING, ha,
4668 "[ERROR] Failed to load segment %d of "
4669 "firmware\n", fragment);
4670 break;
4671 }
4672
4673 faddr += dlen;
4674 risc_addr += dlen;
4675 risc_size -= dlen;
4676 fragment++;
4677 }
4678
4679 /* Next segment. */
4680 segments--;
4681 }
4682
4683 return rval;
4684}
4685
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004686#define QLA_FW_URL "ftp://ftp.qlogic.com/outgoing/linux/firmware/"
4687
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004688int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004689qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez54333832005-11-09 15:49:04 -08004690{
4691 int rval;
4692 int i, fragment;
4693 uint16_t *wcode, *fwcode;
4694 uint32_t risc_addr, risc_size, fwclen, wlen, *seg;
4695 struct fw_blob *blob;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004696 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004697 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez54333832005-11-09 15:49:04 -08004698
4699 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004700 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08004701 if (!blob) {
4702 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004703 qla_printk(KERN_ERR, ha, "Firmware images can be retrieved "
4704 "from: " QLA_FW_URL ".\n");
Andrew Vasquez54333832005-11-09 15:49:04 -08004705 return QLA_FUNCTION_FAILED;
4706 }
4707
4708 rval = QLA_SUCCESS;
4709
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004710 wcode = (uint16_t *)req->ring;
Andrew Vasquez54333832005-11-09 15:49:04 -08004711 *srisc_addr = 0;
4712 fwcode = (uint16_t *)blob->fw->data;
4713 fwclen = 0;
4714
4715 /* Validate firmware image by checking version. */
4716 if (blob->fw->size < 8 * sizeof(uint16_t)) {
4717 qla_printk(KERN_WARNING, ha,
4718 "Unable to verify integrity of firmware image (%Zd)!\n",
4719 blob->fw->size);
4720 goto fail_fw_integrity;
4721 }
4722 for (i = 0; i < 4; i++)
4723 wcode[i] = be16_to_cpu(fwcode[i + 4]);
4724 if ((wcode[0] == 0xffff && wcode[1] == 0xffff && wcode[2] == 0xffff &&
4725 wcode[3] == 0xffff) || (wcode[0] == 0 && wcode[1] == 0 &&
4726 wcode[2] == 0 && wcode[3] == 0)) {
4727 qla_printk(KERN_WARNING, ha,
4728 "Unable to verify integrity of firmware image!\n");
4729 qla_printk(KERN_WARNING, ha,
4730 "Firmware data: %04x %04x %04x %04x!\n", wcode[0],
4731 wcode[1], wcode[2], wcode[3]);
4732 goto fail_fw_integrity;
4733 }
4734
4735 seg = blob->segs;
4736 while (*seg && rval == QLA_SUCCESS) {
4737 risc_addr = *seg;
4738 *srisc_addr = *srisc_addr == 0 ? *seg : *srisc_addr;
4739 risc_size = be16_to_cpu(fwcode[3]);
4740
4741 /* Validate firmware image size. */
4742 fwclen += risc_size * sizeof(uint16_t);
4743 if (blob->fw->size < fwclen) {
4744 qla_printk(KERN_WARNING, ha,
4745 "Unable to verify integrity of firmware image "
4746 "(%Zd)!\n", blob->fw->size);
4747 goto fail_fw_integrity;
4748 }
4749
4750 fragment = 0;
4751 while (risc_size > 0 && rval == QLA_SUCCESS) {
4752 wlen = (uint16_t)(ha->fw_transfer_size >> 1);
4753 if (wlen > risc_size)
4754 wlen = risc_size;
4755
4756 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004757 "addr %x, number of words 0x%x.\n", vha->host_no,
Andrew Vasquez54333832005-11-09 15:49:04 -08004758 risc_addr, wlen));
4759
4760 for (i = 0; i < wlen; i++)
4761 wcode[i] = swab16(fwcode[i]);
4762
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004763 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquez54333832005-11-09 15:49:04 -08004764 wlen);
4765 if (rval) {
4766 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004767 "segment %d of firmware\n", vha->host_no,
Andrew Vasquez54333832005-11-09 15:49:04 -08004768 fragment));
4769 qla_printk(KERN_WARNING, ha,
4770 "[ERROR] Failed to load segment %d of "
4771 "firmware\n", fragment);
4772 break;
4773 }
4774
4775 fwcode += wlen;
4776 risc_addr += wlen;
4777 risc_size -= wlen;
4778 fragment++;
4779 }
4780
4781 /* Next segment. */
4782 seg++;
4783 }
4784 return rval;
4785
4786fail_fw_integrity:
4787 return QLA_FUNCTION_FAILED;
4788}
4789
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004790static int
4791qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004792{
4793 int rval;
4794 int segments, fragment;
4795 uint32_t *dcode, dlen;
4796 uint32_t risc_addr;
4797 uint32_t risc_size;
4798 uint32_t i;
Andrew Vasquez54333832005-11-09 15:49:04 -08004799 struct fw_blob *blob;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004800 uint32_t *fwcode, fwclen;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004801 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004802 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004803
Andrew Vasquez54333832005-11-09 15:49:04 -08004804 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004805 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08004806 if (!blob) {
4807 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004808 qla_printk(KERN_ERR, ha, "Firmware images can be retrieved "
4809 "from: " QLA_FW_URL ".\n");
4810
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004811 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004812 }
4813
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004814 qla_printk(KERN_INFO, ha,
4815 "FW: Loading via request-firmware...\n");
4816
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004817 rval = QLA_SUCCESS;
4818
4819 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004820 dcode = (uint32_t *)req->ring;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004821 *srisc_addr = 0;
Andrew Vasquez54333832005-11-09 15:49:04 -08004822 fwcode = (uint32_t *)blob->fw->data;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004823 fwclen = 0;
4824
4825 /* Validate firmware image by checking version. */
Andrew Vasquez54333832005-11-09 15:49:04 -08004826 if (blob->fw->size < 8 * sizeof(uint32_t)) {
Andrew Vasquez0107109e2005-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 (%Zd)!\n",
4829 blob->fw->size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004830 goto fail_fw_integrity;
4831 }
4832 for (i = 0; i < 4; i++)
4833 dcode[i] = be32_to_cpu(fwcode[i + 4]);
4834 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
4835 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
4836 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
4837 dcode[3] == 0)) {
4838 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004839 "Unable to verify integrity of firmware image!\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004840 qla_printk(KERN_WARNING, ha,
4841 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
4842 dcode[1], dcode[2], dcode[3]);
4843 goto fail_fw_integrity;
4844 }
4845
4846 while (segments && rval == QLA_SUCCESS) {
4847 risc_addr = be32_to_cpu(fwcode[2]);
4848 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
4849 risc_size = be32_to_cpu(fwcode[3]);
4850
4851 /* Validate firmware image size. */
4852 fwclen += risc_size * sizeof(uint32_t);
Andrew Vasquez54333832005-11-09 15:49:04 -08004853 if (blob->fw->size < fwclen) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004854 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004855 "Unable to verify integrity of firmware image "
4856 "(%Zd)!\n", blob->fw->size);
4857
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004858 goto fail_fw_integrity;
4859 }
4860
4861 fragment = 0;
4862 while (risc_size > 0 && rval == QLA_SUCCESS) {
4863 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
4864 if (dlen > risc_size)
4865 dlen = risc_size;
4866
4867 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004868 "addr %x, number of dwords 0x%x.\n", vha->host_no,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004869 risc_addr, dlen));
4870
4871 for (i = 0; i < dlen; i++)
4872 dcode[i] = swab32(fwcode[i]);
4873
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004874 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
andrew.vasquez@qlogic.com590f98e2006-01-13 17:05:37 -08004875 dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004876 if (rval) {
4877 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004878 "segment %d of firmware\n", vha->host_no,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004879 fragment));
4880 qla_printk(KERN_WARNING, ha,
4881 "[ERROR] Failed to load segment %d of "
4882 "firmware\n", fragment);
4883 break;
4884 }
4885
4886 fwcode += dlen;
4887 risc_addr += dlen;
4888 risc_size -= dlen;
4889 fragment++;
4890 }
4891
4892 /* Next segment. */
4893 segments--;
4894 }
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004895 return rval;
4896
4897fail_fw_integrity:
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004898 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004899}
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004900
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004901int
4902qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
4903{
4904 int rval;
4905
Andrew Vasqueze337d902009-04-06 22:33:49 -07004906 if (ql2xfwloadbin == 1)
4907 return qla81xx_load_risc(vha, srisc_addr);
4908
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004909 /*
4910 * FW Load priority:
4911 * 1) Firmware via request-firmware interface (.bin file).
4912 * 2) Firmware residing in flash.
4913 */
4914 rval = qla24xx_load_risc_blob(vha, srisc_addr);
4915 if (rval == QLA_SUCCESS)
4916 return rval;
4917
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004918 return qla24xx_load_risc_flash(vha, srisc_addr,
4919 vha->hw->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004920}
4921
4922int
4923qla81xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
4924{
4925 int rval;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004926 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004927
Andrew Vasqueze337d902009-04-06 22:33:49 -07004928 if (ql2xfwloadbin == 2)
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004929 goto try_blob_fw;
Andrew Vasqueze337d902009-04-06 22:33:49 -07004930
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004931 /*
4932 * FW Load priority:
4933 * 1) Firmware residing in flash.
4934 * 2) Firmware via request-firmware interface (.bin file).
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004935 * 3) Golden-Firmware residing in flash -- limited operation.
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004936 */
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004937 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004938 if (rval == QLA_SUCCESS)
4939 return rval;
4940
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004941try_blob_fw:
4942 rval = qla24xx_load_risc_blob(vha, srisc_addr);
4943 if (rval == QLA_SUCCESS || !ha->flt_region_gold_fw)
4944 return rval;
4945
4946 qla_printk(KERN_ERR, ha,
4947 "FW: Attempting to fallback to golden firmware...\n");
4948 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_gold_fw);
4949 if (rval != QLA_SUCCESS)
4950 return rval;
4951
4952 qla_printk(KERN_ERR, ha,
4953 "FW: Please update operational firmware...\n");
4954 ha->flags.running_gold_fw = 1;
4955
4956 return rval;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004957}
4958
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004959void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004960qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004961{
4962 int ret, retries;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004963 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004964
Andrew Vasquez85880802009-12-15 21:29:46 -08004965 if (ha->flags.pci_channel_io_perm_failure)
4966 return;
Andrew Vasqueze4289242007-07-19 15:05:56 -07004967 if (!IS_FWI2_CAPABLE(ha))
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004968 return;
Andrew Vasquez75edf812007-05-07 07:43:00 -07004969 if (!ha->fw_major_version)
4970 return;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004971
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004972 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez7c7f1f22008-02-28 14:06:09 -08004973 for (retries = 5; ret != QLA_SUCCESS && ret != QLA_FUNCTION_TIMEOUT &&
Andrew Vasquezb469a7c2009-04-06 22:33:48 -07004974 ret != QLA_INVALID_COMMAND && retries ; retries--) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004975 ha->isp_ops->reset_chip(vha);
4976 if (ha->isp_ops->chip_diag(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004977 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004978 if (qla2x00_setup_chip(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004979 continue;
4980 qla_printk(KERN_INFO, ha,
4981 "Attempting retry of stop-firmware command...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004982 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004983 }
4984}
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004985
4986int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004987qla24xx_configure_vhba(scsi_qla_host_t *vha)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004988{
4989 int rval = QLA_SUCCESS;
4990 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004991 struct qla_hw_data *ha = vha->hw;
4992 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07004993 struct req_que *req;
4994 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004995
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004996 if (!vha->vp_idx)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004997 return -EINVAL;
4998
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004999 rval = qla2x00_fw_ready(base_vha);
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07005000 if (ha->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07005001 req = ha->req_q_map[0];
5002 else
5003 req = vha->req;
5004 rsp = req->rsp;
5005
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005006 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005007 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08005008 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005009 }
5010
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005011 vha->flags.management_server_logged_in = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005012
5013 /* Login to SNS first */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005014 ha->isp_ops->fabric_login(vha, NPH_SNS, 0xff, 0xff, 0xfc, mb, BIT_1);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005015 if (mb[0] != MBS_COMMAND_COMPLETE) {
5016 DEBUG15(qla_printk(KERN_INFO, ha,
5017 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
5018 "mb[2]=%x mb[6]=%x mb[7]=%x\n", NPH_SNS,
5019 mb[0], mb[1], mb[2], mb[6], mb[7]));
5020 return (QLA_FUNCTION_FAILED);
5021 }
5022
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005023 atomic_set(&vha->loop_down_timer, 0);
5024 atomic_set(&vha->loop_state, LOOP_UP);
5025 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5026 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
5027 rval = qla2x00_loop_resync(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07005028
5029 return rval;
5030}
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005031
5032/* 84XX Support **************************************************************/
5033
5034static LIST_HEAD(qla_cs84xx_list);
5035static DEFINE_MUTEX(qla_cs84xx_mutex);
5036
5037static struct qla_chip_state_84xx *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005038qla84xx_get_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005039{
5040 struct qla_chip_state_84xx *cs84xx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005041 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005042
5043 mutex_lock(&qla_cs84xx_mutex);
5044
5045 /* Find any shared 84xx chip. */
5046 list_for_each_entry(cs84xx, &qla_cs84xx_list, list) {
5047 if (cs84xx->bus == ha->pdev->bus) {
5048 kref_get(&cs84xx->kref);
5049 goto done;
5050 }
5051 }
5052
5053 cs84xx = kzalloc(sizeof(*cs84xx), GFP_KERNEL);
5054 if (!cs84xx)
5055 goto done;
5056
5057 kref_init(&cs84xx->kref);
5058 spin_lock_init(&cs84xx->access_lock);
5059 mutex_init(&cs84xx->fw_update_mutex);
5060 cs84xx->bus = ha->pdev->bus;
5061
5062 list_add_tail(&cs84xx->list, &qla_cs84xx_list);
5063done:
5064 mutex_unlock(&qla_cs84xx_mutex);
5065 return cs84xx;
5066}
5067
5068static void
5069__qla84xx_chip_release(struct kref *kref)
5070{
5071 struct qla_chip_state_84xx *cs84xx =
5072 container_of(kref, struct qla_chip_state_84xx, kref);
5073
5074 mutex_lock(&qla_cs84xx_mutex);
5075 list_del(&cs84xx->list);
5076 mutex_unlock(&qla_cs84xx_mutex);
5077 kfree(cs84xx);
5078}
5079
5080void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005081qla84xx_put_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005082{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005083 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005084 if (ha->cs84xx)
5085 kref_put(&ha->cs84xx->kref, __qla84xx_chip_release);
5086}
5087
5088static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005089qla84xx_init_chip(scsi_qla_host_t *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005090{
5091 int rval;
5092 uint16_t status[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005093 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005094
5095 mutex_lock(&ha->cs84xx->fw_update_mutex);
5096
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08005097 rval = qla84xx_verify_chip(vha, status);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07005098
5099 mutex_unlock(&ha->cs84xx->fw_update_mutex);
5100
5101 return rval != QLA_SUCCESS || status[0] ? QLA_FUNCTION_FAILED:
5102 QLA_SUCCESS;
5103}
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005104
5105/* 81XX Support **************************************************************/
5106
5107int
5108qla81xx_nvram_config(scsi_qla_host_t *vha)
5109{
5110 int rval;
5111 struct init_cb_81xx *icb;
5112 struct nvram_81xx *nv;
5113 uint32_t *dptr;
5114 uint8_t *dptr1, *dptr2;
5115 uint32_t chksum;
5116 uint16_t cnt;
5117 struct qla_hw_data *ha = vha->hw;
5118
5119 rval = QLA_SUCCESS;
5120 icb = (struct init_cb_81xx *)ha->init_cb;
5121 nv = ha->nvram;
5122
5123 /* Determine NVRAM starting address. */
5124 ha->nvram_size = sizeof(struct nvram_81xx);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005125 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005126
5127 /* Get VPD data into cache */
5128 ha->vpd = ha->nvram + VPD_OFFSET;
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005129 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
5130 ha->vpd_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005131
5132 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005133 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005134 ha->nvram_size);
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07005135 dptr = (uint32_t *)nv;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005136 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
5137 chksum += le32_to_cpu(*dptr++);
5138
Andrew Vasquez76403352009-04-06 22:33:39 -07005139 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005140 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
5141
5142 /* Bad NVRAM data, set defaults parameters. */
5143 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
5144 || nv->id[3] != ' ' ||
5145 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
5146 /* Reset NVRAM data. */
5147 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
5148 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
5149 le16_to_cpu(nv->nvram_version));
5150 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
5151 "invalid -- WWPN) defaults.\n");
5152
5153 /*
5154 * Set default initialization control block.
5155 */
5156 memset(nv, 0, ha->nvram_size);
5157 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
5158 nv->version = __constant_cpu_to_le16(ICB_VERSION);
5159 nv->frame_payload_size = __constant_cpu_to_le16(2048);
5160 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5161 nv->exchange_count = __constant_cpu_to_le16(0);
5162 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005163 nv->port_name[1] = 0x00 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005164 nv->port_name[2] = 0x00;
5165 nv->port_name[3] = 0xe0;
5166 nv->port_name[4] = 0x8b;
5167 nv->port_name[5] = 0x1c;
5168 nv->port_name[6] = 0x55;
5169 nv->port_name[7] = 0x86;
5170 nv->node_name[0] = 0x20;
5171 nv->node_name[1] = 0x00;
5172 nv->node_name[2] = 0x00;
5173 nv->node_name[3] = 0xe0;
5174 nv->node_name[4] = 0x8b;
5175 nv->node_name[5] = 0x1c;
5176 nv->node_name[6] = 0x55;
5177 nv->node_name[7] = 0x86;
5178 nv->login_retry_count = __constant_cpu_to_le16(8);
5179 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
5180 nv->login_timeout = __constant_cpu_to_le16(0);
5181 nv->firmware_options_1 =
5182 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
5183 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
5184 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
5185 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
5186 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
5187 nv->efi_parameters = __constant_cpu_to_le32(0);
5188 nv->reset_delay = 5;
5189 nv->max_luns_per_target = __constant_cpu_to_le16(128);
5190 nv->port_down_retry_count = __constant_cpu_to_le16(30);
5191 nv->link_down_timeout = __constant_cpu_to_le16(30);
Andrew Vasquezeeebcc92009-06-03 09:55:24 -07005192 nv->enode_mac[0] = 0x00;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005193 nv->enode_mac[1] = 0x02;
5194 nv->enode_mac[2] = 0x03;
5195 nv->enode_mac[3] = 0x04;
5196 nv->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005197 nv->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005198
5199 rval = 1;
5200 }
5201
5202 /* Reset Initialization control block */
5203 memset(icb, 0, sizeof(struct init_cb_81xx));
5204
5205 /* Copy 1st segment. */
5206 dptr1 = (uint8_t *)icb;
5207 dptr2 = (uint8_t *)&nv->version;
5208 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
5209 while (cnt--)
5210 *dptr1++ = *dptr2++;
5211
5212 icb->login_retry_count = nv->login_retry_count;
5213
5214 /* Copy 2nd segment. */
5215 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
5216 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
5217 cnt = (uint8_t *)&icb->reserved_5 -
5218 (uint8_t *)&icb->interrupt_delay_timer;
5219 while (cnt--)
5220 *dptr1++ = *dptr2++;
5221
5222 memcpy(icb->enode_mac, nv->enode_mac, sizeof(icb->enode_mac));
5223 /* Some boards (with valid NVRAMs) still have NULL enode_mac!! */
5224 if (!memcmp(icb->enode_mac, "\0\0\0\0\0\0", sizeof(icb->enode_mac))) {
5225 icb->enode_mac[0] = 0x01;
5226 icb->enode_mac[1] = 0x02;
5227 icb->enode_mac[2] = 0x03;
5228 icb->enode_mac[3] = 0x04;
5229 icb->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005230 icb->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005231 }
5232
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07005233 /* Use extended-initialization control block. */
5234 memcpy(ha->ex_init_cb, &nv->ex_version, sizeof(*ha->ex_init_cb));
5235
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005236 /*
5237 * Setup driver NVRAM options.
5238 */
5239 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Giridhar Malavalia9083012010-04-12 17:59:55 -07005240 "QLE8XXX");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005241
5242 /* Use alternate WWN? */
5243 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
5244 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
5245 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
5246 }
5247
5248 /* Prepare nodename */
5249 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
5250 /*
5251 * Firmware will apply the following mask if the nodename was
5252 * not provided.
5253 */
5254 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
5255 icb->node_name[0] &= 0xF0;
5256 }
5257
5258 /* Set host adapter parameters. */
5259 ha->flags.disable_risc_code_load = 0;
5260 ha->flags.enable_lip_reset = 0;
5261 ha->flags.enable_lip_full_login =
5262 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
5263 ha->flags.enable_target_reset =
5264 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
5265 ha->flags.enable_led_scheme = 0;
5266 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
5267
5268 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
5269 (BIT_6 | BIT_5 | BIT_4)) >> 4;
5270
5271 /* save HBA serial number */
5272 ha->serial0 = icb->port_name[5];
5273 ha->serial1 = icb->port_name[6];
5274 ha->serial2 = icb->port_name[7];
5275 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
5276 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
5277
5278 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5279
5280 ha->retry_count = le16_to_cpu(nv->login_retry_count);
5281
5282 /* Set minimum login_timeout to 4 seconds. */
5283 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
5284 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
5285 if (le16_to_cpu(nv->login_timeout) < 4)
5286 nv->login_timeout = __constant_cpu_to_le16(4);
5287 ha->login_timeout = le16_to_cpu(nv->login_timeout);
5288 icb->login_timeout = nv->login_timeout;
5289
5290 /* Set minimum RATOV to 100 tenths of a second. */
5291 ha->r_a_tov = 100;
5292
5293 ha->loop_reset_delay = nv->reset_delay;
5294
5295 /* Link Down Timeout = 0:
5296 *
5297 * When Port Down timer expires we will start returning
5298 * I/O's to OS with "DID_NO_CONNECT".
5299 *
5300 * Link Down Timeout != 0:
5301 *
5302 * The driver waits for the link to come up after link down
5303 * before returning I/Os to OS with "DID_NO_CONNECT".
5304 */
5305 if (le16_to_cpu(nv->link_down_timeout) == 0) {
5306 ha->loop_down_abort_time =
5307 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
5308 } else {
5309 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
5310 ha->loop_down_abort_time =
5311 (LOOP_DOWN_TIME - ha->link_down_timeout);
5312 }
5313
5314 /* Need enough time to try and get the port back. */
5315 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
5316 if (qlport_down_retry)
5317 ha->port_down_retry_count = qlport_down_retry;
5318
5319 /* Set login_retry_count */
5320 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
5321 if (ha->port_down_retry_count ==
5322 le16_to_cpu(nv->port_down_retry_count) &&
5323 ha->port_down_retry_count > 3)
5324 ha->login_retry_count = ha->port_down_retry_count;
5325 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
5326 ha->login_retry_count = ha->port_down_retry_count;
5327 if (ql2xloginretrycount)
5328 ha->login_retry_count = ql2xloginretrycount;
5329
5330 /* Enable ZIO. */
5331 if (!vha->flags.init_done) {
5332 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
5333 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
5334 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
5335 le16_to_cpu(icb->interrupt_delay_timer): 2;
5336 }
5337 icb->firmware_options_2 &= __constant_cpu_to_le32(
5338 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
5339 vha->flags.process_response_queue = 0;
5340 if (ha->zio_mode != QLA_ZIO_DISABLED) {
5341 ha->zio_mode = QLA_ZIO_MODE_6;
5342
5343 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer delay "
5344 "(%d us).\n", vha->host_no, ha->zio_mode,
5345 ha->zio_timer * 100));
5346 qla_printk(KERN_INFO, ha,
5347 "ZIO mode %d enabled; timer delay (%d us).\n",
5348 ha->zio_mode, ha->zio_timer * 100);
5349
5350 icb->firmware_options_2 |= cpu_to_le32(
5351 (uint32_t)ha->zio_mode);
5352 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
5353 vha->flags.process_response_queue = 1;
5354 }
5355
5356 if (rval) {
5357 DEBUG2_3(printk(KERN_WARNING
5358 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
5359 }
5360 return (rval);
5361}
5362
Giridhar Malavalia9083012010-04-12 17:59:55 -07005363int
5364qla82xx_restart_isp(scsi_qla_host_t *vha)
5365{
5366 int status, rval;
5367 uint32_t wait_time;
5368 struct qla_hw_data *ha = vha->hw;
5369 struct req_que *req = ha->req_q_map[0];
5370 struct rsp_que *rsp = ha->rsp_q_map[0];
5371 struct scsi_qla_host *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -07005372 unsigned long flags;
Giridhar Malavalia9083012010-04-12 17:59:55 -07005373
5374 status = qla2x00_init_rings(vha);
5375 if (!status) {
5376 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5377 ha->flags.chip_reset_done = 1;
5378
5379 status = qla2x00_fw_ready(vha);
5380 if (!status) {
5381 qla_printk(KERN_INFO, ha,
5382 "%s(): Start configure loop, "
5383 "status = %d\n", __func__, status);
5384
5385 /* Issue a marker after FW becomes ready. */
5386 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
5387
5388 vha->flags.online = 1;
5389 /* Wait at most MAX_TARGET RSCNs for a stable link. */
5390 wait_time = 256;
5391 do {
5392 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5393 qla2x00_configure_loop(vha);
5394 wait_time--;
5395 } while (!atomic_read(&vha->loop_down_timer) &&
5396 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags)) &&
5397 wait_time &&
5398 (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)));
5399 }
5400
5401 /* if no cable then assume it's good */
5402 if ((vha->device_flags & DFLG_NO_CABLE))
5403 status = 0;
5404
5405 qla_printk(KERN_INFO, ha,
5406 "%s(): Configure loop done, status = 0x%x\n",
5407 __func__, status);
5408 }
5409
5410 if (!status) {
5411 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5412
5413 if (!atomic_read(&vha->loop_down_timer)) {
5414 /*
5415 * Issue marker command only when we are going
5416 * to start the I/O .
5417 */
5418 vha->marker_needed = 1;
5419 }
5420
5421 vha->flags.online = 1;
5422
5423 ha->isp_ops->enable_intrs(ha);
5424
5425 ha->isp_abort_cnt = 0;
5426 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
5427
5428 if (ha->fce) {
5429 ha->flags.fce_enabled = 1;
5430 memset(ha->fce, 0,
5431 fce_calc_size(ha->fce_bufs));
5432 rval = qla2x00_enable_fce_trace(vha,
5433 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
5434 &ha->fce_bufs);
5435 if (rval) {
5436 qla_printk(KERN_WARNING, ha,
5437 "Unable to reinitialize FCE "
5438 "(%d).\n", rval);
5439 ha->flags.fce_enabled = 0;
5440 }
5441 }
5442
5443 if (ha->eft) {
5444 memset(ha->eft, 0, EFT_SIZE);
5445 rval = qla2x00_enable_eft_trace(vha,
5446 ha->eft_dma, EFT_NUM_BUFFERS);
5447 if (rval) {
5448 qla_printk(KERN_WARNING, ha,
5449 "Unable to reinitialize EFT "
5450 "(%d).\n", rval);
5451 }
5452 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005453 }
5454
5455 if (!status) {
5456 DEBUG(printk(KERN_INFO
5457 "qla82xx_restart_isp(%ld): succeeded.\n",
5458 vha->host_no));
Arun Easifeafb7b2010-09-03 14:57:00 -07005459
5460 spin_lock_irqsave(&ha->vport_slock, flags);
5461 list_for_each_entry(vp, &ha->vp_list, list) {
5462 if (vp->vp_idx) {
5463 atomic_inc(&vp->vref_count);
5464 spin_unlock_irqrestore(&ha->vport_slock, flags);
5465
Giridhar Malavalia9083012010-04-12 17:59:55 -07005466 qla2x00_vp_abort_isp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -07005467
5468 spin_lock_irqsave(&ha->vport_slock, flags);
5469 atomic_dec(&vp->vref_count);
5470 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005471 }
Arun Easifeafb7b2010-09-03 14:57:00 -07005472 spin_unlock_irqrestore(&ha->vport_slock, flags);
5473
Giridhar Malavalia9083012010-04-12 17:59:55 -07005474 } else {
5475 qla_printk(KERN_INFO, ha,
5476 "qla82xx_restart_isp: **** FAILED ****\n");
5477 }
5478
5479 return status;
5480}
5481
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005482void
Andrew Vasquezae97c912010-02-18 10:07:28 -08005483qla81xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005484{
Andrew Vasquezae97c912010-02-18 10:07:28 -08005485 struct qla_hw_data *ha = vha->hw;
5486
5487 if (!ql2xetsenable)
5488 return;
5489
5490 /* Enable ETS Burst. */
5491 memset(ha->fw_options, 0, sizeof(ha->fw_options));
5492 ha->fw_options[2] |= BIT_9;
5493 qla2x00_set_fw_options(vha, ha->fw_options);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005494}
Sarang Radke09ff7012010-03-19 17:03:59 -07005495
5496/*
5497 * qla24xx_get_fcp_prio
5498 * Gets the fcp cmd priority value for the logged in port.
5499 * Looks for a match of the port descriptors within
5500 * each of the fcp prio config entries. If a match is found,
5501 * the tag (priority) value is returned.
5502 *
5503 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005504 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07005505 * fcport = port structure pointer.
5506 *
5507 * Return:
Andrew Vasquez6c452a42010-03-19 17:04:02 -07005508 * non-zero (if found)
Sarang Radke09ff7012010-03-19 17:03:59 -07005509 * 0 (if not found)
5510 *
5511 * Context:
5512 * Kernel context
5513 */
5514uint8_t
5515qla24xx_get_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
5516{
5517 int i, entries;
5518 uint8_t pid_match, wwn_match;
5519 uint8_t priority;
5520 uint32_t pid1, pid2;
5521 uint64_t wwn1, wwn2;
5522 struct qla_fcp_prio_entry *pri_entry;
5523 struct qla_hw_data *ha = vha->hw;
5524
5525 if (!ha->fcp_prio_cfg || !ha->flags.fcp_prio_enabled)
5526 return 0;
5527
5528 priority = 0;
5529 entries = ha->fcp_prio_cfg->num_entries;
5530 pri_entry = &ha->fcp_prio_cfg->entry[0];
5531
5532 for (i = 0; i < entries; i++) {
5533 pid_match = wwn_match = 0;
5534
5535 if (!(pri_entry->flags & FCP_PRIO_ENTRY_VALID)) {
5536 pri_entry++;
5537 continue;
5538 }
5539
5540 /* check source pid for a match */
5541 if (pri_entry->flags & FCP_PRIO_ENTRY_SPID_VALID) {
5542 pid1 = pri_entry->src_pid & INVALID_PORT_ID;
5543 pid2 = vha->d_id.b24 & INVALID_PORT_ID;
5544 if (pid1 == INVALID_PORT_ID)
5545 pid_match++;
5546 else if (pid1 == pid2)
5547 pid_match++;
5548 }
5549
5550 /* check destination pid for a match */
5551 if (pri_entry->flags & FCP_PRIO_ENTRY_DPID_VALID) {
5552 pid1 = pri_entry->dst_pid & INVALID_PORT_ID;
5553 pid2 = fcport->d_id.b24 & INVALID_PORT_ID;
5554 if (pid1 == INVALID_PORT_ID)
5555 pid_match++;
5556 else if (pid1 == pid2)
5557 pid_match++;
5558 }
5559
5560 /* check source WWN for a match */
5561 if (pri_entry->flags & FCP_PRIO_ENTRY_SWWN_VALID) {
5562 wwn1 = wwn_to_u64(vha->port_name);
5563 wwn2 = wwn_to_u64(pri_entry->src_wwpn);
5564 if (wwn2 == (uint64_t)-1)
5565 wwn_match++;
5566 else if (wwn1 == wwn2)
5567 wwn_match++;
5568 }
5569
5570 /* check destination WWN for a match */
5571 if (pri_entry->flags & FCP_PRIO_ENTRY_DWWN_VALID) {
5572 wwn1 = wwn_to_u64(fcport->port_name);
5573 wwn2 = wwn_to_u64(pri_entry->dst_wwpn);
5574 if (wwn2 == (uint64_t)-1)
5575 wwn_match++;
5576 else if (wwn1 == wwn2)
5577 wwn_match++;
5578 }
5579
5580 if (pid_match == 2 || wwn_match == 2) {
5581 /* Found a matching entry */
5582 if (pri_entry->flags & FCP_PRIO_ENTRY_TAG_VALID)
5583 priority = pri_entry->tag;
5584 break;
5585 }
5586
5587 pri_entry++;
5588 }
5589
5590 return priority;
5591}
5592
5593/*
5594 * qla24xx_update_fcport_fcp_prio
5595 * Activates fcp priority for the logged in fc port
5596 *
5597 * Input:
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005598 * vha = scsi host structure pointer.
Sarang Radke09ff7012010-03-19 17:03:59 -07005599 * fcp = port structure pointer.
5600 *
5601 * Return:
5602 * QLA_SUCCESS or QLA_FUNCTION_FAILED
5603 *
5604 * Context:
5605 * Kernel context.
5606 */
5607int
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005608qla24xx_update_fcport_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
Sarang Radke09ff7012010-03-19 17:03:59 -07005609{
5610 int ret;
5611 uint8_t priority;
5612 uint16_t mb[5];
5613
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005614 if (fcport->port_type != FCT_TARGET ||
5615 fcport->loop_id == FC_NO_LOOP_ID)
Sarang Radke09ff7012010-03-19 17:03:59 -07005616 return QLA_FUNCTION_FAILED;
5617
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005618 priority = qla24xx_get_fcp_prio(vha, fcport);
5619 ret = qla24xx_set_fcp_prio(vha, fcport->loop_id, priority, mb);
Sarang Radke09ff7012010-03-19 17:03:59 -07005620 if (ret == QLA_SUCCESS)
5621 fcport->fcp_prio = priority;
5622 else
5623 DEBUG2(printk(KERN_WARNING
5624 "scsi(%ld): Unable to activate fcp priority, "
Madhuranath Iyengar21090cb2010-12-21 16:00:18 -08005625 " ret=0x%x\n", vha->host_no, ret));
Sarang Radke09ff7012010-03-19 17:03:59 -07005626
5627 return ret;
5628}
5629
5630/*
5631 * qla24xx_update_all_fcp_prio
5632 * Activates fcp priority for all the logged in ports
5633 *
5634 * Input:
5635 * ha = adapter block pointer.
5636 *
5637 * Return:
5638 * QLA_SUCCESS or QLA_FUNCTION_FAILED
5639 *
5640 * Context:
5641 * Kernel context.
5642 */
5643int
5644qla24xx_update_all_fcp_prio(scsi_qla_host_t *vha)
5645{
5646 int ret;
5647 fc_port_t *fcport;
5648
5649 ret = QLA_FUNCTION_FAILED;
5650 /* We need to set priority for all logged in ports */
5651 list_for_each_entry(fcport, &vha->vp_fcports, list)
5652 ret = qla24xx_update_fcport_fcp_prio(vha, fcport);
5653
5654 return ret;
5655}