blob: 4c6caccc6ad520b4677218307ea3203fe4d9baa7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Andrew Vasquez01e58d82008-04-03 13:13:13 -07003 * Copyright (c) 2003-2008 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
Giridhar Malavali9a069e12010-01-12 13:02:47 -080067void
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;
Andrew Vasquezac280b62009-08-20 11:06:05 -070072
Madhuranath Iyengar49163922010-05-04 15:01:28 -070073 del_timer_sync(&iocb->timer);
74 kfree(iocb);
Andrew Vasquezac280b62009-08-20 11:06:05 -070075 kfree(ctx);
76 mempool_free(sp, sp->fcport->vha->hw->srb_mempool);
77}
78
79inline srb_t *
80qla2x00_get_ctx_sp(scsi_qla_host_t *vha, fc_port_t *fcport, size_t size,
81 unsigned long tmo)
82{
83 srb_t *sp;
84 struct qla_hw_data *ha = vha->hw;
85 struct srb_ctx *ctx;
Madhuranath Iyengar49163922010-05-04 15:01:28 -070086 struct srb_iocb *iocb;
Andrew Vasquezac280b62009-08-20 11:06:05 -070087
88 sp = mempool_alloc(ha->srb_mempool, GFP_KERNEL);
89 if (!sp)
90 goto done;
91 ctx = kzalloc(size, GFP_KERNEL);
92 if (!ctx) {
93 mempool_free(sp, ha->srb_mempool);
Madhuranath Iyengar49163922010-05-04 15:01:28 -070094 sp = NULL;
95 goto done;
96 }
97 iocb = kzalloc(sizeof(struct srb_iocb), GFP_KERNEL);
98 if (!iocb) {
99 mempool_free(sp, ha->srb_mempool);
100 sp = NULL;
101 kfree(ctx);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700102 goto done;
103 }
104
105 memset(sp, 0, sizeof(*sp));
106 sp->fcport = fcport;
107 sp->ctx = ctx;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700108 ctx->u.iocb_cmd = iocb;
109 iocb->free = qla2x00_ctx_sp_free;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700110
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700111 init_timer(&iocb->timer);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700112 if (!tmo)
113 goto done;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700114 iocb->timer.expires = jiffies + tmo * HZ;
115 iocb->timer.data = (unsigned long)sp;
116 iocb->timer.function = qla2x00_ctx_sp_timeout;
117 add_timer(&iocb->timer);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700118done:
119 return sp;
120}
121
122/* Asynchronous Login/Logout Routines -------------------------------------- */
123
124#define ELS_TMO_2_RATOV(ha) ((ha)->r_a_tov / 10 * 2)
125
126static void
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700127qla2x00_async_iocb_timeout(srb_t *sp)
Andrew Vasquezac280b62009-08-20 11:06:05 -0700128{
129 fc_port_t *fcport = sp->fcport;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700130 struct srb_ctx *ctx = sp->ctx;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700131
132 DEBUG2(printk(KERN_WARNING
Andrew Vasquezd3fa9e72010-05-28 15:08:16 -0700133 "scsi(%ld:%x): Async-%s timeout - portid=%02x%02x%02x.\n",
134 fcport->vha->host_no, sp->handle,
135 ctx->name, fcport->d_id.b.domain,
136 fcport->d_id.b.area, fcport->d_id.b.al_pa));
Andrew Vasquezac280b62009-08-20 11:06:05 -0700137
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700138 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700139 if (ctx->type == SRB_LOGIN_CMD) {
140 struct srb_iocb *lio = ctx->u.iocb_cmd;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700141 qla2x00_post_async_logout_work(fcport->vha, fcport, NULL);
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700142 /* Retry as needed. */
143 lio->u.logio.data[0] = MBS_COMMAND_ERROR;
144 lio->u.logio.data[1] = lio->u.logio.flags & SRB_LOGIN_RETRIED ?
145 QLA_LOGIO_LOGIN_RETRIED : 0;
146 qla2x00_post_async_login_done_work(fcport->vha, fcport,
147 lio->u.logio.data);
148 }
Andrew Vasquezac280b62009-08-20 11:06:05 -0700149}
150
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700151static void
152qla2x00_async_login_ctx_done(srb_t *sp)
153{
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700154 struct srb_ctx *ctx = sp->ctx;
155 struct srb_iocb *lio = ctx->u.iocb_cmd;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700156
157 qla2x00_post_async_login_done_work(sp->fcport->vha, sp->fcport,
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700158 lio->u.logio.data);
159 lio->free(sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700160}
161
Andrew Vasquezac280b62009-08-20 11:06:05 -0700162int
163qla2x00_async_login(struct scsi_qla_host *vha, fc_port_t *fcport,
164 uint16_t *data)
165{
166 struct qla_hw_data *ha = vha->hw;
167 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700168 struct srb_ctx *ctx;
169 struct srb_iocb *lio;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700170 int rval;
171
172 rval = QLA_FUNCTION_FAILED;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700173 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_ctx),
Andrew Vasquezac280b62009-08-20 11:06:05 -0700174 ELS_TMO_2_RATOV(ha) + 2);
175 if (!sp)
176 goto done;
177
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700178 ctx = sp->ctx;
179 ctx->type = SRB_LOGIN_CMD;
180 ctx->name = "login";
181 lio = ctx->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700182 lio->timeout = qla2x00_async_iocb_timeout;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700183 lio->done = qla2x00_async_login_ctx_done;
184 lio->u.logio.flags |= SRB_LOGIN_COND_PLOGI;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700185 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700186 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700187 rval = qla2x00_start_sp(sp);
188 if (rval != QLA_SUCCESS)
189 goto done_free_sp;
190
191 DEBUG2(printk(KERN_DEBUG
192 "scsi(%ld:%x): Async-login - loop-id=%x portid=%02x%02x%02x "
193 "retries=%d.\n", fcport->vha->host_no, sp->handle, fcport->loop_id,
194 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa,
195 fcport->login_retry));
196 return rval;
197
198done_free_sp:
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700199 lio->free(sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700200done:
201 return rval;
202}
203
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700204static void
205qla2x00_async_logout_ctx_done(srb_t *sp)
206{
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700207 struct srb_ctx *ctx = sp->ctx;
208 struct srb_iocb *lio = ctx->u.iocb_cmd;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700209
210 qla2x00_post_async_logout_done_work(sp->fcport->vha, sp->fcport,
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700211 lio->u.logio.data);
212 lio->free(sp);
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700213}
214
Andrew Vasquezac280b62009-08-20 11:06:05 -0700215int
216qla2x00_async_logout(struct scsi_qla_host *vha, fc_port_t *fcport)
217{
218 struct qla_hw_data *ha = vha->hw;
219 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700220 struct srb_ctx *ctx;
221 struct srb_iocb *lio;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700222 int rval;
223
224 rval = QLA_FUNCTION_FAILED;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700225 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_ctx),
Andrew Vasquezac280b62009-08-20 11:06:05 -0700226 ELS_TMO_2_RATOV(ha) + 2);
227 if (!sp)
228 goto done;
229
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700230 ctx = sp->ctx;
231 ctx->type = SRB_LOGOUT_CMD;
232 ctx->name = "logout";
233 lio = ctx->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700234 lio->timeout = qla2x00_async_iocb_timeout;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700235 lio->done = qla2x00_async_logout_ctx_done;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700236 rval = qla2x00_start_sp(sp);
237 if (rval != QLA_SUCCESS)
238 goto done_free_sp;
239
240 DEBUG2(printk(KERN_DEBUG
241 "scsi(%ld:%x): Async-logout - loop-id=%x portid=%02x%02x%02x.\n",
242 fcport->vha->host_no, sp->handle, fcport->loop_id,
243 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa));
244 return rval;
245
246done_free_sp:
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700247 lio->free(sp);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700248done:
249 return rval;
250}
251
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700252static void
253qla2x00_async_adisc_ctx_done(srb_t *sp)
254{
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700255 struct srb_ctx *ctx = sp->ctx;
256 struct srb_iocb *lio = ctx->u.iocb_cmd;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700257
258 qla2x00_post_async_adisc_done_work(sp->fcport->vha, sp->fcport,
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700259 lio->u.logio.data);
260 lio->free(sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700261}
262
263int
264qla2x00_async_adisc(struct scsi_qla_host *vha, fc_port_t *fcport,
265 uint16_t *data)
266{
267 struct qla_hw_data *ha = vha->hw;
268 srb_t *sp;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700269 struct srb_ctx *ctx;
270 struct srb_iocb *lio;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700271 int rval;
272
273 rval = QLA_FUNCTION_FAILED;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700274 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_ctx),
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700275 ELS_TMO_2_RATOV(ha) + 2);
276 if (!sp)
277 goto done;
278
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700279 ctx = sp->ctx;
280 ctx->type = SRB_ADISC_CMD;
281 ctx->name = "adisc";
282 lio = ctx->u.iocb_cmd;
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700283 lio->timeout = qla2x00_async_iocb_timeout;
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700284 lio->done = qla2x00_async_adisc_ctx_done;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700285 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700286 lio->u.logio.flags |= SRB_LOGIN_RETRIED;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700287 rval = qla2x00_start_sp(sp);
288 if (rval != QLA_SUCCESS)
289 goto done_free_sp;
290
291 DEBUG2(printk(KERN_DEBUG
292 "scsi(%ld:%x): Async-adisc - loop-id=%x portid=%02x%02x%02x.\n",
293 fcport->vha->host_no, sp->handle, fcport->loop_id,
294 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa));
295
296 return rval;
297
298done_free_sp:
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700299 lio->free(sp);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700300done:
301 return rval;
302}
303
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700304static void
305qla2x00_async_tm_cmd_ctx_done(srb_t *sp)
306{
307 struct srb_ctx *ctx = sp->ctx;
308 struct srb_iocb *iocb = (struct srb_iocb *)ctx->u.iocb_cmd;
309
310 qla2x00_async_tm_cmd_done(sp->fcport->vha, sp->fcport, iocb);
311 iocb->free(sp);
312}
313
314int
315qla2x00_async_tm_cmd(fc_port_t *fcport, uint32_t flags, uint32_t lun,
316 uint32_t tag)
317{
318 struct scsi_qla_host *vha = fcport->vha;
319 struct qla_hw_data *ha = vha->hw;
320 srb_t *sp;
321 struct srb_ctx *ctx;
322 struct srb_iocb *tcf;
323 int rval;
324
325 rval = QLA_FUNCTION_FAILED;
326 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_ctx),
327 ELS_TMO_2_RATOV(ha) + 2);
328 if (!sp)
329 goto done;
330
331 ctx = sp->ctx;
332 ctx->type = SRB_TM_CMD;
333 ctx->name = "tmf";
334 tcf = ctx->u.iocb_cmd;
335 tcf->u.tmf.flags = flags;
336 tcf->u.tmf.lun = lun;
337 tcf->u.tmf.data = tag;
338 tcf->timeout = qla2x00_async_iocb_timeout;
339 tcf->done = qla2x00_async_tm_cmd_ctx_done;
340
341 rval = qla2x00_start_sp(sp);
342 if (rval != QLA_SUCCESS)
343 goto done_free_sp;
344
345 DEBUG2(printk(KERN_DEBUG
346 "scsi(%ld:%x): Async-tmf - loop-id=%x portid=%02x%02x%02x.\n",
347 fcport->vha->host_no, sp->handle, fcport->loop_id,
348 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa));
349
350 return rval;
351
352done_free_sp:
353 tcf->free(sp);
354done:
355 return rval;
356}
357
358static void
359qla2x00_async_marker_ctx_done(srb_t *sp)
360{
361 struct srb_ctx *ctx = sp->ctx;
362 struct srb_iocb *iocb = (struct srb_iocb *)ctx->u.iocb_cmd;
363
364 qla2x00_async_marker_done(sp->fcport->vha, sp->fcport, iocb);
365 iocb->free(sp);
366}
367
368int
369qla2x00_async_marker(fc_port_t *fcport, uint16_t lun, uint8_t modif)
370{
371 struct scsi_qla_host *vha = fcport->vha;
372 srb_t *sp;
373 struct srb_ctx *ctx;
374 struct srb_iocb *mrk;
375 int rval;
376
377 rval = QLA_FUNCTION_FAILED;
378 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_ctx), 0);
379 if (!sp)
380 goto done;
381
382 ctx = sp->ctx;
383 ctx->type = SRB_MARKER_CMD;
384 ctx->name = "marker";
385 mrk = ctx->u.iocb_cmd;
386 mrk->u.marker.lun = lun;
387 mrk->u.marker.modif = modif;
388 mrk->timeout = qla2x00_async_iocb_timeout;
389 mrk->done = qla2x00_async_marker_ctx_done;
390
391 rval = qla2x00_start_sp(sp);
392 if (rval != QLA_SUCCESS)
393 goto done_free_sp;
394
395 DEBUG2(printk(KERN_DEBUG
396 "scsi(%ld:%x): Async-marker - loop-id=%x "
397 "portid=%02x%02x%02x.\n",
398 fcport->vha->host_no, sp->handle, fcport->loop_id,
399 fcport->d_id.b.domain, fcport->d_id.b.area,
400 fcport->d_id.b.al_pa));
401
402 return rval;
403
404done_free_sp:
405 mrk->free(sp);
406done:
407 return rval;
408}
409
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700410void
Andrew Vasquezac280b62009-08-20 11:06:05 -0700411qla2x00_async_login_done(struct scsi_qla_host *vha, fc_port_t *fcport,
412 uint16_t *data)
413{
414 int rval;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700415
416 switch (data[0]) {
417 case MBS_COMMAND_COMPLETE:
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700418 if (fcport->flags & FCF_FCP2_DEVICE) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700419 fcport->flags |= FCF_ASYNC_SENT;
420 qla2x00_post_async_adisc_work(vha, fcport, data);
421 break;
Andrew Vasquez99b0bec2010-05-04 15:01:25 -0700422 }
423 qla2x00_update_fcport(vha, fcport);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700424 break;
425 case MBS_COMMAND_ERROR:
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700426 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700427 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
428 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
429 else
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700430 qla2x00_mark_device_lost(vha, fcport, 1, 1);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700431 break;
432 case MBS_PORT_ID_USED:
433 fcport->loop_id = data[1];
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700434 qla2x00_post_async_logout_work(vha, fcport, NULL);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700435 qla2x00_post_async_login_work(vha, fcport, NULL);
436 break;
437 case MBS_LOOP_ID_USED:
438 fcport->loop_id++;
439 rval = qla2x00_find_new_loop_id(vha, fcport);
440 if (rval != QLA_SUCCESS) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700441 fcport->flags &= ~FCF_ASYNC_SENT;
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700442 qla2x00_mark_device_lost(vha, fcport, 1, 1);
Andrew Vasquezac280b62009-08-20 11:06:05 -0700443 break;
444 }
445 qla2x00_post_async_login_work(vha, fcport, NULL);
446 break;
447 }
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700448 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700449}
450
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700451void
Andrew Vasquezac280b62009-08-20 11:06:05 -0700452qla2x00_async_logout_done(struct scsi_qla_host *vha, fc_port_t *fcport,
453 uint16_t *data)
454{
455 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700456 return;
Andrew Vasquezac280b62009-08-20 11:06:05 -0700457}
458
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700459void
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700460qla2x00_async_adisc_done(struct scsi_qla_host *vha, fc_port_t *fcport,
461 uint16_t *data)
462{
463 if (data[0] == MBS_COMMAND_COMPLETE) {
464 qla2x00_update_fcport(vha, fcport);
465
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700466 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700467 }
468
469 /* Retry login. */
470 fcport->flags &= ~FCF_ASYNC_SENT;
471 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
472 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
473 else
Andrew Vasquez6ac52602010-05-28 15:08:19 -0700474 qla2x00_mark_device_lost(vha, fcport, 1, 1);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700475
Madhuranath Iyengar49163922010-05-04 15:01:28 -0700476 return;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -0700477}
478
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700479void
480qla2x00_async_tm_cmd_done(struct scsi_qla_host *vha, fc_port_t *fcport,
481 struct srb_iocb *iocb)
482{
483 int rval;
484 uint32_t flags;
485 uint16_t lun;
486
487 flags = iocb->u.tmf.flags;
488 lun = (uint16_t)iocb->u.tmf.lun;
489
490 /* Issue Marker IOCB */
491 rval = qla2x00_async_marker(fcport, lun,
492 flags == TCF_LUN_RESET ? MK_SYNC_ID_LUN : MK_SYNC_ID);
493
494 if ((rval != QLA_SUCCESS) || iocb->u.tmf.data) {
495 DEBUG2_3_11(printk(KERN_WARNING
496 "%s(%ld): TM IOCB failed (%x).\n",
497 __func__, vha->host_no, rval));
498 }
499
500 return;
501}
502
503void
504qla2x00_async_marker_done(struct scsi_qla_host *vha, fc_port_t *fcport,
505 struct srb_iocb *iocb)
506{
507 /*
508 * Currently we dont have any specific post response processing
509 * for this IOCB. We'll just return success or failed
510 * depending on whether the IOCB command succeeded or failed.
511 */
512 if (iocb->u.tmf.data) {
513 DEBUG2_3_11(printk(KERN_WARNING
514 "%s(%ld): Marker IOCB failed (%x).\n",
515 __func__, vha->host_no, iocb->u.tmf.data));
516 }
517
518 return;
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/****************************************************************************/
522/* QLogic ISP2x00 Hardware Support Functions. */
523/****************************************************************************/
524
525/*
526* qla2x00_initialize_adapter
527* Initialize board.
528*
529* Input:
530* ha = adapter block pointer.
531*
532* Returns:
533* 0 = success
534*/
535int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800536qla2x00_initialize_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800539 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800540 struct req_que *req = ha->req_q_map[0];
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* Clear adapter flags. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800543 vha->flags.online = 0;
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700544 ha->flags.chip_reset_done = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800545 vha->flags.reset_active = 0;
Andrew Vasquez85880802009-12-15 21:29:46 -0800546 ha->flags.pci_channel_io_perm_failure = 0;
547 ha->flags.eeh_busy = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800548 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
549 atomic_set(&vha->loop_state, LOOP_DOWN);
550 vha->device_flags = DFLG_NO_CABLE;
551 vha->dpc_flags = 0;
552 vha->flags.management_server_logged_in = 0;
553 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 ha->isp_abort_cnt = 0;
555 ha->beacon_blink_led = 0;
556
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800557 set_bit(0, ha->req_qid_map);
558 set_bit(0, ha->rsp_qid_map);
559
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700560 qla_printk(KERN_INFO, ha, "Configuring PCI space...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800561 rval = ha->isp_ops->pci_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (rval) {
Andrew Vasquez7c98a042007-01-29 10:22:29 -0800563 DEBUG2(printk("scsi(%ld): Unable to configure PCI space.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800564 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return (rval);
566 }
567
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800568 ha->isp_ops->reset_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800570 rval = qla2xxx_get_flash_info(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700571 if (rval) {
572 DEBUG2(printk("scsi(%ld): Unable to validate FLASH data.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800573 vha->host_no));
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700574 return (rval);
575 }
576
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800577 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -0800578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 qla_printk(KERN_INFO, ha, "Configure NVRAM parameters...\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700580
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800581 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700583 if (ha->flags.disable_serdes) {
584 /* Mask HBA via NVRAM settings? */
585 qla_printk(KERN_INFO, ha, "Masking HBA WWPN "
586 "%02x%02x%02x%02x%02x%02x%02x%02x (via NVRAM).\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800587 vha->port_name[0], vha->port_name[1],
588 vha->port_name[2], vha->port_name[3],
589 vha->port_name[4], vha->port_name[5],
590 vha->port_name[6], vha->port_name[7]);
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700591 return QLA_FUNCTION_FAILED;
592 }
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 qla_printk(KERN_INFO, ha, "Verifying loaded RISC code...\n");
595
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800596 if (qla2x00_isp_firmware(vha) != QLA_SUCCESS) {
597 rval = ha->isp_ops->chip_diag(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800598 if (rval)
599 return (rval);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800600 rval = qla2x00_setup_chip(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800601 if (rval)
602 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
Giridhar Malavalia9083012010-04-12 17:59:55 -0700604
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700605 if (IS_QLA84XX(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800606 ha->cs84xx = qla84xx_get_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700607 if (!ha->cs84xx) {
608 qla_printk(KERN_ERR, ha,
609 "Unable to configure ISP84XX.\n");
610 return QLA_FUNCTION_FAILED;
611 }
612 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800613 rval = qla2x00_init_rings(vha);
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700614 ha->flags.chip_reset_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800616 if (rval == QLA_SUCCESS && IS_QLA84XX(ha)) {
Andrew Vasquez6c452a42010-03-19 17:04:02 -0700617 /* Issue verify 84xx FW IOCB to complete 84xx initialization */
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800618 rval = qla84xx_init_chip(vha);
619 if (rval != QLA_SUCCESS) {
620 qla_printk(KERN_ERR, ha,
621 "Unable to initialize ISP84XX.\n");
622 qla84xx_put_chip(vha);
623 }
624 }
625
Sarang Radke09ff7012010-03-19 17:03:59 -0700626 if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha)) {
627 if (qla24xx_read_fcp_prio_cfg(vha))
628 qla_printk(KERN_ERR, ha,
629 "Unable to read FCP priority data.\n");
630 }
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return (rval);
633}
634
635/**
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700636 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 * @ha: HA context
638 *
639 * Returns 0 on success.
640 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700641int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800642qla2100_pci_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700644 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700645 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800646 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700647 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700650 pci_try_set_mwi(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700653 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
655
Andrew Vasquez737faec2008-10-24 15:13:45 -0700656 pci_disable_rom(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700658 /* Get PCI bus information. */
659 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700660 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700661 spin_unlock_irqrestore(&ha->hardware_lock, flags);
662
663 return QLA_SUCCESS;
664}
665
666/**
667 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
668 * @ha: HA context
669 *
670 * Returns 0 on success.
671 */
672int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800673qla2300_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700674{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700675 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700676 unsigned long flags = 0;
677 uint32_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800678 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700679 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700680
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700681 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700682 pci_try_set_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700683
684 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700685 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700686
687 if (IS_QLA2322(ha) || IS_QLA6322(ha))
688 w &= ~PCI_COMMAND_INTX_DISABLE;
Andrew Vasqueza157b102007-05-07 07:43:01 -0700689 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700690
691 /*
692 * If this is a 2300 card and not 2312, reset the
693 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
694 * the 2310 also reports itself as a 2300 so we need to get the
695 * fb revision level -- a 6 indicates it really is a 2300 and
696 * not a 2310.
697 */
698 if (IS_QLA2300(ha)) {
699 spin_lock_irqsave(&ha->hardware_lock, flags);
700
701 /* Pause RISC. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700702 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700703 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700704 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700705 break;
706
707 udelay(10);
708 }
709
710 /* Select FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700711 WRT_REG_WORD(&reg->ctrl_status, 0x20);
712 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700713
714 /* Get the fb rev level */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700715 ha->fb_rev = RD_FB_CMD_REG(ha, reg);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700716
717 if (ha->fb_rev == FPM_2300)
Andrew Vasqueza157b102007-05-07 07:43:01 -0700718 pci_clear_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700719
720 /* Deselect FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700721 WRT_REG_WORD(&reg->ctrl_status, 0x0);
722 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700723
724 /* Release RISC module. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700725 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700726 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700727 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) == 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700728 break;
729
730 udelay(10);
731 }
732
733 spin_unlock_irqrestore(&ha->hardware_lock, flags);
734 }
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700735
736 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
737
Andrew Vasquez737faec2008-10-24 15:13:45 -0700738 pci_disable_rom(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700739
740 /* Get PCI bus information. */
741 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700742 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700743 spin_unlock_irqrestore(&ha->hardware_lock, flags);
744
745 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700749 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
750 * @ha: HA context
751 *
752 * Returns 0 on success.
753 */
754int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800755qla24xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700756{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700757 uint16_t w;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700758 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800759 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700760 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700761
762 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700763 pci_try_set_mwi(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700764
765 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700766 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700767 w &= ~PCI_COMMAND_INTX_DISABLE;
768 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
769
770 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
771
772 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700773 if (pci_find_capability(ha->pdev, PCI_CAP_ID_PCIX))
774 pcix_set_mmrbc(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700775
776 /* PCIe -- adjust Maximum Read Request Size (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700777 if (pci_find_capability(ha->pdev, PCI_CAP_ID_EXP))
778 pcie_set_readrq(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700779
Andrew Vasquez737faec2008-10-24 15:13:45 -0700780 pci_disable_rom(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700781
Auke Kok44c10132007-06-08 15:46:36 -0700782 ha->chip_revision = ha->pdev->revision;
Andrew Vasqueza8488ab2007-01-29 10:22:19 -0800783
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700784 /* Get PCI bus information. */
785 spin_lock_irqsave(&ha->hardware_lock, flags);
786 ha->pci_attr = RD_REG_DWORD(&reg->ctrl_status);
787 spin_unlock_irqrestore(&ha->hardware_lock, flags);
788
789 return QLA_SUCCESS;
790}
791
792/**
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700793 * qla25xx_pci_config() - Setup ISP25xx PCI configuration registers.
794 * @ha: HA context
795 *
796 * Returns 0 on success.
797 */
798int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800799qla25xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700800{
801 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800802 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700803
804 pci_set_master(ha->pdev);
805 pci_try_set_mwi(ha->pdev);
806
807 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
808 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
809 w &= ~PCI_COMMAND_INTX_DISABLE;
810 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
811
812 /* PCIe -- adjust Maximum Read Request Size (2048). */
813 if (pci_find_capability(ha->pdev, PCI_CAP_ID_EXP))
814 pcie_set_readrq(ha->pdev, 2048);
815
Andrew Vasquez737faec2008-10-24 15:13:45 -0700816 pci_disable_rom(ha->pdev);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700817
818 ha->chip_revision = ha->pdev->revision;
819
820 return QLA_SUCCESS;
821}
822
823/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 * qla2x00_isp_firmware() - Choose firmware image.
825 * @ha: HA context
826 *
827 * Returns 0 on success.
828 */
829static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800830qla2x00_isp_firmware(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 int rval;
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700833 uint16_t loop_id, topo, sw_cap;
834 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800835 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 /* Assume loading risc code */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700838 rval = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 if (ha->flags.disable_risc_code_load) {
841 DEBUG2(printk("scsi(%ld): RISC CODE NOT loaded\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800842 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 qla_printk(KERN_INFO, ha, "RISC CODE NOT loaded\n");
844
845 /* Verify checksum of loaded RISC code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800846 rval = qla2x00_verify_checksum(vha, ha->fw_srisc_address);
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700847 if (rval == QLA_SUCCESS) {
848 /* And, verify we are not in ROM code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800849 rval = qla2x00_get_adapter_id(vha, &loop_id, &al_pa,
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700850 &area, &domain, &topo, &sw_cap);
851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853
854 if (rval) {
855 DEBUG2_3(printk("scsi(%ld): **** Load RISC code ****\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800856 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858
859 return (rval);
860}
861
862/**
863 * qla2x00_reset_chip() - Reset ISP chip.
864 * @ha: HA context
865 *
866 * Returns 0 on success.
867 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700868void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800869qla2x00_reset_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800872 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700873 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 uint32_t cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 uint16_t cmd;
876
Andrew Vasquez85880802009-12-15 21:29:46 -0800877 if (unlikely(pci_channel_offline(ha->pdev)))
878 return;
879
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700880 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 spin_lock_irqsave(&ha->hardware_lock, flags);
883
884 /* Turn off master enable */
885 cmd = 0;
886 pci_read_config_word(ha->pdev, PCI_COMMAND, &cmd);
887 cmd &= ~PCI_COMMAND_MASTER;
888 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
889
890 if (!IS_QLA2100(ha)) {
891 /* Pause RISC. */
892 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
893 if (IS_QLA2200(ha) || IS_QLA2300(ha)) {
894 for (cnt = 0; cnt < 30000; cnt++) {
895 if ((RD_REG_WORD(&reg->hccr) &
896 HCCR_RISC_PAUSE) != 0)
897 break;
898 udelay(100);
899 }
900 } else {
901 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
902 udelay(10);
903 }
904
905 /* Select FPM registers. */
906 WRT_REG_WORD(&reg->ctrl_status, 0x20);
907 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
908
909 /* FPM Soft Reset. */
910 WRT_REG_WORD(&reg->fpm_diag_config, 0x100);
911 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
912
913 /* Toggle Fpm Reset. */
914 if (!IS_QLA2200(ha)) {
915 WRT_REG_WORD(&reg->fpm_diag_config, 0x0);
916 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
917 }
918
919 /* Select frame buffer registers. */
920 WRT_REG_WORD(&reg->ctrl_status, 0x10);
921 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
922
923 /* Reset frame buffer FIFOs. */
924 if (IS_QLA2200(ha)) {
925 WRT_FB_CMD_REG(ha, reg, 0xa000);
926 RD_FB_CMD_REG(ha, reg); /* PCI Posting. */
927 } else {
928 WRT_FB_CMD_REG(ha, reg, 0x00fc);
929
930 /* Read back fb_cmd until zero or 3 seconds max */
931 for (cnt = 0; cnt < 3000; cnt++) {
932 if ((RD_FB_CMD_REG(ha, reg) & 0xff) == 0)
933 break;
934 udelay(100);
935 }
936 }
937
938 /* Select RISC module registers. */
939 WRT_REG_WORD(&reg->ctrl_status, 0);
940 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
941
942 /* Reset RISC processor. */
943 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
944 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
945
946 /* Release RISC processor. */
947 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
948 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
949 }
950
951 WRT_REG_WORD(&reg->hccr, HCCR_CLR_RISC_INT);
952 WRT_REG_WORD(&reg->hccr, HCCR_CLR_HOST_INT);
953
954 /* Reset ISP chip. */
955 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
956
957 /* Wait for RISC to recover from reset. */
958 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
959 /*
960 * It is necessary to for a delay here since the card doesn't
961 * respond to PCI reads during a reset. On some architectures
962 * this will result in an MCA.
963 */
964 udelay(20);
965 for (cnt = 30000; cnt; cnt--) {
966 if ((RD_REG_WORD(&reg->ctrl_status) &
967 CSR_ISP_SOFT_RESET) == 0)
968 break;
969 udelay(100);
970 }
971 } else
972 udelay(10);
973
974 /* Reset RISC processor. */
975 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
976
977 WRT_REG_WORD(&reg->semaphore, 0);
978
979 /* Release RISC processor. */
980 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
981 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
982
983 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
984 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquezffb39f02006-05-17 15:09:06 -0700985 if (RD_MAILBOX_REG(ha, reg, 0) != MBS_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 udelay(100);
989 }
990 } else
991 udelay(100);
992
993 /* Turn on master enable */
994 cmd |= PCI_COMMAND_MASTER;
995 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
996
997 /* Disable RISC pause on FPM parity error. */
998 if (!IS_QLA2100(ha)) {
999 WRT_REG_WORD(&reg->hccr, HCCR_DISABLE_PARITY_PAUSE);
1000 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
1001 }
1002
1003 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1004}
1005
1006/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001007 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001008 * @ha: HA context
1009 *
1010 * Returns 0 on success.
1011 */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001012static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001013qla24xx_reset_risc(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001014{
1015 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001016 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001017 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1018 uint32_t cnt, d2;
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001019 uint16_t wd;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001020
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001021 spin_lock_irqsave(&ha->hardware_lock, flags);
1022
1023 /* Reset RISC. */
1024 WRT_REG_DWORD(&reg->ctrl_status, CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
1025 for (cnt = 0; cnt < 30000; cnt++) {
1026 if ((RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE) == 0)
1027 break;
1028
1029 udelay(10);
1030 }
1031
1032 WRT_REG_DWORD(&reg->ctrl_status,
1033 CSRX_ISP_SOFT_RESET|CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001034 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001035
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001036 udelay(100);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001037 /* Wait for firmware to complete NVRAM accesses. */
Andrew Vasquez88c26662005-07-08 17:59:26 -07001038 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1039 for (cnt = 10000 ; cnt && d2; cnt--) {
1040 udelay(5);
1041 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1042 barrier();
1043 }
1044
Andrew Vasquez335a1cc2005-11-08 14:37:48 -08001045 /* Wait for soft-reset to complete. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001046 d2 = RD_REG_DWORD(&reg->ctrl_status);
1047 for (cnt = 6000000 ; cnt && (d2 & CSRX_ISP_SOFT_RESET); cnt--) {
1048 udelay(5);
1049 d2 = RD_REG_DWORD(&reg->ctrl_status);
1050 barrier();
1051 }
1052
1053 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
1054 RD_REG_DWORD(&reg->hccr);
1055
1056 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
1057 RD_REG_DWORD(&reg->hccr);
1058
1059 WRT_REG_DWORD(&reg->hccr, HCCRX_CLR_RISC_RESET);
1060 RD_REG_DWORD(&reg->hccr);
1061
1062 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1063 for (cnt = 6000000 ; cnt && d2; cnt--) {
1064 udelay(5);
1065 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
1066 barrier();
1067 }
1068
1069 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez124f85e2009-01-05 11:18:06 -08001070
1071 if (IS_NOPOLLING_TYPE(ha))
1072 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001073}
1074
1075/**
Andrew Vasquez88c26662005-07-08 17:59:26 -07001076 * qla24xx_reset_chip() - Reset ISP24xx chip.
1077 * @ha: HA context
1078 *
1079 * Returns 0 on success.
1080 */
1081void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001082qla24xx_reset_chip(scsi_qla_host_t *vha)
Andrew Vasquez88c26662005-07-08 17:59:26 -07001083{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001084 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez85880802009-12-15 21:29:46 -08001085
1086 if (pci_channel_offline(ha->pdev) &&
1087 ha->flags.pci_channel_io_perm_failure) {
1088 return;
1089 }
1090
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001091 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001092
1093 /* Perform RISC reset. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001094 qla24xx_reset_risc(vha);
Andrew Vasquez88c26662005-07-08 17:59:26 -07001095}
1096
1097/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 * qla2x00_chip_diag() - Test chip for proper operation.
1099 * @ha: HA context
1100 *
1101 * Returns 0 on success.
1102 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001103int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001104qla2x00_chip_diag(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
1106 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001107 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001108 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 unsigned long flags = 0;
1110 uint16_t data;
1111 uint32_t cnt;
1112 uint16_t mb[5];
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001113 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 /* Assume a failed state */
1116 rval = QLA_FUNCTION_FAILED;
1117
1118 DEBUG3(printk("scsi(%ld): Testing device at %lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001119 vha->host_no, (u_long)&reg->flash_address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 spin_lock_irqsave(&ha->hardware_lock, flags);
1122
1123 /* Reset ISP chip. */
1124 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
1125
1126 /*
1127 * We need to have a delay here since the card will not respond while
1128 * in reset causing an MCA on some architectures.
1129 */
1130 udelay(20);
1131 data = qla2x00_debounce_register(&reg->ctrl_status);
1132 for (cnt = 6000000 ; cnt && (data & CSR_ISP_SOFT_RESET); cnt--) {
1133 udelay(5);
1134 data = RD_REG_WORD(&reg->ctrl_status);
1135 barrier();
1136 }
1137
1138 if (!cnt)
1139 goto chip_diag_failed;
1140
1141 DEBUG3(printk("scsi(%ld): Reset register cleared by chip reset\n",
Andrew Vasquez76403352009-04-06 22:33:39 -07001142 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 /* Reset RISC processor. */
1145 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
1146 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
1147
1148 /* Workaround for QLA2312 PCI parity error */
1149 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
1150 data = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 0));
1151 for (cnt = 6000000; cnt && (data == MBS_BUSY); cnt--) {
1152 udelay(5);
1153 data = RD_MAILBOX_REG(ha, reg, 0);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001154 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156 } else
1157 udelay(10);
1158
1159 if (!cnt)
1160 goto chip_diag_failed;
1161
1162 /* Check product ID of chip */
Andrew Vasquez76403352009-04-06 22:33:39 -07001163 DEBUG3(printk("scsi(%ld): Checking product ID of chip\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
1166 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
1167 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
1168 mb[4] = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 4));
1169 if (mb[1] != PROD_ID_1 || (mb[2] != PROD_ID_2 && mb[2] != PROD_ID_2a) ||
1170 mb[3] != PROD_ID_3) {
1171 qla_printk(KERN_WARNING, ha,
1172 "Wrong product ID = 0x%x,0x%x,0x%x\n", mb[1], mb[2], mb[3]);
1173
1174 goto chip_diag_failed;
1175 }
1176 ha->product_id[0] = mb[1];
1177 ha->product_id[1] = mb[2];
1178 ha->product_id[2] = mb[3];
1179 ha->product_id[3] = mb[4];
1180
1181 /* Adjust fw RISC transfer size */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001182 if (req->length > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
1184 else
1185 ha->fw_transfer_size = REQUEST_ENTRY_SIZE *
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001186 req->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 if (IS_QLA2200(ha) &&
1189 RD_MAILBOX_REG(ha, reg, 7) == QLA2200A_RISC_ROM_VER) {
1190 /* Limit firmware transfer size with a 2200A */
1191 DEBUG3(printk("scsi(%ld): Found QLA2200A chip.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001192 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001194 ha->device_type |= DT_ISP2200A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 ha->fw_transfer_size = 128;
1196 }
1197
1198 /* Wrap Incoming Mailboxes Test. */
1199 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1200
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001201 DEBUG3(printk("scsi(%ld): Checking mailboxes.\n", vha->host_no));
1202 rval = qla2x00_mbx_reg_test(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (rval) {
1204 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001205 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 qla_printk(KERN_WARNING, ha,
1207 "Failed mailbox send register test\n");
1208 }
1209 else {
1210 /* Flag a successful rval */
1211 rval = QLA_SUCCESS;
1212 }
1213 spin_lock_irqsave(&ha->hardware_lock, flags);
1214
1215chip_diag_failed:
1216 if (rval)
1217 DEBUG2_3(printk("scsi(%ld): Chip diagnostics **** FAILED "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001218 "****\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1221
1222 return (rval);
1223}
1224
1225/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001226 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
1227 * @ha: HA context
1228 *
1229 * Returns 0 on success.
1230 */
1231int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001232qla24xx_chip_diag(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001233{
1234 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001235 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001236 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001237
Giridhar Malavalia9083012010-04-12 17:59:55 -07001238 if (IS_QLA82XX(ha))
1239 return QLA_SUCCESS;
1240
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001241 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * req->length;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001242
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001243 rval = qla2x00_mbx_reg_test(vha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001244 if (rval) {
1245 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001246 vha->host_no));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001247 qla_printk(KERN_WARNING, ha,
1248 "Failed mailbox send register test\n");
1249 } else {
1250 /* Flag a successful rval */
1251 rval = QLA_SUCCESS;
1252 }
1253
1254 return rval;
1255}
1256
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001257void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001258qla2x00_alloc_fw_dump(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001259{
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001260 int rval;
1261 uint32_t dump_size, fixed_size, mem_size, req_q_size, rsp_q_size,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001262 eft_size, fce_size, mq_size;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001263 dma_addr_t tc_dma;
1264 void *tc;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001265 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001266 struct req_que *req = ha->req_q_map[0];
1267 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001268
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001269 if (ha->fw_dump) {
1270 qla_printk(KERN_WARNING, ha,
1271 "Firmware dump previously allocated.\n");
1272 return;
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001273 }
1274
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001275 ha->fw_dumped = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001276 fixed_size = mem_size = eft_size = fce_size = mq_size = 0;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001277 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1278 fixed_size = sizeof(struct qla2100_fw_dump);
1279 } else if (IS_QLA23XX(ha)) {
1280 fixed_size = offsetof(struct qla2300_fw_dump, data_ram);
1281 mem_size = (ha->fw_memory_size - 0x11000 + 1) *
1282 sizeof(uint16_t);
Andrew Vasqueze4289242007-07-19 15:05:56 -07001283 } else if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001284 if (IS_QLA81XX(ha))
1285 fixed_size = offsetof(struct qla81xx_fw_dump, ext_mem);
1286 else if (IS_QLA25XX(ha))
1287 fixed_size = offsetof(struct qla25xx_fw_dump, ext_mem);
1288 else
1289 fixed_size = offsetof(struct qla24xx_fw_dump, ext_mem);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001290 mem_size = (ha->fw_memory_size - 0x100000 + 1) *
1291 sizeof(uint32_t);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001292 if (ha->mqenable)
1293 mq_size = sizeof(struct qla2xxx_mq_chain);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001294 /* Allocate memory for Fibre Channel Event Buffer. */
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001295 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001296 goto try_eft;
1297
1298 tc = dma_alloc_coherent(&ha->pdev->dev, FCE_SIZE, &tc_dma,
1299 GFP_KERNEL);
1300 if (!tc) {
1301 qla_printk(KERN_WARNING, ha, "Unable to allocate "
1302 "(%d KB) for FCE.\n", FCE_SIZE / 1024);
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001303 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001304 }
1305
1306 memset(tc, 0, FCE_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001307 rval = qla2x00_enable_fce_trace(vha, tc_dma, FCE_NUM_BUFFERS,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001308 ha->fce_mb, &ha->fce_bufs);
1309 if (rval) {
1310 qla_printk(KERN_WARNING, ha, "Unable to initialize "
1311 "FCE (%d).\n", rval);
1312 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, tc,
1313 tc_dma);
1314 ha->flags.fce_enabled = 0;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001315 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001316 }
1317
1318 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for FCE...\n",
1319 FCE_SIZE / 1024);
1320
Giridhar Malavali7d9dade2009-03-24 09:07:58 -07001321 fce_size = sizeof(struct qla2xxx_fce_chain) + FCE_SIZE;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001322 ha->flags.fce_enabled = 1;
1323 ha->fce_dma = tc_dma;
1324 ha->fce = tc;
1325try_eft:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001326 /* Allocate memory for Extended Trace Buffer. */
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001327 tc = dma_alloc_coherent(&ha->pdev->dev, EFT_SIZE, &tc_dma,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001328 GFP_KERNEL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001329 if (!tc) {
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001330 qla_printk(KERN_WARNING, ha, "Unable to allocate "
1331 "(%d KB) for EFT.\n", EFT_SIZE / 1024);
1332 goto cont_alloc;
1333 }
1334
Andrew Vasquezfc447652008-01-17 09:02:18 -08001335 memset(tc, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001336 rval = qla2x00_enable_eft_trace(vha, tc_dma, EFT_NUM_BUFFERS);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001337 if (rval) {
1338 qla_printk(KERN_WARNING, ha, "Unable to initialize "
1339 "EFT (%d).\n", rval);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001340 dma_free_coherent(&ha->pdev->dev, EFT_SIZE, tc,
1341 tc_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001342 goto cont_alloc;
1343 }
1344
1345 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for EFT...\n",
1346 EFT_SIZE / 1024);
1347
1348 eft_size = EFT_SIZE;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001349 ha->eft_dma = tc_dma;
1350 ha->eft = tc;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001351 }
1352cont_alloc:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001353 req_q_size = req->length * sizeof(request_t);
1354 rsp_q_size = rsp->length * sizeof(response_t);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001355
1356 dump_size = offsetof(struct qla2xxx_fw_dump, isp);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001357 dump_size += fixed_size + mem_size + req_q_size + rsp_q_size + eft_size;
Andrew Vasquezbb99de62009-01-05 11:18:08 -08001358 ha->chain_offset = dump_size;
1359 dump_size += mq_size + fce_size;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001360
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001361 ha->fw_dump = vmalloc(dump_size);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001362 if (!ha->fw_dump) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001363 qla_printk(KERN_WARNING, ha, "Unable to allocate (%d KB) for "
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001364 "firmware dump!!!\n", dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001365
1366 if (ha->eft) {
1367 dma_free_coherent(&ha->pdev->dev, eft_size, ha->eft,
1368 ha->eft_dma);
1369 ha->eft = NULL;
1370 ha->eft_dma = 0;
1371 }
1372 return;
1373 }
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001374 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for firmware dump...\n",
1375 dump_size / 1024);
1376
1377 ha->fw_dump_len = dump_size;
1378 ha->fw_dump->signature[0] = 'Q';
1379 ha->fw_dump->signature[1] = 'L';
1380 ha->fw_dump->signature[2] = 'G';
1381 ha->fw_dump->signature[3] = 'C';
1382 ha->fw_dump->version = __constant_htonl(1);
1383
1384 ha->fw_dump->fixed_size = htonl(fixed_size);
1385 ha->fw_dump->mem_size = htonl(mem_size);
1386 ha->fw_dump->req_q_size = htonl(req_q_size);
1387 ha->fw_dump->rsp_q_size = htonl(rsp_q_size);
1388
1389 ha->fw_dump->eft_size = htonl(eft_size);
1390 ha->fw_dump->eft_addr_l = htonl(LSD(ha->eft_dma));
1391 ha->fw_dump->eft_addr_h = htonl(MSD(ha->eft_dma));
1392
1393 ha->fw_dump->header_size =
1394 htonl(offsetof(struct qla2xxx_fw_dump, isp));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001395}
1396
Andrew Vasquez18e75552009-06-03 09:55:30 -07001397static int
1398qla81xx_mpi_sync(scsi_qla_host_t *vha)
1399{
1400#define MPS_MASK 0xe0
1401 int rval;
1402 uint16_t dc;
1403 uint32_t dw;
1404 struct qla_hw_data *ha = vha->hw;
1405
1406 if (!IS_QLA81XX(vha->hw))
1407 return QLA_SUCCESS;
1408
1409 rval = qla2x00_write_ram_word(vha, 0x7c00, 1);
1410 if (rval != QLA_SUCCESS) {
1411 DEBUG2(qla_printk(KERN_WARNING, ha,
1412 "Sync-MPI: Unable to acquire semaphore.\n"));
1413 goto done;
1414 }
1415
1416 pci_read_config_word(vha->hw->pdev, 0x54, &dc);
1417 rval = qla2x00_read_ram_word(vha, 0x7a15, &dw);
1418 if (rval != QLA_SUCCESS) {
1419 DEBUG2(qla_printk(KERN_WARNING, ha,
1420 "Sync-MPI: Unable to read sync.\n"));
1421 goto done_release;
1422 }
1423
1424 dc &= MPS_MASK;
1425 if (dc == (dw & MPS_MASK))
1426 goto done_release;
1427
1428 dw &= ~MPS_MASK;
1429 dw |= dc;
1430 rval = qla2x00_write_ram_word(vha, 0x7a15, dw);
1431 if (rval != QLA_SUCCESS) {
1432 DEBUG2(qla_printk(KERN_WARNING, ha,
1433 "Sync-MPI: Unable to gain sync.\n"));
1434 }
1435
1436done_release:
1437 rval = qla2x00_write_ram_word(vha, 0x7c00, 0);
1438 if (rval != QLA_SUCCESS) {
1439 DEBUG2(qla_printk(KERN_WARNING, ha,
1440 "Sync-MPI: Unable to release semaphore.\n"));
1441 }
1442
1443done:
1444 return rval;
1445}
1446
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001447/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 * qla2x00_setup_chip() - Load and start RISC firmware.
1449 * @ha: HA context
1450 *
1451 * Returns 0 on success.
1452 */
1453static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001454qla2x00_setup_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001456 int rval;
1457 uint32_t srisc_address = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001458 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001459 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1460 unsigned long flags;
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001461 uint16_t fw_major_version;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001462
Giridhar Malavalia9083012010-04-12 17:59:55 -07001463 if (IS_QLA82XX(ha)) {
1464 rval = ha->isp_ops->load_risc(vha, &srisc_address);
1465 if (rval == QLA_SUCCESS)
1466 goto enable_82xx_npiv;
Giridhar Malavalib9637522010-05-28 15:08:15 -07001467 else
1468 goto failed;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001469 }
1470
Andrew Vasquez3db06522008-01-31 12:33:49 -08001471 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1472 /* Disable SRAM, Instruction RAM and GP RAM parity. */
1473 spin_lock_irqsave(&ha->hardware_lock, flags);
1474 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x0));
1475 RD_REG_WORD(&reg->hccr);
1476 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Andrew Vasquez18e75552009-06-03 09:55:30 -07001479 qla81xx_mpi_sync(vha);
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 /* Load firmware sequences */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001482 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001483 if (rval == QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 DEBUG(printk("scsi(%ld): Verifying Checksum of loaded RISC "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001485 "code.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001487 rval = qla2x00_verify_checksum(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (rval == QLA_SUCCESS) {
1489 /* Start firmware execution. */
1490 DEBUG(printk("scsi(%ld): Checksum OK, start "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001491 "firmware.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001493 rval = qla2x00_execute_fw(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 /* Retrieve firmware information. */
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001495 if (rval == QLA_SUCCESS) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07001496enable_82xx_npiv:
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001497 fw_major_version = ha->fw_major_version;
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001498 rval = qla2x00_get_fw_version(vha,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 &ha->fw_major_version,
1500 &ha->fw_minor_version,
1501 &ha->fw_subminor_version,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001502 &ha->fw_attributes, &ha->fw_memory_size,
Andrew Vasquez55a96152009-03-24 09:08:03 -07001503 ha->mpi_version, &ha->mpi_capabilities,
1504 ha->phy_version);
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001505 if (rval != QLA_SUCCESS)
1506 goto failed;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001507 ha->flags.npiv_supported = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001508 if (IS_QLA2XXX_MIDTYPE(ha) &&
Mike Hernandez946fb892008-08-13 21:36:59 -07001509 (ha->fw_attributes & BIT_2)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001510 ha->flags.npiv_supported = 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001511 if ((!ha->max_npiv_vports) ||
1512 ((ha->max_npiv_vports + 1) %
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001513 MIN_MULTI_ID_FABRIC))
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001514 ha->max_npiv_vports =
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001515 MIN_MULTI_ID_FABRIC - 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001516 }
Andrew Vasquez24a08132009-03-24 09:08:16 -07001517 qla2x00_get_resource_cnts(vha, NULL,
1518 &ha->fw_xcb_count, NULL, NULL,
Andrew Vasquezf3a0a772009-10-13 15:16:49 -07001519 &ha->max_npiv_vports, NULL);
Andrew Vasquezd743de62009-03-24 09:08:15 -07001520
Giridhar Malavalia9083012010-04-12 17:59:55 -07001521 if (!fw_major_version && ql2xallocfwdump) {
1522 if (!IS_QLA82XX(ha))
1523 qla2x00_alloc_fw_dump(vha);
1524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526 } else {
1527 DEBUG2(printk(KERN_INFO
1528 "scsi(%ld): ISP Firmware failed checksum.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001529 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
1531 }
1532
Andrew Vasquez3db06522008-01-31 12:33:49 -08001533 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1534 /* Enable proper parity. */
1535 spin_lock_irqsave(&ha->hardware_lock, flags);
1536 if (IS_QLA2300(ha))
1537 /* SRAM parity */
1538 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x1);
1539 else
1540 /* SRAM, Instruction RAM and GP RAM parity */
1541 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x7);
1542 RD_REG_WORD(&reg->hccr);
1543 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1544 }
1545
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001546 if (rval == QLA_SUCCESS && IS_FAC_REQUIRED(ha)) {
1547 uint32_t size;
1548
1549 rval = qla81xx_fac_get_sector_size(vha, &size);
1550 if (rval == QLA_SUCCESS) {
1551 ha->flags.fac_supported = 1;
1552 ha->fdt_block_size = size << 2;
1553 } else {
1554 qla_printk(KERN_ERR, ha,
1555 "Unsupported FAC firmware (%d.%02d.%02d).\n",
1556 ha->fw_major_version, ha->fw_minor_version,
1557 ha->fw_subminor_version);
1558 }
1559 }
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001560failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (rval) {
1562 DEBUG2_3(printk("scsi(%ld): Setup chip **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001563 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
1565
1566 return (rval);
1567}
1568
1569/**
1570 * qla2x00_init_response_q_entries() - Initializes response queue entries.
1571 * @ha: HA context
1572 *
1573 * Beginning of request ring has initialization control block already built
1574 * by nvram config routine.
1575 *
1576 * Returns 0 on success.
1577 */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001578void
1579qla2x00_init_response_q_entries(struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
1581 uint16_t cnt;
1582 response_t *pkt;
1583
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001584 rsp->ring_ptr = rsp->ring;
1585 rsp->ring_index = 0;
1586 rsp->status_srb = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001587 pkt = rsp->ring_ptr;
1588 for (cnt = 0; cnt < rsp->length; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 pkt->signature = RESPONSE_PROCESSED;
1590 pkt++;
1591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
1594/**
1595 * qla2x00_update_fw_options() - Read and process firmware options.
1596 * @ha: HA context
1597 *
1598 * Returns 0 on success.
1599 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001600void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001601qla2x00_update_fw_options(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 uint16_t swing, emphasis, tx_sens, rx_sens;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001604 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 memset(ha->fw_options, 0, sizeof(ha->fw_options));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001607 qla2x00_get_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1610 return;
1611
1612 /* Serial Link options. */
1613 DEBUG3(printk("scsi(%ld): Serial link options:\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001614 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 DEBUG3(qla2x00_dump_buffer((uint8_t *)&ha->fw_seriallink_options,
1616 sizeof(ha->fw_seriallink_options)));
1617
1618 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1619 if (ha->fw_seriallink_options[3] & BIT_2) {
1620 ha->fw_options[1] |= FO1_SET_EMPHASIS_SWING;
1621
1622 /* 1G settings */
1623 swing = ha->fw_seriallink_options[2] & (BIT_2 | BIT_1 | BIT_0);
1624 emphasis = (ha->fw_seriallink_options[2] &
1625 (BIT_4 | BIT_3)) >> 3;
1626 tx_sens = ha->fw_seriallink_options[0] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001627 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 rx_sens = (ha->fw_seriallink_options[0] &
1629 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1630 ha->fw_options[10] = (emphasis << 14) | (swing << 8);
1631 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1632 if (rx_sens == 0x0)
1633 rx_sens = 0x3;
1634 ha->fw_options[10] |= (tx_sens << 4) | rx_sens;
1635 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1636 ha->fw_options[10] |= BIT_5 |
1637 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1638 (tx_sens & (BIT_1 | BIT_0));
1639
1640 /* 2G settings */
1641 swing = (ha->fw_seriallink_options[2] &
1642 (BIT_7 | BIT_6 | BIT_5)) >> 5;
1643 emphasis = ha->fw_seriallink_options[3] & (BIT_1 | BIT_0);
1644 tx_sens = ha->fw_seriallink_options[1] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001645 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 rx_sens = (ha->fw_seriallink_options[1] &
1647 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1648 ha->fw_options[11] = (emphasis << 14) | (swing << 8);
1649 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1650 if (rx_sens == 0x0)
1651 rx_sens = 0x3;
1652 ha->fw_options[11] |= (tx_sens << 4) | rx_sens;
1653 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1654 ha->fw_options[11] |= BIT_5 |
1655 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1656 (tx_sens & (BIT_1 | BIT_0));
1657 }
1658
1659 /* FCP2 options. */
1660 /* Return command IOCBs without waiting for an ABTS to complete. */
1661 ha->fw_options[3] |= BIT_13;
1662
1663 /* LED scheme. */
1664 if (ha->flags.enable_led_scheme)
1665 ha->fw_options[2] |= BIT_12;
1666
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08001667 /* Detect ISP6312. */
1668 if (IS_QLA6312(ha))
1669 ha->fw_options[2] |= BIT_13;
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 /* Update firmware options. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001672 qla2x00_set_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
1674
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001675void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001676qla24xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001677{
1678 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001679 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001680
Giridhar Malavalia9083012010-04-12 17:59:55 -07001681 if (IS_QLA82XX(ha))
1682 return;
1683
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001684 /* Update Serial Link options. */
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001685 if ((le16_to_cpu(ha->fw_seriallink_options24[0]) & BIT_0) == 0)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001686 return;
1687
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001688 rval = qla2x00_set_serdes_params(vha,
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001689 le16_to_cpu(ha->fw_seriallink_options24[1]),
1690 le16_to_cpu(ha->fw_seriallink_options24[2]),
1691 le16_to_cpu(ha->fw_seriallink_options24[3]));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001692 if (rval != QLA_SUCCESS) {
1693 qla_printk(KERN_WARNING, ha,
1694 "Unable to update Serial Link options (%x).\n", rval);
1695 }
1696}
1697
1698void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001699qla2x00_config_rings(struct scsi_qla_host *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001700{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001701 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001702 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001703 struct req_que *req = ha->req_q_map[0];
1704 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001705
1706 /* Setup ring parameters in initialization control block. */
1707 ha->init_cb->request_q_outpointer = __constant_cpu_to_le16(0);
1708 ha->init_cb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001709 ha->init_cb->request_q_length = cpu_to_le16(req->length);
1710 ha->init_cb->response_q_length = cpu_to_le16(rsp->length);
1711 ha->init_cb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1712 ha->init_cb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1713 ha->init_cb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1714 ha->init_cb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001715
1716 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), 0);
1717 WRT_REG_WORD(ISP_REQ_Q_OUT(ha, reg), 0);
1718 WRT_REG_WORD(ISP_RSP_Q_IN(ha, reg), 0);
1719 WRT_REG_WORD(ISP_RSP_Q_OUT(ha, reg), 0);
1720 RD_REG_WORD(ISP_RSP_Q_OUT(ha, reg)); /* PCI Posting. */
1721}
1722
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001723void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001724qla24xx_config_rings(struct scsi_qla_host *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001725{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001726 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001727 device_reg_t __iomem *reg = ISP_QUE_REG(ha, 0);
1728 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1729 struct qla_msix_entry *msix;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001730 struct init_cb_24xx *icb;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001731 uint16_t rid = 0;
1732 struct req_que *req = ha->req_q_map[0];
1733 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001734
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001735/* Setup ring parameters in initialization control block. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001736 icb = (struct init_cb_24xx *)ha->init_cb;
1737 icb->request_q_outpointer = __constant_cpu_to_le16(0);
1738 icb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001739 icb->request_q_length = cpu_to_le16(req->length);
1740 icb->response_q_length = cpu_to_le16(rsp->length);
1741 icb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1742 icb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1743 icb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1744 icb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001745
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001746 if (ha->mqenable) {
1747 icb->qos = __constant_cpu_to_le16(QLA_DEFAULT_QUE_QOS);
1748 icb->rid = __constant_cpu_to_le16(rid);
1749 if (ha->flags.msix_enabled) {
1750 msix = &ha->msix_entries[1];
1751 DEBUG2_17(printk(KERN_INFO
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001752 "Registering vector 0x%x for base que\n", msix->entry));
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001753 icb->msix = cpu_to_le16(msix->entry);
1754 }
1755 /* Use alternate PCI bus number */
1756 if (MSB(rid))
1757 icb->firmware_options_2 |=
1758 __constant_cpu_to_le32(BIT_19);
1759 /* Use alternate PCI devfn */
1760 if (LSB(rid))
1761 icb->firmware_options_2 |=
1762 __constant_cpu_to_le32(BIT_18);
1763
Anirban Chakraborty31557542009-12-02 10:36:55 -08001764 /* Use Disable MSIX Handshake mode for capable adapters */
1765 if (IS_MSIX_NACK_CAPABLE(ha)) {
1766 icb->firmware_options_2 &=
1767 __constant_cpu_to_le32(~BIT_22);
1768 ha->flags.disable_msix_handshake = 1;
1769 qla_printk(KERN_INFO, ha,
1770 "MSIX Handshake Disable Mode turned on\n");
1771 } else {
1772 icb->firmware_options_2 |=
1773 __constant_cpu_to_le32(BIT_22);
1774 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001775 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_23);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001776
1777 WRT_REG_DWORD(&reg->isp25mq.req_q_in, 0);
1778 WRT_REG_DWORD(&reg->isp25mq.req_q_out, 0);
1779 WRT_REG_DWORD(&reg->isp25mq.rsp_q_in, 0);
1780 WRT_REG_DWORD(&reg->isp25mq.rsp_q_out, 0);
1781 } else {
1782 WRT_REG_DWORD(&reg->isp24.req_q_in, 0);
1783 WRT_REG_DWORD(&reg->isp24.req_q_out, 0);
1784 WRT_REG_DWORD(&reg->isp24.rsp_q_in, 0);
1785 WRT_REG_DWORD(&reg->isp24.rsp_q_out, 0);
1786 }
1787 /* PCI posting */
1788 RD_REG_DWORD(&ioreg->hccr);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001789}
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791/**
1792 * qla2x00_init_rings() - Initializes firmware.
1793 * @ha: HA context
1794 *
1795 * Beginning of request ring has initialization control block already built
1796 * by nvram config routine.
1797 *
1798 * Returns 0 on success.
1799 */
1800static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001801qla2x00_init_rings(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
1803 int rval;
1804 unsigned long flags = 0;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001805 int cnt, que;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001806 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001807 struct req_que *req;
1808 struct rsp_que *rsp;
1809 struct scsi_qla_host *vp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001810 struct mid_init_cb_24xx *mid_init_cb =
1811 (struct mid_init_cb_24xx *) ha->init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 spin_lock_irqsave(&ha->hardware_lock, flags);
1814
1815 /* Clear outstanding commands array. */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001816 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001817 req = ha->req_q_map[que];
1818 if (!req)
1819 continue;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001820 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++)
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001821 req->outstanding_cmds[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001823 req->current_outstanding_cmd = 1;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001824
1825 /* Initialize firmware. */
1826 req->ring_ptr = req->ring;
1827 req->ring_index = 0;
1828 req->cnt = req->length;
1829 }
1830
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001831 for (que = 0; que < ha->max_rsp_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001832 rsp = ha->rsp_q_map[que];
1833 if (!rsp)
1834 continue;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001835 /* Initialize response queue entries */
1836 qla2x00_init_response_q_entries(rsp);
1837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 /* Clear RSCN queue. */
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001840 list_for_each_entry(vp, &ha->vp_list, list) {
1841 vp->rscn_in_ptr = 0;
1842 vp->rscn_out_ptr = 0;
1843 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001844 ha->isp_ops->config_rings(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
1846 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1847
1848 /* Update any ISP specific firmware options before initialization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001849 ha->isp_ops->update_fw_options(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001851 DEBUG(printk("scsi(%ld): Issue init firmware.\n", vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001852
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001853 if (ha->flags.npiv_supported) {
1854 if (ha->operating_mode == LOOP)
1855 ha->max_npiv_vports = MIN_MULTI_ID_FABRIC - 1;
Seokmann Juc48339d2008-01-17 09:02:19 -08001856 mid_init_cb->count = cpu_to_le16(ha->max_npiv_vports);
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001857 }
1858
Andrew Vasquez24a08132009-03-24 09:08:16 -07001859 if (IS_FWI2_CAPABLE(ha)) {
1860 mid_init_cb->options = __constant_cpu_to_le16(BIT_1);
1861 mid_init_cb->init_cb.execution_throttle =
1862 cpu_to_le16(ha->fw_xcb_count);
1863 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001864
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001865 rval = qla2x00_init_firmware(vha, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (rval) {
1867 DEBUG2_3(printk("scsi(%ld): Init firmware **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001868 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 } else {
1870 DEBUG3(printk("scsi(%ld): Init firmware -- success.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001871 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
1873
1874 return (rval);
1875}
1876
1877/**
1878 * qla2x00_fw_ready() - Waits for firmware ready.
1879 * @ha: HA context
1880 *
1881 * Returns 0 on success.
1882 */
1883static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001884qla2x00_fw_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
1886 int rval;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001887 unsigned long wtime, mtime, cs84xx_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 uint16_t min_wait; /* Minimum wait time if loop is down */
1889 uint16_t wait_time; /* Wait time if loop is coming ready */
Andrew Vasquez656e8912009-06-03 09:55:29 -07001890 uint16_t state[5];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001891 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 rval = QLA_SUCCESS;
1894
1895 /* 20 seconds for loop down. */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001896 min_wait = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 /*
1899 * Firmware should take at most one RATOV to login, plus 5 seconds for
1900 * our own processing.
1901 */
1902 if ((wait_time = (ha->retry_count*ha->login_timeout) + 5) < min_wait) {
1903 wait_time = min_wait;
1904 }
1905
1906 /* Min wait time if loop down */
1907 mtime = jiffies + (min_wait * HZ);
1908
1909 /* wait time before firmware ready */
1910 wtime = jiffies + (wait_time * HZ);
1911
1912 /* Wait for ISP to finish LIP */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001913 if (!vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 qla_printk(KERN_INFO, ha, "Waiting for LIP to complete...\n");
1915
1916 DEBUG3(printk("scsi(%ld): Waiting for LIP to complete...\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001917 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001920 rval = qla2x00_get_firmware_state(vha, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (rval == QLA_SUCCESS) {
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001922 if (state[0] < FSTATE_LOSS_OF_SYNC) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001923 vha->device_flags &= ~DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001925 if (IS_QLA84XX(ha) && state[0] != FSTATE_READY) {
1926 DEBUG16(printk("scsi(%ld): fw_state=%x "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001927 "84xx=%x.\n", vha->host_no, state[0],
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001928 state[2]));
1929 if ((state[2] & FSTATE_LOGGED_IN) &&
1930 (state[2] & FSTATE_WAITING_FOR_VERIFY)) {
1931 DEBUG16(printk("scsi(%ld): Sending "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001932 "verify iocb.\n", vha->host_no));
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001933
1934 cs84xx_time = jiffies;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001935 rval = qla84xx_init_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001936 if (rval != QLA_SUCCESS)
1937 break;
1938
1939 /* Add time taken to initialize. */
1940 cs84xx_time = jiffies - cs84xx_time;
1941 wtime += cs84xx_time;
1942 mtime += cs84xx_time;
1943 DEBUG16(printk("scsi(%ld): Increasing "
1944 "wait time by %ld. New time %ld\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001945 vha->host_no, cs84xx_time, wtime));
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001946 }
1947 } else if (state[0] == FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 DEBUG(printk("scsi(%ld): F/W Ready - OK \n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001949 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001951 qla2x00_get_retry_cnt(vha, &ha->retry_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 &ha->login_timeout, &ha->r_a_tov);
1953
1954 rval = QLA_SUCCESS;
1955 break;
1956 }
1957
1958 rval = QLA_FUNCTION_FAILED;
1959
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001960 if (atomic_read(&vha->loop_down_timer) &&
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001961 state[0] != FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 /* Loop down. Timeout on min_wait for states
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001963 * other than Wait for Login.
1964 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 if (time_after_eq(jiffies, mtime)) {
1966 qla_printk(KERN_INFO, ha,
1967 "Cable is unplugged...\n");
1968
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001969 vha->device_flags |= DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 break;
1971 }
1972 }
1973 } else {
1974 /* Mailbox cmd failed. Timeout on min_wait. */
Santosh Vernekarcdbb0a4f2010-05-28 15:08:25 -07001975 if (time_after_eq(jiffies, mtime) ||
1976 (IS_QLA82XX(ha) && ha->flags.fw_hung))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 break;
1978 }
1979
1980 if (time_after_eq(jiffies, wtime))
1981 break;
1982
1983 /* Delay for a while */
1984 msleep(500);
1985
1986 DEBUG3(printk("scsi(%ld): fw_state=%x curr time=%lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001987 vha->host_no, state[0], jiffies));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 } while (1);
1989
Andrew Vasquez656e8912009-06-03 09:55:29 -07001990 DEBUG(printk("scsi(%ld): fw_state=%x (%x, %x, %x, %x) curr time=%lx.\n",
1991 vha->host_no, state[0], state[1], state[2], state[3], state[4],
1992 jiffies));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 if (rval) {
1995 DEBUG2_3(printk("scsi(%ld): Firmware ready **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001996 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
1998
1999 return (rval);
2000}
2001
2002/*
2003* qla2x00_configure_hba
2004* Setup adapter context.
2005*
2006* Input:
2007* ha = adapter state pointer.
2008*
2009* Returns:
2010* 0 = success
2011*
2012* Context:
2013* Kernel context.
2014*/
2015static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002016qla2x00_configure_hba(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
2018 int rval;
2019 uint16_t loop_id;
2020 uint16_t topo;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002021 uint16_t sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 uint8_t al_pa;
2023 uint8_t area;
2024 uint8_t domain;
2025 char connect_type[22];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002026 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 /* Get host addresses. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002029 rval = qla2x00_get_adapter_id(vha,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002030 &loop_id, &al_pa, &area, &domain, &topo, &sw_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002032 if (LOOP_TRANSITION(vha) || atomic_read(&ha->loop_down_timer) ||
Ravi Anand33135aa2005-11-08 14:37:20 -08002033 (rval == QLA_COMMAND_ERROR && loop_id == 0x7)) {
2034 DEBUG2(printk("%s(%ld) Loop is in a transition state\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002035 __func__, vha->host_no));
Ravi Anand33135aa2005-11-08 14:37:20 -08002036 } else {
2037 qla_printk(KERN_WARNING, ha,
2038 "ERROR -- Unable to get host loop ID.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002039 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Ravi Anand33135aa2005-11-08 14:37:20 -08002040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 return (rval);
2042 }
2043
2044 if (topo == 4) {
2045 qla_printk(KERN_INFO, ha,
2046 "Cannot get topology - retrying.\n");
2047 return (QLA_FUNCTION_FAILED);
2048 }
2049
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002050 vha->loop_id = loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 /* initialize */
2053 ha->min_external_loopid = SNS_FIRST_LOOP_ID;
2054 ha->operating_mode = LOOP;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002055 ha->switch_cap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
2057 switch (topo) {
2058 case 0:
2059 DEBUG3(printk("scsi(%ld): HBA in NL topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002060 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 ha->current_topology = ISP_CFG_NL;
2062 strcpy(connect_type, "(Loop)");
2063 break;
2064
2065 case 1:
2066 DEBUG3(printk("scsi(%ld): HBA in FL topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002067 vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002068 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 ha->current_topology = ISP_CFG_FL;
2070 strcpy(connect_type, "(FL_Port)");
2071 break;
2072
2073 case 2:
2074 DEBUG3(printk("scsi(%ld): HBA in N P2P topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002075 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 ha->operating_mode = P2P;
2077 ha->current_topology = ISP_CFG_N;
2078 strcpy(connect_type, "(N_Port-to-N_Port)");
2079 break;
2080
2081 case 3:
2082 DEBUG3(printk("scsi(%ld): HBA in F P2P topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002083 vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002084 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 ha->operating_mode = P2P;
2086 ha->current_topology = ISP_CFG_F;
2087 strcpy(connect_type, "(F_Port)");
2088 break;
2089
2090 default:
2091 DEBUG3(printk("scsi(%ld): HBA in unknown topology %x. "
2092 "Using NL.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002093 vha->host_no, topo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 ha->current_topology = ISP_CFG_NL;
2095 strcpy(connect_type, "(Loop)");
2096 break;
2097 }
2098
2099 /* Save Host port and loop ID. */
2100 /* byte order - Big Endian */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002101 vha->d_id.b.domain = domain;
2102 vha->d_id.b.area = area;
2103 vha->d_id.b.al_pa = al_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002105 if (!vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 qla_printk(KERN_INFO, ha,
2107 "Topology - %s, Host Loop address 0x%x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002108 connect_type, vha->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 if (rval) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002111 DEBUG2_3(printk("scsi(%ld): FAILED.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002113 DEBUG3(printk("scsi(%ld): exiting normally.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
2115
2116 return(rval);
2117}
2118
Giridhar Malavalia9083012010-04-12 17:59:55 -07002119inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002120qla2x00_set_model_info(scsi_qla_host_t *vha, uint8_t *model, size_t len,
2121 char *def)
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002122{
2123 char *st, *en;
2124 uint16_t index;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002125 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezab671142009-08-25 11:36:17 -07002126 int use_tbl = !IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
Giridhar Malavalia9083012010-04-12 17:59:55 -07002127 !IS_QLA8XXX_TYPE(ha);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002128
2129 if (memcmp(model, BINZERO, len) != 0) {
2130 strncpy(ha->model_number, model, len);
2131 st = en = ha->model_number;
2132 en += len - 1;
2133 while (en > st) {
2134 if (*en != 0x20 && *en != 0x00)
2135 break;
2136 *en-- = '\0';
2137 }
2138
2139 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002140 if (use_tbl &&
2141 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002142 index < QLA_MODEL_NAMES)
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002143 strncpy(ha->model_desc,
2144 qla2x00_model_name[index * 2 + 1],
2145 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002146 } else {
2147 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07002148 if (use_tbl &&
2149 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002150 index < QLA_MODEL_NAMES) {
2151 strcpy(ha->model_number,
2152 qla2x00_model_name[index * 2]);
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002153 strncpy(ha->model_desc,
2154 qla2x00_model_name[index * 2 + 1],
2155 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002156 } else {
2157 strcpy(ha->model_number, def);
2158 }
2159 }
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002160 if (IS_FWI2_CAPABLE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002161 qla2xxx_get_vpd_field(vha, "\x82", ha->model_desc,
Joe Carnuccio1ee27142008-07-10 16:55:53 -07002162 sizeof(ha->model_desc));
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002163}
2164
David Miller4e08df32007-04-16 12:37:43 -07002165/* On sparc systems, obtain port and node WWN from firmware
2166 * properties.
2167 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002168static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t *vha, nvram_t *nv)
David Miller4e08df32007-04-16 12:37:43 -07002169{
2170#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002171 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07002172 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07002173 struct device_node *dp = pci_device_to_OF_node(pdev);
2174 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07002175 int len;
2176
2177 val = of_get_property(dp, "port-wwn", &len);
2178 if (val && len >= WWN_SIZE)
2179 memcpy(nv->port_name, val, WWN_SIZE);
2180
2181 val = of_get_property(dp, "node-wwn", &len);
2182 if (val && len >= WWN_SIZE)
2183 memcpy(nv->node_name, val, WWN_SIZE);
2184#endif
2185}
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187/*
2188* NVRAM configuration for ISP 2xxx
2189*
2190* Input:
2191* ha = adapter block pointer.
2192*
2193* Output:
2194* initialization control block in response_ring
2195* host adapters parameters in host adapter block
2196*
2197* Returns:
2198* 0 = success.
2199*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002200int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002201qla2x00_nvram_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
David Miller4e08df32007-04-16 12:37:43 -07002203 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002204 uint8_t chksum = 0;
2205 uint16_t cnt;
2206 uint8_t *dptr1, *dptr2;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002207 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002208 init_cb_t *icb = ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07002209 nvram_t *nv = ha->nvram;
2210 uint8_t *ptr = ha->nvram;
Andrew Vasquez3d716442005-07-06 10:30:26 -07002211 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
David Miller4e08df32007-04-16 12:37:43 -07002213 rval = QLA_SUCCESS;
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 /* Determine NVRAM starting address. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002216 ha->nvram_size = sizeof(nvram_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 ha->nvram_base = 0;
2218 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha))
2219 if ((RD_REG_WORD(&reg->ctrl_status) >> 14) == 1)
2220 ha->nvram_base = 0x80;
2221
2222 /* Get NVRAM data and calculate checksum. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002223 ha->isp_ops->read_nvram(vha, ptr, ha->nvram_base, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002224 for (cnt = 0, chksum = 0; cnt < ha->nvram_size; cnt++)
2225 chksum += *ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002227 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Seokmann Ju281afe12007-07-26 13:43:34 -07002228 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 /* Bad NVRAM data, set defaults parameters. */
2231 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' ||
2232 nv->id[2] != 'P' || nv->id[3] != ' ' || nv->nvram_version < 1) {
2233 /* Reset NVRAM data. */
2234 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
2235 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
2236 nv->nvram_version);
David Miller4e08df32007-04-16 12:37:43 -07002237 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
2238 "invalid -- WWPN) defaults.\n");
2239
2240 /*
2241 * Set default initialization control block.
2242 */
2243 memset(nv, 0, ha->nvram_size);
2244 nv->parameter_block_version = ICB_VERSION;
2245
2246 if (IS_QLA23XX(ha)) {
2247 nv->firmware_options[0] = BIT_2 | BIT_1;
2248 nv->firmware_options[1] = BIT_7 | BIT_5;
2249 nv->add_firmware_options[0] = BIT_5;
2250 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2251 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2252 nv->special_options[1] = BIT_7;
2253 } else if (IS_QLA2200(ha)) {
2254 nv->firmware_options[0] = BIT_2 | BIT_1;
2255 nv->firmware_options[1] = BIT_7 | BIT_5;
2256 nv->add_firmware_options[0] = BIT_5;
2257 nv->add_firmware_options[1] = BIT_5 | BIT_4;
2258 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2259 } else if (IS_QLA2100(ha)) {
2260 nv->firmware_options[0] = BIT_3 | BIT_1;
2261 nv->firmware_options[1] = BIT_5;
2262 nv->frame_payload_size = __constant_cpu_to_le16(1024);
2263 }
2264
2265 nv->max_iocb_allocation = __constant_cpu_to_le16(256);
2266 nv->execution_throttle = __constant_cpu_to_le16(16);
2267 nv->retry_count = 8;
2268 nv->retry_delay = 1;
2269
2270 nv->port_name[0] = 33;
2271 nv->port_name[3] = 224;
2272 nv->port_name[4] = 139;
2273
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002274 qla2xxx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07002275
2276 nv->login_timeout = 4;
2277
2278 /*
2279 * Set default host adapter parameters
2280 */
2281 nv->host_p[1] = BIT_2;
2282 nv->reset_delay = 5;
2283 nv->port_down_retry_count = 8;
2284 nv->max_luns_per_target = __constant_cpu_to_le16(8);
2285 nv->link_down_timeout = 60;
2286
2287 rval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
2289
2290#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
2291 /*
2292 * The SN2 does not provide BIOS emulation which means you can't change
2293 * potentially bogus BIOS settings. Force the use of default settings
2294 * for link rate and frame size. Hope that the rest of the settings
2295 * are valid.
2296 */
2297 if (ia64_platform_is("sn2")) {
2298 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2299 if (IS_QLA23XX(ha))
2300 nv->special_options[1] = BIT_7;
2301 }
2302#endif
2303
2304 /* Reset Initialization control block */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002305 memset(icb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 /*
2308 * Setup driver NVRAM options.
2309 */
2310 nv->firmware_options[0] |= (BIT_6 | BIT_1);
2311 nv->firmware_options[0] &= ~(BIT_5 | BIT_4);
2312 nv->firmware_options[1] |= (BIT_5 | BIT_0);
2313 nv->firmware_options[1] &= ~BIT_4;
2314
2315 if (IS_QLA23XX(ha)) {
2316 nv->firmware_options[0] |= BIT_2;
2317 nv->firmware_options[0] &= ~BIT_3;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002318 nv->firmware_options[0] &= ~BIT_6;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002319 nv->add_firmware_options[1] |= BIT_5 | BIT_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 if (IS_QLA2300(ha)) {
2322 if (ha->fb_rev == FPM_2310) {
2323 strcpy(ha->model_number, "QLA2310");
2324 } else {
2325 strcpy(ha->model_number, "QLA2300");
2326 }
2327 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002328 qla2x00_set_model_info(vha, nv->model_number,
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002329 sizeof(nv->model_number), "QLA23xx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 }
2331 } else if (IS_QLA2200(ha)) {
2332 nv->firmware_options[0] |= BIT_2;
2333 /*
2334 * 'Point-to-point preferred, else loop' is not a safe
2335 * connection mode setting.
2336 */
2337 if ((nv->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) ==
2338 (BIT_5 | BIT_4)) {
2339 /* Force 'loop preferred, else point-to-point'. */
2340 nv->add_firmware_options[0] &= ~(BIT_6 | BIT_5 | BIT_4);
2341 nv->add_firmware_options[0] |= BIT_5;
2342 }
2343 strcpy(ha->model_number, "QLA22xx");
2344 } else /*if (IS_QLA2100(ha))*/ {
2345 strcpy(ha->model_number, "QLA2100");
2346 }
2347
2348 /*
2349 * Copy over NVRAM RISC parameter block to initialization control block.
2350 */
2351 dptr1 = (uint8_t *)icb;
2352 dptr2 = (uint8_t *)&nv->parameter_block_version;
2353 cnt = (uint8_t *)&icb->request_q_outpointer - (uint8_t *)&icb->version;
2354 while (cnt--)
2355 *dptr1++ = *dptr2++;
2356
2357 /* Copy 2nd half. */
2358 dptr1 = (uint8_t *)icb->add_firmware_options;
2359 cnt = (uint8_t *)icb->reserved_3 - (uint8_t *)icb->add_firmware_options;
2360 while (cnt--)
2361 *dptr1++ = *dptr2++;
2362
Andrew Vasquez5341e862006-05-17 15:09:16 -07002363 /* Use alternate WWN? */
2364 if (nv->host_p[1] & BIT_7) {
2365 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
2366 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
2367 }
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 /* Prepare nodename */
2370 if ((icb->firmware_options[1] & BIT_6) == 0) {
2371 /*
2372 * Firmware will apply the following mask if the nodename was
2373 * not provided.
2374 */
2375 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
2376 icb->node_name[0] &= 0xF0;
2377 }
2378
2379 /*
2380 * Set host adapter parameters.
2381 */
Andrew Vasquez01819442006-06-23 16:11:10 -07002382 if (nv->host_p[0] & BIT_7)
Andrew Vasquez11010fe2006-10-06 09:54:59 -07002383 ql2xextended_error_logging = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 ha->flags.disable_risc_code_load = ((nv->host_p[0] & BIT_4) ? 1 : 0);
2385 /* Always load RISC code on non ISP2[12]00 chips. */
2386 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
2387 ha->flags.disable_risc_code_load = 0;
2388 ha->flags.enable_lip_reset = ((nv->host_p[1] & BIT_1) ? 1 : 0);
2389 ha->flags.enable_lip_full_login = ((nv->host_p[1] & BIT_2) ? 1 : 0);
2390 ha->flags.enable_target_reset = ((nv->host_p[1] & BIT_3) ? 1 : 0);
Andrew Vasquez06c22bd2005-08-26 19:09:00 -07002391 ha->flags.enable_led_scheme = (nv->special_options[1] & BIT_4) ? 1 : 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07002392 ha->flags.disable_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 ha->operating_mode =
2395 (icb->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) >> 4;
2396
2397 memcpy(ha->fw_seriallink_options, nv->seriallink_options,
2398 sizeof(ha->fw_seriallink_options));
2399
2400 /* save HBA serial number */
2401 ha->serial0 = icb->port_name[5];
2402 ha->serial1 = icb->port_name[6];
2403 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002404 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
2405 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
2408
2409 ha->retry_count = nv->retry_count;
2410
2411 /* Set minimum login_timeout to 4 seconds. */
2412 if (nv->login_timeout < ql2xlogintimeout)
2413 nv->login_timeout = ql2xlogintimeout;
2414 if (nv->login_timeout < 4)
2415 nv->login_timeout = 4;
2416 ha->login_timeout = nv->login_timeout;
2417 icb->login_timeout = nv->login_timeout;
2418
Andrew Vasquez00a537b2008-02-28 14:06:11 -08002419 /* Set minimum RATOV to 100 tenths of a second. */
2420 ha->r_a_tov = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 ha->loop_reset_delay = nv->reset_delay;
2423
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 /* Link Down Timeout = 0:
2425 *
2426 * When Port Down timer expires we will start returning
2427 * I/O's to OS with "DID_NO_CONNECT".
2428 *
2429 * Link Down Timeout != 0:
2430 *
2431 * The driver waits for the link to come up after link down
2432 * before returning I/Os to OS with "DID_NO_CONNECT".
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002433 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 if (nv->link_down_timeout == 0) {
2435 ha->loop_down_abort_time =
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002436 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 } else {
2438 ha->link_down_timeout = nv->link_down_timeout;
2439 ha->loop_down_abort_time =
2440 (LOOP_DOWN_TIME - ha->link_down_timeout);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 /*
2444 * Need enough time to try and get the port back.
2445 */
2446 ha->port_down_retry_count = nv->port_down_retry_count;
2447 if (qlport_down_retry)
2448 ha->port_down_retry_count = qlport_down_retry;
2449 /* Set login_retry_count */
2450 ha->login_retry_count = nv->retry_count;
2451 if (ha->port_down_retry_count == nv->port_down_retry_count &&
2452 ha->port_down_retry_count > 3)
2453 ha->login_retry_count = ha->port_down_retry_count;
2454 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
2455 ha->login_retry_count = ha->port_down_retry_count;
2456 if (ql2xloginretrycount)
2457 ha->login_retry_count = ql2xloginretrycount;
2458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 icb->lun_enables = __constant_cpu_to_le16(0);
2460 icb->command_resource_count = 0;
2461 icb->immediate_notify_resource_count = 0;
2462 icb->timeout = __constant_cpu_to_le16(0);
2463
2464 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2465 /* Enable RIO */
2466 icb->firmware_options[0] &= ~BIT_3;
2467 icb->add_firmware_options[0] &=
2468 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
2469 icb->add_firmware_options[0] |= BIT_2;
2470 icb->response_accumulation_timer = 3;
2471 icb->interrupt_delay_timer = 5;
2472
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002473 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 } else {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002475 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002476 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002477 ha->zio_mode = icb->add_firmware_options[0] &
2478 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
2479 ha->zio_timer = icb->interrupt_delay_timer ?
2480 icb->interrupt_delay_timer: 2;
2481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 icb->add_firmware_options[0] &=
2483 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002484 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002485 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08002486 ha->zio_mode = QLA_ZIO_MODE_6;
2487
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002488 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002489 "delay (%d us).\n", vha->host_no, ha->zio_mode,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002490 ha->zio_timer * 100));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 qla_printk(KERN_INFO, ha,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002492 "ZIO mode %d enabled; timer delay (%d us).\n",
2493 ha->zio_mode, ha->zio_timer * 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002495 icb->add_firmware_options[0] |= (uint8_t)ha->zio_mode;
2496 icb->interrupt_delay_timer = (uint8_t)ha->zio_timer;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002497 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 }
2499 }
2500
David Miller4e08df32007-04-16 12:37:43 -07002501 if (rval) {
2502 DEBUG2_3(printk(KERN_WARNING
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002503 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
David Miller4e08df32007-04-16 12:37:43 -07002504 }
2505 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
2507
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002508static void
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002509qla2x00_rport_del(void *data)
2510{
2511 fc_port_t *fcport = data;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002512 struct fc_rport *rport;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002513
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002514 spin_lock_irq(fcport->vha->host->host_lock);
Andrew Vasquezac280b62009-08-20 11:06:05 -07002515 rport = fcport->drport ? fcport->drport: fcport->rport;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002516 fcport->drport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002517 spin_unlock_irq(fcport->vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002518 if (rport)
2519 fc_remote_port_delete(rport);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002520}
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522/**
2523 * qla2x00_alloc_fcport() - Allocate a generic fcport.
2524 * @ha: HA context
2525 * @flags: allocation flags
2526 *
2527 * Returns a pointer to the allocated fcport, or NULL, if none available.
2528 */
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002529fc_port_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002530qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531{
2532 fc_port_t *fcport;
2533
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002534 fcport = kzalloc(sizeof(fc_port_t), flags);
2535 if (!fcport)
2536 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538 /* Setup fcport template structure. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002539 fcport->vha = vha;
2540 fcport->vp_idx = vha->vp_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 fcport->port_type = FCT_UNKNOWN;
2542 fcport->loop_id = FC_NO_LOOP_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 atomic_set(&fcport->state, FCS_UNCONFIGURED);
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002544 fcport->supported_classes = FC_COS_UNSPECIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002546 return fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547}
2548
2549/*
2550 * qla2x00_configure_loop
2551 * Updates Fibre Channel Device Database with what is actually on loop.
2552 *
2553 * Input:
2554 * ha = adapter block pointer.
2555 *
2556 * Returns:
2557 * 0 = success.
2558 * 1 = error.
2559 * 2 = database was full and device was not configured.
2560 */
2561static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002562qla2x00_configure_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
2564 int rval;
2565 unsigned long flags, save_flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002566 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 rval = QLA_SUCCESS;
2568
2569 /* Get Initiator ID */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002570 if (test_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags)) {
2571 rval = qla2x00_configure_hba(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 if (rval != QLA_SUCCESS) {
2573 DEBUG(printk("scsi(%ld): Unable to configure HBA.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002574 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 return (rval);
2576 }
2577 }
2578
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002579 save_flags = flags = vha->dpc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 DEBUG(printk("scsi(%ld): Configure loop -- dpc flags =0x%lx\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002581 vha->host_no, flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
2583 /*
2584 * If we have both an RSCN and PORT UPDATE pending then handle them
2585 * both at the same time.
2586 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002587 clear_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2588 clear_bit(RSCN_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
Michael Hernandez3064ff32009-12-15 21:29:44 -08002590 qla2x00_get_data_rate(vha);
2591
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 /* Determine what we need to do */
2593 if (ha->current_topology == ISP_CFG_FL &&
2594 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2595
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002596 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 set_bit(RSCN_UPDATE, &flags);
2598
2599 } else if (ha->current_topology == ISP_CFG_F &&
2600 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2601
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002602 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 set_bit(RSCN_UPDATE, &flags);
2604 clear_bit(LOCAL_LOOP_UPDATE, &flags);
2605
Andrew Vasquez21333b42006-05-17 15:09:56 -07002606 } else if (ha->current_topology == ISP_CFG_N) {
2607 clear_bit(RSCN_UPDATE, &flags);
2608
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002609 } else if (!vha->flags.online ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 (test_bit(ABORT_ISP_ACTIVE, &flags))) {
2611
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002612 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 set_bit(RSCN_UPDATE, &flags);
2614 set_bit(LOCAL_LOOP_UPDATE, &flags);
2615 }
2616
2617 if (test_bit(LOCAL_LOOP_UPDATE, &flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002618 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 rval = QLA_FUNCTION_FAILED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002620 else
2621 rval = qla2x00_configure_local_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
2623
2624 if (rval == QLA_SUCCESS && test_bit(RSCN_UPDATE, &flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002625 if (LOOP_TRANSITION(vha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 rval = QLA_FUNCTION_FAILED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002627 else
2628 rval = qla2x00_configure_fabric(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 }
2630
2631 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002632 if (atomic_read(&vha->loop_down_timer) ||
2633 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 rval = QLA_FUNCTION_FAILED;
2635 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002636 atomic_set(&vha->loop_state, LOOP_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002638 DEBUG(printk("scsi(%ld): LOOP READY\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 }
2640 }
2641
2642 if (rval) {
2643 DEBUG2_3(printk("%s(%ld): *** FAILED ***\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002644 __func__, vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 } else {
2646 DEBUG3(printk("%s: exiting normally\n", __func__));
2647 }
2648
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -07002649 /* Restore state if a resync event occurred during processing */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002650 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 if (test_bit(LOCAL_LOOP_UPDATE, &save_flags))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002652 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002653 if (test_bit(RSCN_UPDATE, &save_flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002654 set_bit(RSCN_UPDATE, &vha->dpc_flags);
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07002655 if (!IS_ALOGIO_CAPABLE(ha))
2656 vha->flags.rscn_queue_overflow = 1;
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 }
2659
2660 return (rval);
2661}
2662
2663
2664
2665/*
2666 * qla2x00_configure_local_loop
2667 * Updates Fibre Channel Device Database with local loop devices.
2668 *
2669 * Input:
2670 * ha = adapter block pointer.
2671 *
2672 * Returns:
2673 * 0 = success.
2674 */
2675static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002676qla2x00_configure_local_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
2678 int rval, rval2;
2679 int found_devs;
2680 int found;
2681 fc_port_t *fcport, *new_fcport;
2682
2683 uint16_t index;
2684 uint16_t entries;
2685 char *id_iter;
2686 uint16_t loop_id;
2687 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002688 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
2690 found_devs = 0;
2691 new_fcport = NULL;
2692 entries = MAX_FIBRE_DEVICES;
2693
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002694 DEBUG3(printk("scsi(%ld): Getting FCAL position map\n", vha->host_no));
2695 DEBUG3(qla2x00_get_fcal_position_map(vha, NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 /* Get list of logged in devices. */
2698 memset(ha->gid_list, 0, GID_LIST_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002699 rval = qla2x00_get_id_list(vha, ha->gid_list, ha->gid_list_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 &entries);
2701 if (rval != QLA_SUCCESS)
2702 goto cleanup_allocation;
2703
2704 DEBUG3(printk("scsi(%ld): Entries in ID list (%d)\n",
Andrew Vasquez76403352009-04-06 22:33:39 -07002705 vha->host_no, entries));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 DEBUG3(qla2x00_dump_buffer((uint8_t *)ha->gid_list,
2707 entries * sizeof(struct gid_list_info)));
2708
2709 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002710 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 if (new_fcport == NULL) {
2712 rval = QLA_MEMORY_ALLOC_FAILED;
2713 goto cleanup_allocation;
2714 }
2715 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2716
2717 /*
2718 * Mark local devices that were present with FCF_DEVICE_LOST for now.
2719 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002720 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 if (atomic_read(&fcport->state) == FCS_ONLINE &&
2722 fcport->port_type != FCT_BROADCAST &&
2723 (fcport->flags & FCF_FABRIC_DEVICE) == 0) {
2724
2725 DEBUG(printk("scsi(%ld): Marking port lost, "
2726 "loop_id=0x%04x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002727 vha->host_no, fcport->loop_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
2729 atomic_set(&fcport->state, FCS_DEVICE_LOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 }
2731 }
2732
2733 /* Add devices to port list. */
2734 id_iter = (char *)ha->gid_list;
2735 for (index = 0; index < entries; index++) {
2736 domain = ((struct gid_list_info *)id_iter)->domain;
2737 area = ((struct gid_list_info *)id_iter)->area;
2738 al_pa = ((struct gid_list_info *)id_iter)->al_pa;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002739 if (IS_QLA2100(ha) || IS_QLA2200(ha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 loop_id = (uint16_t)
2741 ((struct gid_list_info *)id_iter)->loop_id_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002742 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 loop_id = le16_to_cpu(
2744 ((struct gid_list_info *)id_iter)->loop_id);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002745 id_iter += ha->gid_list_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
2747 /* Bypass reserved domain fields. */
2748 if ((domain & 0xf0) == 0xf0)
2749 continue;
2750
2751 /* Bypass if not same domain and area of adapter. */
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07002752 if (area && domain &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002753 (area != vha->d_id.b.area || domain != vha->d_id.b.domain))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 continue;
2755
2756 /* Bypass invalid local loop ID. */
2757 if (loop_id > LAST_LOCAL_LOOP_ID)
2758 continue;
2759
2760 /* Fill in member data. */
2761 new_fcport->d_id.b.domain = domain;
2762 new_fcport->d_id.b.area = area;
2763 new_fcport->d_id.b.al_pa = al_pa;
2764 new_fcport->loop_id = loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002765 new_fcport->vp_idx = vha->vp_idx;
2766 rval2 = qla2x00_get_port_database(vha, new_fcport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 if (rval2 != QLA_SUCCESS) {
2768 DEBUG2(printk("scsi(%ld): Failed to retrieve fcport "
2769 "information -- get_port_database=%x, "
2770 "loop_id=0x%04x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002771 vha->host_no, rval2, new_fcport->loop_id));
andrew.vasquez@qlogic.comc9d02ac2006-01-13 17:05:26 -08002772 DEBUG2(printk("scsi(%ld): Scheduling resync...\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002773 vha->host_no));
2774 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 continue;
2776 }
2777
2778 /* Check for matching device in port list. */
2779 found = 0;
2780 fcport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002781 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 if (memcmp(new_fcport->port_name, fcport->port_name,
2783 WWN_SIZE))
2784 continue;
2785
Shyam Sundarddb9b122009-03-24 09:08:10 -07002786 fcport->flags &= ~FCF_FABRIC_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 fcport->loop_id = new_fcport->loop_id;
2788 fcport->port_type = new_fcport->port_type;
2789 fcport->d_id.b24 = new_fcport->d_id.b24;
2790 memcpy(fcport->node_name, new_fcport->node_name,
2791 WWN_SIZE);
2792
2793 found++;
2794 break;
2795 }
2796
2797 if (!found) {
2798 /* New device, add to fcports list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002799 if (vha->vp_idx) {
2800 new_fcport->vha = vha;
2801 new_fcport->vp_idx = vha->vp_idx;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002802 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002803 list_add_tail(&new_fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
2805 /* Allocate a new replacement fcport. */
2806 fcport = new_fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002807 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 if (new_fcport == NULL) {
2809 rval = QLA_MEMORY_ALLOC_FAILED;
2810 goto cleanup_allocation;
2811 }
2812 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2813 }
2814
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002815 /* Base iIDMA settings on HBA port speed. */
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002816 fcport->fp_speed = ha->link_data_rate;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002817
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002818 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
2820 found_devs++;
2821 }
2822
2823cleanup_allocation:
Jesper Juhlc9475cb2005-11-07 01:01:26 -08002824 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826 if (rval != QLA_SUCCESS) {
2827 DEBUG2(printk("scsi(%ld): Configure local loop error exit: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002828 "rval=%x\n", vha->host_no, rval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 }
2830
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 return (rval);
2832}
2833
2834static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002835qla2x00_iidma_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002836{
2837#define LS_UNKNOWN 2
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002838 static char *link_speeds[] = { "1", "2", "?", "4", "8", "10" };
2839 char *link_speed;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002840 int rval;
Harish Zunjarrao1bb39542009-06-17 10:30:29 -07002841 uint16_t mb[4];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002842 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002843
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07002844 if (!IS_IIDMA_CAPABLE(ha))
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002845 return;
2846
Andrew Vasquez39bd9622007-09-20 14:07:34 -07002847 if (fcport->fp_speed == PORT_SPEED_UNKNOWN ||
2848 fcport->fp_speed > ha->link_data_rate)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002849 return;
2850
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002851 rval = qla2x00_set_idma_speed(vha, fcport->loop_id, fcport->fp_speed,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002852 mb);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002853 if (rval != QLA_SUCCESS) {
2854 DEBUG2(printk("scsi(%ld): Unable to adjust iIDMA "
2855 "%02x%02x%02x%02x%02x%02x%02x%02x -- %04x %x %04x %04x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002856 vha->host_no, fcport->port_name[0], fcport->port_name[1],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002857 fcport->port_name[2], fcport->port_name[3],
2858 fcport->port_name[4], fcport->port_name[5],
2859 fcport->port_name[6], fcport->port_name[7], rval,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002860 fcport->fp_speed, mb[0], mb[1]));
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002861 } else {
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002862 link_speed = link_speeds[LS_UNKNOWN];
2863 if (fcport->fp_speed < 5)
2864 link_speed = link_speeds[fcport->fp_speed];
2865 else if (fcport->fp_speed == 0x13)
2866 link_speed = link_speeds[5];
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002867 DEBUG2(qla_printk(KERN_INFO, ha,
2868 "iIDMA adjusted to %s GB/s on "
2869 "%02x%02x%02x%02x%02x%02x%02x%02x.\n",
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002870 link_speed, fcport->port_name[0],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002871 fcport->port_name[1], fcport->port_name[2],
2872 fcport->port_name[3], fcport->port_name[4],
2873 fcport->port_name[5], fcport->port_name[6],
2874 fcport->port_name[7]));
2875 }
2876}
2877
Adrian Bunk23be3312006-11-24 02:46:01 +01002878static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002879qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport)
8482e1182005-04-17 15:04:54 -05002880{
2881 struct fc_rport_identifiers rport_ids;
bdf79622005-04-17 15:06:53 -05002882 struct fc_rport *rport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002883 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -05002884
Andrew Vasquezac280b62009-08-20 11:06:05 -07002885 qla2x00_rport_del(fcport);
8482e1182005-04-17 15:04:54 -05002886
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07002887 rport_ids.node_name = wwn_to_u64(fcport->node_name);
2888 rport_ids.port_name = wwn_to_u64(fcport->port_name);
8482e1182005-04-17 15:04:54 -05002889 rport_ids.port_id = fcport->d_id.b.domain << 16 |
2890 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
2891 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002892 fcport->rport = rport = fc_remote_port_add(vha->host, 0, &rport_ids);
Andrew Vasquez77d74142005-07-08 18:00:36 -07002893 if (!rport) {
2894 qla_printk(KERN_WARNING, ha,
2895 "Unable to allocate fc remote port!\n");
2896 return;
2897 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002898 spin_lock_irq(fcport->vha->host->host_lock);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002899 *((fc_port_t **)rport->dd_data) = fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002900 spin_unlock_irq(fcport->vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002901
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002902 rport->supported_classes = fcport->supported_classes;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002903
2904 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
8482e1182005-04-17 15:04:54 -05002905 if (fcport->port_type == FCT_INITIATOR)
2906 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
2907 if (fcport->port_type == FCT_TARGET)
2908 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002909 fc_remote_port_rolechg(rport, rport_ids.roles);
8482e1182005-04-17 15:04:54 -05002910}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912/*
Adrian Bunk23be3312006-11-24 02:46:01 +01002913 * qla2x00_update_fcport
2914 * Updates device on list.
2915 *
2916 * Input:
2917 * ha = adapter block pointer.
2918 * fcport = port structure pointer.
2919 *
2920 * Return:
2921 * 0 - Success
2922 * BIT_0 - error
2923 *
2924 * Context:
2925 * Kernel context.
2926 */
2927void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002928qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Adrian Bunk23be3312006-11-24 02:46:01 +01002929{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002930 struct qla_hw_data *ha = vha->hw;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002931
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002932 fcport->vha = vha;
Adrian Bunk23be3312006-11-24 02:46:01 +01002933 fcport->login_retry = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002934 fcport->port_login_retry_count = ha->port_down_retry_count *
Adrian Bunk23be3312006-11-24 02:46:01 +01002935 PORT_RETRY_TIME;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002936 atomic_set(&fcport->port_down_timer, ha->port_down_retry_count *
Adrian Bunk23be3312006-11-24 02:46:01 +01002937 PORT_RETRY_TIME);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002938 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
Adrian Bunk23be3312006-11-24 02:46:01 +01002939
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002940 qla2x00_iidma_fcport(vha, fcport);
Adrian Bunk23be3312006-11-24 02:46:01 +01002941
2942 atomic_set(&fcport->state, FCS_ONLINE);
2943
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002944 qla2x00_reg_remote_port(vha, fcport);
Adrian Bunk23be3312006-11-24 02:46:01 +01002945}
2946
2947/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 * qla2x00_configure_fabric
2949 * Setup SNS devices with loop ID's.
2950 *
2951 * Input:
2952 * ha = adapter block pointer.
2953 *
2954 * Returns:
2955 * 0 = success.
2956 * BIT_0 = error
2957 */
2958static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002959qla2x00_configure_fabric(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960{
2961 int rval, rval2;
2962 fc_port_t *fcport, *fcptemp;
2963 uint16_t next_loopid;
2964 uint16_t mb[MAILBOX_REGISTER_COUNT];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002965 uint16_t loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 LIST_HEAD(new_fcports);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002967 struct qla_hw_data *ha = vha->hw;
2968 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
2970 /* If FL port exists, then SNS is present */
Andrew Vasqueze4289242007-07-19 15:05:56 -07002971 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002972 loop_id = NPH_F_PORT;
2973 else
2974 loop_id = SNS_FL_PORT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002975 rval = qla2x00_get_port_name(vha, loop_id, vha->fabric_node_name, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 if (rval != QLA_SUCCESS) {
2977 DEBUG2(printk("scsi(%ld): MBC_GET_PORT_NAME Failed, No FL "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002978 "Port\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002980 vha->device_flags &= ~SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 return (QLA_SUCCESS);
2982 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002983 vha->device_flags |= SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985 /* Mark devices that need re-synchronization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002986 rval2 = qla2x00_device_resync(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 if (rval2 == QLA_RSCNS_HANDLED) {
2988 /* No point doing the scan, just continue. */
2989 return (QLA_SUCCESS);
2990 }
2991 do {
Andrew Vasquezcca53352005-08-26 19:08:30 -07002992 /* FDMI support. */
2993 if (ql2xfdmienable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002994 test_and_clear_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags))
2995 qla2x00_fdmi_register(vha);
Andrew Vasquezcca53352005-08-26 19:08:30 -07002996
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 /* Ensure we are logged into the SNS. */
Andrew Vasqueze4289242007-07-19 15:05:56 -07002998 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002999 loop_id = NPH_SNS;
3000 else
3001 loop_id = SIMPLE_NAME_SERVER;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003002 ha->isp_ops->fabric_login(vha, loop_id, 0xff, 0xff,
Andrew Vasquezabbd8872005-07-06 10:30:05 -07003003 0xfc, mb, BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 if (mb[0] != MBS_COMMAND_COMPLETE) {
3005 DEBUG2(qla_printk(KERN_INFO, ha,
3006 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003007 "mb[2]=%x mb[6]=%x mb[7]=%x\n", loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 mb[0], mb[1], mb[2], mb[6], mb[7]));
3009 return (QLA_SUCCESS);
3010 }
3011
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003012 if (test_and_clear_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags)) {
3013 if (qla2x00_rft_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 /* EMPTY */
3015 DEBUG2(printk("scsi(%ld): Register FC-4 "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003016 "TYPE failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003018 if (qla2x00_rff_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 /* EMPTY */
3020 DEBUG2(printk("scsi(%ld): Register FC-4 "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003021 "Features failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003023 if (qla2x00_rnn_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 /* EMPTY */
3025 DEBUG2(printk("scsi(%ld): Register Node Name "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003026 "failed.\n", vha->host_no));
3027 } else if (qla2x00_rsnn_nn(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 /* EMPTY */
3029 DEBUG2(printk("scsi(%ld): Register Symbolic "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003030 "Node Name failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 }
3032 }
3033
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003034 rval = qla2x00_find_all_fabric_devs(vha, &new_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 if (rval != QLA_SUCCESS)
3036 break;
3037
3038 /*
3039 * Logout all previous fabric devices marked lost, except
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003040 * FCP2 devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003042 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3043 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 break;
3045
3046 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0)
3047 continue;
3048
3049 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003050 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003051 ql2xplogiabsentdevice, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003053 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 fcport->port_type != FCT_INITIATOR &&
3055 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003056 ha->isp_ops->fabric_logout(vha,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003057 fcport->loop_id,
3058 fcport->d_id.b.domain,
3059 fcport->d_id.b.area,
3060 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 fcport->loop_id = FC_NO_LOOP_ID;
3062 }
3063 }
3064 }
3065
3066 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003067 next_loopid = ha->min_external_loopid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
3069 /*
3070 * Scan through our port list and login entries that need to be
3071 * logged in.
3072 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003073 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3074 if (atomic_read(&vha->loop_down_timer) ||
3075 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 break;
3077
3078 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
3079 (fcport->flags & FCF_LOGIN_NEEDED) == 0)
3080 continue;
3081
3082 if (fcport->loop_id == FC_NO_LOOP_ID) {
3083 fcport->loop_id = next_loopid;
Seokmann Jud4486fd62008-04-03 13:13:28 -07003084 rval = qla2x00_find_new_loop_id(
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003085 base_vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 if (rval != QLA_SUCCESS) {
3087 /* Ran out of IDs to use */
3088 break;
3089 }
3090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003092 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 }
3094
3095 /* Exit if out of loop IDs. */
3096 if (rval != QLA_SUCCESS) {
3097 break;
3098 }
3099
3100 /*
3101 * Login and add the new devices to our port list.
3102 */
3103 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003104 if (atomic_read(&vha->loop_down_timer) ||
3105 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 break;
3107
3108 /* Find a new loop ID to use. */
3109 fcport->loop_id = next_loopid;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003110 rval = qla2x00_find_new_loop_id(base_vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 if (rval != QLA_SUCCESS) {
3112 /* Ran out of IDs to use */
3113 break;
3114 }
3115
bdf79622005-04-17 15:06:53 -05003116 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003117 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003118
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003119 if (vha->vp_idx) {
3120 fcport->vha = vha;
3121 fcport->vp_idx = vha->vp_idx;
3122 }
3123 list_move_tail(&fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 }
3125 } while (0);
3126
3127 /* Free all new device structures not processed. */
3128 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
3129 list_del(&fcport->list);
3130 kfree(fcport);
3131 }
3132
3133 if (rval) {
3134 DEBUG2(printk("scsi(%ld): Configure fabric error exit: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003135 "rval=%d\n", vha->host_no, rval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 }
3137
3138 return (rval);
3139}
3140
3141
3142/*
3143 * qla2x00_find_all_fabric_devs
3144 *
3145 * Input:
3146 * ha = adapter block pointer.
3147 * dev = database device entry pointer.
3148 *
3149 * Returns:
3150 * 0 = success.
3151 *
3152 * Context:
3153 * Kernel context.
3154 */
3155static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003156qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha,
3157 struct list_head *new_fcports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158{
3159 int rval;
3160 uint16_t loop_id;
3161 fc_port_t *fcport, *new_fcport, *fcptemp;
3162 int found;
3163
3164 sw_info_t *swl;
3165 int swl_idx;
3166 int first_dev, last_dev;
Mike Waychison1516ef42010-05-04 15:01:31 -07003167 port_id_t wrap = {}, nxt_d_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003168 struct qla_hw_data *ha = vha->hw;
3169 struct scsi_qla_host *vp, *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003170 struct scsi_qla_host *tvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
3172 rval = QLA_SUCCESS;
3173
3174 /* Try GID_PT to get device list, else GAN. */
Andrew Vasquez4b892582008-09-11 21:22:48 -07003175 swl = kcalloc(MAX_FIBRE_DEVICES, sizeof(sw_info_t), GFP_KERNEL);
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02003176 if (!swl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 /*EMPTY*/
3178 DEBUG2(printk("scsi(%ld): GID_PT allocations failed, fallback "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003179 "on GA_NXT\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003181 if (qla2x00_gid_pt(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 kfree(swl);
3183 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003184 } else if (qla2x00_gpn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 kfree(swl);
3186 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003187 } else if (qla2x00_gnn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 kfree(swl);
3189 swl = NULL;
Andrew Vasqueze5896bd2008-07-10 16:55:52 -07003190 } else if (ql2xiidmaenable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003191 qla2x00_gfpn_id(vha, swl) == QLA_SUCCESS) {
3192 qla2x00_gpsc(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 }
3194 }
3195 swl_idx = 0;
3196
3197 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003198 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 if (new_fcport == NULL) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003200 kfree(swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 return (QLA_MEMORY_ALLOC_FAILED);
3202 }
3203 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 /* Set start port ID scan at adapter ID. */
3205 first_dev = 1;
3206 last_dev = 0;
3207
3208 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003209 loop_id = ha->min_external_loopid;
3210 for (; loop_id <= ha->max_loop_id; loop_id++) {
3211 if (qla2x00_is_reserved_id(vha, loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 continue;
3213
Giridhar Malavali3a6478d2010-05-28 15:08:20 -07003214 if (ha->current_topology == ISP_CFG_FL &&
3215 (atomic_read(&vha->loop_down_timer) ||
3216 LOOP_TRANSITION(vha))) {
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003217 atomic_set(&vha->loop_down_timer, 0);
3218 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
3219 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 break;
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08003221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
3223 if (swl != NULL) {
3224 if (last_dev) {
3225 wrap.b24 = new_fcport->d_id.b24;
3226 } else {
3227 new_fcport->d_id.b24 = swl[swl_idx].d_id.b24;
3228 memcpy(new_fcport->node_name,
3229 swl[swl_idx].node_name, WWN_SIZE);
3230 memcpy(new_fcport->port_name,
3231 swl[swl_idx].port_name, WWN_SIZE);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003232 memcpy(new_fcport->fabric_port_name,
3233 swl[swl_idx].fabric_port_name, WWN_SIZE);
3234 new_fcport->fp_speed = swl[swl_idx].fp_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
3236 if (swl[swl_idx].d_id.b.rsvd_1 != 0) {
3237 last_dev = 1;
3238 }
3239 swl_idx++;
3240 }
3241 } else {
3242 /* Send GA_NXT to the switch */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003243 rval = qla2x00_ga_nxt(vha, new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 if (rval != QLA_SUCCESS) {
3245 qla_printk(KERN_WARNING, ha,
3246 "SNS scan failed -- assuming zero-entry "
3247 "result...\n");
3248 list_for_each_entry_safe(fcport, fcptemp,
3249 new_fcports, list) {
3250 list_del(&fcport->list);
3251 kfree(fcport);
3252 }
3253 rval = QLA_SUCCESS;
3254 break;
3255 }
3256 }
3257
3258 /* If wrap on switch device list, exit. */
3259 if (first_dev) {
3260 wrap.b24 = new_fcport->d_id.b24;
3261 first_dev = 0;
3262 } else if (new_fcport->d_id.b24 == wrap.b24) {
3263 DEBUG2(printk("scsi(%ld): device wrap (%02x%02x%02x)\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003264 vha->host_no, new_fcport->d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 new_fcport->d_id.b.area, new_fcport->d_id.b.al_pa));
3266 break;
3267 }
3268
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003269 /* Bypass if same physical adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003270 if (new_fcport->d_id.b24 == base_vha->d_id.b24)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 continue;
3272
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003273 /* Bypass virtual ports of the same host. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003274 found = 0;
3275 if (ha->num_vhosts) {
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003276 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003277 if (new_fcport->d_id.b24 == vp->d_id.b24) {
3278 found = 1;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003279 break;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003280 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003281 }
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
3296 /* Locate matching device in database. */
3297 found = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003298 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 if (memcmp(new_fcport->port_name, fcport->port_name,
3300 WWN_SIZE))
3301 continue;
3302
3303 found++;
3304
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003305 /* Update port state. */
3306 memcpy(fcport->fabric_port_name,
3307 new_fcport->fabric_port_name, WWN_SIZE);
3308 fcport->fp_speed = new_fcport->fp_speed;
3309
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 /*
3311 * If address the same and state FCS_ONLINE, nothing
3312 * changed.
3313 */
3314 if (fcport->d_id.b24 == new_fcport->d_id.b24 &&
3315 atomic_read(&fcport->state) == FCS_ONLINE) {
3316 break;
3317 }
3318
3319 /*
3320 * If device was not a fabric device before.
3321 */
3322 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0) {
3323 fcport->d_id.b24 = new_fcport->d_id.b24;
3324 fcport->loop_id = FC_NO_LOOP_ID;
3325 fcport->flags |= (FCF_FABRIC_DEVICE |
3326 FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 break;
3328 }
3329
3330 /*
3331 * Port ID changed or device was marked to be updated;
3332 * Log it out if still logged in and mark it for
3333 * relogin later.
3334 */
3335 fcport->d_id.b24 = new_fcport->d_id.b24;
3336 fcport->flags |= FCF_LOGIN_NEEDED;
3337 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003338 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 fcport->port_type != FCT_INITIATOR &&
3340 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003341 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003342 fcport->d_id.b.domain, fcport->d_id.b.area,
3343 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 fcport->loop_id = FC_NO_LOOP_ID;
3345 }
3346
3347 break;
3348 }
3349
3350 if (found)
3351 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 /* If device was not in our fcports list, then add it. */
3353 list_add_tail(&new_fcport->list, new_fcports);
3354
3355 /* Allocate a new replacement fcport. */
3356 nxt_d_id.b24 = new_fcport->d_id.b24;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003357 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 if (new_fcport == NULL) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003359 kfree(swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 return (QLA_MEMORY_ALLOC_FAILED);
3361 }
3362 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
3363 new_fcport->d_id.b24 = nxt_d_id.b24;
3364 }
3365
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003366 kfree(swl);
3367 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 return (rval);
3370}
3371
3372/*
3373 * qla2x00_find_new_loop_id
3374 * Scan through our port list and find a new usable loop ID.
3375 *
3376 * Input:
3377 * ha: adapter state pointer.
3378 * dev: port structure pointer.
3379 *
3380 * Returns:
3381 * qla2x00 local function return status code.
3382 *
3383 * Context:
3384 * Kernel context.
3385 */
Adrian Bunk413975a2006-06-30 02:33:06 -07003386static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003387qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388{
3389 int rval;
3390 int found;
3391 fc_port_t *fcport;
3392 uint16_t first_loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003393 struct qla_hw_data *ha = vha->hw;
3394 struct scsi_qla_host *vp;
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003395 struct scsi_qla_host *tvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
3397 rval = QLA_SUCCESS;
3398
3399 /* Save starting loop ID. */
3400 first_loop_id = dev->loop_id;
3401
3402 for (;;) {
3403 /* Skip loop ID if already used by adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003404 if (dev->loop_id == vha->loop_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 dev->loop_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
3407 /* Skip reserved loop IDs. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003408 while (qla2x00_is_reserved_id(vha, dev->loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 dev->loop_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
3411 /* Reset loop ID if passed the end. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003412 if (dev->loop_id > ha->max_loop_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 /* first loop ID. */
3414 dev->loop_id = ha->min_external_loopid;
3415 }
3416
3417 /* Check for loop ID being already in use. */
3418 found = 0;
3419 fcport = NULL;
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003420 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003421 list_for_each_entry(fcport, &vp->vp_fcports, list) {
3422 if (fcport->loop_id == dev->loop_id &&
3423 fcport != dev) {
3424 /* ID possibly in use */
3425 found++;
3426 break;
3427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003429 if (found)
3430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 }
3432
3433 /* If not in use then it is free to use. */
3434 if (!found) {
3435 break;
3436 }
3437
3438 /* ID in use. Try next value. */
3439 dev->loop_id++;
3440
3441 /* If wrap around. No free ID to use. */
3442 if (dev->loop_id == first_loop_id) {
3443 dev->loop_id = FC_NO_LOOP_ID;
3444 rval = QLA_FUNCTION_FAILED;
3445 break;
3446 }
3447 }
3448
3449 return (rval);
3450}
3451
3452/*
3453 * qla2x00_device_resync
3454 * Marks devices in the database that needs resynchronization.
3455 *
3456 * Input:
3457 * ha = adapter block pointer.
3458 *
3459 * Context:
3460 * Kernel context.
3461 */
3462static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003463qla2x00_device_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464{
3465 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 uint32_t mask;
3467 fc_port_t *fcport;
3468 uint32_t rscn_entry;
3469 uint8_t rscn_out_iter;
3470 uint8_t format;
Mike Waychison1516ef42010-05-04 15:01:31 -07003471 port_id_t d_id = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
3473 rval = QLA_RSCNS_HANDLED;
3474
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003475 while (vha->rscn_out_ptr != vha->rscn_in_ptr ||
3476 vha->flags.rscn_queue_overflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003478 rscn_entry = vha->rscn_queue[vha->rscn_out_ptr];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 format = MSB(MSW(rscn_entry));
3480 d_id.b.domain = LSB(MSW(rscn_entry));
3481 d_id.b.area = MSB(LSW(rscn_entry));
3482 d_id.b.al_pa = LSB(LSW(rscn_entry));
3483
3484 DEBUG(printk("scsi(%ld): RSCN queue entry[%d] = "
3485 "[%02x/%02x%02x%02x].\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003486 vha->host_no, vha->rscn_out_ptr, format, d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 d_id.b.area, d_id.b.al_pa));
3488
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003489 vha->rscn_out_ptr++;
3490 if (vha->rscn_out_ptr == MAX_RSCN_COUNT)
3491 vha->rscn_out_ptr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
3493 /* Skip duplicate entries. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003494 for (rscn_out_iter = vha->rscn_out_ptr;
3495 !vha->flags.rscn_queue_overflow &&
3496 rscn_out_iter != vha->rscn_in_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 rscn_out_iter = (rscn_out_iter ==
3498 (MAX_RSCN_COUNT - 1)) ? 0: rscn_out_iter + 1) {
3499
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003500 if (rscn_entry != vha->rscn_queue[rscn_out_iter])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 break;
3502
3503 DEBUG(printk("scsi(%ld): Skipping duplicate RSCN queue "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003504 "entry found at [%d].\n", vha->host_no,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 rscn_out_iter));
3506
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003507 vha->rscn_out_ptr = rscn_out_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 }
3509
3510 /* Queue overflow, set switch default case. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003511 if (vha->flags.rscn_queue_overflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 DEBUG(printk("scsi(%ld): device_resync: rscn "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003513 "overflow.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
3515 format = 3;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003516 vha->flags.rscn_queue_overflow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 }
3518
3519 switch (format) {
3520 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 mask = 0xffffff;
3522 break;
3523 case 1:
3524 mask = 0xffff00;
3525 break;
3526 case 2:
3527 mask = 0xff0000;
3528 break;
3529 default:
3530 mask = 0x0;
3531 d_id.b24 = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003532 vha->rscn_out_ptr = vha->rscn_in_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 break;
3534 }
3535
3536 rval = QLA_SUCCESS;
3537
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003538 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
3540 (fcport->d_id.b24 & mask) != d_id.b24 ||
3541 fcport->port_type == FCT_BROADCAST)
3542 continue;
3543
3544 if (atomic_read(&fcport->state) == FCS_ONLINE) {
3545 if (format != 3 ||
3546 fcport->port_type != FCT_INITIATOR) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003547 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003548 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 }
3550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 }
3552 }
3553 return (rval);
3554}
3555
3556/*
3557 * qla2x00_fabric_dev_login
3558 * Login fabric target device and update FC port database.
3559 *
3560 * Input:
3561 * ha: adapter state pointer.
3562 * fcport: port structure list pointer.
3563 * next_loopid: contains value of a new loop ID that can be used
3564 * by the next login attempt.
3565 *
3566 * Returns:
3567 * qla2x00 local function return status code.
3568 *
3569 * Context:
3570 * Kernel context.
3571 */
3572static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003573qla2x00_fabric_dev_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 uint16_t *next_loopid)
3575{
3576 int rval;
3577 int retry;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003578 uint8_t opts;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003579 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580
3581 rval = QLA_SUCCESS;
3582 retry = 0;
3583
Andrew Vasquezac280b62009-08-20 11:06:05 -07003584 if (IS_ALOGIO_CAPABLE(ha)) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003585 if (fcport->flags & FCF_ASYNC_SENT)
3586 return rval;
3587 fcport->flags |= FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003588 rval = qla2x00_post_async_login_work(vha, fcport, NULL);
3589 if (!rval)
3590 return rval;
3591 }
3592
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003593 fcport->flags &= ~FCF_ASYNC_SENT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003594 rval = qla2x00_fabric_login(vha, fcport, next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 if (rval == QLA_SUCCESS) {
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003596 /* Send an ADISC to FCP2 devices.*/
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003597 opts = 0;
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003598 if (fcport->flags & FCF_FCP2_DEVICE)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003599 opts |= BIT_1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003600 rval = qla2x00_get_port_database(vha, fcport, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003602 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003603 fcport->d_id.b.domain, fcport->d_id.b.area,
3604 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003605 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003607 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 }
3609 }
3610
3611 return (rval);
3612}
3613
3614/*
3615 * qla2x00_fabric_login
3616 * Issue fabric login command.
3617 *
3618 * Input:
3619 * ha = adapter block pointer.
3620 * device = pointer to FC device type structure.
3621 *
3622 * Returns:
3623 * 0 - Login successfully
3624 * 1 - Login failed
3625 * 2 - Initiator device
3626 * 3 - Fatal error
3627 */
3628int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003629qla2x00_fabric_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 uint16_t *next_loopid)
3631{
3632 int rval;
3633 int retry;
3634 uint16_t tmp_loopid;
3635 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003636 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
3638 retry = 0;
3639 tmp_loopid = 0;
3640
3641 for (;;) {
3642 DEBUG(printk("scsi(%ld): Trying Fabric Login w/loop id 0x%04x "
3643 "for port %02x%02x%02x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003644 vha->host_no, fcport->loop_id, fcport->d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 fcport->d_id.b.area, fcport->d_id.b.al_pa));
3646
3647 /* Login fcport on switch. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003648 ha->isp_ops->fabric_login(vha, fcport->loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 fcport->d_id.b.domain, fcport->d_id.b.area,
3650 fcport->d_id.b.al_pa, mb, BIT_0);
3651 if (mb[0] == MBS_PORT_ID_USED) {
3652 /*
3653 * Device has another loop ID. The firmware team
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003654 * recommends the driver perform an implicit login with
3655 * the specified ID again. The ID we just used is save
3656 * here so we return with an ID that can be tried by
3657 * the next login.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 */
3659 retry++;
3660 tmp_loopid = fcport->loop_id;
3661 fcport->loop_id = mb[1];
3662
3663 DEBUG(printk("Fabric Login: port in use - next "
3664 "loop id=0x%04x, port Id=%02x%02x%02x.\n",
3665 fcport->loop_id, fcport->d_id.b.domain,
3666 fcport->d_id.b.area, fcport->d_id.b.al_pa));
3667
3668 } else if (mb[0] == MBS_COMMAND_COMPLETE) {
3669 /*
3670 * Login succeeded.
3671 */
3672 if (retry) {
3673 /* A retry occurred before. */
3674 *next_loopid = tmp_loopid;
3675 } else {
3676 /*
3677 * No retry occurred before. Just increment the
3678 * ID value for next login.
3679 */
3680 *next_loopid = (fcport->loop_id + 1);
3681 }
3682
3683 if (mb[1] & BIT_0) {
3684 fcport->port_type = FCT_INITIATOR;
3685 } else {
3686 fcport->port_type = FCT_TARGET;
3687 if (mb[1] & BIT_1) {
Santosh Vernekar8474f3a2009-08-25 11:36:16 -07003688 fcport->flags |= FCF_FCP2_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 }
3690 }
3691
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003692 if (mb[10] & BIT_0)
3693 fcport->supported_classes |= FC_COS_CLASS2;
3694 if (mb[10] & BIT_1)
3695 fcport->supported_classes |= FC_COS_CLASS3;
3696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 rval = QLA_SUCCESS;
3698 break;
3699 } else if (mb[0] == MBS_LOOP_ID_USED) {
3700 /*
3701 * Loop ID already used, try next loop ID.
3702 */
3703 fcport->loop_id++;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003704 rval = qla2x00_find_new_loop_id(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 if (rval != QLA_SUCCESS) {
3706 /* Ran out of loop IDs to use */
3707 break;
3708 }
3709 } else if (mb[0] == MBS_COMMAND_ERROR) {
3710 /*
3711 * Firmware possibly timed out during login. If NO
3712 * retries are left to do then the device is declared
3713 * dead.
3714 */
3715 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003716 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003717 fcport->d_id.b.domain, fcport->d_id.b.area,
3718 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003719 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
3721 rval = 1;
3722 break;
3723 } else {
3724 /*
3725 * unrecoverable / not handled error
3726 */
3727 DEBUG2(printk("%s(%ld): failed=%x port_id=%02x%02x%02x "
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003728 "loop_id=%x jiffies=%lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003729 __func__, vha->host_no, mb[0],
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 fcport->d_id.b.domain, fcport->d_id.b.area,
3731 fcport->d_id.b.al_pa, fcport->loop_id, jiffies));
3732
3733 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003734 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003735 fcport->d_id.b.domain, fcport->d_id.b.area,
3736 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 fcport->loop_id = FC_NO_LOOP_ID;
Andrew Vasquez0eedfcf2005-10-27 11:09:38 -07003738 fcport->login_retry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
3740 rval = 3;
3741 break;
3742 }
3743 }
3744
3745 return (rval);
3746}
3747
3748/*
3749 * qla2x00_local_device_login
3750 * Issue local device login command.
3751 *
3752 * Input:
3753 * ha = adapter block pointer.
3754 * loop_id = loop id of device to login to.
3755 *
3756 * Returns (Where's the #define!!!!):
3757 * 0 - Login successfully
3758 * 1 - Login failed
3759 * 3 - Fatal error
3760 */
3761int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003762qla2x00_local_device_login(scsi_qla_host_t *vha, fc_port_t *fcport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
3764 int rval;
3765 uint16_t mb[MAILBOX_REGISTER_COUNT];
3766
3767 memset(mb, 0, sizeof(mb));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003768 rval = qla2x00_login_local_device(vha, fcport, mb, BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 if (rval == QLA_SUCCESS) {
3770 /* Interrogate mailbox registers for any errors */
3771 if (mb[0] == MBS_COMMAND_ERROR)
3772 rval = 1;
3773 else if (mb[0] == MBS_COMMAND_PARAMETER_ERROR)
3774 /* device not in PCB table */
3775 rval = 3;
3776 }
3777
3778 return (rval);
3779}
3780
3781/*
3782 * qla2x00_loop_resync
3783 * Resync with fibre channel devices.
3784 *
3785 * Input:
3786 * ha = adapter block pointer.
3787 *
3788 * Returns:
3789 * 0 = success
3790 */
3791int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003792qla2x00_loop_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003794 int rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 uint32_t wait_time;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003796 struct req_que *req;
3797 struct rsp_que *rsp;
3798
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07003799 if (vha->hw->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003800 req = vha->hw->req_q_map[0];
3801 else
3802 req = vha->req;
3803 rsp = req->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003805 atomic_set(&vha->loop_state, LOOP_UPDATE);
3806 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3807 if (vha->flags.online) {
3808 if (!(rval = qla2x00_fw_ready(vha))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 /* Wait at most MAX_TARGET RSCNs for a stable link. */
3810 wait_time = 256;
3811 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003812 atomic_set(&vha->loop_state, LOOP_UPDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003814 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003815 qla2x00_marker(vha, req, rsp, 0, 0,
3816 MK_SYNC_ALL);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003817 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
3819 /* Remap devices on Loop. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003820 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003822 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003824 } while (!atomic_read(&vha->loop_down_timer) &&
3825 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
3826 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
3827 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 }
3830
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003831 if (test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 return (QLA_FUNCTION_FAILED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003834 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
3837 return (rval);
3838}
3839
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840void
Andrew Vasquez67becc02009-08-25 11:36:20 -07003841qla2x00_update_fcports(scsi_qla_host_t *base_vha)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003842{
3843 fc_port_t *fcport;
Andrew Vasquez67becc02009-08-25 11:36:20 -07003844 struct scsi_qla_host *tvp, *vha;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003845
3846 /* Go with deferred removal of rport references. */
Andrew Vasquez67becc02009-08-25 11:36:20 -07003847 list_for_each_entry_safe(vha, tvp, &base_vha->hw->vp_list, list)
3848 list_for_each_entry(fcport, &vha->vp_fcports, list)
3849 if (fcport && fcport->drport &&
3850 atomic_read(&fcport->state) != FCS_UNCONFIGURED)
3851 qla2x00_rport_del(fcport);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003852}
3853
Giridhar Malavalia9083012010-04-12 17:59:55 -07003854void
3855qla2x00_abort_isp_cleanup(scsi_qla_host_t *vha)
3856{
3857 struct qla_hw_data *ha = vha->hw;
3858 struct scsi_qla_host *vp, *base_vha = pci_get_drvdata(ha->pdev);
3859 struct scsi_qla_host *tvp;
3860
3861 vha->flags.online = 0;
3862 ha->flags.chip_reset_done = 0;
3863 clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
3864 ha->qla_stats.total_isp_aborts++;
3865
3866 qla_printk(KERN_INFO, ha,
3867 "Performing ISP error recovery - ha= %p.\n", ha);
3868
3869 /* Chip reset does not apply to 82XX */
3870 if (!IS_QLA82XX(ha))
3871 ha->isp_ops->reset_chip(vha);
3872
3873 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
3874 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
3875 atomic_set(&vha->loop_state, LOOP_DOWN);
3876 qla2x00_mark_all_devices_lost(vha, 0);
3877 list_for_each_entry_safe(vp, tvp, &base_vha->hw->vp_list, list)
3878 qla2x00_mark_all_devices_lost(vp, 0);
3879 } else {
3880 if (!atomic_read(&vha->loop_down_timer))
3881 atomic_set(&vha->loop_down_timer,
3882 LOOP_DOWN_TIME);
3883 }
3884
3885 /* Make sure for ISP 82XX IO DMA is complete */
3886 if (IS_QLA82XX(ha))
3887 qla82xx_wait_for_pending_commands(vha);
3888
3889 /* Requeue all commands in outstanding command list. */
3890 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
3891}
3892
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893/*
3894* qla2x00_abort_isp
3895* Resets ISP and aborts all outstanding commands.
3896*
3897* Input:
3898* ha = adapter block pointer.
3899*
3900* Returns:
3901* 0 = success
3902*/
3903int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003904qla2x00_abort_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905{
Andrew Vasquez476e8972006-08-23 14:54:55 -07003906 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 uint8_t status = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003908 struct qla_hw_data *ha = vha->hw;
3909 struct scsi_qla_host *vp;
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003910 struct scsi_qla_host *tvp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003911 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003913 if (vha->flags.online) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07003914 qla2x00_abort_isp_cleanup(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Andrew Vasquez85880802009-12-15 21:29:46 -08003916 if (unlikely(pci_channel_offline(ha->pdev) &&
3917 ha->flags.pci_channel_io_perm_failure)) {
3918 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3919 status = 0;
3920 return status;
3921 }
3922
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003923 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003924
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003925 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003927 if (!qla2x00_restart_isp(vha)) {
3928 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003930 if (!atomic_read(&vha->loop_down_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 /*
3932 * Issue marker command only when we are going
3933 * to start the I/O .
3934 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003935 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 }
3937
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003938 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
Andrew Vasquezfd34f552007-07-19 15:06:00 -07003940 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003942 ha->isp_abort_cnt = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003943 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Andrew Vasquez476e8972006-08-23 14:54:55 -07003944
Lalit Chandivade29c53972009-10-13 15:16:47 -07003945 if (IS_QLA81XX(ha))
3946 qla2x00_get_fw_version(vha,
3947 &ha->fw_major_version,
3948 &ha->fw_minor_version,
3949 &ha->fw_subminor_version,
3950 &ha->fw_attributes, &ha->fw_memory_size,
3951 ha->mpi_version, &ha->mpi_capabilities,
3952 ha->phy_version);
3953
Andrew Vasquezdf613b92008-01-17 09:02:17 -08003954 if (ha->fce) {
3955 ha->flags.fce_enabled = 1;
3956 memset(ha->fce, 0,
3957 fce_calc_size(ha->fce_bufs));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003958 rval = qla2x00_enable_fce_trace(vha,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08003959 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
3960 &ha->fce_bufs);
3961 if (rval) {
3962 qla_printk(KERN_WARNING, ha,
3963 "Unable to reinitialize FCE "
3964 "(%d).\n", rval);
3965 ha->flags.fce_enabled = 0;
3966 }
3967 }
Andrew Vasquez436a7b12008-07-10 16:55:54 -07003968
3969 if (ha->eft) {
3970 memset(ha->eft, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003971 rval = qla2x00_enable_eft_trace(vha,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07003972 ha->eft_dma, EFT_NUM_BUFFERS);
3973 if (rval) {
3974 qla_printk(KERN_WARNING, ha,
3975 "Unable to reinitialize EFT "
3976 "(%d).\n", rval);
3977 }
3978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 } else { /* failed the ISP abort */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003980 vha->flags.online = 1;
3981 if (test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 if (ha->isp_abort_cnt == 0) {
3983 qla_printk(KERN_WARNING, ha,
3984 "ISP error recovery failed - "
3985 "board disabled\n");
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003986 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 * The next call disables the board
3988 * completely.
3989 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003990 ha->isp_ops->reset_adapter(vha);
3991 vha->flags.online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 clear_bit(ISP_ABORT_RETRY,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003993 &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 status = 0;
3995 } else { /* schedule another ISP abort */
3996 ha->isp_abort_cnt--;
3997 DEBUG(printk("qla%ld: ISP abort - "
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003998 "retry remaining %d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003999 vha->host_no, ha->isp_abort_cnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 status = 1;
4001 }
4002 } else {
4003 ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
4004 DEBUG(printk("qla2x00(%ld): ISP error recovery "
4005 "- retrying (%d) more times\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004006 vha->host_no, ha->isp_abort_cnt));
4007 set_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 status = 1;
4009 }
4010 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07004011
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 }
4013
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004014 if (!status) {
4015 DEBUG(printk(KERN_INFO
4016 "qla2x00_abort_isp(%ld): succeeded.\n",
4017 vha->host_no));
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08004018 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004019 if (vp->vp_idx)
4020 qla2x00_vp_abort_isp(vp);
4021 }
4022 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 qla_printk(KERN_INFO, ha,
4024 "qla2x00_abort_isp: **** FAILED ****\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 }
4026
4027 return(status);
4028}
4029
4030/*
4031* qla2x00_restart_isp
4032* restarts the ISP after a reset
4033*
4034* Input:
4035* ha = adapter block pointer.
4036*
4037* Returns:
4038* 0 = success
4039*/
4040static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004041qla2x00_restart_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042{
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08004043 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 uint32_t wait_time;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004045 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004046 struct req_que *req = ha->req_q_map[0];
4047 struct rsp_que *rsp = ha->rsp_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
4049 /* If firmware needs to be loaded */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004050 if (qla2x00_isp_firmware(vha)) {
4051 vha->flags.online = 0;
4052 status = ha->isp_ops->chip_diag(vha);
4053 if (!status)
4054 status = qla2x00_setup_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 }
4056
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004057 if (!status && !(status = qla2x00_init_rings(vha))) {
4058 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -07004059 ha->flags.chip_reset_done = 1;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004060 /* Initialize the queues in use */
4061 qla25xx_init_queues(ha);
4062
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004063 status = qla2x00_fw_ready(vha);
4064 if (!status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 DEBUG(printk("%s(): Start configure loop, "
Andrew Vasquez744f11fd2006-06-23 16:11:05 -07004066 "status = %d\n", __func__, status));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004067
4068 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004069 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004070
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004071 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 /* Wait at most MAX_TARGET RSCNs for a stable link. */
4073 wait_time = 256;
4074 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004075 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4076 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004078 } while (!atomic_read(&vha->loop_down_timer) &&
4079 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
4080 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
4081 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 }
4083
4084 /* if no cable then assume it's good */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004085 if ((vha->device_flags & DFLG_NO_CABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 status = 0;
4087
4088 DEBUG(printk("%s(): Configure loop done, status = 0x%x\n",
4089 __func__,
Andrew Vasquez744f11fd2006-06-23 16:11:05 -07004090 status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 }
4092 return (status);
4093}
4094
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004095static int
4096qla25xx_init_queues(struct qla_hw_data *ha)
4097{
4098 struct rsp_que *rsp = NULL;
4099 struct req_que *req = NULL;
4100 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
4101 int ret = -1;
4102 int i;
4103
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004104 for (i = 1; i < ha->max_rsp_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004105 rsp = ha->rsp_q_map[i];
4106 if (rsp) {
4107 rsp->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004108 ret = qla25xx_init_rsp_que(base_vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004109 if (ret != QLA_SUCCESS)
4110 DEBUG2_17(printk(KERN_WARNING
4111 "%s Rsp que:%d init failed\n", __func__,
4112 rsp->id));
4113 else
4114 DEBUG2_17(printk(KERN_INFO
4115 "%s Rsp que:%d inited\n", __func__,
4116 rsp->id));
4117 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07004118 }
4119 for (i = 1; i < ha->max_req_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004120 req = ha->req_q_map[i];
4121 if (req) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08004122 /* Clear outstanding commands array. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004123 req->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08004124 ret = qla25xx_init_req_que(base_vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004125 if (ret != QLA_SUCCESS)
4126 DEBUG2_17(printk(KERN_WARNING
4127 "%s Req que:%d init failed\n", __func__,
4128 req->id));
4129 else
4130 DEBUG2_17(printk(KERN_WARNING
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08004131 "%s Req que:%d inited\n", __func__,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004132 req->id));
4133 }
4134 }
4135 return ret;
4136}
4137
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138/*
4139* qla2x00_reset_adapter
4140* Reset adapter.
4141*
4142* Input:
4143* ha = adapter block pointer.
4144*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07004145void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004146qla2x00_reset_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147{
4148 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004149 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07004150 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004152 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004153 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 spin_lock_irqsave(&ha->hardware_lock, flags);
4156 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
4157 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4158 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
4159 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
4160 spin_unlock_irqrestore(&ha->hardware_lock, flags);
4161}
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004162
4163void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004164qla24xx_reset_adapter(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004165{
4166 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004167 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004168 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
4169
Giridhar Malavalia9083012010-04-12 17:59:55 -07004170 if (IS_QLA82XX(ha))
4171 return;
4172
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004173 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07004174 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004175
4176 spin_lock_irqsave(&ha->hardware_lock, flags);
4177 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
4178 RD_REG_DWORD(&reg->hccr);
4179 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
4180 RD_REG_DWORD(&reg->hccr);
4181 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez09ff36d2009-01-22 09:45:30 -08004182
4183 if (IS_NOPOLLING_TYPE(ha))
4184 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004185}
4186
David Miller4e08df32007-04-16 12:37:43 -07004187/* On sparc systems, obtain port and node WWN from firmware
4188 * properties.
4189 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004190static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t *vha,
4191 struct nvram_24xx *nv)
David Miller4e08df32007-04-16 12:37:43 -07004192{
4193#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004194 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07004195 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07004196 struct device_node *dp = pci_device_to_OF_node(pdev);
4197 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07004198 int len;
4199
4200 val = of_get_property(dp, "port-wwn", &len);
4201 if (val && len >= WWN_SIZE)
4202 memcpy(nv->port_name, val, WWN_SIZE);
4203
4204 val = of_get_property(dp, "node-wwn", &len);
4205 if (val && len >= WWN_SIZE)
4206 memcpy(nv->node_name, val, WWN_SIZE);
4207#endif
4208}
4209
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004210int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004211qla24xx_nvram_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004212{
David Miller4e08df32007-04-16 12:37:43 -07004213 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004214 struct init_cb_24xx *icb;
4215 struct nvram_24xx *nv;
4216 uint32_t *dptr;
4217 uint8_t *dptr1, *dptr2;
4218 uint32_t chksum;
4219 uint16_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004220 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004221
David Miller4e08df32007-04-16 12:37:43 -07004222 rval = QLA_SUCCESS;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004223 icb = (struct init_cb_24xx *)ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07004224 nv = ha->nvram;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004225
4226 /* Determine NVRAM starting address. */
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004227 if (ha->flags.port0) {
4228 ha->nvram_base = FA_NVRAM_FUNC0_ADDR;
4229 ha->vpd_base = FA_NVRAM_VPD0_ADDR;
4230 } else {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004231 ha->nvram_base = FA_NVRAM_FUNC1_ADDR;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -08004232 ha->vpd_base = FA_NVRAM_VPD1_ADDR;
4233 }
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004234 ha->nvram_size = sizeof(struct nvram_24xx);
4235 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Giridhar Malavalia9083012010-04-12 17:59:55 -07004236 if (IS_QLA82XX(ha))
4237 ha->vpd_size = FA_VPD_SIZE_82XX;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004238
Seokmann Ju281afe12007-07-26 13:43:34 -07004239 /* Get VPD data into cache */
4240 ha->vpd = ha->nvram + VPD_OFFSET;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004241 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd,
Seokmann Ju281afe12007-07-26 13:43:34 -07004242 ha->nvram_base - FA_NVRAM_FUNC0_ADDR, FA_NVRAM_VPD_SIZE * 4);
4243
4244 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004245 dptr = (uint32_t *)nv;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004246 ha->isp_ops->read_nvram(vha, (uint8_t *)dptr, ha->nvram_base,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004247 ha->nvram_size);
4248 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
4249 chksum += le32_to_cpu(*dptr++);
4250
Andrew Vasquez76403352009-04-06 22:33:39 -07004251 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Seokmann Ju281afe12007-07-26 13:43:34 -07004252 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004253
4254 /* Bad NVRAM data, set defaults parameters. */
4255 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
4256 || nv->id[3] != ' ' ||
4257 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
4258 /* Reset NVRAM data. */
4259 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
4260 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
4261 le16_to_cpu(nv->nvram_version));
David Miller4e08df32007-04-16 12:37:43 -07004262 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
4263 "invalid -- WWPN) defaults.\n");
4264
4265 /*
4266 * Set default initialization control block.
4267 */
4268 memset(nv, 0, ha->nvram_size);
4269 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
4270 nv->version = __constant_cpu_to_le16(ICB_VERSION);
4271 nv->frame_payload_size = __constant_cpu_to_le16(2048);
4272 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4273 nv->exchange_count = __constant_cpu_to_le16(0);
4274 nv->hard_address = __constant_cpu_to_le16(124);
4275 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004276 nv->port_name[1] = 0x00 + ha->port_no;
David Miller4e08df32007-04-16 12:37:43 -07004277 nv->port_name[2] = 0x00;
4278 nv->port_name[3] = 0xe0;
4279 nv->port_name[4] = 0x8b;
4280 nv->port_name[5] = 0x1c;
4281 nv->port_name[6] = 0x55;
4282 nv->port_name[7] = 0x86;
4283 nv->node_name[0] = 0x20;
4284 nv->node_name[1] = 0x00;
4285 nv->node_name[2] = 0x00;
4286 nv->node_name[3] = 0xe0;
4287 nv->node_name[4] = 0x8b;
4288 nv->node_name[5] = 0x1c;
4289 nv->node_name[6] = 0x55;
4290 nv->node_name[7] = 0x86;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004291 qla24xx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07004292 nv->login_retry_count = __constant_cpu_to_le16(8);
4293 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
4294 nv->login_timeout = __constant_cpu_to_le16(0);
4295 nv->firmware_options_1 =
4296 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
4297 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
4298 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
4299 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
4300 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
4301 nv->efi_parameters = __constant_cpu_to_le32(0);
4302 nv->reset_delay = 5;
4303 nv->max_luns_per_target = __constant_cpu_to_le16(128);
4304 nv->port_down_retry_count = __constant_cpu_to_le16(30);
4305 nv->link_down_timeout = __constant_cpu_to_le16(30);
4306
4307 rval = 1;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004308 }
4309
4310 /* Reset Initialization control block */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004311 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004312
4313 /* Copy 1st segment. */
4314 dptr1 = (uint8_t *)icb;
4315 dptr2 = (uint8_t *)&nv->version;
4316 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
4317 while (cnt--)
4318 *dptr1++ = *dptr2++;
4319
4320 icb->login_retry_count = nv->login_retry_count;
Andrew Vasquez3ea66e22006-06-23 16:11:27 -07004321 icb->link_down_on_nos = nv->link_down_on_nos;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004322
4323 /* Copy 2nd segment. */
4324 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
4325 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
4326 cnt = (uint8_t *)&icb->reserved_3 -
4327 (uint8_t *)&icb->interrupt_delay_timer;
4328 while (cnt--)
4329 *dptr1++ = *dptr2++;
4330
4331 /*
4332 * Setup driver NVRAM options.
4333 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004334 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08004335 "QLA2462");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004336
Andrew Vasquez5341e862006-05-17 15:09:16 -07004337 /* Use alternate WWN? */
4338 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
4339 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
4340 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
4341 }
4342
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004343 /* Prepare nodename */
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004344 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004345 /*
4346 * Firmware will apply the following mask if the nodename was
4347 * not provided.
4348 */
4349 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
4350 icb->node_name[0] &= 0xF0;
4351 }
4352
4353 /* Set host adapter parameters. */
4354 ha->flags.disable_risc_code_load = 0;
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08004355 ha->flags.enable_lip_reset = 0;
4356 ha->flags.enable_lip_full_login =
4357 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
4358 ha->flags.enable_target_reset =
4359 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004360 ha->flags.enable_led_scheme = 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07004361 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004362
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004363 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
4364 (BIT_6 | BIT_5 | BIT_4)) >> 4;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004365
4366 memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
4367 sizeof(ha->fw_seriallink_options24));
4368
4369 /* save HBA serial number */
4370 ha->serial0 = icb->port_name[5];
4371 ha->serial1 = icb->port_name[6];
4372 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004373 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
4374 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004375
andrew.vasquez@qlogic.combc8fb3c2006-01-13 17:05:42 -08004376 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4377
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004378 ha->retry_count = le16_to_cpu(nv->login_retry_count);
4379
4380 /* Set minimum login_timeout to 4 seconds. */
4381 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
4382 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
4383 if (le16_to_cpu(nv->login_timeout) < 4)
4384 nv->login_timeout = __constant_cpu_to_le16(4);
4385 ha->login_timeout = le16_to_cpu(nv->login_timeout);
Seokmann Juc6852c42008-04-24 15:21:29 -07004386 icb->login_timeout = nv->login_timeout;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004387
Andrew Vasquez00a537b2008-02-28 14:06:11 -08004388 /* Set minimum RATOV to 100 tenths of a second. */
4389 ha->r_a_tov = 100;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004390
4391 ha->loop_reset_delay = nv->reset_delay;
4392
4393 /* Link Down Timeout = 0:
4394 *
4395 * When Port Down timer expires we will start returning
4396 * I/O's to OS with "DID_NO_CONNECT".
4397 *
4398 * Link Down Timeout != 0:
4399 *
4400 * The driver waits for the link to come up after link down
4401 * before returning I/Os to OS with "DID_NO_CONNECT".
4402 */
4403 if (le16_to_cpu(nv->link_down_timeout) == 0) {
4404 ha->loop_down_abort_time =
4405 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
4406 } else {
4407 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
4408 ha->loop_down_abort_time =
4409 (LOOP_DOWN_TIME - ha->link_down_timeout);
4410 }
4411
4412 /* Need enough time to try and get the port back. */
4413 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
4414 if (qlport_down_retry)
4415 ha->port_down_retry_count = qlport_down_retry;
4416
4417 /* Set login_retry_count */
4418 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
4419 if (ha->port_down_retry_count ==
4420 le16_to_cpu(nv->port_down_retry_count) &&
4421 ha->port_down_retry_count > 3)
4422 ha->login_retry_count = ha->port_down_retry_count;
4423 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
4424 ha->login_retry_count = ha->port_down_retry_count;
4425 if (ql2xloginretrycount)
4426 ha->login_retry_count = ql2xloginretrycount;
4427
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004428 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004429 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004430 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
4431 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
4432 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
4433 le16_to_cpu(icb->interrupt_delay_timer): 2;
4434 }
4435 icb->firmware_options_2 &= __constant_cpu_to_le32(
4436 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004437 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004438 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08004439 ha->zio_mode = QLA_ZIO_MODE_6;
4440
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004441 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer delay "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004442 "(%d us).\n", vha->host_no, ha->zio_mode,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004443 ha->zio_timer * 100));
4444 qla_printk(KERN_INFO, ha,
4445 "ZIO mode %d enabled; timer delay (%d us).\n",
4446 ha->zio_mode, ha->zio_timer * 100);
4447
4448 icb->firmware_options_2 |= cpu_to_le32(
4449 (uint32_t)ha->zio_mode);
4450 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004451 vha->flags.process_response_queue = 1;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004452 }
4453
David Miller4e08df32007-04-16 12:37:43 -07004454 if (rval) {
4455 DEBUG2_3(printk(KERN_WARNING
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004456 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
David Miller4e08df32007-04-16 12:37:43 -07004457 }
4458 return (rval);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004459}
4460
Adrian Bunk413975a2006-06-30 02:33:06 -07004461static int
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004462qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
4463 uint32_t faddr)
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004464{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004465 int rval = QLA_SUCCESS;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004466 int segments, fragment;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004467 uint32_t *dcode, dlen;
4468 uint32_t risc_addr;
4469 uint32_t risc_size;
4470 uint32_t i;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004471 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004472 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004473
4474 qla_printk(KERN_INFO, ha,
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004475 "FW: Loading from flash (%x)...\n", faddr);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004476
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004477 rval = QLA_SUCCESS;
4478
4479 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004480 dcode = (uint32_t *)req->ring;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004481 *srisc_addr = 0;
4482
4483 /* Validate firmware image by checking version. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004484 qla24xx_read_flash_data(vha, dcode, faddr + 4, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004485 for (i = 0; i < 4; i++)
4486 dcode[i] = be32_to_cpu(dcode[i]);
4487 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
4488 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
4489 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
4490 dcode[3] == 0)) {
4491 qla_printk(KERN_WARNING, ha,
4492 "Unable to verify integrity of flash firmware image!\n");
4493 qla_printk(KERN_WARNING, ha,
4494 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
4495 dcode[1], dcode[2], dcode[3]);
4496
4497 return QLA_FUNCTION_FAILED;
4498 }
4499
4500 while (segments && rval == QLA_SUCCESS) {
4501 /* Read segment's load information. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004502 qla24xx_read_flash_data(vha, dcode, faddr, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004503
4504 risc_addr = be32_to_cpu(dcode[2]);
4505 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
4506 risc_size = be32_to_cpu(dcode[3]);
4507
4508 fragment = 0;
4509 while (risc_size > 0 && rval == QLA_SUCCESS) {
4510 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
4511 if (dlen > risc_size)
4512 dlen = risc_size;
4513
4514 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
4515 "addr %x, number of dwords 0x%x, offset 0x%x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004516 vha->host_no, risc_addr, dlen, faddr));
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004517
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004518 qla24xx_read_flash_data(vha, dcode, faddr, dlen);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004519 for (i = 0; i < dlen; i++)
4520 dcode[i] = swab32(dcode[i]);
4521
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004522 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004523 dlen);
4524 if (rval) {
4525 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004526 "segment %d of firmware\n", vha->host_no,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004527 fragment));
4528 qla_printk(KERN_WARNING, ha,
4529 "[ERROR] Failed to load segment %d of "
4530 "firmware\n", fragment);
4531 break;
4532 }
4533
4534 faddr += dlen;
4535 risc_addr += dlen;
4536 risc_size -= dlen;
4537 fragment++;
4538 }
4539
4540 /* Next segment. */
4541 segments--;
4542 }
4543
4544 return rval;
4545}
4546
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004547#define QLA_FW_URL "ftp://ftp.qlogic.com/outgoing/linux/firmware/"
4548
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004549int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004550qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez54333832005-11-09 15:49:04 -08004551{
4552 int rval;
4553 int i, fragment;
4554 uint16_t *wcode, *fwcode;
4555 uint32_t risc_addr, risc_size, fwclen, wlen, *seg;
4556 struct fw_blob *blob;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004557 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004558 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez54333832005-11-09 15:49:04 -08004559
4560 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004561 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08004562 if (!blob) {
4563 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004564 qla_printk(KERN_ERR, ha, "Firmware images can be retrieved "
4565 "from: " QLA_FW_URL ".\n");
Andrew Vasquez54333832005-11-09 15:49:04 -08004566 return QLA_FUNCTION_FAILED;
4567 }
4568
4569 rval = QLA_SUCCESS;
4570
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004571 wcode = (uint16_t *)req->ring;
Andrew Vasquez54333832005-11-09 15:49:04 -08004572 *srisc_addr = 0;
4573 fwcode = (uint16_t *)blob->fw->data;
4574 fwclen = 0;
4575
4576 /* Validate firmware image by checking version. */
4577 if (blob->fw->size < 8 * sizeof(uint16_t)) {
4578 qla_printk(KERN_WARNING, ha,
4579 "Unable to verify integrity of firmware image (%Zd)!\n",
4580 blob->fw->size);
4581 goto fail_fw_integrity;
4582 }
4583 for (i = 0; i < 4; i++)
4584 wcode[i] = be16_to_cpu(fwcode[i + 4]);
4585 if ((wcode[0] == 0xffff && wcode[1] == 0xffff && wcode[2] == 0xffff &&
4586 wcode[3] == 0xffff) || (wcode[0] == 0 && wcode[1] == 0 &&
4587 wcode[2] == 0 && wcode[3] == 0)) {
4588 qla_printk(KERN_WARNING, ha,
4589 "Unable to verify integrity of firmware image!\n");
4590 qla_printk(KERN_WARNING, ha,
4591 "Firmware data: %04x %04x %04x %04x!\n", wcode[0],
4592 wcode[1], wcode[2], wcode[3]);
4593 goto fail_fw_integrity;
4594 }
4595
4596 seg = blob->segs;
4597 while (*seg && rval == QLA_SUCCESS) {
4598 risc_addr = *seg;
4599 *srisc_addr = *srisc_addr == 0 ? *seg : *srisc_addr;
4600 risc_size = be16_to_cpu(fwcode[3]);
4601
4602 /* Validate firmware image size. */
4603 fwclen += risc_size * sizeof(uint16_t);
4604 if (blob->fw->size < fwclen) {
4605 qla_printk(KERN_WARNING, ha,
4606 "Unable to verify integrity of firmware image "
4607 "(%Zd)!\n", blob->fw->size);
4608 goto fail_fw_integrity;
4609 }
4610
4611 fragment = 0;
4612 while (risc_size > 0 && rval == QLA_SUCCESS) {
4613 wlen = (uint16_t)(ha->fw_transfer_size >> 1);
4614 if (wlen > risc_size)
4615 wlen = risc_size;
4616
4617 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004618 "addr %x, number of words 0x%x.\n", vha->host_no,
Andrew Vasquez54333832005-11-09 15:49:04 -08004619 risc_addr, wlen));
4620
4621 for (i = 0; i < wlen; i++)
4622 wcode[i] = swab16(fwcode[i]);
4623
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004624 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquez54333832005-11-09 15:49:04 -08004625 wlen);
4626 if (rval) {
4627 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004628 "segment %d of firmware\n", vha->host_no,
Andrew Vasquez54333832005-11-09 15:49:04 -08004629 fragment));
4630 qla_printk(KERN_WARNING, ha,
4631 "[ERROR] Failed to load segment %d of "
4632 "firmware\n", fragment);
4633 break;
4634 }
4635
4636 fwcode += wlen;
4637 risc_addr += wlen;
4638 risc_size -= wlen;
4639 fragment++;
4640 }
4641
4642 /* Next segment. */
4643 seg++;
4644 }
4645 return rval;
4646
4647fail_fw_integrity:
4648 return QLA_FUNCTION_FAILED;
4649}
4650
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004651static int
4652qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004653{
4654 int rval;
4655 int segments, fragment;
4656 uint32_t *dcode, dlen;
4657 uint32_t risc_addr;
4658 uint32_t risc_size;
4659 uint32_t i;
Andrew Vasquez54333832005-11-09 15:49:04 -08004660 struct fw_blob *blob;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004661 uint32_t *fwcode, fwclen;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004662 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004663 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004664
Andrew Vasquez54333832005-11-09 15:49:04 -08004665 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004666 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08004667 if (!blob) {
4668 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004669 qla_printk(KERN_ERR, ha, "Firmware images can be retrieved "
4670 "from: " QLA_FW_URL ".\n");
4671
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004672 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004673 }
4674
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004675 qla_printk(KERN_INFO, ha,
4676 "FW: Loading via request-firmware...\n");
4677
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004678 rval = QLA_SUCCESS;
4679
4680 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004681 dcode = (uint32_t *)req->ring;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004682 *srisc_addr = 0;
Andrew Vasquez54333832005-11-09 15:49:04 -08004683 fwcode = (uint32_t *)blob->fw->data;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004684 fwclen = 0;
4685
4686 /* Validate firmware image by checking version. */
Andrew Vasquez54333832005-11-09 15:49:04 -08004687 if (blob->fw->size < 8 * sizeof(uint32_t)) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004688 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004689 "Unable to verify integrity of firmware image (%Zd)!\n",
4690 blob->fw->size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004691 goto fail_fw_integrity;
4692 }
4693 for (i = 0; i < 4; i++)
4694 dcode[i] = be32_to_cpu(fwcode[i + 4]);
4695 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
4696 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
4697 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
4698 dcode[3] == 0)) {
4699 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004700 "Unable to verify integrity of firmware image!\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004701 qla_printk(KERN_WARNING, ha,
4702 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
4703 dcode[1], dcode[2], dcode[3]);
4704 goto fail_fw_integrity;
4705 }
4706
4707 while (segments && rval == QLA_SUCCESS) {
4708 risc_addr = be32_to_cpu(fwcode[2]);
4709 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
4710 risc_size = be32_to_cpu(fwcode[3]);
4711
4712 /* Validate firmware image size. */
4713 fwclen += risc_size * sizeof(uint32_t);
Andrew Vasquez54333832005-11-09 15:49:04 -08004714 if (blob->fw->size < fwclen) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004715 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004716 "Unable to verify integrity of firmware image "
4717 "(%Zd)!\n", blob->fw->size);
4718
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004719 goto fail_fw_integrity;
4720 }
4721
4722 fragment = 0;
4723 while (risc_size > 0 && rval == QLA_SUCCESS) {
4724 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
4725 if (dlen > risc_size)
4726 dlen = risc_size;
4727
4728 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004729 "addr %x, number of dwords 0x%x.\n", vha->host_no,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004730 risc_addr, dlen));
4731
4732 for (i = 0; i < dlen; i++)
4733 dcode[i] = swab32(fwcode[i]);
4734
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004735 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
andrew.vasquez@qlogic.com590f98e2006-01-13 17:05:37 -08004736 dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004737 if (rval) {
4738 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004739 "segment %d of firmware\n", vha->host_no,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004740 fragment));
4741 qla_printk(KERN_WARNING, ha,
4742 "[ERROR] Failed to load segment %d of "
4743 "firmware\n", fragment);
4744 break;
4745 }
4746
4747 fwcode += dlen;
4748 risc_addr += dlen;
4749 risc_size -= dlen;
4750 fragment++;
4751 }
4752
4753 /* Next segment. */
4754 segments--;
4755 }
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004756 return rval;
4757
4758fail_fw_integrity:
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004759 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004760}
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004761
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004762int
4763qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
4764{
4765 int rval;
4766
Andrew Vasqueze337d902009-04-06 22:33:49 -07004767 if (ql2xfwloadbin == 1)
4768 return qla81xx_load_risc(vha, srisc_addr);
4769
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004770 /*
4771 * FW Load priority:
4772 * 1) Firmware via request-firmware interface (.bin file).
4773 * 2) Firmware residing in flash.
4774 */
4775 rval = qla24xx_load_risc_blob(vha, srisc_addr);
4776 if (rval == QLA_SUCCESS)
4777 return rval;
4778
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004779 return qla24xx_load_risc_flash(vha, srisc_addr,
4780 vha->hw->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004781}
4782
4783int
4784qla81xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
4785{
4786 int rval;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004787 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004788
Andrew Vasqueze337d902009-04-06 22:33:49 -07004789 if (ql2xfwloadbin == 2)
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004790 goto try_blob_fw;
Andrew Vasqueze337d902009-04-06 22:33:49 -07004791
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004792 /*
4793 * FW Load priority:
4794 * 1) Firmware residing in flash.
4795 * 2) Firmware via request-firmware interface (.bin file).
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004796 * 3) Golden-Firmware residing in flash -- limited operation.
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004797 */
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004798 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004799 if (rval == QLA_SUCCESS)
4800 return rval;
4801
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004802try_blob_fw:
4803 rval = qla24xx_load_risc_blob(vha, srisc_addr);
4804 if (rval == QLA_SUCCESS || !ha->flt_region_gold_fw)
4805 return rval;
4806
4807 qla_printk(KERN_ERR, ha,
4808 "FW: Attempting to fallback to golden firmware...\n");
4809 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_gold_fw);
4810 if (rval != QLA_SUCCESS)
4811 return rval;
4812
4813 qla_printk(KERN_ERR, ha,
4814 "FW: Please update operational firmware...\n");
4815 ha->flags.running_gold_fw = 1;
4816
4817 return rval;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004818}
4819
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004820void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004821qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004822{
4823 int ret, retries;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004824 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004825
Andrew Vasquez85880802009-12-15 21:29:46 -08004826 if (ha->flags.pci_channel_io_perm_failure)
4827 return;
Andrew Vasqueze4289242007-07-19 15:05:56 -07004828 if (!IS_FWI2_CAPABLE(ha))
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004829 return;
Andrew Vasquez75edf812007-05-07 07:43:00 -07004830 if (!ha->fw_major_version)
4831 return;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004832
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004833 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez7c7f1f22008-02-28 14:06:09 -08004834 for (retries = 5; ret != QLA_SUCCESS && ret != QLA_FUNCTION_TIMEOUT &&
Andrew Vasquezb469a7c2009-04-06 22:33:48 -07004835 ret != QLA_INVALID_COMMAND && retries ; retries--) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004836 ha->isp_ops->reset_chip(vha);
4837 if (ha->isp_ops->chip_diag(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004838 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004839 if (qla2x00_setup_chip(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004840 continue;
4841 qla_printk(KERN_INFO, ha,
4842 "Attempting retry of stop-firmware command...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004843 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004844 }
4845}
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004846
4847int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004848qla24xx_configure_vhba(scsi_qla_host_t *vha)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004849{
4850 int rval = QLA_SUCCESS;
4851 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004852 struct qla_hw_data *ha = vha->hw;
4853 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07004854 struct req_que *req;
4855 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004856
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004857 if (!vha->vp_idx)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004858 return -EINVAL;
4859
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004860 rval = qla2x00_fw_ready(base_vha);
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07004861 if (ha->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07004862 req = ha->req_q_map[0];
4863 else
4864 req = vha->req;
4865 rsp = req->rsp;
4866
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004867 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004868 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004869 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004870 }
4871
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004872 vha->flags.management_server_logged_in = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004873
4874 /* Login to SNS first */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004875 ha->isp_ops->fabric_login(vha, NPH_SNS, 0xff, 0xff, 0xfc, mb, BIT_1);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004876 if (mb[0] != MBS_COMMAND_COMPLETE) {
4877 DEBUG15(qla_printk(KERN_INFO, ha,
4878 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
4879 "mb[2]=%x mb[6]=%x mb[7]=%x\n", NPH_SNS,
4880 mb[0], mb[1], mb[2], mb[6], mb[7]));
4881 return (QLA_FUNCTION_FAILED);
4882 }
4883
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004884 atomic_set(&vha->loop_down_timer, 0);
4885 atomic_set(&vha->loop_state, LOOP_UP);
4886 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4887 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
4888 rval = qla2x00_loop_resync(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004889
4890 return rval;
4891}
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004892
4893/* 84XX Support **************************************************************/
4894
4895static LIST_HEAD(qla_cs84xx_list);
4896static DEFINE_MUTEX(qla_cs84xx_mutex);
4897
4898static struct qla_chip_state_84xx *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004899qla84xx_get_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004900{
4901 struct qla_chip_state_84xx *cs84xx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004902 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004903
4904 mutex_lock(&qla_cs84xx_mutex);
4905
4906 /* Find any shared 84xx chip. */
4907 list_for_each_entry(cs84xx, &qla_cs84xx_list, list) {
4908 if (cs84xx->bus == ha->pdev->bus) {
4909 kref_get(&cs84xx->kref);
4910 goto done;
4911 }
4912 }
4913
4914 cs84xx = kzalloc(sizeof(*cs84xx), GFP_KERNEL);
4915 if (!cs84xx)
4916 goto done;
4917
4918 kref_init(&cs84xx->kref);
4919 spin_lock_init(&cs84xx->access_lock);
4920 mutex_init(&cs84xx->fw_update_mutex);
4921 cs84xx->bus = ha->pdev->bus;
4922
4923 list_add_tail(&cs84xx->list, &qla_cs84xx_list);
4924done:
4925 mutex_unlock(&qla_cs84xx_mutex);
4926 return cs84xx;
4927}
4928
4929static void
4930__qla84xx_chip_release(struct kref *kref)
4931{
4932 struct qla_chip_state_84xx *cs84xx =
4933 container_of(kref, struct qla_chip_state_84xx, kref);
4934
4935 mutex_lock(&qla_cs84xx_mutex);
4936 list_del(&cs84xx->list);
4937 mutex_unlock(&qla_cs84xx_mutex);
4938 kfree(cs84xx);
4939}
4940
4941void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004942qla84xx_put_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004943{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004944 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004945 if (ha->cs84xx)
4946 kref_put(&ha->cs84xx->kref, __qla84xx_chip_release);
4947}
4948
4949static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004950qla84xx_init_chip(scsi_qla_host_t *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004951{
4952 int rval;
4953 uint16_t status[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004954 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004955
4956 mutex_lock(&ha->cs84xx->fw_update_mutex);
4957
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004958 rval = qla84xx_verify_chip(vha, status);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004959
4960 mutex_unlock(&ha->cs84xx->fw_update_mutex);
4961
4962 return rval != QLA_SUCCESS || status[0] ? QLA_FUNCTION_FAILED:
4963 QLA_SUCCESS;
4964}
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004965
4966/* 81XX Support **************************************************************/
4967
4968int
4969qla81xx_nvram_config(scsi_qla_host_t *vha)
4970{
4971 int rval;
4972 struct init_cb_81xx *icb;
4973 struct nvram_81xx *nv;
4974 uint32_t *dptr;
4975 uint8_t *dptr1, *dptr2;
4976 uint32_t chksum;
4977 uint16_t cnt;
4978 struct qla_hw_data *ha = vha->hw;
4979
4980 rval = QLA_SUCCESS;
4981 icb = (struct init_cb_81xx *)ha->init_cb;
4982 nv = ha->nvram;
4983
4984 /* Determine NVRAM starting address. */
4985 ha->nvram_size = sizeof(struct nvram_81xx);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004986 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004987
4988 /* Get VPD data into cache */
4989 ha->vpd = ha->nvram + VPD_OFFSET;
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07004990 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
4991 ha->vpd_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004992
4993 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07004994 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004995 ha->nvram_size);
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07004996 dptr = (uint32_t *)nv;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004997 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
4998 chksum += le32_to_cpu(*dptr++);
4999
Andrew Vasquez76403352009-04-06 22:33:39 -07005000 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005001 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
5002
5003 /* Bad NVRAM data, set defaults parameters. */
5004 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
5005 || nv->id[3] != ' ' ||
5006 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
5007 /* Reset NVRAM data. */
5008 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
5009 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
5010 le16_to_cpu(nv->nvram_version));
5011 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
5012 "invalid -- WWPN) defaults.\n");
5013
5014 /*
5015 * Set default initialization control block.
5016 */
5017 memset(nv, 0, ha->nvram_size);
5018 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
5019 nv->version = __constant_cpu_to_le16(ICB_VERSION);
5020 nv->frame_payload_size = __constant_cpu_to_le16(2048);
5021 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5022 nv->exchange_count = __constant_cpu_to_le16(0);
5023 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005024 nv->port_name[1] = 0x00 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005025 nv->port_name[2] = 0x00;
5026 nv->port_name[3] = 0xe0;
5027 nv->port_name[4] = 0x8b;
5028 nv->port_name[5] = 0x1c;
5029 nv->port_name[6] = 0x55;
5030 nv->port_name[7] = 0x86;
5031 nv->node_name[0] = 0x20;
5032 nv->node_name[1] = 0x00;
5033 nv->node_name[2] = 0x00;
5034 nv->node_name[3] = 0xe0;
5035 nv->node_name[4] = 0x8b;
5036 nv->node_name[5] = 0x1c;
5037 nv->node_name[6] = 0x55;
5038 nv->node_name[7] = 0x86;
5039 nv->login_retry_count = __constant_cpu_to_le16(8);
5040 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
5041 nv->login_timeout = __constant_cpu_to_le16(0);
5042 nv->firmware_options_1 =
5043 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
5044 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
5045 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
5046 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
5047 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
5048 nv->efi_parameters = __constant_cpu_to_le32(0);
5049 nv->reset_delay = 5;
5050 nv->max_luns_per_target = __constant_cpu_to_le16(128);
5051 nv->port_down_retry_count = __constant_cpu_to_le16(30);
5052 nv->link_down_timeout = __constant_cpu_to_le16(30);
Andrew Vasquezeeebcc92009-06-03 09:55:24 -07005053 nv->enode_mac[0] = 0x00;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005054 nv->enode_mac[1] = 0x02;
5055 nv->enode_mac[2] = 0x03;
5056 nv->enode_mac[3] = 0x04;
5057 nv->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005058 nv->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005059
5060 rval = 1;
5061 }
5062
5063 /* Reset Initialization control block */
5064 memset(icb, 0, sizeof(struct init_cb_81xx));
5065
5066 /* Copy 1st segment. */
5067 dptr1 = (uint8_t *)icb;
5068 dptr2 = (uint8_t *)&nv->version;
5069 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
5070 while (cnt--)
5071 *dptr1++ = *dptr2++;
5072
5073 icb->login_retry_count = nv->login_retry_count;
5074
5075 /* Copy 2nd segment. */
5076 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
5077 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
5078 cnt = (uint8_t *)&icb->reserved_5 -
5079 (uint8_t *)&icb->interrupt_delay_timer;
5080 while (cnt--)
5081 *dptr1++ = *dptr2++;
5082
5083 memcpy(icb->enode_mac, nv->enode_mac, sizeof(icb->enode_mac));
5084 /* Some boards (with valid NVRAMs) still have NULL enode_mac!! */
5085 if (!memcmp(icb->enode_mac, "\0\0\0\0\0\0", sizeof(icb->enode_mac))) {
5086 icb->enode_mac[0] = 0x01;
5087 icb->enode_mac[1] = 0x02;
5088 icb->enode_mac[2] = 0x03;
5089 icb->enode_mac[3] = 0x04;
5090 icb->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07005091 icb->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005092 }
5093
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07005094 /* Use extended-initialization control block. */
5095 memcpy(ha->ex_init_cb, &nv->ex_version, sizeof(*ha->ex_init_cb));
5096
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005097 /*
5098 * Setup driver NVRAM options.
5099 */
5100 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Giridhar Malavalia9083012010-04-12 17:59:55 -07005101 "QLE8XXX");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005102
5103 /* Use alternate WWN? */
5104 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
5105 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
5106 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
5107 }
5108
5109 /* Prepare nodename */
5110 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
5111 /*
5112 * Firmware will apply the following mask if the nodename was
5113 * not provided.
5114 */
5115 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
5116 icb->node_name[0] &= 0xF0;
5117 }
5118
5119 /* Set host adapter parameters. */
5120 ha->flags.disable_risc_code_load = 0;
5121 ha->flags.enable_lip_reset = 0;
5122 ha->flags.enable_lip_full_login =
5123 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
5124 ha->flags.enable_target_reset =
5125 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
5126 ha->flags.enable_led_scheme = 0;
5127 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
5128
5129 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
5130 (BIT_6 | BIT_5 | BIT_4)) >> 4;
5131
5132 /* save HBA serial number */
5133 ha->serial0 = icb->port_name[5];
5134 ha->serial1 = icb->port_name[6];
5135 ha->serial2 = icb->port_name[7];
5136 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
5137 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
5138
5139 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
5140
5141 ha->retry_count = le16_to_cpu(nv->login_retry_count);
5142
5143 /* Set minimum login_timeout to 4 seconds. */
5144 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
5145 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
5146 if (le16_to_cpu(nv->login_timeout) < 4)
5147 nv->login_timeout = __constant_cpu_to_le16(4);
5148 ha->login_timeout = le16_to_cpu(nv->login_timeout);
5149 icb->login_timeout = nv->login_timeout;
5150
5151 /* Set minimum RATOV to 100 tenths of a second. */
5152 ha->r_a_tov = 100;
5153
5154 ha->loop_reset_delay = nv->reset_delay;
5155
5156 /* Link Down Timeout = 0:
5157 *
5158 * When Port Down timer expires we will start returning
5159 * I/O's to OS with "DID_NO_CONNECT".
5160 *
5161 * Link Down Timeout != 0:
5162 *
5163 * The driver waits for the link to come up after link down
5164 * before returning I/Os to OS with "DID_NO_CONNECT".
5165 */
5166 if (le16_to_cpu(nv->link_down_timeout) == 0) {
5167 ha->loop_down_abort_time =
5168 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
5169 } else {
5170 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
5171 ha->loop_down_abort_time =
5172 (LOOP_DOWN_TIME - ha->link_down_timeout);
5173 }
5174
5175 /* Need enough time to try and get the port back. */
5176 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
5177 if (qlport_down_retry)
5178 ha->port_down_retry_count = qlport_down_retry;
5179
5180 /* Set login_retry_count */
5181 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
5182 if (ha->port_down_retry_count ==
5183 le16_to_cpu(nv->port_down_retry_count) &&
5184 ha->port_down_retry_count > 3)
5185 ha->login_retry_count = ha->port_down_retry_count;
5186 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
5187 ha->login_retry_count = ha->port_down_retry_count;
5188 if (ql2xloginretrycount)
5189 ha->login_retry_count = ql2xloginretrycount;
5190
5191 /* Enable ZIO. */
5192 if (!vha->flags.init_done) {
5193 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
5194 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
5195 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
5196 le16_to_cpu(icb->interrupt_delay_timer): 2;
5197 }
5198 icb->firmware_options_2 &= __constant_cpu_to_le32(
5199 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
5200 vha->flags.process_response_queue = 0;
5201 if (ha->zio_mode != QLA_ZIO_DISABLED) {
5202 ha->zio_mode = QLA_ZIO_MODE_6;
5203
5204 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer delay "
5205 "(%d us).\n", vha->host_no, ha->zio_mode,
5206 ha->zio_timer * 100));
5207 qla_printk(KERN_INFO, ha,
5208 "ZIO mode %d enabled; timer delay (%d us).\n",
5209 ha->zio_mode, ha->zio_timer * 100);
5210
5211 icb->firmware_options_2 |= cpu_to_le32(
5212 (uint32_t)ha->zio_mode);
5213 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
5214 vha->flags.process_response_queue = 1;
5215 }
5216
5217 if (rval) {
5218 DEBUG2_3(printk(KERN_WARNING
5219 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
5220 }
5221 return (rval);
5222}
5223
Giridhar Malavalia9083012010-04-12 17:59:55 -07005224int
5225qla82xx_restart_isp(scsi_qla_host_t *vha)
5226{
5227 int status, rval;
5228 uint32_t wait_time;
5229 struct qla_hw_data *ha = vha->hw;
5230 struct req_que *req = ha->req_q_map[0];
5231 struct rsp_que *rsp = ha->rsp_q_map[0];
5232 struct scsi_qla_host *vp;
5233 struct scsi_qla_host *tvp;
5234
5235 status = qla2x00_init_rings(vha);
5236 if (!status) {
5237 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5238 ha->flags.chip_reset_done = 1;
5239
5240 status = qla2x00_fw_ready(vha);
5241 if (!status) {
5242 qla_printk(KERN_INFO, ha,
5243 "%s(): Start configure loop, "
5244 "status = %d\n", __func__, status);
5245
5246 /* Issue a marker after FW becomes ready. */
5247 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
5248
5249 vha->flags.online = 1;
5250 /* Wait at most MAX_TARGET RSCNs for a stable link. */
5251 wait_time = 256;
5252 do {
5253 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5254 qla2x00_configure_loop(vha);
5255 wait_time--;
5256 } while (!atomic_read(&vha->loop_down_timer) &&
5257 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags)) &&
5258 wait_time &&
5259 (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)));
5260 }
5261
5262 /* if no cable then assume it's good */
5263 if ((vha->device_flags & DFLG_NO_CABLE))
5264 status = 0;
5265
5266 qla_printk(KERN_INFO, ha,
5267 "%s(): Configure loop done, status = 0x%x\n",
5268 __func__, status);
5269 }
5270
5271 if (!status) {
5272 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
5273
5274 if (!atomic_read(&vha->loop_down_timer)) {
5275 /*
5276 * Issue marker command only when we are going
5277 * to start the I/O .
5278 */
5279 vha->marker_needed = 1;
5280 }
5281
5282 vha->flags.online = 1;
5283
5284 ha->isp_ops->enable_intrs(ha);
5285
5286 ha->isp_abort_cnt = 0;
5287 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
5288
5289 if (ha->fce) {
5290 ha->flags.fce_enabled = 1;
5291 memset(ha->fce, 0,
5292 fce_calc_size(ha->fce_bufs));
5293 rval = qla2x00_enable_fce_trace(vha,
5294 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
5295 &ha->fce_bufs);
5296 if (rval) {
5297 qla_printk(KERN_WARNING, ha,
5298 "Unable to reinitialize FCE "
5299 "(%d).\n", rval);
5300 ha->flags.fce_enabled = 0;
5301 }
5302 }
5303
5304 if (ha->eft) {
5305 memset(ha->eft, 0, EFT_SIZE);
5306 rval = qla2x00_enable_eft_trace(vha,
5307 ha->eft_dma, EFT_NUM_BUFFERS);
5308 if (rval) {
5309 qla_printk(KERN_WARNING, ha,
5310 "Unable to reinitialize EFT "
5311 "(%d).\n", rval);
5312 }
5313 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07005314 }
5315
5316 if (!status) {
5317 DEBUG(printk(KERN_INFO
5318 "qla82xx_restart_isp(%ld): succeeded.\n",
5319 vha->host_no));
5320 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
5321 if (vp->vp_idx)
5322 qla2x00_vp_abort_isp(vp);
5323 }
5324 } else {
5325 qla_printk(KERN_INFO, ha,
5326 "qla82xx_restart_isp: **** FAILED ****\n");
5327 }
5328
5329 return status;
5330}
5331
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005332void
Andrew Vasquezae97c912010-02-18 10:07:28 -08005333qla81xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005334{
Andrew Vasquezae97c912010-02-18 10:07:28 -08005335 struct qla_hw_data *ha = vha->hw;
5336
5337 if (!ql2xetsenable)
5338 return;
5339
5340 /* Enable ETS Burst. */
5341 memset(ha->fw_options, 0, sizeof(ha->fw_options));
5342 ha->fw_options[2] |= BIT_9;
5343 qla2x00_set_fw_options(vha, ha->fw_options);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08005344}
Sarang Radke09ff7012010-03-19 17:03:59 -07005345
5346/*
5347 * qla24xx_get_fcp_prio
5348 * Gets the fcp cmd priority value for the logged in port.
5349 * Looks for a match of the port descriptors within
5350 * each of the fcp prio config entries. If a match is found,
5351 * the tag (priority) value is returned.
5352 *
5353 * Input:
5354 * ha = adapter block po
5355 * fcport = port structure pointer.
5356 *
5357 * Return:
Andrew Vasquez6c452a42010-03-19 17:04:02 -07005358 * non-zero (if found)
Sarang Radke09ff7012010-03-19 17:03:59 -07005359 * 0 (if not found)
5360 *
5361 * Context:
5362 * Kernel context
5363 */
5364uint8_t
5365qla24xx_get_fcp_prio(scsi_qla_host_t *vha, fc_port_t *fcport)
5366{
5367 int i, entries;
5368 uint8_t pid_match, wwn_match;
5369 uint8_t priority;
5370 uint32_t pid1, pid2;
5371 uint64_t wwn1, wwn2;
5372 struct qla_fcp_prio_entry *pri_entry;
5373 struct qla_hw_data *ha = vha->hw;
5374
5375 if (!ha->fcp_prio_cfg || !ha->flags.fcp_prio_enabled)
5376 return 0;
5377
5378 priority = 0;
5379 entries = ha->fcp_prio_cfg->num_entries;
5380 pri_entry = &ha->fcp_prio_cfg->entry[0];
5381
5382 for (i = 0; i < entries; i++) {
5383 pid_match = wwn_match = 0;
5384
5385 if (!(pri_entry->flags & FCP_PRIO_ENTRY_VALID)) {
5386 pri_entry++;
5387 continue;
5388 }
5389
5390 /* check source pid for a match */
5391 if (pri_entry->flags & FCP_PRIO_ENTRY_SPID_VALID) {
5392 pid1 = pri_entry->src_pid & INVALID_PORT_ID;
5393 pid2 = vha->d_id.b24 & INVALID_PORT_ID;
5394 if (pid1 == INVALID_PORT_ID)
5395 pid_match++;
5396 else if (pid1 == pid2)
5397 pid_match++;
5398 }
5399
5400 /* check destination pid for a match */
5401 if (pri_entry->flags & FCP_PRIO_ENTRY_DPID_VALID) {
5402 pid1 = pri_entry->dst_pid & INVALID_PORT_ID;
5403 pid2 = fcport->d_id.b24 & INVALID_PORT_ID;
5404 if (pid1 == INVALID_PORT_ID)
5405 pid_match++;
5406 else if (pid1 == pid2)
5407 pid_match++;
5408 }
5409
5410 /* check source WWN for a match */
5411 if (pri_entry->flags & FCP_PRIO_ENTRY_SWWN_VALID) {
5412 wwn1 = wwn_to_u64(vha->port_name);
5413 wwn2 = wwn_to_u64(pri_entry->src_wwpn);
5414 if (wwn2 == (uint64_t)-1)
5415 wwn_match++;
5416 else if (wwn1 == wwn2)
5417 wwn_match++;
5418 }
5419
5420 /* check destination WWN for a match */
5421 if (pri_entry->flags & FCP_PRIO_ENTRY_DWWN_VALID) {
5422 wwn1 = wwn_to_u64(fcport->port_name);
5423 wwn2 = wwn_to_u64(pri_entry->dst_wwpn);
5424 if (wwn2 == (uint64_t)-1)
5425 wwn_match++;
5426 else if (wwn1 == wwn2)
5427 wwn_match++;
5428 }
5429
5430 if (pid_match == 2 || wwn_match == 2) {
5431 /* Found a matching entry */
5432 if (pri_entry->flags & FCP_PRIO_ENTRY_TAG_VALID)
5433 priority = pri_entry->tag;
5434 break;
5435 }
5436
5437 pri_entry++;
5438 }
5439
5440 return priority;
5441}
5442
5443/*
5444 * qla24xx_update_fcport_fcp_prio
5445 * Activates fcp priority for the logged in fc port
5446 *
5447 * Input:
5448 * ha = adapter block pointer.
5449 * fcp = port structure pointer.
5450 *
5451 * Return:
5452 * QLA_SUCCESS or QLA_FUNCTION_FAILED
5453 *
5454 * Context:
5455 * Kernel context.
5456 */
5457int
5458qla24xx_update_fcport_fcp_prio(scsi_qla_host_t *ha, fc_port_t *fcport)
5459{
5460 int ret;
5461 uint8_t priority;
5462 uint16_t mb[5];
5463
5464 if (atomic_read(&fcport->state) == FCS_UNCONFIGURED ||
5465 fcport->port_type != FCT_TARGET ||
5466 fcport->loop_id == FC_NO_LOOP_ID)
5467 return QLA_FUNCTION_FAILED;
5468
5469 priority = qla24xx_get_fcp_prio(ha, fcport);
5470 ret = qla24xx_set_fcp_prio(ha, fcport->loop_id, priority, mb);
5471 if (ret == QLA_SUCCESS)
5472 fcport->fcp_prio = priority;
5473 else
5474 DEBUG2(printk(KERN_WARNING
5475 "scsi(%ld): Unable to activate fcp priority, "
5476 " ret=0x%x\n", ha->host_no, ret));
5477
5478 return ret;
5479}
5480
5481/*
5482 * qla24xx_update_all_fcp_prio
5483 * Activates fcp priority for all the logged in ports
5484 *
5485 * Input:
5486 * ha = adapter block pointer.
5487 *
5488 * Return:
5489 * QLA_SUCCESS or QLA_FUNCTION_FAILED
5490 *
5491 * Context:
5492 * Kernel context.
5493 */
5494int
5495qla24xx_update_all_fcp_prio(scsi_qla_host_t *vha)
5496{
5497 int ret;
5498 fc_port_t *fcport;
5499
5500 ret = QLA_FUNCTION_FAILED;
5501 /* We need to set priority for all logged in ports */
5502 list_for_each_entry(fcport, &vha->vp_fcports, list)
5503 ret = qla24xx_update_fcport_fcp_prio(vha, fcport);
5504
5505 return ret;
5506}