]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - drivers/scsi/qla2xxx/qla_isr.c
scsi/qla2xxx: Convert to SPDX license identifiers
[mirror_ubuntu-jammy-kernel.git] / drivers / scsi / qla2xxx / qla_isr.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * QLogic Fibre Channel HBA Driver
4 * Copyright (c) 2003-2014 QLogic Corporation
5 */
6 #include "qla_def.h"
7 #include "qla_target.h"
8
9 #include <linux/delay.h>
10 #include <linux/slab.h>
11 #include <linux/cpu.h>
12 #include <linux/t10-pi.h>
13 #include <scsi/scsi_tcq.h>
14 #include <scsi/scsi_bsg_fc.h>
15 #include <scsi/scsi_eh.h>
16 #include <scsi/fc/fc_fs.h>
17 #include <linux/nvme-fc-driver.h>
18
19 static void qla2x00_mbx_completion(scsi_qla_host_t *, uint16_t);
20 static void qla2x00_status_entry(scsi_qla_host_t *, struct rsp_que *, void *);
21 static void qla2x00_status_cont_entry(struct rsp_que *, sts_cont_entry_t *);
22 static int qla2x00_error_entry(scsi_qla_host_t *, struct rsp_que *,
23 sts_entry_t *);
24 static void qla27xx_process_purex_fpin(struct scsi_qla_host *vha,
25 struct purex_item *item);
26 static struct purex_item *qla24xx_alloc_purex_item(scsi_qla_host_t *vha,
27 uint16_t size);
28 static struct purex_item *qla24xx_copy_std_pkt(struct scsi_qla_host *vha,
29 void *pkt);
30 static struct purex_item *qla27xx_copy_fpin_pkt(struct scsi_qla_host *vha,
31 void **pkt, struct rsp_que **rsp);
32
33 static void
34 qla27xx_process_purex_fpin(struct scsi_qla_host *vha, struct purex_item *item)
35 {
36 void *pkt = &item->iocb;
37 uint16_t pkt_size = item->size;
38
39 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x508d,
40 "%s: Enter\n", __func__);
41
42 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x508e,
43 "-------- ELS REQ -------\n");
44 ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x508f,
45 pkt, pkt_size);
46
47 fc_host_fpin_rcv(vha->host, pkt_size, (char *)pkt);
48 }
49
50 const char *const port_state_str[] = {
51 "Unknown",
52 "UNCONFIGURED",
53 "DEAD",
54 "LOST",
55 "ONLINE"
56 };
57
58 static void
59 qla24xx_process_abts(struct scsi_qla_host *vha, struct purex_item *pkt)
60 {
61 struct abts_entry_24xx *abts =
62 (struct abts_entry_24xx *)&pkt->iocb;
63 struct qla_hw_data *ha = vha->hw;
64 struct els_entry_24xx *rsp_els;
65 struct abts_entry_24xx *abts_rsp;
66 dma_addr_t dma;
67 uint32_t fctl;
68 int rval;
69
70 ql_dbg(ql_dbg_init, vha, 0x0286, "%s: entered.\n", __func__);
71
72 ql_log(ql_log_warn, vha, 0x0287,
73 "Processing ABTS xchg=%#x oxid=%#x rxid=%#x seqid=%#x seqcnt=%#x\n",
74 abts->rx_xch_addr_to_abort, abts->ox_id, abts->rx_id,
75 abts->seq_id, abts->seq_cnt);
76 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0287,
77 "-------- ABTS RCV -------\n");
78 ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x0287,
79 (uint8_t *)abts, sizeof(*abts));
80
81 rsp_els = dma_alloc_coherent(&ha->pdev->dev, sizeof(*rsp_els), &dma,
82 GFP_KERNEL);
83 if (!rsp_els) {
84 ql_log(ql_log_warn, vha, 0x0287,
85 "Failed allocate dma buffer ABTS/ELS RSP.\n");
86 return;
87 }
88
89 /* terminate exchange */
90 rsp_els->entry_type = ELS_IOCB_TYPE;
91 rsp_els->entry_count = 1;
92 rsp_els->nport_handle = cpu_to_le16(~0);
93 rsp_els->rx_xchg_address = abts->rx_xch_addr_to_abort;
94 rsp_els->control_flags = cpu_to_le16(EPD_RX_XCHG);
95 ql_dbg(ql_dbg_init, vha, 0x0283,
96 "Sending ELS Response to terminate exchange %#x...\n",
97 abts->rx_xch_addr_to_abort);
98 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0283,
99 "-------- ELS RSP -------\n");
100 ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x0283,
101 (uint8_t *)rsp_els, sizeof(*rsp_els));
102 rval = qla2x00_issue_iocb(vha, rsp_els, dma, 0);
103 if (rval) {
104 ql_log(ql_log_warn, vha, 0x0288,
105 "%s: iocb failed to execute -> %x\n", __func__, rval);
106 } else if (rsp_els->comp_status) {
107 ql_log(ql_log_warn, vha, 0x0289,
108 "%s: iocb failed to complete -> completion=%#x subcode=(%#x,%#x)\n",
109 __func__, rsp_els->comp_status,
110 rsp_els->error_subcode_1, rsp_els->error_subcode_2);
111 } else {
112 ql_dbg(ql_dbg_init, vha, 0x028a,
113 "%s: abort exchange done.\n", __func__);
114 }
115
116 /* send ABTS response */
117 abts_rsp = (void *)rsp_els;
118 memset(abts_rsp, 0, sizeof(*abts_rsp));
119 abts_rsp->entry_type = ABTS_RSP_TYPE;
120 abts_rsp->entry_count = 1;
121 abts_rsp->nport_handle = abts->nport_handle;
122 abts_rsp->vp_idx = abts->vp_idx;
123 abts_rsp->sof_type = abts->sof_type & 0xf0;
124 abts_rsp->rx_xch_addr = abts->rx_xch_addr;
125 abts_rsp->d_id[0] = abts->s_id[0];
126 abts_rsp->d_id[1] = abts->s_id[1];
127 abts_rsp->d_id[2] = abts->s_id[2];
128 abts_rsp->r_ctl = FC_ROUTING_BLD | FC_R_CTL_BLD_BA_ACC;
129 abts_rsp->s_id[0] = abts->d_id[0];
130 abts_rsp->s_id[1] = abts->d_id[1];
131 abts_rsp->s_id[2] = abts->d_id[2];
132 abts_rsp->cs_ctl = abts->cs_ctl;
133 /* include flipping bit23 in fctl */
134 fctl = ~(abts->f_ctl[2] | 0x7F) << 16 |
135 FC_F_CTL_LAST_SEQ | FC_F_CTL_END_SEQ | FC_F_CTL_SEQ_INIT;
136 abts_rsp->f_ctl[0] = fctl >> 0 & 0xff;
137 abts_rsp->f_ctl[1] = fctl >> 8 & 0xff;
138 abts_rsp->f_ctl[2] = fctl >> 16 & 0xff;
139 abts_rsp->type = FC_TYPE_BLD;
140 abts_rsp->rx_id = abts->rx_id;
141 abts_rsp->ox_id = abts->ox_id;
142 abts_rsp->payload.ba_acc.aborted_rx_id = abts->rx_id;
143 abts_rsp->payload.ba_acc.aborted_ox_id = abts->ox_id;
144 abts_rsp->payload.ba_acc.high_seq_cnt = cpu_to_le16(~0);
145 abts_rsp->rx_xch_addr_to_abort = abts->rx_xch_addr_to_abort;
146 ql_dbg(ql_dbg_init, vha, 0x028b,
147 "Sending BA ACC response to ABTS %#x...\n",
148 abts->rx_xch_addr_to_abort);
149 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x028b,
150 "-------- ELS RSP -------\n");
151 ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x028b,
152 (uint8_t *)abts_rsp, sizeof(*abts_rsp));
153 rval = qla2x00_issue_iocb(vha, abts_rsp, dma, 0);
154 if (rval) {
155 ql_log(ql_log_warn, vha, 0x028c,
156 "%s: iocb failed to execute -> %x\n", __func__, rval);
157 } else if (abts_rsp->comp_status) {
158 ql_log(ql_log_warn, vha, 0x028d,
159 "%s: iocb failed to complete -> completion=%#x subcode=(%#x,%#x)\n",
160 __func__, abts_rsp->comp_status,
161 abts_rsp->payload.error.subcode1,
162 abts_rsp->payload.error.subcode2);
163 } else {
164 ql_dbg(ql_dbg_init, vha, 0x028ea,
165 "%s: done.\n", __func__);
166 }
167
168 dma_free_coherent(&ha->pdev->dev, sizeof(*rsp_els), rsp_els, dma);
169 }
170
171 /**
172 * qla2100_intr_handler() - Process interrupts for the ISP2100 and ISP2200.
173 * @irq: interrupt number
174 * @dev_id: SCSI driver HA context
175 *
176 * Called by system whenever the host adapter generates an interrupt.
177 *
178 * Returns handled flag.
179 */
180 irqreturn_t
181 qla2100_intr_handler(int irq, void *dev_id)
182 {
183 scsi_qla_host_t *vha;
184 struct qla_hw_data *ha;
185 struct device_reg_2xxx __iomem *reg;
186 int status;
187 unsigned long iter;
188 uint16_t hccr;
189 uint16_t mb[8];
190 struct rsp_que *rsp;
191 unsigned long flags;
192
193 rsp = (struct rsp_que *) dev_id;
194 if (!rsp) {
195 ql_log(ql_log_info, NULL, 0x505d,
196 "%s: NULL response queue pointer.\n", __func__);
197 return (IRQ_NONE);
198 }
199
200 ha = rsp->hw;
201 reg = &ha->iobase->isp;
202 status = 0;
203
204 spin_lock_irqsave(&ha->hardware_lock, flags);
205 vha = pci_get_drvdata(ha->pdev);
206 for (iter = 50; iter--; ) {
207 hccr = rd_reg_word(&reg->hccr);
208 if (qla2x00_check_reg16_for_disconnect(vha, hccr))
209 break;
210 if (hccr & HCCR_RISC_PAUSE) {
211 if (pci_channel_offline(ha->pdev))
212 break;
213
214 /*
215 * Issue a "HARD" reset in order for the RISC interrupt
216 * bit to be cleared. Schedule a big hammer to get
217 * out of the RISC PAUSED state.
218 */
219 wrt_reg_word(&reg->hccr, HCCR_RESET_RISC);
220 rd_reg_word(&reg->hccr);
221
222 ha->isp_ops->fw_dump(vha);
223 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
224 break;
225 } else if ((rd_reg_word(&reg->istatus) & ISR_RISC_INT) == 0)
226 break;
227
228 if (rd_reg_word(&reg->semaphore) & BIT_0) {
229 wrt_reg_word(&reg->hccr, HCCR_CLR_RISC_INT);
230 rd_reg_word(&reg->hccr);
231
232 /* Get mailbox data. */
233 mb[0] = RD_MAILBOX_REG(ha, reg, 0);
234 if (mb[0] > 0x3fff && mb[0] < 0x8000) {
235 qla2x00_mbx_completion(vha, mb[0]);
236 status |= MBX_INTERRUPT;
237 } else if (mb[0] > 0x7fff && mb[0] < 0xc000) {
238 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
239 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
240 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
241 qla2x00_async_event(vha, rsp, mb);
242 } else {
243 /*EMPTY*/
244 ql_dbg(ql_dbg_async, vha, 0x5025,
245 "Unrecognized interrupt type (%d).\n",
246 mb[0]);
247 }
248 /* Release mailbox registers. */
249 wrt_reg_word(&reg->semaphore, 0);
250 rd_reg_word(&reg->semaphore);
251 } else {
252 qla2x00_process_response_queue(rsp);
253
254 wrt_reg_word(&reg->hccr, HCCR_CLR_RISC_INT);
255 rd_reg_word(&reg->hccr);
256 }
257 }
258 qla2x00_handle_mbx_completion(ha, status);
259 spin_unlock_irqrestore(&ha->hardware_lock, flags);
260
261 return (IRQ_HANDLED);
262 }
263
264 bool
265 qla2x00_check_reg32_for_disconnect(scsi_qla_host_t *vha, uint32_t reg)
266 {
267 /* Check for PCI disconnection */
268 if (reg == 0xffffffff && !pci_channel_offline(vha->hw->pdev)) {
269 if (!test_and_set_bit(PFLG_DISCONNECTED, &vha->pci_flags) &&
270 !test_bit(PFLG_DRIVER_REMOVING, &vha->pci_flags) &&
271 !test_bit(PFLG_DRIVER_PROBING, &vha->pci_flags)) {
272 /*
273 * Schedule this (only once) on the default system
274 * workqueue so that all the adapter workqueues and the
275 * DPC thread can be shutdown cleanly.
276 */
277 schedule_work(&vha->hw->board_disable);
278 }
279 return true;
280 } else
281 return false;
282 }
283
284 bool
285 qla2x00_check_reg16_for_disconnect(scsi_qla_host_t *vha, uint16_t reg)
286 {
287 return qla2x00_check_reg32_for_disconnect(vha, 0xffff0000 | reg);
288 }
289
290 /**
291 * qla2300_intr_handler() - Process interrupts for the ISP23xx and ISP63xx.
292 * @irq: interrupt number
293 * @dev_id: SCSI driver HA context
294 *
295 * Called by system whenever the host adapter generates an interrupt.
296 *
297 * Returns handled flag.
298 */
299 irqreturn_t
300 qla2300_intr_handler(int irq, void *dev_id)
301 {
302 scsi_qla_host_t *vha;
303 struct device_reg_2xxx __iomem *reg;
304 int status;
305 unsigned long iter;
306 uint32_t stat;
307 uint16_t hccr;
308 uint16_t mb[8];
309 struct rsp_que *rsp;
310 struct qla_hw_data *ha;
311 unsigned long flags;
312
313 rsp = (struct rsp_que *) dev_id;
314 if (!rsp) {
315 ql_log(ql_log_info, NULL, 0x5058,
316 "%s: NULL response queue pointer.\n", __func__);
317 return (IRQ_NONE);
318 }
319
320 ha = rsp->hw;
321 reg = &ha->iobase->isp;
322 status = 0;
323
324 spin_lock_irqsave(&ha->hardware_lock, flags);
325 vha = pci_get_drvdata(ha->pdev);
326 for (iter = 50; iter--; ) {
327 stat = rd_reg_dword(&reg->u.isp2300.host_status);
328 if (qla2x00_check_reg32_for_disconnect(vha, stat))
329 break;
330 if (stat & HSR_RISC_PAUSED) {
331 if (unlikely(pci_channel_offline(ha->pdev)))
332 break;
333
334 hccr = rd_reg_word(&reg->hccr);
335
336 if (hccr & (BIT_15 | BIT_13 | BIT_11 | BIT_8))
337 ql_log(ql_log_warn, vha, 0x5026,
338 "Parity error -- HCCR=%x, Dumping "
339 "firmware.\n", hccr);
340 else
341 ql_log(ql_log_warn, vha, 0x5027,
342 "RISC paused -- HCCR=%x, Dumping "
343 "firmware.\n", hccr);
344
345 /*
346 * Issue a "HARD" reset in order for the RISC
347 * interrupt bit to be cleared. Schedule a big
348 * hammer to get out of the RISC PAUSED state.
349 */
350 wrt_reg_word(&reg->hccr, HCCR_RESET_RISC);
351 rd_reg_word(&reg->hccr);
352
353 ha->isp_ops->fw_dump(vha);
354 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
355 break;
356 } else if ((stat & HSR_RISC_INT) == 0)
357 break;
358
359 switch (stat & 0xff) {
360 case 0x1:
361 case 0x2:
362 case 0x10:
363 case 0x11:
364 qla2x00_mbx_completion(vha, MSW(stat));
365 status |= MBX_INTERRUPT;
366
367 /* Release mailbox registers. */
368 wrt_reg_word(&reg->semaphore, 0);
369 break;
370 case 0x12:
371 mb[0] = MSW(stat);
372 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
373 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
374 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
375 qla2x00_async_event(vha, rsp, mb);
376 break;
377 case 0x13:
378 qla2x00_process_response_queue(rsp);
379 break;
380 case 0x15:
381 mb[0] = MBA_CMPLT_1_16BIT;
382 mb[1] = MSW(stat);
383 qla2x00_async_event(vha, rsp, mb);
384 break;
385 case 0x16:
386 mb[0] = MBA_SCSI_COMPLETION;
387 mb[1] = MSW(stat);
388 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
389 qla2x00_async_event(vha, rsp, mb);
390 break;
391 default:
392 ql_dbg(ql_dbg_async, vha, 0x5028,
393 "Unrecognized interrupt type (%d).\n", stat & 0xff);
394 break;
395 }
396 wrt_reg_word(&reg->hccr, HCCR_CLR_RISC_INT);
397 rd_reg_word_relaxed(&reg->hccr);
398 }
399 qla2x00_handle_mbx_completion(ha, status);
400 spin_unlock_irqrestore(&ha->hardware_lock, flags);
401
402 return (IRQ_HANDLED);
403 }
404
405 /**
406 * qla2x00_mbx_completion() - Process mailbox command completions.
407 * @vha: SCSI driver HA context
408 * @mb0: Mailbox0 register
409 */
410 static void
411 qla2x00_mbx_completion(scsi_qla_host_t *vha, uint16_t mb0)
412 {
413 uint16_t cnt;
414 uint32_t mboxes;
415 __le16 __iomem *wptr;
416 struct qla_hw_data *ha = vha->hw;
417 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
418
419 /* Read all mbox registers? */
420 WARN_ON_ONCE(ha->mbx_count > 32);
421 mboxes = (1ULL << ha->mbx_count) - 1;
422 if (!ha->mcp)
423 ql_dbg(ql_dbg_async, vha, 0x5001, "MBX pointer ERROR.\n");
424 else
425 mboxes = ha->mcp->in_mb;
426
427 /* Load return mailbox registers. */
428 ha->flags.mbox_int = 1;
429 ha->mailbox_out[0] = mb0;
430 mboxes >>= 1;
431 wptr = MAILBOX_REG(ha, reg, 1);
432
433 for (cnt = 1; cnt < ha->mbx_count; cnt++) {
434 if (IS_QLA2200(ha) && cnt == 8)
435 wptr = MAILBOX_REG(ha, reg, 8);
436 if ((cnt == 4 || cnt == 5) && (mboxes & BIT_0))
437 ha->mailbox_out[cnt] = qla2x00_debounce_register(wptr);
438 else if (mboxes & BIT_0)
439 ha->mailbox_out[cnt] = rd_reg_word(wptr);
440
441 wptr++;
442 mboxes >>= 1;
443 }
444 }
445
446 static void
447 qla81xx_idc_event(scsi_qla_host_t *vha, uint16_t aen, uint16_t descr)
448 {
449 static char *event[] =
450 { "Complete", "Request Notification", "Time Extension" };
451 int rval;
452 struct device_reg_24xx __iomem *reg24 = &vha->hw->iobase->isp24;
453 struct device_reg_82xx __iomem *reg82 = &vha->hw->iobase->isp82;
454 __le16 __iomem *wptr;
455 uint16_t cnt, timeout, mb[QLA_IDC_ACK_REGS];
456
457 /* Seed data -- mailbox1 -> mailbox7. */
458 if (IS_QLA81XX(vha->hw) || IS_QLA83XX(vha->hw))
459 wptr = &reg24->mailbox1;
460 else if (IS_QLA8044(vha->hw))
461 wptr = &reg82->mailbox_out[1];
462 else
463 return;
464
465 for (cnt = 0; cnt < QLA_IDC_ACK_REGS; cnt++, wptr++)
466 mb[cnt] = rd_reg_word(wptr);
467
468 ql_dbg(ql_dbg_async, vha, 0x5021,
469 "Inter-Driver Communication %s -- "
470 "%04x %04x %04x %04x %04x %04x %04x.\n",
471 event[aen & 0xff], mb[0], mb[1], mb[2], mb[3],
472 mb[4], mb[5], mb[6]);
473 switch (aen) {
474 /* Handle IDC Error completion case. */
475 case MBA_IDC_COMPLETE:
476 if (mb[1] >> 15) {
477 vha->hw->flags.idc_compl_status = 1;
478 if (vha->hw->notify_dcbx_comp && !vha->vp_idx)
479 complete(&vha->hw->dcbx_comp);
480 }
481 break;
482
483 case MBA_IDC_NOTIFY:
484 /* Acknowledgement needed? [Notify && non-zero timeout]. */
485 timeout = (descr >> 8) & 0xf;
486 ql_dbg(ql_dbg_async, vha, 0x5022,
487 "%lu Inter-Driver Communication %s -- ACK timeout=%d.\n",
488 vha->host_no, event[aen & 0xff], timeout);
489
490 if (!timeout)
491 return;
492 rval = qla2x00_post_idc_ack_work(vha, mb);
493 if (rval != QLA_SUCCESS)
494 ql_log(ql_log_warn, vha, 0x5023,
495 "IDC failed to post ACK.\n");
496 break;
497 case MBA_IDC_TIME_EXT:
498 vha->hw->idc_extend_tmo = descr;
499 ql_dbg(ql_dbg_async, vha, 0x5087,
500 "%lu Inter-Driver Communication %s -- "
501 "Extend timeout by=%d.\n",
502 vha->host_no, event[aen & 0xff], vha->hw->idc_extend_tmo);
503 break;
504 }
505 }
506
507 #define LS_UNKNOWN 2
508 const char *
509 qla2x00_get_link_speed_str(struct qla_hw_data *ha, uint16_t speed)
510 {
511 static const char *const link_speeds[] = {
512 "1", "2", "?", "4", "8", "16", "32", "10"
513 };
514 #define QLA_LAST_SPEED (ARRAY_SIZE(link_speeds) - 1)
515
516 if (IS_QLA2100(ha) || IS_QLA2200(ha))
517 return link_speeds[0];
518 else if (speed == 0x13)
519 return link_speeds[QLA_LAST_SPEED];
520 else if (speed < QLA_LAST_SPEED)
521 return link_speeds[speed];
522 else
523 return link_speeds[LS_UNKNOWN];
524 }
525
526 static void
527 qla83xx_handle_8200_aen(scsi_qla_host_t *vha, uint16_t *mb)
528 {
529 struct qla_hw_data *ha = vha->hw;
530
531 /*
532 * 8200 AEN Interpretation:
533 * mb[0] = AEN code
534 * mb[1] = AEN Reason code
535 * mb[2] = LSW of Peg-Halt Status-1 Register
536 * mb[6] = MSW of Peg-Halt Status-1 Register
537 * mb[3] = LSW of Peg-Halt Status-2 register
538 * mb[7] = MSW of Peg-Halt Status-2 register
539 * mb[4] = IDC Device-State Register value
540 * mb[5] = IDC Driver-Presence Register value
541 */
542 ql_dbg(ql_dbg_async, vha, 0x506b, "AEN Code: mb[0] = 0x%x AEN reason: "
543 "mb[1] = 0x%x PH-status1: mb[2] = 0x%x PH-status1: mb[6] = 0x%x.\n",
544 mb[0], mb[1], mb[2], mb[6]);
545 ql_dbg(ql_dbg_async, vha, 0x506c, "PH-status2: mb[3] = 0x%x "
546 "PH-status2: mb[7] = 0x%x Device-State: mb[4] = 0x%x "
547 "Drv-Presence: mb[5] = 0x%x.\n", mb[3], mb[7], mb[4], mb[5]);
548
549 if (mb[1] & (IDC_PEG_HALT_STATUS_CHANGE | IDC_NIC_FW_REPORTED_FAILURE |
550 IDC_HEARTBEAT_FAILURE)) {
551 ha->flags.nic_core_hung = 1;
552 ql_log(ql_log_warn, vha, 0x5060,
553 "83XX: F/W Error Reported: Check if reset required.\n");
554
555 if (mb[1] & IDC_PEG_HALT_STATUS_CHANGE) {
556 uint32_t protocol_engine_id, fw_err_code, err_level;
557
558 /*
559 * IDC_PEG_HALT_STATUS_CHANGE interpretation:
560 * - PEG-Halt Status-1 Register:
561 * (LSW = mb[2], MSW = mb[6])
562 * Bits 0-7 = protocol-engine ID
563 * Bits 8-28 = f/w error code
564 * Bits 29-31 = Error-level
565 * Error-level 0x1 = Non-Fatal error
566 * Error-level 0x2 = Recoverable Fatal error
567 * Error-level 0x4 = UnRecoverable Fatal error
568 * - PEG-Halt Status-2 Register:
569 * (LSW = mb[3], MSW = mb[7])
570 */
571 protocol_engine_id = (mb[2] & 0xff);
572 fw_err_code = (((mb[2] & 0xff00) >> 8) |
573 ((mb[6] & 0x1fff) << 8));
574 err_level = ((mb[6] & 0xe000) >> 13);
575 ql_log(ql_log_warn, vha, 0x5061, "PegHalt Status-1 "
576 "Register: protocol_engine_id=0x%x "
577 "fw_err_code=0x%x err_level=0x%x.\n",
578 protocol_engine_id, fw_err_code, err_level);
579 ql_log(ql_log_warn, vha, 0x5062, "PegHalt Status-2 "
580 "Register: 0x%x%x.\n", mb[7], mb[3]);
581 if (err_level == ERR_LEVEL_NON_FATAL) {
582 ql_log(ql_log_warn, vha, 0x5063,
583 "Not a fatal error, f/w has recovered itself.\n");
584 } else if (err_level == ERR_LEVEL_RECOVERABLE_FATAL) {
585 ql_log(ql_log_fatal, vha, 0x5064,
586 "Recoverable Fatal error: Chip reset "
587 "required.\n");
588 qla83xx_schedule_work(vha,
589 QLA83XX_NIC_CORE_RESET);
590 } else if (err_level == ERR_LEVEL_UNRECOVERABLE_FATAL) {
591 ql_log(ql_log_fatal, vha, 0x5065,
592 "Unrecoverable Fatal error: Set FAILED "
593 "state, reboot required.\n");
594 qla83xx_schedule_work(vha,
595 QLA83XX_NIC_CORE_UNRECOVERABLE);
596 }
597 }
598
599 if (mb[1] & IDC_NIC_FW_REPORTED_FAILURE) {
600 uint16_t peg_fw_state, nw_interface_link_up;
601 uint16_t nw_interface_signal_detect, sfp_status;
602 uint16_t htbt_counter, htbt_monitor_enable;
603 uint16_t sfp_additional_info, sfp_multirate;
604 uint16_t sfp_tx_fault, link_speed, dcbx_status;
605
606 /*
607 * IDC_NIC_FW_REPORTED_FAILURE interpretation:
608 * - PEG-to-FC Status Register:
609 * (LSW = mb[2], MSW = mb[6])
610 * Bits 0-7 = Peg-Firmware state
611 * Bit 8 = N/W Interface Link-up
612 * Bit 9 = N/W Interface signal detected
613 * Bits 10-11 = SFP Status
614 * SFP Status 0x0 = SFP+ transceiver not expected
615 * SFP Status 0x1 = SFP+ transceiver not present
616 * SFP Status 0x2 = SFP+ transceiver invalid
617 * SFP Status 0x3 = SFP+ transceiver present and
618 * valid
619 * Bits 12-14 = Heartbeat Counter
620 * Bit 15 = Heartbeat Monitor Enable
621 * Bits 16-17 = SFP Additional Info
622 * SFP info 0x0 = Unregocnized transceiver for
623 * Ethernet
624 * SFP info 0x1 = SFP+ brand validation failed
625 * SFP info 0x2 = SFP+ speed validation failed
626 * SFP info 0x3 = SFP+ access error
627 * Bit 18 = SFP Multirate
628 * Bit 19 = SFP Tx Fault
629 * Bits 20-22 = Link Speed
630 * Bits 23-27 = Reserved
631 * Bits 28-30 = DCBX Status
632 * DCBX Status 0x0 = DCBX Disabled
633 * DCBX Status 0x1 = DCBX Enabled
634 * DCBX Status 0x2 = DCBX Exchange error
635 * Bit 31 = Reserved
636 */
637 peg_fw_state = (mb[2] & 0x00ff);
638 nw_interface_link_up = ((mb[2] & 0x0100) >> 8);
639 nw_interface_signal_detect = ((mb[2] & 0x0200) >> 9);
640 sfp_status = ((mb[2] & 0x0c00) >> 10);
641 htbt_counter = ((mb[2] & 0x7000) >> 12);
642 htbt_monitor_enable = ((mb[2] & 0x8000) >> 15);
643 sfp_additional_info = (mb[6] & 0x0003);
644 sfp_multirate = ((mb[6] & 0x0004) >> 2);
645 sfp_tx_fault = ((mb[6] & 0x0008) >> 3);
646 link_speed = ((mb[6] & 0x0070) >> 4);
647 dcbx_status = ((mb[6] & 0x7000) >> 12);
648
649 ql_log(ql_log_warn, vha, 0x5066,
650 "Peg-to-Fc Status Register:\n"
651 "peg_fw_state=0x%x, nw_interface_link_up=0x%x, "
652 "nw_interface_signal_detect=0x%x"
653 "\nsfp_statis=0x%x.\n ", peg_fw_state,
654 nw_interface_link_up, nw_interface_signal_detect,
655 sfp_status);
656 ql_log(ql_log_warn, vha, 0x5067,
657 "htbt_counter=0x%x, htbt_monitor_enable=0x%x, "
658 "sfp_additional_info=0x%x, sfp_multirate=0x%x.\n ",
659 htbt_counter, htbt_monitor_enable,
660 sfp_additional_info, sfp_multirate);
661 ql_log(ql_log_warn, vha, 0x5068,
662 "sfp_tx_fault=0x%x, link_state=0x%x, "
663 "dcbx_status=0x%x.\n", sfp_tx_fault, link_speed,
664 dcbx_status);
665
666 qla83xx_schedule_work(vha, QLA83XX_NIC_CORE_RESET);
667 }
668
669 if (mb[1] & IDC_HEARTBEAT_FAILURE) {
670 ql_log(ql_log_warn, vha, 0x5069,
671 "Heartbeat Failure encountered, chip reset "
672 "required.\n");
673
674 qla83xx_schedule_work(vha, QLA83XX_NIC_CORE_RESET);
675 }
676 }
677
678 if (mb[1] & IDC_DEVICE_STATE_CHANGE) {
679 ql_log(ql_log_info, vha, 0x506a,
680 "IDC Device-State changed = 0x%x.\n", mb[4]);
681 if (ha->flags.nic_core_reset_owner)
682 return;
683 qla83xx_schedule_work(vha, MBA_IDC_AEN);
684 }
685 }
686
687 int
688 qla2x00_is_a_vp_did(scsi_qla_host_t *vha, uint32_t rscn_entry)
689 {
690 struct qla_hw_data *ha = vha->hw;
691 scsi_qla_host_t *vp;
692 uint32_t vp_did;
693 unsigned long flags;
694 int ret = 0;
695
696 if (!ha->num_vhosts)
697 return ret;
698
699 spin_lock_irqsave(&ha->vport_slock, flags);
700 list_for_each_entry(vp, &ha->vp_list, list) {
701 vp_did = vp->d_id.b24;
702 if (vp_did == rscn_entry) {
703 ret = 1;
704 break;
705 }
706 }
707 spin_unlock_irqrestore(&ha->vport_slock, flags);
708
709 return ret;
710 }
711
712 fc_port_t *
713 qla2x00_find_fcport_by_loopid(scsi_qla_host_t *vha, uint16_t loop_id)
714 {
715 fc_port_t *f, *tf;
716
717 f = tf = NULL;
718 list_for_each_entry_safe(f, tf, &vha->vp_fcports, list)
719 if (f->loop_id == loop_id)
720 return f;
721 return NULL;
722 }
723
724 fc_port_t *
725 qla2x00_find_fcport_by_wwpn(scsi_qla_host_t *vha, u8 *wwpn, u8 incl_deleted)
726 {
727 fc_port_t *f, *tf;
728
729 f = tf = NULL;
730 list_for_each_entry_safe(f, tf, &vha->vp_fcports, list) {
731 if (memcmp(f->port_name, wwpn, WWN_SIZE) == 0) {
732 if (incl_deleted)
733 return f;
734 else if (f->deleted == 0)
735 return f;
736 }
737 }
738 return NULL;
739 }
740
741 fc_port_t *
742 qla2x00_find_fcport_by_nportid(scsi_qla_host_t *vha, port_id_t *id,
743 u8 incl_deleted)
744 {
745 fc_port_t *f, *tf;
746
747 f = tf = NULL;
748 list_for_each_entry_safe(f, tf, &vha->vp_fcports, list) {
749 if (f->d_id.b24 == id->b24) {
750 if (incl_deleted)
751 return f;
752 else if (f->deleted == 0)
753 return f;
754 }
755 }
756 return NULL;
757 }
758
759 /* Shall be called only on supported adapters. */
760 static void
761 qla27xx_handle_8200_aen(scsi_qla_host_t *vha, uint16_t *mb)
762 {
763 struct qla_hw_data *ha = vha->hw;
764 bool reset_isp_needed = 0;
765
766 ql_log(ql_log_warn, vha, 0x02f0,
767 "MPI Heartbeat stop. MPI reset is%s needed. "
768 "MB0[%xh] MB1[%xh] MB2[%xh] MB3[%xh]\n",
769 mb[0] & BIT_8 ? "" : " not",
770 mb[0], mb[1], mb[2], mb[3]);
771
772 if ((mb[1] & BIT_8) == 0)
773 return;
774
775 ql_log(ql_log_warn, vha, 0x02f1,
776 "MPI Heartbeat stop. FW dump needed\n");
777
778 if (ql2xfulldump_on_mpifail) {
779 ha->isp_ops->fw_dump(vha);
780 reset_isp_needed = 1;
781 }
782
783 ha->isp_ops->mpi_fw_dump(vha, 1);
784
785 if (reset_isp_needed) {
786 vha->hw->flags.fw_init_done = 0;
787 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
788 qla2xxx_wake_dpc(vha);
789 }
790 }
791
792 static struct purex_item *
793 qla24xx_alloc_purex_item(scsi_qla_host_t *vha, uint16_t size)
794 {
795 struct purex_item *item = NULL;
796 uint8_t item_hdr_size = sizeof(*item);
797
798 if (size > QLA_DEFAULT_PAYLOAD_SIZE) {
799 item = kzalloc(item_hdr_size +
800 (size - QLA_DEFAULT_PAYLOAD_SIZE), GFP_ATOMIC);
801 } else {
802 if (atomic_inc_return(&vha->default_item.in_use) == 1) {
803 item = &vha->default_item;
804 goto initialize_purex_header;
805 } else {
806 item = kzalloc(item_hdr_size, GFP_ATOMIC);
807 }
808 }
809 if (!item) {
810 ql_log(ql_log_warn, vha, 0x5092,
811 ">> Failed allocate purex list item.\n");
812
813 return NULL;
814 }
815
816 initialize_purex_header:
817 item->vha = vha;
818 item->size = size;
819 return item;
820 }
821
822 static void
823 qla24xx_queue_purex_item(scsi_qla_host_t *vha, struct purex_item *pkt,
824 void (*process_item)(struct scsi_qla_host *vha,
825 struct purex_item *pkt))
826 {
827 struct purex_list *list = &vha->purex_list;
828 ulong flags;
829
830 pkt->process_item = process_item;
831
832 spin_lock_irqsave(&list->lock, flags);
833 list_add_tail(&pkt->list, &list->head);
834 spin_unlock_irqrestore(&list->lock, flags);
835
836 set_bit(PROCESS_PUREX_IOCB, &vha->dpc_flags);
837 }
838
839 /**
840 * qla24xx_copy_std_pkt() - Copy over purex ELS which is
841 * contained in a single IOCB.
842 * purex packet.
843 * @vha: SCSI driver HA context
844 * @pkt: ELS packet
845 */
846 static struct purex_item
847 *qla24xx_copy_std_pkt(struct scsi_qla_host *vha, void *pkt)
848 {
849 struct purex_item *item;
850
851 item = qla24xx_alloc_purex_item(vha,
852 QLA_DEFAULT_PAYLOAD_SIZE);
853 if (!item)
854 return item;
855
856 memcpy(&item->iocb, pkt, sizeof(item->iocb));
857 return item;
858 }
859
860 /**
861 * qla27xx_copy_fpin_pkt() - Copy over fpin packets that can
862 * span over multiple IOCBs.
863 * @vha: SCSI driver HA context
864 * @pkt: ELS packet
865 * @rsp: Response queue
866 */
867 static struct purex_item *
868 qla27xx_copy_fpin_pkt(struct scsi_qla_host *vha, void **pkt,
869 struct rsp_que **rsp)
870 {
871 struct purex_entry_24xx *purex = *pkt;
872 struct rsp_que *rsp_q = *rsp;
873 sts_cont_entry_t *new_pkt;
874 uint16_t no_bytes = 0, total_bytes = 0, pending_bytes = 0;
875 uint16_t buffer_copy_offset = 0;
876 uint16_t entry_count, entry_count_remaining;
877 struct purex_item *item;
878 void *fpin_pkt = NULL;
879
880 total_bytes = (le16_to_cpu(purex->frame_size) & 0x0FFF)
881 - PURX_ELS_HEADER_SIZE;
882 pending_bytes = total_bytes;
883 entry_count = entry_count_remaining = purex->entry_count;
884 no_bytes = (pending_bytes > sizeof(purex->els_frame_payload)) ?
885 sizeof(purex->els_frame_payload) : pending_bytes;
886 ql_log(ql_log_info, vha, 0x509a,
887 "FPIN ELS, frame_size 0x%x, entry count %d\n",
888 total_bytes, entry_count);
889
890 item = qla24xx_alloc_purex_item(vha, total_bytes);
891 if (!item)
892 return item;
893
894 fpin_pkt = &item->iocb;
895
896 memcpy(fpin_pkt, &purex->els_frame_payload[0], no_bytes);
897 buffer_copy_offset += no_bytes;
898 pending_bytes -= no_bytes;
899 --entry_count_remaining;
900
901 ((response_t *)purex)->signature = RESPONSE_PROCESSED;
902 wmb();
903
904 do {
905 while ((total_bytes > 0) && (entry_count_remaining > 0)) {
906 if (rsp_q->ring_ptr->signature == RESPONSE_PROCESSED) {
907 ql_dbg(ql_dbg_async, vha, 0x5084,
908 "Ran out of IOCBs, partial data 0x%x\n",
909 buffer_copy_offset);
910 cpu_relax();
911 continue;
912 }
913
914 new_pkt = (sts_cont_entry_t *)rsp_q->ring_ptr;
915 *pkt = new_pkt;
916
917 if (new_pkt->entry_type != STATUS_CONT_TYPE) {
918 ql_log(ql_log_warn, vha, 0x507a,
919 "Unexpected IOCB type, partial data 0x%x\n",
920 buffer_copy_offset);
921 break;
922 }
923
924 rsp_q->ring_index++;
925 if (rsp_q->ring_index == rsp_q->length) {
926 rsp_q->ring_index = 0;
927 rsp_q->ring_ptr = rsp_q->ring;
928 } else {
929 rsp_q->ring_ptr++;
930 }
931 no_bytes = (pending_bytes > sizeof(new_pkt->data)) ?
932 sizeof(new_pkt->data) : pending_bytes;
933 if ((buffer_copy_offset + no_bytes) <= total_bytes) {
934 memcpy(((uint8_t *)fpin_pkt +
935 buffer_copy_offset), new_pkt->data,
936 no_bytes);
937 buffer_copy_offset += no_bytes;
938 pending_bytes -= no_bytes;
939 --entry_count_remaining;
940 } else {
941 ql_log(ql_log_warn, vha, 0x5044,
942 "Attempt to copy more that we got, optimizing..%x\n",
943 buffer_copy_offset);
944 memcpy(((uint8_t *)fpin_pkt +
945 buffer_copy_offset), new_pkt->data,
946 total_bytes - buffer_copy_offset);
947 }
948
949 ((response_t *)new_pkt)->signature = RESPONSE_PROCESSED;
950 wmb();
951 }
952
953 if (pending_bytes != 0 || entry_count_remaining != 0) {
954 ql_log(ql_log_fatal, vha, 0x508b,
955 "Dropping partial FPIN, underrun bytes = 0x%x, entry cnts 0x%x\n",
956 total_bytes, entry_count_remaining);
957 qla24xx_free_purex_item(item);
958 return NULL;
959 }
960 } while (entry_count_remaining > 0);
961 host_to_fcp_swap((uint8_t *)&item->iocb, total_bytes);
962 return item;
963 }
964
965 /**
966 * qla2x00_async_event() - Process aynchronous events.
967 * @vha: SCSI driver HA context
968 * @rsp: response queue
969 * @mb: Mailbox registers (0 - 3)
970 */
971 void
972 qla2x00_async_event(scsi_qla_host_t *vha, struct rsp_que *rsp, uint16_t *mb)
973 {
974 uint16_t handle_cnt;
975 uint16_t cnt, mbx;
976 uint32_t handles[5];
977 struct qla_hw_data *ha = vha->hw;
978 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
979 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
980 struct device_reg_82xx __iomem *reg82 = &ha->iobase->isp82;
981 uint32_t rscn_entry, host_pid;
982 unsigned long flags;
983 fc_port_t *fcport = NULL;
984
985 if (!vha->hw->flags.fw_started)
986 return;
987
988 /* Setup to process RIO completion. */
989 handle_cnt = 0;
990 if (IS_CNA_CAPABLE(ha))
991 goto skip_rio;
992 switch (mb[0]) {
993 case MBA_SCSI_COMPLETION:
994 handles[0] = make_handle(mb[2], mb[1]);
995 handle_cnt = 1;
996 break;
997 case MBA_CMPLT_1_16BIT:
998 handles[0] = mb[1];
999 handle_cnt = 1;
1000 mb[0] = MBA_SCSI_COMPLETION;
1001 break;
1002 case MBA_CMPLT_2_16BIT:
1003 handles[0] = mb[1];
1004 handles[1] = mb[2];
1005 handle_cnt = 2;
1006 mb[0] = MBA_SCSI_COMPLETION;
1007 break;
1008 case MBA_CMPLT_3_16BIT:
1009 handles[0] = mb[1];
1010 handles[1] = mb[2];
1011 handles[2] = mb[3];
1012 handle_cnt = 3;
1013 mb[0] = MBA_SCSI_COMPLETION;
1014 break;
1015 case MBA_CMPLT_4_16BIT:
1016 handles[0] = mb[1];
1017 handles[1] = mb[2];
1018 handles[2] = mb[3];
1019 handles[3] = (uint32_t)RD_MAILBOX_REG(ha, reg, 6);
1020 handle_cnt = 4;
1021 mb[0] = MBA_SCSI_COMPLETION;
1022 break;
1023 case MBA_CMPLT_5_16BIT:
1024 handles[0] = mb[1];
1025 handles[1] = mb[2];
1026 handles[2] = mb[3];
1027 handles[3] = (uint32_t)RD_MAILBOX_REG(ha, reg, 6);
1028 handles[4] = (uint32_t)RD_MAILBOX_REG(ha, reg, 7);
1029 handle_cnt = 5;
1030 mb[0] = MBA_SCSI_COMPLETION;
1031 break;
1032 case MBA_CMPLT_2_32BIT:
1033 handles[0] = make_handle(mb[2], mb[1]);
1034 handles[1] = make_handle(RD_MAILBOX_REG(ha, reg, 7),
1035 RD_MAILBOX_REG(ha, reg, 6));
1036 handle_cnt = 2;
1037 mb[0] = MBA_SCSI_COMPLETION;
1038 break;
1039 default:
1040 break;
1041 }
1042 skip_rio:
1043 switch (mb[0]) {
1044 case MBA_SCSI_COMPLETION: /* Fast Post */
1045 if (!vha->flags.online)
1046 break;
1047
1048 for (cnt = 0; cnt < handle_cnt; cnt++)
1049 qla2x00_process_completed_request(vha, rsp->req,
1050 handles[cnt]);
1051 break;
1052
1053 case MBA_RESET: /* Reset */
1054 ql_dbg(ql_dbg_async, vha, 0x5002,
1055 "Asynchronous RESET.\n");
1056
1057 set_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
1058 break;
1059
1060 case MBA_SYSTEM_ERR: /* System Error */
1061 mbx = 0;
1062 if (IS_QLA81XX(ha) || IS_QLA83XX(ha) ||
1063 IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
1064 u16 m[4];
1065
1066 m[0] = rd_reg_word(&reg24->mailbox4);
1067 m[1] = rd_reg_word(&reg24->mailbox5);
1068 m[2] = rd_reg_word(&reg24->mailbox6);
1069 mbx = m[3] = rd_reg_word(&reg24->mailbox7);
1070
1071 ql_log(ql_log_warn, vha, 0x5003,
1072 "ISP System Error - mbx1=%xh mbx2=%xh mbx3=%xh mbx4=%xh mbx5=%xh mbx6=%xh mbx7=%xh.\n",
1073 mb[1], mb[2], mb[3], m[0], m[1], m[2], m[3]);
1074 } else
1075 ql_log(ql_log_warn, vha, 0x5003,
1076 "ISP System Error - mbx1=%xh mbx2=%xh mbx3=%xh.\n ",
1077 mb[1], mb[2], mb[3]);
1078
1079 if ((IS_QLA27XX(ha) || IS_QLA28XX(ha)) &&
1080 rd_reg_word(&reg24->mailbox7) & BIT_8)
1081 ha->isp_ops->mpi_fw_dump(vha, 1);
1082 ha->isp_ops->fw_dump(vha);
1083 ha->flags.fw_init_done = 0;
1084 QLA_FW_STOPPED(ha);
1085
1086 if (IS_FWI2_CAPABLE(ha)) {
1087 if (mb[1] == 0 && mb[2] == 0) {
1088 ql_log(ql_log_fatal, vha, 0x5004,
1089 "Unrecoverable Hardware Error: adapter "
1090 "marked OFFLINE!\n");
1091 vha->flags.online = 0;
1092 vha->device_flags |= DFLG_DEV_FAILED;
1093 } else {
1094 /* Check to see if MPI timeout occurred */
1095 if ((mbx & MBX_3) && (ha->port_no == 0))
1096 set_bit(MPI_RESET_NEEDED,
1097 &vha->dpc_flags);
1098
1099 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1100 }
1101 } else if (mb[1] == 0) {
1102 ql_log(ql_log_fatal, vha, 0x5005,
1103 "Unrecoverable Hardware Error: adapter marked "
1104 "OFFLINE!\n");
1105 vha->flags.online = 0;
1106 vha->device_flags |= DFLG_DEV_FAILED;
1107 } else
1108 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1109 break;
1110
1111 case MBA_REQ_TRANSFER_ERR: /* Request Transfer Error */
1112 ql_log(ql_log_warn, vha, 0x5006,
1113 "ISP Request Transfer Error (%x).\n", mb[1]);
1114
1115 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1116 break;
1117
1118 case MBA_RSP_TRANSFER_ERR: /* Response Transfer Error */
1119 ql_log(ql_log_warn, vha, 0x5007,
1120 "ISP Response Transfer Error (%x).\n", mb[1]);
1121
1122 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1123 break;
1124
1125 case MBA_WAKEUP_THRES: /* Request Queue Wake-up */
1126 ql_dbg(ql_dbg_async, vha, 0x5008,
1127 "Asynchronous WAKEUP_THRES (%x).\n", mb[1]);
1128 break;
1129
1130 case MBA_LOOP_INIT_ERR:
1131 ql_log(ql_log_warn, vha, 0x5090,
1132 "LOOP INIT ERROR (%x).\n", mb[1]);
1133 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1134 break;
1135
1136 case MBA_LIP_OCCURRED: /* Loop Initialization Procedure */
1137 ha->flags.lip_ae = 1;
1138
1139 ql_dbg(ql_dbg_async, vha, 0x5009,
1140 "LIP occurred (%x).\n", mb[1]);
1141
1142 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
1143 atomic_set(&vha->loop_state, LOOP_DOWN);
1144 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1145 qla2x00_mark_all_devices_lost(vha);
1146 }
1147
1148 if (vha->vp_idx) {
1149 atomic_set(&vha->vp_state, VP_FAILED);
1150 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
1151 }
1152
1153 set_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags);
1154 set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags);
1155
1156 vha->flags.management_server_logged_in = 0;
1157 qla2x00_post_aen_work(vha, FCH_EVT_LIP, mb[1]);
1158 break;
1159
1160 case MBA_LOOP_UP: /* Loop Up Event */
1161 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1162 ha->link_data_rate = PORT_SPEED_1GB;
1163 else
1164 ha->link_data_rate = mb[1];
1165
1166 ql_log(ql_log_info, vha, 0x500a,
1167 "LOOP UP detected (%s Gbps).\n",
1168 qla2x00_get_link_speed_str(ha, ha->link_data_rate));
1169
1170 if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
1171 if (mb[2] & BIT_0)
1172 ql_log(ql_log_info, vha, 0x11a0,
1173 "FEC=enabled (link up).\n");
1174 }
1175
1176 vha->flags.management_server_logged_in = 0;
1177 qla2x00_post_aen_work(vha, FCH_EVT_LINKUP, ha->link_data_rate);
1178
1179 break;
1180
1181 case MBA_LOOP_DOWN: /* Loop Down Event */
1182 SAVE_TOPO(ha);
1183 ha->flags.lip_ae = 0;
1184 ha->current_topology = 0;
1185
1186 mbx = (IS_QLA81XX(ha) || IS_QLA8031(ha))
1187 ? rd_reg_word(&reg24->mailbox4) : 0;
1188 mbx = (IS_P3P_TYPE(ha)) ? rd_reg_word(&reg82->mailbox_out[4])
1189 : mbx;
1190 ql_log(ql_log_info, vha, 0x500b,
1191 "LOOP DOWN detected (%x %x %x %x).\n",
1192 mb[1], mb[2], mb[3], mbx);
1193
1194 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
1195 atomic_set(&vha->loop_state, LOOP_DOWN);
1196 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1197 /*
1198 * In case of loop down, restore WWPN from
1199 * NVRAM in case of FA-WWPN capable ISP
1200 * Restore for Physical Port only
1201 */
1202 if (!vha->vp_idx) {
1203 if (ha->flags.fawwpn_enabled &&
1204 (ha->current_topology == ISP_CFG_F)) {
1205 void *wwpn = ha->init_cb->port_name;
1206
1207 memcpy(vha->port_name, wwpn, WWN_SIZE);
1208 fc_host_port_name(vha->host) =
1209 wwn_to_u64(vha->port_name);
1210 ql_dbg(ql_dbg_init + ql_dbg_verbose,
1211 vha, 0x00d8, "LOOP DOWN detected,"
1212 "restore WWPN %016llx\n",
1213 wwn_to_u64(vha->port_name));
1214 }
1215
1216 clear_bit(VP_CONFIG_OK, &vha->vp_flags);
1217 }
1218
1219 vha->device_flags |= DFLG_NO_CABLE;
1220 qla2x00_mark_all_devices_lost(vha);
1221 }
1222
1223 if (vha->vp_idx) {
1224 atomic_set(&vha->vp_state, VP_FAILED);
1225 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
1226 }
1227
1228 vha->flags.management_server_logged_in = 0;
1229 ha->link_data_rate = PORT_SPEED_UNKNOWN;
1230 qla2x00_post_aen_work(vha, FCH_EVT_LINKDOWN, 0);
1231 break;
1232
1233 case MBA_LIP_RESET: /* LIP reset occurred */
1234 ql_dbg(ql_dbg_async, vha, 0x500c,
1235 "LIP reset occurred (%x).\n", mb[1]);
1236
1237 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
1238 atomic_set(&vha->loop_state, LOOP_DOWN);
1239 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1240 qla2x00_mark_all_devices_lost(vha);
1241 }
1242
1243 if (vha->vp_idx) {
1244 atomic_set(&vha->vp_state, VP_FAILED);
1245 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
1246 }
1247
1248 set_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
1249
1250 ha->operating_mode = LOOP;
1251 vha->flags.management_server_logged_in = 0;
1252 qla2x00_post_aen_work(vha, FCH_EVT_LIPRESET, mb[1]);
1253 break;
1254
1255 /* case MBA_DCBX_COMPLETE: */
1256 case MBA_POINT_TO_POINT: /* Point-to-Point */
1257 ha->flags.lip_ae = 0;
1258
1259 if (IS_QLA2100(ha))
1260 break;
1261
1262 if (IS_CNA_CAPABLE(ha)) {
1263 ql_dbg(ql_dbg_async, vha, 0x500d,
1264 "DCBX Completed -- %04x %04x %04x.\n",
1265 mb[1], mb[2], mb[3]);
1266 if (ha->notify_dcbx_comp && !vha->vp_idx)
1267 complete(&ha->dcbx_comp);
1268
1269 } else
1270 ql_dbg(ql_dbg_async, vha, 0x500e,
1271 "Asynchronous P2P MODE received.\n");
1272
1273 /*
1274 * Until there's a transition from loop down to loop up, treat
1275 * this as loop down only.
1276 */
1277 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
1278 atomic_set(&vha->loop_state, LOOP_DOWN);
1279 if (!atomic_read(&vha->loop_down_timer))
1280 atomic_set(&vha->loop_down_timer,
1281 LOOP_DOWN_TIME);
1282 if (!N2N_TOPO(ha))
1283 qla2x00_mark_all_devices_lost(vha);
1284 }
1285
1286 if (vha->vp_idx) {
1287 atomic_set(&vha->vp_state, VP_FAILED);
1288 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
1289 }
1290
1291 if (!(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)))
1292 set_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
1293
1294 set_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags);
1295 set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags);
1296
1297 vha->flags.management_server_logged_in = 0;
1298 break;
1299
1300 case MBA_CHG_IN_CONNECTION: /* Change in connection mode */
1301 if (IS_QLA2100(ha))
1302 break;
1303
1304 ql_dbg(ql_dbg_async, vha, 0x500f,
1305 "Configuration change detected: value=%x.\n", mb[1]);
1306
1307 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
1308 atomic_set(&vha->loop_state, LOOP_DOWN);
1309 if (!atomic_read(&vha->loop_down_timer))
1310 atomic_set(&vha->loop_down_timer,
1311 LOOP_DOWN_TIME);
1312 qla2x00_mark_all_devices_lost(vha);
1313 }
1314
1315 if (vha->vp_idx) {
1316 atomic_set(&vha->vp_state, VP_FAILED);
1317 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
1318 }
1319
1320 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1321 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
1322 break;
1323
1324 case MBA_PORT_UPDATE: /* Port database update */
1325 /*
1326 * Handle only global and vn-port update events
1327 *
1328 * Relevant inputs:
1329 * mb[1] = N_Port handle of changed port
1330 * OR 0xffff for global event
1331 * mb[2] = New login state
1332 * 7 = Port logged out
1333 * mb[3] = LSB is vp_idx, 0xff = all vps
1334 *
1335 * Skip processing if:
1336 * Event is global, vp_idx is NOT all vps,
1337 * vp_idx does not match
1338 * Event is not global, vp_idx does not match
1339 */
1340 if (IS_QLA2XXX_MIDTYPE(ha) &&
1341 ((mb[1] == 0xffff && (mb[3] & 0xff) != 0xff) ||
1342 (mb[1] != 0xffff)) && vha->vp_idx != (mb[3] & 0xff))
1343 break;
1344
1345 if (mb[2] == 0x7) {
1346 ql_dbg(ql_dbg_async, vha, 0x5010,
1347 "Port %s %04x %04x %04x.\n",
1348 mb[1] == 0xffff ? "unavailable" : "logout",
1349 mb[1], mb[2], mb[3]);
1350
1351 if (mb[1] == 0xffff)
1352 goto global_port_update;
1353
1354 if (mb[1] == NPH_SNS_LID(ha)) {
1355 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1356 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
1357 break;
1358 }
1359
1360 /* use handle_cnt for loop id/nport handle */
1361 if (IS_FWI2_CAPABLE(ha))
1362 handle_cnt = NPH_SNS;
1363 else
1364 handle_cnt = SIMPLE_NAME_SERVER;
1365 if (mb[1] == handle_cnt) {
1366 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1367 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
1368 break;
1369 }
1370
1371 /* Port logout */
1372 fcport = qla2x00_find_fcport_by_loopid(vha, mb[1]);
1373 if (!fcport)
1374 break;
1375 if (atomic_read(&fcport->state) != FCS_ONLINE)
1376 break;
1377 ql_dbg(ql_dbg_async, vha, 0x508a,
1378 "Marking port lost loopid=%04x portid=%06x.\n",
1379 fcport->loop_id, fcport->d_id.b24);
1380 if (qla_ini_mode_enabled(vha)) {
1381 fcport->logout_on_delete = 0;
1382 qlt_schedule_sess_for_deletion(fcport);
1383 }
1384 break;
1385
1386 global_port_update:
1387 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
1388 atomic_set(&vha->loop_state, LOOP_DOWN);
1389 atomic_set(&vha->loop_down_timer,
1390 LOOP_DOWN_TIME);
1391 vha->device_flags |= DFLG_NO_CABLE;
1392 qla2x00_mark_all_devices_lost(vha);
1393 }
1394
1395 if (vha->vp_idx) {
1396 atomic_set(&vha->vp_state, VP_FAILED);
1397 fc_vport_set_state(vha->fc_vport,
1398 FC_VPORT_FAILED);
1399 qla2x00_mark_all_devices_lost(vha);
1400 }
1401
1402 vha->flags.management_server_logged_in = 0;
1403 ha->link_data_rate = PORT_SPEED_UNKNOWN;
1404 break;
1405 }
1406
1407 /*
1408 * If PORT UPDATE is global (received LIP_OCCURRED/LIP_RESET
1409 * event etc. earlier indicating loop is down) then process
1410 * it. Otherwise ignore it and Wait for RSCN to come in.
1411 */
1412 atomic_set(&vha->loop_down_timer, 0);
1413 if (atomic_read(&vha->loop_state) != LOOP_DOWN &&
1414 !ha->flags.n2n_ae &&
1415 atomic_read(&vha->loop_state) != LOOP_DEAD) {
1416 ql_dbg(ql_dbg_async, vha, 0x5011,
1417 "Asynchronous PORT UPDATE ignored %04x/%04x/%04x.\n",
1418 mb[1], mb[2], mb[3]);
1419 break;
1420 }
1421
1422 ql_dbg(ql_dbg_async, vha, 0x5012,
1423 "Port database changed %04x %04x %04x.\n",
1424 mb[1], mb[2], mb[3]);
1425
1426 /*
1427 * Mark all devices as missing so we will login again.
1428 */
1429 atomic_set(&vha->loop_state, LOOP_UP);
1430 vha->scan.scan_retry = 0;
1431
1432 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1433 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
1434 set_bit(VP_CONFIG_OK, &vha->vp_flags);
1435 break;
1436
1437 case MBA_RSCN_UPDATE: /* State Change Registration */
1438 /* Check if the Vport has issued a SCR */
1439 if (vha->vp_idx && test_bit(VP_SCR_NEEDED, &vha->vp_flags))
1440 break;
1441 /* Only handle SCNs for our Vport index. */
1442 if (ha->flags.npiv_supported && vha->vp_idx != (mb[3] & 0xff))
1443 break;
1444
1445 ql_dbg(ql_dbg_async, vha, 0x5013,
1446 "RSCN database changed -- %04x %04x %04x.\n",
1447 mb[1], mb[2], mb[3]);
1448
1449 rscn_entry = ((mb[1] & 0xff) << 16) | mb[2];
1450 host_pid = (vha->d_id.b.domain << 16) | (vha->d_id.b.area << 8)
1451 | vha->d_id.b.al_pa;
1452 if (rscn_entry == host_pid) {
1453 ql_dbg(ql_dbg_async, vha, 0x5014,
1454 "Ignoring RSCN update to local host "
1455 "port ID (%06x).\n", host_pid);
1456 break;
1457 }
1458
1459 /* Ignore reserved bits from RSCN-payload. */
1460 rscn_entry = ((mb[1] & 0x3ff) << 16) | mb[2];
1461
1462 /* Skip RSCNs for virtual ports on the same physical port */
1463 if (qla2x00_is_a_vp_did(vha, rscn_entry))
1464 break;
1465
1466 atomic_set(&vha->loop_down_timer, 0);
1467 vha->flags.management_server_logged_in = 0;
1468 {
1469 struct event_arg ea;
1470
1471 memset(&ea, 0, sizeof(ea));
1472 ea.id.b24 = rscn_entry;
1473 ea.id.b.rsvd_1 = rscn_entry >> 24;
1474 qla2x00_handle_rscn(vha, &ea);
1475 qla2x00_post_aen_work(vha, FCH_EVT_RSCN, rscn_entry);
1476 }
1477 break;
1478 case MBA_CONGN_NOTI_RECV:
1479 if (!ha->flags.scm_enabled ||
1480 mb[1] != QLA_CON_PRIMITIVE_RECEIVED)
1481 break;
1482
1483 if (mb[2] == QLA_CONGESTION_ARB_WARNING) {
1484 ql_dbg(ql_dbg_async, vha, 0x509b,
1485 "Congestion Warning %04x %04x.\n", mb[1], mb[2]);
1486 } else if (mb[2] == QLA_CONGESTION_ARB_ALARM) {
1487 ql_log(ql_log_warn, vha, 0x509b,
1488 "Congestion Alarm %04x %04x.\n", mb[1], mb[2]);
1489 }
1490 break;
1491 /* case MBA_RIO_RESPONSE: */
1492 case MBA_ZIO_RESPONSE:
1493 ql_dbg(ql_dbg_async, vha, 0x5015,
1494 "[R|Z]IO update completion.\n");
1495
1496 if (IS_FWI2_CAPABLE(ha))
1497 qla24xx_process_response_queue(vha, rsp);
1498 else
1499 qla2x00_process_response_queue(rsp);
1500 break;
1501
1502 case MBA_DISCARD_RND_FRAME:
1503 ql_dbg(ql_dbg_async, vha, 0x5016,
1504 "Discard RND Frame -- %04x %04x %04x.\n",
1505 mb[1], mb[2], mb[3]);
1506 break;
1507
1508 case MBA_TRACE_NOTIFICATION:
1509 ql_dbg(ql_dbg_async, vha, 0x5017,
1510 "Trace Notification -- %04x %04x.\n", mb[1], mb[2]);
1511 break;
1512
1513 case MBA_ISP84XX_ALERT:
1514 ql_dbg(ql_dbg_async, vha, 0x5018,
1515 "ISP84XX Alert Notification -- %04x %04x %04x.\n",
1516 mb[1], mb[2], mb[3]);
1517
1518 spin_lock_irqsave(&ha->cs84xx->access_lock, flags);
1519 switch (mb[1]) {
1520 case A84_PANIC_RECOVERY:
1521 ql_log(ql_log_info, vha, 0x5019,
1522 "Alert 84XX: panic recovery %04x %04x.\n",
1523 mb[2], mb[3]);
1524 break;
1525 case A84_OP_LOGIN_COMPLETE:
1526 ha->cs84xx->op_fw_version = mb[3] << 16 | mb[2];
1527 ql_log(ql_log_info, vha, 0x501a,
1528 "Alert 84XX: firmware version %x.\n",
1529 ha->cs84xx->op_fw_version);
1530 break;
1531 case A84_DIAG_LOGIN_COMPLETE:
1532 ha->cs84xx->diag_fw_version = mb[3] << 16 | mb[2];
1533 ql_log(ql_log_info, vha, 0x501b,
1534 "Alert 84XX: diagnostic firmware version %x.\n",
1535 ha->cs84xx->diag_fw_version);
1536 break;
1537 case A84_GOLD_LOGIN_COMPLETE:
1538 ha->cs84xx->diag_fw_version = mb[3] << 16 | mb[2];
1539 ha->cs84xx->fw_update = 1;
1540 ql_log(ql_log_info, vha, 0x501c,
1541 "Alert 84XX: gold firmware version %x.\n",
1542 ha->cs84xx->gold_fw_version);
1543 break;
1544 default:
1545 ql_log(ql_log_warn, vha, 0x501d,
1546 "Alert 84xx: Invalid Alert %04x %04x %04x.\n",
1547 mb[1], mb[2], mb[3]);
1548 }
1549 spin_unlock_irqrestore(&ha->cs84xx->access_lock, flags);
1550 break;
1551 case MBA_DCBX_START:
1552 ql_dbg(ql_dbg_async, vha, 0x501e,
1553 "DCBX Started -- %04x %04x %04x.\n",
1554 mb[1], mb[2], mb[3]);
1555 break;
1556 case MBA_DCBX_PARAM_UPDATE:
1557 ql_dbg(ql_dbg_async, vha, 0x501f,
1558 "DCBX Parameters Updated -- %04x %04x %04x.\n",
1559 mb[1], mb[2], mb[3]);
1560 break;
1561 case MBA_FCF_CONF_ERR:
1562 ql_dbg(ql_dbg_async, vha, 0x5020,
1563 "FCF Configuration Error -- %04x %04x %04x.\n",
1564 mb[1], mb[2], mb[3]);
1565 break;
1566 case MBA_IDC_NOTIFY:
1567 if (IS_QLA8031(vha->hw) || IS_QLA8044(ha)) {
1568 mb[4] = rd_reg_word(&reg24->mailbox4);
1569 if (((mb[2] & 0x7fff) == MBC_PORT_RESET ||
1570 (mb[2] & 0x7fff) == MBC_SET_PORT_CONFIG) &&
1571 (mb[4] & INTERNAL_LOOPBACK_MASK) != 0) {
1572 set_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags);
1573 /*
1574 * Extend loop down timer since port is active.
1575 */
1576 if (atomic_read(&vha->loop_state) == LOOP_DOWN)
1577 atomic_set(&vha->loop_down_timer,
1578 LOOP_DOWN_TIME);
1579 qla2xxx_wake_dpc(vha);
1580 }
1581 }
1582 fallthrough;
1583 case MBA_IDC_COMPLETE:
1584 if (ha->notify_lb_portup_comp && !vha->vp_idx)
1585 complete(&ha->lb_portup_comp);
1586 fallthrough;
1587 case MBA_IDC_TIME_EXT:
1588 if (IS_QLA81XX(vha->hw) || IS_QLA8031(vha->hw) ||
1589 IS_QLA8044(ha))
1590 qla81xx_idc_event(vha, mb[0], mb[1]);
1591 break;
1592
1593 case MBA_IDC_AEN:
1594 if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
1595 qla27xx_handle_8200_aen(vha, mb);
1596 } else if (IS_QLA83XX(ha)) {
1597 mb[4] = rd_reg_word(&reg24->mailbox4);
1598 mb[5] = rd_reg_word(&reg24->mailbox5);
1599 mb[6] = rd_reg_word(&reg24->mailbox6);
1600 mb[7] = rd_reg_word(&reg24->mailbox7);
1601 qla83xx_handle_8200_aen(vha, mb);
1602 } else {
1603 ql_dbg(ql_dbg_async, vha, 0x5052,
1604 "skip Heartbeat processing mb0-3=[0x%04x] [0x%04x] [0x%04x] [0x%04x]\n",
1605 mb[0], mb[1], mb[2], mb[3]);
1606 }
1607 break;
1608
1609 case MBA_DPORT_DIAGNOSTICS:
1610 ql_dbg(ql_dbg_async, vha, 0x5052,
1611 "D-Port Diagnostics: %04x %04x %04x %04x\n",
1612 mb[0], mb[1], mb[2], mb[3]);
1613 memcpy(vha->dport_data, mb, sizeof(vha->dport_data));
1614 if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
1615 static char *results[] = {
1616 "start", "done(pass)", "done(error)", "undefined" };
1617 static char *types[] = {
1618 "none", "dynamic", "static", "other" };
1619 uint result = mb[1] >> 0 & 0x3;
1620 uint type = mb[1] >> 6 & 0x3;
1621 uint sw = mb[1] >> 15 & 0x1;
1622 ql_dbg(ql_dbg_async, vha, 0x5052,
1623 "D-Port Diagnostics: result=%s type=%s [sw=%u]\n",
1624 results[result], types[type], sw);
1625 if (result == 2) {
1626 static char *reasons[] = {
1627 "reserved", "unexpected reject",
1628 "unexpected phase", "retry exceeded",
1629 "timed out", "not supported",
1630 "user stopped" };
1631 uint reason = mb[2] >> 0 & 0xf;
1632 uint phase = mb[2] >> 12 & 0xf;
1633 ql_dbg(ql_dbg_async, vha, 0x5052,
1634 "D-Port Diagnostics: reason=%s phase=%u \n",
1635 reason < 7 ? reasons[reason] : "other",
1636 phase >> 1);
1637 }
1638 }
1639 break;
1640
1641 case MBA_TEMPERATURE_ALERT:
1642 ql_dbg(ql_dbg_async, vha, 0x505e,
1643 "TEMPERATURE ALERT: %04x %04x %04x\n", mb[1], mb[2], mb[3]);
1644 if (mb[1] == 0x12)
1645 schedule_work(&ha->board_disable);
1646 break;
1647
1648 case MBA_TRANS_INSERT:
1649 ql_dbg(ql_dbg_async, vha, 0x5091,
1650 "Transceiver Insertion: %04x\n", mb[1]);
1651 set_bit(DETECT_SFP_CHANGE, &vha->dpc_flags);
1652 break;
1653
1654 case MBA_TRANS_REMOVE:
1655 ql_dbg(ql_dbg_async, vha, 0x5091, "Transceiver Removal\n");
1656 break;
1657
1658 default:
1659 ql_dbg(ql_dbg_async, vha, 0x5057,
1660 "Unknown AEN:%04x %04x %04x %04x\n",
1661 mb[0], mb[1], mb[2], mb[3]);
1662 }
1663
1664 qlt_async_event(mb[0], vha, mb);
1665
1666 if (!vha->vp_idx && ha->num_vhosts)
1667 qla2x00_alert_all_vps(rsp, mb);
1668 }
1669
1670 /**
1671 * qla2x00_process_completed_request() - Process a Fast Post response.
1672 * @vha: SCSI driver HA context
1673 * @req: request queue
1674 * @index: SRB index
1675 */
1676 void
1677 qla2x00_process_completed_request(struct scsi_qla_host *vha,
1678 struct req_que *req, uint32_t index)
1679 {
1680 srb_t *sp;
1681 struct qla_hw_data *ha = vha->hw;
1682
1683 /* Validate handle. */
1684 if (index >= req->num_outstanding_cmds) {
1685 ql_log(ql_log_warn, vha, 0x3014,
1686 "Invalid SCSI command index (%x).\n", index);
1687
1688 if (IS_P3P_TYPE(ha))
1689 set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
1690 else
1691 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1692 return;
1693 }
1694
1695 sp = req->outstanding_cmds[index];
1696 if (sp) {
1697 /* Free outstanding command slot. */
1698 req->outstanding_cmds[index] = NULL;
1699
1700 /* Save ISP completion status */
1701 sp->done(sp, DID_OK << 16);
1702 } else {
1703 ql_log(ql_log_warn, vha, 0x3016, "Invalid SCSI SRB.\n");
1704
1705 if (IS_P3P_TYPE(ha))
1706 set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
1707 else
1708 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1709 }
1710 }
1711
1712 srb_t *
1713 qla2x00_get_sp_from_handle(scsi_qla_host_t *vha, const char *func,
1714 struct req_que *req, void *iocb)
1715 {
1716 struct qla_hw_data *ha = vha->hw;
1717 sts_entry_t *pkt = iocb;
1718 srb_t *sp = NULL;
1719 uint16_t index;
1720
1721 index = LSW(pkt->handle);
1722 if (index >= req->num_outstanding_cmds) {
1723 ql_log(ql_log_warn, vha, 0x5031,
1724 "Invalid command index (%x) type %8ph.\n",
1725 index, iocb);
1726 if (IS_P3P_TYPE(ha))
1727 set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
1728 else
1729 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1730 goto done;
1731 }
1732 sp = req->outstanding_cmds[index];
1733 if (!sp) {
1734 ql_log(ql_log_warn, vha, 0x5032,
1735 "Invalid completion handle (%x) -- timed-out.\n", index);
1736 return sp;
1737 }
1738 if (sp->handle != index) {
1739 ql_log(ql_log_warn, vha, 0x5033,
1740 "SRB handle (%x) mismatch %x.\n", sp->handle, index);
1741 return NULL;
1742 }
1743
1744 req->outstanding_cmds[index] = NULL;
1745
1746 done:
1747 return sp;
1748 }
1749
1750 static void
1751 qla2x00_mbx_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
1752 struct mbx_entry *mbx)
1753 {
1754 const char func[] = "MBX-IOCB";
1755 const char *type;
1756 fc_port_t *fcport;
1757 srb_t *sp;
1758 struct srb_iocb *lio;
1759 uint16_t *data;
1760 uint16_t status;
1761
1762 sp = qla2x00_get_sp_from_handle(vha, func, req, mbx);
1763 if (!sp)
1764 return;
1765
1766 lio = &sp->u.iocb_cmd;
1767 type = sp->name;
1768 fcport = sp->fcport;
1769 data = lio->u.logio.data;
1770
1771 data[0] = MBS_COMMAND_ERROR;
1772 data[1] = lio->u.logio.flags & SRB_LOGIN_RETRIED ?
1773 QLA_LOGIO_LOGIN_RETRIED : 0;
1774 if (mbx->entry_status) {
1775 ql_dbg(ql_dbg_async, vha, 0x5043,
1776 "Async-%s error entry - hdl=%x portid=%02x%02x%02x "
1777 "entry-status=%x status=%x state-flag=%x "
1778 "status-flags=%x.\n", type, sp->handle,
1779 fcport->d_id.b.domain, fcport->d_id.b.area,
1780 fcport->d_id.b.al_pa, mbx->entry_status,
1781 le16_to_cpu(mbx->status), le16_to_cpu(mbx->state_flags),
1782 le16_to_cpu(mbx->status_flags));
1783
1784 ql_dump_buffer(ql_dbg_async + ql_dbg_buffer, vha, 0x5029,
1785 mbx, sizeof(*mbx));
1786
1787 goto logio_done;
1788 }
1789
1790 status = le16_to_cpu(mbx->status);
1791 if (status == 0x30 && sp->type == SRB_LOGIN_CMD &&
1792 le16_to_cpu(mbx->mb0) == MBS_COMMAND_COMPLETE)
1793 status = 0;
1794 if (!status && le16_to_cpu(mbx->mb0) == MBS_COMMAND_COMPLETE) {
1795 ql_dbg(ql_dbg_async, vha, 0x5045,
1796 "Async-%s complete - hdl=%x portid=%02x%02x%02x mbx1=%x.\n",
1797 type, sp->handle, fcport->d_id.b.domain,
1798 fcport->d_id.b.area, fcport->d_id.b.al_pa,
1799 le16_to_cpu(mbx->mb1));
1800
1801 data[0] = MBS_COMMAND_COMPLETE;
1802 if (sp->type == SRB_LOGIN_CMD) {
1803 fcport->port_type = FCT_TARGET;
1804 if (le16_to_cpu(mbx->mb1) & BIT_0)
1805 fcport->port_type = FCT_INITIATOR;
1806 else if (le16_to_cpu(mbx->mb1) & BIT_1)
1807 fcport->flags |= FCF_FCP2_DEVICE;
1808 }
1809 goto logio_done;
1810 }
1811
1812 data[0] = le16_to_cpu(mbx->mb0);
1813 switch (data[0]) {
1814 case MBS_PORT_ID_USED:
1815 data[1] = le16_to_cpu(mbx->mb1);
1816 break;
1817 case MBS_LOOP_ID_USED:
1818 break;
1819 default:
1820 data[0] = MBS_COMMAND_ERROR;
1821 break;
1822 }
1823
1824 ql_log(ql_log_warn, vha, 0x5046,
1825 "Async-%s failed - hdl=%x portid=%02x%02x%02x status=%x "
1826 "mb0=%x mb1=%x mb2=%x mb6=%x mb7=%x.\n", type, sp->handle,
1827 fcport->d_id.b.domain, fcport->d_id.b.area, fcport->d_id.b.al_pa,
1828 status, le16_to_cpu(mbx->mb0), le16_to_cpu(mbx->mb1),
1829 le16_to_cpu(mbx->mb2), le16_to_cpu(mbx->mb6),
1830 le16_to_cpu(mbx->mb7));
1831
1832 logio_done:
1833 sp->done(sp, 0);
1834 }
1835
1836 static void
1837 qla24xx_mbx_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
1838 struct mbx_24xx_entry *pkt)
1839 {
1840 const char func[] = "MBX-IOCB2";
1841 srb_t *sp;
1842 struct srb_iocb *si;
1843 u16 sz, i;
1844 int res;
1845
1846 sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
1847 if (!sp)
1848 return;
1849
1850 si = &sp->u.iocb_cmd;
1851 sz = min(ARRAY_SIZE(pkt->mb), ARRAY_SIZE(sp->u.iocb_cmd.u.mbx.in_mb));
1852
1853 for (i = 0; i < sz; i++)
1854 si->u.mbx.in_mb[i] = pkt->mb[i];
1855
1856 res = (si->u.mbx.in_mb[0] & MBS_MASK);
1857
1858 sp->done(sp, res);
1859 }
1860
1861 static void
1862 qla24xxx_nack_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
1863 struct nack_to_isp *pkt)
1864 {
1865 const char func[] = "nack";
1866 srb_t *sp;
1867 int res = 0;
1868
1869 sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
1870 if (!sp)
1871 return;
1872
1873 if (pkt->u.isp2x.status != cpu_to_le16(NOTIFY_ACK_SUCCESS))
1874 res = QLA_FUNCTION_FAILED;
1875
1876 sp->done(sp, res);
1877 }
1878
1879 static void
1880 qla2x00_ct_entry(scsi_qla_host_t *vha, struct req_que *req,
1881 sts_entry_t *pkt, int iocb_type)
1882 {
1883 const char func[] = "CT_IOCB";
1884 const char *type;
1885 srb_t *sp;
1886 struct bsg_job *bsg_job;
1887 struct fc_bsg_reply *bsg_reply;
1888 uint16_t comp_status;
1889 int res = 0;
1890
1891 sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
1892 if (!sp)
1893 return;
1894
1895 switch (sp->type) {
1896 case SRB_CT_CMD:
1897 bsg_job = sp->u.bsg_job;
1898 bsg_reply = bsg_job->reply;
1899
1900 type = "ct pass-through";
1901
1902 comp_status = le16_to_cpu(pkt->comp_status);
1903
1904 /*
1905 * return FC_CTELS_STATUS_OK and leave the decoding of the ELS/CT
1906 * fc payload to the caller
1907 */
1908 bsg_reply->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
1909 bsg_job->reply_len = sizeof(struct fc_bsg_reply);
1910
1911 if (comp_status != CS_COMPLETE) {
1912 if (comp_status == CS_DATA_UNDERRUN) {
1913 res = DID_OK << 16;
1914 bsg_reply->reply_payload_rcv_len =
1915 le16_to_cpu(pkt->rsp_info_len);
1916
1917 ql_log(ql_log_warn, vha, 0x5048,
1918 "CT pass-through-%s error comp_status=0x%x total_byte=0x%x.\n",
1919 type, comp_status,
1920 bsg_reply->reply_payload_rcv_len);
1921 } else {
1922 ql_log(ql_log_warn, vha, 0x5049,
1923 "CT pass-through-%s error comp_status=0x%x.\n",
1924 type, comp_status);
1925 res = DID_ERROR << 16;
1926 bsg_reply->reply_payload_rcv_len = 0;
1927 }
1928 ql_dump_buffer(ql_dbg_async + ql_dbg_buffer, vha, 0x5035,
1929 pkt, sizeof(*pkt));
1930 } else {
1931 res = DID_OK << 16;
1932 bsg_reply->reply_payload_rcv_len =
1933 bsg_job->reply_payload.payload_len;
1934 bsg_job->reply_len = 0;
1935 }
1936 break;
1937 case SRB_CT_PTHRU_CMD:
1938 /*
1939 * borrowing sts_entry_24xx.comp_status.
1940 * same location as ct_entry_24xx.comp_status
1941 */
1942 res = qla2x00_chk_ms_status(vha, (ms_iocb_entry_t *)pkt,
1943 (struct ct_sns_rsp *)sp->u.iocb_cmd.u.ctarg.rsp,
1944 sp->name);
1945 break;
1946 }
1947
1948 sp->done(sp, res);
1949 }
1950
1951 static void
1952 qla24xx_els_ct_entry(scsi_qla_host_t *vha, struct req_que *req,
1953 struct sts_entry_24xx *pkt, int iocb_type)
1954 {
1955 struct els_sts_entry_24xx *ese = (struct els_sts_entry_24xx *)pkt;
1956 const char func[] = "ELS_CT_IOCB";
1957 const char *type;
1958 srb_t *sp;
1959 struct bsg_job *bsg_job;
1960 struct fc_bsg_reply *bsg_reply;
1961 uint16_t comp_status;
1962 uint32_t fw_status[3];
1963 int res;
1964 struct srb_iocb *els;
1965
1966 sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
1967 if (!sp)
1968 return;
1969
1970 type = NULL;
1971 switch (sp->type) {
1972 case SRB_ELS_CMD_RPT:
1973 case SRB_ELS_CMD_HST:
1974 type = "els";
1975 break;
1976 case SRB_CT_CMD:
1977 type = "ct pass-through";
1978 break;
1979 case SRB_ELS_DCMD:
1980 type = "Driver ELS logo";
1981 if (iocb_type != ELS_IOCB_TYPE) {
1982 ql_dbg(ql_dbg_user, vha, 0x5047,
1983 "Completing %s: (%p) type=%d.\n",
1984 type, sp, sp->type);
1985 sp->done(sp, 0);
1986 return;
1987 }
1988 break;
1989 case SRB_CT_PTHRU_CMD:
1990 /* borrowing sts_entry_24xx.comp_status.
1991 same location as ct_entry_24xx.comp_status
1992 */
1993 res = qla2x00_chk_ms_status(sp->vha, (ms_iocb_entry_t *)pkt,
1994 (struct ct_sns_rsp *)sp->u.iocb_cmd.u.ctarg.rsp,
1995 sp->name);
1996 sp->done(sp, res);
1997 return;
1998 default:
1999 ql_dbg(ql_dbg_user, vha, 0x503e,
2000 "Unrecognized SRB: (%p) type=%d.\n", sp, sp->type);
2001 return;
2002 }
2003
2004 comp_status = fw_status[0] = le16_to_cpu(pkt->comp_status);
2005 fw_status[1] = le32_to_cpu(ese->error_subcode_1);
2006 fw_status[2] = le32_to_cpu(ese->error_subcode_2);
2007
2008 if (iocb_type == ELS_IOCB_TYPE) {
2009 els = &sp->u.iocb_cmd;
2010 els->u.els_plogi.fw_status[0] = cpu_to_le32(fw_status[0]);
2011 els->u.els_plogi.fw_status[1] = cpu_to_le32(fw_status[1]);
2012 els->u.els_plogi.fw_status[2] = cpu_to_le32(fw_status[2]);
2013 els->u.els_plogi.comp_status = cpu_to_le16(fw_status[0]);
2014 if (comp_status == CS_COMPLETE) {
2015 res = DID_OK << 16;
2016 } else {
2017 if (comp_status == CS_DATA_UNDERRUN) {
2018 res = DID_OK << 16;
2019 els->u.els_plogi.len = cpu_to_le16(le32_to_cpu(
2020 ese->total_byte_count));
2021 } else {
2022 els->u.els_plogi.len = 0;
2023 res = DID_ERROR << 16;
2024 }
2025 }
2026 ql_dbg(ql_dbg_disc, vha, 0x503f,
2027 "ELS IOCB Done -%s hdl=%x comp_status=0x%x error subcode 1=0x%x error subcode 2=0x%x total_byte=0x%x\n",
2028 type, sp->handle, comp_status, fw_status[1], fw_status[2],
2029 le32_to_cpu(ese->total_byte_count));
2030 goto els_ct_done;
2031 }
2032
2033 /* return FC_CTELS_STATUS_OK and leave the decoding of the ELS/CT
2034 * fc payload to the caller
2035 */
2036 bsg_job = sp->u.bsg_job;
2037 bsg_reply = bsg_job->reply;
2038 bsg_reply->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
2039 bsg_job->reply_len = sizeof(struct fc_bsg_reply) + sizeof(fw_status);
2040
2041 if (comp_status != CS_COMPLETE) {
2042 if (comp_status == CS_DATA_UNDERRUN) {
2043 res = DID_OK << 16;
2044 bsg_reply->reply_payload_rcv_len =
2045 le32_to_cpu(ese->total_byte_count);
2046
2047 ql_dbg(ql_dbg_user, vha, 0x503f,
2048 "ELS-CT pass-through-%s error hdl=%x comp_status-status=0x%x "
2049 "error subcode 1=0x%x error subcode 2=0x%x total_byte = 0x%x.\n",
2050 type, sp->handle, comp_status, fw_status[1], fw_status[2],
2051 le32_to_cpu(ese->total_byte_count));
2052 } else {
2053 ql_dbg(ql_dbg_user, vha, 0x5040,
2054 "ELS-CT pass-through-%s error hdl=%x comp_status-status=0x%x "
2055 "error subcode 1=0x%x error subcode 2=0x%x.\n",
2056 type, sp->handle, comp_status,
2057 le32_to_cpu(ese->error_subcode_1),
2058 le32_to_cpu(ese->error_subcode_2));
2059 res = DID_ERROR << 16;
2060 bsg_reply->reply_payload_rcv_len = 0;
2061 }
2062 memcpy(bsg_job->reply + sizeof(struct fc_bsg_reply),
2063 fw_status, sizeof(fw_status));
2064 ql_dump_buffer(ql_dbg_user + ql_dbg_buffer, vha, 0x5056,
2065 pkt, sizeof(*pkt));
2066 }
2067 else {
2068 res = DID_OK << 16;
2069 bsg_reply->reply_payload_rcv_len = bsg_job->reply_payload.payload_len;
2070 bsg_job->reply_len = 0;
2071 }
2072 els_ct_done:
2073
2074 sp->done(sp, res);
2075 }
2076
2077 static void
2078 qla24xx_logio_entry(scsi_qla_host_t *vha, struct req_que *req,
2079 struct logio_entry_24xx *logio)
2080 {
2081 const char func[] = "LOGIO-IOCB";
2082 const char *type;
2083 fc_port_t *fcport;
2084 srb_t *sp;
2085 struct srb_iocb *lio;
2086 uint16_t *data;
2087 uint32_t iop[2];
2088
2089 sp = qla2x00_get_sp_from_handle(vha, func, req, logio);
2090 if (!sp)
2091 return;
2092
2093 lio = &sp->u.iocb_cmd;
2094 type = sp->name;
2095 fcport = sp->fcport;
2096 data = lio->u.logio.data;
2097
2098 data[0] = MBS_COMMAND_ERROR;
2099 data[1] = lio->u.logio.flags & SRB_LOGIN_RETRIED ?
2100 QLA_LOGIO_LOGIN_RETRIED : 0;
2101 if (logio->entry_status) {
2102 ql_log(ql_log_warn, fcport->vha, 0x5034,
2103 "Async-%s error entry - %8phC hdl=%x"
2104 "portid=%02x%02x%02x entry-status=%x.\n",
2105 type, fcport->port_name, sp->handle, fcport->d_id.b.domain,
2106 fcport->d_id.b.area, fcport->d_id.b.al_pa,
2107 logio->entry_status);
2108 ql_dump_buffer(ql_dbg_async + ql_dbg_buffer, vha, 0x504d,
2109 logio, sizeof(*logio));
2110
2111 goto logio_done;
2112 }
2113
2114 if (le16_to_cpu(logio->comp_status) == CS_COMPLETE) {
2115 ql_dbg(ql_dbg_async, sp->vha, 0x5036,
2116 "Async-%s complete: handle=%x pid=%06x wwpn=%8phC iop0=%x\n",
2117 type, sp->handle, fcport->d_id.b24, fcport->port_name,
2118 le32_to_cpu(logio->io_parameter[0]));
2119
2120 vha->hw->exch_starvation = 0;
2121 data[0] = MBS_COMMAND_COMPLETE;
2122
2123 if (sp->type == SRB_PRLI_CMD) {
2124 lio->u.logio.iop[0] =
2125 le32_to_cpu(logio->io_parameter[0]);
2126 lio->u.logio.iop[1] =
2127 le32_to_cpu(logio->io_parameter[1]);
2128 goto logio_done;
2129 }
2130
2131 if (sp->type != SRB_LOGIN_CMD)
2132 goto logio_done;
2133
2134 iop[0] = le32_to_cpu(logio->io_parameter[0]);
2135 if (iop[0] & BIT_4) {
2136 fcport->port_type = FCT_TARGET;
2137 if (iop[0] & BIT_8)
2138 fcport->flags |= FCF_FCP2_DEVICE;
2139 } else if (iop[0] & BIT_5)
2140 fcport->port_type = FCT_INITIATOR;
2141
2142 if (iop[0] & BIT_7)
2143 fcport->flags |= FCF_CONF_COMP_SUPPORTED;
2144
2145 if (logio->io_parameter[7] || logio->io_parameter[8])
2146 fcport->supported_classes |= FC_COS_CLASS2;
2147 if (logio->io_parameter[9] || logio->io_parameter[10])
2148 fcport->supported_classes |= FC_COS_CLASS3;
2149
2150 goto logio_done;
2151 }
2152
2153 iop[0] = le32_to_cpu(logio->io_parameter[0]);
2154 iop[1] = le32_to_cpu(logio->io_parameter[1]);
2155 lio->u.logio.iop[0] = iop[0];
2156 lio->u.logio.iop[1] = iop[1];
2157 switch (iop[0]) {
2158 case LSC_SCODE_PORTID_USED:
2159 data[0] = MBS_PORT_ID_USED;
2160 data[1] = LSW(iop[1]);
2161 break;
2162 case LSC_SCODE_NPORT_USED:
2163 data[0] = MBS_LOOP_ID_USED;
2164 break;
2165 case LSC_SCODE_CMD_FAILED:
2166 if (iop[1] == 0x0606) {
2167 /*
2168 * PLOGI/PRLI Completed. We must have Recv PLOGI/PRLI,
2169 * Target side acked.
2170 */
2171 data[0] = MBS_COMMAND_COMPLETE;
2172 goto logio_done;
2173 }
2174 data[0] = MBS_COMMAND_ERROR;
2175 break;
2176 case LSC_SCODE_NOXCB:
2177 vha->hw->exch_starvation++;
2178 if (vha->hw->exch_starvation > 5) {
2179 ql_log(ql_log_warn, vha, 0xd046,
2180 "Exchange starvation. Resetting RISC\n");
2181
2182 vha->hw->exch_starvation = 0;
2183
2184 if (IS_P3P_TYPE(vha->hw))
2185 set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
2186 else
2187 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2188 qla2xxx_wake_dpc(vha);
2189 }
2190 fallthrough;
2191 default:
2192 data[0] = MBS_COMMAND_ERROR;
2193 break;
2194 }
2195
2196 ql_dbg(ql_dbg_async, sp->vha, 0x5037,
2197 "Async-%s failed: handle=%x pid=%06x wwpn=%8phC comp_status=%x iop0=%x iop1=%x\n",
2198 type, sp->handle, fcport->d_id.b24, fcport->port_name,
2199 le16_to_cpu(logio->comp_status),
2200 le32_to_cpu(logio->io_parameter[0]),
2201 le32_to_cpu(logio->io_parameter[1]));
2202
2203 logio_done:
2204 sp->done(sp, 0);
2205 }
2206
2207 static void
2208 qla24xx_tm_iocb_entry(scsi_qla_host_t *vha, struct req_que *req, void *tsk)
2209 {
2210 const char func[] = "TMF-IOCB";
2211 const char *type;
2212 fc_port_t *fcport;
2213 srb_t *sp;
2214 struct srb_iocb *iocb;
2215 struct sts_entry_24xx *sts = (struct sts_entry_24xx *)tsk;
2216
2217 sp = qla2x00_get_sp_from_handle(vha, func, req, tsk);
2218 if (!sp)
2219 return;
2220
2221 iocb = &sp->u.iocb_cmd;
2222 type = sp->name;
2223 fcport = sp->fcport;
2224 iocb->u.tmf.data = QLA_SUCCESS;
2225
2226 if (sts->entry_status) {
2227 ql_log(ql_log_warn, fcport->vha, 0x5038,
2228 "Async-%s error - hdl=%x entry-status(%x).\n",
2229 type, sp->handle, sts->entry_status);
2230 iocb->u.tmf.data = QLA_FUNCTION_FAILED;
2231 } else if (sts->comp_status != cpu_to_le16(CS_COMPLETE)) {
2232 ql_log(ql_log_warn, fcport->vha, 0x5039,
2233 "Async-%s error - hdl=%x completion status(%x).\n",
2234 type, sp->handle, sts->comp_status);
2235 iocb->u.tmf.data = QLA_FUNCTION_FAILED;
2236 } else if ((le16_to_cpu(sts->scsi_status) &
2237 SS_RESPONSE_INFO_LEN_VALID)) {
2238 if (le32_to_cpu(sts->rsp_data_len) < 4) {
2239 ql_log(ql_log_warn, fcport->vha, 0x503b,
2240 "Async-%s error - hdl=%x not enough response(%d).\n",
2241 type, sp->handle, sts->rsp_data_len);
2242 } else if (sts->data[3]) {
2243 ql_log(ql_log_warn, fcport->vha, 0x503c,
2244 "Async-%s error - hdl=%x response(%x).\n",
2245 type, sp->handle, sts->data[3]);
2246 iocb->u.tmf.data = QLA_FUNCTION_FAILED;
2247 }
2248 }
2249
2250 if (iocb->u.tmf.data != QLA_SUCCESS)
2251 ql_dump_buffer(ql_dbg_async + ql_dbg_buffer, sp->vha, 0x5055,
2252 sts, sizeof(*sts));
2253
2254 sp->done(sp, 0);
2255 }
2256
2257 static void qla24xx_nvme_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
2258 void *tsk, srb_t *sp)
2259 {
2260 fc_port_t *fcport;
2261 struct srb_iocb *iocb;
2262 struct sts_entry_24xx *sts = (struct sts_entry_24xx *)tsk;
2263 uint16_t state_flags;
2264 struct nvmefc_fcp_req *fd;
2265 uint16_t ret = QLA_SUCCESS;
2266 __le16 comp_status = sts->comp_status;
2267 int logit = 0;
2268
2269 iocb = &sp->u.iocb_cmd;
2270 fcport = sp->fcport;
2271 iocb->u.nvme.comp_status = comp_status;
2272 state_flags = le16_to_cpu(sts->state_flags);
2273 fd = iocb->u.nvme.desc;
2274
2275 if (unlikely(iocb->u.nvme.aen_op))
2276 atomic_dec(&sp->vha->hw->nvme_active_aen_cnt);
2277
2278 if (unlikely(comp_status != CS_COMPLETE))
2279 logit = 1;
2280
2281 fd->transferred_length = fd->payload_length -
2282 le32_to_cpu(sts->residual_len);
2283
2284 /*
2285 * State flags: Bit 6 and 0.
2286 * If 0 is set, we don't care about 6.
2287 * both cases resp was dma'd to host buffer
2288 * if both are 0, that is good path case.
2289 * if six is set and 0 is clear, we need to
2290 * copy resp data from status iocb to resp buffer.
2291 */
2292 if (!(state_flags & (SF_FCP_RSP_DMA | SF_NVME_ERSP))) {
2293 iocb->u.nvme.rsp_pyld_len = 0;
2294 } else if ((state_flags & (SF_FCP_RSP_DMA | SF_NVME_ERSP)) ==
2295 (SF_FCP_RSP_DMA | SF_NVME_ERSP)) {
2296 /* Response already DMA'd to fd->rspaddr. */
2297 iocb->u.nvme.rsp_pyld_len = sts->nvme_rsp_pyld_len;
2298 } else if ((state_flags & SF_FCP_RSP_DMA)) {
2299 /*
2300 * Non-zero value in first 12 bytes of NVMe_RSP IU, treat this
2301 * as an error.
2302 */
2303 iocb->u.nvme.rsp_pyld_len = 0;
2304 fd->transferred_length = 0;
2305 ql_dbg(ql_dbg_io, fcport->vha, 0x307a,
2306 "Unexpected values in NVMe_RSP IU.\n");
2307 logit = 1;
2308 } else if (state_flags & SF_NVME_ERSP) {
2309 uint32_t *inbuf, *outbuf;
2310 uint16_t iter;
2311
2312 inbuf = (uint32_t *)&sts->nvme_ersp_data;
2313 outbuf = (uint32_t *)fd->rspaddr;
2314 iocb->u.nvme.rsp_pyld_len = sts->nvme_rsp_pyld_len;
2315 if (unlikely(le16_to_cpu(iocb->u.nvme.rsp_pyld_len) >
2316 sizeof(struct nvme_fc_ersp_iu))) {
2317 if (ql_mask_match(ql_dbg_io)) {
2318 WARN_ONCE(1, "Unexpected response payload length %u.\n",
2319 iocb->u.nvme.rsp_pyld_len);
2320 ql_log(ql_log_warn, fcport->vha, 0x5100,
2321 "Unexpected response payload length %u.\n",
2322 iocb->u.nvme.rsp_pyld_len);
2323 }
2324 iocb->u.nvme.rsp_pyld_len =
2325 cpu_to_le16(sizeof(struct nvme_fc_ersp_iu));
2326 }
2327 iter = le16_to_cpu(iocb->u.nvme.rsp_pyld_len) >> 2;
2328 for (; iter; iter--)
2329 *outbuf++ = swab32(*inbuf++);
2330 }
2331
2332 if (state_flags & SF_NVME_ERSP) {
2333 struct nvme_fc_ersp_iu *rsp_iu = fd->rspaddr;
2334 u32 tgt_xfer_len;
2335
2336 tgt_xfer_len = be32_to_cpu(rsp_iu->xfrd_len);
2337 if (fd->transferred_length != tgt_xfer_len) {
2338 ql_dbg(ql_dbg_io, fcport->vha, 0x3079,
2339 "Dropped frame(s) detected (sent/rcvd=%u/%u).\n",
2340 tgt_xfer_len, fd->transferred_length);
2341 logit = 1;
2342 } else if (le16_to_cpu(comp_status) == CS_DATA_UNDERRUN) {
2343 /*
2344 * Do not log if this is just an underflow and there
2345 * is no data loss.
2346 */
2347 logit = 0;
2348 }
2349 }
2350
2351 if (unlikely(logit))
2352 ql_log(ql_log_warn, fcport->vha, 0x5060,
2353 "NVME-%s ERR Handling - hdl=%x status(%x) tr_len:%x resid=%x ox_id=%x\n",
2354 sp->name, sp->handle, comp_status,
2355 fd->transferred_length, le32_to_cpu(sts->residual_len),
2356 sts->ox_id);
2357
2358 /*
2359 * If transport error then Failure (HBA rejects request)
2360 * otherwise transport will handle.
2361 */
2362 switch (le16_to_cpu(comp_status)) {
2363 case CS_COMPLETE:
2364 break;
2365
2366 case CS_RESET:
2367 case CS_PORT_UNAVAILABLE:
2368 case CS_PORT_LOGGED_OUT:
2369 fcport->nvme_flag |= NVME_FLAG_RESETTING;
2370 fallthrough;
2371 case CS_ABORTED:
2372 case CS_PORT_BUSY:
2373 fd->transferred_length = 0;
2374 iocb->u.nvme.rsp_pyld_len = 0;
2375 ret = QLA_ABORTED;
2376 break;
2377 case CS_DATA_UNDERRUN:
2378 break;
2379 default:
2380 ret = QLA_FUNCTION_FAILED;
2381 break;
2382 }
2383 sp->done(sp, ret);
2384 }
2385
2386 static void qla_ctrlvp_completed(scsi_qla_host_t *vha, struct req_que *req,
2387 struct vp_ctrl_entry_24xx *vce)
2388 {
2389 const char func[] = "CTRLVP-IOCB";
2390 srb_t *sp;
2391 int rval = QLA_SUCCESS;
2392
2393 sp = qla2x00_get_sp_from_handle(vha, func, req, vce);
2394 if (!sp)
2395 return;
2396
2397 if (vce->entry_status != 0) {
2398 ql_dbg(ql_dbg_vport, vha, 0x10c4,
2399 "%s: Failed to complete IOCB -- error status (%x)\n",
2400 sp->name, vce->entry_status);
2401 rval = QLA_FUNCTION_FAILED;
2402 } else if (vce->comp_status != cpu_to_le16(CS_COMPLETE)) {
2403 ql_dbg(ql_dbg_vport, vha, 0x10c5,
2404 "%s: Failed to complete IOCB -- completion status (%x) vpidx %x\n",
2405 sp->name, le16_to_cpu(vce->comp_status),
2406 le16_to_cpu(vce->vp_idx_failed));
2407 rval = QLA_FUNCTION_FAILED;
2408 } else {
2409 ql_dbg(ql_dbg_vport, vha, 0x10c6,
2410 "Done %s.\n", __func__);
2411 }
2412
2413 sp->rc = rval;
2414 sp->done(sp, rval);
2415 }
2416
2417 /* Process a single response queue entry. */
2418 static void qla2x00_process_response_entry(struct scsi_qla_host *vha,
2419 struct rsp_que *rsp,
2420 sts_entry_t *pkt)
2421 {
2422 sts21_entry_t *sts21_entry;
2423 sts22_entry_t *sts22_entry;
2424 uint16_t handle_cnt;
2425 uint16_t cnt;
2426
2427 switch (pkt->entry_type) {
2428 case STATUS_TYPE:
2429 qla2x00_status_entry(vha, rsp, pkt);
2430 break;
2431 case STATUS_TYPE_21:
2432 sts21_entry = (sts21_entry_t *)pkt;
2433 handle_cnt = sts21_entry->handle_count;
2434 for (cnt = 0; cnt < handle_cnt; cnt++)
2435 qla2x00_process_completed_request(vha, rsp->req,
2436 sts21_entry->handle[cnt]);
2437 break;
2438 case STATUS_TYPE_22:
2439 sts22_entry = (sts22_entry_t *)pkt;
2440 handle_cnt = sts22_entry->handle_count;
2441 for (cnt = 0; cnt < handle_cnt; cnt++)
2442 qla2x00_process_completed_request(vha, rsp->req,
2443 sts22_entry->handle[cnt]);
2444 break;
2445 case STATUS_CONT_TYPE:
2446 qla2x00_status_cont_entry(rsp, (sts_cont_entry_t *)pkt);
2447 break;
2448 case MBX_IOCB_TYPE:
2449 qla2x00_mbx_iocb_entry(vha, rsp->req, (struct mbx_entry *)pkt);
2450 break;
2451 case CT_IOCB_TYPE:
2452 qla2x00_ct_entry(vha, rsp->req, pkt, CT_IOCB_TYPE);
2453 break;
2454 default:
2455 /* Type Not Supported. */
2456 ql_log(ql_log_warn, vha, 0x504a,
2457 "Received unknown response pkt type %x entry status=%x.\n",
2458 pkt->entry_type, pkt->entry_status);
2459 break;
2460 }
2461 }
2462
2463 /**
2464 * qla2x00_process_response_queue() - Process response queue entries.
2465 * @rsp: response queue
2466 */
2467 void
2468 qla2x00_process_response_queue(struct rsp_que *rsp)
2469 {
2470 struct scsi_qla_host *vha;
2471 struct qla_hw_data *ha = rsp->hw;
2472 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2473 sts_entry_t *pkt;
2474
2475 vha = pci_get_drvdata(ha->pdev);
2476
2477 if (!vha->flags.online)
2478 return;
2479
2480 while (rsp->ring_ptr->signature != RESPONSE_PROCESSED) {
2481 pkt = (sts_entry_t *)rsp->ring_ptr;
2482
2483 rsp->ring_index++;
2484 if (rsp->ring_index == rsp->length) {
2485 rsp->ring_index = 0;
2486 rsp->ring_ptr = rsp->ring;
2487 } else {
2488 rsp->ring_ptr++;
2489 }
2490
2491 if (pkt->entry_status != 0) {
2492 qla2x00_error_entry(vha, rsp, pkt);
2493 ((response_t *)pkt)->signature = RESPONSE_PROCESSED;
2494 wmb();
2495 continue;
2496 }
2497
2498 qla2x00_process_response_entry(vha, rsp, pkt);
2499 ((response_t *)pkt)->signature = RESPONSE_PROCESSED;
2500 wmb();
2501 }
2502
2503 /* Adjust ring index */
2504 wrt_reg_word(ISP_RSP_Q_OUT(ha, reg), rsp->ring_index);
2505 }
2506
2507 static inline void
2508 qla2x00_handle_sense(srb_t *sp, uint8_t *sense_data, uint32_t par_sense_len,
2509 uint32_t sense_len, struct rsp_que *rsp, int res)
2510 {
2511 struct scsi_qla_host *vha = sp->vha;
2512 struct scsi_cmnd *cp = GET_CMD_SP(sp);
2513 uint32_t track_sense_len;
2514
2515 if (sense_len >= SCSI_SENSE_BUFFERSIZE)
2516 sense_len = SCSI_SENSE_BUFFERSIZE;
2517
2518 SET_CMD_SENSE_LEN(sp, sense_len);
2519 SET_CMD_SENSE_PTR(sp, cp->sense_buffer);
2520 track_sense_len = sense_len;
2521
2522 if (sense_len > par_sense_len)
2523 sense_len = par_sense_len;
2524
2525 memcpy(cp->sense_buffer, sense_data, sense_len);
2526
2527 SET_CMD_SENSE_PTR(sp, cp->sense_buffer + sense_len);
2528 track_sense_len -= sense_len;
2529 SET_CMD_SENSE_LEN(sp, track_sense_len);
2530
2531 if (track_sense_len != 0) {
2532 rsp->status_srb = sp;
2533 cp->result = res;
2534 }
2535
2536 if (sense_len) {
2537 ql_dbg(ql_dbg_io + ql_dbg_buffer, vha, 0x301c,
2538 "Check condition Sense data, nexus%ld:%d:%llu cmd=%p.\n",
2539 sp->vha->host_no, cp->device->id, cp->device->lun,
2540 cp);
2541 ql_dump_buffer(ql_dbg_io + ql_dbg_buffer, vha, 0x302b,
2542 cp->sense_buffer, sense_len);
2543 }
2544 }
2545
2546 struct scsi_dif_tuple {
2547 __be16 guard; /* Checksum */
2548 __be16 app_tag; /* APPL identifier */
2549 __be32 ref_tag; /* Target LBA or indirect LBA */
2550 };
2551
2552 /*
2553 * Checks the guard or meta-data for the type of error
2554 * detected by the HBA. In case of errors, we set the
2555 * ASC/ASCQ fields in the sense buffer with ILLEGAL_REQUEST
2556 * to indicate to the kernel that the HBA detected error.
2557 */
2558 static inline int
2559 qla2x00_handle_dif_error(srb_t *sp, struct sts_entry_24xx *sts24)
2560 {
2561 struct scsi_qla_host *vha = sp->vha;
2562 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
2563 uint8_t *ap = &sts24->data[12];
2564 uint8_t *ep = &sts24->data[20];
2565 uint32_t e_ref_tag, a_ref_tag;
2566 uint16_t e_app_tag, a_app_tag;
2567 uint16_t e_guard, a_guard;
2568
2569 /*
2570 * swab32 of the "data" field in the beginning of qla2x00_status_entry()
2571 * would make guard field appear at offset 2
2572 */
2573 a_guard = get_unaligned_le16(ap + 2);
2574 a_app_tag = get_unaligned_le16(ap + 0);
2575 a_ref_tag = get_unaligned_le32(ap + 4);
2576 e_guard = get_unaligned_le16(ep + 2);
2577 e_app_tag = get_unaligned_le16(ep + 0);
2578 e_ref_tag = get_unaligned_le32(ep + 4);
2579
2580 ql_dbg(ql_dbg_io, vha, 0x3023,
2581 "iocb(s) %p Returned STATUS.\n", sts24);
2582
2583 ql_dbg(ql_dbg_io, vha, 0x3024,
2584 "DIF ERROR in cmd 0x%x lba 0x%llx act ref"
2585 " tag=0x%x, exp ref_tag=0x%x, act app tag=0x%x, exp app"
2586 " tag=0x%x, act guard=0x%x, exp guard=0x%x.\n",
2587 cmd->cmnd[0], (u64)scsi_get_lba(cmd), a_ref_tag, e_ref_tag,
2588 a_app_tag, e_app_tag, a_guard, e_guard);
2589
2590 /*
2591 * Ignore sector if:
2592 * For type 3: ref & app tag is all 'f's
2593 * For type 0,1,2: app tag is all 'f's
2594 */
2595 if (a_app_tag == be16_to_cpu(T10_PI_APP_ESCAPE) &&
2596 (scsi_get_prot_type(cmd) != SCSI_PROT_DIF_TYPE3 ||
2597 a_ref_tag == be32_to_cpu(T10_PI_REF_ESCAPE))) {
2598 uint32_t blocks_done, resid;
2599 sector_t lba_s = scsi_get_lba(cmd);
2600
2601 /* 2TB boundary case covered automatically with this */
2602 blocks_done = e_ref_tag - (uint32_t)lba_s + 1;
2603
2604 resid = scsi_bufflen(cmd) - (blocks_done *
2605 cmd->device->sector_size);
2606
2607 scsi_set_resid(cmd, resid);
2608 cmd->result = DID_OK << 16;
2609
2610 /* Update protection tag */
2611 if (scsi_prot_sg_count(cmd)) {
2612 uint32_t i, j = 0, k = 0, num_ent;
2613 struct scatterlist *sg;
2614 struct t10_pi_tuple *spt;
2615
2616 /* Patch the corresponding protection tags */
2617 scsi_for_each_prot_sg(cmd, sg,
2618 scsi_prot_sg_count(cmd), i) {
2619 num_ent = sg_dma_len(sg) / 8;
2620 if (k + num_ent < blocks_done) {
2621 k += num_ent;
2622 continue;
2623 }
2624 j = blocks_done - k - 1;
2625 k = blocks_done;
2626 break;
2627 }
2628
2629 if (k != blocks_done) {
2630 ql_log(ql_log_warn, vha, 0x302f,
2631 "unexpected tag values tag:lba=%x:%llx)\n",
2632 e_ref_tag, (unsigned long long)lba_s);
2633 return 1;
2634 }
2635
2636 spt = page_address(sg_page(sg)) + sg->offset;
2637 spt += j;
2638
2639 spt->app_tag = T10_PI_APP_ESCAPE;
2640 if (scsi_get_prot_type(cmd) == SCSI_PROT_DIF_TYPE3)
2641 spt->ref_tag = T10_PI_REF_ESCAPE;
2642 }
2643
2644 return 0;
2645 }
2646
2647 /* check guard */
2648 if (e_guard != a_guard) {
2649 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
2650 0x10, 0x1);
2651 set_driver_byte(cmd, DRIVER_SENSE);
2652 set_host_byte(cmd, DID_ABORT);
2653 cmd->result |= SAM_STAT_CHECK_CONDITION;
2654 return 1;
2655 }
2656
2657 /* check ref tag */
2658 if (e_ref_tag != a_ref_tag) {
2659 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
2660 0x10, 0x3);
2661 set_driver_byte(cmd, DRIVER_SENSE);
2662 set_host_byte(cmd, DID_ABORT);
2663 cmd->result |= SAM_STAT_CHECK_CONDITION;
2664 return 1;
2665 }
2666
2667 /* check appl tag */
2668 if (e_app_tag != a_app_tag) {
2669 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
2670 0x10, 0x2);
2671 set_driver_byte(cmd, DRIVER_SENSE);
2672 set_host_byte(cmd, DID_ABORT);
2673 cmd->result |= SAM_STAT_CHECK_CONDITION;
2674 return 1;
2675 }
2676
2677 return 1;
2678 }
2679
2680 static void
2681 qla25xx_process_bidir_status_iocb(scsi_qla_host_t *vha, void *pkt,
2682 struct req_que *req, uint32_t index)
2683 {
2684 struct qla_hw_data *ha = vha->hw;
2685 srb_t *sp;
2686 uint16_t comp_status;
2687 uint16_t scsi_status;
2688 uint16_t thread_id;
2689 uint32_t rval = EXT_STATUS_OK;
2690 struct bsg_job *bsg_job = NULL;
2691 struct fc_bsg_request *bsg_request;
2692 struct fc_bsg_reply *bsg_reply;
2693 sts_entry_t *sts = pkt;
2694 struct sts_entry_24xx *sts24 = pkt;
2695
2696 /* Validate handle. */
2697 if (index >= req->num_outstanding_cmds) {
2698 ql_log(ql_log_warn, vha, 0x70af,
2699 "Invalid SCSI completion handle 0x%x.\n", index);
2700 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2701 return;
2702 }
2703
2704 sp = req->outstanding_cmds[index];
2705 if (!sp) {
2706 ql_log(ql_log_warn, vha, 0x70b0,
2707 "Req:%d: Invalid ISP SCSI completion handle(0x%x)\n",
2708 req->id, index);
2709
2710 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2711 return;
2712 }
2713
2714 /* Free outstanding command slot. */
2715 req->outstanding_cmds[index] = NULL;
2716 bsg_job = sp->u.bsg_job;
2717 bsg_request = bsg_job->request;
2718 bsg_reply = bsg_job->reply;
2719
2720 if (IS_FWI2_CAPABLE(ha)) {
2721 comp_status = le16_to_cpu(sts24->comp_status);
2722 scsi_status = le16_to_cpu(sts24->scsi_status) & SS_MASK;
2723 } else {
2724 comp_status = le16_to_cpu(sts->comp_status);
2725 scsi_status = le16_to_cpu(sts->scsi_status) & SS_MASK;
2726 }
2727
2728 thread_id = bsg_request->rqst_data.h_vendor.vendor_cmd[1];
2729 switch (comp_status) {
2730 case CS_COMPLETE:
2731 if (scsi_status == 0) {
2732 bsg_reply->reply_payload_rcv_len =
2733 bsg_job->reply_payload.payload_len;
2734 vha->qla_stats.input_bytes +=
2735 bsg_reply->reply_payload_rcv_len;
2736 vha->qla_stats.input_requests++;
2737 rval = EXT_STATUS_OK;
2738 }
2739 goto done;
2740
2741 case CS_DATA_OVERRUN:
2742 ql_dbg(ql_dbg_user, vha, 0x70b1,
2743 "Command completed with data overrun thread_id=%d\n",
2744 thread_id);
2745 rval = EXT_STATUS_DATA_OVERRUN;
2746 break;
2747
2748 case CS_DATA_UNDERRUN:
2749 ql_dbg(ql_dbg_user, vha, 0x70b2,
2750 "Command completed with data underrun thread_id=%d\n",
2751 thread_id);
2752 rval = EXT_STATUS_DATA_UNDERRUN;
2753 break;
2754 case CS_BIDIR_RD_OVERRUN:
2755 ql_dbg(ql_dbg_user, vha, 0x70b3,
2756 "Command completed with read data overrun thread_id=%d\n",
2757 thread_id);
2758 rval = EXT_STATUS_DATA_OVERRUN;
2759 break;
2760
2761 case CS_BIDIR_RD_WR_OVERRUN:
2762 ql_dbg(ql_dbg_user, vha, 0x70b4,
2763 "Command completed with read and write data overrun "
2764 "thread_id=%d\n", thread_id);
2765 rval = EXT_STATUS_DATA_OVERRUN;
2766 break;
2767
2768 case CS_BIDIR_RD_OVERRUN_WR_UNDERRUN:
2769 ql_dbg(ql_dbg_user, vha, 0x70b5,
2770 "Command completed with read data over and write data "
2771 "underrun thread_id=%d\n", thread_id);
2772 rval = EXT_STATUS_DATA_OVERRUN;
2773 break;
2774
2775 case CS_BIDIR_RD_UNDERRUN:
2776 ql_dbg(ql_dbg_user, vha, 0x70b6,
2777 "Command completed with read data underrun "
2778 "thread_id=%d\n", thread_id);
2779 rval = EXT_STATUS_DATA_UNDERRUN;
2780 break;
2781
2782 case CS_BIDIR_RD_UNDERRUN_WR_OVERRUN:
2783 ql_dbg(ql_dbg_user, vha, 0x70b7,
2784 "Command completed with read data under and write data "
2785 "overrun thread_id=%d\n", thread_id);
2786 rval = EXT_STATUS_DATA_UNDERRUN;
2787 break;
2788
2789 case CS_BIDIR_RD_WR_UNDERRUN:
2790 ql_dbg(ql_dbg_user, vha, 0x70b8,
2791 "Command completed with read and write data underrun "
2792 "thread_id=%d\n", thread_id);
2793 rval = EXT_STATUS_DATA_UNDERRUN;
2794 break;
2795
2796 case CS_BIDIR_DMA:
2797 ql_dbg(ql_dbg_user, vha, 0x70b9,
2798 "Command completed with data DMA error thread_id=%d\n",
2799 thread_id);
2800 rval = EXT_STATUS_DMA_ERR;
2801 break;
2802
2803 case CS_TIMEOUT:
2804 ql_dbg(ql_dbg_user, vha, 0x70ba,
2805 "Command completed with timeout thread_id=%d\n",
2806 thread_id);
2807 rval = EXT_STATUS_TIMEOUT;
2808 break;
2809 default:
2810 ql_dbg(ql_dbg_user, vha, 0x70bb,
2811 "Command completed with completion status=0x%x "
2812 "thread_id=%d\n", comp_status, thread_id);
2813 rval = EXT_STATUS_ERR;
2814 break;
2815 }
2816 bsg_reply->reply_payload_rcv_len = 0;
2817
2818 done:
2819 /* Return the vendor specific reply to API */
2820 bsg_reply->reply_data.vendor_reply.vendor_rsp[0] = rval;
2821 bsg_job->reply_len = sizeof(struct fc_bsg_reply);
2822 /* Always return DID_OK, bsg will send the vendor specific response
2823 * in this case only */
2824 sp->done(sp, DID_OK << 16);
2825
2826 }
2827
2828 /**
2829 * qla2x00_status_entry() - Process a Status IOCB entry.
2830 * @vha: SCSI driver HA context
2831 * @rsp: response queue
2832 * @pkt: Entry pointer
2833 */
2834 static void
2835 qla2x00_status_entry(scsi_qla_host_t *vha, struct rsp_que *rsp, void *pkt)
2836 {
2837 srb_t *sp;
2838 fc_port_t *fcport;
2839 struct scsi_cmnd *cp;
2840 sts_entry_t *sts = pkt;
2841 struct sts_entry_24xx *sts24 = pkt;
2842 uint16_t comp_status;
2843 uint16_t scsi_status;
2844 uint16_t ox_id;
2845 uint8_t lscsi_status;
2846 int32_t resid;
2847 uint32_t sense_len, par_sense_len, rsp_info_len, resid_len,
2848 fw_resid_len;
2849 uint8_t *rsp_info, *sense_data;
2850 struct qla_hw_data *ha = vha->hw;
2851 uint32_t handle;
2852 uint16_t que;
2853 struct req_que *req;
2854 int logit = 1;
2855 int res = 0;
2856 uint16_t state_flags = 0;
2857 uint16_t retry_delay = 0;
2858
2859 if (IS_FWI2_CAPABLE(ha)) {
2860 comp_status = le16_to_cpu(sts24->comp_status);
2861 scsi_status = le16_to_cpu(sts24->scsi_status) & SS_MASK;
2862 state_flags = le16_to_cpu(sts24->state_flags);
2863 } else {
2864 comp_status = le16_to_cpu(sts->comp_status);
2865 scsi_status = le16_to_cpu(sts->scsi_status) & SS_MASK;
2866 }
2867 handle = (uint32_t) LSW(sts->handle);
2868 que = MSW(sts->handle);
2869 req = ha->req_q_map[que];
2870
2871 /* Check for invalid queue pointer */
2872 if (req == NULL ||
2873 que >= find_first_zero_bit(ha->req_qid_map, ha->max_req_queues)) {
2874 ql_dbg(ql_dbg_io, vha, 0x3059,
2875 "Invalid status handle (0x%x): Bad req pointer. req=%p, "
2876 "que=%u.\n", sts->handle, req, que);
2877 return;
2878 }
2879
2880 /* Validate handle. */
2881 if (handle < req->num_outstanding_cmds) {
2882 sp = req->outstanding_cmds[handle];
2883 if (!sp) {
2884 ql_dbg(ql_dbg_io, vha, 0x3075,
2885 "%s(%ld): Already returned command for status handle (0x%x).\n",
2886 __func__, vha->host_no, sts->handle);
2887 return;
2888 }
2889 } else {
2890 ql_dbg(ql_dbg_io, vha, 0x3017,
2891 "Invalid status handle, out of range (0x%x).\n",
2892 sts->handle);
2893
2894 if (!test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) {
2895 if (IS_P3P_TYPE(ha))
2896 set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
2897 else
2898 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2899 qla2xxx_wake_dpc(vha);
2900 }
2901 return;
2902 }
2903
2904 if (sp->cmd_type != TYPE_SRB) {
2905 req->outstanding_cmds[handle] = NULL;
2906 ql_dbg(ql_dbg_io, vha, 0x3015,
2907 "Unknown sp->cmd_type %x %p).\n",
2908 sp->cmd_type, sp);
2909 return;
2910 }
2911
2912 /* NVME completion. */
2913 if (sp->type == SRB_NVME_CMD) {
2914 req->outstanding_cmds[handle] = NULL;
2915 qla24xx_nvme_iocb_entry(vha, req, pkt, sp);
2916 return;
2917 }
2918
2919 if (unlikely((state_flags & BIT_1) && (sp->type == SRB_BIDI_CMD))) {
2920 qla25xx_process_bidir_status_iocb(vha, pkt, req, handle);
2921 return;
2922 }
2923
2924 /* Task Management completion. */
2925 if (sp->type == SRB_TM_CMD) {
2926 qla24xx_tm_iocb_entry(vha, req, pkt);
2927 return;
2928 }
2929
2930 /* Fast path completion. */
2931 if (comp_status == CS_COMPLETE && scsi_status == 0) {
2932 qla2x00_process_completed_request(vha, req, handle);
2933
2934 return;
2935 }
2936
2937 req->outstanding_cmds[handle] = NULL;
2938 cp = GET_CMD_SP(sp);
2939 if (cp == NULL) {
2940 ql_dbg(ql_dbg_io, vha, 0x3018,
2941 "Command already returned (0x%x/%p).\n",
2942 sts->handle, sp);
2943
2944 return;
2945 }
2946
2947 lscsi_status = scsi_status & STATUS_MASK;
2948
2949 fcport = sp->fcport;
2950
2951 ox_id = 0;
2952 sense_len = par_sense_len = rsp_info_len = resid_len =
2953 fw_resid_len = 0;
2954 if (IS_FWI2_CAPABLE(ha)) {
2955 u16 sts24_retry_delay = le16_to_cpu(sts24->retry_delay);
2956
2957 if (scsi_status & SS_SENSE_LEN_VALID)
2958 sense_len = le32_to_cpu(sts24->sense_len);
2959 if (scsi_status & SS_RESPONSE_INFO_LEN_VALID)
2960 rsp_info_len = le32_to_cpu(sts24->rsp_data_len);
2961 if (scsi_status & (SS_RESIDUAL_UNDER | SS_RESIDUAL_OVER))
2962 resid_len = le32_to_cpu(sts24->rsp_residual_count);
2963 if (comp_status == CS_DATA_UNDERRUN)
2964 fw_resid_len = le32_to_cpu(sts24->residual_len);
2965 rsp_info = sts24->data;
2966 sense_data = sts24->data;
2967 host_to_fcp_swap(sts24->data, sizeof(sts24->data));
2968 ox_id = le16_to_cpu(sts24->ox_id);
2969 par_sense_len = sizeof(sts24->data);
2970 /* Valid values of the retry delay timer are 0x1-0xffef */
2971 if (sts24_retry_delay > 0 && sts24_retry_delay < 0xfff1) {
2972 retry_delay = sts24_retry_delay & 0x3fff;
2973 ql_dbg(ql_dbg_io, sp->vha, 0x3033,
2974 "%s: scope=%#x retry_delay=%#x\n", __func__,
2975 sts24_retry_delay >> 14, retry_delay);
2976 }
2977 } else {
2978 if (scsi_status & SS_SENSE_LEN_VALID)
2979 sense_len = le16_to_cpu(sts->req_sense_length);
2980 if (scsi_status & SS_RESPONSE_INFO_LEN_VALID)
2981 rsp_info_len = le16_to_cpu(sts->rsp_info_len);
2982 resid_len = le32_to_cpu(sts->residual_length);
2983 rsp_info = sts->rsp_info;
2984 sense_data = sts->req_sense_data;
2985 par_sense_len = sizeof(sts->req_sense_data);
2986 }
2987
2988 /* Check for any FCP transport errors. */
2989 if (scsi_status & SS_RESPONSE_INFO_LEN_VALID) {
2990 /* Sense data lies beyond any FCP RESPONSE data. */
2991 if (IS_FWI2_CAPABLE(ha)) {
2992 sense_data += rsp_info_len;
2993 par_sense_len -= rsp_info_len;
2994 }
2995 if (rsp_info_len > 3 && rsp_info[3]) {
2996 ql_dbg(ql_dbg_io, fcport->vha, 0x3019,
2997 "FCP I/O protocol failure (0x%x/0x%x).\n",
2998 rsp_info_len, rsp_info[3]);
2999
3000 res = DID_BUS_BUSY << 16;
3001 goto out;
3002 }
3003 }
3004
3005 /* Check for overrun. */
3006 if (IS_FWI2_CAPABLE(ha) && comp_status == CS_COMPLETE &&
3007 scsi_status & SS_RESIDUAL_OVER)
3008 comp_status = CS_DATA_OVERRUN;
3009
3010 /*
3011 * Check retry_delay_timer value if we receive a busy or
3012 * queue full.
3013 */
3014 if (lscsi_status == SAM_STAT_TASK_SET_FULL ||
3015 lscsi_status == SAM_STAT_BUSY)
3016 qla2x00_set_retry_delay_timestamp(fcport, retry_delay);
3017
3018 /*
3019 * Based on Host and scsi status generate status code for Linux
3020 */
3021 switch (comp_status) {
3022 case CS_COMPLETE:
3023 case CS_QUEUE_FULL:
3024 if (scsi_status == 0) {
3025 res = DID_OK << 16;
3026 break;
3027 }
3028 if (scsi_status & (SS_RESIDUAL_UNDER | SS_RESIDUAL_OVER)) {
3029 resid = resid_len;
3030 scsi_set_resid(cp, resid);
3031
3032 if (!lscsi_status &&
3033 ((unsigned)(scsi_bufflen(cp) - resid) <
3034 cp->underflow)) {
3035 ql_dbg(ql_dbg_io, fcport->vha, 0x301a,
3036 "Mid-layer underflow detected (0x%x of 0x%x bytes).\n",
3037 resid, scsi_bufflen(cp));
3038
3039 res = DID_ERROR << 16;
3040 break;
3041 }
3042 }
3043 res = DID_OK << 16 | lscsi_status;
3044
3045 if (lscsi_status == SAM_STAT_TASK_SET_FULL) {
3046 ql_dbg(ql_dbg_io, fcport->vha, 0x301b,
3047 "QUEUE FULL detected.\n");
3048 break;
3049 }
3050 logit = 0;
3051 if (lscsi_status != SS_CHECK_CONDITION)
3052 break;
3053
3054 memset(cp->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
3055 if (!(scsi_status & SS_SENSE_LEN_VALID))
3056 break;
3057
3058 qla2x00_handle_sense(sp, sense_data, par_sense_len, sense_len,
3059 rsp, res);
3060 break;
3061
3062 case CS_DATA_UNDERRUN:
3063 /* Use F/W calculated residual length. */
3064 resid = IS_FWI2_CAPABLE(ha) ? fw_resid_len : resid_len;
3065 scsi_set_resid(cp, resid);
3066 if (scsi_status & SS_RESIDUAL_UNDER) {
3067 if (IS_FWI2_CAPABLE(ha) && fw_resid_len != resid_len) {
3068 ql_dbg(ql_dbg_io, fcport->vha, 0x301d,
3069 "Dropped frame(s) detected (0x%x of 0x%x bytes).\n",
3070 resid, scsi_bufflen(cp));
3071
3072 res = DID_ERROR << 16 | lscsi_status;
3073 goto check_scsi_status;
3074 }
3075
3076 if (!lscsi_status &&
3077 ((unsigned)(scsi_bufflen(cp) - resid) <
3078 cp->underflow)) {
3079 ql_dbg(ql_dbg_io, fcport->vha, 0x301e,
3080 "Mid-layer underflow detected (0x%x of 0x%x bytes).\n",
3081 resid, scsi_bufflen(cp));
3082
3083 res = DID_ERROR << 16;
3084 break;
3085 }
3086 } else if (lscsi_status != SAM_STAT_TASK_SET_FULL &&
3087 lscsi_status != SAM_STAT_BUSY) {
3088 /*
3089 * scsi status of task set and busy are considered to be
3090 * task not completed.
3091 */
3092
3093 ql_dbg(ql_dbg_io, fcport->vha, 0x301f,
3094 "Dropped frame(s) detected (0x%x of 0x%x bytes).\n",
3095 resid, scsi_bufflen(cp));
3096
3097 res = DID_ERROR << 16 | lscsi_status;
3098 goto check_scsi_status;
3099 } else {
3100 ql_dbg(ql_dbg_io, fcport->vha, 0x3030,
3101 "scsi_status: 0x%x, lscsi_status: 0x%x\n",
3102 scsi_status, lscsi_status);
3103 }
3104
3105 res = DID_OK << 16 | lscsi_status;
3106 logit = 0;
3107
3108 check_scsi_status:
3109 /*
3110 * Check to see if SCSI Status is non zero. If so report SCSI
3111 * Status.
3112 */
3113 if (lscsi_status != 0) {
3114 if (lscsi_status == SAM_STAT_TASK_SET_FULL) {
3115 ql_dbg(ql_dbg_io, fcport->vha, 0x3020,
3116 "QUEUE FULL detected.\n");
3117 logit = 1;
3118 break;
3119 }
3120 if (lscsi_status != SS_CHECK_CONDITION)
3121 break;
3122
3123 memset(cp->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
3124 if (!(scsi_status & SS_SENSE_LEN_VALID))
3125 break;
3126
3127 qla2x00_handle_sense(sp, sense_data, par_sense_len,
3128 sense_len, rsp, res);
3129 }
3130 break;
3131
3132 case CS_PORT_LOGGED_OUT:
3133 case CS_PORT_CONFIG_CHG:
3134 case CS_PORT_BUSY:
3135 case CS_INCOMPLETE:
3136 case CS_PORT_UNAVAILABLE:
3137 case CS_TIMEOUT:
3138 case CS_RESET:
3139
3140 /*
3141 * We are going to have the fc class block the rport
3142 * while we try to recover so instruct the mid layer
3143 * to requeue until the class decides how to handle this.
3144 */
3145 res = DID_TRANSPORT_DISRUPTED << 16;
3146
3147 if (comp_status == CS_TIMEOUT) {
3148 if (IS_FWI2_CAPABLE(ha))
3149 break;
3150 else if ((le16_to_cpu(sts->status_flags) &
3151 SF_LOGOUT_SENT) == 0)
3152 break;
3153 }
3154
3155 if (atomic_read(&fcport->state) == FCS_ONLINE) {
3156 ql_dbg(ql_dbg_disc, fcport->vha, 0x3021,
3157 "Port to be marked lost on fcport=%02x%02x%02x, current "
3158 "port state= %s comp_status %x.\n", fcport->d_id.b.domain,
3159 fcport->d_id.b.area, fcport->d_id.b.al_pa,
3160 port_state_str[FCS_ONLINE],
3161 comp_status);
3162
3163 qlt_schedule_sess_for_deletion(fcport);
3164 }
3165
3166 break;
3167
3168 case CS_ABORTED:
3169 res = DID_RESET << 16;
3170 break;
3171
3172 case CS_DIF_ERROR:
3173 logit = qla2x00_handle_dif_error(sp, sts24);
3174 res = cp->result;
3175 break;
3176
3177 case CS_TRANSPORT:
3178 res = DID_ERROR << 16;
3179
3180 if (!IS_PI_SPLIT_DET_CAPABLE(ha))
3181 break;
3182
3183 if (state_flags & BIT_4)
3184 scmd_printk(KERN_WARNING, cp,
3185 "Unsupported device '%s' found.\n",
3186 cp->device->vendor);
3187 break;
3188
3189 case CS_DMA:
3190 ql_log(ql_log_info, fcport->vha, 0x3022,
3191 "CS_DMA error: 0x%x-0x%x (0x%x) nexus=%ld:%d:%llu portid=%06x oxid=0x%x cdb=%10phN len=0x%x rsp_info=0x%x resid=0x%x fw_resid=0x%x sp=%p cp=%p.\n",
3192 comp_status, scsi_status, res, vha->host_no,
3193 cp->device->id, cp->device->lun, fcport->d_id.b24,
3194 ox_id, cp->cmnd, scsi_bufflen(cp), rsp_info_len,
3195 resid_len, fw_resid_len, sp, cp);
3196 ql_dump_buffer(ql_dbg_tgt + ql_dbg_verbose, vha, 0xe0ee,
3197 pkt, sizeof(*sts24));
3198 res = DID_ERROR << 16;
3199 break;
3200 default:
3201 res = DID_ERROR << 16;
3202 break;
3203 }
3204
3205 out:
3206 if (logit)
3207 ql_dbg(ql_dbg_io, fcport->vha, 0x3022,
3208 "FCP command status: 0x%x-0x%x (0x%x) nexus=%ld:%d:%llu "
3209 "portid=%02x%02x%02x oxid=0x%x cdb=%10phN len=0x%x "
3210 "rsp_info=0x%x resid=0x%x fw_resid=0x%x sp=%p cp=%p.\n",
3211 comp_status, scsi_status, res, vha->host_no,
3212 cp->device->id, cp->device->lun, fcport->d_id.b.domain,
3213 fcport->d_id.b.area, fcport->d_id.b.al_pa, ox_id,
3214 cp->cmnd, scsi_bufflen(cp), rsp_info_len,
3215 resid_len, fw_resid_len, sp, cp);
3216
3217 if (rsp->status_srb == NULL)
3218 sp->done(sp, res);
3219 }
3220
3221 /**
3222 * qla2x00_status_cont_entry() - Process a Status Continuations entry.
3223 * @rsp: response queue
3224 * @pkt: Entry pointer
3225 *
3226 * Extended sense data.
3227 */
3228 static void
3229 qla2x00_status_cont_entry(struct rsp_que *rsp, sts_cont_entry_t *pkt)
3230 {
3231 uint8_t sense_sz = 0;
3232 struct qla_hw_data *ha = rsp->hw;
3233 struct scsi_qla_host *vha = pci_get_drvdata(ha->pdev);
3234 srb_t *sp = rsp->status_srb;
3235 struct scsi_cmnd *cp;
3236 uint32_t sense_len;
3237 uint8_t *sense_ptr;
3238
3239 if (!sp || !GET_CMD_SENSE_LEN(sp))
3240 return;
3241
3242 sense_len = GET_CMD_SENSE_LEN(sp);
3243 sense_ptr = GET_CMD_SENSE_PTR(sp);
3244
3245 cp = GET_CMD_SP(sp);
3246 if (cp == NULL) {
3247 ql_log(ql_log_warn, vha, 0x3025,
3248 "cmd is NULL: already returned to OS (sp=%p).\n", sp);
3249
3250 rsp->status_srb = NULL;
3251 return;
3252 }
3253
3254 if (sense_len > sizeof(pkt->data))
3255 sense_sz = sizeof(pkt->data);
3256 else
3257 sense_sz = sense_len;
3258
3259 /* Move sense data. */
3260 if (IS_FWI2_CAPABLE(ha))
3261 host_to_fcp_swap(pkt->data, sizeof(pkt->data));
3262 memcpy(sense_ptr, pkt->data, sense_sz);
3263 ql_dump_buffer(ql_dbg_io + ql_dbg_buffer, vha, 0x302c,
3264 sense_ptr, sense_sz);
3265
3266 sense_len -= sense_sz;
3267 sense_ptr += sense_sz;
3268
3269 SET_CMD_SENSE_PTR(sp, sense_ptr);
3270 SET_CMD_SENSE_LEN(sp, sense_len);
3271
3272 /* Place command on done queue. */
3273 if (sense_len == 0) {
3274 rsp->status_srb = NULL;
3275 sp->done(sp, cp->result);
3276 }
3277 }
3278
3279 /**
3280 * qla2x00_error_entry() - Process an error entry.
3281 * @vha: SCSI driver HA context
3282 * @rsp: response queue
3283 * @pkt: Entry pointer
3284 * return : 1=allow further error analysis. 0=no additional error analysis.
3285 */
3286 static int
3287 qla2x00_error_entry(scsi_qla_host_t *vha, struct rsp_que *rsp, sts_entry_t *pkt)
3288 {
3289 srb_t *sp;
3290 struct qla_hw_data *ha = vha->hw;
3291 const char func[] = "ERROR-IOCB";
3292 uint16_t que = MSW(pkt->handle);
3293 struct req_que *req = NULL;
3294 int res = DID_ERROR << 16;
3295
3296 ql_dbg(ql_dbg_async, vha, 0x502a,
3297 "iocb type %xh with error status %xh, handle %xh, rspq id %d\n",
3298 pkt->entry_type, pkt->entry_status, pkt->handle, rsp->id);
3299
3300 if (que >= ha->max_req_queues || !ha->req_q_map[que])
3301 goto fatal;
3302
3303 req = ha->req_q_map[que];
3304
3305 if (pkt->entry_status & RF_BUSY)
3306 res = DID_BUS_BUSY << 16;
3307
3308 if ((pkt->handle & ~QLA_TGT_HANDLE_MASK) == QLA_TGT_SKIP_HANDLE)
3309 return 0;
3310
3311 switch (pkt->entry_type) {
3312 case NOTIFY_ACK_TYPE:
3313 case STATUS_TYPE:
3314 case STATUS_CONT_TYPE:
3315 case LOGINOUT_PORT_IOCB_TYPE:
3316 case CT_IOCB_TYPE:
3317 case ELS_IOCB_TYPE:
3318 case ABORT_IOCB_TYPE:
3319 case MBX_IOCB_TYPE:
3320 default:
3321 sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
3322 if (sp) {
3323 sp->done(sp, res);
3324 return 0;
3325 }
3326 break;
3327
3328 case ABTS_RESP_24XX:
3329 case CTIO_TYPE7:
3330 case CTIO_CRC2:
3331 return 1;
3332 }
3333 fatal:
3334 ql_log(ql_log_warn, vha, 0x5030,
3335 "Error entry - invalid handle/queue (%04x).\n", que);
3336 return 0;
3337 }
3338
3339 /**
3340 * qla24xx_mbx_completion() - Process mailbox command completions.
3341 * @vha: SCSI driver HA context
3342 * @mb0: Mailbox0 register
3343 */
3344 static void
3345 qla24xx_mbx_completion(scsi_qla_host_t *vha, uint16_t mb0)
3346 {
3347 uint16_t cnt;
3348 uint32_t mboxes;
3349 __le16 __iomem *wptr;
3350 struct qla_hw_data *ha = vha->hw;
3351 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
3352
3353 /* Read all mbox registers? */
3354 WARN_ON_ONCE(ha->mbx_count > 32);
3355 mboxes = (1ULL << ha->mbx_count) - 1;
3356 if (!ha->mcp)
3357 ql_dbg(ql_dbg_async, vha, 0x504e, "MBX pointer ERROR.\n");
3358 else
3359 mboxes = ha->mcp->in_mb;
3360
3361 /* Load return mailbox registers. */
3362 ha->flags.mbox_int = 1;
3363 ha->mailbox_out[0] = mb0;
3364 mboxes >>= 1;
3365 wptr = &reg->mailbox1;
3366
3367 for (cnt = 1; cnt < ha->mbx_count; cnt++) {
3368 if (mboxes & BIT_0)
3369 ha->mailbox_out[cnt] = rd_reg_word(wptr);
3370
3371 mboxes >>= 1;
3372 wptr++;
3373 }
3374 }
3375
3376 static void
3377 qla24xx_abort_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
3378 struct abort_entry_24xx *pkt)
3379 {
3380 const char func[] = "ABT_IOCB";
3381 srb_t *sp;
3382 struct srb_iocb *abt;
3383
3384 sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
3385 if (!sp)
3386 return;
3387
3388 abt = &sp->u.iocb_cmd;
3389 abt->u.abt.comp_status = pkt->nport_handle;
3390 sp->done(sp, 0);
3391 }
3392
3393 void qla24xx_nvme_ls4_iocb(struct scsi_qla_host *vha,
3394 struct pt_ls4_request *pkt, struct req_que *req)
3395 {
3396 srb_t *sp;
3397 const char func[] = "LS4_IOCB";
3398 uint16_t comp_status;
3399
3400 sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
3401 if (!sp)
3402 return;
3403
3404 comp_status = le16_to_cpu(pkt->status);
3405 sp->done(sp, comp_status);
3406 }
3407
3408 /**
3409 * qla24xx_process_response_queue() - Process response queue entries.
3410 * @vha: SCSI driver HA context
3411 * @rsp: response queue
3412 */
3413 void qla24xx_process_response_queue(struct scsi_qla_host *vha,
3414 struct rsp_que *rsp)
3415 {
3416 struct sts_entry_24xx *pkt;
3417 struct qla_hw_data *ha = vha->hw;
3418 struct purex_entry_24xx *purex_entry;
3419 struct purex_item *pure_item;
3420
3421 if (!ha->flags.fw_started)
3422 return;
3423
3424 if (rsp->qpair->cpuid != smp_processor_id())
3425 qla_cpu_update(rsp->qpair, smp_processor_id());
3426
3427 while (rsp->ring_ptr->signature != RESPONSE_PROCESSED) {
3428 pkt = (struct sts_entry_24xx *)rsp->ring_ptr;
3429
3430 rsp->ring_index++;
3431 if (rsp->ring_index == rsp->length) {
3432 rsp->ring_index = 0;
3433 rsp->ring_ptr = rsp->ring;
3434 } else {
3435 rsp->ring_ptr++;
3436 }
3437
3438 if (pkt->entry_status != 0) {
3439 if (qla2x00_error_entry(vha, rsp, (sts_entry_t *) pkt))
3440 goto process_err;
3441
3442 ((response_t *)pkt)->signature = RESPONSE_PROCESSED;
3443 wmb();
3444 continue;
3445 }
3446 process_err:
3447
3448 switch (pkt->entry_type) {
3449 case STATUS_TYPE:
3450 qla2x00_status_entry(vha, rsp, pkt);
3451 break;
3452 case STATUS_CONT_TYPE:
3453 qla2x00_status_cont_entry(rsp, (sts_cont_entry_t *)pkt);
3454 break;
3455 case VP_RPT_ID_IOCB_TYPE:
3456 qla24xx_report_id_acquisition(vha,
3457 (struct vp_rpt_id_entry_24xx *)pkt);
3458 break;
3459 case LOGINOUT_PORT_IOCB_TYPE:
3460 qla24xx_logio_entry(vha, rsp->req,
3461 (struct logio_entry_24xx *)pkt);
3462 break;
3463 case CT_IOCB_TYPE:
3464 qla24xx_els_ct_entry(vha, rsp->req, pkt, CT_IOCB_TYPE);
3465 break;
3466 case ELS_IOCB_TYPE:
3467 qla24xx_els_ct_entry(vha, rsp->req, pkt, ELS_IOCB_TYPE);
3468 break;
3469 case ABTS_RECV_24XX:
3470 if (qla_ini_mode_enabled(vha)) {
3471 pure_item = qla24xx_copy_std_pkt(vha, pkt);
3472 if (!pure_item)
3473 break;
3474 qla24xx_queue_purex_item(vha, pure_item,
3475 qla24xx_process_abts);
3476 break;
3477 }
3478 if (IS_QLA83XX(ha) || IS_QLA27XX(ha) ||
3479 IS_QLA28XX(ha)) {
3480 /* ensure that the ATIO queue is empty */
3481 qlt_handle_abts_recv(vha, rsp,
3482 (response_t *)pkt);
3483 break;
3484 } else {
3485 qlt_24xx_process_atio_queue(vha, 1);
3486 }
3487 fallthrough;
3488 case ABTS_RESP_24XX:
3489 case CTIO_TYPE7:
3490 case CTIO_CRC2:
3491 qlt_response_pkt_all_vps(vha, rsp, (response_t *)pkt);
3492 break;
3493 case PT_LS4_REQUEST:
3494 qla24xx_nvme_ls4_iocb(vha, (struct pt_ls4_request *)pkt,
3495 rsp->req);
3496 break;
3497 case NOTIFY_ACK_TYPE:
3498 if (pkt->handle == QLA_TGT_SKIP_HANDLE)
3499 qlt_response_pkt_all_vps(vha, rsp,
3500 (response_t *)pkt);
3501 else
3502 qla24xxx_nack_iocb_entry(vha, rsp->req,
3503 (struct nack_to_isp *)pkt);
3504 break;
3505 case MARKER_TYPE:
3506 /* Do nothing in this case, this check is to prevent it
3507 * from falling into default case
3508 */
3509 break;
3510 case ABORT_IOCB_TYPE:
3511 qla24xx_abort_iocb_entry(vha, rsp->req,
3512 (struct abort_entry_24xx *)pkt);
3513 break;
3514 case MBX_IOCB_TYPE:
3515 qla24xx_mbx_iocb_entry(vha, rsp->req,
3516 (struct mbx_24xx_entry *)pkt);
3517 break;
3518 case VP_CTRL_IOCB_TYPE:
3519 qla_ctrlvp_completed(vha, rsp->req,
3520 (struct vp_ctrl_entry_24xx *)pkt);
3521 break;
3522 case PUREX_IOCB_TYPE:
3523 purex_entry = (void *)pkt;
3524 switch (purex_entry->els_frame_payload[3]) {
3525 case ELS_RDP:
3526 pure_item = qla24xx_copy_std_pkt(vha, pkt);
3527 if (!pure_item)
3528 break;
3529 qla24xx_queue_purex_item(vha, pure_item,
3530 qla24xx_process_purex_rdp);
3531 break;
3532 case ELS_FPIN:
3533 if (!vha->hw->flags.scm_enabled) {
3534 ql_log(ql_log_warn, vha, 0x5094,
3535 "SCM not active for this port\n");
3536 break;
3537 }
3538 pure_item = qla27xx_copy_fpin_pkt(vha,
3539 (void **)&pkt, &rsp);
3540 if (!pure_item)
3541 break;
3542 qla24xx_queue_purex_item(vha, pure_item,
3543 qla27xx_process_purex_fpin);
3544 break;
3545
3546 default:
3547 ql_log(ql_log_warn, vha, 0x509c,
3548 "Discarding ELS Request opcode 0x%x\n",
3549 purex_entry->els_frame_payload[3]);
3550 }
3551 break;
3552 default:
3553 /* Type Not Supported. */
3554 ql_dbg(ql_dbg_async, vha, 0x5042,
3555 "Received unknown response pkt type 0x%x entry status=%x.\n",
3556 pkt->entry_type, pkt->entry_status);
3557 break;
3558 }
3559 ((response_t *)pkt)->signature = RESPONSE_PROCESSED;
3560 wmb();
3561 }
3562
3563 /* Adjust ring index */
3564 if (IS_P3P_TYPE(ha)) {
3565 struct device_reg_82xx __iomem *reg = &ha->iobase->isp82;
3566
3567 wrt_reg_dword(&reg->rsp_q_out[0], rsp->ring_index);
3568 } else {
3569 wrt_reg_dword(rsp->rsp_q_out, rsp->ring_index);
3570 }
3571 }
3572
3573 static void
3574 qla2xxx_check_risc_status(scsi_qla_host_t *vha)
3575 {
3576 int rval;
3577 uint32_t cnt;
3578 struct qla_hw_data *ha = vha->hw;
3579 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
3580
3581 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha) && !IS_QLA83XX(ha) &&
3582 !IS_QLA27XX(ha) && !IS_QLA28XX(ha))
3583 return;
3584
3585 rval = QLA_SUCCESS;
3586 wrt_reg_dword(&reg->iobase_addr, 0x7C00);
3587 rd_reg_dword(&reg->iobase_addr);
3588 wrt_reg_dword(&reg->iobase_window, 0x0001);
3589 for (cnt = 10000; (rd_reg_dword(&reg->iobase_window) & BIT_0) == 0 &&
3590 rval == QLA_SUCCESS; cnt--) {
3591 if (cnt) {
3592 wrt_reg_dword(&reg->iobase_window, 0x0001);
3593 udelay(10);
3594 } else
3595 rval = QLA_FUNCTION_TIMEOUT;
3596 }
3597 if (rval == QLA_SUCCESS)
3598 goto next_test;
3599
3600 rval = QLA_SUCCESS;
3601 wrt_reg_dword(&reg->iobase_window, 0x0003);
3602 for (cnt = 100; (rd_reg_dword(&reg->iobase_window) & BIT_0) == 0 &&
3603 rval == QLA_SUCCESS; cnt--) {
3604 if (cnt) {
3605 wrt_reg_dword(&reg->iobase_window, 0x0003);
3606 udelay(10);
3607 } else
3608 rval = QLA_FUNCTION_TIMEOUT;
3609 }
3610 if (rval != QLA_SUCCESS)
3611 goto done;
3612
3613 next_test:
3614 if (rd_reg_dword(&reg->iobase_c8) & BIT_3)
3615 ql_log(ql_log_info, vha, 0x504c,
3616 "Additional code -- 0x55AA.\n");
3617
3618 done:
3619 wrt_reg_dword(&reg->iobase_window, 0x0000);
3620 rd_reg_dword(&reg->iobase_window);
3621 }
3622
3623 /**
3624 * qla24xx_intr_handler() - Process interrupts for the ISP23xx and ISP24xx.
3625 * @irq: interrupt number
3626 * @dev_id: SCSI driver HA context
3627 *
3628 * Called by system whenever the host adapter generates an interrupt.
3629 *
3630 * Returns handled flag.
3631 */
3632 irqreturn_t
3633 qla24xx_intr_handler(int irq, void *dev_id)
3634 {
3635 scsi_qla_host_t *vha;
3636 struct qla_hw_data *ha;
3637 struct device_reg_24xx __iomem *reg;
3638 int status;
3639 unsigned long iter;
3640 uint32_t stat;
3641 uint32_t hccr;
3642 uint16_t mb[8];
3643 struct rsp_que *rsp;
3644 unsigned long flags;
3645 bool process_atio = false;
3646
3647 rsp = (struct rsp_que *) dev_id;
3648 if (!rsp) {
3649 ql_log(ql_log_info, NULL, 0x5059,
3650 "%s: NULL response queue pointer.\n", __func__);
3651 return IRQ_NONE;
3652 }
3653
3654 ha = rsp->hw;
3655 reg = &ha->iobase->isp24;
3656 status = 0;
3657
3658 if (unlikely(pci_channel_offline(ha->pdev)))
3659 return IRQ_HANDLED;
3660
3661 spin_lock_irqsave(&ha->hardware_lock, flags);
3662 vha = pci_get_drvdata(ha->pdev);
3663 for (iter = 50; iter--; ) {
3664 stat = rd_reg_dword(&reg->host_status);
3665 if (qla2x00_check_reg32_for_disconnect(vha, stat))
3666 break;
3667 if (stat & HSRX_RISC_PAUSED) {
3668 if (unlikely(pci_channel_offline(ha->pdev)))
3669 break;
3670
3671 hccr = rd_reg_dword(&reg->hccr);
3672
3673 ql_log(ql_log_warn, vha, 0x504b,
3674 "RISC paused -- HCCR=%x, Dumping firmware.\n",
3675 hccr);
3676
3677 qla2xxx_check_risc_status(vha);
3678
3679 ha->isp_ops->fw_dump(vha);
3680 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
3681 break;
3682 } else if ((stat & HSRX_RISC_INT) == 0)
3683 break;
3684
3685 switch (stat & 0xff) {
3686 case INTR_ROM_MB_SUCCESS:
3687 case INTR_ROM_MB_FAILED:
3688 case INTR_MB_SUCCESS:
3689 case INTR_MB_FAILED:
3690 qla24xx_mbx_completion(vha, MSW(stat));
3691 status |= MBX_INTERRUPT;
3692
3693 break;
3694 case INTR_ASYNC_EVENT:
3695 mb[0] = MSW(stat);
3696 mb[1] = rd_reg_word(&reg->mailbox1);
3697 mb[2] = rd_reg_word(&reg->mailbox2);
3698 mb[3] = rd_reg_word(&reg->mailbox3);
3699 qla2x00_async_event(vha, rsp, mb);
3700 break;
3701 case INTR_RSP_QUE_UPDATE:
3702 case INTR_RSP_QUE_UPDATE_83XX:
3703 qla24xx_process_response_queue(vha, rsp);
3704 break;
3705 case INTR_ATIO_QUE_UPDATE_27XX:
3706 case INTR_ATIO_QUE_UPDATE:
3707 process_atio = true;
3708 break;
3709 case INTR_ATIO_RSP_QUE_UPDATE:
3710 process_atio = true;
3711 qla24xx_process_response_queue(vha, rsp);
3712 break;
3713 default:
3714 ql_dbg(ql_dbg_async, vha, 0x504f,
3715 "Unrecognized interrupt type (%d).\n", stat * 0xff);
3716 break;
3717 }
3718 wrt_reg_dword(&reg->hccr, HCCRX_CLR_RISC_INT);
3719 rd_reg_dword_relaxed(&reg->hccr);
3720 if (unlikely(IS_QLA83XX(ha) && (ha->pdev->revision == 1)))
3721 ndelay(3500);
3722 }
3723 qla2x00_handle_mbx_completion(ha, status);
3724 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3725
3726 if (process_atio) {
3727 spin_lock_irqsave(&ha->tgt.atio_lock, flags);
3728 qlt_24xx_process_atio_queue(vha, 0);
3729 spin_unlock_irqrestore(&ha->tgt.atio_lock, flags);
3730 }
3731
3732 return IRQ_HANDLED;
3733 }
3734
3735 static irqreturn_t
3736 qla24xx_msix_rsp_q(int irq, void *dev_id)
3737 {
3738 struct qla_hw_data *ha;
3739 struct rsp_que *rsp;
3740 struct device_reg_24xx __iomem *reg;
3741 struct scsi_qla_host *vha;
3742 unsigned long flags;
3743
3744 rsp = (struct rsp_que *) dev_id;
3745 if (!rsp) {
3746 ql_log(ql_log_info, NULL, 0x505a,
3747 "%s: NULL response queue pointer.\n", __func__);
3748 return IRQ_NONE;
3749 }
3750 ha = rsp->hw;
3751 reg = &ha->iobase->isp24;
3752
3753 spin_lock_irqsave(&ha->hardware_lock, flags);
3754
3755 vha = pci_get_drvdata(ha->pdev);
3756 qla24xx_process_response_queue(vha, rsp);
3757 if (!ha->flags.disable_msix_handshake) {
3758 wrt_reg_dword(&reg->hccr, HCCRX_CLR_RISC_INT);
3759 rd_reg_dword_relaxed(&reg->hccr);
3760 }
3761 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3762
3763 return IRQ_HANDLED;
3764 }
3765
3766 static irqreturn_t
3767 qla24xx_msix_default(int irq, void *dev_id)
3768 {
3769 scsi_qla_host_t *vha;
3770 struct qla_hw_data *ha;
3771 struct rsp_que *rsp;
3772 struct device_reg_24xx __iomem *reg;
3773 int status;
3774 uint32_t stat;
3775 uint32_t hccr;
3776 uint16_t mb[8];
3777 unsigned long flags;
3778 bool process_atio = false;
3779
3780 rsp = (struct rsp_que *) dev_id;
3781 if (!rsp) {
3782 ql_log(ql_log_info, NULL, 0x505c,
3783 "%s: NULL response queue pointer.\n", __func__);
3784 return IRQ_NONE;
3785 }
3786 ha = rsp->hw;
3787 reg = &ha->iobase->isp24;
3788 status = 0;
3789
3790 spin_lock_irqsave(&ha->hardware_lock, flags);
3791 vha = pci_get_drvdata(ha->pdev);
3792 do {
3793 stat = rd_reg_dword(&reg->host_status);
3794 if (qla2x00_check_reg32_for_disconnect(vha, stat))
3795 break;
3796 if (stat & HSRX_RISC_PAUSED) {
3797 if (unlikely(pci_channel_offline(ha->pdev)))
3798 break;
3799
3800 hccr = rd_reg_dword(&reg->hccr);
3801
3802 ql_log(ql_log_info, vha, 0x5050,
3803 "RISC paused -- HCCR=%x, Dumping firmware.\n",
3804 hccr);
3805
3806 qla2xxx_check_risc_status(vha);
3807
3808 ha->isp_ops->fw_dump(vha);
3809 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
3810 break;
3811 } else if ((stat & HSRX_RISC_INT) == 0)
3812 break;
3813
3814 switch (stat & 0xff) {
3815 case INTR_ROM_MB_SUCCESS:
3816 case INTR_ROM_MB_FAILED:
3817 case INTR_MB_SUCCESS:
3818 case INTR_MB_FAILED:
3819 qla24xx_mbx_completion(vha, MSW(stat));
3820 status |= MBX_INTERRUPT;
3821
3822 break;
3823 case INTR_ASYNC_EVENT:
3824 mb[0] = MSW(stat);
3825 mb[1] = rd_reg_word(&reg->mailbox1);
3826 mb[2] = rd_reg_word(&reg->mailbox2);
3827 mb[3] = rd_reg_word(&reg->mailbox3);
3828 qla2x00_async_event(vha, rsp, mb);
3829 break;
3830 case INTR_RSP_QUE_UPDATE:
3831 case INTR_RSP_QUE_UPDATE_83XX:
3832 qla24xx_process_response_queue(vha, rsp);
3833 break;
3834 case INTR_ATIO_QUE_UPDATE_27XX:
3835 case INTR_ATIO_QUE_UPDATE:
3836 process_atio = true;
3837 break;
3838 case INTR_ATIO_RSP_QUE_UPDATE:
3839 process_atio = true;
3840 qla24xx_process_response_queue(vha, rsp);
3841 break;
3842 default:
3843 ql_dbg(ql_dbg_async, vha, 0x5051,
3844 "Unrecognized interrupt type (%d).\n", stat & 0xff);
3845 break;
3846 }
3847 wrt_reg_dword(&reg->hccr, HCCRX_CLR_RISC_INT);
3848 } while (0);
3849 qla2x00_handle_mbx_completion(ha, status);
3850 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3851
3852 if (process_atio) {
3853 spin_lock_irqsave(&ha->tgt.atio_lock, flags);
3854 qlt_24xx_process_atio_queue(vha, 0);
3855 spin_unlock_irqrestore(&ha->tgt.atio_lock, flags);
3856 }
3857
3858 return IRQ_HANDLED;
3859 }
3860
3861 irqreturn_t
3862 qla2xxx_msix_rsp_q(int irq, void *dev_id)
3863 {
3864 struct qla_hw_data *ha;
3865 struct qla_qpair *qpair;
3866
3867 qpair = dev_id;
3868 if (!qpair) {
3869 ql_log(ql_log_info, NULL, 0x505b,
3870 "%s: NULL response queue pointer.\n", __func__);
3871 return IRQ_NONE;
3872 }
3873 ha = qpair->hw;
3874
3875 queue_work(ha->wq, &qpair->q_work);
3876
3877 return IRQ_HANDLED;
3878 }
3879
3880 irqreturn_t
3881 qla2xxx_msix_rsp_q_hs(int irq, void *dev_id)
3882 {
3883 struct qla_hw_data *ha;
3884 struct qla_qpair *qpair;
3885 struct device_reg_24xx __iomem *reg;
3886 unsigned long flags;
3887
3888 qpair = dev_id;
3889 if (!qpair) {
3890 ql_log(ql_log_info, NULL, 0x505b,
3891 "%s: NULL response queue pointer.\n", __func__);
3892 return IRQ_NONE;
3893 }
3894 ha = qpair->hw;
3895
3896 reg = &ha->iobase->isp24;
3897 spin_lock_irqsave(&ha->hardware_lock, flags);
3898 wrt_reg_dword(&reg->hccr, HCCRX_CLR_RISC_INT);
3899 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3900
3901 queue_work(ha->wq, &qpair->q_work);
3902
3903 return IRQ_HANDLED;
3904 }
3905
3906 /* Interrupt handling helpers. */
3907
3908 struct qla_init_msix_entry {
3909 const char *name;
3910 irq_handler_t handler;
3911 };
3912
3913 static const struct qla_init_msix_entry msix_entries[] = {
3914 { "default", qla24xx_msix_default },
3915 { "rsp_q", qla24xx_msix_rsp_q },
3916 { "atio_q", qla83xx_msix_atio_q },
3917 { "qpair_multiq", qla2xxx_msix_rsp_q },
3918 { "qpair_multiq_hs", qla2xxx_msix_rsp_q_hs },
3919 };
3920
3921 static const struct qla_init_msix_entry qla82xx_msix_entries[] = {
3922 { "qla2xxx (default)", qla82xx_msix_default },
3923 { "qla2xxx (rsp_q)", qla82xx_msix_rsp_q },
3924 };
3925
3926 static int
3927 qla24xx_enable_msix(struct qla_hw_data *ha, struct rsp_que *rsp)
3928 {
3929 int i, ret;
3930 struct qla_msix_entry *qentry;
3931 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
3932 int min_vecs = QLA_BASE_VECTORS;
3933 struct irq_affinity desc = {
3934 .pre_vectors = QLA_BASE_VECTORS,
3935 };
3936
3937 if (QLA_TGT_MODE_ENABLED() && (ql2xenablemsix != 0) &&
3938 IS_ATIO_MSIX_CAPABLE(ha)) {
3939 desc.pre_vectors++;
3940 min_vecs++;
3941 }
3942
3943 if (USER_CTRL_IRQ(ha) || !ha->mqiobase) {
3944 /* user wants to control IRQ setting for target mode */
3945 ret = pci_alloc_irq_vectors(ha->pdev, min_vecs,
3946 ha->msix_count, PCI_IRQ_MSIX);
3947 } else
3948 ret = pci_alloc_irq_vectors_affinity(ha->pdev, min_vecs,
3949 ha->msix_count, PCI_IRQ_MSIX | PCI_IRQ_AFFINITY,
3950 &desc);
3951
3952 if (ret < 0) {
3953 ql_log(ql_log_fatal, vha, 0x00c7,
3954 "MSI-X: Failed to enable support, "
3955 "giving up -- %d/%d.\n",
3956 ha->msix_count, ret);
3957 goto msix_out;
3958 } else if (ret < ha->msix_count) {
3959 ql_log(ql_log_info, vha, 0x00c6,
3960 "MSI-X: Using %d vectors\n", ret);
3961 ha->msix_count = ret;
3962 /* Recalculate queue values */
3963 if (ha->mqiobase && (ql2xmqsupport || ql2xnvmeenable)) {
3964 ha->max_req_queues = ha->msix_count - 1;
3965
3966 /* ATIOQ needs 1 vector. That's 1 less QPair */
3967 if (QLA_TGT_MODE_ENABLED())
3968 ha->max_req_queues--;
3969
3970 ha->max_rsp_queues = ha->max_req_queues;
3971
3972 ha->max_qpairs = ha->max_req_queues - 1;
3973 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0190,
3974 "Adjusted Max no of queues pairs: %d.\n", ha->max_qpairs);
3975 }
3976 }
3977 vha->irq_offset = desc.pre_vectors;
3978 ha->msix_entries = kcalloc(ha->msix_count,
3979 sizeof(struct qla_msix_entry),
3980 GFP_KERNEL);
3981 if (!ha->msix_entries) {
3982 ql_log(ql_log_fatal, vha, 0x00c8,
3983 "Failed to allocate memory for ha->msix_entries.\n");
3984 ret = -ENOMEM;
3985 goto free_irqs;
3986 }
3987 ha->flags.msix_enabled = 1;
3988
3989 for (i = 0; i < ha->msix_count; i++) {
3990 qentry = &ha->msix_entries[i];
3991 qentry->vector = pci_irq_vector(ha->pdev, i);
3992 qentry->entry = i;
3993 qentry->have_irq = 0;
3994 qentry->in_use = 0;
3995 qentry->handle = NULL;
3996 }
3997
3998 /* Enable MSI-X vectors for the base queue */
3999 for (i = 0; i < QLA_BASE_VECTORS; i++) {
4000 qentry = &ha->msix_entries[i];
4001 qentry->handle = rsp;
4002 rsp->msix = qentry;
4003 scnprintf(qentry->name, sizeof(qentry->name),
4004 "qla2xxx%lu_%s", vha->host_no, msix_entries[i].name);
4005 if (IS_P3P_TYPE(ha))
4006 ret = request_irq(qentry->vector,
4007 qla82xx_msix_entries[i].handler,
4008 0, qla82xx_msix_entries[i].name, rsp);
4009 else
4010 ret = request_irq(qentry->vector,
4011 msix_entries[i].handler,
4012 0, qentry->name, rsp);
4013 if (ret)
4014 goto msix_register_fail;
4015 qentry->have_irq = 1;
4016 qentry->in_use = 1;
4017 }
4018
4019 /*
4020 * If target mode is enable, also request the vector for the ATIO
4021 * queue.
4022 */
4023 if (QLA_TGT_MODE_ENABLED() && (ql2xenablemsix != 0) &&
4024 IS_ATIO_MSIX_CAPABLE(ha)) {
4025 qentry = &ha->msix_entries[QLA_ATIO_VECTOR];
4026 rsp->msix = qentry;
4027 qentry->handle = rsp;
4028 scnprintf(qentry->name, sizeof(qentry->name),
4029 "qla2xxx%lu_%s", vha->host_no,
4030 msix_entries[QLA_ATIO_VECTOR].name);
4031 qentry->in_use = 1;
4032 ret = request_irq(qentry->vector,
4033 msix_entries[QLA_ATIO_VECTOR].handler,
4034 0, qentry->name, rsp);
4035 qentry->have_irq = 1;
4036 }
4037
4038 msix_register_fail:
4039 if (ret) {
4040 ql_log(ql_log_fatal, vha, 0x00cb,
4041 "MSI-X: unable to register handler -- %x/%d.\n",
4042 qentry->vector, ret);
4043 qla2x00_free_irqs(vha);
4044 ha->mqenable = 0;
4045 goto msix_out;
4046 }
4047
4048 /* Enable MSI-X vector for response queue update for queue 0 */
4049 if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
4050 if (ha->msixbase && ha->mqiobase &&
4051 (ha->max_rsp_queues > 1 || ha->max_req_queues > 1 ||
4052 ql2xmqsupport))
4053 ha->mqenable = 1;
4054 } else
4055 if (ha->mqiobase &&
4056 (ha->max_rsp_queues > 1 || ha->max_req_queues > 1 ||
4057 ql2xmqsupport))
4058 ha->mqenable = 1;
4059 ql_dbg(ql_dbg_multiq, vha, 0xc005,
4060 "mqiobase=%p, max_rsp_queues=%d, max_req_queues=%d.\n",
4061 ha->mqiobase, ha->max_rsp_queues, ha->max_req_queues);
4062 ql_dbg(ql_dbg_init, vha, 0x0055,
4063 "mqiobase=%p, max_rsp_queues=%d, max_req_queues=%d.\n",
4064 ha->mqiobase, ha->max_rsp_queues, ha->max_req_queues);
4065
4066 msix_out:
4067 return ret;
4068
4069 free_irqs:
4070 pci_free_irq_vectors(ha->pdev);
4071 goto msix_out;
4072 }
4073
4074 int
4075 qla2x00_request_irqs(struct qla_hw_data *ha, struct rsp_que *rsp)
4076 {
4077 int ret = QLA_FUNCTION_FAILED;
4078 device_reg_t *reg = ha->iobase;
4079 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
4080
4081 /* If possible, enable MSI-X. */
4082 if (ql2xenablemsix == 0 || (!IS_QLA2432(ha) && !IS_QLA2532(ha) &&
4083 !IS_QLA8432(ha) && !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha) &&
4084 !IS_QLAFX00(ha) && !IS_QLA27XX(ha) && !IS_QLA28XX(ha)))
4085 goto skip_msi;
4086
4087 if (ql2xenablemsix == 2)
4088 goto skip_msix;
4089
4090 if (ha->pdev->subsystem_vendor == PCI_VENDOR_ID_HP &&
4091 (ha->pdev->subsystem_device == 0x7040 ||
4092 ha->pdev->subsystem_device == 0x7041 ||
4093 ha->pdev->subsystem_device == 0x1705)) {
4094 ql_log(ql_log_warn, vha, 0x0034,
4095 "MSI-X: Unsupported ISP 2432 SSVID/SSDID (0x%X,0x%X).\n",
4096 ha->pdev->subsystem_vendor,
4097 ha->pdev->subsystem_device);
4098 goto skip_msi;
4099 }
4100
4101 if (IS_QLA2432(ha) && (ha->pdev->revision < QLA_MSIX_CHIP_REV_24XX)) {
4102 ql_log(ql_log_warn, vha, 0x0035,
4103 "MSI-X; Unsupported ISP2432 (0x%X, 0x%X).\n",
4104 ha->pdev->revision, QLA_MSIX_CHIP_REV_24XX);
4105 goto skip_msix;
4106 }
4107
4108 ret = qla24xx_enable_msix(ha, rsp);
4109 if (!ret) {
4110 ql_dbg(ql_dbg_init, vha, 0x0036,
4111 "MSI-X: Enabled (0x%X, 0x%X).\n",
4112 ha->chip_revision, ha->fw_attributes);
4113 goto clear_risc_ints;
4114 }
4115
4116 skip_msix:
4117
4118 ql_log(ql_log_info, vha, 0x0037,
4119 "Falling back-to MSI mode -- ret=%d.\n", ret);
4120
4121 if (!IS_QLA24XX(ha) && !IS_QLA2532(ha) && !IS_QLA8432(ha) &&
4122 !IS_QLA8001(ha) && !IS_P3P_TYPE(ha) && !IS_QLAFX00(ha) &&
4123 !IS_QLA27XX(ha) && !IS_QLA28XX(ha))
4124 goto skip_msi;
4125
4126 ret = pci_alloc_irq_vectors(ha->pdev, 1, 1, PCI_IRQ_MSI);
4127 if (ret > 0) {
4128 ql_dbg(ql_dbg_init, vha, 0x0038,
4129 "MSI: Enabled.\n");
4130 ha->flags.msi_enabled = 1;
4131 } else
4132 ql_log(ql_log_warn, vha, 0x0039,
4133 "Falling back-to INTa mode -- ret=%d.\n", ret);
4134 skip_msi:
4135
4136 /* Skip INTx on ISP82xx. */
4137 if (!ha->flags.msi_enabled && IS_QLA82XX(ha))
4138 return QLA_FUNCTION_FAILED;
4139
4140 ret = request_irq(ha->pdev->irq, ha->isp_ops->intr_handler,
4141 ha->flags.msi_enabled ? 0 : IRQF_SHARED,
4142 QLA2XXX_DRIVER_NAME, rsp);
4143 if (ret) {
4144 ql_log(ql_log_warn, vha, 0x003a,
4145 "Failed to reserve interrupt %d already in use.\n",
4146 ha->pdev->irq);
4147 goto fail;
4148 } else if (!ha->flags.msi_enabled) {
4149 ql_dbg(ql_dbg_init, vha, 0x0125,
4150 "INTa mode: Enabled.\n");
4151 ha->flags.mr_intr_valid = 1;
4152 }
4153
4154 clear_risc_ints:
4155 if (IS_FWI2_CAPABLE(ha) || IS_QLAFX00(ha))
4156 goto fail;
4157
4158 spin_lock_irq(&ha->hardware_lock);
4159 wrt_reg_word(&reg->isp.semaphore, 0);
4160 spin_unlock_irq(&ha->hardware_lock);
4161
4162 fail:
4163 return ret;
4164 }
4165
4166 void
4167 qla2x00_free_irqs(scsi_qla_host_t *vha)
4168 {
4169 struct qla_hw_data *ha = vha->hw;
4170 struct rsp_que *rsp;
4171 struct qla_msix_entry *qentry;
4172 int i;
4173
4174 /*
4175 * We need to check that ha->rsp_q_map is valid in case we are called
4176 * from a probe failure context.
4177 */
4178 if (!ha->rsp_q_map || !ha->rsp_q_map[0])
4179 goto free_irqs;
4180 rsp = ha->rsp_q_map[0];
4181
4182 if (ha->flags.msix_enabled) {
4183 for (i = 0; i < ha->msix_count; i++) {
4184 qentry = &ha->msix_entries[i];
4185 if (qentry->have_irq) {
4186 irq_set_affinity_notifier(qentry->vector, NULL);
4187 free_irq(pci_irq_vector(ha->pdev, i), qentry->handle);
4188 }
4189 }
4190 kfree(ha->msix_entries);
4191 ha->msix_entries = NULL;
4192 ha->flags.msix_enabled = 0;
4193 ql_dbg(ql_dbg_init, vha, 0x0042,
4194 "Disabled MSI-X.\n");
4195 } else {
4196 free_irq(pci_irq_vector(ha->pdev, 0), rsp);
4197 }
4198
4199 free_irqs:
4200 pci_free_irq_vectors(ha->pdev);
4201 }
4202
4203 int qla25xx_request_irq(struct qla_hw_data *ha, struct qla_qpair *qpair,
4204 struct qla_msix_entry *msix, int vector_type)
4205 {
4206 const struct qla_init_msix_entry *intr = &msix_entries[vector_type];
4207 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
4208 int ret;
4209
4210 scnprintf(msix->name, sizeof(msix->name),
4211 "qla2xxx%lu_qpair%d", vha->host_no, qpair->id);
4212 ret = request_irq(msix->vector, intr->handler, 0, msix->name, qpair);
4213 if (ret) {
4214 ql_log(ql_log_fatal, vha, 0x00e6,
4215 "MSI-X: Unable to register handler -- %x/%d.\n",
4216 msix->vector, ret);
4217 return ret;
4218 }
4219 msix->have_irq = 1;
4220 msix->handle = qpair;
4221 return ret;
4222 }