[SCSI] scsi_trace: Enhance SCSI command tracing
[linux-2.6-block.git] / drivers / scsi / qla2xxx / qla_iocb.c
CommitLineData
fa90c54f
AV
1/*
2 * QLogic Fibre Channel HBA Driver
01e58d8e 3 * Copyright (c) 2003-2008 QLogic Corporation
1da177e4 4 *
fa90c54f
AV
5 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
1da177e4
LT
7#include "qla_def.h"
8
9#include <linux/blkdev.h>
10#include <linux/delay.h>
11
12#include <scsi/scsi_tcq.h>
13
73208dfd
AC
14static request_t *qla2x00_req_pkt(struct scsi_qla_host *, struct req_que *,
15 struct rsp_que *rsp);
16static void qla2x00_isp_cmd(struct scsi_qla_host *, struct req_que *);
1da177e4 17
59e0b8b0 18static void qla25xx_set_que(srb_t *, struct rsp_que **);
1da177e4
LT
19/**
20 * qla2x00_get_cmd_direction() - Determine control_flag data direction.
21 * @cmd: SCSI command
22 *
23 * Returns the proper CF_* direction based on CDB.
24 */
25static inline uint16_t
49fd462a 26qla2x00_get_cmd_direction(srb_t *sp)
1da177e4
LT
27{
28 uint16_t cflags;
29
30 cflags = 0;
31
32 /* Set transfer direction */
49fd462a 33 if (sp->cmd->sc_data_direction == DMA_TO_DEVICE) {
1da177e4 34 cflags = CF_WRITE;
e315cd28 35 sp->fcport->vha->hw->qla_stats.output_bytes +=
49fd462a
HZ
36 scsi_bufflen(sp->cmd);
37 } else if (sp->cmd->sc_data_direction == DMA_FROM_DEVICE) {
1da177e4 38 cflags = CF_READ;
e315cd28 39 sp->fcport->vha->hw->qla_stats.input_bytes +=
49fd462a
HZ
40 scsi_bufflen(sp->cmd);
41 }
1da177e4
LT
42 return (cflags);
43}
44
45/**
46 * qla2x00_calc_iocbs_32() - Determine number of Command Type 2 and
47 * Continuation Type 0 IOCBs to allocate.
48 *
49 * @dsds: number of data segment decriptors needed
50 *
51 * Returns the number of IOCB entries needed to store @dsds.
52 */
53uint16_t
54qla2x00_calc_iocbs_32(uint16_t dsds)
55{
56 uint16_t iocbs;
57
58 iocbs = 1;
59 if (dsds > 3) {
60 iocbs += (dsds - 3) / 7;
61 if ((dsds - 3) % 7)
62 iocbs++;
63 }
64 return (iocbs);
65}
66
67/**
68 * qla2x00_calc_iocbs_64() - Determine number of Command Type 3 and
69 * Continuation Type 1 IOCBs to allocate.
70 *
71 * @dsds: number of data segment decriptors needed
72 *
73 * Returns the number of IOCB entries needed to store @dsds.
74 */
75uint16_t
76qla2x00_calc_iocbs_64(uint16_t dsds)
77{
78 uint16_t iocbs;
79
80 iocbs = 1;
81 if (dsds > 2) {
82 iocbs += (dsds - 2) / 5;
83 if ((dsds - 2) % 5)
84 iocbs++;
85 }
86 return (iocbs);
87}
88
89/**
90 * qla2x00_prep_cont_type0_iocb() - Initialize a Continuation Type 0 IOCB.
91 * @ha: HA context
92 *
93 * Returns a pointer to the Continuation Type 0 IOCB packet.
94 */
95static inline cont_entry_t *
67c2e93a 96qla2x00_prep_cont_type0_iocb(struct scsi_qla_host *vha)
1da177e4
LT
97{
98 cont_entry_t *cont_pkt;
67c2e93a 99 struct req_que *req = vha->req;
1da177e4 100 /* Adjust ring index. */
e315cd28
AC
101 req->ring_index++;
102 if (req->ring_index == req->length) {
103 req->ring_index = 0;
104 req->ring_ptr = req->ring;
1da177e4 105 } else {
e315cd28 106 req->ring_ptr++;
1da177e4
LT
107 }
108
e315cd28 109 cont_pkt = (cont_entry_t *)req->ring_ptr;
1da177e4
LT
110
111 /* Load packet defaults. */
112 *((uint32_t *)(&cont_pkt->entry_type)) =
113 __constant_cpu_to_le32(CONTINUE_TYPE);
114
115 return (cont_pkt);
116}
117
118/**
119 * qla2x00_prep_cont_type1_iocb() - Initialize a Continuation Type 1 IOCB.
120 * @ha: HA context
121 *
122 * Returns a pointer to the continuation type 1 IOCB packet.
123 */
124static inline cont_a64_entry_t *
67c2e93a 125qla2x00_prep_cont_type1_iocb(scsi_qla_host_t *vha)
1da177e4
LT
126{
127 cont_a64_entry_t *cont_pkt;
128
67c2e93a 129 struct req_que *req = vha->req;
1da177e4 130 /* Adjust ring index. */
e315cd28
AC
131 req->ring_index++;
132 if (req->ring_index == req->length) {
133 req->ring_index = 0;
134 req->ring_ptr = req->ring;
1da177e4 135 } else {
e315cd28 136 req->ring_ptr++;
1da177e4
LT
137 }
138
e315cd28 139 cont_pkt = (cont_a64_entry_t *)req->ring_ptr;
1da177e4
LT
140
141 /* Load packet defaults. */
142 *((uint32_t *)(&cont_pkt->entry_type)) =
143 __constant_cpu_to_le32(CONTINUE_A64_TYPE);
144
145 return (cont_pkt);
146}
147
148/**
149 * qla2x00_build_scsi_iocbs_32() - Build IOCB command utilizing 32bit
150 * capable IOCB types.
151 *
152 * @sp: SRB command to process
153 * @cmd_pkt: Command type 2 IOCB
154 * @tot_dsds: Total number of segments to transfer
155 */
156void qla2x00_build_scsi_iocbs_32(srb_t *sp, cmd_entry_t *cmd_pkt,
157 uint16_t tot_dsds)
158{
159 uint16_t avail_dsds;
160 uint32_t *cur_dsd;
e315cd28 161 scsi_qla_host_t *vha;
1da177e4 162 struct scsi_cmnd *cmd;
385d70b4
FT
163 struct scatterlist *sg;
164 int i;
1da177e4
LT
165
166 cmd = sp->cmd;
167
168 /* Update entry type to indicate Command Type 2 IOCB */
169 *((uint32_t *)(&cmd_pkt->entry_type)) =
170 __constant_cpu_to_le32(COMMAND_TYPE);
171
172 /* No data transfer */
385d70b4 173 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
1da177e4
LT
174 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
175 return;
176 }
177
444786d7 178 vha = sp->fcport->vha;
49fd462a 179 cmd_pkt->control_flags |= cpu_to_le16(qla2x00_get_cmd_direction(sp));
1da177e4
LT
180
181 /* Three DSDs are available in the Command Type 2 IOCB */
182 avail_dsds = 3;
183 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
184
185 /* Load data segments */
385d70b4
FT
186 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
187 cont_entry_t *cont_pkt;
188
189 /* Allocate additional continuation packets? */
190 if (avail_dsds == 0) {
191 /*
192 * Seven DSDs are available in the Continuation
193 * Type 0 IOCB.
194 */
67c2e93a 195 cont_pkt = qla2x00_prep_cont_type0_iocb(vha);
385d70b4
FT
196 cur_dsd = (uint32_t *)&cont_pkt->dseg_0_address;
197 avail_dsds = 7;
1da177e4 198 }
385d70b4
FT
199
200 *cur_dsd++ = cpu_to_le32(sg_dma_address(sg));
201 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
202 avail_dsds--;
1da177e4
LT
203 }
204}
205
206/**
207 * qla2x00_build_scsi_iocbs_64() - Build IOCB command utilizing 64bit
208 * capable IOCB types.
209 *
210 * @sp: SRB command to process
211 * @cmd_pkt: Command type 3 IOCB
212 * @tot_dsds: Total number of segments to transfer
213 */
214void qla2x00_build_scsi_iocbs_64(srb_t *sp, cmd_entry_t *cmd_pkt,
215 uint16_t tot_dsds)
216{
217 uint16_t avail_dsds;
218 uint32_t *cur_dsd;
e315cd28 219 scsi_qla_host_t *vha;
1da177e4 220 struct scsi_cmnd *cmd;
385d70b4
FT
221 struct scatterlist *sg;
222 int i;
1da177e4
LT
223
224 cmd = sp->cmd;
225
226 /* Update entry type to indicate Command Type 3 IOCB */
227 *((uint32_t *)(&cmd_pkt->entry_type)) =
228 __constant_cpu_to_le32(COMMAND_A64_TYPE);
229
230 /* No data transfer */
385d70b4 231 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
1da177e4
LT
232 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
233 return;
234 }
235
444786d7 236 vha = sp->fcport->vha;
49fd462a 237 cmd_pkt->control_flags |= cpu_to_le16(qla2x00_get_cmd_direction(sp));
1da177e4
LT
238
239 /* Two DSDs are available in the Command Type 3 IOCB */
240 avail_dsds = 2;
241 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
242
243 /* Load data segments */
385d70b4
FT
244 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
245 dma_addr_t sle_dma;
246 cont_a64_entry_t *cont_pkt;
247
248 /* Allocate additional continuation packets? */
249 if (avail_dsds == 0) {
250 /*
251 * Five DSDs are available in the Continuation
252 * Type 1 IOCB.
253 */
67c2e93a 254 cont_pkt = qla2x00_prep_cont_type1_iocb(vha);
385d70b4
FT
255 cur_dsd = (uint32_t *)cont_pkt->dseg_0_address;
256 avail_dsds = 5;
1da177e4 257 }
385d70b4
FT
258
259 sle_dma = sg_dma_address(sg);
260 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
261 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
262 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
263 avail_dsds--;
1da177e4
LT
264 }
265}
266
267/**
268 * qla2x00_start_scsi() - Send a SCSI command to the ISP
269 * @sp: command to send to the ISP
270 *
cc3ef7bc 271 * Returns non-zero if a failure occurred, else zero.
1da177e4
LT
272 */
273int
274qla2x00_start_scsi(srb_t *sp)
275{
385d70b4 276 int ret, nseg;
1da177e4 277 unsigned long flags;
e315cd28 278 scsi_qla_host_t *vha;
1da177e4
LT
279 struct scsi_cmnd *cmd;
280 uint32_t *clr_ptr;
281 uint32_t index;
282 uint32_t handle;
283 cmd_entry_t *cmd_pkt;
1da177e4
LT
284 uint16_t cnt;
285 uint16_t req_cnt;
286 uint16_t tot_dsds;
3d71644c 287 struct device_reg_2xxx __iomem *reg;
e315cd28
AC
288 struct qla_hw_data *ha;
289 struct req_que *req;
73208dfd 290 struct rsp_que *rsp;
1da177e4
LT
291
292 /* Setup device pointers. */
293 ret = 0;
444786d7 294 vha = sp->fcport->vha;
e315cd28 295 ha = vha->hw;
3d71644c 296 reg = &ha->iobase->isp;
1da177e4 297 cmd = sp->cmd;
73208dfd
AC
298 req = ha->req_q_map[0];
299 rsp = ha->rsp_q_map[0];
83021920 300 /* So we know we haven't pci_map'ed anything yet */
301 tot_dsds = 0;
1da177e4
LT
302
303 /* Send marker if required */
e315cd28 304 if (vha->marker_needed != 0) {
73208dfd
AC
305 if (qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL)
306 != QLA_SUCCESS)
1da177e4 307 return (QLA_FUNCTION_FAILED);
e315cd28 308 vha->marker_needed = 0;
1da177e4
LT
309 }
310
311 /* Acquire ring specific lock */
c9c5ced9 312 spin_lock_irqsave(&ha->hardware_lock, flags);
1da177e4
LT
313
314 /* Check for room in outstanding command list. */
e315cd28 315 handle = req->current_outstanding_cmd;
1da177e4
LT
316 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
317 handle++;
318 if (handle == MAX_OUTSTANDING_COMMANDS)
319 handle = 1;
e315cd28 320 if (!req->outstanding_cmds[handle])
1da177e4
LT
321 break;
322 }
323 if (index == MAX_OUTSTANDING_COMMANDS)
324 goto queuing_error;
325
83021920 326 /* Map the sg table so we have an accurate count of sg entries needed */
2c3dfe3f
SJ
327 if (scsi_sg_count(cmd)) {
328 nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
329 scsi_sg_count(cmd), cmd->sc_data_direction);
330 if (unlikely(!nseg))
331 goto queuing_error;
332 } else
333 nseg = 0;
334
385d70b4 335 tot_dsds = nseg;
83021920 336
1da177e4 337 /* Calculate the number of request entries needed. */
fd34f556 338 req_cnt = ha->isp_ops->calc_req_entries(tot_dsds);
e315cd28 339 if (req->cnt < (req_cnt + 2)) {
1da177e4 340 cnt = RD_REG_WORD_RELAXED(ISP_REQ_Q_OUT(ha, reg));
e315cd28
AC
341 if (req->ring_index < cnt)
342 req->cnt = cnt - req->ring_index;
1da177e4 343 else
e315cd28
AC
344 req->cnt = req->length -
345 (req->ring_index - cnt);
1da177e4 346 }
e315cd28 347 if (req->cnt < (req_cnt + 2))
1da177e4
LT
348 goto queuing_error;
349
1da177e4 350 /* Build command packet */
e315cd28
AC
351 req->current_outstanding_cmd = handle;
352 req->outstanding_cmds[handle] = sp;
cf53b069 353 sp->handle = handle;
1da177e4 354 sp->cmd->host_scribble = (unsigned char *)(unsigned long)handle;
e315cd28 355 req->cnt -= req_cnt;
1da177e4 356
e315cd28 357 cmd_pkt = (cmd_entry_t *)req->ring_ptr;
1da177e4
LT
358 cmd_pkt->handle = handle;
359 /* Zero out remaining portion of packet. */
360 clr_ptr = (uint32_t *)cmd_pkt + 2;
361 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
362 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
363
bdf79621 364 /* Set target ID and LUN number*/
365 SET_TARGET_ID(ha, cmd_pkt->target, sp->fcport->loop_id);
366 cmd_pkt->lun = cpu_to_le16(sp->cmd->device->lun);
1da177e4
LT
367
368 /* Update tagged queuing modifier */
369 cmd_pkt->control_flags = __constant_cpu_to_le16(CF_SIMPLE_TAG);
1da177e4 370
1da177e4
LT
371 /* Load SCSI command packet. */
372 memcpy(cmd_pkt->scsi_cdb, cmd->cmnd, cmd->cmd_len);
385d70b4 373 cmd_pkt->byte_count = cpu_to_le32((uint32_t)scsi_bufflen(cmd));
1da177e4
LT
374
375 /* Build IOCB segments */
fd34f556 376 ha->isp_ops->build_iocbs(sp, cmd_pkt, tot_dsds);
1da177e4
LT
377
378 /* Set total data segment count. */
379 cmd_pkt->entry_count = (uint8_t)req_cnt;
380 wmb();
381
382 /* Adjust ring index. */
e315cd28
AC
383 req->ring_index++;
384 if (req->ring_index == req->length) {
385 req->ring_index = 0;
386 req->ring_ptr = req->ring;
1da177e4 387 } else
e315cd28 388 req->ring_ptr++;
1da177e4 389
1da177e4 390 sp->flags |= SRB_DMA_VALID;
1da177e4
LT
391
392 /* Set chip new ring index. */
e315cd28 393 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), req->ring_index);
1da177e4
LT
394 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, reg)); /* PCI Posting. */
395
4fdfefe5 396 /* Manage unprocessed RIO/ZIO commands in response queue. */
e315cd28 397 if (vha->flags.process_response_queue &&
73208dfd
AC
398 rsp->ring_ptr->signature != RESPONSE_PROCESSED)
399 qla2x00_process_response_queue(rsp);
4fdfefe5 400
c9c5ced9 401 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1da177e4
LT
402 return (QLA_SUCCESS);
403
404queuing_error:
385d70b4
FT
405 if (tot_dsds)
406 scsi_dma_unmap(cmd);
407
c9c5ced9 408 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1da177e4
LT
409
410 return (QLA_FUNCTION_FAILED);
411}
412
413/**
414 * qla2x00_marker() - Send a marker IOCB to the firmware.
415 * @ha: HA context
416 * @loop_id: loop ID
417 * @lun: LUN
418 * @type: marker modifier
419 *
420 * Can be called from both normal and interrupt context.
421 *
cc3ef7bc 422 * Returns non-zero if a failure occurred, else zero.
1da177e4 423 */
fa2a1ce5 424int
73208dfd
AC
425__qla2x00_marker(struct scsi_qla_host *vha, struct req_que *req,
426 struct rsp_que *rsp, uint16_t loop_id,
427 uint16_t lun, uint8_t type)
1da177e4 428{
2b6c0cee
AV
429 mrk_entry_t *mrk;
430 struct mrk_entry_24xx *mrk24;
e315cd28
AC
431 struct qla_hw_data *ha = vha->hw;
432 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1da177e4 433
2b6c0cee 434 mrk24 = NULL;
73208dfd 435 mrk = (mrk_entry_t *)qla2x00_req_pkt(vha, req, rsp);
2b6c0cee
AV
436 if (mrk == NULL) {
437 DEBUG2_3(printk("%s(%ld): failed to allocate Marker IOCB.\n",
e315cd28 438 __func__, base_vha->host_no));
1da177e4
LT
439
440 return (QLA_FUNCTION_FAILED);
441 }
442
2b6c0cee
AV
443 mrk->entry_type = MARKER_TYPE;
444 mrk->modifier = type;
1da177e4 445 if (type != MK_SYNC_ALL) {
e428924c 446 if (IS_FWI2_CAPABLE(ha)) {
2b6c0cee
AV
447 mrk24 = (struct mrk_entry_24xx *) mrk;
448 mrk24->nport_handle = cpu_to_le16(loop_id);
449 mrk24->lun[1] = LSB(lun);
450 mrk24->lun[2] = MSB(lun);
b797b6de 451 host_to_fcp_swap(mrk24->lun, sizeof(mrk24->lun));
e315cd28 452 mrk24->vp_index = vha->vp_idx;
2afa19a9 453 mrk24->handle = MAKE_HANDLE(req->id, mrk24->handle);
2b6c0cee
AV
454 } else {
455 SET_TARGET_ID(ha, mrk->target, loop_id);
456 mrk->lun = cpu_to_le16(lun);
457 }
1da177e4
LT
458 }
459 wmb();
460
73208dfd 461 qla2x00_isp_cmd(vha, req);
1da177e4
LT
462
463 return (QLA_SUCCESS);
464}
465
fa2a1ce5 466int
73208dfd
AC
467qla2x00_marker(struct scsi_qla_host *vha, struct req_que *req,
468 struct rsp_que *rsp, uint16_t loop_id, uint16_t lun,
469 uint8_t type)
1da177e4
LT
470{
471 int ret;
472 unsigned long flags = 0;
473
73208dfd
AC
474 spin_lock_irqsave(&vha->hw->hardware_lock, flags);
475 ret = __qla2x00_marker(vha, req, rsp, loop_id, lun, type);
476 spin_unlock_irqrestore(&vha->hw->hardware_lock, flags);
1da177e4
LT
477
478 return (ret);
479}
480
481/**
482 * qla2x00_req_pkt() - Retrieve a request packet from the request ring.
483 * @ha: HA context
484 *
485 * Note: The caller must hold the hardware lock before calling this routine.
486 *
487 * Returns NULL if function failed, else, a pointer to the request packet.
488 */
489static request_t *
73208dfd
AC
490qla2x00_req_pkt(struct scsi_qla_host *vha, struct req_que *req,
491 struct rsp_que *rsp)
1da177e4 492{
e315cd28 493 struct qla_hw_data *ha = vha->hw;
73208dfd 494 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
1da177e4
LT
495 request_t *pkt = NULL;
496 uint16_t cnt;
497 uint32_t *dword_ptr;
498 uint32_t timer;
499 uint16_t req_cnt = 1;
500
501 /* Wait 1 second for slot. */
502 for (timer = HZ; timer; timer--) {
e315cd28 503 if ((req_cnt + 2) >= req->cnt) {
1da177e4 504 /* Calculate number of free request entries. */
73208dfd
AC
505 if (ha->mqenable)
506 cnt = (uint16_t)
507 RD_REG_DWORD(&reg->isp25mq.req_q_out);
508 else {
509 if (IS_FWI2_CAPABLE(ha))
510 cnt = (uint16_t)RD_REG_DWORD(
511 &reg->isp24.req_q_out);
512 else
513 cnt = qla2x00_debounce_register(
514 ISP_REQ_Q_OUT(ha, &reg->isp));
515 }
e315cd28
AC
516 if (req->ring_index < cnt)
517 req->cnt = cnt - req->ring_index;
1da177e4 518 else
e315cd28
AC
519 req->cnt = req->length -
520 (req->ring_index - cnt);
1da177e4
LT
521 }
522 /* If room for request in request ring. */
e315cd28
AC
523 if ((req_cnt + 2) < req->cnt) {
524 req->cnt--;
525 pkt = req->ring_ptr;
1da177e4
LT
526
527 /* Zero out packet. */
528 dword_ptr = (uint32_t *)pkt;
529 for (cnt = 0; cnt < REQUEST_ENTRY_SIZE / 4; cnt++)
530 *dword_ptr++ = 0;
531
1da177e4
LT
532 /* Set entry count. */
533 pkt->entry_count = 1;
534
535 break;
536 }
537
538 /* Release ring specific lock */
e315cd28 539 spin_unlock_irq(&ha->hardware_lock);
1da177e4
LT
540
541 udelay(2); /* 2 us */
542
543 /* Check for pending interrupts. */
544 /* During init we issue marker directly */
e315cd28 545 if (!vha->marker_needed && !vha->flags.init_done)
73208dfd 546 qla2x00_poll(rsp);
1da177e4
LT
547 spin_lock_irq(&ha->hardware_lock);
548 }
549 if (!pkt) {
550 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
551 }
552
553 return (pkt);
554}
555
556/**
557 * qla2x00_isp_cmd() - Modify the request ring pointer.
558 * @ha: HA context
559 *
560 * Note: The caller must hold the hardware lock before calling this routine.
561 */
413975a0 562static void
73208dfd 563qla2x00_isp_cmd(struct scsi_qla_host *vha, struct req_que *req)
1da177e4 564{
e315cd28 565 struct qla_hw_data *ha = vha->hw;
73208dfd 566 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
17d98630 567 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1da177e4
LT
568
569 DEBUG5(printk("%s(): IOCB data:\n", __func__));
570 DEBUG5(qla2x00_dump_buffer(
e315cd28 571 (uint8_t *)req->ring_ptr, REQUEST_ENTRY_SIZE));
1da177e4
LT
572
573 /* Adjust ring index. */
e315cd28
AC
574 req->ring_index++;
575 if (req->ring_index == req->length) {
576 req->ring_index = 0;
577 req->ring_ptr = req->ring;
1da177e4 578 } else
e315cd28 579 req->ring_ptr++;
1da177e4
LT
580
581 /* Set chip new ring index. */
17d98630
AC
582 if (ha->mqenable) {
583 WRT_REG_DWORD(&reg->isp25mq.req_q_in, req->ring_index);
584 RD_REG_DWORD(&ioreg->hccr);
585 }
73208dfd
AC
586 else {
587 if (IS_FWI2_CAPABLE(ha)) {
588 WRT_REG_DWORD(&reg->isp24.req_q_in, req->ring_index);
589 RD_REG_DWORD_RELAXED(&reg->isp24.req_q_in);
590 } else {
591 WRT_REG_WORD(ISP_REQ_Q_IN(ha, &reg->isp),
592 req->ring_index);
593 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, &reg->isp));
594 }
2b6c0cee
AV
595 }
596
597}
598
599/**
600 * qla24xx_calc_iocbs() - Determine number of Command Type 3 and
601 * Continuation Type 1 IOCBs to allocate.
602 *
603 * @dsds: number of data segment decriptors needed
604 *
605 * Returns the number of IOCB entries needed to store @dsds.
606 */
607static inline uint16_t
608qla24xx_calc_iocbs(uint16_t dsds)
609{
610 uint16_t iocbs;
611
612 iocbs = 1;
613 if (dsds > 1) {
614 iocbs += (dsds - 1) / 5;
615 if ((dsds - 1) % 5)
616 iocbs++;
617 }
618 return iocbs;
619}
620
621/**
622 * qla24xx_build_scsi_iocbs() - Build IOCB command utilizing Command Type 7
623 * IOCB types.
624 *
625 * @sp: SRB command to process
626 * @cmd_pkt: Command type 3 IOCB
627 * @tot_dsds: Total number of segments to transfer
628 */
629static inline void
630qla24xx_build_scsi_iocbs(srb_t *sp, struct cmd_type_7 *cmd_pkt,
631 uint16_t tot_dsds)
632{
633 uint16_t avail_dsds;
634 uint32_t *cur_dsd;
e315cd28 635 scsi_qla_host_t *vha;
2b6c0cee 636 struct scsi_cmnd *cmd;
385d70b4
FT
637 struct scatterlist *sg;
638 int i;
73208dfd 639 struct req_que *req;
2b6c0cee
AV
640
641 cmd = sp->cmd;
642
643 /* Update entry type to indicate Command Type 3 IOCB */
644 *((uint32_t *)(&cmd_pkt->entry_type)) =
645 __constant_cpu_to_le32(COMMAND_TYPE_7);
646
647 /* No data transfer */
385d70b4 648 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
2b6c0cee
AV
649 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
650 return;
651 }
652
444786d7 653 vha = sp->fcport->vha;
67c2e93a 654 req = vha->req;
2b6c0cee
AV
655
656 /* Set transfer direction */
49fd462a 657 if (cmd->sc_data_direction == DMA_TO_DEVICE) {
2b6c0cee
AV
658 cmd_pkt->task_mgmt_flags =
659 __constant_cpu_to_le16(TMF_WRITE_DATA);
e315cd28 660 sp->fcport->vha->hw->qla_stats.output_bytes +=
49fd462a
HZ
661 scsi_bufflen(sp->cmd);
662 } else if (cmd->sc_data_direction == DMA_FROM_DEVICE) {
2b6c0cee
AV
663 cmd_pkt->task_mgmt_flags =
664 __constant_cpu_to_le16(TMF_READ_DATA);
e315cd28 665 sp->fcport->vha->hw->qla_stats.input_bytes +=
49fd462a
HZ
666 scsi_bufflen(sp->cmd);
667 }
2b6c0cee
AV
668
669 /* One DSD is available in the Command Type 3 IOCB */
670 avail_dsds = 1;
671 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
672
673 /* Load data segments */
385d70b4
FT
674
675 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
676 dma_addr_t sle_dma;
677 cont_a64_entry_t *cont_pkt;
678
679 /* Allocate additional continuation packets? */
680 if (avail_dsds == 0) {
681 /*
682 * Five DSDs are available in the Continuation
683 * Type 1 IOCB.
684 */
67c2e93a 685 cont_pkt = qla2x00_prep_cont_type1_iocb(vha);
385d70b4
FT
686 cur_dsd = (uint32_t *)cont_pkt->dseg_0_address;
687 avail_dsds = 5;
2b6c0cee 688 }
385d70b4
FT
689
690 sle_dma = sg_dma_address(sg);
691 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
692 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
693 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
694 avail_dsds--;
2b6c0cee
AV
695 }
696}
697
698
699/**
700 * qla24xx_start_scsi() - Send a SCSI command to the ISP
701 * @sp: command to send to the ISP
702 *
cc3ef7bc 703 * Returns non-zero if a failure occurred, else zero.
2b6c0cee
AV
704 */
705int
706qla24xx_start_scsi(srb_t *sp)
707{
385d70b4 708 int ret, nseg;
2b6c0cee 709 unsigned long flags;
2b6c0cee
AV
710 uint32_t *clr_ptr;
711 uint32_t index;
712 uint32_t handle;
713 struct cmd_type_7 *cmd_pkt;
2b6c0cee
AV
714 uint16_t cnt;
715 uint16_t req_cnt;
716 uint16_t tot_dsds;
73208dfd
AC
717 struct req_que *req = NULL;
718 struct rsp_que *rsp = NULL;
719 struct scsi_cmnd *cmd = sp->cmd;
444786d7 720 struct scsi_qla_host *vha = sp->fcport->vha;
73208dfd 721 struct qla_hw_data *ha = vha->hw;
2b6c0cee
AV
722
723 /* Setup device pointers. */
724 ret = 0;
73208dfd 725
59e0b8b0
AC
726 qla25xx_set_que(sp, &rsp);
727 req = vha->req;
73208dfd 728
2b6c0cee
AV
729 /* So we know we haven't pci_map'ed anything yet */
730 tot_dsds = 0;
731
732 /* Send marker if required */
e315cd28 733 if (vha->marker_needed != 0) {
73208dfd
AC
734 if (qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL)
735 != QLA_SUCCESS)
2b6c0cee 736 return QLA_FUNCTION_FAILED;
e315cd28 737 vha->marker_needed = 0;
2b6c0cee
AV
738 }
739
740 /* Acquire ring specific lock */
e315cd28 741 spin_lock_irqsave(&ha->hardware_lock, flags);
2b6c0cee
AV
742
743 /* Check for room in outstanding command list. */
e315cd28 744 handle = req->current_outstanding_cmd;
2b6c0cee
AV
745 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
746 handle++;
747 if (handle == MAX_OUTSTANDING_COMMANDS)
748 handle = 1;
e315cd28 749 if (!req->outstanding_cmds[handle])
2b6c0cee
AV
750 break;
751 }
752 if (index == MAX_OUTSTANDING_COMMANDS)
753 goto queuing_error;
754
755 /* Map the sg table so we have an accurate count of sg entries needed */
2c3dfe3f
SJ
756 if (scsi_sg_count(cmd)) {
757 nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
758 scsi_sg_count(cmd), cmd->sc_data_direction);
759 if (unlikely(!nseg))
2b6c0cee 760 goto queuing_error;
2c3dfe3f
SJ
761 } else
762 nseg = 0;
763
385d70b4 764 tot_dsds = nseg;
2b6c0cee
AV
765
766 req_cnt = qla24xx_calc_iocbs(tot_dsds);
e315cd28 767 if (req->cnt < (req_cnt + 2)) {
08029990 768 cnt = RD_REG_DWORD_RELAXED(req->req_q_out);
73208dfd 769
e315cd28
AC
770 if (req->ring_index < cnt)
771 req->cnt = cnt - req->ring_index;
2b6c0cee 772 else
e315cd28
AC
773 req->cnt = req->length -
774 (req->ring_index - cnt);
2b6c0cee 775 }
e315cd28 776 if (req->cnt < (req_cnt + 2))
2b6c0cee 777 goto queuing_error;
2b6c0cee
AV
778
779 /* Build command packet. */
e315cd28
AC
780 req->current_outstanding_cmd = handle;
781 req->outstanding_cmds[handle] = sp;
cf53b069 782 sp->handle = handle;
2b6c0cee 783 sp->cmd->host_scribble = (unsigned char *)(unsigned long)handle;
e315cd28 784 req->cnt -= req_cnt;
2b6c0cee 785
e315cd28 786 cmd_pkt = (struct cmd_type_7 *)req->ring_ptr;
2afa19a9 787 cmd_pkt->handle = MAKE_HANDLE(req->id, handle);
2b6c0cee
AV
788
789 /* Zero out remaining portion of packet. */
72df8325 790 /* tagged queuing modifier -- default is TSK_SIMPLE (0). */
2b6c0cee
AV
791 clr_ptr = (uint32_t *)cmd_pkt + 2;
792 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
793 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
794
795 /* Set NPORT-ID and LUN number*/
796 cmd_pkt->nport_handle = cpu_to_le16(sp->fcport->loop_id);
797 cmd_pkt->port_id[0] = sp->fcport->d_id.b.al_pa;
798 cmd_pkt->port_id[1] = sp->fcport->d_id.b.area;
799 cmd_pkt->port_id[2] = sp->fcport->d_id.b.domain;
2c3dfe3f 800 cmd_pkt->vp_index = sp->fcport->vp_idx;
2b6c0cee 801
661c3f6c 802 int_to_scsilun(sp->cmd->device->lun, &cmd_pkt->lun);
0d4be124 803 host_to_fcp_swap((uint8_t *)&cmd_pkt->lun, sizeof(cmd_pkt->lun));
2b6c0cee 804
2b6c0cee
AV
805 /* Load SCSI command packet. */
806 memcpy(cmd_pkt->fcp_cdb, cmd->cmnd, cmd->cmd_len);
807 host_to_fcp_swap(cmd_pkt->fcp_cdb, sizeof(cmd_pkt->fcp_cdb));
808
385d70b4 809 cmd_pkt->byte_count = cpu_to_le32((uint32_t)scsi_bufflen(cmd));
2b6c0cee
AV
810
811 /* Build IOCB segments */
812 qla24xx_build_scsi_iocbs(sp, cmd_pkt, tot_dsds);
813
814 /* Set total data segment count. */
815 cmd_pkt->entry_count = (uint8_t)req_cnt;
2afa19a9
AC
816 /* Specify response queue number where completion should happen */
817 cmd_pkt->entry_status = (uint8_t) rsp->id;
2b6c0cee
AV
818 wmb();
819
820 /* Adjust ring index. */
e315cd28
AC
821 req->ring_index++;
822 if (req->ring_index == req->length) {
823 req->ring_index = 0;
824 req->ring_ptr = req->ring;
2b6c0cee 825 } else
e315cd28 826 req->ring_ptr++;
2b6c0cee
AV
827
828 sp->flags |= SRB_DMA_VALID;
2b6c0cee
AV
829
830 /* Set chip new ring index. */
08029990
AV
831 WRT_REG_DWORD(req->req_q_in, req->ring_index);
832 RD_REG_DWORD_RELAXED(&ha->iobase->isp24.hccr);
2b6c0cee 833
4fdfefe5 834 /* Manage unprocessed RIO/ZIO commands in response queue. */
e315cd28 835 if (vha->flags.process_response_queue &&
73208dfd 836 rsp->ring_ptr->signature != RESPONSE_PROCESSED)
2afa19a9 837 qla24xx_process_response_queue(vha, rsp);
4fdfefe5 838
e315cd28 839 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2b6c0cee
AV
840 return QLA_SUCCESS;
841
842queuing_error:
385d70b4
FT
843 if (tot_dsds)
844 scsi_dma_unmap(cmd);
845
e315cd28 846 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2b6c0cee
AV
847
848 return QLA_FUNCTION_FAILED;
1da177e4 849}
68ca949c 850
59e0b8b0 851static void qla25xx_set_que(srb_t *sp, struct rsp_que **rsp)
68ca949c
AC
852{
853 struct scsi_cmnd *cmd = sp->cmd;
68ca949c
AC
854 struct qla_hw_data *ha = sp->fcport->vha->hw;
855 int affinity = cmd->request->cpu;
856
7163ea81 857 if (ha->flags.cpu_affinity_enabled && affinity >= 0 &&
59e0b8b0 858 affinity < ha->max_rsp_queues - 1)
68ca949c 859 *rsp = ha->rsp_q_map[affinity + 1];
59e0b8b0 860 else
68ca949c 861 *rsp = ha->rsp_q_map[0];
68ca949c 862}
ac280b67
AV
863
864/* Generic Control-SRB manipulation functions. */
865
866static void *
867qla2x00_alloc_iocbs(srb_t *sp)
868{
869 scsi_qla_host_t *vha = sp->fcport->vha;
870 struct qla_hw_data *ha = vha->hw;
871 struct req_que *req = ha->req_q_map[0];
872 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
873 uint32_t index, handle;
874 request_t *pkt;
875 uint16_t cnt, req_cnt;
876
877 pkt = NULL;
878 req_cnt = 1;
879
880 /* Check for room in outstanding command list. */
881 handle = req->current_outstanding_cmd;
882 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
883 handle++;
884 if (handle == MAX_OUTSTANDING_COMMANDS)
885 handle = 1;
886 if (!req->outstanding_cmds[handle])
887 break;
888 }
889 if (index == MAX_OUTSTANDING_COMMANDS)
890 goto queuing_error;
891
892 /* Check for room on request queue. */
893 if (req->cnt < req_cnt) {
894 if (ha->mqenable)
895 cnt = RD_REG_DWORD(&reg->isp25mq.req_q_out);
896 else if (IS_FWI2_CAPABLE(ha))
897 cnt = RD_REG_DWORD(&reg->isp24.req_q_out);
898 else
899 cnt = qla2x00_debounce_register(
900 ISP_REQ_Q_OUT(ha, &reg->isp));
901
902 if (req->ring_index < cnt)
903 req->cnt = cnt - req->ring_index;
904 else
905 req->cnt = req->length -
906 (req->ring_index - cnt);
907 }
908 if (req->cnt < req_cnt)
909 goto queuing_error;
910
911 /* Prep packet */
912 req->current_outstanding_cmd = handle;
913 req->outstanding_cmds[handle] = sp;
914 req->cnt -= req_cnt;
915
916 pkt = req->ring_ptr;
917 memset(pkt, 0, REQUEST_ENTRY_SIZE);
918 pkt->entry_count = req_cnt;
919 pkt->handle = handle;
920 sp->handle = handle;
921
922queuing_error:
923 return pkt;
924}
925
926static void
927qla2x00_start_iocbs(srb_t *sp)
928{
929 struct qla_hw_data *ha = sp->fcport->vha->hw;
930 struct req_que *req = ha->req_q_map[0];
931 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
932 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
933
934 /* Adjust ring index. */
935 req->ring_index++;
936 if (req->ring_index == req->length) {
937 req->ring_index = 0;
938 req->ring_ptr = req->ring;
939 } else
940 req->ring_ptr++;
941
942 /* Set chip new ring index. */
943 if (ha->mqenable) {
944 WRT_REG_DWORD(&reg->isp25mq.req_q_in, req->ring_index);
945 RD_REG_DWORD(&ioreg->hccr);
946 } else if (IS_FWI2_CAPABLE(ha)) {
947 WRT_REG_DWORD(&reg->isp24.req_q_in, req->ring_index);
948 RD_REG_DWORD_RELAXED(&reg->isp24.req_q_in);
949 } else {
950 WRT_REG_WORD(ISP_REQ_Q_IN(ha, &reg->isp), req->ring_index);
951 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, &reg->isp));
952 }
953}
954
955static void
956qla24xx_login_iocb(srb_t *sp, struct logio_entry_24xx *logio)
957{
958 struct srb_logio *lio = sp->ctx;
959
960 logio->entry_type = LOGINOUT_PORT_IOCB_TYPE;
961 logio->control_flags = cpu_to_le16(LCF_COMMAND_PLOGI);
962 if (lio->flags & SRB_LOGIN_COND_PLOGI)
963 logio->control_flags |= cpu_to_le16(LCF_COND_PLOGI);
964 if (lio->flags & SRB_LOGIN_SKIP_PRLI)
965 logio->control_flags |= cpu_to_le16(LCF_SKIP_PRLI);
966 logio->nport_handle = cpu_to_le16(sp->fcport->loop_id);
967 logio->port_id[0] = sp->fcport->d_id.b.al_pa;
968 logio->port_id[1] = sp->fcport->d_id.b.area;
969 logio->port_id[2] = sp->fcport->d_id.b.domain;
970 logio->vp_index = sp->fcport->vp_idx;
971}
972
973static void
974qla2x00_login_iocb(srb_t *sp, struct mbx_entry *mbx)
975{
976 struct qla_hw_data *ha = sp->fcport->vha->hw;
977 struct srb_logio *lio = sp->ctx;
978 uint16_t opts;
979
980 mbx->entry_type = MBX_IOCB_TYPE;;
981 SET_TARGET_ID(ha, mbx->loop_id, sp->fcport->loop_id);
982 mbx->mb0 = cpu_to_le16(MBC_LOGIN_FABRIC_PORT);
983 opts = lio->flags & SRB_LOGIN_COND_PLOGI ? BIT_0: 0;
984 opts |= lio->flags & SRB_LOGIN_SKIP_PRLI ? BIT_1: 0;
985 if (HAS_EXTENDED_IDS(ha)) {
986 mbx->mb1 = cpu_to_le16(sp->fcport->loop_id);
987 mbx->mb10 = cpu_to_le16(opts);
988 } else {
989 mbx->mb1 = cpu_to_le16((sp->fcport->loop_id << 8) | opts);
990 }
991 mbx->mb2 = cpu_to_le16(sp->fcport->d_id.b.domain);
992 mbx->mb3 = cpu_to_le16(sp->fcport->d_id.b.area << 8 |
993 sp->fcport->d_id.b.al_pa);
994 mbx->mb9 = cpu_to_le16(sp->fcport->vp_idx);
995}
996
997static void
998qla24xx_logout_iocb(srb_t *sp, struct logio_entry_24xx *logio)
999{
1000 logio->entry_type = LOGINOUT_PORT_IOCB_TYPE;
1001 logio->control_flags =
1002 cpu_to_le16(LCF_COMMAND_LOGO|LCF_IMPL_LOGO);
1003 logio->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1004 logio->port_id[0] = sp->fcport->d_id.b.al_pa;
1005 logio->port_id[1] = sp->fcport->d_id.b.area;
1006 logio->port_id[2] = sp->fcport->d_id.b.domain;
1007 logio->vp_index = sp->fcport->vp_idx;
1008}
1009
1010static void
1011qla2x00_logout_iocb(srb_t *sp, struct mbx_entry *mbx)
1012{
1013 struct qla_hw_data *ha = sp->fcport->vha->hw;
1014
1015 mbx->entry_type = MBX_IOCB_TYPE;;
1016 SET_TARGET_ID(ha, mbx->loop_id, sp->fcport->loop_id);
1017 mbx->mb0 = cpu_to_le16(MBC_LOGOUT_FABRIC_PORT);
1018 mbx->mb1 = HAS_EXTENDED_IDS(ha) ?
1019 cpu_to_le16(sp->fcport->loop_id):
1020 cpu_to_le16(sp->fcport->loop_id << 8);
1021 mbx->mb2 = cpu_to_le16(sp->fcport->d_id.b.domain);
1022 mbx->mb3 = cpu_to_le16(sp->fcport->d_id.b.area << 8 |
1023 sp->fcport->d_id.b.al_pa);
1024 mbx->mb9 = cpu_to_le16(sp->fcport->vp_idx);
1025 /* Implicit: mbx->mbx10 = 0. */
1026}
1027
9a069e19
GM
1028static void
1029qla24xx_els_iocb(srb_t *sp, struct els_entry_24xx *els_iocb)
1030{
1031 struct fc_bsg_job *bsg_job = ((struct srb_bsg*)sp->ctx)->bsg_job;
1032
1033 els_iocb->entry_type = ELS_IOCB_TYPE;
1034 els_iocb->entry_count = 1;
1035 els_iocb->sys_define = 0;
1036 els_iocb->entry_status = 0;
1037 els_iocb->handle = sp->handle;
1038 els_iocb->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1039 els_iocb->tx_dsd_count = __constant_cpu_to_le16(bsg_job->request_payload.sg_cnt);
1040 els_iocb->vp_index = sp->fcport->vp_idx;
1041 els_iocb->sof_type = EST_SOFI3;
1042 els_iocb->rx_dsd_count = __constant_cpu_to_le16(bsg_job->reply_payload.sg_cnt);
1043
1044 els_iocb->opcode =(((struct srb_bsg*)sp->ctx)->ctx.type == SRB_ELS_CMD_RPT) ?
1045 bsg_job->request->rqst_data.r_els.els_code : bsg_job->request->rqst_data.h_els.command_code;
1046 els_iocb->port_id[0] = sp->fcport->d_id.b.al_pa;
1047 els_iocb->port_id[1] = sp->fcport->d_id.b.area;
1048 els_iocb->port_id[2] = sp->fcport->d_id.b.domain;
1049 els_iocb->control_flags = 0;
1050 els_iocb->rx_byte_count =
1051 cpu_to_le32(bsg_job->reply_payload.payload_len);
1052 els_iocb->tx_byte_count =
1053 cpu_to_le32(bsg_job->request_payload.payload_len);
1054
1055 els_iocb->tx_address[0] = cpu_to_le32(LSD(sg_dma_address
1056 (bsg_job->request_payload.sg_list)));
1057 els_iocb->tx_address[1] = cpu_to_le32(MSD(sg_dma_address
1058 (bsg_job->request_payload.sg_list)));
1059 els_iocb->tx_len = cpu_to_le32(sg_dma_len
1060 (bsg_job->request_payload.sg_list));
1061
1062 els_iocb->rx_address[0] = cpu_to_le32(LSD(sg_dma_address
1063 (bsg_job->reply_payload.sg_list)));
1064 els_iocb->rx_address[1] = cpu_to_le32(MSD(sg_dma_address
1065 (bsg_job->reply_payload.sg_list)));
1066 els_iocb->rx_len = cpu_to_le32(sg_dma_len
1067 (bsg_job->reply_payload.sg_list));
1068}
1069
1070static void
1071qla24xx_ct_iocb(srb_t *sp, struct ct_entry_24xx *ct_iocb)
1072{
1073 uint16_t avail_dsds;
1074 uint32_t *cur_dsd;
1075 struct scatterlist *sg;
1076 int index;
1077 uint16_t tot_dsds;
1078 scsi_qla_host_t *vha = sp->fcport->vha;
1079 struct fc_bsg_job *bsg_job = ((struct srb_bsg*)sp->ctx)->bsg_job;
1080 int loop_iterartion = 0;
1081 int cont_iocb_prsnt = 0;
1082 int entry_count = 1;
1083
1084 ct_iocb->entry_type = CT_IOCB_TYPE;
1085 ct_iocb->entry_status = 0;
1086 ct_iocb->sys_define = 0;
1087 ct_iocb->handle = sp->handle;
1088
1089 ct_iocb->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1090 ct_iocb->vp_index = sp->fcport->vp_idx;
1091 ct_iocb->comp_status = __constant_cpu_to_le16(0);
1092
1093 ct_iocb->cmd_dsd_count =
1094 __constant_cpu_to_le16(bsg_job->request_payload.sg_cnt);
1095 ct_iocb->timeout = 0;
1096 ct_iocb->rsp_dsd_count =
1097 __constant_cpu_to_le16(bsg_job->reply_payload.sg_cnt);
1098 ct_iocb->rsp_byte_count =
1099 cpu_to_le32(bsg_job->reply_payload.payload_len);
1100 ct_iocb->cmd_byte_count =
1101 cpu_to_le32(bsg_job->request_payload.payload_len);
1102 ct_iocb->dseg_0_address[0] = cpu_to_le32(LSD(sg_dma_address
1103 (bsg_job->request_payload.sg_list)));
1104 ct_iocb->dseg_0_address[1] = cpu_to_le32(MSD(sg_dma_address
1105 (bsg_job->request_payload.sg_list)));
1106 ct_iocb->dseg_0_len = cpu_to_le32(sg_dma_len
1107 (bsg_job->request_payload.sg_list));
1108
1109 avail_dsds = 1;
1110 cur_dsd = (uint32_t *)ct_iocb->dseg_1_address;
1111 index = 0;
1112 tot_dsds = bsg_job->reply_payload.sg_cnt;
1113
1114 for_each_sg(bsg_job->reply_payload.sg_list, sg, tot_dsds, index) {
1115 dma_addr_t sle_dma;
1116 cont_a64_entry_t *cont_pkt;
1117
1118 /* Allocate additional continuation packets? */
1119 if (avail_dsds == 0) {
1120 /*
1121 * Five DSDs are available in the Cont.
1122 * Type 1 IOCB.
1123 */
1124 cont_pkt = qla2x00_prep_cont_type1_iocb(vha);
1125 cur_dsd = (uint32_t *) cont_pkt->dseg_0_address;
1126 avail_dsds = 5;
1127 cont_iocb_prsnt = 1;
1128 entry_count++;
1129 }
1130
1131 sle_dma = sg_dma_address(sg);
1132 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
1133 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
1134 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
1135 loop_iterartion++;
1136 avail_dsds--;
1137 }
1138 ct_iocb->entry_count = entry_count;
1139}
1140
ac280b67
AV
1141int
1142qla2x00_start_sp(srb_t *sp)
1143{
1144 int rval;
1145 struct qla_hw_data *ha = sp->fcport->vha->hw;
1146 void *pkt;
1147 struct srb_ctx *ctx = sp->ctx;
1148 unsigned long flags;
1149
1150 rval = QLA_FUNCTION_FAILED;
1151 spin_lock_irqsave(&ha->hardware_lock, flags);
1152 pkt = qla2x00_alloc_iocbs(sp);
1153 if (!pkt)
1154 goto done;
1155
1156 rval = QLA_SUCCESS;
1157 switch (ctx->type) {
1158 case SRB_LOGIN_CMD:
1159 IS_FWI2_CAPABLE(ha) ?
1160 qla24xx_login_iocb(sp, pkt):
1161 qla2x00_login_iocb(sp, pkt);
1162 break;
1163 case SRB_LOGOUT_CMD:
1164 IS_FWI2_CAPABLE(ha) ?
1165 qla24xx_logout_iocb(sp, pkt):
1166 qla2x00_logout_iocb(sp, pkt);
1167 break;
9a069e19
GM
1168 case SRB_ELS_CMD_RPT:
1169 case SRB_ELS_CMD_HST:
1170 qla24xx_els_iocb(sp, pkt);
1171 break;
1172 case SRB_CT_CMD:
1173 qla24xx_ct_iocb(sp, pkt);
1174 break;
ac280b67
AV
1175 default:
1176 break;
1177 }
1178
1179 wmb();
1180 qla2x00_start_iocbs(sp);
1181done:
1182 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1183 return rval;
1184}