blob: 9778f0b63ec14c18b856c7ce2dde7c5a9c6b2896 [file] [log] [blame]
Andrew Vasquezfa90c542005-10-27 11:10:08 -07001/*
2 * QLogic Fibre Channel HBA Driver
Andrew Vasquez01e58d82008-04-03 13:13:13 -07003 * Copyright (c) 2003-2008 QLogic Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "qla_def.h"
8
9#include <linux/blkdev.h>
10#include <linux/delay.h>
11
12#include <scsi/scsi_tcq.h>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014static request_t *qla2x00_req_pkt(scsi_qla_host_t *ha);
Adrian Bunk413975a2006-06-30 02:33:06 -070015static void qla2x00_isp_cmd(scsi_qla_host_t *ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17/**
18 * qla2x00_get_cmd_direction() - Determine control_flag data direction.
19 * @cmd: SCSI command
20 *
21 * Returns the proper CF_* direction based on CDB.
22 */
23static inline uint16_t
Harish Zunjarrao49fd4622008-09-11 21:22:47 -070024qla2x00_get_cmd_direction(srb_t *sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
26 uint16_t cflags;
27
28 cflags = 0;
29
30 /* Set transfer direction */
Harish Zunjarrao49fd4622008-09-11 21:22:47 -070031 if (sp->cmd->sc_data_direction == DMA_TO_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 cflags = CF_WRITE;
Harish Zunjarrao49fd4622008-09-11 21:22:47 -070033 sp->fcport->ha->qla_stats.output_bytes +=
34 scsi_bufflen(sp->cmd);
35 } else if (sp->cmd->sc_data_direction == DMA_FROM_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 cflags = CF_READ;
Harish Zunjarrao49fd4622008-09-11 21:22:47 -070037 sp->fcport->ha->qla_stats.input_bytes +=
38 scsi_bufflen(sp->cmd);
39 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 return (cflags);
41}
42
43/**
44 * qla2x00_calc_iocbs_32() - Determine number of Command Type 2 and
45 * Continuation Type 0 IOCBs to allocate.
46 *
47 * @dsds: number of data segment decriptors needed
48 *
49 * Returns the number of IOCB entries needed to store @dsds.
50 */
51uint16_t
52qla2x00_calc_iocbs_32(uint16_t dsds)
53{
54 uint16_t iocbs;
55
56 iocbs = 1;
57 if (dsds > 3) {
58 iocbs += (dsds - 3) / 7;
59 if ((dsds - 3) % 7)
60 iocbs++;
61 }
62 return (iocbs);
63}
64
65/**
66 * qla2x00_calc_iocbs_64() - Determine number of Command Type 3 and
67 * Continuation Type 1 IOCBs to allocate.
68 *
69 * @dsds: number of data segment decriptors needed
70 *
71 * Returns the number of IOCB entries needed to store @dsds.
72 */
73uint16_t
74qla2x00_calc_iocbs_64(uint16_t dsds)
75{
76 uint16_t iocbs;
77
78 iocbs = 1;
79 if (dsds > 2) {
80 iocbs += (dsds - 2) / 5;
81 if ((dsds - 2) % 5)
82 iocbs++;
83 }
84 return (iocbs);
85}
86
87/**
88 * qla2x00_prep_cont_type0_iocb() - Initialize a Continuation Type 0 IOCB.
89 * @ha: HA context
90 *
91 * Returns a pointer to the Continuation Type 0 IOCB packet.
92 */
93static inline cont_entry_t *
94qla2x00_prep_cont_type0_iocb(scsi_qla_host_t *ha)
95{
96 cont_entry_t *cont_pkt;
97
98 /* Adjust ring index. */
99 ha->req_ring_index++;
100 if (ha->req_ring_index == ha->request_q_length) {
101 ha->req_ring_index = 0;
102 ha->request_ring_ptr = ha->request_ring;
103 } else {
104 ha->request_ring_ptr++;
105 }
106
107 cont_pkt = (cont_entry_t *)ha->request_ring_ptr;
108
109 /* Load packet defaults. */
110 *((uint32_t *)(&cont_pkt->entry_type)) =
111 __constant_cpu_to_le32(CONTINUE_TYPE);
112
113 return (cont_pkt);
114}
115
116/**
117 * qla2x00_prep_cont_type1_iocb() - Initialize a Continuation Type 1 IOCB.
118 * @ha: HA context
119 *
120 * Returns a pointer to the continuation type 1 IOCB packet.
121 */
122static inline cont_a64_entry_t *
123qla2x00_prep_cont_type1_iocb(scsi_qla_host_t *ha)
124{
125 cont_a64_entry_t *cont_pkt;
126
127 /* Adjust ring index. */
128 ha->req_ring_index++;
129 if (ha->req_ring_index == ha->request_q_length) {
130 ha->req_ring_index = 0;
131 ha->request_ring_ptr = ha->request_ring;
132 } else {
133 ha->request_ring_ptr++;
134 }
135
136 cont_pkt = (cont_a64_entry_t *)ha->request_ring_ptr;
137
138 /* Load packet defaults. */
139 *((uint32_t *)(&cont_pkt->entry_type)) =
140 __constant_cpu_to_le32(CONTINUE_A64_TYPE);
141
142 return (cont_pkt);
143}
144
145/**
146 * qla2x00_build_scsi_iocbs_32() - Build IOCB command utilizing 32bit
147 * capable IOCB types.
148 *
149 * @sp: SRB command to process
150 * @cmd_pkt: Command type 2 IOCB
151 * @tot_dsds: Total number of segments to transfer
152 */
153void qla2x00_build_scsi_iocbs_32(srb_t *sp, cmd_entry_t *cmd_pkt,
154 uint16_t tot_dsds)
155{
156 uint16_t avail_dsds;
157 uint32_t *cur_dsd;
158 scsi_qla_host_t *ha;
159 struct scsi_cmnd *cmd;
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900160 struct scatterlist *sg;
161 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 cmd = sp->cmd;
164
165 /* Update entry type to indicate Command Type 2 IOCB */
166 *((uint32_t *)(&cmd_pkt->entry_type)) =
167 __constant_cpu_to_le32(COMMAND_TYPE);
168
169 /* No data transfer */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900170 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
172 return;
173 }
174
175 ha = sp->ha;
176
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700177 cmd_pkt->control_flags |= cpu_to_le16(qla2x00_get_cmd_direction(sp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /* Three DSDs are available in the Command Type 2 IOCB */
180 avail_dsds = 3;
181 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
182
183 /* Load data segments */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900184 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
185 cont_entry_t *cont_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900187 /* Allocate additional continuation packets? */
188 if (avail_dsds == 0) {
189 /*
190 * Seven DSDs are available in the Continuation
191 * Type 0 IOCB.
192 */
193 cont_pkt = qla2x00_prep_cont_type0_iocb(ha);
194 cur_dsd = (uint32_t *)&cont_pkt->dseg_0_address;
195 avail_dsds = 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900197
198 *cur_dsd++ = cpu_to_le32(sg_dma_address(sg));
199 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
200 avail_dsds--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202}
203
204/**
205 * qla2x00_build_scsi_iocbs_64() - Build IOCB command utilizing 64bit
206 * capable IOCB types.
207 *
208 * @sp: SRB command to process
209 * @cmd_pkt: Command type 3 IOCB
210 * @tot_dsds: Total number of segments to transfer
211 */
212void qla2x00_build_scsi_iocbs_64(srb_t *sp, cmd_entry_t *cmd_pkt,
213 uint16_t tot_dsds)
214{
215 uint16_t avail_dsds;
216 uint32_t *cur_dsd;
217 scsi_qla_host_t *ha;
218 struct scsi_cmnd *cmd;
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900219 struct scatterlist *sg;
220 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 cmd = sp->cmd;
223
224 /* Update entry type to indicate Command Type 3 IOCB */
225 *((uint32_t *)(&cmd_pkt->entry_type)) =
226 __constant_cpu_to_le32(COMMAND_A64_TYPE);
227
228 /* No data transfer */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900229 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
231 return;
232 }
233
234 ha = sp->ha;
235
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700236 cmd_pkt->control_flags |= cpu_to_le16(qla2x00_get_cmd_direction(sp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 /* Two DSDs are available in the Command Type 3 IOCB */
239 avail_dsds = 2;
240 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
241
242 /* Load data segments */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900243 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
244 dma_addr_t sle_dma;
245 cont_a64_entry_t *cont_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900247 /* Allocate additional continuation packets? */
248 if (avail_dsds == 0) {
249 /*
250 * Five DSDs are available in the Continuation
251 * Type 1 IOCB.
252 */
253 cont_pkt = qla2x00_prep_cont_type1_iocb(ha);
254 cur_dsd = (uint32_t *)cont_pkt->dseg_0_address;
255 avail_dsds = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900257
258 sle_dma = sg_dma_address(sg);
259 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
260 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
261 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
262 avail_dsds--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264}
265
266/**
267 * qla2x00_start_scsi() - Send a SCSI command to the ISP
268 * @sp: command to send to the ISP
269 *
270 * Returns non-zero if a failure occured, else zero.
271 */
272int
273qla2x00_start_scsi(srb_t *sp)
274{
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900275 int ret, nseg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 unsigned long flags;
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -0700277 scsi_qla_host_t *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct scsi_cmnd *cmd;
279 uint32_t *clr_ptr;
280 uint32_t index;
281 uint32_t handle;
282 cmd_entry_t *cmd_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 uint16_t cnt;
284 uint16_t req_cnt;
285 uint16_t tot_dsds;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700286 struct device_reg_2xxx __iomem *reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /* Setup device pointers. */
289 ret = 0;
bdf79622005-04-17 15:06:53 -0500290 ha = sp->ha;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700291 reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 cmd = sp->cmd;
83021922005-04-17 15:10:41 -0500293 /* So we know we haven't pci_map'ed anything yet */
294 tot_dsds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 /* Send marker if required */
297 if (ha->marker_needed != 0) {
298 if (qla2x00_marker(ha, 0, 0, MK_SYNC_ALL) != QLA_SUCCESS) {
299 return (QLA_FUNCTION_FAILED);
300 }
301 ha->marker_needed = 0;
302 }
303
304 /* Acquire ring specific lock */
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -0700305 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 /* Check for room in outstanding command list. */
308 handle = ha->current_outstanding_cmd;
309 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
310 handle++;
311 if (handle == MAX_OUTSTANDING_COMMANDS)
312 handle = 1;
Andrew Vasquez700ca0e2007-09-20 14:07:46 -0700313 if (!ha->outstanding_cmds[handle])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 break;
315 }
316 if (index == MAX_OUTSTANDING_COMMANDS)
317 goto queuing_error;
318
83021922005-04-17 15:10:41 -0500319 /* Map the sg table so we have an accurate count of sg entries needed */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700320 if (scsi_sg_count(cmd)) {
321 nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
322 scsi_sg_count(cmd), cmd->sc_data_direction);
323 if (unlikely(!nseg))
324 goto queuing_error;
325 } else
326 nseg = 0;
327
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900328 tot_dsds = nseg;
83021922005-04-17 15:10:41 -0500329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* Calculate the number of request entries needed. */
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700331 req_cnt = ha->isp_ops->calc_req_entries(tot_dsds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (ha->req_q_cnt < (req_cnt + 2)) {
333 cnt = RD_REG_WORD_RELAXED(ISP_REQ_Q_OUT(ha, reg));
334 if (ha->req_ring_index < cnt)
335 ha->req_q_cnt = cnt - ha->req_ring_index;
336 else
337 ha->req_q_cnt = ha->request_q_length -
338 (ha->req_ring_index - cnt);
339 }
340 if (ha->req_q_cnt < (req_cnt + 2))
341 goto queuing_error;
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /* Build command packet */
344 ha->current_outstanding_cmd = handle;
345 ha->outstanding_cmds[handle] = sp;
346 sp->ha = ha;
347 sp->cmd->host_scribble = (unsigned char *)(unsigned long)handle;
348 ha->req_q_cnt -= req_cnt;
349
350 cmd_pkt = (cmd_entry_t *)ha->request_ring_ptr;
351 cmd_pkt->handle = handle;
352 /* Zero out remaining portion of packet. */
353 clr_ptr = (uint32_t *)cmd_pkt + 2;
354 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
355 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
356
bdf79622005-04-17 15:06:53 -0500357 /* Set target ID and LUN number*/
358 SET_TARGET_ID(ha, cmd_pkt->target, sp->fcport->loop_id);
359 cmd_pkt->lun = cpu_to_le16(sp->cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* Update tagged queuing modifier */
362 cmd_pkt->control_flags = __constant_cpu_to_le16(CF_SIMPLE_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 /* Load SCSI command packet. */
365 memcpy(cmd_pkt->scsi_cdb, cmd->cmnd, cmd->cmd_len);
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900366 cmd_pkt->byte_count = cpu_to_le32((uint32_t)scsi_bufflen(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* Build IOCB segments */
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700369 ha->isp_ops->build_iocbs(sp, cmd_pkt, tot_dsds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 /* Set total data segment count. */
372 cmd_pkt->entry_count = (uint8_t)req_cnt;
373 wmb();
374
375 /* Adjust ring index. */
376 ha->req_ring_index++;
377 if (ha->req_ring_index == ha->request_q_length) {
378 ha->req_ring_index = 0;
379 ha->request_ring_ptr = ha->request_ring;
380 } else
381 ha->request_ring_ptr++;
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 sp->flags |= SRB_DMA_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 /* Set chip new ring index. */
386 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), ha->req_ring_index);
387 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, reg)); /* PCI Posting. */
388
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700389 /* Manage unprocessed RIO/ZIO commands in response queue. */
390 if (ha->flags.process_response_queue &&
391 ha->response_ring_ptr->signature != RESPONSE_PROCESSED)
392 qla2x00_process_response_queue(ha);
393
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -0700394 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return (QLA_SUCCESS);
396
397queuing_error:
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900398 if (tot_dsds)
399 scsi_dma_unmap(cmd);
400
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -0700401 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 return (QLA_FUNCTION_FAILED);
404}
405
406/**
407 * qla2x00_marker() - Send a marker IOCB to the firmware.
408 * @ha: HA context
409 * @loop_id: loop ID
410 * @lun: LUN
411 * @type: marker modifier
412 *
413 * Can be called from both normal and interrupt context.
414 *
415 * Returns non-zero if a failure occured, else zero.
416 */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700417int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418__qla2x00_marker(scsi_qla_host_t *ha, uint16_t loop_id, uint16_t lun,
419 uint8_t type)
420{
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700421 mrk_entry_t *mrk;
422 struct mrk_entry_24xx *mrk24;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700423 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700425 mrk24 = NULL;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700426 mrk = (mrk_entry_t *)qla2x00_req_pkt(pha);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700427 if (mrk == NULL) {
428 DEBUG2_3(printk("%s(%ld): failed to allocate Marker IOCB.\n",
429 __func__, ha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 return (QLA_FUNCTION_FAILED);
432 }
433
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700434 mrk->entry_type = MARKER_TYPE;
435 mrk->modifier = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (type != MK_SYNC_ALL) {
Andrew Vasqueze4289242007-07-19 15:05:56 -0700437 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700438 mrk24 = (struct mrk_entry_24xx *) mrk;
439 mrk24->nport_handle = cpu_to_le16(loop_id);
440 mrk24->lun[1] = LSB(lun);
441 mrk24->lun[2] = MSB(lun);
Shyam Sundarb797b6d2006-08-01 13:48:13 -0700442 host_to_fcp_swap(mrk24->lun, sizeof(mrk24->lun));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700443 mrk24->vp_index = ha->vp_idx;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700444 } else {
445 SET_TARGET_ID(ha, mrk->target, loop_id);
446 mrk->lun = cpu_to_le16(lun);
447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449 wmb();
450
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700451 qla2x00_isp_cmd(pha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 return (QLA_SUCCESS);
454}
455
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700456int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457qla2x00_marker(scsi_qla_host_t *ha, uint16_t loop_id, uint16_t lun,
458 uint8_t type)
459{
460 int ret;
461 unsigned long flags = 0;
Seokmann Ju246de422008-07-10 16:55:55 -0700462 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Seokmann Ju246de422008-07-10 16:55:55 -0700464 spin_lock_irqsave(&pha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 ret = __qla2x00_marker(ha, loop_id, lun, type);
Seokmann Ju246de422008-07-10 16:55:55 -0700466 spin_unlock_irqrestore(&pha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 return (ret);
469}
470
471/**
472 * qla2x00_req_pkt() - Retrieve a request packet from the request ring.
473 * @ha: HA context
474 *
475 * Note: The caller must hold the hardware lock before calling this routine.
476 *
477 * Returns NULL if function failed, else, a pointer to the request packet.
478 */
479static request_t *
480qla2x00_req_pkt(scsi_qla_host_t *ha)
481{
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700482 device_reg_t __iomem *reg = ha->iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 request_t *pkt = NULL;
484 uint16_t cnt;
485 uint32_t *dword_ptr;
486 uint32_t timer;
487 uint16_t req_cnt = 1;
488
489 /* Wait 1 second for slot. */
490 for (timer = HZ; timer; timer--) {
491 if ((req_cnt + 2) >= ha->req_q_cnt) {
492 /* Calculate number of free request entries. */
Andrew Vasqueze4289242007-07-19 15:05:56 -0700493 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700494 cnt = (uint16_t)RD_REG_DWORD(
495 &reg->isp24.req_q_out);
496 else
497 cnt = qla2x00_debounce_register(
498 ISP_REQ_Q_OUT(ha, &reg->isp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (ha->req_ring_index < cnt)
500 ha->req_q_cnt = cnt - ha->req_ring_index;
501 else
502 ha->req_q_cnt = ha->request_q_length -
503 (ha->req_ring_index - cnt);
504 }
505 /* If room for request in request ring. */
506 if ((req_cnt + 2) < ha->req_q_cnt) {
507 ha->req_q_cnt--;
508 pkt = ha->request_ring_ptr;
509
510 /* Zero out packet. */
511 dword_ptr = (uint32_t *)pkt;
512 for (cnt = 0; cnt < REQUEST_ENTRY_SIZE / 4; cnt++)
513 *dword_ptr++ = 0;
514
515 /* Set system defined field. */
516 pkt->sys_define = (uint8_t)ha->req_ring_index;
517
518 /* Set entry count. */
519 pkt->entry_count = 1;
520
521 break;
522 }
523
524 /* Release ring specific lock */
525 spin_unlock(&ha->hardware_lock);
526
527 udelay(2); /* 2 us */
528
529 /* Check for pending interrupts. */
530 /* During init we issue marker directly */
Andrew Vasqueza3a63d52007-10-19 15:59:14 -0700531 if (!ha->marker_needed && !ha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 qla2x00_poll(ha);
533
534 spin_lock_irq(&ha->hardware_lock);
535 }
536 if (!pkt) {
537 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
538 }
539
540 return (pkt);
541}
542
543/**
544 * qla2x00_isp_cmd() - Modify the request ring pointer.
545 * @ha: HA context
546 *
547 * Note: The caller must hold the hardware lock before calling this routine.
548 */
Adrian Bunk413975a2006-06-30 02:33:06 -0700549static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550qla2x00_isp_cmd(scsi_qla_host_t *ha)
551{
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700552 device_reg_t __iomem *reg = ha->iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 DEBUG5(printk("%s(): IOCB data:\n", __func__));
555 DEBUG5(qla2x00_dump_buffer(
556 (uint8_t *)ha->request_ring_ptr, REQUEST_ENTRY_SIZE));
557
558 /* Adjust ring index. */
559 ha->req_ring_index++;
560 if (ha->req_ring_index == ha->request_q_length) {
561 ha->req_ring_index = 0;
562 ha->request_ring_ptr = ha->request_ring;
563 } else
564 ha->request_ring_ptr++;
565
566 /* Set chip new ring index. */
Andrew Vasqueze4289242007-07-19 15:05:56 -0700567 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700568 WRT_REG_DWORD(&reg->isp24.req_q_in, ha->req_ring_index);
569 RD_REG_DWORD_RELAXED(&reg->isp24.req_q_in);
570 } else {
571 WRT_REG_WORD(ISP_REQ_Q_IN(ha, &reg->isp), ha->req_ring_index);
572 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, &reg->isp));
573 }
574
575}
576
577/**
578 * qla24xx_calc_iocbs() - Determine number of Command Type 3 and
579 * Continuation Type 1 IOCBs to allocate.
580 *
581 * @dsds: number of data segment decriptors needed
582 *
583 * Returns the number of IOCB entries needed to store @dsds.
584 */
585static inline uint16_t
586qla24xx_calc_iocbs(uint16_t dsds)
587{
588 uint16_t iocbs;
589
590 iocbs = 1;
591 if (dsds > 1) {
592 iocbs += (dsds - 1) / 5;
593 if ((dsds - 1) % 5)
594 iocbs++;
595 }
596 return iocbs;
597}
598
599/**
600 * qla24xx_build_scsi_iocbs() - Build IOCB command utilizing Command Type 7
601 * IOCB types.
602 *
603 * @sp: SRB command to process
604 * @cmd_pkt: Command type 3 IOCB
605 * @tot_dsds: Total number of segments to transfer
606 */
607static inline void
608qla24xx_build_scsi_iocbs(srb_t *sp, struct cmd_type_7 *cmd_pkt,
609 uint16_t tot_dsds)
610{
611 uint16_t avail_dsds;
612 uint32_t *cur_dsd;
613 scsi_qla_host_t *ha;
614 struct scsi_cmnd *cmd;
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900615 struct scatterlist *sg;
616 int i;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700617
618 cmd = sp->cmd;
619
620 /* Update entry type to indicate Command Type 3 IOCB */
621 *((uint32_t *)(&cmd_pkt->entry_type)) =
622 __constant_cpu_to_le32(COMMAND_TYPE_7);
623
624 /* No data transfer */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900625 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700626 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
627 return;
628 }
629
630 ha = sp->ha;
631
632 /* Set transfer direction */
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700633 if (cmd->sc_data_direction == DMA_TO_DEVICE) {
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700634 cmd_pkt->task_mgmt_flags =
635 __constant_cpu_to_le16(TMF_WRITE_DATA);
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700636 sp->fcport->ha->qla_stats.output_bytes +=
637 scsi_bufflen(sp->cmd);
638 } else if (cmd->sc_data_direction == DMA_FROM_DEVICE) {
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700639 cmd_pkt->task_mgmt_flags =
640 __constant_cpu_to_le16(TMF_READ_DATA);
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700641 sp->fcport->ha->qla_stats.input_bytes +=
642 scsi_bufflen(sp->cmd);
643 }
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700644
645 /* One DSD is available in the Command Type 3 IOCB */
646 avail_dsds = 1;
647 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
648
649 /* Load data segments */
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700650
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900651 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
652 dma_addr_t sle_dma;
653 cont_a64_entry_t *cont_pkt;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700654
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900655 /* Allocate additional continuation packets? */
656 if (avail_dsds == 0) {
657 /*
658 * Five DSDs are available in the Continuation
659 * Type 1 IOCB.
660 */
661 cont_pkt = qla2x00_prep_cont_type1_iocb(ha);
662 cur_dsd = (uint32_t *)cont_pkt->dseg_0_address;
663 avail_dsds = 5;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700664 }
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900665
666 sle_dma = sg_dma_address(sg);
667 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
668 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
669 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
670 avail_dsds--;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700671 }
672}
673
674
675/**
676 * qla24xx_start_scsi() - Send a SCSI command to the ISP
677 * @sp: command to send to the ISP
678 *
679 * Returns non-zero if a failure occured, else zero.
680 */
681int
682qla24xx_start_scsi(srb_t *sp)
683{
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900684 int ret, nseg;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700685 unsigned long flags;
Seokmann Ju246de422008-07-10 16:55:55 -0700686 scsi_qla_host_t *ha, *pha;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700687 struct scsi_cmnd *cmd;
688 uint32_t *clr_ptr;
689 uint32_t index;
690 uint32_t handle;
691 struct cmd_type_7 *cmd_pkt;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700692 uint16_t cnt;
693 uint16_t req_cnt;
694 uint16_t tot_dsds;
Linus Torvaldsdb776a12005-07-26 14:50:02 -0700695 struct device_reg_24xx __iomem *reg;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700696
697 /* Setup device pointers. */
698 ret = 0;
699 ha = sp->ha;
Seokmann Ju246de422008-07-10 16:55:55 -0700700 pha = to_qla_parent(ha);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700701 reg = &ha->iobase->isp24;
702 cmd = sp->cmd;
703 /* So we know we haven't pci_map'ed anything yet */
704 tot_dsds = 0;
705
706 /* Send marker if required */
707 if (ha->marker_needed != 0) {
708 if (qla2x00_marker(ha, 0, 0, MK_SYNC_ALL) != QLA_SUCCESS) {
709 return QLA_FUNCTION_FAILED;
710 }
711 ha->marker_needed = 0;
712 }
713
714 /* Acquire ring specific lock */
Seokmann Ju246de422008-07-10 16:55:55 -0700715 spin_lock_irqsave(&pha->hardware_lock, flags);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700716
717 /* Check for room in outstanding command list. */
718 handle = ha->current_outstanding_cmd;
719 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
720 handle++;
721 if (handle == MAX_OUTSTANDING_COMMANDS)
722 handle = 1;
Andrew Vasquez700ca0e2007-09-20 14:07:46 -0700723 if (!ha->outstanding_cmds[handle])
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700724 break;
725 }
726 if (index == MAX_OUTSTANDING_COMMANDS)
727 goto queuing_error;
728
729 /* Map the sg table so we have an accurate count of sg entries needed */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700730 if (scsi_sg_count(cmd)) {
731 nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
732 scsi_sg_count(cmd), cmd->sc_data_direction);
733 if (unlikely(!nseg))
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700734 goto queuing_error;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700735 } else
736 nseg = 0;
737
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900738 tot_dsds = nseg;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700739
740 req_cnt = qla24xx_calc_iocbs(tot_dsds);
741 if (ha->req_q_cnt < (req_cnt + 2)) {
742 cnt = (uint16_t)RD_REG_DWORD_RELAXED(&reg->req_q_out);
743 if (ha->req_ring_index < cnt)
744 ha->req_q_cnt = cnt - ha->req_ring_index;
745 else
746 ha->req_q_cnt = ha->request_q_length -
747 (ha->req_ring_index - cnt);
748 }
Andrew Vasquez131736d2005-08-26 19:09:20 -0700749 if (ha->req_q_cnt < (req_cnt + 2))
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700750 goto queuing_error;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700751
752 /* Build command packet. */
753 ha->current_outstanding_cmd = handle;
754 ha->outstanding_cmds[handle] = sp;
755 sp->ha = ha;
756 sp->cmd->host_scribble = (unsigned char *)(unsigned long)handle;
757 ha->req_q_cnt -= req_cnt;
758
759 cmd_pkt = (struct cmd_type_7 *)ha->request_ring_ptr;
760 cmd_pkt->handle = handle;
761
762 /* Zero out remaining portion of packet. */
James Bottomley72df8322005-10-28 14:41:19 -0500763 /* tagged queuing modifier -- default is TSK_SIMPLE (0). */
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700764 clr_ptr = (uint32_t *)cmd_pkt + 2;
765 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
766 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
767
768 /* Set NPORT-ID and LUN number*/
769 cmd_pkt->nport_handle = cpu_to_le16(sp->fcport->loop_id);
770 cmd_pkt->port_id[0] = sp->fcport->d_id.b.al_pa;
771 cmd_pkt->port_id[1] = sp->fcport->d_id.b.area;
772 cmd_pkt->port_id[2] = sp->fcport->d_id.b.domain;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700773 cmd_pkt->vp_index = sp->fcport->vp_idx;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700774
Andrew Vasquez661c3f62005-10-27 11:09:58 -0700775 int_to_scsilun(sp->cmd->device->lun, &cmd_pkt->lun);
andrew.vasquez@qlogic.com0d4be122006-02-07 08:45:35 -0800776 host_to_fcp_swap((uint8_t *)&cmd_pkt->lun, sizeof(cmd_pkt->lun));
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700777
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700778 /* Load SCSI command packet. */
779 memcpy(cmd_pkt->fcp_cdb, cmd->cmnd, cmd->cmd_len);
780 host_to_fcp_swap(cmd_pkt->fcp_cdb, sizeof(cmd_pkt->fcp_cdb));
781
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900782 cmd_pkt->byte_count = cpu_to_le32((uint32_t)scsi_bufflen(cmd));
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700783
784 /* Build IOCB segments */
785 qla24xx_build_scsi_iocbs(sp, cmd_pkt, tot_dsds);
786
787 /* Set total data segment count. */
788 cmd_pkt->entry_count = (uint8_t)req_cnt;
789 wmb();
790
791 /* Adjust ring index. */
792 ha->req_ring_index++;
793 if (ha->req_ring_index == ha->request_q_length) {
794 ha->req_ring_index = 0;
795 ha->request_ring_ptr = ha->request_ring;
796 } else
797 ha->request_ring_ptr++;
798
799 sp->flags |= SRB_DMA_VALID;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700800
801 /* Set chip new ring index. */
802 WRT_REG_DWORD(&reg->req_q_in, ha->req_ring_index);
803 RD_REG_DWORD_RELAXED(&reg->req_q_in); /* PCI Posting. */
804
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700805 /* Manage unprocessed RIO/ZIO commands in response queue. */
806 if (ha->flags.process_response_queue &&
807 ha->response_ring_ptr->signature != RESPONSE_PROCESSED)
808 qla24xx_process_response_queue(ha);
809
Seokmann Ju246de422008-07-10 16:55:55 -0700810 spin_unlock_irqrestore(&pha->hardware_lock, flags);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700811 return QLA_SUCCESS;
812
813queuing_error:
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900814 if (tot_dsds)
815 scsi_dma_unmap(cmd);
816
Seokmann Ju246de422008-07-10 16:55:55 -0700817 spin_unlock_irqrestore(&pha->hardware_lock, flags);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700818
819 return QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}