blob: 96a609ba25fb445f5aa5b5b249a2f3ff03668e81 [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>
Andrew Vasquez0107109e2005-07-06 10:31:37 -070011#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include "qla_devtbl.h"
14
David Miller4e08df32007-04-16 12:37:43 -070015#ifdef CONFIG_SPARC
16#include <asm/prom.h>
David Miller4e08df32007-04-16 12:37:43 -070017#endif
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/*
20* QLogic ISP2x00 Hardware Support Function Prototypes.
21*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070022static int qla2x00_isp_firmware(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023static int qla2x00_setup_chip(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024static int qla2x00_init_rings(scsi_qla_host_t *);
25static int qla2x00_fw_ready(scsi_qla_host_t *);
26static int qla2x00_configure_hba(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static int qla2x00_configure_loop(scsi_qla_host_t *);
28static int qla2x00_configure_local_loop(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static int qla2x00_configure_fabric(scsi_qla_host_t *);
30static int qla2x00_find_all_fabric_devs(scsi_qla_host_t *, struct list_head *);
31static int qla2x00_device_resync(scsi_qla_host_t *);
32static int qla2x00_fabric_dev_login(scsi_qla_host_t *, fc_port_t *,
33 uint16_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35static int qla2x00_restart_isp(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Anirban Chakrabortye315cd22008-11-06 10:40:51 -080037static int qla2x00_find_new_loop_id(scsi_qla_host_t *, fc_port_t *);
Adrian Bunk413975a2006-06-30 02:33:06 -070038
Harihara Kadayam4d4df192008-04-03 13:13:26 -070039static struct qla_chip_state_84xx *qla84xx_get_chip(struct scsi_qla_host *);
40static int qla84xx_init_chip(scsi_qla_host_t *);
Anirban Chakraborty73208df2008-12-09 16:45:39 -080041static int qla25xx_init_queues(struct qla_hw_data *);
Harihara Kadayam4d4df192008-04-03 13:13:26 -070042
Andrew Vasquezac280b62009-08-20 11:06:05 -070043/* SRB Extensions ---------------------------------------------------------- */
44
45static void
46qla2x00_ctx_sp_timeout(unsigned long __data)
47{
48 srb_t *sp = (srb_t *)__data;
49 struct srb_ctx *ctx;
50 fc_port_t *fcport = sp->fcport;
51 struct qla_hw_data *ha = fcport->vha->hw;
52 struct req_que *req;
53 unsigned long flags;
54
55 spin_lock_irqsave(&ha->hardware_lock, flags);
56 req = ha->req_q_map[0];
57 req->outstanding_cmds[sp->handle] = NULL;
58 ctx = sp->ctx;
59 ctx->timeout(sp);
60 spin_unlock_irqrestore(&ha->hardware_lock, flags);
61
62 ctx->free(sp);
63}
64
Giridhar Malavali9a069e12010-01-12 13:02:47 -080065void
Andrew Vasquezac280b62009-08-20 11:06:05 -070066qla2x00_ctx_sp_free(srb_t *sp)
67{
68 struct srb_ctx *ctx = sp->ctx;
69
70 kfree(ctx);
71 mempool_free(sp, sp->fcport->vha->hw->srb_mempool);
72}
73
74inline srb_t *
75qla2x00_get_ctx_sp(scsi_qla_host_t *vha, fc_port_t *fcport, size_t size,
76 unsigned long tmo)
77{
78 srb_t *sp;
79 struct qla_hw_data *ha = vha->hw;
80 struct srb_ctx *ctx;
81
82 sp = mempool_alloc(ha->srb_mempool, GFP_KERNEL);
83 if (!sp)
84 goto done;
85 ctx = kzalloc(size, GFP_KERNEL);
86 if (!ctx) {
87 mempool_free(sp, ha->srb_mempool);
88 goto done;
89 }
90
91 memset(sp, 0, sizeof(*sp));
92 sp->fcport = fcport;
93 sp->ctx = ctx;
94 ctx->free = qla2x00_ctx_sp_free;
95
96 init_timer(&ctx->timer);
97 if (!tmo)
98 goto done;
99 ctx->timer.expires = jiffies + tmo * HZ;
100 ctx->timer.data = (unsigned long)sp;
101 ctx->timer.function = qla2x00_ctx_sp_timeout;
102 add_timer(&ctx->timer);
103done:
104 return sp;
105}
106
107/* Asynchronous Login/Logout Routines -------------------------------------- */
108
109#define ELS_TMO_2_RATOV(ha) ((ha)->r_a_tov / 10 * 2)
110
111static void
112qla2x00_async_logio_timeout(srb_t *sp)
113{
114 fc_port_t *fcport = sp->fcport;
115 struct srb_logio *lio = sp->ctx;
116
117 DEBUG2(printk(KERN_WARNING
118 "scsi(%ld:%x): Async-%s timeout.\n",
119 fcport->vha->host_no, sp->handle,
120 lio->ctx.type == SRB_LOGIN_CMD ? "login": "logout"));
121
122 if (lio->ctx.type == SRB_LOGIN_CMD)
123 qla2x00_post_async_logout_work(fcport->vha, fcport, NULL);
124}
125
126int
127qla2x00_async_login(struct scsi_qla_host *vha, fc_port_t *fcport,
128 uint16_t *data)
129{
130 struct qla_hw_data *ha = vha->hw;
131 srb_t *sp;
132 struct srb_logio *lio;
133 int rval;
134
135 rval = QLA_FUNCTION_FAILED;
136 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_logio),
137 ELS_TMO_2_RATOV(ha) + 2);
138 if (!sp)
139 goto done;
140
141 lio = sp->ctx;
142 lio->ctx.type = SRB_LOGIN_CMD;
143 lio->ctx.timeout = qla2x00_async_logio_timeout;
144 lio->flags |= SRB_LOGIN_COND_PLOGI;
145 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
146 lio->flags |= SRB_LOGIN_RETRIED;
147 rval = qla2x00_start_sp(sp);
148 if (rval != QLA_SUCCESS)
149 goto done_free_sp;
150
151 DEBUG2(printk(KERN_DEBUG
152 "scsi(%ld:%x): Async-login - loop-id=%x portid=%02x%02x%02x "
153 "retries=%d.\n", fcport->vha->host_no, sp->handle, fcport->loop_id,
154 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa,
155 fcport->login_retry));
156 return rval;
157
158done_free_sp:
159 del_timer_sync(&lio->ctx.timer);
160 lio->ctx.free(sp);
161done:
162 return rval;
163}
164
165int
166qla2x00_async_logout(struct scsi_qla_host *vha, fc_port_t *fcport)
167{
168 struct qla_hw_data *ha = vha->hw;
169 srb_t *sp;
170 struct srb_logio *lio;
171 int rval;
172
173 rval = QLA_FUNCTION_FAILED;
174 sp = qla2x00_get_ctx_sp(vha, fcport, sizeof(struct srb_logio),
175 ELS_TMO_2_RATOV(ha) + 2);
176 if (!sp)
177 goto done;
178
179 lio = sp->ctx;
180 lio->ctx.type = SRB_LOGOUT_CMD;
181 lio->ctx.timeout = qla2x00_async_logio_timeout;
182 rval = qla2x00_start_sp(sp);
183 if (rval != QLA_SUCCESS)
184 goto done_free_sp;
185
186 DEBUG2(printk(KERN_DEBUG
187 "scsi(%ld:%x): Async-logout - loop-id=%x portid=%02x%02x%02x.\n",
188 fcport->vha->host_no, sp->handle, fcport->loop_id,
189 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa));
190 return rval;
191
192done_free_sp:
193 del_timer_sync(&lio->ctx.timer);
194 lio->ctx.free(sp);
195done:
196 return rval;
197}
198
199int
200qla2x00_async_login_done(struct scsi_qla_host *vha, fc_port_t *fcport,
201 uint16_t *data)
202{
203 int rval;
204 uint8_t opts = 0;
205
206 switch (data[0]) {
207 case MBS_COMMAND_COMPLETE:
Andrew Vasquezf08b7252010-01-12 12:59:48 -0800208 if (fcport->flags & FCF_FCP2_DEVICE)
Andrew Vasquezac280b62009-08-20 11:06:05 -0700209 opts |= BIT_1;
210 rval = qla2x00_get_port_database(vha, fcport, opts);
211 if (rval != QLA_SUCCESS)
212 qla2x00_mark_device_lost(vha, fcport, 1, 0);
213 else
214 qla2x00_update_fcport(vha, fcport);
215 break;
216 case MBS_COMMAND_ERROR:
217 if (data[1] & QLA_LOGIO_LOGIN_RETRIED)
218 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
219 else
220 qla2x00_mark_device_lost(vha, fcport, 1, 0);
221 break;
222 case MBS_PORT_ID_USED:
223 fcport->loop_id = data[1];
224 qla2x00_post_async_login_work(vha, fcport, NULL);
225 break;
226 case MBS_LOOP_ID_USED:
227 fcport->loop_id++;
228 rval = qla2x00_find_new_loop_id(vha, fcport);
229 if (rval != QLA_SUCCESS) {
230 qla2x00_mark_device_lost(vha, fcport, 1, 0);
231 break;
232 }
233 qla2x00_post_async_login_work(vha, fcport, NULL);
234 break;
235 }
236 return QLA_SUCCESS;
237}
238
239int
240qla2x00_async_logout_done(struct scsi_qla_host *vha, fc_port_t *fcport,
241 uint16_t *data)
242{
243 qla2x00_mark_device_lost(vha, fcport, 1, 0);
244 return QLA_SUCCESS;
245}
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247/****************************************************************************/
248/* QLogic ISP2x00 Hardware Support Functions. */
249/****************************************************************************/
250
251/*
252* qla2x00_initialize_adapter
253* Initialize board.
254*
255* Input:
256* ha = adapter block pointer.
257*
258* Returns:
259* 0 = success
260*/
261int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800262qla2x00_initialize_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800265 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800266 struct req_que *req = ha->req_q_map[0];
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /* Clear adapter flags. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800269 vha->flags.online = 0;
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700270 ha->flags.chip_reset_done = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800271 vha->flags.reset_active = 0;
Andrew Vasquez85880802009-12-15 21:29:46 -0800272 ha->flags.pci_channel_io_perm_failure = 0;
273 ha->flags.eeh_busy = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800274 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
275 atomic_set(&vha->loop_state, LOOP_DOWN);
276 vha->device_flags = DFLG_NO_CABLE;
277 vha->dpc_flags = 0;
278 vha->flags.management_server_logged_in = 0;
279 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 ha->isp_abort_cnt = 0;
281 ha->beacon_blink_led = 0;
282
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800283 set_bit(0, ha->req_qid_map);
284 set_bit(0, ha->rsp_qid_map);
285
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700286 qla_printk(KERN_INFO, ha, "Configuring PCI space...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800287 rval = ha->isp_ops->pci_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (rval) {
Andrew Vasquez7c98a042007-01-29 10:22:29 -0800289 DEBUG2(printk("scsi(%ld): Unable to configure PCI space.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800290 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return (rval);
292 }
293
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800294 ha->isp_ops->reset_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800296 rval = qla2xxx_get_flash_info(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700297 if (rval) {
298 DEBUG2(printk("scsi(%ld): Unable to validate FLASH data.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800299 vha->host_no));
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700300 return (rval);
301 }
302
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800303 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -0800304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 qla_printk(KERN_INFO, ha, "Configure NVRAM parameters...\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700306
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800307 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700309 if (ha->flags.disable_serdes) {
310 /* Mask HBA via NVRAM settings? */
311 qla_printk(KERN_INFO, ha, "Masking HBA WWPN "
312 "%02x%02x%02x%02x%02x%02x%02x%02x (via NVRAM).\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800313 vha->port_name[0], vha->port_name[1],
314 vha->port_name[2], vha->port_name[3],
315 vha->port_name[4], vha->port_name[5],
316 vha->port_name[6], vha->port_name[7]);
Andrew Vasquezd4c760c2006-06-23 16:10:39 -0700317 return QLA_FUNCTION_FAILED;
318 }
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 qla_printk(KERN_INFO, ha, "Verifying loaded RISC code...\n");
321
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800322 if (qla2x00_isp_firmware(vha) != QLA_SUCCESS) {
323 rval = ha->isp_ops->chip_diag(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800324 if (rval)
325 return (rval);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800326 rval = qla2x00_setup_chip(vha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -0800327 if (rval)
328 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700330 if (IS_QLA84XX(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800331 ha->cs84xx = qla84xx_get_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700332 if (!ha->cs84xx) {
333 qla_printk(KERN_ERR, ha,
334 "Unable to configure ISP84XX.\n");
335 return QLA_FUNCTION_FAILED;
336 }
337 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800338 rval = qla2x00_init_rings(vha);
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700339 ha->flags.chip_reset_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Giridhar Malavali9a069e12010-01-12 13:02:47 -0800341 if (rval == QLA_SUCCESS && IS_QLA84XX(ha)) {
342 /* Issue verify 84xx FW IOCB to complete 84xx initialization */
343 rval = qla84xx_init_chip(vha);
344 if (rval != QLA_SUCCESS) {
345 qla_printk(KERN_ERR, ha,
346 "Unable to initialize ISP84XX.\n");
347 qla84xx_put_chip(vha);
348 }
349 }
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return (rval);
352}
353
354/**
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700355 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 * @ha: HA context
357 *
358 * Returns 0 on success.
359 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700360int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800361qla2100_pci_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700363 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700364 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800365 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700366 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700369 pci_try_set_mwi(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700372 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
374
Andrew Vasquez737faec2008-10-24 15:13:45 -0700375 pci_disable_rom(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700377 /* Get PCI bus information. */
378 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700379 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700380 spin_unlock_irqrestore(&ha->hardware_lock, flags);
381
382 return QLA_SUCCESS;
383}
384
385/**
386 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
387 * @ha: HA context
388 *
389 * Returns 0 on success.
390 */
391int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800392qla2300_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700393{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700394 uint16_t w;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700395 unsigned long flags = 0;
396 uint32_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800397 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700398 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700399
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700400 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700401 pci_try_set_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700402
403 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700404 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700405
406 if (IS_QLA2322(ha) || IS_QLA6322(ha))
407 w &= ~PCI_COMMAND_INTX_DISABLE;
Andrew Vasqueza157b102007-05-07 07:43:01 -0700408 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700409
410 /*
411 * If this is a 2300 card and not 2312, reset the
412 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
413 * the 2310 also reports itself as a 2300 so we need to get the
414 * fb revision level -- a 6 indicates it really is a 2300 and
415 * not a 2310.
416 */
417 if (IS_QLA2300(ha)) {
418 spin_lock_irqsave(&ha->hardware_lock, flags);
419
420 /* Pause RISC. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700421 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700422 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700423 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700424 break;
425
426 udelay(10);
427 }
428
429 /* Select FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700430 WRT_REG_WORD(&reg->ctrl_status, 0x20);
431 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700432
433 /* Get the fb rev level */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700434 ha->fb_rev = RD_FB_CMD_REG(ha, reg);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700435
436 if (ha->fb_rev == FPM_2300)
Andrew Vasqueza157b102007-05-07 07:43:01 -0700437 pci_clear_mwi(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700438
439 /* Deselect FPM registers. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700440 WRT_REG_WORD(&reg->ctrl_status, 0x0);
441 RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700442
443 /* Release RISC module. */
Andrew Vasquez3d716442005-07-06 10:30:26 -0700444 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700445 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquez3d716442005-07-06 10:30:26 -0700446 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) == 0)
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700447 break;
448
449 udelay(10);
450 }
451
452 spin_unlock_irqrestore(&ha->hardware_lock, flags);
453 }
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700454
455 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
456
Andrew Vasquez737faec2008-10-24 15:13:45 -0700457 pci_disable_rom(ha->pdev);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700458
459 /* Get PCI bus information. */
460 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez3d716442005-07-06 10:30:26 -0700461 ha->pci_attr = RD_REG_WORD(&reg->ctrl_status);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700462 spin_unlock_irqrestore(&ha->hardware_lock, flags);
463
464 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
467/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700468 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
469 * @ha: HA context
470 *
471 * Returns 0 on success.
472 */
473int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800474qla24xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700475{
Andrew Vasqueza157b102007-05-07 07:43:01 -0700476 uint16_t w;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700477 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800478 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700479 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700480
481 pci_set_master(ha->pdev);
Andrew Vasquezaf6177d2007-07-19 15:06:02 -0700482 pci_try_set_mwi(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700483
484 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
Andrew Vasqueza157b102007-05-07 07:43:01 -0700485 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700486 w &= ~PCI_COMMAND_INTX_DISABLE;
487 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
488
489 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
490
491 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700492 if (pci_find_capability(ha->pdev, PCI_CAP_ID_PCIX))
493 pcix_set_mmrbc(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700494
495 /* PCIe -- adjust Maximum Read Request Size (2048). */
Andrew Vasquezf85ec182007-07-19 15:06:01 -0700496 if (pci_find_capability(ha->pdev, PCI_CAP_ID_EXP))
497 pcie_set_readrq(ha->pdev, 2048);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700498
Andrew Vasquez737faec2008-10-24 15:13:45 -0700499 pci_disable_rom(ha->pdev);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700500
Auke Kok44c10132007-06-08 15:46:36 -0700501 ha->chip_revision = ha->pdev->revision;
Andrew Vasqueza8488ab2007-01-29 10:22:19 -0800502
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700503 /* Get PCI bus information. */
504 spin_lock_irqsave(&ha->hardware_lock, flags);
505 ha->pci_attr = RD_REG_DWORD(&reg->ctrl_status);
506 spin_unlock_irqrestore(&ha->hardware_lock, flags);
507
508 return QLA_SUCCESS;
509}
510
511/**
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700512 * qla25xx_pci_config() - Setup ISP25xx PCI configuration registers.
513 * @ha: HA context
514 *
515 * Returns 0 on success.
516 */
517int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800518qla25xx_pci_config(scsi_qla_host_t *vha)
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700519{
520 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800521 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700522
523 pci_set_master(ha->pdev);
524 pci_try_set_mwi(ha->pdev);
525
526 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
527 w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
528 w &= ~PCI_COMMAND_INTX_DISABLE;
529 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
530
531 /* PCIe -- adjust Maximum Read Request Size (2048). */
532 if (pci_find_capability(ha->pdev, PCI_CAP_ID_EXP))
533 pcie_set_readrq(ha->pdev, 2048);
534
Andrew Vasquez737faec2008-10-24 15:13:45 -0700535 pci_disable_rom(ha->pdev);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700536
537 ha->chip_revision = ha->pdev->revision;
538
539 return QLA_SUCCESS;
540}
541
542/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 * qla2x00_isp_firmware() - Choose firmware image.
544 * @ha: HA context
545 *
546 * Returns 0 on success.
547 */
548static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800549qla2x00_isp_firmware(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 int rval;
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700552 uint16_t loop_id, topo, sw_cap;
553 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800554 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 /* Assume loading risc code */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700557 rval = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 if (ha->flags.disable_risc_code_load) {
560 DEBUG2(printk("scsi(%ld): RISC CODE NOT loaded\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800561 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 qla_printk(KERN_INFO, ha, "RISC CODE NOT loaded\n");
563
564 /* Verify checksum of loaded RISC code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800565 rval = qla2x00_verify_checksum(vha, ha->fw_srisc_address);
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700566 if (rval == QLA_SUCCESS) {
567 /* And, verify we are not in ROM code. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800568 rval = qla2x00_get_adapter_id(vha, &loop_id, &al_pa,
Andrew Vasquez42e421b2008-07-10 16:56:01 -0700569 &area, &domain, &topo, &sw_cap);
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572
573 if (rval) {
574 DEBUG2_3(printk("scsi(%ld): **** Load RISC code ****\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800575 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
578 return (rval);
579}
580
581/**
582 * qla2x00_reset_chip() - Reset ISP chip.
583 * @ha: HA context
584 *
585 * Returns 0 on success.
586 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700587void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800588qla2x00_reset_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800591 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700592 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 uint32_t cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 uint16_t cmd;
595
Andrew Vasquez85880802009-12-15 21:29:46 -0800596 if (unlikely(pci_channel_offline(ha->pdev)))
597 return;
598
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700599 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 spin_lock_irqsave(&ha->hardware_lock, flags);
602
603 /* Turn off master enable */
604 cmd = 0;
605 pci_read_config_word(ha->pdev, PCI_COMMAND, &cmd);
606 cmd &= ~PCI_COMMAND_MASTER;
607 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
608
609 if (!IS_QLA2100(ha)) {
610 /* Pause RISC. */
611 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
612 if (IS_QLA2200(ha) || IS_QLA2300(ha)) {
613 for (cnt = 0; cnt < 30000; cnt++) {
614 if ((RD_REG_WORD(&reg->hccr) &
615 HCCR_RISC_PAUSE) != 0)
616 break;
617 udelay(100);
618 }
619 } else {
620 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
621 udelay(10);
622 }
623
624 /* Select FPM registers. */
625 WRT_REG_WORD(&reg->ctrl_status, 0x20);
626 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
627
628 /* FPM Soft Reset. */
629 WRT_REG_WORD(&reg->fpm_diag_config, 0x100);
630 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
631
632 /* Toggle Fpm Reset. */
633 if (!IS_QLA2200(ha)) {
634 WRT_REG_WORD(&reg->fpm_diag_config, 0x0);
635 RD_REG_WORD(&reg->fpm_diag_config); /* PCI Posting. */
636 }
637
638 /* Select frame buffer registers. */
639 WRT_REG_WORD(&reg->ctrl_status, 0x10);
640 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
641
642 /* Reset frame buffer FIFOs. */
643 if (IS_QLA2200(ha)) {
644 WRT_FB_CMD_REG(ha, reg, 0xa000);
645 RD_FB_CMD_REG(ha, reg); /* PCI Posting. */
646 } else {
647 WRT_FB_CMD_REG(ha, reg, 0x00fc);
648
649 /* Read back fb_cmd until zero or 3 seconds max */
650 for (cnt = 0; cnt < 3000; cnt++) {
651 if ((RD_FB_CMD_REG(ha, reg) & 0xff) == 0)
652 break;
653 udelay(100);
654 }
655 }
656
657 /* Select RISC module registers. */
658 WRT_REG_WORD(&reg->ctrl_status, 0);
659 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
660
661 /* Reset RISC processor. */
662 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
663 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
664
665 /* Release RISC processor. */
666 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
667 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
668 }
669
670 WRT_REG_WORD(&reg->hccr, HCCR_CLR_RISC_INT);
671 WRT_REG_WORD(&reg->hccr, HCCR_CLR_HOST_INT);
672
673 /* Reset ISP chip. */
674 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
675
676 /* Wait for RISC to recover from reset. */
677 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
678 /*
679 * It is necessary to for a delay here since the card doesn't
680 * respond to PCI reads during a reset. On some architectures
681 * this will result in an MCA.
682 */
683 udelay(20);
684 for (cnt = 30000; cnt; cnt--) {
685 if ((RD_REG_WORD(&reg->ctrl_status) &
686 CSR_ISP_SOFT_RESET) == 0)
687 break;
688 udelay(100);
689 }
690 } else
691 udelay(10);
692
693 /* Reset RISC processor. */
694 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
695
696 WRT_REG_WORD(&reg->semaphore, 0);
697
698 /* Release RISC processor. */
699 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
700 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
701
702 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
703 for (cnt = 0; cnt < 30000; cnt++) {
Andrew Vasquezffb39f02006-05-17 15:09:06 -0700704 if (RD_MAILBOX_REG(ha, reg, 0) != MBS_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 udelay(100);
708 }
709 } else
710 udelay(100);
711
712 /* Turn on master enable */
713 cmd |= PCI_COMMAND_MASTER;
714 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
715
716 /* Disable RISC pause on FPM parity error. */
717 if (!IS_QLA2100(ha)) {
718 WRT_REG_WORD(&reg->hccr, HCCR_DISABLE_PARITY_PAUSE);
719 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
720 }
721
722 spin_unlock_irqrestore(&ha->hardware_lock, flags);
723}
724
725/**
Andrew Vasquez88c26662005-07-08 17:59:26 -0700726 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700727 * @ha: HA context
728 *
729 * Returns 0 on success.
730 */
Andrew Vasquez88c26662005-07-08 17:59:26 -0700731static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800732qla24xx_reset_risc(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700733{
734 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800735 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700736 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
737 uint32_t cnt, d2;
Andrew Vasquez335a1cc2005-11-08 14:37:48 -0800738 uint16_t wd;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700739
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700740 spin_lock_irqsave(&ha->hardware_lock, flags);
741
742 /* Reset RISC. */
743 WRT_REG_DWORD(&reg->ctrl_status, CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
744 for (cnt = 0; cnt < 30000; cnt++) {
745 if ((RD_REG_DWORD(&reg->ctrl_status) & CSRX_DMA_ACTIVE) == 0)
746 break;
747
748 udelay(10);
749 }
750
751 WRT_REG_DWORD(&reg->ctrl_status,
752 CSRX_ISP_SOFT_RESET|CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
Andrew Vasquez335a1cc2005-11-08 14:37:48 -0800753 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
Andrew Vasquez88c26662005-07-08 17:59:26 -0700754
Andrew Vasquez335a1cc2005-11-08 14:37:48 -0800755 udelay(100);
Andrew Vasquez88c26662005-07-08 17:59:26 -0700756 /* Wait for firmware to complete NVRAM accesses. */
Andrew Vasquez88c26662005-07-08 17:59:26 -0700757 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
758 for (cnt = 10000 ; cnt && d2; cnt--) {
759 udelay(5);
760 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
761 barrier();
762 }
763
Andrew Vasquez335a1cc2005-11-08 14:37:48 -0800764 /* Wait for soft-reset to complete. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700765 d2 = RD_REG_DWORD(&reg->ctrl_status);
766 for (cnt = 6000000 ; cnt && (d2 & CSRX_ISP_SOFT_RESET); cnt--) {
767 udelay(5);
768 d2 = RD_REG_DWORD(&reg->ctrl_status);
769 barrier();
770 }
771
772 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
773 RD_REG_DWORD(&reg->hccr);
774
775 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
776 RD_REG_DWORD(&reg->hccr);
777
778 WRT_REG_DWORD(&reg->hccr, HCCRX_CLR_RISC_RESET);
779 RD_REG_DWORD(&reg->hccr);
780
781 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
782 for (cnt = 6000000 ; cnt && d2; cnt--) {
783 udelay(5);
784 d2 = (uint32_t) RD_REG_WORD(&reg->mailbox0);
785 barrier();
786 }
787
788 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez124f85e2009-01-05 11:18:06 -0800789
790 if (IS_NOPOLLING_TYPE(ha))
791 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700792}
793
794/**
Andrew Vasquez88c26662005-07-08 17:59:26 -0700795 * qla24xx_reset_chip() - Reset ISP24xx chip.
796 * @ha: HA context
797 *
798 * Returns 0 on success.
799 */
800void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800801qla24xx_reset_chip(scsi_qla_host_t *vha)
Andrew Vasquez88c26662005-07-08 17:59:26 -0700802{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800803 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez85880802009-12-15 21:29:46 -0800804
805 if (pci_channel_offline(ha->pdev) &&
806 ha->flags.pci_channel_io_perm_failure) {
807 return;
808 }
809
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700810 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez88c26662005-07-08 17:59:26 -0700811
812 /* Perform RISC reset. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800813 qla24xx_reset_risc(vha);
Andrew Vasquez88c26662005-07-08 17:59:26 -0700814}
815
816/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * qla2x00_chip_diag() - Test chip for proper operation.
818 * @ha: HA context
819 *
820 * Returns 0 on success.
821 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700822int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800823qla2x00_chip_diag(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800826 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700827 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 unsigned long flags = 0;
829 uint16_t data;
830 uint32_t cnt;
831 uint16_t mb[5];
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800832 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /* Assume a failed state */
835 rval = QLA_FUNCTION_FAILED;
836
837 DEBUG3(printk("scsi(%ld): Testing device at %lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800838 vha->host_no, (u_long)&reg->flash_address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 spin_lock_irqsave(&ha->hardware_lock, flags);
841
842 /* Reset ISP chip. */
843 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
844
845 /*
846 * We need to have a delay here since the card will not respond while
847 * in reset causing an MCA on some architectures.
848 */
849 udelay(20);
850 data = qla2x00_debounce_register(&reg->ctrl_status);
851 for (cnt = 6000000 ; cnt && (data & CSR_ISP_SOFT_RESET); cnt--) {
852 udelay(5);
853 data = RD_REG_WORD(&reg->ctrl_status);
854 barrier();
855 }
856
857 if (!cnt)
858 goto chip_diag_failed;
859
860 DEBUG3(printk("scsi(%ld): Reset register cleared by chip reset\n",
Andrew Vasquez76403352009-04-06 22:33:39 -0700861 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 /* Reset RISC processor. */
864 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
865 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
866
867 /* Workaround for QLA2312 PCI parity error */
868 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
869 data = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 0));
870 for (cnt = 6000000; cnt && (data == MBS_BUSY); cnt--) {
871 udelay(5);
872 data = RD_MAILBOX_REG(ha, reg, 0);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700873 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875 } else
876 udelay(10);
877
878 if (!cnt)
879 goto chip_diag_failed;
880
881 /* Check product ID of chip */
Andrew Vasquez76403352009-04-06 22:33:39 -0700882 DEBUG3(printk("scsi(%ld): Checking product ID of chip\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
885 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
886 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
887 mb[4] = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 4));
888 if (mb[1] != PROD_ID_1 || (mb[2] != PROD_ID_2 && mb[2] != PROD_ID_2a) ||
889 mb[3] != PROD_ID_3) {
890 qla_printk(KERN_WARNING, ha,
891 "Wrong product ID = 0x%x,0x%x,0x%x\n", mb[1], mb[2], mb[3]);
892
893 goto chip_diag_failed;
894 }
895 ha->product_id[0] = mb[1];
896 ha->product_id[1] = mb[2];
897 ha->product_id[2] = mb[3];
898 ha->product_id[3] = mb[4];
899
900 /* Adjust fw RISC transfer size */
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800901 if (req->length > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
903 else
904 ha->fw_transfer_size = REQUEST_ENTRY_SIZE *
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800905 req->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 if (IS_QLA2200(ha) &&
908 RD_MAILBOX_REG(ha, reg, 7) == QLA2200A_RISC_ROM_VER) {
909 /* Limit firmware transfer size with a 2200A */
910 DEBUG3(printk("scsi(%ld): Found QLA2200A chip.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800911 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -0800913 ha->device_type |= DT_ISP2200A;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 ha->fw_transfer_size = 128;
915 }
916
917 /* Wrap Incoming Mailboxes Test. */
918 spin_unlock_irqrestore(&ha->hardware_lock, flags);
919
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800920 DEBUG3(printk("scsi(%ld): Checking mailboxes.\n", vha->host_no));
921 rval = qla2x00_mbx_reg_test(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (rval) {
923 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800924 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 qla_printk(KERN_WARNING, ha,
926 "Failed mailbox send register test\n");
927 }
928 else {
929 /* Flag a successful rval */
930 rval = QLA_SUCCESS;
931 }
932 spin_lock_irqsave(&ha->hardware_lock, flags);
933
934chip_diag_failed:
935 if (rval)
936 DEBUG2_3(printk("scsi(%ld): Chip diagnostics **** FAILED "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800937 "****\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 spin_unlock_irqrestore(&ha->hardware_lock, flags);
940
941 return (rval);
942}
943
944/**
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700945 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
946 * @ha: HA context
947 *
948 * Returns 0 on success.
949 */
950int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800951qla24xx_chip_diag(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700952{
953 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800954 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800955 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700956
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800957 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * req->length;
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700958
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800959 rval = qla2x00_mbx_reg_test(vha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700960 if (rval) {
961 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800962 vha->host_no));
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700963 qla_printk(KERN_WARNING, ha,
964 "Failed mailbox send register test\n");
965 } else {
966 /* Flag a successful rval */
967 rval = QLA_SUCCESS;
968 }
969
970 return rval;
971}
972
Andrew Vasqueza7a167b2006-06-23 16:10:29 -0700973void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800974qla2x00_alloc_fw_dump(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -0700975{
Andrew Vasqueza7a167b2006-06-23 16:10:29 -0700976 int rval;
977 uint32_t dump_size, fixed_size, mem_size, req_q_size, rsp_q_size,
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800978 eft_size, fce_size, mq_size;
Andrew Vasquezdf613b92008-01-17 09:02:17 -0800979 dma_addr_t tc_dma;
980 void *tc;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800981 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800982 struct req_que *req = ha->req_q_map[0];
983 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezd4e3e042006-05-17 15:09:50 -0700984
Andrew Vasqueza7a167b2006-06-23 16:10:29 -0700985 if (ha->fw_dump) {
986 qla_printk(KERN_WARNING, ha,
987 "Firmware dump previously allocated.\n");
988 return;
Andrew Vasquezd4e3e042006-05-17 15:09:50 -0700989 }
990
Andrew Vasqueza7a167b2006-06-23 16:10:29 -0700991 ha->fw_dumped = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800992 fixed_size = mem_size = eft_size = fce_size = mq_size = 0;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -0700993 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
994 fixed_size = sizeof(struct qla2100_fw_dump);
995 } else if (IS_QLA23XX(ha)) {
996 fixed_size = offsetof(struct qla2300_fw_dump, data_ram);
997 mem_size = (ha->fw_memory_size - 0x11000 + 1) *
998 sizeof(uint16_t);
Andrew Vasqueze4289242007-07-19 15:05:56 -0700999 } else if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001000 if (IS_QLA81XX(ha))
1001 fixed_size = offsetof(struct qla81xx_fw_dump, ext_mem);
1002 else if (IS_QLA25XX(ha))
1003 fixed_size = offsetof(struct qla25xx_fw_dump, ext_mem);
1004 else
1005 fixed_size = offsetof(struct qla24xx_fw_dump, ext_mem);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001006 mem_size = (ha->fw_memory_size - 0x100000 + 1) *
1007 sizeof(uint32_t);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001008 if (ha->mqenable)
1009 mq_size = sizeof(struct qla2xxx_mq_chain);
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001010 /* Allocate memory for Fibre Channel Event Buffer. */
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001011 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001012 goto try_eft;
1013
1014 tc = dma_alloc_coherent(&ha->pdev->dev, FCE_SIZE, &tc_dma,
1015 GFP_KERNEL);
1016 if (!tc) {
1017 qla_printk(KERN_WARNING, ha, "Unable to allocate "
1018 "(%d KB) for FCE.\n", FCE_SIZE / 1024);
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001019 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001020 }
1021
1022 memset(tc, 0, FCE_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001023 rval = qla2x00_enable_fce_trace(vha, tc_dma, FCE_NUM_BUFFERS,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001024 ha->fce_mb, &ha->fce_bufs);
1025 if (rval) {
1026 qla_printk(KERN_WARNING, ha, "Unable to initialize "
1027 "FCE (%d).\n", rval);
1028 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, tc,
1029 tc_dma);
1030 ha->flags.fce_enabled = 0;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001031 goto try_eft;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001032 }
1033
1034 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for FCE...\n",
1035 FCE_SIZE / 1024);
1036
Giridhar Malavali7d9dade2009-03-24 09:07:58 -07001037 fce_size = sizeof(struct qla2xxx_fce_chain) + FCE_SIZE;
Andrew Vasquez436a7b12008-07-10 16:55:54 -07001038 ha->flags.fce_enabled = 1;
1039 ha->fce_dma = tc_dma;
1040 ha->fce = tc;
1041try_eft:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001042 /* Allocate memory for Extended Trace Buffer. */
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001043 tc = dma_alloc_coherent(&ha->pdev->dev, EFT_SIZE, &tc_dma,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001044 GFP_KERNEL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001045 if (!tc) {
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001046 qla_printk(KERN_WARNING, ha, "Unable to allocate "
1047 "(%d KB) for EFT.\n", EFT_SIZE / 1024);
1048 goto cont_alloc;
1049 }
1050
Andrew Vasquezfc447652008-01-17 09:02:18 -08001051 memset(tc, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001052 rval = qla2x00_enable_eft_trace(vha, tc_dma, EFT_NUM_BUFFERS);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001053 if (rval) {
1054 qla_printk(KERN_WARNING, ha, "Unable to initialize "
1055 "EFT (%d).\n", rval);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001056 dma_free_coherent(&ha->pdev->dev, EFT_SIZE, tc,
1057 tc_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001058 goto cont_alloc;
1059 }
1060
1061 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for EFT...\n",
1062 EFT_SIZE / 1024);
1063
1064 eft_size = EFT_SIZE;
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001065 ha->eft_dma = tc_dma;
1066 ha->eft = tc;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001067 }
1068cont_alloc:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001069 req_q_size = req->length * sizeof(request_t);
1070 rsp_q_size = rsp->length * sizeof(response_t);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001071
1072 dump_size = offsetof(struct qla2xxx_fw_dump, isp);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001073 dump_size += fixed_size + mem_size + req_q_size + rsp_q_size + eft_size;
Andrew Vasquezbb99de62009-01-05 11:18:08 -08001074 ha->chain_offset = dump_size;
1075 dump_size += mq_size + fce_size;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001076
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001077 ha->fw_dump = vmalloc(dump_size);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001078 if (!ha->fw_dump) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001079 qla_printk(KERN_WARNING, ha, "Unable to allocate (%d KB) for "
Andrew Vasquezd4e3e042006-05-17 15:09:50 -07001080 "firmware dump!!!\n", dump_size / 1024);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001081
1082 if (ha->eft) {
1083 dma_free_coherent(&ha->pdev->dev, eft_size, ha->eft,
1084 ha->eft_dma);
1085 ha->eft = NULL;
1086 ha->eft_dma = 0;
1087 }
1088 return;
1089 }
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001090 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for firmware dump...\n",
1091 dump_size / 1024);
1092
1093 ha->fw_dump_len = dump_size;
1094 ha->fw_dump->signature[0] = 'Q';
1095 ha->fw_dump->signature[1] = 'L';
1096 ha->fw_dump->signature[2] = 'G';
1097 ha->fw_dump->signature[3] = 'C';
1098 ha->fw_dump->version = __constant_htonl(1);
1099
1100 ha->fw_dump->fixed_size = htonl(fixed_size);
1101 ha->fw_dump->mem_size = htonl(mem_size);
1102 ha->fw_dump->req_q_size = htonl(req_q_size);
1103 ha->fw_dump->rsp_q_size = htonl(rsp_q_size);
1104
1105 ha->fw_dump->eft_size = htonl(eft_size);
1106 ha->fw_dump->eft_addr_l = htonl(LSD(ha->eft_dma));
1107 ha->fw_dump->eft_addr_h = htonl(MSD(ha->eft_dma));
1108
1109 ha->fw_dump->header_size =
1110 htonl(offsetof(struct qla2xxx_fw_dump, isp));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001111}
1112
Andrew Vasquez18e75552009-06-03 09:55:30 -07001113static int
1114qla81xx_mpi_sync(scsi_qla_host_t *vha)
1115{
1116#define MPS_MASK 0xe0
1117 int rval;
1118 uint16_t dc;
1119 uint32_t dw;
1120 struct qla_hw_data *ha = vha->hw;
1121
1122 if (!IS_QLA81XX(vha->hw))
1123 return QLA_SUCCESS;
1124
1125 rval = qla2x00_write_ram_word(vha, 0x7c00, 1);
1126 if (rval != QLA_SUCCESS) {
1127 DEBUG2(qla_printk(KERN_WARNING, ha,
1128 "Sync-MPI: Unable to acquire semaphore.\n"));
1129 goto done;
1130 }
1131
1132 pci_read_config_word(vha->hw->pdev, 0x54, &dc);
1133 rval = qla2x00_read_ram_word(vha, 0x7a15, &dw);
1134 if (rval != QLA_SUCCESS) {
1135 DEBUG2(qla_printk(KERN_WARNING, ha,
1136 "Sync-MPI: Unable to read sync.\n"));
1137 goto done_release;
1138 }
1139
1140 dc &= MPS_MASK;
1141 if (dc == (dw & MPS_MASK))
1142 goto done_release;
1143
1144 dw &= ~MPS_MASK;
1145 dw |= dc;
1146 rval = qla2x00_write_ram_word(vha, 0x7a15, dw);
1147 if (rval != QLA_SUCCESS) {
1148 DEBUG2(qla_printk(KERN_WARNING, ha,
1149 "Sync-MPI: Unable to gain sync.\n"));
1150 }
1151
1152done_release:
1153 rval = qla2x00_write_ram_word(vha, 0x7c00, 0);
1154 if (rval != QLA_SUCCESS) {
1155 DEBUG2(qla_printk(KERN_WARNING, ha,
1156 "Sync-MPI: Unable to release semaphore.\n"));
1157 }
1158
1159done:
1160 return rval;
1161}
1162
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001163/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 * qla2x00_setup_chip() - Load and start RISC firmware.
1165 * @ha: HA context
1166 *
1167 * Returns 0 on success.
1168 */
1169static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001170qla2x00_setup_chip(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001172 int rval;
1173 uint32_t srisc_address = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001174 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001175 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1176 unsigned long flags;
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001177 uint16_t fw_major_version;
Andrew Vasquez3db06522008-01-31 12:33:49 -08001178
1179 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1180 /* Disable SRAM, Instruction RAM and GP RAM parity. */
1181 spin_lock_irqsave(&ha->hardware_lock, flags);
1182 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x0));
1183 RD_REG_WORD(&reg->hccr);
1184 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Andrew Vasquez18e75552009-06-03 09:55:30 -07001187 qla81xx_mpi_sync(vha);
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /* Load firmware sequences */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001190 rval = ha->isp_ops->load_risc(vha, &srisc_address);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001191 if (rval == QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 DEBUG(printk("scsi(%ld): Verifying Checksum of loaded RISC "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001193 "code.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001195 rval = qla2x00_verify_checksum(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (rval == QLA_SUCCESS) {
1197 /* Start firmware execution. */
1198 DEBUG(printk("scsi(%ld): Checksum OK, start "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001199 "firmware.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001201 rval = qla2x00_execute_fw(vha, srisc_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 /* Retrieve firmware information. */
Andrew Vasquezdda772e2009-03-24 09:08:00 -07001203 if (rval == QLA_SUCCESS) {
1204 fw_major_version = ha->fw_major_version;
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001205 rval = qla2x00_get_fw_version(vha,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 &ha->fw_major_version,
1207 &ha->fw_minor_version,
1208 &ha->fw_subminor_version,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001209 &ha->fw_attributes, &ha->fw_memory_size,
Andrew Vasquez55a96152009-03-24 09:08:03 -07001210 ha->mpi_version, &ha->mpi_capabilities,
1211 ha->phy_version);
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001212 if (rval != QLA_SUCCESS)
1213 goto failed;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001214 ha->flags.npiv_supported = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001215 if (IS_QLA2XXX_MIDTYPE(ha) &&
Mike Hernandez946fb892008-08-13 21:36:59 -07001216 (ha->fw_attributes & BIT_2)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001217 ha->flags.npiv_supported = 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001218 if ((!ha->max_npiv_vports) ||
1219 ((ha->max_npiv_vports + 1) %
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001220 MIN_MULTI_ID_FABRIC))
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001221 ha->max_npiv_vports =
Andrew Vasquezeb66dc62007-11-12 10:30:58 -08001222 MIN_MULTI_ID_FABRIC - 1;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001223 }
Andrew Vasquez24a08132009-03-24 09:08:16 -07001224 qla2x00_get_resource_cnts(vha, NULL,
1225 &ha->fw_xcb_count, NULL, NULL,
Andrew Vasquezf3a0a772009-10-13 15:16:49 -07001226 &ha->max_npiv_vports, NULL);
Andrew Vasquezd743de62009-03-24 09:08:15 -07001227
1228 if (!fw_major_version && ql2xallocfwdump)
1229 qla2x00_alloc_fw_dump(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231 } else {
1232 DEBUG2(printk(KERN_INFO
1233 "scsi(%ld): ISP Firmware failed checksum.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001234 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236 }
1237
Andrew Vasquez3db06522008-01-31 12:33:49 -08001238 if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1239 /* Enable proper parity. */
1240 spin_lock_irqsave(&ha->hardware_lock, flags);
1241 if (IS_QLA2300(ha))
1242 /* SRAM parity */
1243 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x1);
1244 else
1245 /* SRAM, Instruction RAM and GP RAM parity */
1246 WRT_REG_WORD(&reg->hccr, HCCR_ENABLE_PARITY + 0x7);
1247 RD_REG_WORD(&reg->hccr);
1248 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1249 }
1250
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001251 if (rval == QLA_SUCCESS && IS_FAC_REQUIRED(ha)) {
1252 uint32_t size;
1253
1254 rval = qla81xx_fac_get_sector_size(vha, &size);
1255 if (rval == QLA_SUCCESS) {
1256 ha->flags.fac_supported = 1;
1257 ha->fdt_block_size = size << 2;
1258 } else {
1259 qla_printk(KERN_ERR, ha,
1260 "Unsupported FAC firmware (%d.%02d.%02d).\n",
1261 ha->fw_major_version, ha->fw_minor_version,
1262 ha->fw_subminor_version);
1263 }
1264 }
Andrew Vasquezca9e9c32009-06-03 09:55:20 -07001265failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (rval) {
1267 DEBUG2_3(printk("scsi(%ld): Setup chip **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001268 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270
1271 return (rval);
1272}
1273
1274/**
1275 * qla2x00_init_response_q_entries() - Initializes response queue entries.
1276 * @ha: HA context
1277 *
1278 * Beginning of request ring has initialization control block already built
1279 * by nvram config routine.
1280 *
1281 * Returns 0 on success.
1282 */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001283void
1284qla2x00_init_response_q_entries(struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
1286 uint16_t cnt;
1287 response_t *pkt;
1288
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001289 rsp->ring_ptr = rsp->ring;
1290 rsp->ring_index = 0;
1291 rsp->status_srb = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001292 pkt = rsp->ring_ptr;
1293 for (cnt = 0; cnt < rsp->length; cnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 pkt->signature = RESPONSE_PROCESSED;
1295 pkt++;
1296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299/**
1300 * qla2x00_update_fw_options() - Read and process firmware options.
1301 * @ha: HA context
1302 *
1303 * Returns 0 on success.
1304 */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001305void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001306qla2x00_update_fw_options(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 uint16_t swing, emphasis, tx_sens, rx_sens;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001309 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 memset(ha->fw_options, 0, sizeof(ha->fw_options));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001312 qla2x00_get_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1315 return;
1316
1317 /* Serial Link options. */
1318 DEBUG3(printk("scsi(%ld): Serial link options:\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001319 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 DEBUG3(qla2x00_dump_buffer((uint8_t *)&ha->fw_seriallink_options,
1321 sizeof(ha->fw_seriallink_options)));
1322
1323 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1324 if (ha->fw_seriallink_options[3] & BIT_2) {
1325 ha->fw_options[1] |= FO1_SET_EMPHASIS_SWING;
1326
1327 /* 1G settings */
1328 swing = ha->fw_seriallink_options[2] & (BIT_2 | BIT_1 | BIT_0);
1329 emphasis = (ha->fw_seriallink_options[2] &
1330 (BIT_4 | BIT_3)) >> 3;
1331 tx_sens = ha->fw_seriallink_options[0] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001332 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 rx_sens = (ha->fw_seriallink_options[0] &
1334 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1335 ha->fw_options[10] = (emphasis << 14) | (swing << 8);
1336 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1337 if (rx_sens == 0x0)
1338 rx_sens = 0x3;
1339 ha->fw_options[10] |= (tx_sens << 4) | rx_sens;
1340 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1341 ha->fw_options[10] |= BIT_5 |
1342 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1343 (tx_sens & (BIT_1 | BIT_0));
1344
1345 /* 2G settings */
1346 swing = (ha->fw_seriallink_options[2] &
1347 (BIT_7 | BIT_6 | BIT_5)) >> 5;
1348 emphasis = ha->fw_seriallink_options[3] & (BIT_1 | BIT_0);
1349 tx_sens = ha->fw_seriallink_options[1] &
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001350 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 rx_sens = (ha->fw_seriallink_options[1] &
1352 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
1353 ha->fw_options[11] = (emphasis << 14) | (swing << 8);
1354 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
1355 if (rx_sens == 0x0)
1356 rx_sens = 0x3;
1357 ha->fw_options[11] |= (tx_sens << 4) | rx_sens;
1358 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
1359 ha->fw_options[11] |= BIT_5 |
1360 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
1361 (tx_sens & (BIT_1 | BIT_0));
1362 }
1363
1364 /* FCP2 options. */
1365 /* Return command IOCBs without waiting for an ABTS to complete. */
1366 ha->fw_options[3] |= BIT_13;
1367
1368 /* LED scheme. */
1369 if (ha->flags.enable_led_scheme)
1370 ha->fw_options[2] |= BIT_12;
1371
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08001372 /* Detect ISP6312. */
1373 if (IS_QLA6312(ha))
1374 ha->fw_options[2] |= BIT_13;
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 /* Update firmware options. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001377 qla2x00_set_fw_options(vha, ha->fw_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001380void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001381qla24xx_update_fw_options(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001382{
1383 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001384 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001385
1386 /* Update Serial Link options. */
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001387 if ((le16_to_cpu(ha->fw_seriallink_options24[0]) & BIT_0) == 0)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001388 return;
1389
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001390 rval = qla2x00_set_serdes_params(vha,
andrew.vasquez@qlogic.comf94097e2006-01-13 17:05:32 -08001391 le16_to_cpu(ha->fw_seriallink_options24[1]),
1392 le16_to_cpu(ha->fw_seriallink_options24[2]),
1393 le16_to_cpu(ha->fw_seriallink_options24[3]));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001394 if (rval != QLA_SUCCESS) {
1395 qla_printk(KERN_WARNING, ha,
1396 "Unable to update Serial Link options (%x).\n", rval);
1397 }
1398}
1399
1400void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001401qla2x00_config_rings(struct scsi_qla_host *vha)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001402{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001403 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001404 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001405 struct req_que *req = ha->req_q_map[0];
1406 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001407
1408 /* Setup ring parameters in initialization control block. */
1409 ha->init_cb->request_q_outpointer = __constant_cpu_to_le16(0);
1410 ha->init_cb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001411 ha->init_cb->request_q_length = cpu_to_le16(req->length);
1412 ha->init_cb->response_q_length = cpu_to_le16(rsp->length);
1413 ha->init_cb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1414 ha->init_cb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1415 ha->init_cb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1416 ha->init_cb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001417
1418 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), 0);
1419 WRT_REG_WORD(ISP_REQ_Q_OUT(ha, reg), 0);
1420 WRT_REG_WORD(ISP_RSP_Q_IN(ha, reg), 0);
1421 WRT_REG_WORD(ISP_RSP_Q_OUT(ha, reg), 0);
1422 RD_REG_WORD(ISP_RSP_Q_OUT(ha, reg)); /* PCI Posting. */
1423}
1424
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001425void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001426qla24xx_config_rings(struct scsi_qla_host *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001427{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001428 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001429 device_reg_t __iomem *reg = ISP_QUE_REG(ha, 0);
1430 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1431 struct qla_msix_entry *msix;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001432 struct init_cb_24xx *icb;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001433 uint16_t rid = 0;
1434 struct req_que *req = ha->req_q_map[0];
1435 struct rsp_que *rsp = ha->rsp_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001436
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001437/* Setup ring parameters in initialization control block. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001438 icb = (struct init_cb_24xx *)ha->init_cb;
1439 icb->request_q_outpointer = __constant_cpu_to_le16(0);
1440 icb->response_q_inpointer = __constant_cpu_to_le16(0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001441 icb->request_q_length = cpu_to_le16(req->length);
1442 icb->response_q_length = cpu_to_le16(rsp->length);
1443 icb->request_q_address[0] = cpu_to_le32(LSD(req->dma));
1444 icb->request_q_address[1] = cpu_to_le32(MSD(req->dma));
1445 icb->response_q_address[0] = cpu_to_le32(LSD(rsp->dma));
1446 icb->response_q_address[1] = cpu_to_le32(MSD(rsp->dma));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001447
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001448 if (ha->mqenable) {
1449 icb->qos = __constant_cpu_to_le16(QLA_DEFAULT_QUE_QOS);
1450 icb->rid = __constant_cpu_to_le16(rid);
1451 if (ha->flags.msix_enabled) {
1452 msix = &ha->msix_entries[1];
1453 DEBUG2_17(printk(KERN_INFO
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001454 "Registering vector 0x%x for base que\n", msix->entry));
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001455 icb->msix = cpu_to_le16(msix->entry);
1456 }
1457 /* Use alternate PCI bus number */
1458 if (MSB(rid))
1459 icb->firmware_options_2 |=
1460 __constant_cpu_to_le32(BIT_19);
1461 /* Use alternate PCI devfn */
1462 if (LSB(rid))
1463 icb->firmware_options_2 |=
1464 __constant_cpu_to_le32(BIT_18);
1465
Anirban Chakraborty31557542009-12-02 10:36:55 -08001466 /* Use Disable MSIX Handshake mode for capable adapters */
1467 if (IS_MSIX_NACK_CAPABLE(ha)) {
1468 icb->firmware_options_2 &=
1469 __constant_cpu_to_le32(~BIT_22);
1470 ha->flags.disable_msix_handshake = 1;
1471 qla_printk(KERN_INFO, ha,
1472 "MSIX Handshake Disable Mode turned on\n");
1473 } else {
1474 icb->firmware_options_2 |=
1475 __constant_cpu_to_le32(BIT_22);
1476 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001477 icb->firmware_options_2 |= __constant_cpu_to_le32(BIT_23);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001478
1479 WRT_REG_DWORD(&reg->isp25mq.req_q_in, 0);
1480 WRT_REG_DWORD(&reg->isp25mq.req_q_out, 0);
1481 WRT_REG_DWORD(&reg->isp25mq.rsp_q_in, 0);
1482 WRT_REG_DWORD(&reg->isp25mq.rsp_q_out, 0);
1483 } else {
1484 WRT_REG_DWORD(&reg->isp24.req_q_in, 0);
1485 WRT_REG_DWORD(&reg->isp24.req_q_out, 0);
1486 WRT_REG_DWORD(&reg->isp24.rsp_q_in, 0);
1487 WRT_REG_DWORD(&reg->isp24.rsp_q_out, 0);
1488 }
1489 /* PCI posting */
1490 RD_REG_DWORD(&ioreg->hccr);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001491}
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493/**
1494 * qla2x00_init_rings() - Initializes firmware.
1495 * @ha: HA context
1496 *
1497 * Beginning of request ring has initialization control block already built
1498 * by nvram config routine.
1499 *
1500 * Returns 0 on success.
1501 */
1502static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001503qla2x00_init_rings(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
1505 int rval;
1506 unsigned long flags = 0;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001507 int cnt, que;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001508 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001509 struct req_que *req;
1510 struct rsp_que *rsp;
1511 struct scsi_qla_host *vp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001512 struct mid_init_cb_24xx *mid_init_cb =
1513 (struct mid_init_cb_24xx *) ha->init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 spin_lock_irqsave(&ha->hardware_lock, flags);
1516
1517 /* Clear outstanding commands array. */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001518 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001519 req = ha->req_q_map[que];
1520 if (!req)
1521 continue;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001522 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++)
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001523 req->outstanding_cmds[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001525 req->current_outstanding_cmd = 1;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001526
1527 /* Initialize firmware. */
1528 req->ring_ptr = req->ring;
1529 req->ring_index = 0;
1530 req->cnt = req->length;
1531 }
1532
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001533 for (que = 0; que < ha->max_rsp_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001534 rsp = ha->rsp_q_map[que];
1535 if (!rsp)
1536 continue;
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001537 /* Initialize response queue entries */
1538 qla2x00_init_response_q_entries(rsp);
1539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 /* Clear RSCN queue. */
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001542 list_for_each_entry(vp, &ha->vp_list, list) {
1543 vp->rscn_in_ptr = 0;
1544 vp->rscn_out_ptr = 0;
1545 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001546 ha->isp_ops->config_rings(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1549
1550 /* Update any ISP specific firmware options before initialization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001551 ha->isp_ops->update_fw_options(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001553 DEBUG(printk("scsi(%ld): Issue init firmware.\n", vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001554
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001555 if (ha->flags.npiv_supported) {
1556 if (ha->operating_mode == LOOP)
1557 ha->max_npiv_vports = MIN_MULTI_ID_FABRIC - 1;
Seokmann Juc48339d2008-01-17 09:02:19 -08001558 mid_init_cb->count = cpu_to_le16(ha->max_npiv_vports);
Lalit Chandivade605aa2b2009-03-05 11:07:01 -08001559 }
1560
Andrew Vasquez24a08132009-03-24 09:08:16 -07001561 if (IS_FWI2_CAPABLE(ha)) {
1562 mid_init_cb->options = __constant_cpu_to_le16(BIT_1);
1563 mid_init_cb->init_cb.execution_throttle =
1564 cpu_to_le16(ha->fw_xcb_count);
1565 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001566
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001567 rval = qla2x00_init_firmware(vha, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (rval) {
1569 DEBUG2_3(printk("scsi(%ld): Init firmware **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001570 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 } else {
1572 DEBUG3(printk("scsi(%ld): Init firmware -- success.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001573 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
1575
1576 return (rval);
1577}
1578
1579/**
1580 * qla2x00_fw_ready() - Waits for firmware ready.
1581 * @ha: HA context
1582 *
1583 * Returns 0 on success.
1584 */
1585static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001586qla2x00_fw_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
1588 int rval;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001589 unsigned long wtime, mtime, cs84xx_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 uint16_t min_wait; /* Minimum wait time if loop is down */
1591 uint16_t wait_time; /* Wait time if loop is coming ready */
Andrew Vasquez656e8912009-06-03 09:55:29 -07001592 uint16_t state[5];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001593 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 rval = QLA_SUCCESS;
1596
1597 /* 20 seconds for loop down. */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001598 min_wait = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 /*
1601 * Firmware should take at most one RATOV to login, plus 5 seconds for
1602 * our own processing.
1603 */
1604 if ((wait_time = (ha->retry_count*ha->login_timeout) + 5) < min_wait) {
1605 wait_time = min_wait;
1606 }
1607
1608 /* Min wait time if loop down */
1609 mtime = jiffies + (min_wait * HZ);
1610
1611 /* wait time before firmware ready */
1612 wtime = jiffies + (wait_time * HZ);
1613
1614 /* Wait for ISP to finish LIP */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001615 if (!vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 qla_printk(KERN_INFO, ha, "Waiting for LIP to complete...\n");
1617
1618 DEBUG3(printk("scsi(%ld): Waiting for LIP to complete...\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001619 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
1621 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001622 rval = qla2x00_get_firmware_state(vha, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (rval == QLA_SUCCESS) {
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001624 if (state[0] < FSTATE_LOSS_OF_SYNC) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001625 vha->device_flags &= ~DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001627 if (IS_QLA84XX(ha) && state[0] != FSTATE_READY) {
1628 DEBUG16(printk("scsi(%ld): fw_state=%x "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001629 "84xx=%x.\n", vha->host_no, state[0],
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001630 state[2]));
1631 if ((state[2] & FSTATE_LOGGED_IN) &&
1632 (state[2] & FSTATE_WAITING_FOR_VERIFY)) {
1633 DEBUG16(printk("scsi(%ld): Sending "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001634 "verify iocb.\n", vha->host_no));
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001635
1636 cs84xx_time = jiffies;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001637 rval = qla84xx_init_chip(vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001638 if (rval != QLA_SUCCESS)
1639 break;
1640
1641 /* Add time taken to initialize. */
1642 cs84xx_time = jiffies - cs84xx_time;
1643 wtime += cs84xx_time;
1644 mtime += cs84xx_time;
1645 DEBUG16(printk("scsi(%ld): Increasing "
1646 "wait time by %ld. New time %ld\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001647 vha->host_no, cs84xx_time, wtime));
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001648 }
1649 } else if (state[0] == FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 DEBUG(printk("scsi(%ld): F/W Ready - OK \n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001651 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001653 qla2x00_get_retry_cnt(vha, &ha->retry_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 &ha->login_timeout, &ha->r_a_tov);
1655
1656 rval = QLA_SUCCESS;
1657 break;
1658 }
1659
1660 rval = QLA_FUNCTION_FAILED;
1661
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001662 if (atomic_read(&vha->loop_down_timer) &&
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001663 state[0] != FSTATE_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 /* Loop down. Timeout on min_wait for states
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001665 * other than Wait for Login.
1666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (time_after_eq(jiffies, mtime)) {
1668 qla_printk(KERN_INFO, ha,
1669 "Cable is unplugged...\n");
1670
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001671 vha->device_flags |= DFLG_NO_CABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 break;
1673 }
1674 }
1675 } else {
1676 /* Mailbox cmd failed. Timeout on min_wait. */
1677 if (time_after_eq(jiffies, mtime))
1678 break;
1679 }
1680
1681 if (time_after_eq(jiffies, wtime))
1682 break;
1683
1684 /* Delay for a while */
1685 msleep(500);
1686
1687 DEBUG3(printk("scsi(%ld): fw_state=%x curr time=%lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001688 vha->host_no, state[0], jiffies));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 } while (1);
1690
Andrew Vasquez656e8912009-06-03 09:55:29 -07001691 DEBUG(printk("scsi(%ld): fw_state=%x (%x, %x, %x, %x) curr time=%lx.\n",
1692 vha->host_no, state[0], state[1], state[2], state[3], state[4],
1693 jiffies));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 if (rval) {
1696 DEBUG2_3(printk("scsi(%ld): Firmware ready **** FAILED ****.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001697 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 }
1699
1700 return (rval);
1701}
1702
1703/*
1704* qla2x00_configure_hba
1705* Setup adapter context.
1706*
1707* Input:
1708* ha = adapter state pointer.
1709*
1710* Returns:
1711* 0 = success
1712*
1713* Context:
1714* Kernel context.
1715*/
1716static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001717qla2x00_configure_hba(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
1719 int rval;
1720 uint16_t loop_id;
1721 uint16_t topo;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001722 uint16_t sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 uint8_t al_pa;
1724 uint8_t area;
1725 uint8_t domain;
1726 char connect_type[22];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001727 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 /* Get host addresses. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001730 rval = qla2x00_get_adapter_id(vha,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001731 &loop_id, &al_pa, &area, &domain, &topo, &sw_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001733 if (LOOP_TRANSITION(vha) || atomic_read(&ha->loop_down_timer) ||
Ravi Anand33135aa2005-11-08 14:37:20 -08001734 (rval == QLA_COMMAND_ERROR && loop_id == 0x7)) {
1735 DEBUG2(printk("%s(%ld) Loop is in a transition state\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001736 __func__, vha->host_no));
Ravi Anand33135aa2005-11-08 14:37:20 -08001737 } else {
1738 qla_printk(KERN_WARNING, ha,
1739 "ERROR -- Unable to get host loop ID.\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001740 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Ravi Anand33135aa2005-11-08 14:37:20 -08001741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 return (rval);
1743 }
1744
1745 if (topo == 4) {
1746 qla_printk(KERN_INFO, ha,
1747 "Cannot get topology - retrying.\n");
1748 return (QLA_FUNCTION_FAILED);
1749 }
1750
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001751 vha->loop_id = loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 /* initialize */
1754 ha->min_external_loopid = SNS_FIRST_LOOP_ID;
1755 ha->operating_mode = LOOP;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001756 ha->switch_cap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 switch (topo) {
1759 case 0:
1760 DEBUG3(printk("scsi(%ld): HBA in NL topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001761 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 ha->current_topology = ISP_CFG_NL;
1763 strcpy(connect_type, "(Loop)");
1764 break;
1765
1766 case 1:
1767 DEBUG3(printk("scsi(%ld): HBA in FL topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001768 vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001769 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 ha->current_topology = ISP_CFG_FL;
1771 strcpy(connect_type, "(FL_Port)");
1772 break;
1773
1774 case 2:
1775 DEBUG3(printk("scsi(%ld): HBA in N P2P topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001776 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 ha->operating_mode = P2P;
1778 ha->current_topology = ISP_CFG_N;
1779 strcpy(connect_type, "(N_Port-to-N_Port)");
1780 break;
1781
1782 case 3:
1783 DEBUG3(printk("scsi(%ld): HBA in F P2P topology.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001784 vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001785 ha->switch_cap = sw_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 ha->operating_mode = P2P;
1787 ha->current_topology = ISP_CFG_F;
1788 strcpy(connect_type, "(F_Port)");
1789 break;
1790
1791 default:
1792 DEBUG3(printk("scsi(%ld): HBA in unknown topology %x. "
1793 "Using NL.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001794 vha->host_no, topo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 ha->current_topology = ISP_CFG_NL;
1796 strcpy(connect_type, "(Loop)");
1797 break;
1798 }
1799
1800 /* Save Host port and loop ID. */
1801 /* byte order - Big Endian */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001802 vha->d_id.b.domain = domain;
1803 vha->d_id.b.area = area;
1804 vha->d_id.b.al_pa = al_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001806 if (!vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 qla_printk(KERN_INFO, ha,
1808 "Topology - %s, Host Loop address 0x%x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001809 connect_type, vha->loop_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 if (rval) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001812 DEBUG2_3(printk("scsi(%ld): FAILED.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001814 DEBUG3(printk("scsi(%ld): exiting normally.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
1816
1817 return(rval);
1818}
1819
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08001820static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001821qla2x00_set_model_info(scsi_qla_host_t *vha, uint8_t *model, size_t len,
1822 char *def)
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08001823{
1824 char *st, *en;
1825 uint16_t index;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001826 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezab671142009-08-25 11:36:17 -07001827 int use_tbl = !IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
1828 !IS_QLA81XX(ha);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08001829
1830 if (memcmp(model, BINZERO, len) != 0) {
1831 strncpy(ha->model_number, model, len);
1832 st = en = ha->model_number;
1833 en += len - 1;
1834 while (en > st) {
1835 if (*en != 0x20 && *en != 0x00)
1836 break;
1837 *en-- = '\0';
1838 }
1839
1840 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07001841 if (use_tbl &&
1842 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08001843 index < QLA_MODEL_NAMES)
Joe Carnuccio1ee27142008-07-10 16:55:53 -07001844 strncpy(ha->model_desc,
1845 qla2x00_model_name[index * 2 + 1],
1846 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08001847 } else {
1848 index = (ha->pdev->subsystem_device & 0xff);
Andrew Vasquez7d0dba12009-04-06 22:33:45 -07001849 if (use_tbl &&
1850 ha->pdev->subsystem_vendor == PCI_VENDOR_ID_QLOGIC &&
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08001851 index < QLA_MODEL_NAMES) {
1852 strcpy(ha->model_number,
1853 qla2x00_model_name[index * 2]);
Joe Carnuccio1ee27142008-07-10 16:55:53 -07001854 strncpy(ha->model_desc,
1855 qla2x00_model_name[index * 2 + 1],
1856 sizeof(ha->model_desc) - 1);
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08001857 } else {
1858 strcpy(ha->model_number, def);
1859 }
1860 }
Joe Carnuccio1ee27142008-07-10 16:55:53 -07001861 if (IS_FWI2_CAPABLE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001862 qla2xxx_get_vpd_field(vha, "\x82", ha->model_desc,
Joe Carnuccio1ee27142008-07-10 16:55:53 -07001863 sizeof(ha->model_desc));
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08001864}
1865
David Miller4e08df32007-04-16 12:37:43 -07001866/* On sparc systems, obtain port and node WWN from firmware
1867 * properties.
1868 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001869static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t *vha, nvram_t *nv)
David Miller4e08df32007-04-16 12:37:43 -07001870{
1871#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001872 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07001873 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07001874 struct device_node *dp = pci_device_to_OF_node(pdev);
1875 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07001876 int len;
1877
1878 val = of_get_property(dp, "port-wwn", &len);
1879 if (val && len >= WWN_SIZE)
1880 memcpy(nv->port_name, val, WWN_SIZE);
1881
1882 val = of_get_property(dp, "node-wwn", &len);
1883 if (val && len >= WWN_SIZE)
1884 memcpy(nv->node_name, val, WWN_SIZE);
1885#endif
1886}
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888/*
1889* NVRAM configuration for ISP 2xxx
1890*
1891* Input:
1892* ha = adapter block pointer.
1893*
1894* Output:
1895* initialization control block in response_ring
1896* host adapters parameters in host adapter block
1897*
1898* Returns:
1899* 0 = success.
1900*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001901int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001902qla2x00_nvram_config(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
David Miller4e08df32007-04-16 12:37:43 -07001904 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001905 uint8_t chksum = 0;
1906 uint16_t cnt;
1907 uint8_t *dptr1, *dptr2;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001908 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001909 init_cb_t *icb = ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07001910 nvram_t *nv = ha->nvram;
1911 uint8_t *ptr = ha->nvram;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001912 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
David Miller4e08df32007-04-16 12:37:43 -07001914 rval = QLA_SUCCESS;
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 /* Determine NVRAM starting address. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001917 ha->nvram_size = sizeof(nvram_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 ha->nvram_base = 0;
1919 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha))
1920 if ((RD_REG_WORD(&reg->ctrl_status) >> 14) == 1)
1921 ha->nvram_base = 0x80;
1922
1923 /* Get NVRAM data and calculate checksum. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001924 ha->isp_ops->read_nvram(vha, ptr, ha->nvram_base, ha->nvram_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001925 for (cnt = 0, chksum = 0; cnt < ha->nvram_size; cnt++)
1926 chksum += *ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001928 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Seokmann Ju281afe12007-07-26 13:43:34 -07001929 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 /* Bad NVRAM data, set defaults parameters. */
1932 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' ||
1933 nv->id[2] != 'P' || nv->id[3] != ' ' || nv->nvram_version < 1) {
1934 /* Reset NVRAM data. */
1935 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
1936 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
1937 nv->nvram_version);
David Miller4e08df32007-04-16 12:37:43 -07001938 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
1939 "invalid -- WWPN) defaults.\n");
1940
1941 /*
1942 * Set default initialization control block.
1943 */
1944 memset(nv, 0, ha->nvram_size);
1945 nv->parameter_block_version = ICB_VERSION;
1946
1947 if (IS_QLA23XX(ha)) {
1948 nv->firmware_options[0] = BIT_2 | BIT_1;
1949 nv->firmware_options[1] = BIT_7 | BIT_5;
1950 nv->add_firmware_options[0] = BIT_5;
1951 nv->add_firmware_options[1] = BIT_5 | BIT_4;
1952 nv->frame_payload_size = __constant_cpu_to_le16(2048);
1953 nv->special_options[1] = BIT_7;
1954 } else if (IS_QLA2200(ha)) {
1955 nv->firmware_options[0] = BIT_2 | BIT_1;
1956 nv->firmware_options[1] = BIT_7 | BIT_5;
1957 nv->add_firmware_options[0] = BIT_5;
1958 nv->add_firmware_options[1] = BIT_5 | BIT_4;
1959 nv->frame_payload_size = __constant_cpu_to_le16(1024);
1960 } else if (IS_QLA2100(ha)) {
1961 nv->firmware_options[0] = BIT_3 | BIT_1;
1962 nv->firmware_options[1] = BIT_5;
1963 nv->frame_payload_size = __constant_cpu_to_le16(1024);
1964 }
1965
1966 nv->max_iocb_allocation = __constant_cpu_to_le16(256);
1967 nv->execution_throttle = __constant_cpu_to_le16(16);
1968 nv->retry_count = 8;
1969 nv->retry_delay = 1;
1970
1971 nv->port_name[0] = 33;
1972 nv->port_name[3] = 224;
1973 nv->port_name[4] = 139;
1974
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001975 qla2xxx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07001976
1977 nv->login_timeout = 4;
1978
1979 /*
1980 * Set default host adapter parameters
1981 */
1982 nv->host_p[1] = BIT_2;
1983 nv->reset_delay = 5;
1984 nv->port_down_retry_count = 8;
1985 nv->max_luns_per_target = __constant_cpu_to_le16(8);
1986 nv->link_down_timeout = 60;
1987
1988 rval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
1990
1991#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
1992 /*
1993 * The SN2 does not provide BIOS emulation which means you can't change
1994 * potentially bogus BIOS settings. Force the use of default settings
1995 * for link rate and frame size. Hope that the rest of the settings
1996 * are valid.
1997 */
1998 if (ia64_platform_is("sn2")) {
1999 nv->frame_payload_size = __constant_cpu_to_le16(2048);
2000 if (IS_QLA23XX(ha))
2001 nv->special_options[1] = BIT_7;
2002 }
2003#endif
2004
2005 /* Reset Initialization control block */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002006 memset(icb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
2008 /*
2009 * Setup driver NVRAM options.
2010 */
2011 nv->firmware_options[0] |= (BIT_6 | BIT_1);
2012 nv->firmware_options[0] &= ~(BIT_5 | BIT_4);
2013 nv->firmware_options[1] |= (BIT_5 | BIT_0);
2014 nv->firmware_options[1] &= ~BIT_4;
2015
2016 if (IS_QLA23XX(ha)) {
2017 nv->firmware_options[0] |= BIT_2;
2018 nv->firmware_options[0] &= ~BIT_3;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002019 nv->add_firmware_options[1] |= BIT_5 | BIT_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 if (IS_QLA2300(ha)) {
2022 if (ha->fb_rev == FPM_2310) {
2023 strcpy(ha->model_number, "QLA2310");
2024 } else {
2025 strcpy(ha->model_number, "QLA2300");
2026 }
2027 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002028 qla2x00_set_model_info(vha, nv->model_number,
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08002029 sizeof(nv->model_number), "QLA23xx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
2031 } else if (IS_QLA2200(ha)) {
2032 nv->firmware_options[0] |= BIT_2;
2033 /*
2034 * 'Point-to-point preferred, else loop' is not a safe
2035 * connection mode setting.
2036 */
2037 if ((nv->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) ==
2038 (BIT_5 | BIT_4)) {
2039 /* Force 'loop preferred, else point-to-point'. */
2040 nv->add_firmware_options[0] &= ~(BIT_6 | BIT_5 | BIT_4);
2041 nv->add_firmware_options[0] |= BIT_5;
2042 }
2043 strcpy(ha->model_number, "QLA22xx");
2044 } else /*if (IS_QLA2100(ha))*/ {
2045 strcpy(ha->model_number, "QLA2100");
2046 }
2047
2048 /*
2049 * Copy over NVRAM RISC parameter block to initialization control block.
2050 */
2051 dptr1 = (uint8_t *)icb;
2052 dptr2 = (uint8_t *)&nv->parameter_block_version;
2053 cnt = (uint8_t *)&icb->request_q_outpointer - (uint8_t *)&icb->version;
2054 while (cnt--)
2055 *dptr1++ = *dptr2++;
2056
2057 /* Copy 2nd half. */
2058 dptr1 = (uint8_t *)icb->add_firmware_options;
2059 cnt = (uint8_t *)icb->reserved_3 - (uint8_t *)icb->add_firmware_options;
2060 while (cnt--)
2061 *dptr1++ = *dptr2++;
2062
Andrew Vasquez5341e862006-05-17 15:09:16 -07002063 /* Use alternate WWN? */
2064 if (nv->host_p[1] & BIT_7) {
2065 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
2066 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
2067 }
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 /* Prepare nodename */
2070 if ((icb->firmware_options[1] & BIT_6) == 0) {
2071 /*
2072 * Firmware will apply the following mask if the nodename was
2073 * not provided.
2074 */
2075 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
2076 icb->node_name[0] &= 0xF0;
2077 }
2078
2079 /*
2080 * Set host adapter parameters.
2081 */
Andrew Vasquez01819442006-06-23 16:11:10 -07002082 if (nv->host_p[0] & BIT_7)
Andrew Vasquez11010fe2006-10-06 09:54:59 -07002083 ql2xextended_error_logging = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 ha->flags.disable_risc_code_load = ((nv->host_p[0] & BIT_4) ? 1 : 0);
2085 /* Always load RISC code on non ISP2[12]00 chips. */
2086 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
2087 ha->flags.disable_risc_code_load = 0;
2088 ha->flags.enable_lip_reset = ((nv->host_p[1] & BIT_1) ? 1 : 0);
2089 ha->flags.enable_lip_full_login = ((nv->host_p[1] & BIT_2) ? 1 : 0);
2090 ha->flags.enable_target_reset = ((nv->host_p[1] & BIT_3) ? 1 : 0);
Andrew Vasquez06c22bd2005-08-26 19:09:00 -07002091 ha->flags.enable_led_scheme = (nv->special_options[1] & BIT_4) ? 1 : 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07002092 ha->flags.disable_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
2094 ha->operating_mode =
2095 (icb->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) >> 4;
2096
2097 memcpy(ha->fw_seriallink_options, nv->seriallink_options,
2098 sizeof(ha->fw_seriallink_options));
2099
2100 /* save HBA serial number */
2101 ha->serial0 = icb->port_name[5];
2102 ha->serial1 = icb->port_name[6];
2103 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002104 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
2105 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
2108
2109 ha->retry_count = nv->retry_count;
2110
2111 /* Set minimum login_timeout to 4 seconds. */
2112 if (nv->login_timeout < ql2xlogintimeout)
2113 nv->login_timeout = ql2xlogintimeout;
2114 if (nv->login_timeout < 4)
2115 nv->login_timeout = 4;
2116 ha->login_timeout = nv->login_timeout;
2117 icb->login_timeout = nv->login_timeout;
2118
Andrew Vasquez00a537b2008-02-28 14:06:11 -08002119 /* Set minimum RATOV to 100 tenths of a second. */
2120 ha->r_a_tov = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 ha->loop_reset_delay = nv->reset_delay;
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 /* Link Down Timeout = 0:
2125 *
2126 * When Port Down timer expires we will start returning
2127 * I/O's to OS with "DID_NO_CONNECT".
2128 *
2129 * Link Down Timeout != 0:
2130 *
2131 * The driver waits for the link to come up after link down
2132 * before returning I/Os to OS with "DID_NO_CONNECT".
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 if (nv->link_down_timeout == 0) {
2135 ha->loop_down_abort_time =
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002136 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 } else {
2138 ha->link_down_timeout = nv->link_down_timeout;
2139 ha->loop_down_abort_time =
2140 (LOOP_DOWN_TIME - ha->link_down_timeout);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 /*
2144 * Need enough time to try and get the port back.
2145 */
2146 ha->port_down_retry_count = nv->port_down_retry_count;
2147 if (qlport_down_retry)
2148 ha->port_down_retry_count = qlport_down_retry;
2149 /* Set login_retry_count */
2150 ha->login_retry_count = nv->retry_count;
2151 if (ha->port_down_retry_count == nv->port_down_retry_count &&
2152 ha->port_down_retry_count > 3)
2153 ha->login_retry_count = ha->port_down_retry_count;
2154 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
2155 ha->login_retry_count = ha->port_down_retry_count;
2156 if (ql2xloginretrycount)
2157 ha->login_retry_count = ql2xloginretrycount;
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 icb->lun_enables = __constant_cpu_to_le16(0);
2160 icb->command_resource_count = 0;
2161 icb->immediate_notify_resource_count = 0;
2162 icb->timeout = __constant_cpu_to_le16(0);
2163
2164 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2165 /* Enable RIO */
2166 icb->firmware_options[0] &= ~BIT_3;
2167 icb->add_firmware_options[0] &=
2168 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
2169 icb->add_firmware_options[0] |= BIT_2;
2170 icb->response_accumulation_timer = 3;
2171 icb->interrupt_delay_timer = 5;
2172
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002173 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 } else {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002175 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002176 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002177 ha->zio_mode = icb->add_firmware_options[0] &
2178 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
2179 ha->zio_timer = icb->interrupt_delay_timer ?
2180 icb->interrupt_delay_timer: 2;
2181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 icb->add_firmware_options[0] &=
2183 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002184 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002185 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08002186 ha->zio_mode = QLA_ZIO_MODE_6;
2187
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002188 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002189 "delay (%d us).\n", vha->host_no, ha->zio_mode,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002190 ha->zio_timer * 100));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 qla_printk(KERN_INFO, ha,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002192 "ZIO mode %d enabled; timer delay (%d us).\n",
2193 ha->zio_mode, ha->zio_timer * 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07002195 icb->add_firmware_options[0] |= (uint8_t)ha->zio_mode;
2196 icb->interrupt_delay_timer = (uint8_t)ha->zio_timer;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002197 vha->flags.process_response_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199 }
2200
David Miller4e08df32007-04-16 12:37:43 -07002201 if (rval) {
2202 DEBUG2_3(printk(KERN_WARNING
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002203 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
David Miller4e08df32007-04-16 12:37:43 -07002204 }
2205 return (rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002208static void
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002209qla2x00_rport_del(void *data)
2210{
2211 fc_port_t *fcport = data;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002212 struct fc_rport *rport;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002213
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002214 spin_lock_irq(fcport->vha->host->host_lock);
Andrew Vasquezac280b62009-08-20 11:06:05 -07002215 rport = fcport->drport ? fcport->drport: fcport->rport;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002216 fcport->drport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002217 spin_unlock_irq(fcport->vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002218 if (rport)
2219 fc_remote_port_delete(rport);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002220}
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222/**
2223 * qla2x00_alloc_fcport() - Allocate a generic fcport.
2224 * @ha: HA context
2225 * @flags: allocation flags
2226 *
2227 * Returns a pointer to the allocated fcport, or NULL, if none available.
2228 */
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002229fc_port_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002230qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
2232 fc_port_t *fcport;
2233
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002234 fcport = kzalloc(sizeof(fc_port_t), flags);
2235 if (!fcport)
2236 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 /* Setup fcport template structure. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002239 fcport->vha = vha;
2240 fcport->vp_idx = vha->vp_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 fcport->port_type = FCT_UNKNOWN;
2242 fcport->loop_id = FC_NO_LOOP_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 atomic_set(&fcport->state, FCS_UNCONFIGURED);
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002244 fcport->supported_classes = FC_COS_UNSPECIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002246 return fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247}
2248
2249/*
2250 * qla2x00_configure_loop
2251 * Updates Fibre Channel Device Database with what is actually on loop.
2252 *
2253 * Input:
2254 * ha = adapter block pointer.
2255 *
2256 * Returns:
2257 * 0 = success.
2258 * 1 = error.
2259 * 2 = database was full and device was not configured.
2260 */
2261static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002262qla2x00_configure_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263{
2264 int rval;
2265 unsigned long flags, save_flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002266 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 rval = QLA_SUCCESS;
2268
2269 /* Get Initiator ID */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002270 if (test_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags)) {
2271 rval = qla2x00_configure_hba(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (rval != QLA_SUCCESS) {
2273 DEBUG(printk("scsi(%ld): Unable to configure HBA.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002274 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 return (rval);
2276 }
2277 }
2278
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002279 save_flags = flags = vha->dpc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 DEBUG(printk("scsi(%ld): Configure loop -- dpc flags =0x%lx\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002281 vha->host_no, flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 /*
2284 * If we have both an RSCN and PORT UPDATE pending then handle them
2285 * both at the same time.
2286 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002287 clear_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2288 clear_bit(RSCN_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Michael Hernandez3064ff32009-12-15 21:29:44 -08002290 qla2x00_get_data_rate(vha);
2291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 /* Determine what we need to do */
2293 if (ha->current_topology == ISP_CFG_FL &&
2294 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2295
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002296 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 set_bit(RSCN_UPDATE, &flags);
2298
2299 } else if (ha->current_topology == ISP_CFG_F &&
2300 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
2301
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002302 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 set_bit(RSCN_UPDATE, &flags);
2304 clear_bit(LOCAL_LOOP_UPDATE, &flags);
2305
Andrew Vasquez21333b42006-05-17 15:09:56 -07002306 } else if (ha->current_topology == ISP_CFG_N) {
2307 clear_bit(RSCN_UPDATE, &flags);
2308
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002309 } else if (!vha->flags.online ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 (test_bit(ABORT_ISP_ACTIVE, &flags))) {
2311
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002312 vha->flags.rscn_queue_overflow = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 set_bit(RSCN_UPDATE, &flags);
2314 set_bit(LOCAL_LOOP_UPDATE, &flags);
2315 }
2316
2317 if (test_bit(LOCAL_LOOP_UPDATE, &flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002318 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 rval = QLA_FUNCTION_FAILED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002320 else
2321 rval = qla2x00_configure_local_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 }
2323
2324 if (rval == QLA_SUCCESS && test_bit(RSCN_UPDATE, &flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002325 if (LOOP_TRANSITION(vha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 rval = QLA_FUNCTION_FAILED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002327 else
2328 rval = qla2x00_configure_fabric(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
2330
2331 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002332 if (atomic_read(&vha->loop_down_timer) ||
2333 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 rval = QLA_FUNCTION_FAILED;
2335 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002336 atomic_set(&vha->loop_state, LOOP_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002338 DEBUG(printk("scsi(%ld): LOOP READY\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
2340 }
2341
2342 if (rval) {
2343 DEBUG2_3(printk("%s(%ld): *** FAILED ***\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002344 __func__, vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 } else {
2346 DEBUG3(printk("%s: exiting normally\n", __func__));
2347 }
2348
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -07002349 /* Restore state if a resync event occurred during processing */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002350 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 if (test_bit(LOCAL_LOOP_UPDATE, &save_flags))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002352 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002353 if (test_bit(RSCN_UPDATE, &save_flags)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002354 set_bit(RSCN_UPDATE, &vha->dpc_flags);
Andrew Vasquezf4658b62009-06-03 09:55:21 -07002355 vha->flags.rscn_queue_overflow = 1;
2356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
2358
2359 return (rval);
2360}
2361
2362
2363
2364/*
2365 * qla2x00_configure_local_loop
2366 * Updates Fibre Channel Device Database with local loop devices.
2367 *
2368 * Input:
2369 * ha = adapter block pointer.
2370 *
2371 * Returns:
2372 * 0 = success.
2373 */
2374static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002375qla2x00_configure_local_loop(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
2377 int rval, rval2;
2378 int found_devs;
2379 int found;
2380 fc_port_t *fcport, *new_fcport;
2381
2382 uint16_t index;
2383 uint16_t entries;
2384 char *id_iter;
2385 uint16_t loop_id;
2386 uint8_t domain, area, al_pa;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002387 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 found_devs = 0;
2390 new_fcport = NULL;
2391 entries = MAX_FIBRE_DEVICES;
2392
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002393 DEBUG3(printk("scsi(%ld): Getting FCAL position map\n", vha->host_no));
2394 DEBUG3(qla2x00_get_fcal_position_map(vha, NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396 /* Get list of logged in devices. */
2397 memset(ha->gid_list, 0, GID_LIST_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002398 rval = qla2x00_get_id_list(vha, ha->gid_list, ha->gid_list_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 &entries);
2400 if (rval != QLA_SUCCESS)
2401 goto cleanup_allocation;
2402
2403 DEBUG3(printk("scsi(%ld): Entries in ID list (%d)\n",
Andrew Vasquez76403352009-04-06 22:33:39 -07002404 vha->host_no, entries));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 DEBUG3(qla2x00_dump_buffer((uint8_t *)ha->gid_list,
2406 entries * sizeof(struct gid_list_info)));
2407
2408 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002409 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 if (new_fcport == NULL) {
2411 rval = QLA_MEMORY_ALLOC_FAILED;
2412 goto cleanup_allocation;
2413 }
2414 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2415
2416 /*
2417 * Mark local devices that were present with FCF_DEVICE_LOST for now.
2418 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002419 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 if (atomic_read(&fcport->state) == FCS_ONLINE &&
2421 fcport->port_type != FCT_BROADCAST &&
2422 (fcport->flags & FCF_FABRIC_DEVICE) == 0) {
2423
2424 DEBUG(printk("scsi(%ld): Marking port lost, "
2425 "loop_id=0x%04x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002426 vha->host_no, fcport->loop_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428 atomic_set(&fcport->state, FCS_DEVICE_LOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 }
2430 }
2431
2432 /* Add devices to port list. */
2433 id_iter = (char *)ha->gid_list;
2434 for (index = 0; index < entries; index++) {
2435 domain = ((struct gid_list_info *)id_iter)->domain;
2436 area = ((struct gid_list_info *)id_iter)->area;
2437 al_pa = ((struct gid_list_info *)id_iter)->al_pa;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002438 if (IS_QLA2100(ha) || IS_QLA2200(ha))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 loop_id = (uint16_t)
2440 ((struct gid_list_info *)id_iter)->loop_id_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002441 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 loop_id = le16_to_cpu(
2443 ((struct gid_list_info *)id_iter)->loop_id);
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002444 id_iter += ha->gid_list_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 /* Bypass reserved domain fields. */
2447 if ((domain & 0xf0) == 0xf0)
2448 continue;
2449
2450 /* Bypass if not same domain and area of adapter. */
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07002451 if (area && domain &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002452 (area != vha->d_id.b.area || domain != vha->d_id.b.domain))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 continue;
2454
2455 /* Bypass invalid local loop ID. */
2456 if (loop_id > LAST_LOCAL_LOOP_ID)
2457 continue;
2458
2459 /* Fill in member data. */
2460 new_fcport->d_id.b.domain = domain;
2461 new_fcport->d_id.b.area = area;
2462 new_fcport->d_id.b.al_pa = al_pa;
2463 new_fcport->loop_id = loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002464 new_fcport->vp_idx = vha->vp_idx;
2465 rval2 = qla2x00_get_port_database(vha, new_fcport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 if (rval2 != QLA_SUCCESS) {
2467 DEBUG2(printk("scsi(%ld): Failed to retrieve fcport "
2468 "information -- get_port_database=%x, "
2469 "loop_id=0x%04x\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002470 vha->host_no, rval2, new_fcport->loop_id));
andrew.vasquez@qlogic.comc9d02ac2006-01-13 17:05:26 -08002471 DEBUG2(printk("scsi(%ld): Scheduling resync...\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002472 vha->host_no));
2473 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 continue;
2475 }
2476
2477 /* Check for matching device in port list. */
2478 found = 0;
2479 fcport = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002480 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 if (memcmp(new_fcport->port_name, fcport->port_name,
2482 WWN_SIZE))
2483 continue;
2484
Shyam Sundarddb9b122009-03-24 09:08:10 -07002485 fcport->flags &= ~FCF_FABRIC_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 fcport->loop_id = new_fcport->loop_id;
2487 fcport->port_type = new_fcport->port_type;
2488 fcport->d_id.b24 = new_fcport->d_id.b24;
2489 memcpy(fcport->node_name, new_fcport->node_name,
2490 WWN_SIZE);
2491
2492 found++;
2493 break;
2494 }
2495
2496 if (!found) {
2497 /* New device, add to fcports list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002498 if (vha->vp_idx) {
2499 new_fcport->vha = vha;
2500 new_fcport->vp_idx = vha->vp_idx;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002501 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002502 list_add_tail(&new_fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
2504 /* Allocate a new replacement fcport. */
2505 fcport = new_fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002506 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (new_fcport == NULL) {
2508 rval = QLA_MEMORY_ALLOC_FAILED;
2509 goto cleanup_allocation;
2510 }
2511 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
2512 }
2513
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002514 /* Base iIDMA settings on HBA port speed. */
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002515 fcport->fp_speed = ha->link_data_rate;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002516
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002517 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
2519 found_devs++;
2520 }
2521
2522cleanup_allocation:
Jesper Juhlc9475cb2005-11-07 01:01:26 -08002523 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525 if (rval != QLA_SUCCESS) {
2526 DEBUG2(printk("scsi(%ld): Configure local loop error exit: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002527 "rval=%x\n", vha->host_no, rval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 }
2529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 return (rval);
2531}
2532
2533static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002534qla2x00_iidma_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002535{
2536#define LS_UNKNOWN 2
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002537 static char *link_speeds[] = { "1", "2", "?", "4", "8", "10" };
2538 char *link_speed;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002539 int rval;
Harish Zunjarrao1bb39542009-06-17 10:30:29 -07002540 uint16_t mb[4];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002541 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002542
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07002543 if (!IS_IIDMA_CAPABLE(ha))
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002544 return;
2545
Andrew Vasquez39bd9622007-09-20 14:07:34 -07002546 if (fcport->fp_speed == PORT_SPEED_UNKNOWN ||
2547 fcport->fp_speed > ha->link_data_rate)
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002548 return;
2549
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002550 rval = qla2x00_set_idma_speed(vha, fcport->loop_id, fcport->fp_speed,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002551 mb);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002552 if (rval != QLA_SUCCESS) {
2553 DEBUG2(printk("scsi(%ld): Unable to adjust iIDMA "
2554 "%02x%02x%02x%02x%02x%02x%02x%02x -- %04x %x %04x %04x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002555 vha->host_no, fcport->port_name[0], fcport->port_name[1],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002556 fcport->port_name[2], fcport->port_name[3],
2557 fcport->port_name[4], fcport->port_name[5],
2558 fcport->port_name[6], fcport->port_name[7], rval,
Andrew Vasqueza3cbdfa2007-08-13 10:13:18 -07002559 fcport->fp_speed, mb[0], mb[1]));
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002560 } else {
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002561 link_speed = link_speeds[LS_UNKNOWN];
2562 if (fcport->fp_speed < 5)
2563 link_speed = link_speeds[fcport->fp_speed];
2564 else if (fcport->fp_speed == 0x13)
2565 link_speed = link_speeds[5];
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002566 DEBUG2(qla_printk(KERN_INFO, ha,
2567 "iIDMA adjusted to %s GB/s on "
2568 "%02x%02x%02x%02x%02x%02x%02x%02x.\n",
Andrew Vasquez9f8fdde2009-06-03 09:55:22 -07002569 link_speed, fcport->port_name[0],
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002570 fcport->port_name[1], fcport->port_name[2],
2571 fcport->port_name[3], fcport->port_name[4],
2572 fcport->port_name[5], fcport->port_name[6],
2573 fcport->port_name[7]));
2574 }
2575}
2576
Adrian Bunk23be3312006-11-24 02:46:01 +01002577static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002578qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport)
8482e1182005-04-17 15:04:54 -05002579{
2580 struct fc_rport_identifiers rport_ids;
bdf79622005-04-17 15:06:53 -05002581 struct fc_rport *rport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002582 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -05002583
Andrew Vasquezac280b62009-08-20 11:06:05 -07002584 qla2x00_rport_del(fcport);
8482e1182005-04-17 15:04:54 -05002585
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07002586 rport_ids.node_name = wwn_to_u64(fcport->node_name);
2587 rport_ids.port_name = wwn_to_u64(fcport->port_name);
8482e1182005-04-17 15:04:54 -05002588 rport_ids.port_id = fcport->d_id.b.domain << 16 |
2589 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
2590 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002591 fcport->rport = rport = fc_remote_port_add(vha->host, 0, &rport_ids);
Andrew Vasquez77d74142005-07-08 18:00:36 -07002592 if (!rport) {
2593 qla_printk(KERN_WARNING, ha,
2594 "Unable to allocate fc remote port!\n");
2595 return;
2596 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002597 spin_lock_irq(fcport->vha->host->host_lock);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002598 *((fc_port_t **)rport->dd_data) = fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002599 spin_unlock_irq(fcport->vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002600
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002601 rport->supported_classes = fcport->supported_classes;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002602
2603 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
8482e1182005-04-17 15:04:54 -05002604 if (fcport->port_type == FCT_INITIATOR)
2605 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
2606 if (fcport->port_type == FCT_TARGET)
2607 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
Andrew Vasquez77d74142005-07-08 18:00:36 -07002608 fc_remote_port_rolechg(rport, rport_ids.roles);
8482e1182005-04-17 15:04:54 -05002609}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
2611/*
Adrian Bunk23be3312006-11-24 02:46:01 +01002612 * qla2x00_update_fcport
2613 * Updates device on list.
2614 *
2615 * Input:
2616 * ha = adapter block pointer.
2617 * fcport = port structure pointer.
2618 *
2619 * Return:
2620 * 0 - Success
2621 * BIT_0 - error
2622 *
2623 * Context:
2624 * Kernel context.
2625 */
2626void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002627qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport)
Adrian Bunk23be3312006-11-24 02:46:01 +01002628{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002629 struct qla_hw_data *ha = vha->hw;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002630
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002631 fcport->vha = vha;
Adrian Bunk23be3312006-11-24 02:46:01 +01002632 fcport->login_retry = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002633 fcport->port_login_retry_count = ha->port_down_retry_count *
Adrian Bunk23be3312006-11-24 02:46:01 +01002634 PORT_RETRY_TIME;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002635 atomic_set(&fcport->port_down_timer, ha->port_down_retry_count *
Adrian Bunk23be3312006-11-24 02:46:01 +01002636 PORT_RETRY_TIME);
2637 fcport->flags &= ~FCF_LOGIN_NEEDED;
2638
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002639 qla2x00_iidma_fcport(vha, fcport);
Adrian Bunk23be3312006-11-24 02:46:01 +01002640
2641 atomic_set(&fcport->state, FCS_ONLINE);
2642
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002643 qla2x00_reg_remote_port(vha, fcport);
Adrian Bunk23be3312006-11-24 02:46:01 +01002644}
2645
2646/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 * qla2x00_configure_fabric
2648 * Setup SNS devices with loop ID's.
2649 *
2650 * Input:
2651 * ha = adapter block pointer.
2652 *
2653 * Returns:
2654 * 0 = success.
2655 * BIT_0 = error
2656 */
2657static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002658qla2x00_configure_fabric(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659{
2660 int rval, rval2;
2661 fc_port_t *fcport, *fcptemp;
2662 uint16_t next_loopid;
2663 uint16_t mb[MAILBOX_REGISTER_COUNT];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002664 uint16_t loop_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 LIST_HEAD(new_fcports);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002666 struct qla_hw_data *ha = vha->hw;
2667 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
2669 /* If FL port exists, then SNS is present */
Andrew Vasqueze4289242007-07-19 15:05:56 -07002670 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002671 loop_id = NPH_F_PORT;
2672 else
2673 loop_id = SNS_FL_PORT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002674 rval = qla2x00_get_port_name(vha, loop_id, vha->fabric_node_name, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 if (rval != QLA_SUCCESS) {
2676 DEBUG2(printk("scsi(%ld): MBC_GET_PORT_NAME Failed, No FL "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002677 "Port\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002679 vha->device_flags &= ~SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 return (QLA_SUCCESS);
2681 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002682 vha->device_flags |= SWITCH_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
2684 /* Mark devices that need re-synchronization. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002685 rval2 = qla2x00_device_resync(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 if (rval2 == QLA_RSCNS_HANDLED) {
2687 /* No point doing the scan, just continue. */
2688 return (QLA_SUCCESS);
2689 }
2690 do {
Andrew Vasquezcca53352005-08-26 19:08:30 -07002691 /* FDMI support. */
2692 if (ql2xfdmienable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002693 test_and_clear_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags))
2694 qla2x00_fdmi_register(vha);
Andrew Vasquezcca53352005-08-26 19:08:30 -07002695
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 /* Ensure we are logged into the SNS. */
Andrew Vasqueze4289242007-07-19 15:05:56 -07002697 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002698 loop_id = NPH_SNS;
2699 else
2700 loop_id = SIMPLE_NAME_SERVER;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002701 ha->isp_ops->fabric_login(vha, loop_id, 0xff, 0xff,
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002702 0xfc, mb, BIT_1 | BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 if (mb[0] != MBS_COMMAND_COMPLETE) {
2704 DEBUG2(qla_printk(KERN_INFO, ha,
2705 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
Andrew Vasquez0107109e2005-07-06 10:31:37 -07002706 "mb[2]=%x mb[6]=%x mb[7]=%x\n", loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 mb[0], mb[1], mb[2], mb[6], mb[7]));
2708 return (QLA_SUCCESS);
2709 }
2710
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002711 if (test_and_clear_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags)) {
2712 if (qla2x00_rft_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 /* EMPTY */
2714 DEBUG2(printk("scsi(%ld): Register FC-4 "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002715 "TYPE failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002717 if (qla2x00_rff_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 /* EMPTY */
2719 DEBUG2(printk("scsi(%ld): Register FC-4 "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002720 "Features failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002722 if (qla2x00_rnn_id(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 /* EMPTY */
2724 DEBUG2(printk("scsi(%ld): Register Node Name "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002725 "failed.\n", vha->host_no));
2726 } else if (qla2x00_rsnn_nn(vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 /* EMPTY */
2728 DEBUG2(printk("scsi(%ld): Register Symbolic "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002729 "Node Name failed.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 }
2731 }
2732
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002733 rval = qla2x00_find_all_fabric_devs(vha, &new_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 if (rval != QLA_SUCCESS)
2735 break;
2736
2737 /*
2738 * Logout all previous fabric devices marked lost, except
Andrew Vasquezf08b7252010-01-12 12:59:48 -08002739 * FCP2 devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002741 list_for_each_entry(fcport, &vha->vp_fcports, list) {
2742 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 break;
2744
2745 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0)
2746 continue;
2747
2748 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002749 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002750 ql2xplogiabsentdevice, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08002752 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 fcport->port_type != FCT_INITIATOR &&
2754 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002755 ha->isp_ops->fabric_logout(vha,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07002756 fcport->loop_id,
2757 fcport->d_id.b.domain,
2758 fcport->d_id.b.area,
2759 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 fcport->loop_id = FC_NO_LOOP_ID;
2761 }
2762 }
2763 }
2764
2765 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002766 next_loopid = ha->min_external_loopid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 /*
2769 * Scan through our port list and login entries that need to be
2770 * logged in.
2771 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002772 list_for_each_entry(fcport, &vha->vp_fcports, list) {
2773 if (atomic_read(&vha->loop_down_timer) ||
2774 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 break;
2776
2777 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
2778 (fcport->flags & FCF_LOGIN_NEEDED) == 0)
2779 continue;
2780
2781 if (fcport->loop_id == FC_NO_LOOP_ID) {
2782 fcport->loop_id = next_loopid;
Seokmann Jud4486fd62008-04-03 13:13:28 -07002783 rval = qla2x00_find_new_loop_id(
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002784 base_vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 if (rval != QLA_SUCCESS) {
2786 /* Ran out of IDs to use */
2787 break;
2788 }
2789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002791 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 }
2793
2794 /* Exit if out of loop IDs. */
2795 if (rval != QLA_SUCCESS) {
2796 break;
2797 }
2798
2799 /*
2800 * Login and add the new devices to our port list.
2801 */
2802 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002803 if (atomic_read(&vha->loop_down_timer) ||
2804 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 break;
2806
2807 /* Find a new loop ID to use. */
2808 fcport->loop_id = next_loopid;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002809 rval = qla2x00_find_new_loop_id(base_vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 if (rval != QLA_SUCCESS) {
2811 /* Ran out of IDs to use */
2812 break;
2813 }
2814
bdf79622005-04-17 15:06:53 -05002815 /* Login and update database */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002816 qla2x00_fabric_dev_login(vha, fcport, &next_loopid);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002817
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002818 if (vha->vp_idx) {
2819 fcport->vha = vha;
2820 fcport->vp_idx = vha->vp_idx;
2821 }
2822 list_move_tail(&fcport->list, &vha->vp_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 }
2824 } while (0);
2825
2826 /* Free all new device structures not processed. */
2827 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
2828 list_del(&fcport->list);
2829 kfree(fcport);
2830 }
2831
2832 if (rval) {
2833 DEBUG2(printk("scsi(%ld): Configure fabric error exit: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002834 "rval=%d\n", vha->host_no, rval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 }
2836
2837 return (rval);
2838}
2839
2840
2841/*
2842 * qla2x00_find_all_fabric_devs
2843 *
2844 * Input:
2845 * ha = adapter block pointer.
2846 * dev = database device entry pointer.
2847 *
2848 * Returns:
2849 * 0 = success.
2850 *
2851 * Context:
2852 * Kernel context.
2853 */
2854static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002855qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha,
2856 struct list_head *new_fcports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857{
2858 int rval;
2859 uint16_t loop_id;
2860 fc_port_t *fcport, *new_fcport, *fcptemp;
2861 int found;
2862
2863 sw_info_t *swl;
2864 int swl_idx;
2865 int first_dev, last_dev;
2866 port_id_t wrap, nxt_d_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002867 struct qla_hw_data *ha = vha->hw;
2868 struct scsi_qla_host *vp, *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08002869 struct scsi_qla_host *tvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
2871 rval = QLA_SUCCESS;
2872
2873 /* Try GID_PT to get device list, else GAN. */
Andrew Vasquez4b892582008-09-11 21:22:48 -07002874 swl = kcalloc(MAX_FIBRE_DEVICES, sizeof(sw_info_t), GFP_KERNEL);
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02002875 if (!swl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 /*EMPTY*/
2877 DEBUG2(printk("scsi(%ld): GID_PT allocations failed, fallback "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002878 "on GA_NXT\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002880 if (qla2x00_gid_pt(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 kfree(swl);
2882 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002883 } else if (qla2x00_gpn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 kfree(swl);
2885 swl = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002886 } else if (qla2x00_gnn_id(vha, swl) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 kfree(swl);
2888 swl = NULL;
Andrew Vasqueze5896bd2008-07-10 16:55:52 -07002889 } else if (ql2xiidmaenable &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002890 qla2x00_gfpn_id(vha, swl) == QLA_SUCCESS) {
2891 qla2x00_gpsc(vha, swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 }
2893 }
2894 swl_idx = 0;
2895
2896 /* Allocate temporary fcport for any new fcports discovered. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002897 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 if (new_fcport == NULL) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08002899 kfree(swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 return (QLA_MEMORY_ALLOC_FAILED);
2901 }
2902 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 /* Set start port ID scan at adapter ID. */
2904 first_dev = 1;
2905 last_dev = 0;
2906
2907 /* Starting free loop ID. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002908 loop_id = ha->min_external_loopid;
2909 for (; loop_id <= ha->max_loop_id; loop_id++) {
2910 if (qla2x00_is_reserved_id(vha, loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 continue;
2912
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08002913 if (atomic_read(&vha->loop_down_timer) ||
2914 LOOP_TRANSITION(vha)) {
2915 atomic_set(&vha->loop_down_timer, 0);
2916 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
2917 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 break;
Andrew Vasquezbb2d52b2010-02-18 10:07:27 -08002919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
2921 if (swl != NULL) {
2922 if (last_dev) {
2923 wrap.b24 = new_fcport->d_id.b24;
2924 } else {
2925 new_fcport->d_id.b24 = swl[swl_idx].d_id.b24;
2926 memcpy(new_fcport->node_name,
2927 swl[swl_idx].node_name, WWN_SIZE);
2928 memcpy(new_fcport->port_name,
2929 swl[swl_idx].port_name, WWN_SIZE);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002930 memcpy(new_fcport->fabric_port_name,
2931 swl[swl_idx].fabric_port_name, WWN_SIZE);
2932 new_fcport->fp_speed = swl[swl_idx].fp_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
2934 if (swl[swl_idx].d_id.b.rsvd_1 != 0) {
2935 last_dev = 1;
2936 }
2937 swl_idx++;
2938 }
2939 } else {
2940 /* Send GA_NXT to the switch */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002941 rval = qla2x00_ga_nxt(vha, new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 if (rval != QLA_SUCCESS) {
2943 qla_printk(KERN_WARNING, ha,
2944 "SNS scan failed -- assuming zero-entry "
2945 "result...\n");
2946 list_for_each_entry_safe(fcport, fcptemp,
2947 new_fcports, list) {
2948 list_del(&fcport->list);
2949 kfree(fcport);
2950 }
2951 rval = QLA_SUCCESS;
2952 break;
2953 }
2954 }
2955
2956 /* If wrap on switch device list, exit. */
2957 if (first_dev) {
2958 wrap.b24 = new_fcport->d_id.b24;
2959 first_dev = 0;
2960 } else if (new_fcport->d_id.b24 == wrap.b24) {
2961 DEBUG2(printk("scsi(%ld): device wrap (%02x%02x%02x)\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002962 vha->host_no, new_fcport->d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 new_fcport->d_id.b.area, new_fcport->d_id.b.al_pa));
2964 break;
2965 }
2966
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002967 /* Bypass if same physical adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002968 if (new_fcport->d_id.b24 == base_vha->d_id.b24)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 continue;
2970
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002971 /* Bypass virtual ports of the same host. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002972 found = 0;
2973 if (ha->num_vhosts) {
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08002974 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002975 if (new_fcport->d_id.b24 == vp->d_id.b24) {
2976 found = 1;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002977 break;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002978 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002979 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002980 if (found)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002981 continue;
2982 }
2983
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07002984 /* Bypass if same domain and area of adapter. */
2985 if (((new_fcport->d_id.b24 & 0xffff00) ==
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002986 (vha->d_id.b24 & 0xffff00)) && ha->current_topology ==
Andrew Vasquezf7d289f2005-08-26 19:08:40 -07002987 ISP_CFG_FL)
2988 continue;
2989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 /* Bypass reserved domain fields. */
2991 if ((new_fcport->d_id.b.domain & 0xf0) == 0xf0)
2992 continue;
2993
2994 /* Locate matching device in database. */
2995 found = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002996 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 if (memcmp(new_fcport->port_name, fcport->port_name,
2998 WWN_SIZE))
2999 continue;
3000
3001 found++;
3002
Andrew Vasquezd8b45212006-10-02 12:00:43 -07003003 /* Update port state. */
3004 memcpy(fcport->fabric_port_name,
3005 new_fcport->fabric_port_name, WWN_SIZE);
3006 fcport->fp_speed = new_fcport->fp_speed;
3007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 /*
3009 * If address the same and state FCS_ONLINE, nothing
3010 * changed.
3011 */
3012 if (fcport->d_id.b24 == new_fcport->d_id.b24 &&
3013 atomic_read(&fcport->state) == FCS_ONLINE) {
3014 break;
3015 }
3016
3017 /*
3018 * If device was not a fabric device before.
3019 */
3020 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0) {
3021 fcport->d_id.b24 = new_fcport->d_id.b24;
3022 fcport->loop_id = FC_NO_LOOP_ID;
3023 fcport->flags |= (FCF_FABRIC_DEVICE |
3024 FCF_LOGIN_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 break;
3026 }
3027
3028 /*
3029 * Port ID changed or device was marked to be updated;
3030 * Log it out if still logged in and mark it for
3031 * relogin later.
3032 */
3033 fcport->d_id.b24 = new_fcport->d_id.b24;
3034 fcport->flags |= FCF_LOGIN_NEEDED;
3035 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003036 (fcport->flags & FCF_FCP2_DEVICE) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 fcport->port_type != FCT_INITIATOR &&
3038 fcport->port_type != FCT_BROADCAST) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003039 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003040 fcport->d_id.b.domain, fcport->d_id.b.area,
3041 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 fcport->loop_id = FC_NO_LOOP_ID;
3043 }
3044
3045 break;
3046 }
3047
3048 if (found)
3049 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 /* If device was not in our fcports list, then add it. */
3051 list_add_tail(&new_fcport->list, new_fcports);
3052
3053 /* Allocate a new replacement fcport. */
3054 nxt_d_id.b24 = new_fcport->d_id.b24;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003055 new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 if (new_fcport == NULL) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003057 kfree(swl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 return (QLA_MEMORY_ALLOC_FAILED);
3059 }
3060 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
3061 new_fcport->d_id.b24 = nxt_d_id.b24;
3062 }
3063
Jesper Juhlc9475cb2005-11-07 01:01:26 -08003064 kfree(swl);
3065 kfree(new_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 return (rval);
3068}
3069
3070/*
3071 * qla2x00_find_new_loop_id
3072 * Scan through our port list and find a new usable loop ID.
3073 *
3074 * Input:
3075 * ha: adapter state pointer.
3076 * dev: port structure pointer.
3077 *
3078 * Returns:
3079 * qla2x00 local function return status code.
3080 *
3081 * Context:
3082 * Kernel context.
3083 */
Adrian Bunk413975a2006-06-30 02:33:06 -07003084static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003085qla2x00_find_new_loop_id(scsi_qla_host_t *vha, fc_port_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
3087 int rval;
3088 int found;
3089 fc_port_t *fcport;
3090 uint16_t first_loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003091 struct qla_hw_data *ha = vha->hw;
3092 struct scsi_qla_host *vp;
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003093 struct scsi_qla_host *tvp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
3095 rval = QLA_SUCCESS;
3096
3097 /* Save starting loop ID. */
3098 first_loop_id = dev->loop_id;
3099
3100 for (;;) {
3101 /* Skip loop ID if already used by adapter. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003102 if (dev->loop_id == vha->loop_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 dev->loop_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105 /* Skip reserved loop IDs. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003106 while (qla2x00_is_reserved_id(vha, dev->loop_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 dev->loop_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
3109 /* Reset loop ID if passed the end. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003110 if (dev->loop_id > ha->max_loop_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 /* first loop ID. */
3112 dev->loop_id = ha->min_external_loopid;
3113 }
3114
3115 /* Check for loop ID being already in use. */
3116 found = 0;
3117 fcport = NULL;
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003118 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003119 list_for_each_entry(fcport, &vp->vp_fcports, list) {
3120 if (fcport->loop_id == dev->loop_id &&
3121 fcport != dev) {
3122 /* ID possibly in use */
3123 found++;
3124 break;
3125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003127 if (found)
3128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 }
3130
3131 /* If not in use then it is free to use. */
3132 if (!found) {
3133 break;
3134 }
3135
3136 /* ID in use. Try next value. */
3137 dev->loop_id++;
3138
3139 /* If wrap around. No free ID to use. */
3140 if (dev->loop_id == first_loop_id) {
3141 dev->loop_id = FC_NO_LOOP_ID;
3142 rval = QLA_FUNCTION_FAILED;
3143 break;
3144 }
3145 }
3146
3147 return (rval);
3148}
3149
3150/*
3151 * qla2x00_device_resync
3152 * Marks devices in the database that needs resynchronization.
3153 *
3154 * Input:
3155 * ha = adapter block pointer.
3156 *
3157 * Context:
3158 * Kernel context.
3159 */
3160static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003161qla2x00_device_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162{
3163 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 uint32_t mask;
3165 fc_port_t *fcport;
3166 uint32_t rscn_entry;
3167 uint8_t rscn_out_iter;
3168 uint8_t format;
3169 port_id_t d_id;
3170
3171 rval = QLA_RSCNS_HANDLED;
3172
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003173 while (vha->rscn_out_ptr != vha->rscn_in_ptr ||
3174 vha->flags.rscn_queue_overflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003176 rscn_entry = vha->rscn_queue[vha->rscn_out_ptr];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 format = MSB(MSW(rscn_entry));
3178 d_id.b.domain = LSB(MSW(rscn_entry));
3179 d_id.b.area = MSB(LSW(rscn_entry));
3180 d_id.b.al_pa = LSB(LSW(rscn_entry));
3181
3182 DEBUG(printk("scsi(%ld): RSCN queue entry[%d] = "
3183 "[%02x/%02x%02x%02x].\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003184 vha->host_no, vha->rscn_out_ptr, format, d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 d_id.b.area, d_id.b.al_pa));
3186
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003187 vha->rscn_out_ptr++;
3188 if (vha->rscn_out_ptr == MAX_RSCN_COUNT)
3189 vha->rscn_out_ptr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
3191 /* Skip duplicate entries. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003192 for (rscn_out_iter = vha->rscn_out_ptr;
3193 !vha->flags.rscn_queue_overflow &&
3194 rscn_out_iter != vha->rscn_in_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 rscn_out_iter = (rscn_out_iter ==
3196 (MAX_RSCN_COUNT - 1)) ? 0: rscn_out_iter + 1) {
3197
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003198 if (rscn_entry != vha->rscn_queue[rscn_out_iter])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 break;
3200
3201 DEBUG(printk("scsi(%ld): Skipping duplicate RSCN queue "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003202 "entry found at [%d].\n", vha->host_no,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 rscn_out_iter));
3204
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003205 vha->rscn_out_ptr = rscn_out_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 }
3207
3208 /* Queue overflow, set switch default case. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003209 if (vha->flags.rscn_queue_overflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 DEBUG(printk("scsi(%ld): device_resync: rscn "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003211 "overflow.\n", vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213 format = 3;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003214 vha->flags.rscn_queue_overflow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 }
3216
3217 switch (format) {
3218 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 mask = 0xffffff;
3220 break;
3221 case 1:
3222 mask = 0xffff00;
3223 break;
3224 case 2:
3225 mask = 0xff0000;
3226 break;
3227 default:
3228 mask = 0x0;
3229 d_id.b24 = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003230 vha->rscn_out_ptr = vha->rscn_in_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 break;
3232 }
3233
3234 rval = QLA_SUCCESS;
3235
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003236 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
3238 (fcport->d_id.b24 & mask) != d_id.b24 ||
3239 fcport->port_type == FCT_BROADCAST)
3240 continue;
3241
3242 if (atomic_read(&fcport->state) == FCS_ONLINE) {
3243 if (format != 3 ||
3244 fcport->port_type != FCT_INITIATOR) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003245 qla2x00_mark_device_lost(vha, fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003246 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 }
3248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 }
3250 }
3251 return (rval);
3252}
3253
3254/*
3255 * qla2x00_fabric_dev_login
3256 * Login fabric target device and update FC port database.
3257 *
3258 * Input:
3259 * ha: adapter state pointer.
3260 * fcport: port structure list pointer.
3261 * next_loopid: contains value of a new loop ID that can be used
3262 * by the next login attempt.
3263 *
3264 * Returns:
3265 * qla2x00 local function return status code.
3266 *
3267 * Context:
3268 * Kernel context.
3269 */
3270static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003271qla2x00_fabric_dev_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 uint16_t *next_loopid)
3273{
3274 int rval;
3275 int retry;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003276 uint8_t opts;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003277 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
3279 rval = QLA_SUCCESS;
3280 retry = 0;
3281
Andrew Vasquezac280b62009-08-20 11:06:05 -07003282 if (IS_ALOGIO_CAPABLE(ha)) {
3283 rval = qla2x00_post_async_login_work(vha, fcport, NULL);
3284 if (!rval)
3285 return rval;
3286 }
3287
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003288 rval = qla2x00_fabric_login(vha, fcport, next_loopid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 if (rval == QLA_SUCCESS) {
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003290 /* Send an ADISC to FCP2 devices.*/
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003291 opts = 0;
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003292 if (fcport->flags & FCF_FCP2_DEVICE)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003293 opts |= BIT_1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003294 rval = qla2x00_get_port_database(vha, fcport, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 if (rval != QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003296 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003297 fcport->d_id.b.domain, fcport->d_id.b.area,
3298 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003299 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003301 qla2x00_update_fcport(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 }
3303 }
3304
3305 return (rval);
3306}
3307
3308/*
3309 * qla2x00_fabric_login
3310 * Issue fabric login command.
3311 *
3312 * Input:
3313 * ha = adapter block pointer.
3314 * device = pointer to FC device type structure.
3315 *
3316 * Returns:
3317 * 0 - Login successfully
3318 * 1 - Login failed
3319 * 2 - Initiator device
3320 * 3 - Fatal error
3321 */
3322int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003323qla2x00_fabric_login(scsi_qla_host_t *vha, fc_port_t *fcport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 uint16_t *next_loopid)
3325{
3326 int rval;
3327 int retry;
3328 uint16_t tmp_loopid;
3329 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003330 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
3332 retry = 0;
3333 tmp_loopid = 0;
3334
3335 for (;;) {
3336 DEBUG(printk("scsi(%ld): Trying Fabric Login w/loop id 0x%04x "
3337 "for port %02x%02x%02x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003338 vha->host_no, fcport->loop_id, fcport->d_id.b.domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 fcport->d_id.b.area, fcport->d_id.b.al_pa));
3340
3341 /* Login fcport on switch. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003342 ha->isp_ops->fabric_login(vha, fcport->loop_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 fcport->d_id.b.domain, fcport->d_id.b.area,
3344 fcport->d_id.b.al_pa, mb, BIT_0);
3345 if (mb[0] == MBS_PORT_ID_USED) {
3346 /*
3347 * Device has another loop ID. The firmware team
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003348 * recommends the driver perform an implicit login with
3349 * the specified ID again. The ID we just used is save
3350 * here so we return with an ID that can be tried by
3351 * the next login.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 */
3353 retry++;
3354 tmp_loopid = fcport->loop_id;
3355 fcport->loop_id = mb[1];
3356
3357 DEBUG(printk("Fabric Login: port in use - next "
3358 "loop id=0x%04x, port Id=%02x%02x%02x.\n",
3359 fcport->loop_id, fcport->d_id.b.domain,
3360 fcport->d_id.b.area, fcport->d_id.b.al_pa));
3361
3362 } else if (mb[0] == MBS_COMMAND_COMPLETE) {
3363 /*
3364 * Login succeeded.
3365 */
3366 if (retry) {
3367 /* A retry occurred before. */
3368 *next_loopid = tmp_loopid;
3369 } else {
3370 /*
3371 * No retry occurred before. Just increment the
3372 * ID value for next login.
3373 */
3374 *next_loopid = (fcport->loop_id + 1);
3375 }
3376
3377 if (mb[1] & BIT_0) {
3378 fcport->port_type = FCT_INITIATOR;
3379 } else {
3380 fcport->port_type = FCT_TARGET;
3381 if (mb[1] & BIT_1) {
Santosh Vernekar8474f3a2009-08-25 11:36:16 -07003382 fcport->flags |= FCF_FCP2_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 }
3384 }
3385
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07003386 if (mb[10] & BIT_0)
3387 fcport->supported_classes |= FC_COS_CLASS2;
3388 if (mb[10] & BIT_1)
3389 fcport->supported_classes |= FC_COS_CLASS3;
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 rval = QLA_SUCCESS;
3392 break;
3393 } else if (mb[0] == MBS_LOOP_ID_USED) {
3394 /*
3395 * Loop ID already used, try next loop ID.
3396 */
3397 fcport->loop_id++;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003398 rval = qla2x00_find_new_loop_id(vha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 if (rval != QLA_SUCCESS) {
3400 /* Ran out of loop IDs to use */
3401 break;
3402 }
3403 } else if (mb[0] == MBS_COMMAND_ERROR) {
3404 /*
3405 * Firmware possibly timed out during login. If NO
3406 * retries are left to do then the device is declared
3407 * dead.
3408 */
3409 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003410 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003411 fcport->d_id.b.domain, fcport->d_id.b.area,
3412 fcport->d_id.b.al_pa);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003413 qla2x00_mark_device_lost(vha, fcport, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
3415 rval = 1;
3416 break;
3417 } else {
3418 /*
3419 * unrecoverable / not handled error
3420 */
3421 DEBUG2(printk("%s(%ld): failed=%x port_id=%02x%02x%02x "
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003422 "loop_id=%x jiffies=%lx.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003423 __func__, vha->host_no, mb[0],
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 fcport->d_id.b.domain, fcport->d_id.b.area,
3425 fcport->d_id.b.al_pa, fcport->loop_id, jiffies));
3426
3427 *next_loopid = fcport->loop_id;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003428 ha->isp_ops->fabric_logout(vha, fcport->loop_id,
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07003429 fcport->d_id.b.domain, fcport->d_id.b.area,
3430 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 fcport->loop_id = FC_NO_LOOP_ID;
Andrew Vasquez0eedfcf2005-10-27 11:09:38 -07003432 fcport->login_retry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
3434 rval = 3;
3435 break;
3436 }
3437 }
3438
3439 return (rval);
3440}
3441
3442/*
3443 * qla2x00_local_device_login
3444 * Issue local device login command.
3445 *
3446 * Input:
3447 * ha = adapter block pointer.
3448 * loop_id = loop id of device to login to.
3449 *
3450 * Returns (Where's the #define!!!!):
3451 * 0 - Login successfully
3452 * 1 - Login failed
3453 * 3 - Fatal error
3454 */
3455int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003456qla2x00_local_device_login(scsi_qla_host_t *vha, fc_port_t *fcport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457{
3458 int rval;
3459 uint16_t mb[MAILBOX_REGISTER_COUNT];
3460
3461 memset(mb, 0, sizeof(mb));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003462 rval = qla2x00_login_local_device(vha, fcport, mb, BIT_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 if (rval == QLA_SUCCESS) {
3464 /* Interrogate mailbox registers for any errors */
3465 if (mb[0] == MBS_COMMAND_ERROR)
3466 rval = 1;
3467 else if (mb[0] == MBS_COMMAND_PARAMETER_ERROR)
3468 /* device not in PCB table */
3469 rval = 3;
3470 }
3471
3472 return (rval);
3473}
3474
3475/*
3476 * qla2x00_loop_resync
3477 * Resync with fibre channel devices.
3478 *
3479 * Input:
3480 * ha = adapter block pointer.
3481 *
3482 * Returns:
3483 * 0 = success
3484 */
3485int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003486qla2x00_loop_resync(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003488 int rval = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 uint32_t wait_time;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003490 struct req_que *req;
3491 struct rsp_que *rsp;
3492
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07003493 if (vha->hw->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07003494 req = vha->hw->req_q_map[0];
3495 else
3496 req = vha->req;
3497 rsp = req->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003499 atomic_set(&vha->loop_state, LOOP_UPDATE);
3500 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3501 if (vha->flags.online) {
3502 if (!(rval = qla2x00_fw_ready(vha))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 /* Wait at most MAX_TARGET RSCNs for a stable link. */
3504 wait_time = 256;
3505 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003506 atomic_set(&vha->loop_state, LOOP_UPDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003508 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003509 qla2x00_marker(vha, req, rsp, 0, 0,
3510 MK_SYNC_ALL);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003511 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
3513 /* Remap devices on Loop. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003514 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003516 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003518 } while (!atomic_read(&vha->loop_down_timer) &&
3519 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
3520 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
3521 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 }
3524
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003525 if (test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 return (QLA_FUNCTION_FAILED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003528 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530
3531 return (rval);
3532}
3533
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534void
Andrew Vasquez67becc02009-08-25 11:36:20 -07003535qla2x00_update_fcports(scsi_qla_host_t *base_vha)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003536{
3537 fc_port_t *fcport;
Andrew Vasquez67becc02009-08-25 11:36:20 -07003538 struct scsi_qla_host *tvp, *vha;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003539
3540 /* Go with deferred removal of rport references. */
Andrew Vasquez67becc02009-08-25 11:36:20 -07003541 list_for_each_entry_safe(vha, tvp, &base_vha->hw->vp_list, list)
3542 list_for_each_entry(fcport, &vha->vp_fcports, list)
3543 if (fcport && fcport->drport &&
3544 atomic_read(&fcport->state) != FCS_UNCONFIGURED)
3545 qla2x00_rport_del(fcport);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003546}
3547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548/*
3549* qla2x00_abort_isp
3550* Resets ISP and aborts all outstanding commands.
3551*
3552* Input:
3553* ha = adapter block pointer.
3554*
3555* Returns:
3556* 0 = success
3557*/
3558int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003559qla2x00_abort_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560{
Andrew Vasquez476e8972006-08-23 14:54:55 -07003561 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 uint8_t status = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003563 struct qla_hw_data *ha = vha->hw;
3564 struct scsi_qla_host *vp;
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003565 struct scsi_qla_host *tvp;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003566 struct req_que *req = ha->req_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003568 if (vha->flags.online) {
3569 vha->flags.online = 0;
Lalit Chandivade2533cf62009-03-24 09:08:07 -07003570 ha->flags.chip_reset_done = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003571 clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07003572 ha->qla_stats.total_isp_aborts++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
3574 qla_printk(KERN_INFO, ha,
3575 "Performing ISP error recovery - ha= %p.\n", ha);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003576 ha->isp_ops->reset_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003578 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
3579 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
3580 atomic_set(&vha->loop_state, LOOP_DOWN);
3581 qla2x00_mark_all_devices_lost(vha, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003583 if (!atomic_read(&vha->loop_down_timer))
3584 atomic_set(&vha->loop_down_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 LOOP_DOWN_TIME);
3586 }
3587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 /* Requeue all commands in outstanding command list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003589 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
Andrew Vasquez85880802009-12-15 21:29:46 -08003591 if (unlikely(pci_channel_offline(ha->pdev) &&
3592 ha->flags.pci_channel_io_perm_failure)) {
3593 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3594 status = 0;
3595 return status;
3596 }
3597
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003598 ha->isp_ops->get_flash_version(vha, req->ring);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003599
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003600 ha->isp_ops->nvram_config(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003602 if (!qla2x00_restart_isp(vha)) {
3603 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003605 if (!atomic_read(&vha->loop_down_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 /*
3607 * Issue marker command only when we are going
3608 * to start the I/O .
3609 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003610 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 }
3612
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003613 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Andrew Vasquezfd34f552007-07-19 15:06:00 -07003615 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003617 ha->isp_abort_cnt = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003618 clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Andrew Vasquez476e8972006-08-23 14:54:55 -07003619
Lalit Chandivade29c53972009-10-13 15:16:47 -07003620 if (IS_QLA81XX(ha))
3621 qla2x00_get_fw_version(vha,
3622 &ha->fw_major_version,
3623 &ha->fw_minor_version,
3624 &ha->fw_subminor_version,
3625 &ha->fw_attributes, &ha->fw_memory_size,
3626 ha->mpi_version, &ha->mpi_capabilities,
3627 ha->phy_version);
3628
Andrew Vasquezdf613b92008-01-17 09:02:17 -08003629 if (ha->fce) {
3630 ha->flags.fce_enabled = 1;
3631 memset(ha->fce, 0,
3632 fce_calc_size(ha->fce_bufs));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003633 rval = qla2x00_enable_fce_trace(vha,
Andrew Vasquezdf613b92008-01-17 09:02:17 -08003634 ha->fce_dma, ha->fce_bufs, ha->fce_mb,
3635 &ha->fce_bufs);
3636 if (rval) {
3637 qla_printk(KERN_WARNING, ha,
3638 "Unable to reinitialize FCE "
3639 "(%d).\n", rval);
3640 ha->flags.fce_enabled = 0;
3641 }
3642 }
Andrew Vasquez436a7b12008-07-10 16:55:54 -07003643
3644 if (ha->eft) {
3645 memset(ha->eft, 0, EFT_SIZE);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003646 rval = qla2x00_enable_eft_trace(vha,
Andrew Vasquez436a7b12008-07-10 16:55:54 -07003647 ha->eft_dma, EFT_NUM_BUFFERS);
3648 if (rval) {
3649 qla_printk(KERN_WARNING, ha,
3650 "Unable to reinitialize EFT "
3651 "(%d).\n", rval);
3652 }
3653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 } else { /* failed the ISP abort */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003655 vha->flags.online = 1;
3656 if (test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 if (ha->isp_abort_cnt == 0) {
3658 qla_printk(KERN_WARNING, ha,
3659 "ISP error recovery failed - "
3660 "board disabled\n");
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003661 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 * The next call disables the board
3663 * completely.
3664 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003665 ha->isp_ops->reset_adapter(vha);
3666 vha->flags.online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 clear_bit(ISP_ABORT_RETRY,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003668 &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 status = 0;
3670 } else { /* schedule another ISP abort */
3671 ha->isp_abort_cnt--;
3672 DEBUG(printk("qla%ld: ISP abort - "
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003673 "retry remaining %d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003674 vha->host_no, ha->isp_abort_cnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 status = 1;
3676 }
3677 } else {
3678 ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
3679 DEBUG(printk("qla2x00(%ld): ISP error recovery "
3680 "- retrying (%d) more times\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003681 vha->host_no, ha->isp_abort_cnt));
3682 set_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 status = 1;
3684 }
3685 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07003686
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 }
3688
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003689 if (!status) {
3690 DEBUG(printk(KERN_INFO
3691 "qla2x00_abort_isp(%ld): succeeded.\n",
3692 vha->host_no));
Anirban Chakrabortyee546b62009-03-05 11:07:02 -08003693 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003694 if (vp->vp_idx)
3695 qla2x00_vp_abort_isp(vp);
3696 }
3697 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 qla_printk(KERN_INFO, ha,
3699 "qla2x00_abort_isp: **** FAILED ****\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 }
3701
3702 return(status);
3703}
3704
3705/*
3706* qla2x00_restart_isp
3707* restarts the ISP after a reset
3708*
3709* Input:
3710* ha = adapter block pointer.
3711*
3712* Returns:
3713* 0 = success
3714*/
3715static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003716qla2x00_restart_isp(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717{
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08003718 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 uint32_t wait_time;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003720 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003721 struct req_que *req = ha->req_q_map[0];
3722 struct rsp_que *rsp = ha->rsp_q_map[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
3724 /* If firmware needs to be loaded */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003725 if (qla2x00_isp_firmware(vha)) {
3726 vha->flags.online = 0;
3727 status = ha->isp_ops->chip_diag(vha);
3728 if (!status)
3729 status = qla2x00_setup_chip(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 }
3731
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003732 if (!status && !(status = qla2x00_init_rings(vha))) {
3733 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -07003734 ha->flags.chip_reset_done = 1;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003735 /* Initialize the queues in use */
3736 qla25xx_init_queues(ha);
3737
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003738 status = qla2x00_fw_ready(vha);
3739 if (!status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 DEBUG(printk("%s(): Start configure loop, "
Andrew Vasquez744f11fd2006-06-23 16:11:05 -07003741 "status = %d\n", __func__, status));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003742
3743 /* Issue a marker after FW becomes ready. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003744 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003745
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003746 vha->flags.online = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 /* Wait at most MAX_TARGET RSCNs for a stable link. */
3748 wait_time = 256;
3749 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003750 clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
3751 qla2x00_configure_loop(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 wait_time--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003753 } while (!atomic_read(&vha->loop_down_timer) &&
3754 !(test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
3755 && wait_time && (test_bit(LOOP_RESYNC_NEEDED,
3756 &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 }
3758
3759 /* if no cable then assume it's good */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003760 if ((vha->device_flags & DFLG_NO_CABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 status = 0;
3762
3763 DEBUG(printk("%s(): Configure loop done, status = 0x%x\n",
3764 __func__,
Andrew Vasquez744f11fd2006-06-23 16:11:05 -07003765 status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 }
3767 return (status);
3768}
3769
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003770static int
3771qla25xx_init_queues(struct qla_hw_data *ha)
3772{
3773 struct rsp_que *rsp = NULL;
3774 struct req_que *req = NULL;
3775 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
3776 int ret = -1;
3777 int i;
3778
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07003779 for (i = 1; i < ha->max_rsp_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003780 rsp = ha->rsp_q_map[i];
3781 if (rsp) {
3782 rsp->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08003783 ret = qla25xx_init_rsp_que(base_vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003784 if (ret != QLA_SUCCESS)
3785 DEBUG2_17(printk(KERN_WARNING
3786 "%s Rsp que:%d init failed\n", __func__,
3787 rsp->id));
3788 else
3789 DEBUG2_17(printk(KERN_INFO
3790 "%s Rsp que:%d inited\n", __func__,
3791 rsp->id));
3792 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07003793 }
3794 for (i = 1; i < ha->max_req_queues; i++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003795 req = ha->req_q_map[i];
3796 if (req) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003797 /* Clear outstanding commands array. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003798 req->options &= ~BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -08003799 ret = qla25xx_init_req_que(base_vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003800 if (ret != QLA_SUCCESS)
3801 DEBUG2_17(printk(KERN_WARNING
3802 "%s Req que:%d init failed\n", __func__,
3803 req->id));
3804 else
3805 DEBUG2_17(printk(KERN_WARNING
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08003806 "%s Req que:%d inited\n", __func__,
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003807 req->id));
3808 }
3809 }
3810 return ret;
3811}
3812
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813/*
3814* qla2x00_reset_adapter
3815* Reset adapter.
3816*
3817* Input:
3818* ha = adapter block pointer.
3819*/
Andrew Vasquezabbd8872005-07-06 10:30:05 -07003820void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003821qla2x00_reset_adapter(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822{
3823 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003824 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -07003825 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003827 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07003828 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 spin_lock_irqsave(&ha->hardware_lock, flags);
3831 WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
3832 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
3833 WRT_REG_WORD(&reg->hccr, HCCR_RELEASE_RISC);
3834 RD_REG_WORD(&reg->hccr); /* PCI Posting. */
3835 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3836}
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003837
3838void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003839qla24xx_reset_adapter(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003840{
3841 unsigned long flags = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003842 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003843 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
3844
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003845 vha->flags.online = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07003846 ha->isp_ops->disable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003847
3848 spin_lock_irqsave(&ha->hardware_lock, flags);
3849 WRT_REG_DWORD(&reg->hccr, HCCRX_SET_RISC_RESET);
3850 RD_REG_DWORD(&reg->hccr);
3851 WRT_REG_DWORD(&reg->hccr, HCCRX_REL_RISC_PAUSE);
3852 RD_REG_DWORD(&reg->hccr);
3853 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez09ff36d2009-01-22 09:45:30 -08003854
3855 if (IS_NOPOLLING_TYPE(ha))
3856 ha->isp_ops->enable_intrs(ha);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003857}
3858
David Miller4e08df32007-04-16 12:37:43 -07003859/* On sparc systems, obtain port and node WWN from firmware
3860 * properties.
3861 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003862static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t *vha,
3863 struct nvram_24xx *nv)
David Miller4e08df32007-04-16 12:37:43 -07003864{
3865#ifdef CONFIG_SPARC
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003866 struct qla_hw_data *ha = vha->hw;
David Miller4e08df32007-04-16 12:37:43 -07003867 struct pci_dev *pdev = ha->pdev;
David S. Miller15576bc2007-05-08 00:36:49 -07003868 struct device_node *dp = pci_device_to_OF_node(pdev);
3869 const u8 *val;
David Miller4e08df32007-04-16 12:37:43 -07003870 int len;
3871
3872 val = of_get_property(dp, "port-wwn", &len);
3873 if (val && len >= WWN_SIZE)
3874 memcpy(nv->port_name, val, WWN_SIZE);
3875
3876 val = of_get_property(dp, "node-wwn", &len);
3877 if (val && len >= WWN_SIZE)
3878 memcpy(nv->node_name, val, WWN_SIZE);
3879#endif
3880}
3881
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003882int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003883qla24xx_nvram_config(scsi_qla_host_t *vha)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003884{
David Miller4e08df32007-04-16 12:37:43 -07003885 int rval;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003886 struct init_cb_24xx *icb;
3887 struct nvram_24xx *nv;
3888 uint32_t *dptr;
3889 uint8_t *dptr1, *dptr2;
3890 uint32_t chksum;
3891 uint16_t cnt;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003892 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003893
David Miller4e08df32007-04-16 12:37:43 -07003894 rval = QLA_SUCCESS;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003895 icb = (struct init_cb_24xx *)ha->init_cb;
Seokmann Ju281afe12007-07-26 13:43:34 -07003896 nv = ha->nvram;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003897
3898 /* Determine NVRAM starting address. */
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07003899 if (ha->flags.port0) {
3900 ha->nvram_base = FA_NVRAM_FUNC0_ADDR;
3901 ha->vpd_base = FA_NVRAM_VPD0_ADDR;
3902 } else {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003903 ha->nvram_base = FA_NVRAM_FUNC1_ADDR;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -08003904 ha->vpd_base = FA_NVRAM_VPD1_ADDR;
3905 }
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07003906 ha->nvram_size = sizeof(struct nvram_24xx);
3907 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003908
Seokmann Ju281afe12007-07-26 13:43:34 -07003909 /* Get VPD data into cache */
3910 ha->vpd = ha->nvram + VPD_OFFSET;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003911 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd,
Seokmann Ju281afe12007-07-26 13:43:34 -07003912 ha->nvram_base - FA_NVRAM_FUNC0_ADDR, FA_NVRAM_VPD_SIZE * 4);
3913
3914 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003915 dptr = (uint32_t *)nv;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003916 ha->isp_ops->read_nvram(vha, (uint8_t *)dptr, ha->nvram_base,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003917 ha->nvram_size);
3918 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
3919 chksum += le32_to_cpu(*dptr++);
3920
Andrew Vasquez76403352009-04-06 22:33:39 -07003921 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Seokmann Ju281afe12007-07-26 13:43:34 -07003922 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003923
3924 /* Bad NVRAM data, set defaults parameters. */
3925 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
3926 || nv->id[3] != ' ' ||
3927 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
3928 /* Reset NVRAM data. */
3929 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
3930 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
3931 le16_to_cpu(nv->nvram_version));
David Miller4e08df32007-04-16 12:37:43 -07003932 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
3933 "invalid -- WWPN) defaults.\n");
3934
3935 /*
3936 * Set default initialization control block.
3937 */
3938 memset(nv, 0, ha->nvram_size);
3939 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
3940 nv->version = __constant_cpu_to_le16(ICB_VERSION);
3941 nv->frame_payload_size = __constant_cpu_to_le16(2048);
3942 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
3943 nv->exchange_count = __constant_cpu_to_le16(0);
3944 nv->hard_address = __constant_cpu_to_le16(124);
3945 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07003946 nv->port_name[1] = 0x00 + ha->port_no;
David Miller4e08df32007-04-16 12:37:43 -07003947 nv->port_name[2] = 0x00;
3948 nv->port_name[3] = 0xe0;
3949 nv->port_name[4] = 0x8b;
3950 nv->port_name[5] = 0x1c;
3951 nv->port_name[6] = 0x55;
3952 nv->port_name[7] = 0x86;
3953 nv->node_name[0] = 0x20;
3954 nv->node_name[1] = 0x00;
3955 nv->node_name[2] = 0x00;
3956 nv->node_name[3] = 0xe0;
3957 nv->node_name[4] = 0x8b;
3958 nv->node_name[5] = 0x1c;
3959 nv->node_name[6] = 0x55;
3960 nv->node_name[7] = 0x86;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003961 qla24xx_nvram_wwn_from_ofw(vha, nv);
David Miller4e08df32007-04-16 12:37:43 -07003962 nv->login_retry_count = __constant_cpu_to_le16(8);
3963 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
3964 nv->login_timeout = __constant_cpu_to_le16(0);
3965 nv->firmware_options_1 =
3966 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
3967 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
3968 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
3969 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
3970 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
3971 nv->efi_parameters = __constant_cpu_to_le32(0);
3972 nv->reset_delay = 5;
3973 nv->max_luns_per_target = __constant_cpu_to_le16(128);
3974 nv->port_down_retry_count = __constant_cpu_to_le16(30);
3975 nv->link_down_timeout = __constant_cpu_to_le16(30);
3976
3977 rval = 1;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003978 }
3979
3980 /* Reset Initialization control block */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003981 memset(icb, 0, ha->init_cb_size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003982
3983 /* Copy 1st segment. */
3984 dptr1 = (uint8_t *)icb;
3985 dptr2 = (uint8_t *)&nv->version;
3986 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
3987 while (cnt--)
3988 *dptr1++ = *dptr2++;
3989
3990 icb->login_retry_count = nv->login_retry_count;
Andrew Vasquez3ea66e22006-06-23 16:11:27 -07003991 icb->link_down_on_nos = nv->link_down_on_nos;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07003992
3993 /* Copy 2nd segment. */
3994 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
3995 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
3996 cnt = (uint8_t *)&icb->reserved_3 -
3997 (uint8_t *)&icb->interrupt_delay_timer;
3998 while (cnt--)
3999 *dptr1++ = *dptr2++;
4000
4001 /*
4002 * Setup driver NVRAM options.
4003 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004004 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
Andrew Vasquez9bb9fcf2007-01-29 10:22:24 -08004005 "QLA2462");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004006
Andrew Vasquez5341e862006-05-17 15:09:16 -07004007 /* Use alternate WWN? */
4008 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
4009 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
4010 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
4011 }
4012
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004013 /* Prepare nodename */
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004014 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004015 /*
4016 * Firmware will apply the following mask if the nodename was
4017 * not provided.
4018 */
4019 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
4020 icb->node_name[0] &= 0xF0;
4021 }
4022
4023 /* Set host adapter parameters. */
4024 ha->flags.disable_risc_code_load = 0;
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08004025 ha->flags.enable_lip_reset = 0;
4026 ha->flags.enable_lip_full_login =
4027 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
4028 ha->flags.enable_target_reset =
4029 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004030 ha->flags.enable_led_scheme = 0;
Andrew Vasquezd4c760c2006-06-23 16:10:39 -07004031 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004032
Andrew Vasquezfd0e7e42006-05-17 15:09:11 -07004033 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
4034 (BIT_6 | BIT_5 | BIT_4)) >> 4;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004035
4036 memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
4037 sizeof(ha->fw_seriallink_options24));
4038
4039 /* save HBA serial number */
4040 ha->serial0 = icb->port_name[5];
4041 ha->serial1 = icb->port_name[6];
4042 ha->serial2 = icb->port_name[7];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004043 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
4044 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004045
andrew.vasquez@qlogic.combc8fb3c2006-01-13 17:05:42 -08004046 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4047
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004048 ha->retry_count = le16_to_cpu(nv->login_retry_count);
4049
4050 /* Set minimum login_timeout to 4 seconds. */
4051 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
4052 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
4053 if (le16_to_cpu(nv->login_timeout) < 4)
4054 nv->login_timeout = __constant_cpu_to_le16(4);
4055 ha->login_timeout = le16_to_cpu(nv->login_timeout);
Seokmann Juc6852c42008-04-24 15:21:29 -07004056 icb->login_timeout = nv->login_timeout;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004057
Andrew Vasquez00a537b2008-02-28 14:06:11 -08004058 /* Set minimum RATOV to 100 tenths of a second. */
4059 ha->r_a_tov = 100;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004060
4061 ha->loop_reset_delay = nv->reset_delay;
4062
4063 /* Link Down Timeout = 0:
4064 *
4065 * When Port Down timer expires we will start returning
4066 * I/O's to OS with "DID_NO_CONNECT".
4067 *
4068 * Link Down Timeout != 0:
4069 *
4070 * The driver waits for the link to come up after link down
4071 * before returning I/Os to OS with "DID_NO_CONNECT".
4072 */
4073 if (le16_to_cpu(nv->link_down_timeout) == 0) {
4074 ha->loop_down_abort_time =
4075 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
4076 } else {
4077 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
4078 ha->loop_down_abort_time =
4079 (LOOP_DOWN_TIME - ha->link_down_timeout);
4080 }
4081
4082 /* Need enough time to try and get the port back. */
4083 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
4084 if (qlport_down_retry)
4085 ha->port_down_retry_count = qlport_down_retry;
4086
4087 /* Set login_retry_count */
4088 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
4089 if (ha->port_down_retry_count ==
4090 le16_to_cpu(nv->port_down_retry_count) &&
4091 ha->port_down_retry_count > 3)
4092 ha->login_retry_count = ha->port_down_retry_count;
4093 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
4094 ha->login_retry_count = ha->port_down_retry_count;
4095 if (ql2xloginretrycount)
4096 ha->login_retry_count = ql2xloginretrycount;
4097
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004098 /* Enable ZIO. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004099 if (!vha->flags.init_done) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004100 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
4101 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
4102 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
4103 le16_to_cpu(icb->interrupt_delay_timer): 2;
4104 }
4105 icb->firmware_options_2 &= __constant_cpu_to_le32(
4106 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004107 vha->flags.process_response_queue = 0;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004108 if (ha->zio_mode != QLA_ZIO_DISABLED) {
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08004109 ha->zio_mode = QLA_ZIO_MODE_6;
4110
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004111 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer delay "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004112 "(%d us).\n", vha->host_no, ha->zio_mode,
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004113 ha->zio_timer * 100));
4114 qla_printk(KERN_INFO, ha,
4115 "ZIO mode %d enabled; timer delay (%d us).\n",
4116 ha->zio_mode, ha->zio_timer * 100);
4117
4118 icb->firmware_options_2 |= cpu_to_le32(
4119 (uint32_t)ha->zio_mode);
4120 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004121 vha->flags.process_response_queue = 1;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07004122 }
4123
David Miller4e08df32007-04-16 12:37:43 -07004124 if (rval) {
4125 DEBUG2_3(printk(KERN_WARNING
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004126 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
David Miller4e08df32007-04-16 12:37:43 -07004127 }
4128 return (rval);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004129}
4130
Adrian Bunk413975a2006-06-30 02:33:06 -07004131static int
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004132qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
4133 uint32_t faddr)
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004134{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004135 int rval = QLA_SUCCESS;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004136 int segments, fragment;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004137 uint32_t *dcode, dlen;
4138 uint32_t risc_addr;
4139 uint32_t risc_size;
4140 uint32_t i;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004141 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004142 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004143
4144 qla_printk(KERN_INFO, ha,
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004145 "FW: Loading from flash (%x)...\n", faddr);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004146
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004147 rval = QLA_SUCCESS;
4148
4149 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004150 dcode = (uint32_t *)req->ring;
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004151 *srisc_addr = 0;
4152
4153 /* Validate firmware image by checking version. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004154 qla24xx_read_flash_data(vha, dcode, faddr + 4, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004155 for (i = 0; i < 4; i++)
4156 dcode[i] = be32_to_cpu(dcode[i]);
4157 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
4158 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
4159 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
4160 dcode[3] == 0)) {
4161 qla_printk(KERN_WARNING, ha,
4162 "Unable to verify integrity of flash firmware image!\n");
4163 qla_printk(KERN_WARNING, ha,
4164 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
4165 dcode[1], dcode[2], dcode[3]);
4166
4167 return QLA_FUNCTION_FAILED;
4168 }
4169
4170 while (segments && rval == QLA_SUCCESS) {
4171 /* Read segment's load information. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004172 qla24xx_read_flash_data(vha, dcode, faddr, 4);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004173
4174 risc_addr = be32_to_cpu(dcode[2]);
4175 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
4176 risc_size = be32_to_cpu(dcode[3]);
4177
4178 fragment = 0;
4179 while (risc_size > 0 && rval == QLA_SUCCESS) {
4180 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
4181 if (dlen > risc_size)
4182 dlen = risc_size;
4183
4184 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
4185 "addr %x, number of dwords 0x%x, offset 0x%x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004186 vha->host_no, risc_addr, dlen, faddr));
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004187
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004188 qla24xx_read_flash_data(vha, dcode, faddr, dlen);
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004189 for (i = 0; i < dlen; i++)
4190 dcode[i] = swab32(dcode[i]);
4191
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004192 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004193 dlen);
4194 if (rval) {
4195 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004196 "segment %d of firmware\n", vha->host_no,
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004197 fragment));
4198 qla_printk(KERN_WARNING, ha,
4199 "[ERROR] Failed to load segment %d of "
4200 "firmware\n", fragment);
4201 break;
4202 }
4203
4204 faddr += dlen;
4205 risc_addr += dlen;
4206 risc_size -= dlen;
4207 fragment++;
4208 }
4209
4210 /* Next segment. */
4211 segments--;
4212 }
4213
4214 return rval;
4215}
4216
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004217#define QLA_FW_URL "ftp://ftp.qlogic.com/outgoing/linux/firmware/"
4218
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004219int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004220qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez54333832005-11-09 15:49:04 -08004221{
4222 int rval;
4223 int i, fragment;
4224 uint16_t *wcode, *fwcode;
4225 uint32_t risc_addr, risc_size, fwclen, wlen, *seg;
4226 struct fw_blob *blob;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004227 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004228 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez54333832005-11-09 15:49:04 -08004229
4230 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004231 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08004232 if (!blob) {
4233 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004234 qla_printk(KERN_ERR, ha, "Firmware images can be retrieved "
4235 "from: " QLA_FW_URL ".\n");
Andrew Vasquez54333832005-11-09 15:49:04 -08004236 return QLA_FUNCTION_FAILED;
4237 }
4238
4239 rval = QLA_SUCCESS;
4240
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004241 wcode = (uint16_t *)req->ring;
Andrew Vasquez54333832005-11-09 15:49:04 -08004242 *srisc_addr = 0;
4243 fwcode = (uint16_t *)blob->fw->data;
4244 fwclen = 0;
4245
4246 /* Validate firmware image by checking version. */
4247 if (blob->fw->size < 8 * sizeof(uint16_t)) {
4248 qla_printk(KERN_WARNING, ha,
4249 "Unable to verify integrity of firmware image (%Zd)!\n",
4250 blob->fw->size);
4251 goto fail_fw_integrity;
4252 }
4253 for (i = 0; i < 4; i++)
4254 wcode[i] = be16_to_cpu(fwcode[i + 4]);
4255 if ((wcode[0] == 0xffff && wcode[1] == 0xffff && wcode[2] == 0xffff &&
4256 wcode[3] == 0xffff) || (wcode[0] == 0 && wcode[1] == 0 &&
4257 wcode[2] == 0 && wcode[3] == 0)) {
4258 qla_printk(KERN_WARNING, ha,
4259 "Unable to verify integrity of firmware image!\n");
4260 qla_printk(KERN_WARNING, ha,
4261 "Firmware data: %04x %04x %04x %04x!\n", wcode[0],
4262 wcode[1], wcode[2], wcode[3]);
4263 goto fail_fw_integrity;
4264 }
4265
4266 seg = blob->segs;
4267 while (*seg && rval == QLA_SUCCESS) {
4268 risc_addr = *seg;
4269 *srisc_addr = *srisc_addr == 0 ? *seg : *srisc_addr;
4270 risc_size = be16_to_cpu(fwcode[3]);
4271
4272 /* Validate firmware image size. */
4273 fwclen += risc_size * sizeof(uint16_t);
4274 if (blob->fw->size < fwclen) {
4275 qla_printk(KERN_WARNING, ha,
4276 "Unable to verify integrity of firmware image "
4277 "(%Zd)!\n", blob->fw->size);
4278 goto fail_fw_integrity;
4279 }
4280
4281 fragment = 0;
4282 while (risc_size > 0 && rval == QLA_SUCCESS) {
4283 wlen = (uint16_t)(ha->fw_transfer_size >> 1);
4284 if (wlen > risc_size)
4285 wlen = risc_size;
4286
4287 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004288 "addr %x, number of words 0x%x.\n", vha->host_no,
Andrew Vasquez54333832005-11-09 15:49:04 -08004289 risc_addr, wlen));
4290
4291 for (i = 0; i < wlen; i++)
4292 wcode[i] = swab16(fwcode[i]);
4293
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004294 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
Andrew Vasquez54333832005-11-09 15:49:04 -08004295 wlen);
4296 if (rval) {
4297 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004298 "segment %d of firmware\n", vha->host_no,
Andrew Vasquez54333832005-11-09 15:49:04 -08004299 fragment));
4300 qla_printk(KERN_WARNING, ha,
4301 "[ERROR] Failed to load segment %d of "
4302 "firmware\n", fragment);
4303 break;
4304 }
4305
4306 fwcode += wlen;
4307 risc_addr += wlen;
4308 risc_size -= wlen;
4309 fragment++;
4310 }
4311
4312 /* Next segment. */
4313 seg++;
4314 }
4315 return rval;
4316
4317fail_fw_integrity:
4318 return QLA_FUNCTION_FAILED;
4319}
4320
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004321static int
4322qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004323{
4324 int rval;
4325 int segments, fragment;
4326 uint32_t *dcode, dlen;
4327 uint32_t risc_addr;
4328 uint32_t risc_size;
4329 uint32_t i;
Andrew Vasquez54333832005-11-09 15:49:04 -08004330 struct fw_blob *blob;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004331 uint32_t *fwcode, fwclen;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004332 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004333 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004334
Andrew Vasquez54333832005-11-09 15:49:04 -08004335 /* Load firmware blob. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004336 blob = qla2x00_request_firmware(vha);
Andrew Vasquez54333832005-11-09 15:49:04 -08004337 if (!blob) {
4338 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
Andrew Vasquezd1c61902006-05-17 15:09:00 -07004339 qla_printk(KERN_ERR, ha, "Firmware images can be retrieved "
4340 "from: " QLA_FW_URL ".\n");
4341
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004342 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004343 }
4344
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004345 qla_printk(KERN_INFO, ha,
4346 "FW: Loading via request-firmware...\n");
4347
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004348 rval = QLA_SUCCESS;
4349
4350 segments = FA_RISC_CODE_SEGMENTS;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004351 dcode = (uint32_t *)req->ring;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004352 *srisc_addr = 0;
Andrew Vasquez54333832005-11-09 15:49:04 -08004353 fwcode = (uint32_t *)blob->fw->data;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004354 fwclen = 0;
4355
4356 /* Validate firmware image by checking version. */
Andrew Vasquez54333832005-11-09 15:49:04 -08004357 if (blob->fw->size < 8 * sizeof(uint32_t)) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004358 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004359 "Unable to verify integrity of firmware image (%Zd)!\n",
4360 blob->fw->size);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004361 goto fail_fw_integrity;
4362 }
4363 for (i = 0; i < 4; i++)
4364 dcode[i] = be32_to_cpu(fwcode[i + 4]);
4365 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
4366 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
4367 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
4368 dcode[3] == 0)) {
4369 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004370 "Unable to verify integrity of firmware image!\n");
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004371 qla_printk(KERN_WARNING, ha,
4372 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
4373 dcode[1], dcode[2], dcode[3]);
4374 goto fail_fw_integrity;
4375 }
4376
4377 while (segments && rval == QLA_SUCCESS) {
4378 risc_addr = be32_to_cpu(fwcode[2]);
4379 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
4380 risc_size = be32_to_cpu(fwcode[3]);
4381
4382 /* Validate firmware image size. */
4383 fwclen += risc_size * sizeof(uint32_t);
Andrew Vasquez54333832005-11-09 15:49:04 -08004384 if (blob->fw->size < fwclen) {
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004385 qla_printk(KERN_WARNING, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08004386 "Unable to verify integrity of firmware image "
4387 "(%Zd)!\n", blob->fw->size);
4388
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004389 goto fail_fw_integrity;
4390 }
4391
4392 fragment = 0;
4393 while (risc_size > 0 && rval == QLA_SUCCESS) {
4394 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
4395 if (dlen > risc_size)
4396 dlen = risc_size;
4397
4398 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004399 "addr %x, number of dwords 0x%x.\n", vha->host_no,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004400 risc_addr, dlen));
4401
4402 for (i = 0; i < dlen; i++)
4403 dcode[i] = swab32(fwcode[i]);
4404
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004405 rval = qla2x00_load_ram(vha, req->dma, risc_addr,
andrew.vasquez@qlogic.com590f98e2006-01-13 17:05:37 -08004406 dlen);
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004407 if (rval) {
4408 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004409 "segment %d of firmware\n", vha->host_no,
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004410 fragment));
4411 qla_printk(KERN_WARNING, ha,
4412 "[ERROR] Failed to load segment %d of "
4413 "firmware\n", fragment);
4414 break;
4415 }
4416
4417 fwcode += dlen;
4418 risc_addr += dlen;
4419 risc_size -= dlen;
4420 fragment++;
4421 }
4422
4423 /* Next segment. */
4424 segments--;
4425 }
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004426 return rval;
4427
4428fail_fw_integrity:
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004429 return QLA_FUNCTION_FAILED;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07004430}
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004431
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004432int
4433qla24xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
4434{
4435 int rval;
4436
Andrew Vasqueze337d902009-04-06 22:33:49 -07004437 if (ql2xfwloadbin == 1)
4438 return qla81xx_load_risc(vha, srisc_addr);
4439
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004440 /*
4441 * FW Load priority:
4442 * 1) Firmware via request-firmware interface (.bin file).
4443 * 2) Firmware residing in flash.
4444 */
4445 rval = qla24xx_load_risc_blob(vha, srisc_addr);
4446 if (rval == QLA_SUCCESS)
4447 return rval;
4448
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004449 return qla24xx_load_risc_flash(vha, srisc_addr,
4450 vha->hw->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004451}
4452
4453int
4454qla81xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
4455{
4456 int rval;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004457 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004458
Andrew Vasqueze337d902009-04-06 22:33:49 -07004459 if (ql2xfwloadbin == 2)
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004460 goto try_blob_fw;
Andrew Vasqueze337d902009-04-06 22:33:49 -07004461
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004462 /*
4463 * FW Load priority:
4464 * 1) Firmware residing in flash.
4465 * 2) Firmware via request-firmware interface (.bin file).
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004466 * 3) Golden-Firmware residing in flash -- limited operation.
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004467 */
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004468 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_fw);
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004469 if (rval == QLA_SUCCESS)
4470 return rval;
4471
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07004472try_blob_fw:
4473 rval = qla24xx_load_risc_blob(vha, srisc_addr);
4474 if (rval == QLA_SUCCESS || !ha->flt_region_gold_fw)
4475 return rval;
4476
4477 qla_printk(KERN_ERR, ha,
4478 "FW: Attempting to fallback to golden firmware...\n");
4479 rval = qla24xx_load_risc_flash(vha, srisc_addr, ha->flt_region_gold_fw);
4480 if (rval != QLA_SUCCESS)
4481 return rval;
4482
4483 qla_printk(KERN_ERR, ha,
4484 "FW: Please update operational firmware...\n");
4485 ha->flags.running_gold_fw = 1;
4486
4487 return rval;
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08004488}
4489
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004490void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004491qla2x00_try_to_stop_firmware(scsi_qla_host_t *vha)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004492{
4493 int ret, retries;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004494 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004495
Andrew Vasquez85880802009-12-15 21:29:46 -08004496 if (ha->flags.pci_channel_io_perm_failure)
4497 return;
Andrew Vasqueze4289242007-07-19 15:05:56 -07004498 if (!IS_FWI2_CAPABLE(ha))
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004499 return;
Andrew Vasquez75edf812007-05-07 07:43:00 -07004500 if (!ha->fw_major_version)
4501 return;
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004502
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004503 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez7c7f1f22008-02-28 14:06:09 -08004504 for (retries = 5; ret != QLA_SUCCESS && ret != QLA_FUNCTION_TIMEOUT &&
Andrew Vasquezb469a7c2009-04-06 22:33:48 -07004505 ret != QLA_INVALID_COMMAND && retries ; retries--) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004506 ha->isp_ops->reset_chip(vha);
4507 if (ha->isp_ops->chip_diag(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004508 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004509 if (qla2x00_setup_chip(vha) != QLA_SUCCESS)
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004510 continue;
4511 qla_printk(KERN_INFO, ha,
4512 "Attempting retry of stop-firmware command...\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004513 ret = qla2x00_stop_firmware(vha);
Andrew Vasquez18c6c122006-10-13 09:33:38 -07004514 }
4515}
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004516
4517int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004518qla24xx_configure_vhba(scsi_qla_host_t *vha)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004519{
4520 int rval = QLA_SUCCESS;
4521 uint16_t mb[MAILBOX_REGISTER_COUNT];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004522 struct qla_hw_data *ha = vha->hw;
4523 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07004524 struct req_que *req;
4525 struct rsp_que *rsp;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004526
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004527 if (!vha->vp_idx)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004528 return -EINVAL;
4529
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004530 rval = qla2x00_fw_ready(base_vha);
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07004531 if (ha->flags.cpu_affinity_enabled)
Anirban Chakraborty67c2e932009-04-06 22:33:42 -07004532 req = ha->req_q_map[0];
4533 else
4534 req = vha->req;
4535 rsp = req->rsp;
4536
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004537 if (rval == QLA_SUCCESS) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004538 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08004539 qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004540 }
4541
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004542 vha->flags.management_server_logged_in = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004543
4544 /* Login to SNS first */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004545 ha->isp_ops->fabric_login(vha, NPH_SNS, 0xff, 0xff, 0xfc, mb, BIT_1);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004546 if (mb[0] != MBS_COMMAND_COMPLETE) {
4547 DEBUG15(qla_printk(KERN_INFO, ha,
4548 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
4549 "mb[2]=%x mb[6]=%x mb[7]=%x\n", NPH_SNS,
4550 mb[0], mb[1], mb[2], mb[6], mb[7]));
4551 return (QLA_FUNCTION_FAILED);
4552 }
4553
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004554 atomic_set(&vha->loop_down_timer, 0);
4555 atomic_set(&vha->loop_state, LOOP_UP);
4556 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
4557 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
4558 rval = qla2x00_loop_resync(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004559
4560 return rval;
4561}
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004562
4563/* 84XX Support **************************************************************/
4564
4565static LIST_HEAD(qla_cs84xx_list);
4566static DEFINE_MUTEX(qla_cs84xx_mutex);
4567
4568static struct qla_chip_state_84xx *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004569qla84xx_get_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004570{
4571 struct qla_chip_state_84xx *cs84xx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004572 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004573
4574 mutex_lock(&qla_cs84xx_mutex);
4575
4576 /* Find any shared 84xx chip. */
4577 list_for_each_entry(cs84xx, &qla_cs84xx_list, list) {
4578 if (cs84xx->bus == ha->pdev->bus) {
4579 kref_get(&cs84xx->kref);
4580 goto done;
4581 }
4582 }
4583
4584 cs84xx = kzalloc(sizeof(*cs84xx), GFP_KERNEL);
4585 if (!cs84xx)
4586 goto done;
4587
4588 kref_init(&cs84xx->kref);
4589 spin_lock_init(&cs84xx->access_lock);
4590 mutex_init(&cs84xx->fw_update_mutex);
4591 cs84xx->bus = ha->pdev->bus;
4592
4593 list_add_tail(&cs84xx->list, &qla_cs84xx_list);
4594done:
4595 mutex_unlock(&qla_cs84xx_mutex);
4596 return cs84xx;
4597}
4598
4599static void
4600__qla84xx_chip_release(struct kref *kref)
4601{
4602 struct qla_chip_state_84xx *cs84xx =
4603 container_of(kref, struct qla_chip_state_84xx, kref);
4604
4605 mutex_lock(&qla_cs84xx_mutex);
4606 list_del(&cs84xx->list);
4607 mutex_unlock(&qla_cs84xx_mutex);
4608 kfree(cs84xx);
4609}
4610
4611void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004612qla84xx_put_chip(struct scsi_qla_host *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004613{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004614 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004615 if (ha->cs84xx)
4616 kref_put(&ha->cs84xx->kref, __qla84xx_chip_release);
4617}
4618
4619static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004620qla84xx_init_chip(scsi_qla_host_t *vha)
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004621{
4622 int rval;
4623 uint16_t status[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004624 struct qla_hw_data *ha = vha->hw;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004625
4626 mutex_lock(&ha->cs84xx->fw_update_mutex);
4627
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004628 rval = qla84xx_verify_chip(vha, status);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004629
4630 mutex_unlock(&ha->cs84xx->fw_update_mutex);
4631
4632 return rval != QLA_SUCCESS || status[0] ? QLA_FUNCTION_FAILED:
4633 QLA_SUCCESS;
4634}
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004635
4636/* 81XX Support **************************************************************/
4637
4638int
4639qla81xx_nvram_config(scsi_qla_host_t *vha)
4640{
4641 int rval;
4642 struct init_cb_81xx *icb;
4643 struct nvram_81xx *nv;
4644 uint32_t *dptr;
4645 uint8_t *dptr1, *dptr2;
4646 uint32_t chksum;
4647 uint16_t cnt;
4648 struct qla_hw_data *ha = vha->hw;
4649
4650 rval = QLA_SUCCESS;
4651 icb = (struct init_cb_81xx *)ha->init_cb;
4652 nv = ha->nvram;
4653
4654 /* Determine NVRAM starting address. */
4655 ha->nvram_size = sizeof(struct nvram_81xx);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004656 ha->vpd_size = FA_NVRAM_VPD_SIZE;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004657
4658 /* Get VPD data into cache */
4659 ha->vpd = ha->nvram + VPD_OFFSET;
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07004660 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
4661 ha->vpd_size);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004662
4663 /* Get NVRAM data into cache and calculate checksum. */
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07004664 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004665 ha->nvram_size);
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07004666 dptr = (uint32_t *)nv;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004667 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
4668 chksum += le32_to_cpu(*dptr++);
4669
Andrew Vasquez76403352009-04-06 22:33:39 -07004670 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", vha->host_no));
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004671 DEBUG5(qla2x00_dump_buffer((uint8_t *)nv, ha->nvram_size));
4672
4673 /* Bad NVRAM data, set defaults parameters. */
4674 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
4675 || nv->id[3] != ' ' ||
4676 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
4677 /* Reset NVRAM data. */
4678 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
4679 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
4680 le16_to_cpu(nv->nvram_version));
4681 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
4682 "invalid -- WWPN) defaults.\n");
4683
4684 /*
4685 * Set default initialization control block.
4686 */
4687 memset(nv, 0, ha->nvram_size);
4688 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
4689 nv->version = __constant_cpu_to_le16(ICB_VERSION);
4690 nv->frame_payload_size = __constant_cpu_to_le16(2048);
4691 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4692 nv->exchange_count = __constant_cpu_to_le16(0);
4693 nv->port_name[0] = 0x21;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004694 nv->port_name[1] = 0x00 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004695 nv->port_name[2] = 0x00;
4696 nv->port_name[3] = 0xe0;
4697 nv->port_name[4] = 0x8b;
4698 nv->port_name[5] = 0x1c;
4699 nv->port_name[6] = 0x55;
4700 nv->port_name[7] = 0x86;
4701 nv->node_name[0] = 0x20;
4702 nv->node_name[1] = 0x00;
4703 nv->node_name[2] = 0x00;
4704 nv->node_name[3] = 0xe0;
4705 nv->node_name[4] = 0x8b;
4706 nv->node_name[5] = 0x1c;
4707 nv->node_name[6] = 0x55;
4708 nv->node_name[7] = 0x86;
4709 nv->login_retry_count = __constant_cpu_to_le16(8);
4710 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
4711 nv->login_timeout = __constant_cpu_to_le16(0);
4712 nv->firmware_options_1 =
4713 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
4714 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
4715 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
4716 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
4717 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
4718 nv->efi_parameters = __constant_cpu_to_le32(0);
4719 nv->reset_delay = 5;
4720 nv->max_luns_per_target = __constant_cpu_to_le16(128);
4721 nv->port_down_retry_count = __constant_cpu_to_le16(30);
4722 nv->link_down_timeout = __constant_cpu_to_le16(30);
Andrew Vasquezeeebcc92009-06-03 09:55:24 -07004723 nv->enode_mac[0] = 0x00;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004724 nv->enode_mac[1] = 0x02;
4725 nv->enode_mac[2] = 0x03;
4726 nv->enode_mac[3] = 0x04;
4727 nv->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004728 nv->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004729
4730 rval = 1;
4731 }
4732
4733 /* Reset Initialization control block */
4734 memset(icb, 0, sizeof(struct init_cb_81xx));
4735
4736 /* Copy 1st segment. */
4737 dptr1 = (uint8_t *)icb;
4738 dptr2 = (uint8_t *)&nv->version;
4739 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
4740 while (cnt--)
4741 *dptr1++ = *dptr2++;
4742
4743 icb->login_retry_count = nv->login_retry_count;
4744
4745 /* Copy 2nd segment. */
4746 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
4747 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
4748 cnt = (uint8_t *)&icb->reserved_5 -
4749 (uint8_t *)&icb->interrupt_delay_timer;
4750 while (cnt--)
4751 *dptr1++ = *dptr2++;
4752
4753 memcpy(icb->enode_mac, nv->enode_mac, sizeof(icb->enode_mac));
4754 /* Some boards (with valid NVRAMs) still have NULL enode_mac!! */
4755 if (!memcmp(icb->enode_mac, "\0\0\0\0\0\0", sizeof(icb->enode_mac))) {
4756 icb->enode_mac[0] = 0x01;
4757 icb->enode_mac[1] = 0x02;
4758 icb->enode_mac[2] = 0x03;
4759 icb->enode_mac[3] = 0x04;
4760 icb->enode_mac[4] = 0x05;
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07004761 icb->enode_mac[5] = 0x06 + ha->port_no;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004762 }
4763
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07004764 /* Use extended-initialization control block. */
4765 memcpy(ha->ex_init_cb, &nv->ex_version, sizeof(*ha->ex_init_cb));
4766
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004767 /*
4768 * Setup driver NVRAM options.
4769 */
4770 qla2x00_set_model_info(vha, nv->model_name, sizeof(nv->model_name),
4771 "QLE81XX");
4772
4773 /* Use alternate WWN? */
4774 if (nv->host_p & __constant_cpu_to_le32(BIT_15)) {
4775 memcpy(icb->node_name, nv->alternate_node_name, WWN_SIZE);
4776 memcpy(icb->port_name, nv->alternate_port_name, WWN_SIZE);
4777 }
4778
4779 /* Prepare nodename */
4780 if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
4781 /*
4782 * Firmware will apply the following mask if the nodename was
4783 * not provided.
4784 */
4785 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
4786 icb->node_name[0] &= 0xF0;
4787 }
4788
4789 /* Set host adapter parameters. */
4790 ha->flags.disable_risc_code_load = 0;
4791 ha->flags.enable_lip_reset = 0;
4792 ha->flags.enable_lip_full_login =
4793 le32_to_cpu(nv->host_p) & BIT_10 ? 1: 0;
4794 ha->flags.enable_target_reset =
4795 le32_to_cpu(nv->host_p) & BIT_11 ? 1: 0;
4796 ha->flags.enable_led_scheme = 0;
4797 ha->flags.disable_serdes = le32_to_cpu(nv->host_p) & BIT_5 ? 1: 0;
4798
4799 ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
4800 (BIT_6 | BIT_5 | BIT_4)) >> 4;
4801
4802 /* save HBA serial number */
4803 ha->serial0 = icb->port_name[5];
4804 ha->serial1 = icb->port_name[6];
4805 ha->serial2 = icb->port_name[7];
4806 memcpy(vha->node_name, icb->node_name, WWN_SIZE);
4807 memcpy(vha->port_name, icb->port_name, WWN_SIZE);
4808
4809 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
4810
4811 ha->retry_count = le16_to_cpu(nv->login_retry_count);
4812
4813 /* Set minimum login_timeout to 4 seconds. */
4814 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
4815 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
4816 if (le16_to_cpu(nv->login_timeout) < 4)
4817 nv->login_timeout = __constant_cpu_to_le16(4);
4818 ha->login_timeout = le16_to_cpu(nv->login_timeout);
4819 icb->login_timeout = nv->login_timeout;
4820
4821 /* Set minimum RATOV to 100 tenths of a second. */
4822 ha->r_a_tov = 100;
4823
4824 ha->loop_reset_delay = nv->reset_delay;
4825
4826 /* Link Down Timeout = 0:
4827 *
4828 * When Port Down timer expires we will start returning
4829 * I/O's to OS with "DID_NO_CONNECT".
4830 *
4831 * Link Down Timeout != 0:
4832 *
4833 * The driver waits for the link to come up after link down
4834 * before returning I/Os to OS with "DID_NO_CONNECT".
4835 */
4836 if (le16_to_cpu(nv->link_down_timeout) == 0) {
4837 ha->loop_down_abort_time =
4838 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
4839 } else {
4840 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
4841 ha->loop_down_abort_time =
4842 (LOOP_DOWN_TIME - ha->link_down_timeout);
4843 }
4844
4845 /* Need enough time to try and get the port back. */
4846 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
4847 if (qlport_down_retry)
4848 ha->port_down_retry_count = qlport_down_retry;
4849
4850 /* Set login_retry_count */
4851 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
4852 if (ha->port_down_retry_count ==
4853 le16_to_cpu(nv->port_down_retry_count) &&
4854 ha->port_down_retry_count > 3)
4855 ha->login_retry_count = ha->port_down_retry_count;
4856 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
4857 ha->login_retry_count = ha->port_down_retry_count;
4858 if (ql2xloginretrycount)
4859 ha->login_retry_count = ql2xloginretrycount;
4860
4861 /* Enable ZIO. */
4862 if (!vha->flags.init_done) {
4863 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
4864 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
4865 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
4866 le16_to_cpu(icb->interrupt_delay_timer): 2;
4867 }
4868 icb->firmware_options_2 &= __constant_cpu_to_le32(
4869 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
4870 vha->flags.process_response_queue = 0;
4871 if (ha->zio_mode != QLA_ZIO_DISABLED) {
4872 ha->zio_mode = QLA_ZIO_MODE_6;
4873
4874 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer delay "
4875 "(%d us).\n", vha->host_no, ha->zio_mode,
4876 ha->zio_timer * 100));
4877 qla_printk(KERN_INFO, ha,
4878 "ZIO mode %d enabled; timer delay (%d us).\n",
4879 ha->zio_mode, ha->zio_timer * 100);
4880
4881 icb->firmware_options_2 |= cpu_to_le32(
4882 (uint32_t)ha->zio_mode);
4883 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
4884 vha->flags.process_response_queue = 1;
4885 }
4886
4887 if (rval) {
4888 DEBUG2_3(printk(KERN_WARNING
4889 "scsi(%ld): NVRAM configuration failed!\n", vha->host_no));
4890 }
4891 return (rval);
4892}
4893
4894void
4895qla81xx_update_fw_options(scsi_qla_host_t *ha)
4896{
4897}