]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/scsi/qla2xxx/qla_iocb.c
fix typos concerning "management"
[net-next-2.6.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
bad75002
AE
148static inline int
149qla24xx_configure_prot_mode(srb_t *sp, uint16_t *fw_prot_opts)
150{
151 uint8_t guard = scsi_host_get_guard(sp->cmd->device->host);
152
153 /* We only support T10 DIF right now */
154 if (guard != SHOST_DIX_GUARD_CRC) {
155 DEBUG2(printk(KERN_ERR "Unsupported guard: %d\n", guard));
156 return 0;
157 }
158
159 /* We always use DIFF Bundling for best performance */
160 *fw_prot_opts = 0;
161
162 /* Translate SCSI opcode to a protection opcode */
163 switch (scsi_get_prot_op(sp->cmd)) {
164 case SCSI_PROT_READ_STRIP:
165 *fw_prot_opts |= PO_MODE_DIF_REMOVE;
166 break;
167 case SCSI_PROT_WRITE_INSERT:
168 *fw_prot_opts |= PO_MODE_DIF_INSERT;
169 break;
170 case SCSI_PROT_READ_INSERT:
171 *fw_prot_opts |= PO_MODE_DIF_INSERT;
172 break;
173 case SCSI_PROT_WRITE_STRIP:
174 *fw_prot_opts |= PO_MODE_DIF_REMOVE;
175 break;
176 case SCSI_PROT_READ_PASS:
177 *fw_prot_opts |= PO_MODE_DIF_PASS;
178 break;
179 case SCSI_PROT_WRITE_PASS:
180 *fw_prot_opts |= PO_MODE_DIF_PASS;
181 break;
182 default: /* Normal Request */
183 *fw_prot_opts |= PO_MODE_DIF_PASS;
184 break;
185 }
186
187 return scsi_prot_sg_count(sp->cmd);
188}
189
190/*
1da177e4
LT
191 * qla2x00_build_scsi_iocbs_32() - Build IOCB command utilizing 32bit
192 * capable IOCB types.
193 *
194 * @sp: SRB command to process
195 * @cmd_pkt: Command type 2 IOCB
196 * @tot_dsds: Total number of segments to transfer
197 */
198void qla2x00_build_scsi_iocbs_32(srb_t *sp, cmd_entry_t *cmd_pkt,
199 uint16_t tot_dsds)
200{
201 uint16_t avail_dsds;
202 uint32_t *cur_dsd;
e315cd28 203 scsi_qla_host_t *vha;
1da177e4 204 struct scsi_cmnd *cmd;
385d70b4
FT
205 struct scatterlist *sg;
206 int i;
1da177e4
LT
207
208 cmd = sp->cmd;
209
210 /* Update entry type to indicate Command Type 2 IOCB */
211 *((uint32_t *)(&cmd_pkt->entry_type)) =
212 __constant_cpu_to_le32(COMMAND_TYPE);
213
214 /* No data transfer */
385d70b4 215 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
1da177e4
LT
216 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
217 return;
218 }
219
444786d7 220 vha = sp->fcport->vha;
49fd462a 221 cmd_pkt->control_flags |= cpu_to_le16(qla2x00_get_cmd_direction(sp));
1da177e4
LT
222
223 /* Three DSDs are available in the Command Type 2 IOCB */
224 avail_dsds = 3;
225 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
226
227 /* Load data segments */
385d70b4
FT
228 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
229 cont_entry_t *cont_pkt;
230
231 /* Allocate additional continuation packets? */
232 if (avail_dsds == 0) {
233 /*
234 * Seven DSDs are available in the Continuation
235 * Type 0 IOCB.
236 */
67c2e93a 237 cont_pkt = qla2x00_prep_cont_type0_iocb(vha);
385d70b4
FT
238 cur_dsd = (uint32_t *)&cont_pkt->dseg_0_address;
239 avail_dsds = 7;
1da177e4 240 }
385d70b4
FT
241
242 *cur_dsd++ = cpu_to_le32(sg_dma_address(sg));
243 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
244 avail_dsds--;
1da177e4
LT
245 }
246}
247
248/**
249 * qla2x00_build_scsi_iocbs_64() - Build IOCB command utilizing 64bit
250 * capable IOCB types.
251 *
252 * @sp: SRB command to process
253 * @cmd_pkt: Command type 3 IOCB
254 * @tot_dsds: Total number of segments to transfer
255 */
256void qla2x00_build_scsi_iocbs_64(srb_t *sp, cmd_entry_t *cmd_pkt,
257 uint16_t tot_dsds)
258{
259 uint16_t avail_dsds;
260 uint32_t *cur_dsd;
e315cd28 261 scsi_qla_host_t *vha;
1da177e4 262 struct scsi_cmnd *cmd;
385d70b4
FT
263 struct scatterlist *sg;
264 int i;
1da177e4
LT
265
266 cmd = sp->cmd;
267
268 /* Update entry type to indicate Command Type 3 IOCB */
269 *((uint32_t *)(&cmd_pkt->entry_type)) =
270 __constant_cpu_to_le32(COMMAND_A64_TYPE);
271
272 /* No data transfer */
385d70b4 273 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
1da177e4
LT
274 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
275 return;
276 }
277
444786d7 278 vha = sp->fcport->vha;
49fd462a 279 cmd_pkt->control_flags |= cpu_to_le16(qla2x00_get_cmd_direction(sp));
1da177e4
LT
280
281 /* Two DSDs are available in the Command Type 3 IOCB */
282 avail_dsds = 2;
283 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
284
285 /* Load data segments */
385d70b4
FT
286 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
287 dma_addr_t sle_dma;
288 cont_a64_entry_t *cont_pkt;
289
290 /* Allocate additional continuation packets? */
291 if (avail_dsds == 0) {
292 /*
293 * Five DSDs are available in the Continuation
294 * Type 1 IOCB.
295 */
67c2e93a 296 cont_pkt = qla2x00_prep_cont_type1_iocb(vha);
385d70b4
FT
297 cur_dsd = (uint32_t *)cont_pkt->dseg_0_address;
298 avail_dsds = 5;
1da177e4 299 }
385d70b4
FT
300
301 sle_dma = sg_dma_address(sg);
302 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
303 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
304 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
305 avail_dsds--;
1da177e4
LT
306 }
307}
308
309/**
310 * qla2x00_start_scsi() - Send a SCSI command to the ISP
311 * @sp: command to send to the ISP
312 *
cc3ef7bc 313 * Returns non-zero if a failure occurred, else zero.
1da177e4
LT
314 */
315int
316qla2x00_start_scsi(srb_t *sp)
317{
385d70b4 318 int ret, nseg;
1da177e4 319 unsigned long flags;
e315cd28 320 scsi_qla_host_t *vha;
1da177e4
LT
321 struct scsi_cmnd *cmd;
322 uint32_t *clr_ptr;
323 uint32_t index;
324 uint32_t handle;
325 cmd_entry_t *cmd_pkt;
1da177e4
LT
326 uint16_t cnt;
327 uint16_t req_cnt;
328 uint16_t tot_dsds;
3d71644c 329 struct device_reg_2xxx __iomem *reg;
e315cd28
AC
330 struct qla_hw_data *ha;
331 struct req_que *req;
73208dfd 332 struct rsp_que *rsp;
1da177e4
LT
333
334 /* Setup device pointers. */
335 ret = 0;
444786d7 336 vha = sp->fcport->vha;
e315cd28 337 ha = vha->hw;
3d71644c 338 reg = &ha->iobase->isp;
1da177e4 339 cmd = sp->cmd;
73208dfd
AC
340 req = ha->req_q_map[0];
341 rsp = ha->rsp_q_map[0];
83021920
AV
342 /* So we know we haven't pci_map'ed anything yet */
343 tot_dsds = 0;
1da177e4
LT
344
345 /* Send marker if required */
e315cd28 346 if (vha->marker_needed != 0) {
73208dfd
AC
347 if (qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL)
348 != QLA_SUCCESS)
1da177e4 349 return (QLA_FUNCTION_FAILED);
e315cd28 350 vha->marker_needed = 0;
1da177e4
LT
351 }
352
353 /* Acquire ring specific lock */
c9c5ced9 354 spin_lock_irqsave(&ha->hardware_lock, flags);
1da177e4
LT
355
356 /* Check for room in outstanding command list. */
e315cd28 357 handle = req->current_outstanding_cmd;
1da177e4
LT
358 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
359 handle++;
360 if (handle == MAX_OUTSTANDING_COMMANDS)
361 handle = 1;
e315cd28 362 if (!req->outstanding_cmds[handle])
1da177e4
LT
363 break;
364 }
365 if (index == MAX_OUTSTANDING_COMMANDS)
366 goto queuing_error;
367
83021920 368 /* Map the sg table so we have an accurate count of sg entries needed */
2c3dfe3f
SJ
369 if (scsi_sg_count(cmd)) {
370 nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
371 scsi_sg_count(cmd), cmd->sc_data_direction);
372 if (unlikely(!nseg))
373 goto queuing_error;
374 } else
375 nseg = 0;
376
385d70b4 377 tot_dsds = nseg;
83021920 378
1da177e4 379 /* Calculate the number of request entries needed. */
fd34f556 380 req_cnt = ha->isp_ops->calc_req_entries(tot_dsds);
e315cd28 381 if (req->cnt < (req_cnt + 2)) {
1da177e4 382 cnt = RD_REG_WORD_RELAXED(ISP_REQ_Q_OUT(ha, reg));
e315cd28
AC
383 if (req->ring_index < cnt)
384 req->cnt = cnt - req->ring_index;
1da177e4 385 else
e315cd28
AC
386 req->cnt = req->length -
387 (req->ring_index - cnt);
1da177e4 388 }
e315cd28 389 if (req->cnt < (req_cnt + 2))
1da177e4
LT
390 goto queuing_error;
391
1da177e4 392 /* Build command packet */
e315cd28
AC
393 req->current_outstanding_cmd = handle;
394 req->outstanding_cmds[handle] = sp;
cf53b069 395 sp->handle = handle;
1da177e4 396 sp->cmd->host_scribble = (unsigned char *)(unsigned long)handle;
e315cd28 397 req->cnt -= req_cnt;
1da177e4 398
e315cd28 399 cmd_pkt = (cmd_entry_t *)req->ring_ptr;
1da177e4
LT
400 cmd_pkt->handle = handle;
401 /* Zero out remaining portion of packet. */
402 clr_ptr = (uint32_t *)cmd_pkt + 2;
403 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
404 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
405
bdf79621
AV
406 /* Set target ID and LUN number*/
407 SET_TARGET_ID(ha, cmd_pkt->target, sp->fcport->loop_id);
408 cmd_pkt->lun = cpu_to_le16(sp->cmd->device->lun);
1da177e4
LT
409
410 /* Update tagged queuing modifier */
411 cmd_pkt->control_flags = __constant_cpu_to_le16(CF_SIMPLE_TAG);
1da177e4 412
1da177e4
LT
413 /* Load SCSI command packet. */
414 memcpy(cmd_pkt->scsi_cdb, cmd->cmnd, cmd->cmd_len);
385d70b4 415 cmd_pkt->byte_count = cpu_to_le32((uint32_t)scsi_bufflen(cmd));
1da177e4
LT
416
417 /* Build IOCB segments */
fd34f556 418 ha->isp_ops->build_iocbs(sp, cmd_pkt, tot_dsds);
1da177e4
LT
419
420 /* Set total data segment count. */
421 cmd_pkt->entry_count = (uint8_t)req_cnt;
422 wmb();
423
424 /* Adjust ring index. */
e315cd28
AC
425 req->ring_index++;
426 if (req->ring_index == req->length) {
427 req->ring_index = 0;
428 req->ring_ptr = req->ring;
1da177e4 429 } else
e315cd28 430 req->ring_ptr++;
1da177e4 431
1da177e4 432 sp->flags |= SRB_DMA_VALID;
1da177e4
LT
433
434 /* Set chip new ring index. */
e315cd28 435 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), req->ring_index);
1da177e4
LT
436 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, reg)); /* PCI Posting. */
437
4fdfefe5 438 /* Manage unprocessed RIO/ZIO commands in response queue. */
e315cd28 439 if (vha->flags.process_response_queue &&
73208dfd
AC
440 rsp->ring_ptr->signature != RESPONSE_PROCESSED)
441 qla2x00_process_response_queue(rsp);
4fdfefe5 442
c9c5ced9 443 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1da177e4
LT
444 return (QLA_SUCCESS);
445
446queuing_error:
385d70b4
FT
447 if (tot_dsds)
448 scsi_dma_unmap(cmd);
449
c9c5ced9 450 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1da177e4
LT
451
452 return (QLA_FUNCTION_FAILED);
453}
454
455/**
456 * qla2x00_marker() - Send a marker IOCB to the firmware.
457 * @ha: HA context
458 * @loop_id: loop ID
459 * @lun: LUN
460 * @type: marker modifier
461 *
462 * Can be called from both normal and interrupt context.
463 *
cc3ef7bc 464 * Returns non-zero if a failure occurred, else zero.
1da177e4 465 */
fa2a1ce5 466int
73208dfd
AC
467__qla2x00_marker(struct scsi_qla_host *vha, struct req_que *req,
468 struct rsp_que *rsp, uint16_t loop_id,
469 uint16_t lun, uint8_t type)
1da177e4 470{
2b6c0cee
AV
471 mrk_entry_t *mrk;
472 struct mrk_entry_24xx *mrk24;
e315cd28
AC
473 struct qla_hw_data *ha = vha->hw;
474 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1da177e4 475
2b6c0cee 476 mrk24 = NULL;
73208dfd 477 mrk = (mrk_entry_t *)qla2x00_req_pkt(vha, req, rsp);
2b6c0cee
AV
478 if (mrk == NULL) {
479 DEBUG2_3(printk("%s(%ld): failed to allocate Marker IOCB.\n",
e315cd28 480 __func__, base_vha->host_no));
1da177e4
LT
481
482 return (QLA_FUNCTION_FAILED);
483 }
484
2b6c0cee
AV
485 mrk->entry_type = MARKER_TYPE;
486 mrk->modifier = type;
1da177e4 487 if (type != MK_SYNC_ALL) {
e428924c 488 if (IS_FWI2_CAPABLE(ha)) {
2b6c0cee
AV
489 mrk24 = (struct mrk_entry_24xx *) mrk;
490 mrk24->nport_handle = cpu_to_le16(loop_id);
491 mrk24->lun[1] = LSB(lun);
492 mrk24->lun[2] = MSB(lun);
b797b6de 493 host_to_fcp_swap(mrk24->lun, sizeof(mrk24->lun));
e315cd28 494 mrk24->vp_index = vha->vp_idx;
2afa19a9 495 mrk24->handle = MAKE_HANDLE(req->id, mrk24->handle);
2b6c0cee
AV
496 } else {
497 SET_TARGET_ID(ha, mrk->target, loop_id);
498 mrk->lun = cpu_to_le16(lun);
499 }
1da177e4
LT
500 }
501 wmb();
502
73208dfd 503 qla2x00_isp_cmd(vha, req);
1da177e4
LT
504
505 return (QLA_SUCCESS);
506}
507
fa2a1ce5 508int
73208dfd
AC
509qla2x00_marker(struct scsi_qla_host *vha, struct req_que *req,
510 struct rsp_que *rsp, uint16_t loop_id, uint16_t lun,
511 uint8_t type)
1da177e4
LT
512{
513 int ret;
514 unsigned long flags = 0;
515
73208dfd
AC
516 spin_lock_irqsave(&vha->hw->hardware_lock, flags);
517 ret = __qla2x00_marker(vha, req, rsp, loop_id, lun, type);
518 spin_unlock_irqrestore(&vha->hw->hardware_lock, flags);
1da177e4
LT
519
520 return (ret);
521}
522
523/**
524 * qla2x00_req_pkt() - Retrieve a request packet from the request ring.
525 * @ha: HA context
526 *
527 * Note: The caller must hold the hardware lock before calling this routine.
528 *
529 * Returns NULL if function failed, else, a pointer to the request packet.
530 */
531static request_t *
73208dfd
AC
532qla2x00_req_pkt(struct scsi_qla_host *vha, struct req_que *req,
533 struct rsp_que *rsp)
1da177e4 534{
e315cd28 535 struct qla_hw_data *ha = vha->hw;
73208dfd 536 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
1da177e4
LT
537 request_t *pkt = NULL;
538 uint16_t cnt;
539 uint32_t *dword_ptr;
540 uint32_t timer;
541 uint16_t req_cnt = 1;
542
543 /* Wait 1 second for slot. */
544 for (timer = HZ; timer; timer--) {
e315cd28 545 if ((req_cnt + 2) >= req->cnt) {
1da177e4 546 /* Calculate number of free request entries. */
73208dfd
AC
547 if (ha->mqenable)
548 cnt = (uint16_t)
549 RD_REG_DWORD(&reg->isp25mq.req_q_out);
550 else {
a9083016
GM
551 if (IS_QLA82XX(ha))
552 cnt = (uint16_t)RD_REG_DWORD(
553 &reg->isp82.req_q_out);
554 else if (IS_FWI2_CAPABLE(ha))
73208dfd
AC
555 cnt = (uint16_t)RD_REG_DWORD(
556 &reg->isp24.req_q_out);
557 else
558 cnt = qla2x00_debounce_register(
559 ISP_REQ_Q_OUT(ha, &reg->isp));
560 }
e315cd28
AC
561 if (req->ring_index < cnt)
562 req->cnt = cnt - req->ring_index;
1da177e4 563 else
e315cd28
AC
564 req->cnt = req->length -
565 (req->ring_index - cnt);
1da177e4
LT
566 }
567 /* If room for request in request ring. */
e315cd28
AC
568 if ((req_cnt + 2) < req->cnt) {
569 req->cnt--;
570 pkt = req->ring_ptr;
1da177e4
LT
571
572 /* Zero out packet. */
573 dword_ptr = (uint32_t *)pkt;
574 for (cnt = 0; cnt < REQUEST_ENTRY_SIZE / 4; cnt++)
575 *dword_ptr++ = 0;
576
1da177e4
LT
577 /* Set entry count. */
578 pkt->entry_count = 1;
579
580 break;
581 }
582
583 /* Release ring specific lock */
e315cd28 584 spin_unlock_irq(&ha->hardware_lock);
1da177e4
LT
585
586 udelay(2); /* 2 us */
587
588 /* Check for pending interrupts. */
589 /* During init we issue marker directly */
e315cd28 590 if (!vha->marker_needed && !vha->flags.init_done)
73208dfd 591 qla2x00_poll(rsp);
1da177e4
LT
592 spin_lock_irq(&ha->hardware_lock);
593 }
594 if (!pkt) {
595 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
596 }
597
598 return (pkt);
599}
600
601/**
602 * qla2x00_isp_cmd() - Modify the request ring pointer.
603 * @ha: HA context
604 *
605 * Note: The caller must hold the hardware lock before calling this routine.
606 */
413975a0 607static void
73208dfd 608qla2x00_isp_cmd(struct scsi_qla_host *vha, struct req_que *req)
1da177e4 609{
e315cd28 610 struct qla_hw_data *ha = vha->hw;
73208dfd 611 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
17d98630 612 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1da177e4
LT
613
614 DEBUG5(printk("%s(): IOCB data:\n", __func__));
615 DEBUG5(qla2x00_dump_buffer(
e315cd28 616 (uint8_t *)req->ring_ptr, REQUEST_ENTRY_SIZE));
1da177e4
LT
617
618 /* Adjust ring index. */
e315cd28
AC
619 req->ring_index++;
620 if (req->ring_index == req->length) {
621 req->ring_index = 0;
622 req->ring_ptr = req->ring;
1da177e4 623 } else
e315cd28 624 req->ring_ptr++;
1da177e4
LT
625
626 /* Set chip new ring index. */
a9083016
GM
627 if (IS_QLA82XX(ha)) {
628 uint32_t dbval = 0x04 | (ha->portnum << 5);
629
630 /* write, read and verify logic */
631 dbval = dbval | (req->id << 8) | (req->ring_index << 16);
632 if (ql2xdbwr)
633 qla82xx_wr_32(ha, ha->nxdb_wr_ptr, dbval);
634 else {
635 WRT_REG_DWORD(
636 (unsigned long __iomem *)ha->nxdb_wr_ptr,
637 dbval);
638 wmb();
639 while (RD_REG_DWORD(ha->nxdb_rd_ptr) != dbval) {
640 WRT_REG_DWORD((unsigned long __iomem *)
641 ha->nxdb_wr_ptr, dbval);
642 wmb();
643 }
644 }
645 } else if (ha->mqenable) {
646 /* Set chip new ring index. */
17d98630
AC
647 WRT_REG_DWORD(&reg->isp25mq.req_q_in, req->ring_index);
648 RD_REG_DWORD(&ioreg->hccr);
a9083016 649 } else {
73208dfd
AC
650 if (IS_FWI2_CAPABLE(ha)) {
651 WRT_REG_DWORD(&reg->isp24.req_q_in, req->ring_index);
652 RD_REG_DWORD_RELAXED(&reg->isp24.req_q_in);
653 } else {
654 WRT_REG_WORD(ISP_REQ_Q_IN(ha, &reg->isp),
655 req->ring_index);
656 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, &reg->isp));
657 }
2b6c0cee
AV
658 }
659
660}
661
662/**
663 * qla24xx_calc_iocbs() - Determine number of Command Type 3 and
664 * Continuation Type 1 IOCBs to allocate.
665 *
666 * @dsds: number of data segment decriptors needed
667 *
668 * Returns the number of IOCB entries needed to store @dsds.
669 */
a9083016 670inline uint16_t
2b6c0cee
AV
671qla24xx_calc_iocbs(uint16_t dsds)
672{
673 uint16_t iocbs;
674
675 iocbs = 1;
676 if (dsds > 1) {
677 iocbs += (dsds - 1) / 5;
678 if ((dsds - 1) % 5)
679 iocbs++;
680 }
bad75002
AE
681 DEBUG3(printk(KERN_DEBUG "%s(): Required PKT(s) = %d\n",
682 __func__, iocbs));
2b6c0cee
AV
683 return iocbs;
684}
685
686/**
687 * qla24xx_build_scsi_iocbs() - Build IOCB command utilizing Command Type 7
688 * IOCB types.
689 *
690 * @sp: SRB command to process
691 * @cmd_pkt: Command type 3 IOCB
692 * @tot_dsds: Total number of segments to transfer
693 */
a9083016 694inline void
2b6c0cee
AV
695qla24xx_build_scsi_iocbs(srb_t *sp, struct cmd_type_7 *cmd_pkt,
696 uint16_t tot_dsds)
697{
698 uint16_t avail_dsds;
699 uint32_t *cur_dsd;
e315cd28 700 scsi_qla_host_t *vha;
2b6c0cee 701 struct scsi_cmnd *cmd;
385d70b4
FT
702 struct scatterlist *sg;
703 int i;
73208dfd 704 struct req_que *req;
2b6c0cee
AV
705
706 cmd = sp->cmd;
707
708 /* Update entry type to indicate Command Type 3 IOCB */
709 *((uint32_t *)(&cmd_pkt->entry_type)) =
710 __constant_cpu_to_le32(COMMAND_TYPE_7);
711
712 /* No data transfer */
385d70b4 713 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
2b6c0cee
AV
714 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
715 return;
716 }
717
444786d7 718 vha = sp->fcport->vha;
67c2e93a 719 req = vha->req;
2b6c0cee
AV
720
721 /* Set transfer direction */
49fd462a 722 if (cmd->sc_data_direction == DMA_TO_DEVICE) {
2b6c0cee
AV
723 cmd_pkt->task_mgmt_flags =
724 __constant_cpu_to_le16(TMF_WRITE_DATA);
e315cd28 725 sp->fcport->vha->hw->qla_stats.output_bytes +=
49fd462a
HZ
726 scsi_bufflen(sp->cmd);
727 } else if (cmd->sc_data_direction == DMA_FROM_DEVICE) {
2b6c0cee
AV
728 cmd_pkt->task_mgmt_flags =
729 __constant_cpu_to_le16(TMF_READ_DATA);
e315cd28 730 sp->fcport->vha->hw->qla_stats.input_bytes +=
49fd462a
HZ
731 scsi_bufflen(sp->cmd);
732 }
2b6c0cee
AV
733
734 /* One DSD is available in the Command Type 3 IOCB */
735 avail_dsds = 1;
736 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
737
738 /* Load data segments */
385d70b4
FT
739
740 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
741 dma_addr_t sle_dma;
742 cont_a64_entry_t *cont_pkt;
743
744 /* Allocate additional continuation packets? */
745 if (avail_dsds == 0) {
746 /*
747 * Five DSDs are available in the Continuation
748 * Type 1 IOCB.
749 */
67c2e93a 750 cont_pkt = qla2x00_prep_cont_type1_iocb(vha);
385d70b4
FT
751 cur_dsd = (uint32_t *)cont_pkt->dseg_0_address;
752 avail_dsds = 5;
2b6c0cee 753 }
385d70b4
FT
754
755 sle_dma = sg_dma_address(sg);
756 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
757 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
758 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
759 avail_dsds--;
2b6c0cee
AV
760 }
761}
762
bad75002
AE
763struct fw_dif_context {
764 uint32_t ref_tag;
765 uint16_t app_tag;
766 uint8_t ref_tag_mask[4]; /* Validation/Replacement Mask*/
767 uint8_t app_tag_mask[2]; /* Validation/Replacement Mask*/
768};
769
770/*
771 * qla24xx_set_t10dif_tags_from_cmd - Extract Ref and App tags from SCSI command
772 *
773 */
774static inline void
775qla24xx_set_t10dif_tags(struct scsi_cmnd *cmd, struct fw_dif_context *pkt,
776 unsigned int protcnt)
777{
778 struct sd_dif_tuple *spt;
779 unsigned char op = scsi_get_prot_op(cmd);
780
781 switch (scsi_get_prot_type(cmd)) {
782 /* For TYPE 0 protection: no checking */
783 case SCSI_PROT_DIF_TYPE0:
784 pkt->ref_tag_mask[0] = 0x00;
785 pkt->ref_tag_mask[1] = 0x00;
786 pkt->ref_tag_mask[2] = 0x00;
787 pkt->ref_tag_mask[3] = 0x00;
788 break;
789
790 /*
791 * For TYPE 2 protection: 16 bit GUARD + 32 bit REF tag has to
792 * match LBA in CDB + N
793 */
794 case SCSI_PROT_DIF_TYPE2:
795 break;
796
797 /* For Type 3 protection: 16 bit GUARD only */
798 case SCSI_PROT_DIF_TYPE3:
799 pkt->ref_tag_mask[0] = pkt->ref_tag_mask[1] =
800 pkt->ref_tag_mask[2] = pkt->ref_tag_mask[3] =
801 0x00;
802 break;
803
804 /*
805 * For TYpe 1 protection: 16 bit GUARD tag, 32 bit REF tag, and
806 * 16 bit app tag.
807 */
808 case SCSI_PROT_DIF_TYPE1:
809 if (!ql2xenablehba_err_chk)
810 break;
811
812 if (protcnt && (op == SCSI_PROT_WRITE_STRIP ||
813 op == SCSI_PROT_WRITE_PASS)) {
814 spt = page_address(sg_page(scsi_prot_sglist(cmd))) +
815 scsi_prot_sglist(cmd)[0].offset;
816 DEBUG18(printk(KERN_DEBUG
817 "%s(): LBA from user %p, lba = 0x%x\n",
818 __func__, spt, (int)spt->ref_tag));
819 pkt->ref_tag = swab32(spt->ref_tag);
820 pkt->app_tag_mask[0] = 0x0;
821 pkt->app_tag_mask[1] = 0x0;
822 } else {
823 pkt->ref_tag = cpu_to_le32((uint32_t)
824 (0xffffffff & scsi_get_lba(cmd)));
825 pkt->app_tag = __constant_cpu_to_le16(0);
826 pkt->app_tag_mask[0] = 0x0;
827 pkt->app_tag_mask[1] = 0x0;
828 }
829 /* enable ALL bytes of the ref tag */
830 pkt->ref_tag_mask[0] = 0xff;
831 pkt->ref_tag_mask[1] = 0xff;
832 pkt->ref_tag_mask[2] = 0xff;
833 pkt->ref_tag_mask[3] = 0xff;
834 break;
835 }
836
837 DEBUG18(printk(KERN_DEBUG
838 "%s(): Setting protection Tags: (BIG) ref tag = 0x%x,"
839 " app tag = 0x%x, prot SG count %d , cmd lba 0x%x,"
840 " prot_type=%u\n", __func__, pkt->ref_tag, pkt->app_tag, protcnt,
841 (int)scsi_get_lba(cmd), scsi_get_prot_type(cmd)));
842}
843
844
845static int
846qla24xx_walk_and_build_sglist(struct qla_hw_data *ha, srb_t *sp, uint32_t *dsd,
847 uint16_t tot_dsds)
848{
849 void *next_dsd;
850 uint8_t avail_dsds = 0;
851 uint32_t dsd_list_len;
852 struct dsd_dma *dsd_ptr;
853 struct scatterlist *sg;
854 uint32_t *cur_dsd = dsd;
855 int i;
856 uint16_t used_dsds = tot_dsds;
857
858 uint8_t *cp;
859
860 scsi_for_each_sg(sp->cmd, sg, tot_dsds, i) {
861 dma_addr_t sle_dma;
862
863 /* Allocate additional continuation packets? */
864 if (avail_dsds == 0) {
865 avail_dsds = (used_dsds > QLA_DSDS_PER_IOCB) ?
866 QLA_DSDS_PER_IOCB : used_dsds;
867 dsd_list_len = (avail_dsds + 1) * 12;
868 used_dsds -= avail_dsds;
869
870 /* allocate tracking DS */
871 dsd_ptr = kzalloc(sizeof(struct dsd_dma), GFP_ATOMIC);
872 if (!dsd_ptr)
873 return 1;
874
875 /* allocate new list */
876 dsd_ptr->dsd_addr = next_dsd =
877 dma_pool_alloc(ha->dl_dma_pool, GFP_ATOMIC,
878 &dsd_ptr->dsd_list_dma);
879
880 if (!next_dsd) {
881 /*
882 * Need to cleanup only this dsd_ptr, rest
883 * will be done by sp_free_dma()
884 */
885 kfree(dsd_ptr);
886 return 1;
887 }
888
889 list_add_tail(&dsd_ptr->list,
890 &((struct crc_context *)sp->ctx)->dsd_list);
891
892 sp->flags |= SRB_CRC_CTX_DSD_VALID;
893
894 /* add new list to cmd iocb or last list */
895 *cur_dsd++ = cpu_to_le32(LSD(dsd_ptr->dsd_list_dma));
896 *cur_dsd++ = cpu_to_le32(MSD(dsd_ptr->dsd_list_dma));
897 *cur_dsd++ = dsd_list_len;
898 cur_dsd = (uint32_t *)next_dsd;
899 }
900 sle_dma = sg_dma_address(sg);
901 DEBUG18(printk("%s(): %p, sg entry %d - addr =0x%x 0x%x,"
902 " len =%d\n", __func__ , cur_dsd, i, LSD(sle_dma),
903 MSD(sle_dma), sg_dma_len(sg)));
904 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
905 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
906 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
907 avail_dsds--;
908
909 if (scsi_get_prot_op(sp->cmd) == SCSI_PROT_WRITE_PASS) {
910 cp = page_address(sg_page(sg)) + sg->offset;
911 DEBUG18(printk("%s(): User Data buffer= %p:\n",
912 __func__ , cp));
913 }
914 }
915 /* Null termination */
916 *cur_dsd++ = 0;
917 *cur_dsd++ = 0;
918 *cur_dsd++ = 0;
919 return 0;
920}
921
922static int
923qla24xx_walk_and_build_prot_sglist(struct qla_hw_data *ha, srb_t *sp,
924 uint32_t *dsd,
925 uint16_t tot_dsds)
926{
927 void *next_dsd;
928 uint8_t avail_dsds = 0;
929 uint32_t dsd_list_len;
930 struct dsd_dma *dsd_ptr;
931 struct scatterlist *sg;
932 int i;
933 struct scsi_cmnd *cmd;
934 uint32_t *cur_dsd = dsd;
935 uint16_t used_dsds = tot_dsds;
936
937 uint8_t *cp;
938
939
940 cmd = sp->cmd;
941 scsi_for_each_prot_sg(cmd, sg, tot_dsds, i) {
942 dma_addr_t sle_dma;
943
944 /* Allocate additional continuation packets? */
945 if (avail_dsds == 0) {
946 avail_dsds = (used_dsds > QLA_DSDS_PER_IOCB) ?
947 QLA_DSDS_PER_IOCB : used_dsds;
948 dsd_list_len = (avail_dsds + 1) * 12;
949 used_dsds -= avail_dsds;
950
951 /* allocate tracking DS */
952 dsd_ptr = kzalloc(sizeof(struct dsd_dma), GFP_ATOMIC);
953 if (!dsd_ptr)
954 return 1;
955
956 /* allocate new list */
957 dsd_ptr->dsd_addr = next_dsd =
958 dma_pool_alloc(ha->dl_dma_pool, GFP_ATOMIC,
959 &dsd_ptr->dsd_list_dma);
960
961 if (!next_dsd) {
962 /*
963 * Need to cleanup only this dsd_ptr, rest
964 * will be done by sp_free_dma()
965 */
966 kfree(dsd_ptr);
967 return 1;
968 }
969
970 list_add_tail(&dsd_ptr->list,
971 &((struct crc_context *)sp->ctx)->dsd_list);
972
973 sp->flags |= SRB_CRC_CTX_DSD_VALID;
974
975 /* add new list to cmd iocb or last list */
976 *cur_dsd++ = cpu_to_le32(LSD(dsd_ptr->dsd_list_dma));
977 *cur_dsd++ = cpu_to_le32(MSD(dsd_ptr->dsd_list_dma));
978 *cur_dsd++ = dsd_list_len;
979 cur_dsd = (uint32_t *)next_dsd;
980 }
981 sle_dma = sg_dma_address(sg);
982 if (scsi_get_prot_op(sp->cmd) == SCSI_PROT_WRITE_PASS) {
983 DEBUG18(printk(KERN_DEBUG
984 "%s(): %p, sg entry %d - addr =0x%x"
985 "0x%x, len =%d\n", __func__ , cur_dsd, i,
986 LSD(sle_dma), MSD(sle_dma), sg_dma_len(sg)));
987 }
988 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
989 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
990 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
991
992 if (scsi_get_prot_op(sp->cmd) == SCSI_PROT_WRITE_PASS) {
993 cp = page_address(sg_page(sg)) + sg->offset;
994 DEBUG18(printk("%s(): Protection Data buffer = %p:\n",
995 __func__ , cp));
996 }
997 avail_dsds--;
998 }
999 /* Null termination */
1000 *cur_dsd++ = 0;
1001 *cur_dsd++ = 0;
1002 *cur_dsd++ = 0;
1003 return 0;
1004}
1005
1006/**
1007 * qla24xx_build_scsi_crc_2_iocbs() - Build IOCB command utilizing Command
1008 * Type 6 IOCB types.
1009 *
1010 * @sp: SRB command to process
1011 * @cmd_pkt: Command type 3 IOCB
1012 * @tot_dsds: Total number of segments to transfer
1013 */
1014static inline int
1015qla24xx_build_scsi_crc_2_iocbs(srb_t *sp, struct cmd_type_crc_2 *cmd_pkt,
1016 uint16_t tot_dsds, uint16_t tot_prot_dsds, uint16_t fw_prot_opts)
1017{
1018 uint32_t *cur_dsd, *fcp_dl;
1019 scsi_qla_host_t *vha;
1020 struct scsi_cmnd *cmd;
1021 struct scatterlist *cur_seg;
1022 int sgc;
1023 uint32_t total_bytes;
1024 uint32_t data_bytes;
1025 uint32_t dif_bytes;
1026 uint8_t bundling = 1;
1027 uint16_t blk_size;
1028 uint8_t *clr_ptr;
1029 struct crc_context *crc_ctx_pkt = NULL;
1030 struct qla_hw_data *ha;
1031 uint8_t additional_fcpcdb_len;
1032 uint16_t fcp_cmnd_len;
1033 struct fcp_cmnd *fcp_cmnd;
1034 dma_addr_t crc_ctx_dma;
1035
1036 cmd = sp->cmd;
1037
1038 sgc = 0;
1039 /* Update entry type to indicate Command Type CRC_2 IOCB */
1040 *((uint32_t *)(&cmd_pkt->entry_type)) =
1041 __constant_cpu_to_le32(COMMAND_TYPE_CRC_2);
1042
1043 /* No data transfer */
1044 data_bytes = scsi_bufflen(cmd);
1045 if (!data_bytes || cmd->sc_data_direction == DMA_NONE) {
1046 DEBUG18(printk(KERN_INFO "%s: Zero data bytes or DMA-NONE %d\n",
1047 __func__, data_bytes));
1048 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
1049 return QLA_SUCCESS;
1050 }
1051
1052 vha = sp->fcport->vha;
1053 ha = vha->hw;
1054
1055 DEBUG18(printk(KERN_DEBUG
1056 "%s(%ld): Executing cmd sp %p, pid=%ld, prot_op=%u.\n", __func__,
1057 vha->host_no, sp, cmd->serial_number, scsi_get_prot_op(sp->cmd)));
1058
1059 cmd_pkt->vp_index = sp->fcport->vp_idx;
1060
1061 /* Set transfer direction */
1062 if (cmd->sc_data_direction == DMA_TO_DEVICE) {
1063 cmd_pkt->control_flags =
1064 __constant_cpu_to_le16(CF_WRITE_DATA);
1065 } else if (cmd->sc_data_direction == DMA_FROM_DEVICE) {
1066 cmd_pkt->control_flags =
1067 __constant_cpu_to_le16(CF_READ_DATA);
1068 }
1069
1070 tot_prot_dsds = scsi_prot_sg_count(cmd);
1071 if (!tot_prot_dsds)
1072 bundling = 0;
1073
1074 /* Allocate CRC context from global pool */
1075 crc_ctx_pkt = sp->ctx = dma_pool_alloc(ha->dl_dma_pool,
1076 GFP_ATOMIC, &crc_ctx_dma);
1077
1078 if (!crc_ctx_pkt)
1079 goto crc_queuing_error;
1080
1081 /* Zero out CTX area. */
1082 clr_ptr = (uint8_t *)crc_ctx_pkt;
1083 memset(clr_ptr, 0, sizeof(*crc_ctx_pkt));
1084
1085 crc_ctx_pkt->crc_ctx_dma = crc_ctx_dma;
1086
1087 sp->flags |= SRB_CRC_CTX_DMA_VALID;
1088
1089 /* Set handle */
1090 crc_ctx_pkt->handle = cmd_pkt->handle;
1091
1092 INIT_LIST_HEAD(&crc_ctx_pkt->dsd_list);
1093
1094 qla24xx_set_t10dif_tags(cmd, (struct fw_dif_context *)
1095 &crc_ctx_pkt->ref_tag, tot_prot_dsds);
1096
1097 cmd_pkt->crc_context_address[0] = cpu_to_le32(LSD(crc_ctx_dma));
1098 cmd_pkt->crc_context_address[1] = cpu_to_le32(MSD(crc_ctx_dma));
1099 cmd_pkt->crc_context_len = CRC_CONTEXT_LEN_FW;
1100
1101 /* Determine SCSI command length -- align to 4 byte boundary */
1102 if (cmd->cmd_len > 16) {
1103 DEBUG18(printk(KERN_INFO "%s(): **** SCSI CMD > 16\n",
1104 __func__));
1105 additional_fcpcdb_len = cmd->cmd_len - 16;
1106 if ((cmd->cmd_len % 4) != 0) {
1107 /* SCSI cmd > 16 bytes must be multiple of 4 */
1108 goto crc_queuing_error;
1109 }
1110 fcp_cmnd_len = 12 + cmd->cmd_len + 4;
1111 } else {
1112 additional_fcpcdb_len = 0;
1113 fcp_cmnd_len = 12 + 16 + 4;
1114 }
1115
1116 fcp_cmnd = &crc_ctx_pkt->fcp_cmnd;
1117
1118 fcp_cmnd->additional_cdb_len = additional_fcpcdb_len;
1119 if (cmd->sc_data_direction == DMA_TO_DEVICE)
1120 fcp_cmnd->additional_cdb_len |= 1;
1121 else if (cmd->sc_data_direction == DMA_FROM_DEVICE)
1122 fcp_cmnd->additional_cdb_len |= 2;
1123
1124 int_to_scsilun(sp->cmd->device->lun, &fcp_cmnd->lun);
1125 memcpy(fcp_cmnd->cdb, cmd->cmnd, cmd->cmd_len);
1126 cmd_pkt->fcp_cmnd_dseg_len = cpu_to_le16(fcp_cmnd_len);
1127 cmd_pkt->fcp_cmnd_dseg_address[0] = cpu_to_le32(
1128 LSD(crc_ctx_dma + CRC_CONTEXT_FCPCMND_OFF));
1129 cmd_pkt->fcp_cmnd_dseg_address[1] = cpu_to_le32(
1130 MSD(crc_ctx_dma + CRC_CONTEXT_FCPCMND_OFF));
1131 fcp_cmnd->task_attribute = 0;
65155b37 1132 fcp_cmnd->task_management = 0;
bad75002
AE
1133
1134 cmd_pkt->fcp_rsp_dseg_len = 0; /* Let response come in status iocb */
1135
1136 DEBUG18(printk(KERN_INFO "%s(%ld): Total SG(s) Entries %d, Data"
1137 "entries %d, data bytes %d, Protection entries %d\n",
1138 __func__, vha->host_no, tot_dsds, (tot_dsds-tot_prot_dsds),
1139 data_bytes, tot_prot_dsds));
1140
1141 /* Compute dif len and adjust data len to incude protection */
1142 total_bytes = data_bytes;
1143 dif_bytes = 0;
1144 blk_size = cmd->device->sector_size;
1145 if (scsi_get_prot_type(cmd) == SCSI_PROT_DIF_TYPE1) {
1146 dif_bytes = (data_bytes / blk_size) * 8;
1147 total_bytes += dif_bytes;
1148 }
1149
1150 if (!ql2xenablehba_err_chk)
1151 fw_prot_opts |= 0x10; /* Disable Guard tag checking */
1152
1153 if (!bundling) {
1154 cur_dsd = (uint32_t *) &crc_ctx_pkt->u.nobundling.data_address;
1155 } else {
1156 /*
1157 * Configure Bundling if we need to fetch interlaving
1158 * protection PCI accesses
1159 */
1160 fw_prot_opts |= PO_ENABLE_DIF_BUNDLING;
1161 crc_ctx_pkt->u.bundling.dif_byte_count = cpu_to_le32(dif_bytes);
1162 crc_ctx_pkt->u.bundling.dseg_count = cpu_to_le16(tot_dsds -
1163 tot_prot_dsds);
1164 cur_dsd = (uint32_t *) &crc_ctx_pkt->u.bundling.data_address;
1165 }
1166
1167 /* Finish the common fields of CRC pkt */
1168 crc_ctx_pkt->blk_size = cpu_to_le16(blk_size);
1169 crc_ctx_pkt->prot_opts = cpu_to_le16(fw_prot_opts);
1170 crc_ctx_pkt->byte_count = cpu_to_le32(data_bytes);
1171 crc_ctx_pkt->guard_seed = __constant_cpu_to_le16(0);
1172 /* Fibre channel byte count */
1173 cmd_pkt->byte_count = cpu_to_le32(total_bytes);
1174 fcp_dl = (uint32_t *)(crc_ctx_pkt->fcp_cmnd.cdb + 16 +
1175 additional_fcpcdb_len);
1176 *fcp_dl = htonl(total_bytes);
1177
1178 DEBUG18(printk(KERN_INFO "%s(%ld): dif bytes = 0x%x (%d), total bytes"
1179 " = 0x%x (%d), dat block size =0x%x (%d)\n", __func__,
1180 vha->host_no, dif_bytes, dif_bytes, total_bytes, total_bytes,
1181 crc_ctx_pkt->blk_size, crc_ctx_pkt->blk_size));
1182
1183 /* Walks data segments */
1184
1185 cmd_pkt->control_flags |=
1186 __constant_cpu_to_le16(CF_DATA_SEG_DESCR_ENABLE);
1187 if (qla24xx_walk_and_build_sglist(ha, sp, cur_dsd,
1188 (tot_dsds - tot_prot_dsds)))
1189 goto crc_queuing_error;
1190
1191 if (bundling && tot_prot_dsds) {
1192 /* Walks dif segments */
1193 cur_seg = scsi_prot_sglist(cmd);
1194 cmd_pkt->control_flags |=
1195 __constant_cpu_to_le16(CF_DIF_SEG_DESCR_ENABLE);
1196 cur_dsd = (uint32_t *) &crc_ctx_pkt->u.bundling.dif_address;
1197 if (qla24xx_walk_and_build_prot_sglist(ha, sp, cur_dsd,
1198 tot_prot_dsds))
1199 goto crc_queuing_error;
1200 }
1201 return QLA_SUCCESS;
1202
1203crc_queuing_error:
1204 DEBUG18(qla_printk(KERN_INFO, ha,
1205 "CMD sent FAILED crc_q error:sp = %p\n", sp));
1206 /* Cleanup will be performed by the caller */
1207
1208 return QLA_FUNCTION_FAILED;
1209}
2b6c0cee
AV
1210
1211/**
1212 * qla24xx_start_scsi() - Send a SCSI command to the ISP
1213 * @sp: command to send to the ISP
1214 *
cc3ef7bc 1215 * Returns non-zero if a failure occurred, else zero.
2b6c0cee
AV
1216 */
1217int
1218qla24xx_start_scsi(srb_t *sp)
1219{
385d70b4 1220 int ret, nseg;
2b6c0cee 1221 unsigned long flags;
2b6c0cee
AV
1222 uint32_t *clr_ptr;
1223 uint32_t index;
1224 uint32_t handle;
1225 struct cmd_type_7 *cmd_pkt;
2b6c0cee
AV
1226 uint16_t cnt;
1227 uint16_t req_cnt;
1228 uint16_t tot_dsds;
73208dfd
AC
1229 struct req_que *req = NULL;
1230 struct rsp_que *rsp = NULL;
1231 struct scsi_cmnd *cmd = sp->cmd;
444786d7 1232 struct scsi_qla_host *vha = sp->fcport->vha;
73208dfd 1233 struct qla_hw_data *ha = vha->hw;
2b6c0cee
AV
1234
1235 /* Setup device pointers. */
1236 ret = 0;
73208dfd 1237
59e0b8b0
AC
1238 qla25xx_set_que(sp, &rsp);
1239 req = vha->req;
73208dfd 1240
2b6c0cee
AV
1241 /* So we know we haven't pci_map'ed anything yet */
1242 tot_dsds = 0;
1243
1244 /* Send marker if required */
e315cd28 1245 if (vha->marker_needed != 0) {
73208dfd
AC
1246 if (qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL)
1247 != QLA_SUCCESS)
2b6c0cee 1248 return QLA_FUNCTION_FAILED;
e315cd28 1249 vha->marker_needed = 0;
2b6c0cee
AV
1250 }
1251
1252 /* Acquire ring specific lock */
e315cd28 1253 spin_lock_irqsave(&ha->hardware_lock, flags);
2b6c0cee
AV
1254
1255 /* Check for room in outstanding command list. */
e315cd28 1256 handle = req->current_outstanding_cmd;
2b6c0cee
AV
1257 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
1258 handle++;
1259 if (handle == MAX_OUTSTANDING_COMMANDS)
1260 handle = 1;
e315cd28 1261 if (!req->outstanding_cmds[handle])
2b6c0cee
AV
1262 break;
1263 }
1264 if (index == MAX_OUTSTANDING_COMMANDS)
1265 goto queuing_error;
1266
1267 /* Map the sg table so we have an accurate count of sg entries needed */
2c3dfe3f
SJ
1268 if (scsi_sg_count(cmd)) {
1269 nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
1270 scsi_sg_count(cmd), cmd->sc_data_direction);
1271 if (unlikely(!nseg))
2b6c0cee 1272 goto queuing_error;
2c3dfe3f
SJ
1273 } else
1274 nseg = 0;
1275
385d70b4 1276 tot_dsds = nseg;
2b6c0cee
AV
1277
1278 req_cnt = qla24xx_calc_iocbs(tot_dsds);
e315cd28 1279 if (req->cnt < (req_cnt + 2)) {
08029990 1280 cnt = RD_REG_DWORD_RELAXED(req->req_q_out);
73208dfd 1281
e315cd28
AC
1282 if (req->ring_index < cnt)
1283 req->cnt = cnt - req->ring_index;
2b6c0cee 1284 else
e315cd28
AC
1285 req->cnt = req->length -
1286 (req->ring_index - cnt);
2b6c0cee 1287 }
e315cd28 1288 if (req->cnt < (req_cnt + 2))
2b6c0cee 1289 goto queuing_error;
2b6c0cee
AV
1290
1291 /* Build command packet. */
e315cd28
AC
1292 req->current_outstanding_cmd = handle;
1293 req->outstanding_cmds[handle] = sp;
cf53b069 1294 sp->handle = handle;
2b6c0cee 1295 sp->cmd->host_scribble = (unsigned char *)(unsigned long)handle;
e315cd28 1296 req->cnt -= req_cnt;
2b6c0cee 1297
e315cd28 1298 cmd_pkt = (struct cmd_type_7 *)req->ring_ptr;
2afa19a9 1299 cmd_pkt->handle = MAKE_HANDLE(req->id, handle);
2b6c0cee
AV
1300
1301 /* Zero out remaining portion of packet. */
72df8325 1302 /* tagged queuing modifier -- default is TSK_SIMPLE (0). */
2b6c0cee
AV
1303 clr_ptr = (uint32_t *)cmd_pkt + 2;
1304 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
1305 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
1306
1307 /* Set NPORT-ID and LUN number*/
1308 cmd_pkt->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1309 cmd_pkt->port_id[0] = sp->fcport->d_id.b.al_pa;
1310 cmd_pkt->port_id[1] = sp->fcport->d_id.b.area;
1311 cmd_pkt->port_id[2] = sp->fcport->d_id.b.domain;
2c3dfe3f 1312 cmd_pkt->vp_index = sp->fcport->vp_idx;
2b6c0cee 1313
661c3f6c 1314 int_to_scsilun(sp->cmd->device->lun, &cmd_pkt->lun);
0d4be124 1315 host_to_fcp_swap((uint8_t *)&cmd_pkt->lun, sizeof(cmd_pkt->lun));
2b6c0cee 1316
2b6c0cee
AV
1317 /* Load SCSI command packet. */
1318 memcpy(cmd_pkt->fcp_cdb, cmd->cmnd, cmd->cmd_len);
1319 host_to_fcp_swap(cmd_pkt->fcp_cdb, sizeof(cmd_pkt->fcp_cdb));
1320
385d70b4 1321 cmd_pkt->byte_count = cpu_to_le32((uint32_t)scsi_bufflen(cmd));
2b6c0cee
AV
1322
1323 /* Build IOCB segments */
1324 qla24xx_build_scsi_iocbs(sp, cmd_pkt, tot_dsds);
1325
1326 /* Set total data segment count. */
1327 cmd_pkt->entry_count = (uint8_t)req_cnt;
2afa19a9
AC
1328 /* Specify response queue number where completion should happen */
1329 cmd_pkt->entry_status = (uint8_t) rsp->id;
2b6c0cee
AV
1330 wmb();
1331
1332 /* Adjust ring index. */
e315cd28
AC
1333 req->ring_index++;
1334 if (req->ring_index == req->length) {
1335 req->ring_index = 0;
1336 req->ring_ptr = req->ring;
2b6c0cee 1337 } else
e315cd28 1338 req->ring_ptr++;
2b6c0cee
AV
1339
1340 sp->flags |= SRB_DMA_VALID;
2b6c0cee
AV
1341
1342 /* Set chip new ring index. */
08029990
AV
1343 WRT_REG_DWORD(req->req_q_in, req->ring_index);
1344 RD_REG_DWORD_RELAXED(&ha->iobase->isp24.hccr);
2b6c0cee 1345
4fdfefe5 1346 /* Manage unprocessed RIO/ZIO commands in response queue. */
e315cd28 1347 if (vha->flags.process_response_queue &&
73208dfd 1348 rsp->ring_ptr->signature != RESPONSE_PROCESSED)
2afa19a9 1349 qla24xx_process_response_queue(vha, rsp);
4fdfefe5 1350
e315cd28 1351 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2b6c0cee
AV
1352 return QLA_SUCCESS;
1353
1354queuing_error:
385d70b4
FT
1355 if (tot_dsds)
1356 scsi_dma_unmap(cmd);
1357
e315cd28 1358 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2b6c0cee
AV
1359
1360 return QLA_FUNCTION_FAILED;
1da177e4 1361}
68ca949c 1362
bad75002
AE
1363
1364/**
1365 * qla24xx_dif_start_scsi() - Send a SCSI command to the ISP
1366 * @sp: command to send to the ISP
1367 *
1368 * Returns non-zero if a failure occurred, else zero.
1369 */
1370int
1371qla24xx_dif_start_scsi(srb_t *sp)
1372{
1373 int nseg;
1374 unsigned long flags;
1375 uint32_t *clr_ptr;
1376 uint32_t index;
1377 uint32_t handle;
1378 uint16_t cnt;
1379 uint16_t req_cnt = 0;
1380 uint16_t tot_dsds;
1381 uint16_t tot_prot_dsds;
1382 uint16_t fw_prot_opts = 0;
1383 struct req_que *req = NULL;
1384 struct rsp_que *rsp = NULL;
1385 struct scsi_cmnd *cmd = sp->cmd;
1386 struct scsi_qla_host *vha = sp->fcport->vha;
1387 struct qla_hw_data *ha = vha->hw;
1388 struct cmd_type_crc_2 *cmd_pkt;
1389 uint32_t status = 0;
1390
1391#define QDSS_GOT_Q_SPACE BIT_0
1392
1393 /* Only process protection in this routine */
1394 if (scsi_get_prot_op(cmd) == SCSI_PROT_NORMAL)
1395 return qla24xx_start_scsi(sp);
1396
1397 /* Setup device pointers. */
1398
1399 qla25xx_set_que(sp, &rsp);
1400 req = vha->req;
1401
1402 /* So we know we haven't pci_map'ed anything yet */
1403 tot_dsds = 0;
1404
1405 /* Send marker if required */
1406 if (vha->marker_needed != 0) {
1407 if (qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL) !=
1408 QLA_SUCCESS)
1409 return QLA_FUNCTION_FAILED;
1410 vha->marker_needed = 0;
1411 }
1412
1413 /* Acquire ring specific lock */
1414 spin_lock_irqsave(&ha->hardware_lock, flags);
1415
1416 /* Check for room in outstanding command list. */
1417 handle = req->current_outstanding_cmd;
1418 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
1419 handle++;
1420 if (handle == MAX_OUTSTANDING_COMMANDS)
1421 handle = 1;
1422 if (!req->outstanding_cmds[handle])
1423 break;
1424 }
1425
1426 if (index == MAX_OUTSTANDING_COMMANDS)
1427 goto queuing_error;
1428
1429 /* Compute number of required data segments */
1430 /* Map the sg table so we have an accurate count of sg entries needed */
1431 if (scsi_sg_count(cmd)) {
1432 nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
1433 scsi_sg_count(cmd), cmd->sc_data_direction);
1434 if (unlikely(!nseg))
1435 goto queuing_error;
1436 else
1437 sp->flags |= SRB_DMA_VALID;
1438 } else
1439 nseg = 0;
1440
1441 /* number of required data segments */
1442 tot_dsds = nseg;
1443
1444 /* Compute number of required protection segments */
1445 if (qla24xx_configure_prot_mode(sp, &fw_prot_opts)) {
1446 nseg = dma_map_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
1447 scsi_prot_sg_count(cmd), cmd->sc_data_direction);
1448 if (unlikely(!nseg))
1449 goto queuing_error;
1450 else
1451 sp->flags |= SRB_CRC_PROT_DMA_VALID;
1452 } else {
1453 nseg = 0;
1454 }
1455
1456 req_cnt = 1;
1457 /* Total Data and protection sg segment(s) */
1458 tot_prot_dsds = nseg;
1459 tot_dsds += nseg;
1460 if (req->cnt < (req_cnt + 2)) {
1461 cnt = RD_REG_DWORD_RELAXED(req->req_q_out);
1462
1463 if (req->ring_index < cnt)
1464 req->cnt = cnt - req->ring_index;
1465 else
1466 req->cnt = req->length -
1467 (req->ring_index - cnt);
1468 }
1469
1470 if (req->cnt < (req_cnt + 2))
1471 goto queuing_error;
1472
1473 status |= QDSS_GOT_Q_SPACE;
1474
1475 /* Build header part of command packet (excluding the OPCODE). */
1476 req->current_outstanding_cmd = handle;
1477 req->outstanding_cmds[handle] = sp;
1478 sp->cmd->host_scribble = (unsigned char *)(unsigned long)handle;
1479 req->cnt -= req_cnt;
1480
1481 /* Fill-in common area */
1482 cmd_pkt = (struct cmd_type_crc_2 *)req->ring_ptr;
1483 cmd_pkt->handle = MAKE_HANDLE(req->id, handle);
1484
1485 clr_ptr = (uint32_t *)cmd_pkt + 2;
1486 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
1487
1488 /* Set NPORT-ID and LUN number*/
1489 cmd_pkt->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1490 cmd_pkt->port_id[0] = sp->fcport->d_id.b.al_pa;
1491 cmd_pkt->port_id[1] = sp->fcport->d_id.b.area;
1492 cmd_pkt->port_id[2] = sp->fcport->d_id.b.domain;
1493
1494 int_to_scsilun(sp->cmd->device->lun, &cmd_pkt->lun);
1495 host_to_fcp_swap((uint8_t *)&cmd_pkt->lun, sizeof(cmd_pkt->lun));
1496
1497 /* Total Data and protection segment(s) */
1498 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
1499
1500 /* Build IOCB segments and adjust for data protection segments */
1501 if (qla24xx_build_scsi_crc_2_iocbs(sp, (struct cmd_type_crc_2 *)
1502 req->ring_ptr, tot_dsds, tot_prot_dsds, fw_prot_opts) !=
1503 QLA_SUCCESS)
1504 goto queuing_error;
1505
1506 cmd_pkt->entry_count = (uint8_t)req_cnt;
1507 /* Specify response queue number where completion should happen */
1508 cmd_pkt->entry_status = (uint8_t) rsp->id;
1509 cmd_pkt->timeout = __constant_cpu_to_le16(0);
1510 wmb();
1511
1512 /* Adjust ring index. */
1513 req->ring_index++;
1514 if (req->ring_index == req->length) {
1515 req->ring_index = 0;
1516 req->ring_ptr = req->ring;
1517 } else
1518 req->ring_ptr++;
1519
1520 /* Set chip new ring index. */
1521 WRT_REG_DWORD(req->req_q_in, req->ring_index);
1522 RD_REG_DWORD_RELAXED(&ha->iobase->isp24.hccr);
1523
1524 /* Manage unprocessed RIO/ZIO commands in response queue. */
1525 if (vha->flags.process_response_queue &&
1526 rsp->ring_ptr->signature != RESPONSE_PROCESSED)
1527 qla24xx_process_response_queue(vha, rsp);
1528
1529 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1530
1531 return QLA_SUCCESS;
1532
1533queuing_error:
1534 if (status & QDSS_GOT_Q_SPACE) {
1535 req->outstanding_cmds[handle] = NULL;
1536 req->cnt += req_cnt;
1537 }
1538 /* Cleanup will be performed by the caller (queuecommand) */
1539
1540 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1541
1542 DEBUG18(qla_printk(KERN_INFO, ha,
1543 "CMD sent FAILED SCSI prot_op:%02x\n", scsi_get_prot_op(cmd)));
1544 return QLA_FUNCTION_FAILED;
1545}
1546
1547
59e0b8b0 1548static void qla25xx_set_que(srb_t *sp, struct rsp_que **rsp)
68ca949c
AC
1549{
1550 struct scsi_cmnd *cmd = sp->cmd;
68ca949c
AC
1551 struct qla_hw_data *ha = sp->fcport->vha->hw;
1552 int affinity = cmd->request->cpu;
1553
7163ea81 1554 if (ha->flags.cpu_affinity_enabled && affinity >= 0 &&
59e0b8b0 1555 affinity < ha->max_rsp_queues - 1)
68ca949c 1556 *rsp = ha->rsp_q_map[affinity + 1];
59e0b8b0 1557 else
68ca949c 1558 *rsp = ha->rsp_q_map[0];
68ca949c 1559}
ac280b67
AV
1560
1561/* Generic Control-SRB manipulation functions. */
1562
1563static void *
1564qla2x00_alloc_iocbs(srb_t *sp)
1565{
1566 scsi_qla_host_t *vha = sp->fcport->vha;
1567 struct qla_hw_data *ha = vha->hw;
1568 struct req_que *req = ha->req_q_map[0];
1569 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
1570 uint32_t index, handle;
1571 request_t *pkt;
1572 uint16_t cnt, req_cnt;
1573
1574 pkt = NULL;
1575 req_cnt = 1;
1576
1577 /* Check for room in outstanding command list. */
1578 handle = req->current_outstanding_cmd;
1579 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
1580 handle++;
1581 if (handle == MAX_OUTSTANDING_COMMANDS)
1582 handle = 1;
1583 if (!req->outstanding_cmds[handle])
1584 break;
1585 }
1586 if (index == MAX_OUTSTANDING_COMMANDS)
1587 goto queuing_error;
1588
1589 /* Check for room on request queue. */
1590 if (req->cnt < req_cnt) {
1591 if (ha->mqenable)
1592 cnt = RD_REG_DWORD(&reg->isp25mq.req_q_out);
1593 else if (IS_FWI2_CAPABLE(ha))
1594 cnt = RD_REG_DWORD(&reg->isp24.req_q_out);
1595 else
1596 cnt = qla2x00_debounce_register(
1597 ISP_REQ_Q_OUT(ha, &reg->isp));
1598
1599 if (req->ring_index < cnt)
1600 req->cnt = cnt - req->ring_index;
1601 else
1602 req->cnt = req->length -
1603 (req->ring_index - cnt);
1604 }
1605 if (req->cnt < req_cnt)
1606 goto queuing_error;
1607
1608 /* Prep packet */
1609 req->current_outstanding_cmd = handle;
1610 req->outstanding_cmds[handle] = sp;
1611 req->cnt -= req_cnt;
1612
1613 pkt = req->ring_ptr;
1614 memset(pkt, 0, REQUEST_ENTRY_SIZE);
1615 pkt->entry_count = req_cnt;
1616 pkt->handle = handle;
1617 sp->handle = handle;
1618
1619queuing_error:
1620 return pkt;
1621}
1622
1623static void
1624qla2x00_start_iocbs(srb_t *sp)
1625{
1626 struct qla_hw_data *ha = sp->fcport->vha->hw;
1627 struct req_que *req = ha->req_q_map[0];
1628 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
1629 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
1630
a9083016
GM
1631 if (IS_QLA82XX(ha)) {
1632 qla82xx_start_iocbs(sp);
ac280b67 1633 } else {
a9083016
GM
1634 /* Adjust ring index. */
1635 req->ring_index++;
1636 if (req->ring_index == req->length) {
1637 req->ring_index = 0;
1638 req->ring_ptr = req->ring;
1639 } else
1640 req->ring_ptr++;
1641
1642 /* Set chip new ring index. */
1643 if (ha->mqenable) {
1644 WRT_REG_DWORD(&reg->isp25mq.req_q_in, req->ring_index);
1645 RD_REG_DWORD(&ioreg->hccr);
1646 } else if (IS_QLA82XX(ha)) {
1647 qla82xx_start_iocbs(sp);
1648 } else if (IS_FWI2_CAPABLE(ha)) {
1649 WRT_REG_DWORD(&reg->isp24.req_q_in, req->ring_index);
1650 RD_REG_DWORD_RELAXED(&reg->isp24.req_q_in);
1651 } else {
1652 WRT_REG_WORD(ISP_REQ_Q_IN(ha, &reg->isp),
1653 req->ring_index);
1654 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, &reg->isp));
1655 }
ac280b67
AV
1656 }
1657}
1658
1659static void
1660qla24xx_login_iocb(srb_t *sp, struct logio_entry_24xx *logio)
1661{
4916392b
MI
1662 struct srb_ctx *ctx = sp->ctx;
1663 struct srb_iocb *lio = ctx->u.iocb_cmd;
ac280b67
AV
1664
1665 logio->entry_type = LOGINOUT_PORT_IOCB_TYPE;
1666 logio->control_flags = cpu_to_le16(LCF_COMMAND_PLOGI);
4916392b 1667 if (lio->u.logio.flags & SRB_LOGIN_COND_PLOGI)
ac280b67 1668 logio->control_flags |= cpu_to_le16(LCF_COND_PLOGI);
4916392b 1669 if (lio->u.logio.flags & SRB_LOGIN_SKIP_PRLI)
ac280b67
AV
1670 logio->control_flags |= cpu_to_le16(LCF_SKIP_PRLI);
1671 logio->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1672 logio->port_id[0] = sp->fcport->d_id.b.al_pa;
1673 logio->port_id[1] = sp->fcport->d_id.b.area;
1674 logio->port_id[2] = sp->fcport->d_id.b.domain;
1675 logio->vp_index = sp->fcport->vp_idx;
1676}
1677
1678static void
1679qla2x00_login_iocb(srb_t *sp, struct mbx_entry *mbx)
1680{
1681 struct qla_hw_data *ha = sp->fcport->vha->hw;
4916392b
MI
1682 struct srb_ctx *ctx = sp->ctx;
1683 struct srb_iocb *lio = ctx->u.iocb_cmd;
ac280b67
AV
1684 uint16_t opts;
1685
1686 mbx->entry_type = MBX_IOCB_TYPE;;
1687 SET_TARGET_ID(ha, mbx->loop_id, sp->fcport->loop_id);
1688 mbx->mb0 = cpu_to_le16(MBC_LOGIN_FABRIC_PORT);
4916392b
MI
1689 opts = lio->u.logio.flags & SRB_LOGIN_COND_PLOGI ? BIT_0 : 0;
1690 opts |= lio->u.logio.flags & SRB_LOGIN_SKIP_PRLI ? BIT_1 : 0;
ac280b67
AV
1691 if (HAS_EXTENDED_IDS(ha)) {
1692 mbx->mb1 = cpu_to_le16(sp->fcport->loop_id);
1693 mbx->mb10 = cpu_to_le16(opts);
1694 } else {
1695 mbx->mb1 = cpu_to_le16((sp->fcport->loop_id << 8) | opts);
1696 }
1697 mbx->mb2 = cpu_to_le16(sp->fcport->d_id.b.domain);
1698 mbx->mb3 = cpu_to_le16(sp->fcport->d_id.b.area << 8 |
1699 sp->fcport->d_id.b.al_pa);
1700 mbx->mb9 = cpu_to_le16(sp->fcport->vp_idx);
1701}
1702
1703static void
1704qla24xx_logout_iocb(srb_t *sp, struct logio_entry_24xx *logio)
1705{
1706 logio->entry_type = LOGINOUT_PORT_IOCB_TYPE;
1707 logio->control_flags =
1708 cpu_to_le16(LCF_COMMAND_LOGO|LCF_IMPL_LOGO);
1709 logio->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1710 logio->port_id[0] = sp->fcport->d_id.b.al_pa;
1711 logio->port_id[1] = sp->fcport->d_id.b.area;
1712 logio->port_id[2] = sp->fcport->d_id.b.domain;
1713 logio->vp_index = sp->fcport->vp_idx;
1714}
1715
1716static void
1717qla2x00_logout_iocb(srb_t *sp, struct mbx_entry *mbx)
1718{
1719 struct qla_hw_data *ha = sp->fcport->vha->hw;
1720
1721 mbx->entry_type = MBX_IOCB_TYPE;;
1722 SET_TARGET_ID(ha, mbx->loop_id, sp->fcport->loop_id);
1723 mbx->mb0 = cpu_to_le16(MBC_LOGOUT_FABRIC_PORT);
1724 mbx->mb1 = HAS_EXTENDED_IDS(ha) ?
1725 cpu_to_le16(sp->fcport->loop_id):
1726 cpu_to_le16(sp->fcport->loop_id << 8);
1727 mbx->mb2 = cpu_to_le16(sp->fcport->d_id.b.domain);
1728 mbx->mb3 = cpu_to_le16(sp->fcport->d_id.b.area << 8 |
1729 sp->fcport->d_id.b.al_pa);
1730 mbx->mb9 = cpu_to_le16(sp->fcport->vp_idx);
1731 /* Implicit: mbx->mbx10 = 0. */
1732}
1733
5ff1d584
AV
1734static void
1735qla24xx_adisc_iocb(srb_t *sp, struct logio_entry_24xx *logio)
1736{
1737 logio->entry_type = LOGINOUT_PORT_IOCB_TYPE;
1738 logio->control_flags = cpu_to_le16(LCF_COMMAND_ADISC);
1739 logio->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1740 logio->vp_index = sp->fcport->vp_idx;
1741}
1742
1743static void
1744qla2x00_adisc_iocb(srb_t *sp, struct mbx_entry *mbx)
1745{
1746 struct qla_hw_data *ha = sp->fcport->vha->hw;
1747
1748 mbx->entry_type = MBX_IOCB_TYPE;
1749 SET_TARGET_ID(ha, mbx->loop_id, sp->fcport->loop_id);
1750 mbx->mb0 = cpu_to_le16(MBC_GET_PORT_DATABASE);
1751 if (HAS_EXTENDED_IDS(ha)) {
1752 mbx->mb1 = cpu_to_le16(sp->fcport->loop_id);
1753 mbx->mb10 = cpu_to_le16(BIT_0);
1754 } else {
1755 mbx->mb1 = cpu_to_le16((sp->fcport->loop_id << 8) | BIT_0);
1756 }
1757 mbx->mb2 = cpu_to_le16(MSW(ha->async_pd_dma));
1758 mbx->mb3 = cpu_to_le16(LSW(ha->async_pd_dma));
1759 mbx->mb6 = cpu_to_le16(MSW(MSD(ha->async_pd_dma)));
1760 mbx->mb7 = cpu_to_le16(LSW(MSD(ha->async_pd_dma)));
1761 mbx->mb9 = cpu_to_le16(sp->fcport->vp_idx);
1762}
1763
3822263e
MI
1764static void
1765qla24xx_tm_iocb(srb_t *sp, struct tsk_mgmt_entry *tsk)
1766{
1767 uint32_t flags;
1768 unsigned int lun;
1769 struct fc_port *fcport = sp->fcport;
1770 scsi_qla_host_t *vha = fcport->vha;
1771 struct qla_hw_data *ha = vha->hw;
1772 struct srb_ctx *ctx = sp->ctx;
1773 struct srb_iocb *iocb = ctx->u.iocb_cmd;
1774 struct req_que *req = vha->req;
1775
1776 flags = iocb->u.tmf.flags;
1777 lun = iocb->u.tmf.lun;
1778
1779 tsk->entry_type = TSK_MGMT_IOCB_TYPE;
1780 tsk->entry_count = 1;
1781 tsk->handle = MAKE_HANDLE(req->id, tsk->handle);
1782 tsk->nport_handle = cpu_to_le16(fcport->loop_id);
1783 tsk->timeout = cpu_to_le16(ha->r_a_tov / 10 * 2);
1784 tsk->control_flags = cpu_to_le32(flags);
1785 tsk->port_id[0] = fcport->d_id.b.al_pa;
1786 tsk->port_id[1] = fcport->d_id.b.area;
1787 tsk->port_id[2] = fcport->d_id.b.domain;
1788 tsk->vp_index = fcport->vp_idx;
1789
1790 if (flags == TCF_LUN_RESET) {
1791 int_to_scsilun(lun, &tsk->lun);
1792 host_to_fcp_swap((uint8_t *)&tsk->lun,
1793 sizeof(tsk->lun));
1794 }
1795}
1796
1797static void
1798qla24xx_marker_iocb(srb_t *sp, struct mrk_entry_24xx *mrk)
1799{
1800 uint16_t lun;
1801 uint8_t modif;
1802 struct fc_port *fcport = sp->fcport;
1803 scsi_qla_host_t *vha = fcport->vha;
1804 struct srb_ctx *ctx = sp->ctx;
1805 struct srb_iocb *iocb = ctx->u.iocb_cmd;
1806 struct req_que *req = vha->req;
1807
1808 lun = iocb->u.marker.lun;
1809 modif = iocb->u.marker.modif;
1810 mrk->entry_type = MARKER_TYPE;
1811 mrk->modifier = modif;
1812 if (modif != MK_SYNC_ALL) {
1813 mrk->nport_handle = cpu_to_le16(fcport->loop_id);
1814 mrk->lun[1] = LSB(lun);
1815 mrk->lun[2] = MSB(lun);
1816 host_to_fcp_swap(mrk->lun, sizeof(mrk->lun));
1817 mrk->vp_index = vha->vp_idx;
1818 mrk->handle = MAKE_HANDLE(req->id, mrk->handle);
1819 }
1820}
1821
9a069e19
GM
1822static void
1823qla24xx_els_iocb(srb_t *sp, struct els_entry_24xx *els_iocb)
1824{
4916392b 1825 struct fc_bsg_job *bsg_job = ((struct srb_ctx *)sp->ctx)->u.bsg_job;
9a069e19
GM
1826
1827 els_iocb->entry_type = ELS_IOCB_TYPE;
1828 els_iocb->entry_count = 1;
1829 els_iocb->sys_define = 0;
1830 els_iocb->entry_status = 0;
1831 els_iocb->handle = sp->handle;
1832 els_iocb->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1833 els_iocb->tx_dsd_count = __constant_cpu_to_le16(bsg_job->request_payload.sg_cnt);
1834 els_iocb->vp_index = sp->fcport->vp_idx;
1835 els_iocb->sof_type = EST_SOFI3;
1836 els_iocb->rx_dsd_count = __constant_cpu_to_le16(bsg_job->reply_payload.sg_cnt);
1837
4916392b
MI
1838 els_iocb->opcode =
1839 (((struct srb_ctx *)sp->ctx)->type == SRB_ELS_CMD_RPT) ?
1840 bsg_job->request->rqst_data.r_els.els_code :
1841 bsg_job->request->rqst_data.h_els.command_code;
9a069e19
GM
1842 els_iocb->port_id[0] = sp->fcport->d_id.b.al_pa;
1843 els_iocb->port_id[1] = sp->fcport->d_id.b.area;
1844 els_iocb->port_id[2] = sp->fcport->d_id.b.domain;
1845 els_iocb->control_flags = 0;
1846 els_iocb->rx_byte_count =
1847 cpu_to_le32(bsg_job->reply_payload.payload_len);
1848 els_iocb->tx_byte_count =
1849 cpu_to_le32(bsg_job->request_payload.payload_len);
1850
1851 els_iocb->tx_address[0] = cpu_to_le32(LSD(sg_dma_address
1852 (bsg_job->request_payload.sg_list)));
1853 els_iocb->tx_address[1] = cpu_to_le32(MSD(sg_dma_address
1854 (bsg_job->request_payload.sg_list)));
1855 els_iocb->tx_len = cpu_to_le32(sg_dma_len
1856 (bsg_job->request_payload.sg_list));
1857
1858 els_iocb->rx_address[0] = cpu_to_le32(LSD(sg_dma_address
1859 (bsg_job->reply_payload.sg_list)));
1860 els_iocb->rx_address[1] = cpu_to_le32(MSD(sg_dma_address
1861 (bsg_job->reply_payload.sg_list)));
1862 els_iocb->rx_len = cpu_to_le32(sg_dma_len
1863 (bsg_job->reply_payload.sg_list));
1864}
1865
1866static void
1867qla24xx_ct_iocb(srb_t *sp, struct ct_entry_24xx *ct_iocb)
1868{
1869 uint16_t avail_dsds;
1870 uint32_t *cur_dsd;
1871 struct scatterlist *sg;
1872 int index;
1873 uint16_t tot_dsds;
1874 scsi_qla_host_t *vha = sp->fcport->vha;
4916392b 1875 struct fc_bsg_job *bsg_job = ((struct srb_ctx *)sp->ctx)->u.bsg_job;
9a069e19
GM
1876 int loop_iterartion = 0;
1877 int cont_iocb_prsnt = 0;
1878 int entry_count = 1;
1879
1880 ct_iocb->entry_type = CT_IOCB_TYPE;
1881 ct_iocb->entry_status = 0;
1882 ct_iocb->sys_define = 0;
1883 ct_iocb->handle = sp->handle;
1884
1885 ct_iocb->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1886 ct_iocb->vp_index = sp->fcport->vp_idx;
1887 ct_iocb->comp_status = __constant_cpu_to_le16(0);
1888
1889 ct_iocb->cmd_dsd_count =
1890 __constant_cpu_to_le16(bsg_job->request_payload.sg_cnt);
1891 ct_iocb->timeout = 0;
1892 ct_iocb->rsp_dsd_count =
1893 __constant_cpu_to_le16(bsg_job->reply_payload.sg_cnt);
1894 ct_iocb->rsp_byte_count =
1895 cpu_to_le32(bsg_job->reply_payload.payload_len);
1896 ct_iocb->cmd_byte_count =
1897 cpu_to_le32(bsg_job->request_payload.payload_len);
1898 ct_iocb->dseg_0_address[0] = cpu_to_le32(LSD(sg_dma_address
1899 (bsg_job->request_payload.sg_list)));
1900 ct_iocb->dseg_0_address[1] = cpu_to_le32(MSD(sg_dma_address
1901 (bsg_job->request_payload.sg_list)));
1902 ct_iocb->dseg_0_len = cpu_to_le32(sg_dma_len
1903 (bsg_job->request_payload.sg_list));
1904
1905 avail_dsds = 1;
1906 cur_dsd = (uint32_t *)ct_iocb->dseg_1_address;
1907 index = 0;
1908 tot_dsds = bsg_job->reply_payload.sg_cnt;
1909
1910 for_each_sg(bsg_job->reply_payload.sg_list, sg, tot_dsds, index) {
1911 dma_addr_t sle_dma;
1912 cont_a64_entry_t *cont_pkt;
1913
1914 /* Allocate additional continuation packets? */
1915 if (avail_dsds == 0) {
1916 /*
1917 * Five DSDs are available in the Cont.
1918 * Type 1 IOCB.
1919 */
1920 cont_pkt = qla2x00_prep_cont_type1_iocb(vha);
1921 cur_dsd = (uint32_t *) cont_pkt->dseg_0_address;
1922 avail_dsds = 5;
1923 cont_iocb_prsnt = 1;
1924 entry_count++;
1925 }
1926
1927 sle_dma = sg_dma_address(sg);
1928 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
1929 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
1930 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
1931 loop_iterartion++;
1932 avail_dsds--;
1933 }
1934 ct_iocb->entry_count = entry_count;
1935}
1936
ac280b67
AV
1937int
1938qla2x00_start_sp(srb_t *sp)
1939{
1940 int rval;
1941 struct qla_hw_data *ha = sp->fcport->vha->hw;
1942 void *pkt;
1943 struct srb_ctx *ctx = sp->ctx;
1944 unsigned long flags;
1945
1946 rval = QLA_FUNCTION_FAILED;
1947 spin_lock_irqsave(&ha->hardware_lock, flags);
1948 pkt = qla2x00_alloc_iocbs(sp);
1949 if (!pkt)
1950 goto done;
1951
1952 rval = QLA_SUCCESS;
1953 switch (ctx->type) {
1954 case SRB_LOGIN_CMD:
1955 IS_FWI2_CAPABLE(ha) ?
5ff1d584 1956 qla24xx_login_iocb(sp, pkt) :
ac280b67
AV
1957 qla2x00_login_iocb(sp, pkt);
1958 break;
1959 case SRB_LOGOUT_CMD:
1960 IS_FWI2_CAPABLE(ha) ?
5ff1d584 1961 qla24xx_logout_iocb(sp, pkt) :
ac280b67
AV
1962 qla2x00_logout_iocb(sp, pkt);
1963 break;
9a069e19
GM
1964 case SRB_ELS_CMD_RPT:
1965 case SRB_ELS_CMD_HST:
1966 qla24xx_els_iocb(sp, pkt);
1967 break;
1968 case SRB_CT_CMD:
1969 qla24xx_ct_iocb(sp, pkt);
1970 break;
5ff1d584
AV
1971 case SRB_ADISC_CMD:
1972 IS_FWI2_CAPABLE(ha) ?
1973 qla24xx_adisc_iocb(sp, pkt) :
1974 qla2x00_adisc_iocb(sp, pkt);
1975 break;
3822263e
MI
1976 case SRB_TM_CMD:
1977 qla24xx_tm_iocb(sp, pkt);
1978 break;
1979 case SRB_MARKER_CMD:
1980 qla24xx_marker_iocb(sp, pkt);
1981 break;
ac280b67
AV
1982 default:
1983 break;
1984 }
1985
1986 wmb();
1987 qla2x00_start_iocbs(sp);
1988done:
1989 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1990 return rval;
1991}