Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 2 | * QLogic Fibre Channel HBA Driver |
Armen Baloyan | bd21eaf | 2014-04-11 16:54:24 -0400 | [diff] [blame] | 3 | * Copyright (c) 2003-2014 QLogic Corporation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 5 | * See LICENSE.qla2xxx for copyright and licensing details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Quinn Tran | f83adb6 | 2014-04-11 16:54:43 -0400 | [diff] [blame] | 8 | #include "qla_target.h" |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 9 | /** |
| 10 | * qla24xx_calc_iocbs() - Determine number of Command Type 3 and |
| 11 | * Continuation Type 1 IOCBs to allocate. |
| 12 | * |
| 13 | * @dsds: number of data segment decriptors needed |
| 14 | * |
| 15 | * Returns the number of IOCB entries needed to store @dsds. |
| 16 | */ |
| 17 | static inline uint16_t |
| 18 | qla24xx_calc_iocbs(scsi_qla_host_t *vha, uint16_t dsds) |
| 19 | { |
| 20 | uint16_t iocbs; |
| 21 | |
| 22 | iocbs = 1; |
| 23 | if (dsds > 1) { |
| 24 | iocbs += (dsds - 1) / 5; |
| 25 | if ((dsds - 1) % 5) |
| 26 | iocbs++; |
| 27 | } |
| 28 | return iocbs; |
| 29 | } |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | /* |
| 32 | * qla2x00_debounce_register |
| 33 | * Debounce register. |
| 34 | * |
| 35 | * Input: |
| 36 | * port = register address. |
| 37 | * |
| 38 | * Returns: |
| 39 | * register value. |
| 40 | */ |
| 41 | static __inline__ uint16_t |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 42 | qla2x00_debounce_register(volatile uint16_t __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
| 44 | volatile uint16_t first; |
| 45 | volatile uint16_t second; |
| 46 | |
| 47 | do { |
| 48 | first = RD_REG_WORD(addr); |
| 49 | barrier(); |
| 50 | cpu_relax(); |
| 51 | second = RD_REG_WORD(addr); |
| 52 | } while (first != second); |
| 53 | |
| 54 | return (first); |
| 55 | } |
| 56 | |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 57 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 58 | qla2x00_poll(struct rsp_que *rsp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
Andrew Vasquez | d2ba567 | 2008-05-12 22:21:14 -0700 | [diff] [blame] | 60 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 61 | struct qla_hw_data *ha = rsp->hw; |
Andrew Vasquez | d2ba567 | 2008-05-12 22:21:14 -0700 | [diff] [blame] | 62 | local_irq_save(flags); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 63 | if (IS_P3P_TYPE(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 64 | qla82xx_poll(0, rsp); |
| 65 | else |
| 66 | ha->isp_ops->intr_handler(0, rsp); |
Andrew Vasquez | d2ba567 | 2008-05-12 22:21:14 -0700 | [diff] [blame] | 67 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Andrew Vasquez | 2b6c0ce | 2005-07-06 10:31:17 -0700 | [diff] [blame] | 70 | static inline uint8_t * |
| 71 | host_to_fcp_swap(uint8_t *fcp, uint32_t bsize) |
| 72 | { |
| 73 | uint32_t *ifcp = (uint32_t *) fcp; |
| 74 | uint32_t *ofcp = (uint32_t *) fcp; |
| 75 | uint32_t iter = bsize >> 2; |
| 76 | |
| 77 | for (; iter ; iter--) |
| 78 | *ofcp++ = swab32(*ifcp++); |
| 79 | |
| 80 | return fcp; |
| 81 | } |
Andrew Vasquez | 3d71644 | 2005-07-06 10:30:26 -0700 | [diff] [blame] | 82 | |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 83 | static inline void |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 84 | host_to_adap(uint8_t *src, uint8_t *dst, uint32_t bsize) |
| 85 | { |
| 86 | uint32_t *isrc = (uint32_t *) src; |
Saurav Kashyap | 1f8deef | 2013-06-25 11:27:21 -0400 | [diff] [blame] | 87 | __le32 *odest = (__le32 *) dst; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 88 | uint32_t iter = bsize >> 2; |
| 89 | |
Joe Carnuccio | da08ef5 | 2016-01-27 12:03:34 -0500 | [diff] [blame] | 90 | for ( ; iter--; isrc++) |
| 91 | *odest++ = cpu_to_le32(*isrc); |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static inline void |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 95 | qla2x00_set_reserved_loop_ids(struct qla_hw_data *ha) |
| 96 | { |
| 97 | int i; |
| 98 | |
| 99 | if (IS_FWI2_CAPABLE(ha)) |
| 100 | return; |
| 101 | |
| 102 | for (i = 0; i < SNS_FIRST_LOOP_ID; i++) |
| 103 | set_bit(i, ha->loop_id_map); |
| 104 | set_bit(MANAGEMENT_SERVER, ha->loop_id_map); |
| 105 | set_bit(BROADCAST, ha->loop_id_map); |
| 106 | } |
| 107 | |
Andrew Vasquez | 3d71644 | 2005-07-06 10:30:26 -0700 | [diff] [blame] | 108 | static inline int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 109 | qla2x00_is_reserved_id(scsi_qla_host_t *vha, uint16_t loop_id) |
Andrew Vasquez | 3d71644 | 2005-07-06 10:30:26 -0700 | [diff] [blame] | 110 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 111 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 112 | if (IS_FWI2_CAPABLE(ha)) |
Andrew Vasquez | 3d71644 | 2005-07-06 10:30:26 -0700 | [diff] [blame] | 113 | return (loop_id > NPH_LAST_HANDLE); |
| 114 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 115 | return ((loop_id > ha->max_loop_id && loop_id < SNS_FIRST_LOOP_ID) || |
Andrew Vasquez | 3d71644 | 2005-07-06 10:30:26 -0700 | [diff] [blame] | 116 | loop_id == MANAGEMENT_SERVER || loop_id == BROADCAST); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 117 | } |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 118 | |
| 119 | static inline void |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 120 | qla2x00_clear_loop_id(fc_port_t *fcport) { |
| 121 | struct qla_hw_data *ha = fcport->vha->hw; |
| 122 | |
| 123 | if (fcport->loop_id == FC_NO_LOOP_ID || |
| 124 | qla2x00_is_reserved_id(fcport->vha, fcport->loop_id)) |
| 125 | return; |
| 126 | |
| 127 | clear_bit(fcport->loop_id, ha->loop_id_map); |
| 128 | fcport->loop_id = FC_NO_LOOP_ID; |
| 129 | } |
| 130 | |
| 131 | static inline void |
Joe Carnuccio | d5ff0ee | 2017-05-24 18:06:24 -0700 | [diff] [blame] | 132 | qla2x00_clean_dsd_pool(struct qla_hw_data *ha, struct crc_context *ctx) |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 133 | { |
Joe Carnuccio | d5ff0ee | 2017-05-24 18:06:24 -0700 | [diff] [blame] | 134 | struct dsd_dma *dsd, *tdsd; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 135 | |
| 136 | /* clean up allocated prev pool */ |
Joe Carnuccio | d5ff0ee | 2017-05-24 18:06:24 -0700 | [diff] [blame] | 137 | list_for_each_entry_safe(dsd, tdsd, &ctx->dsd_list, list) { |
| 138 | dma_pool_free(ha->dl_dma_pool, dsd->dsd_addr, |
| 139 | dsd->dsd_list_dma); |
| 140 | list_del(&dsd->list); |
| 141 | kfree(dsd); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 142 | } |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 143 | INIT_LIST_HEAD(&ctx->dsd_list); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 144 | } |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 145 | |
| 146 | static inline void |
| 147 | qla2x00_set_fcport_state(fc_port_t *fcport, int state) |
| 148 | { |
| 149 | int old_state; |
| 150 | |
| 151 | old_state = atomic_read(&fcport->state); |
| 152 | atomic_set(&fcport->state, state); |
| 153 | |
| 154 | /* Don't print state transitions during initial allocation of fcport */ |
| 155 | if (old_state && old_state != state) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 156 | ql_dbg(ql_dbg_disc, fcport->vha, 0x207d, |
Quinn Tran | 726b854 | 2017-01-19 22:28:00 -0800 | [diff] [blame] | 157 | "FCPort %8phC state transitioned from %s to %s - " |
| 158 | "portid=%02x%02x%02x.\n", fcport->port_name, |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 159 | port_state_str[old_state], port_state_str[state], |
| 160 | fcport->d_id.b.domain, fcport->d_id.b.area, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 161 | fcport->d_id.b.al_pa); |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 162 | } |
| 163 | } |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 164 | |
| 165 | static inline int |
Arun Easi | e02587d | 2011-08-16 11:29:23 -0700 | [diff] [blame] | 166 | qla2x00_hba_err_chk_enabled(srb_t *sp) |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 167 | { |
Arun Easi | e02587d | 2011-08-16 11:29:23 -0700 | [diff] [blame] | 168 | /* |
| 169 | * Uncomment when corresponding SCSI changes are done. |
| 170 | * |
| 171 | if (!sp->cmd->prot_chk) |
| 172 | return 0; |
| 173 | * |
| 174 | */ |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 175 | switch (scsi_get_prot_op(GET_CMD_SP(sp))) { |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 176 | case SCSI_PROT_READ_STRIP: |
| 177 | case SCSI_PROT_WRITE_INSERT: |
| 178 | if (ql2xenablehba_err_chk >= 1) |
| 179 | return 1; |
| 180 | break; |
| 181 | case SCSI_PROT_READ_PASS: |
| 182 | case SCSI_PROT_WRITE_PASS: |
| 183 | if (ql2xenablehba_err_chk >= 2) |
| 184 | return 1; |
| 185 | break; |
| 186 | case SCSI_PROT_READ_INSERT: |
| 187 | case SCSI_PROT_WRITE_STRIP: |
| 188 | return 1; |
| 189 | } |
| 190 | return 0; |
| 191 | } |
Andrew Vasquez | d051a5aa | 2012-02-09 11:14:05 -0800 | [diff] [blame] | 192 | |
| 193 | static inline int |
| 194 | qla2x00_reset_active(scsi_qla_host_t *vha) |
| 195 | { |
| 196 | scsi_qla_host_t *base_vha = pci_get_drvdata(vha->hw->pdev); |
| 197 | |
| 198 | /* Test appropriate base-vha and vha flags. */ |
| 199 | return test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) || |
| 200 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 201 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 202 | test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) || |
| 203 | test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags); |
| 204 | } |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 205 | |
| 206 | static inline srb_t * |
Michael Hernandez | d745952 | 2016-12-12 14:40:07 -0800 | [diff] [blame] | 207 | qla2xxx_get_qpair_sp(struct qla_qpair *qpair, fc_port_t *fcport, gfp_t flag) |
| 208 | { |
| 209 | srb_t *sp = NULL; |
| 210 | uint8_t bail; |
| 211 | |
| 212 | QLA_QPAIR_MARK_BUSY(qpair, bail); |
| 213 | if (unlikely(bail)) |
| 214 | return NULL; |
| 215 | |
| 216 | sp = mempool_alloc(qpair->srb_mempool, flag); |
| 217 | if (!sp) |
| 218 | goto done; |
| 219 | |
| 220 | memset(sp, 0, sizeof(*sp)); |
| 221 | sp->fcport = fcport; |
| 222 | sp->iocbs = 1; |
Joe Carnuccio | 25ff6af | 2017-01-19 22:28:04 -0800 | [diff] [blame] | 223 | sp->vha = qpair->vha; |
Michael Hernandez | d745952 | 2016-12-12 14:40:07 -0800 | [diff] [blame] | 224 | done: |
| 225 | if (!sp) |
| 226 | QLA_QPAIR_MARK_NOT_BUSY(qpair); |
| 227 | return sp; |
| 228 | } |
| 229 | |
| 230 | static inline void |
| 231 | qla2xxx_rel_qpair_sp(struct qla_qpair *qpair, srb_t *sp) |
| 232 | { |
| 233 | mempool_free(sp, qpair->srb_mempool); |
| 234 | QLA_QPAIR_MARK_NOT_BUSY(qpair); |
| 235 | } |
| 236 | |
| 237 | static inline srb_t * |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 238 | qla2x00_get_sp(scsi_qla_host_t *vha, fc_port_t *fcport, gfp_t flag) |
| 239 | { |
| 240 | srb_t *sp = NULL; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 241 | uint8_t bail; |
| 242 | |
| 243 | QLA_VHA_MARK_BUSY(vha, bail); |
| 244 | if (unlikely(bail)) |
| 245 | return NULL; |
| 246 | |
Joe Carnuccio | 25ff6af | 2017-01-19 22:28:04 -0800 | [diff] [blame] | 247 | sp = mempool_alloc(vha->hw->srb_mempool, flag); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 248 | if (!sp) |
| 249 | goto done; |
| 250 | |
| 251 | memset(sp, 0, sizeof(*sp)); |
| 252 | sp->fcport = fcport; |
| 253 | sp->iocbs = 1; |
Quinn Tran | 726b854 | 2017-01-19 22:28:00 -0800 | [diff] [blame] | 254 | sp->vha = vha; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 255 | done: |
| 256 | if (!sp) |
| 257 | QLA_VHA_MARK_NOT_BUSY(vha); |
| 258 | return sp; |
| 259 | } |
| 260 | |
| 261 | static inline void |
Joe Carnuccio | 25ff6af | 2017-01-19 22:28:04 -0800 | [diff] [blame] | 262 | qla2x00_rel_sp(srb_t *sp) |
Chad Dupuis | b00ee7d | 2013-02-08 01:57:50 -0500 | [diff] [blame] | 263 | { |
Joe Carnuccio | 25ff6af | 2017-01-19 22:28:04 -0800 | [diff] [blame] | 264 | QLA_VHA_MARK_NOT_BUSY(sp->vha); |
| 265 | mempool_free(sp, sp->vha->hw->srb_mempool); |
Chad Dupuis | b00ee7d | 2013-02-08 01:57:50 -0500 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | static inline void |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 269 | qla2x00_init_timer(srb_t *sp, unsigned long tmo) |
| 270 | { |
| 271 | init_timer(&sp->u.iocb_cmd.timer); |
| 272 | sp->u.iocb_cmd.timer.expires = jiffies + tmo * HZ; |
| 273 | sp->u.iocb_cmd.timer.data = (unsigned long)sp; |
| 274 | sp->u.iocb_cmd.timer.function = qla2x00_sp_timeout; |
| 275 | add_timer(&sp->u.iocb_cmd.timer); |
| 276 | sp->free = qla2x00_sp_free; |
Joe Carnuccio | 25ff6af | 2017-01-19 22:28:04 -0800 | [diff] [blame] | 277 | if (IS_QLAFX00(sp->vha->hw) && (sp->type == SRB_FXIOCB_DCMD)) |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 278 | init_completion(&sp->u.iocb_cmd.u.fxiocb.fxiocb_comp); |
Himanshu Madhani | 6eb5471 | 2015-12-17 14:57:00 -0500 | [diff] [blame] | 279 | if (sp->type == SRB_ELS_DCMD) |
| 280 | init_completion(&sp->u.iocb_cmd.u.els_logo.comp); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 281 | } |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 282 | |
| 283 | static inline int |
| 284 | qla2x00_gid_list_size(struct qla_hw_data *ha) |
| 285 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 286 | if (IS_QLAFX00(ha)) |
| 287 | return sizeof(uint32_t) * 32; |
| 288 | else |
| 289 | return sizeof(struct gid_list_info) * ha->max_fibre_devices; |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 290 | } |
Chad Dupuis | 3c290d0 | 2013-01-30 03:34:38 -0500 | [diff] [blame] | 291 | |
| 292 | static inline void |
gurinder.shergill@hp.com | 3643983 | 2013-04-23 10:13:17 -0700 | [diff] [blame] | 293 | qla2x00_handle_mbx_completion(struct qla_hw_data *ha, int status) |
| 294 | { |
| 295 | if (test_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags) && |
| 296 | (status & MBX_INTERRUPT) && ha->flags.mbox_int) { |
| 297 | set_bit(MBX_INTERRUPT, &ha->mbx_cmd_flags); |
| 298 | clear_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags); |
| 299 | complete(&ha->mbx_intr_comp); |
| 300 | } |
| 301 | } |
Chad Dupuis | e05fe29 | 2014-09-25 05:16:59 -0400 | [diff] [blame] | 302 | |
| 303 | static inline void |
| 304 | qla2x00_set_retry_delay_timestamp(fc_port_t *fcport, uint16_t retry_delay) |
| 305 | { |
| 306 | if (retry_delay) |
| 307 | fcport->retry_delay_timestamp = jiffies + |
| 308 | (retry_delay * HZ / 10); |
| 309 | } |
Quinn Tran | 99e1b68 | 2017-06-02 09:12:03 -0700 | [diff] [blame^] | 310 | |
| 311 | static inline bool |
| 312 | qla_is_exch_offld_enabled(struct scsi_qla_host *vha) |
| 313 | { |
| 314 | if (qla_ini_mode_enabled(vha) && |
| 315 | (ql2xiniexchg > FW_DEF_EXCHANGES_CNT)) |
| 316 | return true; |
| 317 | else if (qla_tgt_mode_enabled(vha) && |
| 318 | (ql2xexchoffld > FW_DEF_EXCHANGES_CNT)) |
| 319 | return true; |
| 320 | else if (qla_dual_mode_enabled(vha) && |
| 321 | ((ql2xiniexchg + ql2xexchoffld) > FW_DEF_EXCHANGES_CNT)) |
| 322 | return true; |
| 323 | else |
| 324 | return false; |
| 325 | } |