blob: c5ccac0bef7698db6a2947b03f9ff37d6508fc0b [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
Anirban Chakraborty73208df2008-12-09 16:45:39 -080014static 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 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -070018static void qla25xx_set_que(srb_t *, struct rsp_que **);
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/**
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
Harish Zunjarrao49fd4622008-09-11 21:22:47 -070026qla2x00_get_cmd_direction(srb_t *sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
28 uint16_t cflags;
29
30 cflags = 0;
31
32 /* Set transfer direction */
Harish Zunjarrao49fd4622008-09-11 21:22:47 -070033 if (sp->cmd->sc_data_direction == DMA_TO_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 cflags = CF_WRITE;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -080035 sp->fcport->vha->hw->qla_stats.output_bytes +=
Harish Zunjarrao49fd4622008-09-11 21:22:47 -070036 scsi_bufflen(sp->cmd);
37 } else if (sp->cmd->sc_data_direction == DMA_FROM_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 cflags = CF_READ;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -080039 sp->fcport->vha->hw->qla_stats.input_bytes +=
Harish Zunjarrao49fd4622008-09-11 21:22:47 -070040 scsi_bufflen(sp->cmd);
41 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 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 *
Anirban Chakraborty67c2e932009-04-06 22:33:42 -070096qla2x00_prep_cont_type0_iocb(struct scsi_qla_host *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 cont_entry_t *cont_pkt;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -070099 struct req_que *req = vha->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /* Adjust ring index. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800101 req->ring_index++;
102 if (req->ring_index == req->length) {
103 req->ring_index = 0;
104 req->ring_ptr = req->ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800106 req->ring_ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800109 cont_pkt = (cont_entry_t *)req->ring_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
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 *
Anirban Chakraborty67c2e932009-04-06 22:33:42 -0700125qla2x00_prep_cont_type1_iocb(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 cont_a64_entry_t *cont_pkt;
128
Anirban Chakraborty67c2e932009-04-06 22:33:42 -0700129 struct req_que *req = vha->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /* Adjust ring index. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800131 req->ring_index++;
132 if (req->ring_index == req->length) {
133 req->ring_index = 0;
134 req->ring_ptr = req->ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800136 req->ring_ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800139 cont_pkt = (cont_a64_entry_t *)req->ring_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /* Load packet defaults. */
142 *((uint32_t *)(&cont_pkt->entry_type)) =
143 __constant_cpu_to_le32(CONTINUE_A64_TYPE);
144
145 return (cont_pkt);
146}
147
148/**
149 * qla2x00_build_scsi_iocbs_32() - Build IOCB command utilizing 32bit
150 * capable IOCB types.
151 *
152 * @sp: SRB command to process
153 * @cmd_pkt: Command type 2 IOCB
154 * @tot_dsds: Total number of segments to transfer
155 */
156void qla2x00_build_scsi_iocbs_32(srb_t *sp, cmd_entry_t *cmd_pkt,
157 uint16_t tot_dsds)
158{
159 uint16_t avail_dsds;
160 uint32_t *cur_dsd;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800161 scsi_qla_host_t *vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct scsi_cmnd *cmd;
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900163 struct scatterlist *sg;
164 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 cmd = sp->cmd;
167
168 /* Update entry type to indicate Command Type 2 IOCB */
169 *((uint32_t *)(&cmd_pkt->entry_type)) =
170 __constant_cpu_to_le32(COMMAND_TYPE);
171
172 /* No data transfer */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900173 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
175 return;
176 }
177
Andrew Vasquez444786d2009-01-05 11:18:10 -0800178 vha = sp->fcport->vha;
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700179 cmd_pkt->control_flags |= cpu_to_le16(qla2x00_get_cmd_direction(sp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 /* Three DSDs are available in the Command Type 2 IOCB */
182 avail_dsds = 3;
183 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
184
185 /* Load data segments */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900186 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
187 cont_entry_t *cont_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900189 /* Allocate additional continuation packets? */
190 if (avail_dsds == 0) {
191 /*
192 * Seven DSDs are available in the Continuation
193 * Type 0 IOCB.
194 */
Anirban Chakraborty67c2e932009-04-06 22:33:42 -0700195 cont_pkt = qla2x00_prep_cont_type0_iocb(vha);
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900196 cur_dsd = (uint32_t *)&cont_pkt->dseg_0_address;
197 avail_dsds = 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900199
200 *cur_dsd++ = cpu_to_le32(sg_dma_address(sg));
201 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
202 avail_dsds--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
204}
205
206/**
207 * qla2x00_build_scsi_iocbs_64() - Build IOCB command utilizing 64bit
208 * capable IOCB types.
209 *
210 * @sp: SRB command to process
211 * @cmd_pkt: Command type 3 IOCB
212 * @tot_dsds: Total number of segments to transfer
213 */
214void qla2x00_build_scsi_iocbs_64(srb_t *sp, cmd_entry_t *cmd_pkt,
215 uint16_t tot_dsds)
216{
217 uint16_t avail_dsds;
218 uint32_t *cur_dsd;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800219 scsi_qla_host_t *vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 struct scsi_cmnd *cmd;
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900221 struct scatterlist *sg;
222 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 cmd = sp->cmd;
225
226 /* Update entry type to indicate Command Type 3 IOCB */
227 *((uint32_t *)(&cmd_pkt->entry_type)) =
228 __constant_cpu_to_le32(COMMAND_A64_TYPE);
229
230 /* No data transfer */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900231 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
233 return;
234 }
235
Andrew Vasquez444786d2009-01-05 11:18:10 -0800236 vha = sp->fcport->vha;
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700237 cmd_pkt->control_flags |= cpu_to_le16(qla2x00_get_cmd_direction(sp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /* Two DSDs are available in the Command Type 3 IOCB */
240 avail_dsds = 2;
241 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
242
243 /* Load data segments */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900244 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
245 dma_addr_t sle_dma;
246 cont_a64_entry_t *cont_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900248 /* Allocate additional continuation packets? */
249 if (avail_dsds == 0) {
250 /*
251 * Five DSDs are available in the Continuation
252 * Type 1 IOCB.
253 */
Anirban Chakraborty67c2e932009-04-06 22:33:42 -0700254 cont_pkt = qla2x00_prep_cont_type1_iocb(vha);
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900255 cur_dsd = (uint32_t *)cont_pkt->dseg_0_address;
256 avail_dsds = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900258
259 sle_dma = sg_dma_address(sg);
260 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
261 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
262 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
263 avail_dsds--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265}
266
267/**
268 * qla2x00_start_scsi() - Send a SCSI command to the ISP
269 * @sp: command to send to the ISP
270 *
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -0700271 * Returns non-zero if a failure occurred, else zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
273int
274qla2x00_start_scsi(srb_t *sp)
275{
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900276 int ret, nseg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800278 scsi_qla_host_t *vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct scsi_cmnd *cmd;
280 uint32_t *clr_ptr;
281 uint32_t index;
282 uint32_t handle;
283 cmd_entry_t *cmd_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 uint16_t cnt;
285 uint16_t req_cnt;
286 uint16_t tot_dsds;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700287 struct device_reg_2xxx __iomem *reg;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800288 struct qla_hw_data *ha;
289 struct req_que *req;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800290 struct rsp_que *rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 /* Setup device pointers. */
293 ret = 0;
Andrew Vasquez444786d2009-01-05 11:18:10 -0800294 vha = sp->fcport->vha;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800295 ha = vha->hw;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700296 reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 cmd = sp->cmd;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800298 req = ha->req_q_map[0];
299 rsp = ha->rsp_q_map[0];
83021922005-04-17 15:10:41 -0500300 /* So we know we haven't pci_map'ed anything yet */
301 tot_dsds = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /* Send marker if required */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800304 if (vha->marker_needed != 0) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800305 if (qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL)
306 != QLA_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return (QLA_FUNCTION_FAILED);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800308 vha->marker_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310
311 /* Acquire ring specific lock */
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -0700312 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* Check for room in outstanding command list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800315 handle = req->current_outstanding_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
317 handle++;
318 if (handle == MAX_OUTSTANDING_COMMANDS)
319 handle = 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800320 if (!req->outstanding_cmds[handle])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 break;
322 }
323 if (index == MAX_OUTSTANDING_COMMANDS)
324 goto queuing_error;
325
83021922005-04-17 15:10:41 -0500326 /* Map the sg table so we have an accurate count of sg entries needed */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700327 if (scsi_sg_count(cmd)) {
328 nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
329 scsi_sg_count(cmd), cmd->sc_data_direction);
330 if (unlikely(!nseg))
331 goto queuing_error;
332 } else
333 nseg = 0;
334
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900335 tot_dsds = nseg;
83021922005-04-17 15:10:41 -0500336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* Calculate the number of request entries needed. */
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700338 req_cnt = ha->isp_ops->calc_req_entries(tot_dsds);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800339 if (req->cnt < (req_cnt + 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 cnt = RD_REG_WORD_RELAXED(ISP_REQ_Q_OUT(ha, reg));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800341 if (req->ring_index < cnt)
342 req->cnt = cnt - req->ring_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800344 req->cnt = req->length -
345 (req->ring_index - cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800347 if (req->cnt < (req_cnt + 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 goto queuing_error;
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /* Build command packet */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800351 req->current_outstanding_cmd = handle;
352 req->outstanding_cmds[handle] = sp;
Andrew Vasquezcf53b062009-08-20 11:06:04 -0700353 sp->handle = handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 sp->cmd->host_scribble = (unsigned char *)(unsigned long)handle;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800355 req->cnt -= req_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800357 cmd_pkt = (cmd_entry_t *)req->ring_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 cmd_pkt->handle = handle;
359 /* Zero out remaining portion of packet. */
360 clr_ptr = (uint32_t *)cmd_pkt + 2;
361 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
362 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
363
bdf79622005-04-17 15:06:53 -0500364 /* Set target ID and LUN number*/
365 SET_TARGET_ID(ha, cmd_pkt->target, sp->fcport->loop_id);
366 cmd_pkt->lun = cpu_to_le16(sp->cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* Update tagged queuing modifier */
369 cmd_pkt->control_flags = __constant_cpu_to_le16(CF_SIMPLE_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /* Load SCSI command packet. */
372 memcpy(cmd_pkt->scsi_cdb, cmd->cmnd, cmd->cmd_len);
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900373 cmd_pkt->byte_count = cpu_to_le32((uint32_t)scsi_bufflen(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /* Build IOCB segments */
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700376 ha->isp_ops->build_iocbs(sp, cmd_pkt, tot_dsds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 /* Set total data segment count. */
379 cmd_pkt->entry_count = (uint8_t)req_cnt;
380 wmb();
381
382 /* Adjust ring index. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800383 req->ring_index++;
384 if (req->ring_index == req->length) {
385 req->ring_index = 0;
386 req->ring_ptr = req->ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 } else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800388 req->ring_ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 sp->flags |= SRB_DMA_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 /* Set chip new ring index. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800393 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), req->ring_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, reg)); /* PCI Posting. */
395
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700396 /* Manage unprocessed RIO/ZIO commands in response queue. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800397 if (vha->flags.process_response_queue &&
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800398 rsp->ring_ptr->signature != RESPONSE_PROCESSED)
399 qla2x00_process_response_queue(rsp);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700400
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -0700401 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return (QLA_SUCCESS);
403
404queuing_error:
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900405 if (tot_dsds)
406 scsi_dma_unmap(cmd);
407
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -0700408 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 return (QLA_FUNCTION_FAILED);
411}
412
413/**
414 * qla2x00_marker() - Send a marker IOCB to the firmware.
415 * @ha: HA context
416 * @loop_id: loop ID
417 * @lun: LUN
418 * @type: marker modifier
419 *
420 * Can be called from both normal and interrupt context.
421 *
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -0700422 * Returns non-zero if a failure occurred, else zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700424int
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800425__qla2x00_marker(struct scsi_qla_host *vha, struct req_que *req,
426 struct rsp_que *rsp, uint16_t loop_id,
427 uint16_t lun, uint8_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700429 mrk_entry_t *mrk;
430 struct mrk_entry_24xx *mrk24;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800431 struct qla_hw_data *ha = vha->hw;
432 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700434 mrk24 = NULL;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800435 mrk = (mrk_entry_t *)qla2x00_req_pkt(vha, req, rsp);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700436 if (mrk == NULL) {
437 DEBUG2_3(printk("%s(%ld): failed to allocate Marker IOCB.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800438 __func__, base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 return (QLA_FUNCTION_FAILED);
441 }
442
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700443 mrk->entry_type = MARKER_TYPE;
444 mrk->modifier = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (type != MK_SYNC_ALL) {
Andrew Vasqueze4289242007-07-19 15:05:56 -0700446 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700447 mrk24 = (struct mrk_entry_24xx *) mrk;
448 mrk24->nport_handle = cpu_to_le16(loop_id);
449 mrk24->lun[1] = LSB(lun);
450 mrk24->lun[2] = MSB(lun);
Shyam Sundarb797b6d2006-08-01 13:48:13 -0700451 host_to_fcp_swap(mrk24->lun, sizeof(mrk24->lun));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800452 mrk24->vp_index = vha->vp_idx;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700453 mrk24->handle = MAKE_HANDLE(req->id, mrk24->handle);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700454 } else {
455 SET_TARGET_ID(ha, mrk->target, loop_id);
456 mrk->lun = cpu_to_le16(lun);
457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 wmb();
460
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800461 qla2x00_isp_cmd(vha, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 return (QLA_SUCCESS);
464}
465
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700466int
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800467qla2x00_marker(struct scsi_qla_host *vha, struct req_que *req,
468 struct rsp_que *rsp, uint16_t loop_id, uint16_t lun,
469 uint8_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 int ret;
472 unsigned long flags = 0;
473
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800474 spin_lock_irqsave(&vha->hw->hardware_lock, flags);
475 ret = __qla2x00_marker(vha, req, rsp, loop_id, lun, type);
476 spin_unlock_irqrestore(&vha->hw->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 return (ret);
479}
480
481/**
482 * qla2x00_req_pkt() - Retrieve a request packet from the request ring.
483 * @ha: HA context
484 *
485 * Note: The caller must hold the hardware lock before calling this routine.
486 *
487 * Returns NULL if function failed, else, a pointer to the request packet.
488 */
489static request_t *
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800490qla2x00_req_pkt(struct scsi_qla_host *vha, struct req_que *req,
491 struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800493 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800494 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 request_t *pkt = NULL;
496 uint16_t cnt;
497 uint32_t *dword_ptr;
498 uint32_t timer;
499 uint16_t req_cnt = 1;
500
501 /* Wait 1 second for slot. */
502 for (timer = HZ; timer; timer--) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800503 if ((req_cnt + 2) >= req->cnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* Calculate number of free request entries. */
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800505 if (ha->mqenable)
506 cnt = (uint16_t)
507 RD_REG_DWORD(&reg->isp25mq.req_q_out);
508 else {
509 if (IS_FWI2_CAPABLE(ha))
510 cnt = (uint16_t)RD_REG_DWORD(
511 &reg->isp24.req_q_out);
512 else
513 cnt = qla2x00_debounce_register(
514 ISP_REQ_Q_OUT(ha, &reg->isp));
515 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800516 if (req->ring_index < cnt)
517 req->cnt = cnt - req->ring_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800519 req->cnt = req->length -
520 (req->ring_index - cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522 /* If room for request in request ring. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800523 if ((req_cnt + 2) < req->cnt) {
524 req->cnt--;
525 pkt = req->ring_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 /* Zero out packet. */
528 dword_ptr = (uint32_t *)pkt;
529 for (cnt = 0; cnt < REQUEST_ENTRY_SIZE / 4; cnt++)
530 *dword_ptr++ = 0;
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* Set entry count. */
533 pkt->entry_count = 1;
534
535 break;
536 }
537
538 /* Release ring specific lock */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800539 spin_unlock_irq(&ha->hardware_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 udelay(2); /* 2 us */
542
543 /* Check for pending interrupts. */
544 /* During init we issue marker directly */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800545 if (!vha->marker_needed && !vha->flags.init_done)
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800546 qla2x00_poll(rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 spin_lock_irq(&ha->hardware_lock);
548 }
549 if (!pkt) {
550 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
551 }
552
553 return (pkt);
554}
555
556/**
557 * qla2x00_isp_cmd() - Modify the request ring pointer.
558 * @ha: HA context
559 *
560 * Note: The caller must hold the hardware lock before calling this routine.
561 */
Adrian Bunk413975a2006-06-30 02:33:06 -0700562static void
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800563qla2x00_isp_cmd(struct scsi_qla_host *vha, struct req_que *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800565 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800566 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800567 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 DEBUG5(printk("%s(): IOCB data:\n", __func__));
570 DEBUG5(qla2x00_dump_buffer(
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800571 (uint8_t *)req->ring_ptr, REQUEST_ENTRY_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /* Adjust ring index. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800574 req->ring_index++;
575 if (req->ring_index == req->length) {
576 req->ring_index = 0;
577 req->ring_ptr = req->ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 } else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800579 req->ring_ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 /* Set chip new ring index. */
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800582 if (ha->mqenable) {
583 WRT_REG_DWORD(&reg->isp25mq.req_q_in, req->ring_index);
584 RD_REG_DWORD(&ioreg->hccr);
585 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800586 else {
587 if (IS_FWI2_CAPABLE(ha)) {
588 WRT_REG_DWORD(&reg->isp24.req_q_in, req->ring_index);
589 RD_REG_DWORD_RELAXED(&reg->isp24.req_q_in);
590 } else {
591 WRT_REG_WORD(ISP_REQ_Q_IN(ha, &reg->isp),
592 req->ring_index);
593 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, &reg->isp));
594 }
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700595 }
596
597}
598
599/**
600 * qla24xx_calc_iocbs() - Determine number of Command Type 3 and
601 * Continuation Type 1 IOCBs to allocate.
602 *
603 * @dsds: number of data segment decriptors needed
604 *
605 * Returns the number of IOCB entries needed to store @dsds.
606 */
607static inline uint16_t
608qla24xx_calc_iocbs(uint16_t dsds)
609{
610 uint16_t iocbs;
611
612 iocbs = 1;
613 if (dsds > 1) {
614 iocbs += (dsds - 1) / 5;
615 if ((dsds - 1) % 5)
616 iocbs++;
617 }
618 return iocbs;
619}
620
621/**
622 * qla24xx_build_scsi_iocbs() - Build IOCB command utilizing Command Type 7
623 * IOCB types.
624 *
625 * @sp: SRB command to process
626 * @cmd_pkt: Command type 3 IOCB
627 * @tot_dsds: Total number of segments to transfer
628 */
629static inline void
630qla24xx_build_scsi_iocbs(srb_t *sp, struct cmd_type_7 *cmd_pkt,
631 uint16_t tot_dsds)
632{
633 uint16_t avail_dsds;
634 uint32_t *cur_dsd;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800635 scsi_qla_host_t *vha;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700636 struct scsi_cmnd *cmd;
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900637 struct scatterlist *sg;
638 int i;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800639 struct req_que *req;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700640
641 cmd = sp->cmd;
642
643 /* Update entry type to indicate Command Type 3 IOCB */
644 *((uint32_t *)(&cmd_pkt->entry_type)) =
645 __constant_cpu_to_le32(COMMAND_TYPE_7);
646
647 /* No data transfer */
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900648 if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700649 cmd_pkt->byte_count = __constant_cpu_to_le32(0);
650 return;
651 }
652
Andrew Vasquez444786d2009-01-05 11:18:10 -0800653 vha = sp->fcport->vha;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -0700654 req = vha->req;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700655
656 /* Set transfer direction */
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700657 if (cmd->sc_data_direction == DMA_TO_DEVICE) {
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700658 cmd_pkt->task_mgmt_flags =
659 __constant_cpu_to_le16(TMF_WRITE_DATA);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800660 sp->fcport->vha->hw->qla_stats.output_bytes +=
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700661 scsi_bufflen(sp->cmd);
662 } else if (cmd->sc_data_direction == DMA_FROM_DEVICE) {
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700663 cmd_pkt->task_mgmt_flags =
664 __constant_cpu_to_le16(TMF_READ_DATA);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800665 sp->fcport->vha->hw->qla_stats.input_bytes +=
Harish Zunjarrao49fd4622008-09-11 21:22:47 -0700666 scsi_bufflen(sp->cmd);
667 }
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700668
669 /* One DSD is available in the Command Type 3 IOCB */
670 avail_dsds = 1;
671 cur_dsd = (uint32_t *)&cmd_pkt->dseg_0_address;
672
673 /* Load data segments */
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700674
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900675 scsi_for_each_sg(cmd, sg, tot_dsds, i) {
676 dma_addr_t sle_dma;
677 cont_a64_entry_t *cont_pkt;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700678
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900679 /* Allocate additional continuation packets? */
680 if (avail_dsds == 0) {
681 /*
682 * Five DSDs are available in the Continuation
683 * Type 1 IOCB.
684 */
Anirban Chakraborty67c2e932009-04-06 22:33:42 -0700685 cont_pkt = qla2x00_prep_cont_type1_iocb(vha);
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900686 cur_dsd = (uint32_t *)cont_pkt->dseg_0_address;
687 avail_dsds = 5;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700688 }
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900689
690 sle_dma = sg_dma_address(sg);
691 *cur_dsd++ = cpu_to_le32(LSD(sle_dma));
692 *cur_dsd++ = cpu_to_le32(MSD(sle_dma));
693 *cur_dsd++ = cpu_to_le32(sg_dma_len(sg));
694 avail_dsds--;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700695 }
696}
697
698
699/**
700 * qla24xx_start_scsi() - Send a SCSI command to the ISP
701 * @sp: command to send to the ISP
702 *
Bjorn Helgaascc3ef7b2008-09-11 21:22:51 -0700703 * Returns non-zero if a failure occurred, else zero.
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700704 */
705int
706qla24xx_start_scsi(srb_t *sp)
707{
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900708 int ret, nseg;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700709 unsigned long flags;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700710 uint32_t *clr_ptr;
711 uint32_t index;
712 uint32_t handle;
713 struct cmd_type_7 *cmd_pkt;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700714 uint16_t cnt;
715 uint16_t req_cnt;
716 uint16_t tot_dsds;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800717 struct req_que *req = NULL;
718 struct rsp_que *rsp = NULL;
719 struct scsi_cmnd *cmd = sp->cmd;
Andrew Vasquez444786d2009-01-05 11:18:10 -0800720 struct scsi_qla_host *vha = sp->fcport->vha;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800721 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700722
723 /* Setup device pointers. */
724 ret = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800725
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -0700726 qla25xx_set_que(sp, &rsp);
727 req = vha->req;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800728
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700729 /* So we know we haven't pci_map'ed anything yet */
730 tot_dsds = 0;
731
732 /* Send marker if required */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800733 if (vha->marker_needed != 0) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800734 if (qla2x00_marker(vha, req, rsp, 0, 0, MK_SYNC_ALL)
735 != QLA_SUCCESS)
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700736 return QLA_FUNCTION_FAILED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800737 vha->marker_needed = 0;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700738 }
739
740 /* Acquire ring specific lock */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800741 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700742
743 /* Check for room in outstanding command list. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800744 handle = req->current_outstanding_cmd;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700745 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
746 handle++;
747 if (handle == MAX_OUTSTANDING_COMMANDS)
748 handle = 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800749 if (!req->outstanding_cmds[handle])
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700750 break;
751 }
752 if (index == MAX_OUTSTANDING_COMMANDS)
753 goto queuing_error;
754
755 /* Map the sg table so we have an accurate count of sg entries needed */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700756 if (scsi_sg_count(cmd)) {
757 nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
758 scsi_sg_count(cmd), cmd->sc_data_direction);
759 if (unlikely(!nseg))
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700760 goto queuing_error;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700761 } else
762 nseg = 0;
763
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900764 tot_dsds = nseg;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700765
766 req_cnt = qla24xx_calc_iocbs(tot_dsds);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800767 if (req->cnt < (req_cnt + 2)) {
Andrew Vasquez08029992009-03-24 09:07:55 -0700768 cnt = RD_REG_DWORD_RELAXED(req->req_q_out);
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800769
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800770 if (req->ring_index < cnt)
771 req->cnt = cnt - req->ring_index;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700772 else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800773 req->cnt = req->length -
774 (req->ring_index - cnt);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700775 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800776 if (req->cnt < (req_cnt + 2))
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700777 goto queuing_error;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700778
779 /* Build command packet. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800780 req->current_outstanding_cmd = handle;
781 req->outstanding_cmds[handle] = sp;
Andrew Vasquezcf53b062009-08-20 11:06:04 -0700782 sp->handle = handle;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700783 sp->cmd->host_scribble = (unsigned char *)(unsigned long)handle;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800784 req->cnt -= req_cnt;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700785
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800786 cmd_pkt = (struct cmd_type_7 *)req->ring_ptr;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700787 cmd_pkt->handle = MAKE_HANDLE(req->id, handle);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700788
789 /* Zero out remaining portion of packet. */
James Bottomley72df8322005-10-28 14:41:19 -0500790 /* tagged queuing modifier -- default is TSK_SIMPLE (0). */
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700791 clr_ptr = (uint32_t *)cmd_pkt + 2;
792 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
793 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
794
795 /* Set NPORT-ID and LUN number*/
796 cmd_pkt->nport_handle = cpu_to_le16(sp->fcport->loop_id);
797 cmd_pkt->port_id[0] = sp->fcport->d_id.b.al_pa;
798 cmd_pkt->port_id[1] = sp->fcport->d_id.b.area;
799 cmd_pkt->port_id[2] = sp->fcport->d_id.b.domain;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700800 cmd_pkt->vp_index = sp->fcport->vp_idx;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700801
Andrew Vasquez661c3f62005-10-27 11:09:58 -0700802 int_to_scsilun(sp->cmd->device->lun, &cmd_pkt->lun);
andrew.vasquez@qlogic.com0d4be122006-02-07 08:45:35 -0800803 host_to_fcp_swap((uint8_t *)&cmd_pkt->lun, sizeof(cmd_pkt->lun));
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700804
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700805 /* Load SCSI command packet. */
806 memcpy(cmd_pkt->fcp_cdb, cmd->cmnd, cmd->cmd_len);
807 host_to_fcp_swap(cmd_pkt->fcp_cdb, sizeof(cmd_pkt->fcp_cdb));
808
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900809 cmd_pkt->byte_count = cpu_to_le32((uint32_t)scsi_bufflen(cmd));
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700810
811 /* Build IOCB segments */
812 qla24xx_build_scsi_iocbs(sp, cmd_pkt, tot_dsds);
813
814 /* Set total data segment count. */
815 cmd_pkt->entry_count = (uint8_t)req_cnt;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700816 /* Specify response queue number where completion should happen */
817 cmd_pkt->entry_status = (uint8_t) rsp->id;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700818 wmb();
819
820 /* Adjust ring index. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800821 req->ring_index++;
822 if (req->ring_index == req->length) {
823 req->ring_index = 0;
824 req->ring_ptr = req->ring;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700825 } else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800826 req->ring_ptr++;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700827
828 sp->flags |= SRB_DMA_VALID;
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700829
830 /* Set chip new ring index. */
Andrew Vasquez08029992009-03-24 09:07:55 -0700831 WRT_REG_DWORD(req->req_q_in, req->ring_index);
832 RD_REG_DWORD_RELAXED(&ha->iobase->isp24.hccr);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700833
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700834 /* Manage unprocessed RIO/ZIO commands in response queue. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800835 if (vha->flags.process_response_queue &&
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800836 rsp->ring_ptr->signature != RESPONSE_PROCESSED)
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700837 qla24xx_process_response_queue(vha, rsp);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700838
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800839 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700840 return QLA_SUCCESS;
841
842queuing_error:
FUJITA Tomonori385d70b2007-05-26 01:55:38 +0900843 if (tot_dsds)
844 scsi_dma_unmap(cmd);
845
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800846 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -0700847
848 return QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700850
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -0700851static void qla25xx_set_que(srb_t *sp, struct rsp_que **rsp)
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700852{
853 struct scsi_cmnd *cmd = sp->cmd;
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700854 struct qla_hw_data *ha = sp->fcport->vha->hw;
855 int affinity = cmd->request->cpu;
856
Anirban Chakraborty7163ea82009-08-05 09:18:40 -0700857 if (ha->flags.cpu_affinity_enabled && affinity >= 0 &&
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -0700858 affinity < ha->max_rsp_queues - 1)
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700859 *rsp = ha->rsp_q_map[affinity + 1];
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -0700860 else
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700861 *rsp = ha->rsp_q_map[0];
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700862}
Andrew Vasquezac280b62009-08-20 11:06:05 -0700863
864/* Generic Control-SRB manipulation functions. */
865
866static void *
867qla2x00_alloc_iocbs(srb_t *sp)
868{
869 scsi_qla_host_t *vha = sp->fcport->vha;
870 struct qla_hw_data *ha = vha->hw;
871 struct req_que *req = ha->req_q_map[0];
872 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
873 uint32_t index, handle;
874 request_t *pkt;
875 uint16_t cnt, req_cnt;
876
877 pkt = NULL;
878 req_cnt = 1;
879
880 /* Check for room in outstanding command list. */
881 handle = req->current_outstanding_cmd;
882 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
883 handle++;
884 if (handle == MAX_OUTSTANDING_COMMANDS)
885 handle = 1;
886 if (!req->outstanding_cmds[handle])
887 break;
888 }
889 if (index == MAX_OUTSTANDING_COMMANDS)
890 goto queuing_error;
891
892 /* Check for room on request queue. */
893 if (req->cnt < req_cnt) {
894 if (ha->mqenable)
895 cnt = RD_REG_DWORD(&reg->isp25mq.req_q_out);
896 else if (IS_FWI2_CAPABLE(ha))
897 cnt = RD_REG_DWORD(&reg->isp24.req_q_out);
898 else
899 cnt = qla2x00_debounce_register(
900 ISP_REQ_Q_OUT(ha, &reg->isp));
901
902 if (req->ring_index < cnt)
903 req->cnt = cnt - req->ring_index;
904 else
905 req->cnt = req->length -
906 (req->ring_index - cnt);
907 }
908 if (req->cnt < req_cnt)
909 goto queuing_error;
910
911 /* Prep packet */
912 req->current_outstanding_cmd = handle;
913 req->outstanding_cmds[handle] = sp;
914 req->cnt -= req_cnt;
915
916 pkt = req->ring_ptr;
917 memset(pkt, 0, REQUEST_ENTRY_SIZE);
918 pkt->entry_count = req_cnt;
919 pkt->handle = handle;
920 sp->handle = handle;
921
922queuing_error:
923 return pkt;
924}
925
926static void
927qla2x00_start_iocbs(srb_t *sp)
928{
929 struct qla_hw_data *ha = sp->fcport->vha->hw;
930 struct req_que *req = ha->req_q_map[0];
931 device_reg_t __iomem *reg = ISP_QUE_REG(ha, req->id);
932 struct device_reg_2xxx __iomem *ioreg = &ha->iobase->isp;
933
934 /* Adjust ring index. */
935 req->ring_index++;
936 if (req->ring_index == req->length) {
937 req->ring_index = 0;
938 req->ring_ptr = req->ring;
939 } else
940 req->ring_ptr++;
941
942 /* Set chip new ring index. */
943 if (ha->mqenable) {
944 WRT_REG_DWORD(&reg->isp25mq.req_q_in, req->ring_index);
945 RD_REG_DWORD(&ioreg->hccr);
946 } else if (IS_FWI2_CAPABLE(ha)) {
947 WRT_REG_DWORD(&reg->isp24.req_q_in, req->ring_index);
948 RD_REG_DWORD_RELAXED(&reg->isp24.req_q_in);
949 } else {
950 WRT_REG_WORD(ISP_REQ_Q_IN(ha, &reg->isp), req->ring_index);
951 RD_REG_WORD_RELAXED(ISP_REQ_Q_IN(ha, &reg->isp));
952 }
953}
954
955static void
956qla24xx_login_iocb(srb_t *sp, struct logio_entry_24xx *logio)
957{
958 struct srb_logio *lio = sp->ctx;
959
960 logio->entry_type = LOGINOUT_PORT_IOCB_TYPE;
961 logio->control_flags = cpu_to_le16(LCF_COMMAND_PLOGI);
962 if (lio->flags & SRB_LOGIN_COND_PLOGI)
963 logio->control_flags |= cpu_to_le16(LCF_COND_PLOGI);
964 if (lio->flags & SRB_LOGIN_SKIP_PRLI)
965 logio->control_flags |= cpu_to_le16(LCF_SKIP_PRLI);
966 logio->nport_handle = cpu_to_le16(sp->fcport->loop_id);
967 logio->port_id[0] = sp->fcport->d_id.b.al_pa;
968 logio->port_id[1] = sp->fcport->d_id.b.area;
969 logio->port_id[2] = sp->fcport->d_id.b.domain;
970 logio->vp_index = sp->fcport->vp_idx;
971}
972
973static void
974qla2x00_login_iocb(srb_t *sp, struct mbx_entry *mbx)
975{
976 struct qla_hw_data *ha = sp->fcport->vha->hw;
977 struct srb_logio *lio = sp->ctx;
978 uint16_t opts;
979
980 mbx->entry_type = MBX_IOCB_TYPE;;
981 SET_TARGET_ID(ha, mbx->loop_id, sp->fcport->loop_id);
982 mbx->mb0 = cpu_to_le16(MBC_LOGIN_FABRIC_PORT);
983 opts = lio->flags & SRB_LOGIN_COND_PLOGI ? BIT_0: 0;
984 opts |= lio->flags & SRB_LOGIN_SKIP_PRLI ? BIT_1: 0;
985 if (HAS_EXTENDED_IDS(ha)) {
986 mbx->mb1 = cpu_to_le16(sp->fcport->loop_id);
987 mbx->mb10 = cpu_to_le16(opts);
988 } else {
989 mbx->mb1 = cpu_to_le16((sp->fcport->loop_id << 8) | opts);
990 }
991 mbx->mb2 = cpu_to_le16(sp->fcport->d_id.b.domain);
992 mbx->mb3 = cpu_to_le16(sp->fcport->d_id.b.area << 8 |
993 sp->fcport->d_id.b.al_pa);
994 mbx->mb9 = cpu_to_le16(sp->fcport->vp_idx);
995}
996
997static void
998qla24xx_logout_iocb(srb_t *sp, struct logio_entry_24xx *logio)
999{
1000 logio->entry_type = LOGINOUT_PORT_IOCB_TYPE;
1001 logio->control_flags =
1002 cpu_to_le16(LCF_COMMAND_LOGO|LCF_IMPL_LOGO);
1003 logio->nport_handle = cpu_to_le16(sp->fcport->loop_id);
1004 logio->port_id[0] = sp->fcport->d_id.b.al_pa;
1005 logio->port_id[1] = sp->fcport->d_id.b.area;
1006 logio->port_id[2] = sp->fcport->d_id.b.domain;
1007 logio->vp_index = sp->fcport->vp_idx;
1008}
1009
1010static void
1011qla2x00_logout_iocb(srb_t *sp, struct mbx_entry *mbx)
1012{
1013 struct qla_hw_data *ha = sp->fcport->vha->hw;
1014
1015 mbx->entry_type = MBX_IOCB_TYPE;;
1016 SET_TARGET_ID(ha, mbx->loop_id, sp->fcport->loop_id);
1017 mbx->mb0 = cpu_to_le16(MBC_LOGOUT_FABRIC_PORT);
1018 mbx->mb1 = HAS_EXTENDED_IDS(ha) ?
1019 cpu_to_le16(sp->fcport->loop_id):
1020 cpu_to_le16(sp->fcport->loop_id << 8);
1021 mbx->mb2 = cpu_to_le16(sp->fcport->d_id.b.domain);
1022 mbx->mb3 = cpu_to_le16(sp->fcport->d_id.b.area << 8 |
1023 sp->fcport->d_id.b.al_pa);
1024 mbx->mb9 = cpu_to_le16(sp->fcport->vp_idx);
1025 /* Implicit: mbx->mbx10 = 0. */
1026}
1027
1028int
1029qla2x00_start_sp(srb_t *sp)
1030{
1031 int rval;
1032 struct qla_hw_data *ha = sp->fcport->vha->hw;
1033 void *pkt;
1034 struct srb_ctx *ctx = sp->ctx;
1035 unsigned long flags;
1036
1037 rval = QLA_FUNCTION_FAILED;
1038 spin_lock_irqsave(&ha->hardware_lock, flags);
1039 pkt = qla2x00_alloc_iocbs(sp);
1040 if (!pkt)
1041 goto done;
1042
1043 rval = QLA_SUCCESS;
1044 switch (ctx->type) {
1045 case SRB_LOGIN_CMD:
1046 IS_FWI2_CAPABLE(ha) ?
1047 qla24xx_login_iocb(sp, pkt):
1048 qla2x00_login_iocb(sp, pkt);
1049 break;
1050 case SRB_LOGOUT_CMD:
1051 IS_FWI2_CAPABLE(ha) ?
1052 qla24xx_logout_iocb(sp, pkt):
1053 qla2x00_logout_iocb(sp, pkt);
1054 break;
1055 default:
1056 break;
1057 }
1058
1059 wmb();
1060 qla2x00_start_iocbs(sp);
1061done:
1062 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1063 return rval;
1064}