2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2014 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
8 #include "qla_target.h"
10 * qla24xx_calc_iocbs() - Determine number of Command Type 3 and
11 * Continuation Type 1 IOCBs to allocate.
14 * @dsds: number of data segment decriptors needed
16 * Returns the number of IOCB entries needed to store @dsds.
18 static inline uint16_t
19 qla24xx_calc_iocbs(scsi_qla_host_t
*vha
, uint16_t dsds
)
25 iocbs
+= (dsds
- 1) / 5;
33 * qla2x00_debounce_register
37 * port = register address.
42 static __inline__
uint16_t
43 qla2x00_debounce_register(volatile uint16_t __iomem
*addr
)
45 volatile uint16_t first
;
46 volatile uint16_t second
;
49 first
= RD_REG_WORD(addr
);
52 second
= RD_REG_WORD(addr
);
53 } while (first
!= second
);
59 qla2x00_poll(struct rsp_que
*rsp
)
61 struct qla_hw_data
*ha
= rsp
->hw
;
66 ha
->isp_ops
->intr_handler(0, rsp
);
69 static inline uint8_t *
70 host_to_fcp_swap(uint8_t *fcp
, uint32_t bsize
)
72 uint32_t *ifcp
= (uint32_t *) fcp
;
73 uint32_t *ofcp
= (uint32_t *) fcp
;
74 uint32_t iter
= bsize
>> 2;
77 *ofcp
++ = swab32(*ifcp
++);
83 host_to_adap(uint8_t *src
, uint8_t *dst
, uint32_t bsize
)
85 uint32_t *isrc
= (uint32_t *) src
;
86 __le32
*odest
= (__le32
*) dst
;
87 uint32_t iter
= bsize
>> 2;
89 for ( ; iter
--; isrc
++)
90 *odest
++ = cpu_to_le32(*isrc
);
94 qla2x00_set_reserved_loop_ids(struct qla_hw_data
*ha
)
98 if (IS_FWI2_CAPABLE(ha
))
101 for (i
= 0; i
< SNS_FIRST_LOOP_ID
; i
++)
102 set_bit(i
, ha
->loop_id_map
);
103 set_bit(MANAGEMENT_SERVER
, ha
->loop_id_map
);
104 set_bit(BROADCAST
, ha
->loop_id_map
);
108 qla2x00_is_reserved_id(scsi_qla_host_t
*vha
, uint16_t loop_id
)
110 struct qla_hw_data
*ha
= vha
->hw
;
111 if (IS_FWI2_CAPABLE(ha
))
112 return (loop_id
> NPH_LAST_HANDLE
);
114 return ((loop_id
> ha
->max_loop_id
&& loop_id
< SNS_FIRST_LOOP_ID
) ||
115 loop_id
== MANAGEMENT_SERVER
|| loop_id
== BROADCAST
);
119 qla2x00_clear_loop_id(fc_port_t
*fcport
) {
120 struct qla_hw_data
*ha
= fcport
->vha
->hw
;
122 if (fcport
->loop_id
== FC_NO_LOOP_ID
||
123 qla2x00_is_reserved_id(fcport
->vha
, fcport
->loop_id
))
126 clear_bit(fcport
->loop_id
, ha
->loop_id_map
);
127 fcport
->loop_id
= FC_NO_LOOP_ID
;
131 qla2x00_clean_dsd_pool(struct qla_hw_data
*ha
, struct crc_context
*ctx
)
133 struct dsd_dma
*dsd
, *tdsd
;
135 /* clean up allocated prev pool */
136 list_for_each_entry_safe(dsd
, tdsd
, &ctx
->dsd_list
, list
) {
137 dma_pool_free(ha
->dl_dma_pool
, dsd
->dsd_addr
,
139 list_del(&dsd
->list
);
142 INIT_LIST_HEAD(&ctx
->dsd_list
);
146 qla2x00_set_fcport_state(fc_port_t
*fcport
, int state
)
150 old_state
= atomic_read(&fcport
->state
);
151 atomic_set(&fcport
->state
, state
);
153 /* Don't print state transitions during initial allocation of fcport */
154 if (old_state
&& old_state
!= state
) {
155 ql_dbg(ql_dbg_disc
, fcport
->vha
, 0x207d,
156 "FCPort %8phC state transitioned from %s to %s - "
157 "portid=%02x%02x%02x.\n", fcport
->port_name
,
158 port_state_str
[old_state
], port_state_str
[state
],
159 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
160 fcport
->d_id
.b
.al_pa
);
165 qla2x00_hba_err_chk_enabled(srb_t
*sp
)
168 * Uncomment when corresponding SCSI changes are done.
170 if (!sp->cmd->prot_chk)
174 switch (scsi_get_prot_op(GET_CMD_SP(sp
))) {
175 case SCSI_PROT_READ_STRIP
:
176 case SCSI_PROT_WRITE_INSERT
:
177 if (ql2xenablehba_err_chk
>= 1)
180 case SCSI_PROT_READ_PASS
:
181 case SCSI_PROT_WRITE_PASS
:
182 if (ql2xenablehba_err_chk
>= 2)
185 case SCSI_PROT_READ_INSERT
:
186 case SCSI_PROT_WRITE_STRIP
:
193 qla2x00_reset_active(scsi_qla_host_t
*vha
)
195 scsi_qla_host_t
*base_vha
= pci_get_drvdata(vha
->hw
->pdev
);
197 /* Test appropriate base-vha and vha flags. */
198 return test_bit(ISP_ABORT_NEEDED
, &base_vha
->dpc_flags
) ||
199 test_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
) ||
200 test_bit(ISP_ABORT_RETRY
, &base_vha
->dpc_flags
) ||
201 test_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
) ||
202 test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
);
206 qla2x00_chip_is_down(scsi_qla_host_t
*vha
)
208 return (qla2x00_reset_active(vha
) || !vha
->hw
->flags
.fw_started
);
211 static inline srb_t
*
212 qla2xxx_get_qpair_sp(struct qla_qpair
*qpair
, fc_port_t
*fcport
, gfp_t flag
)
217 QLA_QPAIR_MARK_BUSY(qpair
, bail
);
221 sp
= mempool_alloc(qpair
->srb_mempool
, flag
);
225 memset(sp
, 0, sizeof(*sp
));
228 sp
->vha
= qpair
->vha
;
229 INIT_LIST_HEAD(&sp
->elem
);
233 QLA_QPAIR_MARK_NOT_BUSY(qpair
);
238 qla2xxx_rel_qpair_sp(struct qla_qpair
*qpair
, srb_t
*sp
)
240 mempool_free(sp
, qpair
->srb_mempool
);
241 QLA_QPAIR_MARK_NOT_BUSY(qpair
);
244 static inline srb_t
*
245 qla2x00_get_sp(scsi_qla_host_t
*vha
, fc_port_t
*fcport
, gfp_t flag
)
250 QLA_VHA_MARK_BUSY(vha
, bail
);
254 sp
= mempool_alloc(vha
->hw
->srb_mempool
, flag
);
258 memset(sp
, 0, sizeof(*sp
));
260 sp
->cmd_type
= TYPE_SRB
;
265 QLA_VHA_MARK_NOT_BUSY(vha
);
270 qla2x00_rel_sp(srb_t
*sp
)
272 QLA_VHA_MARK_NOT_BUSY(sp
->vha
);
273 mempool_free(sp
, sp
->vha
->hw
->srb_mempool
);
277 qla2x00_init_timer(srb_t
*sp
, unsigned long tmo
)
279 timer_setup(&sp
->u
.iocb_cmd
.timer
, qla2x00_sp_timeout
, 0);
280 sp
->u
.iocb_cmd
.timer
.expires
= jiffies
+ tmo
* HZ
;
281 sp
->free
= qla2x00_sp_free
;
282 init_completion(&sp
->comp
);
283 if (IS_QLAFX00(sp
->vha
->hw
) && (sp
->type
== SRB_FXIOCB_DCMD
))
284 init_completion(&sp
->u
.iocb_cmd
.u
.fxiocb
.fxiocb_comp
);
285 add_timer(&sp
->u
.iocb_cmd
.timer
);
289 qla2x00_gid_list_size(struct qla_hw_data
*ha
)
292 return sizeof(uint32_t) * 32;
294 return sizeof(struct gid_list_info
) * ha
->max_fibre_devices
;
298 qla2x00_handle_mbx_completion(struct qla_hw_data
*ha
, int status
)
300 if (test_bit(MBX_INTR_WAIT
, &ha
->mbx_cmd_flags
) &&
301 (status
& MBX_INTERRUPT
) && ha
->flags
.mbox_int
) {
302 set_bit(MBX_INTERRUPT
, &ha
->mbx_cmd_flags
);
303 clear_bit(MBX_INTR_WAIT
, &ha
->mbx_cmd_flags
);
304 complete(&ha
->mbx_intr_comp
);
309 qla2x00_set_retry_delay_timestamp(fc_port_t
*fcport
, uint16_t retry_delay
)
312 fcport
->retry_delay_timestamp
= jiffies
+
313 (retry_delay
* HZ
/ 10);
317 qla_is_exch_offld_enabled(struct scsi_qla_host
*vha
)
319 if (qla_ini_mode_enabled(vha
) &&
320 (ql2xiniexchg
> FW_DEF_EXCHANGES_CNT
))
322 else if (qla_tgt_mode_enabled(vha
) &&
323 (ql2xexchoffld
> FW_DEF_EXCHANGES_CNT
))
325 else if (qla_dual_mode_enabled(vha
) &&
326 ((ql2xiniexchg
+ ql2xexchoffld
) > FW_DEF_EXCHANGES_CNT
))
333 qla_cpu_update(struct qla_qpair
*qpair
, uint16_t cpuid
)
335 qpair
->cpuid
= cpuid
;
337 if (!list_empty(&qpair
->hints_list
)) {
338 struct qla_qpair_hint
*h
;
340 list_for_each_entry(h
, &qpair
->hints_list
, hint_elem
)
341 h
->cpuid
= qpair
->cpuid
;
345 static inline struct qla_qpair_hint
*
346 qla_qpair_to_hint(struct qla_tgt
*tgt
, struct qla_qpair
*qpair
)
348 struct qla_qpair_hint
*h
;
351 for (i
= 0; i
< tgt
->ha
->max_qpairs
+ 1; i
++) {
352 h
= &tgt
->qphints
[i
];
353 if (h
->qpair
== qpair
)
361 qla_83xx_start_iocbs(struct qla_qpair
*qpair
)
363 struct req_que
*req
= qpair
->req
;
366 if (req
->ring_index
== req
->length
) {
368 req
->ring_ptr
= req
->ring
;
372 WRT_REG_DWORD(req
->req_q_in
, req
->ring_index
);