1 /******************************************************************************
2 * QLOGIC LINUX SOFTWARE
4 * QLogic ISP2x00 device driver for Linux 2.6.x
5 * Copyright (C) 2003-2005 QLogic Corporation
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 ******************************************************************************/
22 #include <linux/blkdev.h>
23 #include <linux/delay.h>
25 #include <scsi/scsi_tcq.h>
27 static inline uint16_t qla2x00_get_cmd_direction(struct scsi_cmnd
*cmd
);
28 static inline cont_entry_t
*qla2x00_prep_cont_type0_iocb(scsi_qla_host_t
*);
29 static inline cont_a64_entry_t
*qla2x00_prep_cont_type1_iocb(scsi_qla_host_t
*);
30 static request_t
*qla2x00_req_pkt(scsi_qla_host_t
*ha
);
33 * qla2x00_get_cmd_direction() - Determine control_flag data direction.
36 * Returns the proper CF_* direction based on CDB.
38 static inline uint16_t
39 qla2x00_get_cmd_direction(struct scsi_cmnd
*cmd
)
45 /* Set transfer direction */
46 if (cmd
->sc_data_direction
== DMA_TO_DEVICE
)
48 else if (cmd
->sc_data_direction
== DMA_FROM_DEVICE
)
54 * qla2x00_calc_iocbs_32() - Determine number of Command Type 2 and
55 * Continuation Type 0 IOCBs to allocate.
57 * @dsds: number of data segment decriptors needed
59 * Returns the number of IOCB entries needed to store @dsds.
62 qla2x00_calc_iocbs_32(uint16_t dsds
)
68 iocbs
+= (dsds
- 3) / 7;
76 * qla2x00_calc_iocbs_64() - Determine number of Command Type 3 and
77 * Continuation Type 1 IOCBs to allocate.
79 * @dsds: number of data segment decriptors needed
81 * Returns the number of IOCB entries needed to store @dsds.
84 qla2x00_calc_iocbs_64(uint16_t dsds
)
90 iocbs
+= (dsds
- 2) / 5;
98 * qla2x00_prep_cont_type0_iocb() - Initialize a Continuation Type 0 IOCB.
101 * Returns a pointer to the Continuation Type 0 IOCB packet.
103 static inline cont_entry_t
*
104 qla2x00_prep_cont_type0_iocb(scsi_qla_host_t
*ha
)
106 cont_entry_t
*cont_pkt
;
108 /* Adjust ring index. */
109 ha
->req_ring_index
++;
110 if (ha
->req_ring_index
== ha
->request_q_length
) {
111 ha
->req_ring_index
= 0;
112 ha
->request_ring_ptr
= ha
->request_ring
;
114 ha
->request_ring_ptr
++;
117 cont_pkt
= (cont_entry_t
*)ha
->request_ring_ptr
;
119 /* Load packet defaults. */
120 *((uint32_t *)(&cont_pkt
->entry_type
)) =
121 __constant_cpu_to_le32(CONTINUE_TYPE
);
127 * qla2x00_prep_cont_type1_iocb() - Initialize a Continuation Type 1 IOCB.
130 * Returns a pointer to the continuation type 1 IOCB packet.
132 static inline cont_a64_entry_t
*
133 qla2x00_prep_cont_type1_iocb(scsi_qla_host_t
*ha
)
135 cont_a64_entry_t
*cont_pkt
;
137 /* Adjust ring index. */
138 ha
->req_ring_index
++;
139 if (ha
->req_ring_index
== ha
->request_q_length
) {
140 ha
->req_ring_index
= 0;
141 ha
->request_ring_ptr
= ha
->request_ring
;
143 ha
->request_ring_ptr
++;
146 cont_pkt
= (cont_a64_entry_t
*)ha
->request_ring_ptr
;
148 /* Load packet defaults. */
149 *((uint32_t *)(&cont_pkt
->entry_type
)) =
150 __constant_cpu_to_le32(CONTINUE_A64_TYPE
);
156 * qla2x00_build_scsi_iocbs_32() - Build IOCB command utilizing 32bit
157 * capable IOCB types.
159 * @sp: SRB command to process
160 * @cmd_pkt: Command type 2 IOCB
161 * @tot_dsds: Total number of segments to transfer
163 void qla2x00_build_scsi_iocbs_32(srb_t
*sp
, cmd_entry_t
*cmd_pkt
,
169 struct scsi_cmnd
*cmd
;
173 /* Update entry type to indicate Command Type 2 IOCB */
174 *((uint32_t *)(&cmd_pkt
->entry_type
)) =
175 __constant_cpu_to_le32(COMMAND_TYPE
);
177 /* No data transfer */
178 if (cmd
->request_bufflen
== 0 || cmd
->sc_data_direction
== DMA_NONE
) {
179 cmd_pkt
->byte_count
= __constant_cpu_to_le32(0);
185 cmd_pkt
->control_flags
|= cpu_to_le16(qla2x00_get_cmd_direction(cmd
));
187 /* Three DSDs are available in the Command Type 2 IOCB */
189 cur_dsd
= (uint32_t *)&cmd_pkt
->dseg_0_address
;
191 /* Load data segments */
192 if (cmd
->use_sg
!= 0) {
193 struct scatterlist
*cur_seg
;
194 struct scatterlist
*end_seg
;
196 cur_seg
= (struct scatterlist
*)cmd
->request_buffer
;
197 end_seg
= cur_seg
+ tot_dsds
;
198 while (cur_seg
< end_seg
) {
199 cont_entry_t
*cont_pkt
;
201 /* Allocate additional continuation packets? */
202 if (avail_dsds
== 0) {
204 * Seven DSDs are available in the Continuation
207 cont_pkt
= qla2x00_prep_cont_type0_iocb(ha
);
208 cur_dsd
= (uint32_t *)&cont_pkt
->dseg_0_address
;
212 *cur_dsd
++ = cpu_to_le32(sg_dma_address(cur_seg
));
213 *cur_dsd
++ = cpu_to_le32(sg_dma_len(cur_seg
));
219 *cur_dsd
++ = cpu_to_le32(sp
->dma_handle
);
220 *cur_dsd
++ = cpu_to_le32(cmd
->request_bufflen
);
225 * qla2x00_build_scsi_iocbs_64() - Build IOCB command utilizing 64bit
226 * capable IOCB types.
228 * @sp: SRB command to process
229 * @cmd_pkt: Command type 3 IOCB
230 * @tot_dsds: Total number of segments to transfer
232 void qla2x00_build_scsi_iocbs_64(srb_t
*sp
, cmd_entry_t
*cmd_pkt
,
238 struct scsi_cmnd
*cmd
;
242 /* Update entry type to indicate Command Type 3 IOCB */
243 *((uint32_t *)(&cmd_pkt
->entry_type
)) =
244 __constant_cpu_to_le32(COMMAND_A64_TYPE
);
246 /* No data transfer */
247 if (cmd
->request_bufflen
== 0 || cmd
->sc_data_direction
== DMA_NONE
) {
248 cmd_pkt
->byte_count
= __constant_cpu_to_le32(0);
254 cmd_pkt
->control_flags
|= cpu_to_le16(qla2x00_get_cmd_direction(cmd
));
256 /* Two DSDs are available in the Command Type 3 IOCB */
258 cur_dsd
= (uint32_t *)&cmd_pkt
->dseg_0_address
;
260 /* Load data segments */
261 if (cmd
->use_sg
!= 0) {
262 struct scatterlist
*cur_seg
;
263 struct scatterlist
*end_seg
;
265 cur_seg
= (struct scatterlist
*)cmd
->request_buffer
;
266 end_seg
= cur_seg
+ tot_dsds
;
267 while (cur_seg
< end_seg
) {
269 cont_a64_entry_t
*cont_pkt
;
271 /* Allocate additional continuation packets? */
272 if (avail_dsds
== 0) {
274 * Five DSDs are available in the Continuation
277 cont_pkt
= qla2x00_prep_cont_type1_iocb(ha
);
278 cur_dsd
= (uint32_t *)cont_pkt
->dseg_0_address
;
282 sle_dma
= sg_dma_address(cur_seg
);
283 *cur_dsd
++ = cpu_to_le32(LSD(sle_dma
));
284 *cur_dsd
++ = cpu_to_le32(MSD(sle_dma
));
285 *cur_dsd
++ = cpu_to_le32(sg_dma_len(cur_seg
));
291 *cur_dsd
++ = cpu_to_le32(LSD(sp
->dma_handle
));
292 *cur_dsd
++ = cpu_to_le32(MSD(sp
->dma_handle
));
293 *cur_dsd
++ = cpu_to_le32(cmd
->request_bufflen
);
298 * qla2x00_start_scsi() - Send a SCSI command to the ISP
299 * @sp: command to send to the ISP
301 * Returns non-zero if a failure occured, else zero.
304 qla2x00_start_scsi(srb_t
*sp
)
309 struct scsi_cmnd
*cmd
;
313 cmd_entry_t
*cmd_pkt
;
314 struct scatterlist
*sg
;
318 struct device_reg_2xxx __iomem
*reg
;
321 /* Setup device pointers. */
324 reg
= &ha
->iobase
->isp
;
326 /* So we know we haven't pci_map'ed anything yet */
329 /* Send marker if required */
330 if (ha
->marker_needed
!= 0) {
331 if (qla2x00_marker(ha
, 0, 0, MK_SYNC_ALL
) != QLA_SUCCESS
) {
332 return (QLA_FUNCTION_FAILED
);
334 ha
->marker_needed
= 0;
337 /* Acquire ring specific lock */
338 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
340 /* Check for room in outstanding command list. */
341 handle
= ha
->current_outstanding_cmd
;
342 for (index
= 1; index
< MAX_OUTSTANDING_COMMANDS
; index
++) {
344 if (handle
== MAX_OUTSTANDING_COMMANDS
)
346 if (ha
->outstanding_cmds
[handle
] == 0)
349 if (index
== MAX_OUTSTANDING_COMMANDS
)
352 /* Map the sg table so we have an accurate count of sg entries needed */
354 sg
= (struct scatterlist
*) cmd
->request_buffer
;
355 tot_dsds
= pci_map_sg(ha
->pdev
, sg
, cmd
->use_sg
,
356 cmd
->sc_data_direction
);
359 } else if (cmd
->request_bufflen
) {
362 req_dma
= pci_map_single(ha
->pdev
, cmd
->request_buffer
,
363 cmd
->request_bufflen
, cmd
->sc_data_direction
);
364 if (dma_mapping_error(req_dma
))
367 sp
->dma_handle
= req_dma
;
371 /* Calculate the number of request entries needed. */
372 req_cnt
= ha
->isp_ops
.calc_req_entries(tot_dsds
);
373 if (ha
->req_q_cnt
< (req_cnt
+ 2)) {
374 cnt
= RD_REG_WORD_RELAXED(ISP_REQ_Q_OUT(ha
, reg
));
375 if (ha
->req_ring_index
< cnt
)
376 ha
->req_q_cnt
= cnt
- ha
->req_ring_index
;
378 ha
->req_q_cnt
= ha
->request_q_length
-
379 (ha
->req_ring_index
- cnt
);
381 if (ha
->req_q_cnt
< (req_cnt
+ 2))
384 /* Build command packet */
385 ha
->current_outstanding_cmd
= handle
;
386 ha
->outstanding_cmds
[handle
] = sp
;
388 sp
->cmd
->host_scribble
= (unsigned char *)(unsigned long)handle
;
389 ha
->req_q_cnt
-= req_cnt
;
391 cmd_pkt
= (cmd_entry_t
*)ha
->request_ring_ptr
;
392 cmd_pkt
->handle
= handle
;
393 /* Zero out remaining portion of packet. */
394 clr_ptr
= (uint32_t *)cmd_pkt
+ 2;
395 memset(clr_ptr
, 0, REQUEST_ENTRY_SIZE
- 8);
396 cmd_pkt
->dseg_count
= cpu_to_le16(tot_dsds
);
398 /* Set target ID and LUN number*/
399 SET_TARGET_ID(ha
, cmd_pkt
->target
, sp
->fcport
->loop_id
);
400 cmd_pkt
->lun
= cpu_to_le16(sp
->cmd
->device
->lun
);
402 /* Update tagged queuing modifier */
403 cmd_pkt
->control_flags
= __constant_cpu_to_le16(CF_SIMPLE_TAG
);
404 if (scsi_populate_tag_msg(cmd
, tag
)) {
407 cmd_pkt
->control_flags
=
408 __constant_cpu_to_le16(CF_HEAD_TAG
);
410 case MSG_ORDERED_TAG
:
411 cmd_pkt
->control_flags
=
412 __constant_cpu_to_le16(CF_ORDERED_TAG
);
417 /* Load SCSI command packet. */
418 memcpy(cmd_pkt
->scsi_cdb
, cmd
->cmnd
, cmd
->cmd_len
);
419 cmd_pkt
->byte_count
= cpu_to_le32((uint32_t)cmd
->request_bufflen
);
421 /* Build IOCB segments */
422 ha
->isp_ops
.build_iocbs(sp
, cmd_pkt
, tot_dsds
);
424 /* Set total data segment count. */
425 cmd_pkt
->entry_count
= (uint8_t)req_cnt
;
428 /* Adjust ring index. */
429 ha
->req_ring_index
++;
430 if (ha
->req_ring_index
== ha
->request_q_length
) {
431 ha
->req_ring_index
= 0;
432 ha
->request_ring_ptr
= ha
->request_ring
;
434 ha
->request_ring_ptr
++;
436 sp
->flags
|= SRB_DMA_VALID
;
437 sp
->state
= SRB_ACTIVE_STATE
;
439 /* Set chip new ring index. */
440 WRT_REG_WORD(ISP_REQ_Q_IN(ha
, reg
), ha
->req_ring_index
);
441 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha
, reg
)); /* PCI Posting. */
443 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
444 return (QLA_SUCCESS
);
447 if (cmd
->use_sg
&& tot_dsds
) {
448 sg
= (struct scatterlist
*) cmd
->request_buffer
;
449 pci_unmap_sg(ha
->pdev
, sg
, cmd
->use_sg
,
450 cmd
->sc_data_direction
);
451 } else if (tot_dsds
) {
452 pci_unmap_single(ha
->pdev
, sp
->dma_handle
,
453 cmd
->request_bufflen
, cmd
->sc_data_direction
);
455 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
457 return (QLA_FUNCTION_FAILED
);
461 * qla2x00_marker() - Send a marker IOCB to the firmware.
465 * @type: marker modifier
467 * Can be called from both normal and interrupt context.
469 * Returns non-zero if a failure occured, else zero.
472 __qla2x00_marker(scsi_qla_host_t
*ha
, uint16_t loop_id
, uint16_t lun
,
476 struct mrk_entry_24xx
*mrk24
;
479 mrk
= (mrk_entry_t
*)qla2x00_req_pkt(ha
);
481 DEBUG2_3(printk("%s(%ld): failed to allocate Marker IOCB.\n",
482 __func__
, ha
->host_no
));
484 return (QLA_FUNCTION_FAILED
);
487 mrk
->entry_type
= MARKER_TYPE
;
488 mrk
->modifier
= type
;
489 if (type
!= MK_SYNC_ALL
) {
490 if (IS_QLA24XX(ha
) || IS_QLA25XX(ha
)) {
491 mrk24
= (struct mrk_entry_24xx
*) mrk
;
492 mrk24
->nport_handle
= cpu_to_le16(loop_id
);
493 mrk24
->lun
[1] = LSB(lun
);
494 mrk24
->lun
[2] = MSB(lun
);
496 SET_TARGET_ID(ha
, mrk
->target
, loop_id
);
497 mrk
->lun
= cpu_to_le16(lun
);
504 return (QLA_SUCCESS
);
508 qla2x00_marker(scsi_qla_host_t
*ha
, uint16_t loop_id
, uint16_t lun
,
512 unsigned long flags
= 0;
514 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
515 ret
= __qla2x00_marker(ha
, loop_id
, lun
, type
);
516 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
522 * qla2x00_req_pkt() - Retrieve a request packet from the request ring.
525 * Note: The caller must hold the hardware lock before calling this routine.
527 * Returns NULL if function failed, else, a pointer to the request packet.
530 qla2x00_req_pkt(scsi_qla_host_t
*ha
)
532 device_reg_t __iomem
*reg
= ha
->iobase
;
533 request_t
*pkt
= NULL
;
537 uint16_t req_cnt
= 1;
539 /* Wait 1 second for slot. */
540 for (timer
= HZ
; timer
; timer
--) {
541 if ((req_cnt
+ 2) >= ha
->req_q_cnt
) {
542 /* Calculate number of free request entries. */
543 if (IS_QLA24XX(ha
) || IS_QLA25XX(ha
))
544 cnt
= (uint16_t)RD_REG_DWORD(
545 ®
->isp24
.req_q_out
);
547 cnt
= qla2x00_debounce_register(
548 ISP_REQ_Q_OUT(ha
, ®
->isp
));
549 if (ha
->req_ring_index
< cnt
)
550 ha
->req_q_cnt
= cnt
- ha
->req_ring_index
;
552 ha
->req_q_cnt
= ha
->request_q_length
-
553 (ha
->req_ring_index
- cnt
);
555 /* If room for request in request ring. */
556 if ((req_cnt
+ 2) < ha
->req_q_cnt
) {
558 pkt
= ha
->request_ring_ptr
;
560 /* Zero out packet. */
561 dword_ptr
= (uint32_t *)pkt
;
562 for (cnt
= 0; cnt
< REQUEST_ENTRY_SIZE
/ 4; cnt
++)
565 /* Set system defined field. */
566 pkt
->sys_define
= (uint8_t)ha
->req_ring_index
;
568 /* Set entry count. */
569 pkt
->entry_count
= 1;
574 /* Release ring specific lock */
575 spin_unlock(&ha
->hardware_lock
);
577 udelay(2); /* 2 us */
579 /* Check for pending interrupts. */
580 /* During init we issue marker directly */
581 if (!ha
->marker_needed
)
584 spin_lock_irq(&ha
->hardware_lock
);
587 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__
));
594 * qla2x00_isp_cmd() - Modify the request ring pointer.
597 * Note: The caller must hold the hardware lock before calling this routine.
600 qla2x00_isp_cmd(scsi_qla_host_t
*ha
)
602 device_reg_t __iomem
*reg
= ha
->iobase
;
604 DEBUG5(printk("%s(): IOCB data:\n", __func__
));
605 DEBUG5(qla2x00_dump_buffer(
606 (uint8_t *)ha
->request_ring_ptr
, REQUEST_ENTRY_SIZE
));
608 /* Adjust ring index. */
609 ha
->req_ring_index
++;
610 if (ha
->req_ring_index
== ha
->request_q_length
) {
611 ha
->req_ring_index
= 0;
612 ha
->request_ring_ptr
= ha
->request_ring
;
614 ha
->request_ring_ptr
++;
616 /* Set chip new ring index. */
617 if (IS_QLA24XX(ha
) || IS_QLA25XX(ha
)) {
618 WRT_REG_DWORD(®
->isp24
.req_q_in
, ha
->req_ring_index
);
619 RD_REG_DWORD_RELAXED(®
->isp24
.req_q_in
);
621 WRT_REG_WORD(ISP_REQ_Q_IN(ha
, ®
->isp
), ha
->req_ring_index
);
622 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha
, ®
->isp
));
628 * qla24xx_calc_iocbs() - Determine number of Command Type 3 and
629 * Continuation Type 1 IOCBs to allocate.
631 * @dsds: number of data segment decriptors needed
633 * Returns the number of IOCB entries needed to store @dsds.
635 static inline uint16_t
636 qla24xx_calc_iocbs(uint16_t dsds
)
642 iocbs
+= (dsds
- 1) / 5;
650 * qla24xx_build_scsi_iocbs() - Build IOCB command utilizing Command Type 7
653 * @sp: SRB command to process
654 * @cmd_pkt: Command type 3 IOCB
655 * @tot_dsds: Total number of segments to transfer
658 qla24xx_build_scsi_iocbs(srb_t
*sp
, struct cmd_type_7
*cmd_pkt
,
664 struct scsi_cmnd
*cmd
;
668 /* Update entry type to indicate Command Type 3 IOCB */
669 *((uint32_t *)(&cmd_pkt
->entry_type
)) =
670 __constant_cpu_to_le32(COMMAND_TYPE_7
);
672 /* No data transfer */
673 if (cmd
->request_bufflen
== 0 || cmd
->sc_data_direction
== DMA_NONE
) {
674 cmd_pkt
->byte_count
= __constant_cpu_to_le32(0);
680 /* Set transfer direction */
681 if (cmd
->sc_data_direction
== DMA_TO_DEVICE
)
682 cmd_pkt
->task_mgmt_flags
=
683 __constant_cpu_to_le16(TMF_WRITE_DATA
);
684 else if (cmd
->sc_data_direction
== DMA_FROM_DEVICE
)
685 cmd_pkt
->task_mgmt_flags
=
686 __constant_cpu_to_le16(TMF_READ_DATA
);
688 /* One DSD is available in the Command Type 3 IOCB */
690 cur_dsd
= (uint32_t *)&cmd_pkt
->dseg_0_address
;
692 /* Load data segments */
693 if (cmd
->use_sg
!= 0) {
694 struct scatterlist
*cur_seg
;
695 struct scatterlist
*end_seg
;
697 cur_seg
= (struct scatterlist
*)cmd
->request_buffer
;
698 end_seg
= cur_seg
+ tot_dsds
;
699 while (cur_seg
< end_seg
) {
701 cont_a64_entry_t
*cont_pkt
;
703 /* Allocate additional continuation packets? */
704 if (avail_dsds
== 0) {
706 * Five DSDs are available in the Continuation
709 cont_pkt
= qla2x00_prep_cont_type1_iocb(ha
);
710 cur_dsd
= (uint32_t *)cont_pkt
->dseg_0_address
;
714 sle_dma
= sg_dma_address(cur_seg
);
715 *cur_dsd
++ = cpu_to_le32(LSD(sle_dma
));
716 *cur_dsd
++ = cpu_to_le32(MSD(sle_dma
));
717 *cur_dsd
++ = cpu_to_le32(sg_dma_len(cur_seg
));
723 *cur_dsd
++ = cpu_to_le32(LSD(sp
->dma_handle
));
724 *cur_dsd
++ = cpu_to_le32(MSD(sp
->dma_handle
));
725 *cur_dsd
++ = cpu_to_le32(cmd
->request_bufflen
);
731 * qla24xx_start_scsi() - Send a SCSI command to the ISP
732 * @sp: command to send to the ISP
734 * Returns non-zero if a failure occured, else zero.
737 qla24xx_start_scsi(srb_t
*sp
)
742 struct scsi_cmnd
*cmd
;
746 struct cmd_type_7
*cmd_pkt
;
747 struct scatterlist
*sg
;
751 struct device_reg_24xx __iomem
*reg
;
754 /* Setup device pointers. */
757 reg
= &ha
->iobase
->isp24
;
759 /* So we know we haven't pci_map'ed anything yet */
762 /* Send marker if required */
763 if (ha
->marker_needed
!= 0) {
764 if (qla2x00_marker(ha
, 0, 0, MK_SYNC_ALL
) != QLA_SUCCESS
) {
765 return QLA_FUNCTION_FAILED
;
767 ha
->marker_needed
= 0;
770 /* Acquire ring specific lock */
771 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
773 /* Check for room in outstanding command list. */
774 handle
= ha
->current_outstanding_cmd
;
775 for (index
= 1; index
< MAX_OUTSTANDING_COMMANDS
; index
++) {
777 if (handle
== MAX_OUTSTANDING_COMMANDS
)
779 if (ha
->outstanding_cmds
[handle
] == 0)
782 if (index
== MAX_OUTSTANDING_COMMANDS
)
785 /* Map the sg table so we have an accurate count of sg entries needed */
787 sg
= (struct scatterlist
*) cmd
->request_buffer
;
788 tot_dsds
= pci_map_sg(ha
->pdev
, sg
, cmd
->use_sg
,
789 cmd
->sc_data_direction
);
792 } else if (cmd
->request_bufflen
) {
795 req_dma
= pci_map_single(ha
->pdev
, cmd
->request_buffer
,
796 cmd
->request_bufflen
, cmd
->sc_data_direction
);
797 if (dma_mapping_error(req_dma
))
800 sp
->dma_handle
= req_dma
;
804 req_cnt
= qla24xx_calc_iocbs(tot_dsds
);
805 if (ha
->req_q_cnt
< (req_cnt
+ 2)) {
806 cnt
= (uint16_t)RD_REG_DWORD_RELAXED(®
->req_q_out
);
807 if (ha
->req_ring_index
< cnt
)
808 ha
->req_q_cnt
= cnt
- ha
->req_ring_index
;
810 ha
->req_q_cnt
= ha
->request_q_length
-
811 (ha
->req_ring_index
- cnt
);
813 if (ha
->req_q_cnt
< (req_cnt
+ 2))
816 /* Build command packet. */
817 ha
->current_outstanding_cmd
= handle
;
818 ha
->outstanding_cmds
[handle
] = sp
;
820 sp
->cmd
->host_scribble
= (unsigned char *)(unsigned long)handle
;
821 ha
->req_q_cnt
-= req_cnt
;
823 cmd_pkt
= (struct cmd_type_7
*)ha
->request_ring_ptr
;
824 cmd_pkt
->handle
= handle
;
826 /* Zero out remaining portion of packet. */
827 clr_ptr
= (uint32_t *)cmd_pkt
+ 2;
828 memset(clr_ptr
, 0, REQUEST_ENTRY_SIZE
- 8);
829 cmd_pkt
->dseg_count
= cpu_to_le16(tot_dsds
);
831 /* Set NPORT-ID and LUN number*/
832 cmd_pkt
->nport_handle
= cpu_to_le16(sp
->fcport
->loop_id
);
833 cmd_pkt
->port_id
[0] = sp
->fcport
->d_id
.b
.al_pa
;
834 cmd_pkt
->port_id
[1] = sp
->fcport
->d_id
.b
.area
;
835 cmd_pkt
->port_id
[2] = sp
->fcport
->d_id
.b
.domain
;
837 cmd_pkt
->lun
[1] = LSB(sp
->cmd
->device
->lun
);
838 cmd_pkt
->lun
[2] = MSB(sp
->cmd
->device
->lun
);
840 /* Update tagged queuing modifier -- default is TSK_SIMPLE (0). */
841 if (scsi_populate_tag_msg(cmd
, tag
)) {
844 cmd_pkt
->task
= TSK_HEAD_OF_QUEUE
;
846 case MSG_ORDERED_TAG
:
847 cmd_pkt
->task
= TSK_ORDERED
;
852 /* Load SCSI command packet. */
853 memcpy(cmd_pkt
->fcp_cdb
, cmd
->cmnd
, cmd
->cmd_len
);
854 host_to_fcp_swap(cmd_pkt
->fcp_cdb
, sizeof(cmd_pkt
->fcp_cdb
));
856 cmd_pkt
->byte_count
= cpu_to_le32((uint32_t)cmd
->request_bufflen
);
858 /* Build IOCB segments */
859 qla24xx_build_scsi_iocbs(sp
, cmd_pkt
, tot_dsds
);
861 /* Set total data segment count. */
862 cmd_pkt
->entry_count
= (uint8_t)req_cnt
;
865 /* Adjust ring index. */
866 ha
->req_ring_index
++;
867 if (ha
->req_ring_index
== ha
->request_q_length
) {
868 ha
->req_ring_index
= 0;
869 ha
->request_ring_ptr
= ha
->request_ring
;
871 ha
->request_ring_ptr
++;
873 sp
->flags
|= SRB_DMA_VALID
;
874 sp
->state
= SRB_ACTIVE_STATE
;
876 /* Set chip new ring index. */
877 WRT_REG_DWORD(®
->req_q_in
, ha
->req_ring_index
);
878 RD_REG_DWORD_RELAXED(®
->req_q_in
); /* PCI Posting. */
880 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
884 if (cmd
->use_sg
&& tot_dsds
) {
885 sg
= (struct scatterlist
*) cmd
->request_buffer
;
886 pci_unmap_sg(ha
->pdev
, sg
, cmd
->use_sg
,
887 cmd
->sc_data_direction
);
888 } else if (tot_dsds
) {
889 pci_unmap_single(ha
->pdev
, sp
->dma_handle
,
890 cmd
->request_bufflen
, cmd
->sc_data_direction
);
892 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
894 return QLA_FUNCTION_FAILED
;