blob: fd6314abeb0b53e499ccd605803d39ffad823d5c [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
55
56#include "isci.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070057#include "task.h"
58#include "request.h"
59#include "sata.h"
60#include "scu_completion_codes.h"
Dan Williams5dec6f42011-05-10 02:28:49 -070061#include "scu_event_codes.h"
Dave Jiang2ec53eb2011-05-04 18:01:22 -070062#include "sas.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070063
Dan Williamsf1f52e72011-05-10 02:28:45 -070064/**
65 * This method returns the sgl element pair for the specificed sgl_pair index.
66 * @sci_req: This parameter specifies the IO request for which to retrieve
67 * the Scatter-Gather List element pair.
68 * @sgl_pair_index: This parameter specifies the index into the SGL element
69 * pair to be retrieved.
70 *
71 * This method returns a pointer to an struct scu_sgl_element_pair.
72 */
73static struct scu_sgl_element_pair *scic_sds_request_get_sgl_element_pair(
74 struct scic_sds_request *sci_req,
75 u32 sgl_pair_index
76 ) {
77 struct scu_task_context *task_context;
Dan Williams6f231dd2011-07-02 22:56:22 -070078
Dan Williamsf1f52e72011-05-10 02:28:45 -070079 task_context = (struct scu_task_context *)sci_req->task_context_buffer;
Dan Williams6f231dd2011-07-02 22:56:22 -070080
Dan Williamsf1f52e72011-05-10 02:28:45 -070081 if (sgl_pair_index == 0) {
82 return &task_context->sgl_pair_ab;
83 } else if (sgl_pair_index == 1) {
84 return &task_context->sgl_pair_cd;
Dan Williams6f231dd2011-07-02 22:56:22 -070085 }
86
Dan Williamsf1f52e72011-05-10 02:28:45 -070087 return &sci_req->sg_table[sgl_pair_index - 2];
Dan Williams6f231dd2011-07-02 22:56:22 -070088}
89
90/**
Dan Williamsf1f52e72011-05-10 02:28:45 -070091 * This function will build the SGL list for an IO request.
92 * @sci_req: This parameter specifies the IO request for which to build
93 * the Scatter-Gather List.
Dan Williams6f231dd2011-07-02 22:56:22 -070094 *
Dan Williams6f231dd2011-07-02 22:56:22 -070095 */
Dan Williams5dec6f42011-05-10 02:28:49 -070096static void scic_sds_request_build_sgl(struct scic_sds_request *sds_request)
Dan Williamsf1f52e72011-05-10 02:28:45 -070097{
98 struct isci_request *isci_request = sci_req_to_ireq(sds_request);
99 struct isci_host *isci_host = isci_request->isci_host;
100 struct sas_task *task = isci_request_access_task(isci_request);
101 struct scatterlist *sg = NULL;
102 dma_addr_t dma_addr;
103 u32 sg_idx = 0;
104 struct scu_sgl_element_pair *scu_sg = NULL;
105 struct scu_sgl_element_pair *prev_sg = NULL;
106
107 if (task->num_scatter > 0) {
108 sg = task->scatter;
109
110 while (sg) {
111 scu_sg = scic_sds_request_get_sgl_element_pair(
112 sds_request,
113 sg_idx);
114
115 SCU_SGL_COPY(scu_sg->A, sg);
116
117 sg = sg_next(sg);
118
119 if (sg) {
120 SCU_SGL_COPY(scu_sg->B, sg);
121 sg = sg_next(sg);
122 } else
123 SCU_SGL_ZERO(scu_sg->B);
124
125 if (prev_sg) {
126 dma_addr =
127 scic_io_request_get_dma_addr(
128 sds_request,
129 scu_sg);
130
131 prev_sg->next_pair_upper =
132 upper_32_bits(dma_addr);
133 prev_sg->next_pair_lower =
134 lower_32_bits(dma_addr);
135 }
136
137 prev_sg = scu_sg;
138 sg_idx++;
139 }
140 } else { /* handle when no sg */
141 scu_sg = scic_sds_request_get_sgl_element_pair(sds_request,
142 sg_idx);
143
144 dma_addr = dma_map_single(&isci_host->pdev->dev,
145 task->scatter,
146 task->total_xfer_len,
147 task->data_dir);
148
149 isci_request->zero_scatter_daddr = dma_addr;
150
151 scu_sg->A.length = task->total_xfer_len;
152 scu_sg->A.address_upper = upper_32_bits(dma_addr);
153 scu_sg->A.address_lower = lower_32_bits(dma_addr);
154 }
155
156 if (scu_sg) {
157 scu_sg->next_pair_upper = 0;
158 scu_sg->next_pair_lower = 0;
159 }
160}
161
Dan Williamsf1f52e72011-05-10 02:28:45 -0700162static void scic_sds_io_request_build_ssp_command_iu(struct scic_sds_request *sci_req)
163{
164 struct ssp_cmd_iu *cmd_iu;
165 struct isci_request *ireq = sci_req_to_ireq(sci_req);
166 struct sas_task *task = isci_request_access_task(ireq);
167
168 cmd_iu = &sci_req->ssp.cmd;
169
170 memcpy(cmd_iu->LUN, task->ssp_task.LUN, 8);
171 cmd_iu->add_cdb_len = 0;
172 cmd_iu->_r_a = 0;
173 cmd_iu->_r_b = 0;
174 cmd_iu->en_fburst = 0; /* unsupported */
175 cmd_iu->task_prio = task->ssp_task.task_prio;
176 cmd_iu->task_attr = task->ssp_task.task_attr;
177 cmd_iu->_r_c = 0;
178
179 sci_swab32_cpy(&cmd_iu->cdb, task->ssp_task.cdb,
180 sizeof(task->ssp_task.cdb) / sizeof(u32));
181}
182
183static void scic_sds_task_request_build_ssp_task_iu(struct scic_sds_request *sci_req)
184{
185 struct ssp_task_iu *task_iu;
186 struct isci_request *ireq = sci_req_to_ireq(sci_req);
187 struct sas_task *task = isci_request_access_task(ireq);
188 struct isci_tmf *isci_tmf = isci_request_access_tmf(ireq);
189
190 task_iu = &sci_req->ssp.tmf;
191
192 memset(task_iu, 0, sizeof(struct ssp_task_iu));
193
194 memcpy(task_iu->LUN, task->ssp_task.LUN, 8);
195
196 task_iu->task_func = isci_tmf->tmf_code;
197 task_iu->task_tag =
198 (ireq->ttype == tmf_task) ?
199 isci_tmf->io_tag :
200 SCI_CONTROLLER_INVALID_IO_TAG;
201}
202
203/**
204 * This method is will fill in the SCU Task Context for any type of SSP request.
205 * @sci_req:
206 * @task_context:
207 *
208 */
209static void scu_ssp_reqeust_construct_task_context(
210 struct scic_sds_request *sds_request,
211 struct scu_task_context *task_context)
212{
213 dma_addr_t dma_addr;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700214 struct scic_sds_remote_device *target_device;
215 struct scic_sds_port *target_port;
216
Dan Williamsf1f52e72011-05-10 02:28:45 -0700217 target_device = scic_sds_request_get_device(sds_request);
218 target_port = scic_sds_request_get_port(sds_request);
219
220 /* Fill in the TC with the its required data */
221 task_context->abort = 0;
222 task_context->priority = 0;
223 task_context->initiator_request = 1;
224 task_context->connection_rate = target_device->connection_rate;
225 task_context->protocol_engine_index =
226 scic_sds_controller_get_protocol_engine_group(controller);
227 task_context->logical_port_index =
228 scic_sds_port_get_index(target_port);
229 task_context->protocol_type = SCU_TASK_CONTEXT_PROTOCOL_SSP;
230 task_context->valid = SCU_TASK_CONTEXT_VALID;
231 task_context->context_type = SCU_TASK_CONTEXT_TYPE;
232
233 task_context->remote_node_index =
234 scic_sds_remote_device_get_index(sds_request->target_device);
235 task_context->command_code = 0;
236
237 task_context->link_layer_control = 0;
238 task_context->do_not_dma_ssp_good_response = 1;
239 task_context->strict_ordering = 0;
240 task_context->control_frame = 0;
241 task_context->timeout_enable = 0;
242 task_context->block_guard_enable = 0;
243
244 task_context->address_modifier = 0;
245
246 /* task_context->type.ssp.tag = sci_req->io_tag; */
247 task_context->task_phase = 0x01;
248
249 if (sds_request->was_tag_assigned_by_user) {
250 /*
251 * Build the task context now since we have already read
252 * the data
253 */
254 sds_request->post_context =
255 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
256 (scic_sds_controller_get_protocol_engine_group(
257 controller) <<
258 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) |
259 (scic_sds_port_get_index(target_port) <<
260 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT) |
Dan Williamsdd047c82011-06-09 11:06:58 -0700261 ISCI_TAG_TCI(sds_request->io_tag));
Dan Williamsf1f52e72011-05-10 02:28:45 -0700262 } else {
263 /*
264 * Build the task context now since we have already read
265 * the data
266 *
267 * I/O tag index is not assigned because we have to wait
268 * until we get a TCi
269 */
270 sds_request->post_context =
271 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
272 (scic_sds_controller_get_protocol_engine_group(
273 owning_controller) <<
274 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) |
275 (scic_sds_port_get_index(target_port) <<
276 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT));
277 }
278
279 /*
280 * Copy the physical address for the command buffer to the
281 * SCU Task Context
282 */
283 dma_addr = scic_io_request_get_dma_addr(sds_request,
284 &sds_request->ssp.cmd);
285
286 task_context->command_iu_upper = upper_32_bits(dma_addr);
287 task_context->command_iu_lower = lower_32_bits(dma_addr);
288
289 /*
290 * Copy the physical address for the response buffer to the
291 * SCU Task Context
292 */
293 dma_addr = scic_io_request_get_dma_addr(sds_request,
294 &sds_request->ssp.rsp);
295
296 task_context->response_iu_upper = upper_32_bits(dma_addr);
297 task_context->response_iu_lower = lower_32_bits(dma_addr);
298}
299
300/**
301 * This method is will fill in the SCU Task Context for a SSP IO request.
302 * @sci_req:
303 *
304 */
305static void scu_ssp_io_request_construct_task_context(
306 struct scic_sds_request *sci_req,
307 enum dma_data_direction dir,
308 u32 len)
309{
310 struct scu_task_context *task_context;
311
312 task_context = scic_sds_request_get_task_context(sci_req);
313
314 scu_ssp_reqeust_construct_task_context(sci_req, task_context);
315
316 task_context->ssp_command_iu_length =
317 sizeof(struct ssp_cmd_iu) / sizeof(u32);
318 task_context->type.ssp.frame_type = SSP_COMMAND;
319
320 switch (dir) {
321 case DMA_FROM_DEVICE:
322 case DMA_NONE:
323 default:
324 task_context->task_type = SCU_TASK_TYPE_IOREAD;
325 break;
326 case DMA_TO_DEVICE:
327 task_context->task_type = SCU_TASK_TYPE_IOWRITE;
328 break;
329 }
330
331 task_context->transfer_length_bytes = len;
332
333 if (task_context->transfer_length_bytes > 0)
334 scic_sds_request_build_sgl(sci_req);
335}
336
Dan Williamsf1f52e72011-05-10 02:28:45 -0700337/**
338 * This method will fill in the SCU Task Context for a SSP Task request. The
339 * following important settings are utilized: -# priority ==
340 * SCU_TASK_PRIORITY_HIGH. This ensures that the task request is issued
341 * ahead of other task destined for the same Remote Node. -# task_type ==
342 * SCU_TASK_TYPE_IOREAD. This simply indicates that a normal request type
343 * (i.e. non-raw frame) is being utilized to perform task management. -#
344 * control_frame == 1. This ensures that the proper endianess is set so
345 * that the bytes are transmitted in the right order for a task frame.
346 * @sci_req: This parameter specifies the task request object being
347 * constructed.
348 *
349 */
350static void scu_ssp_task_request_construct_task_context(
351 struct scic_sds_request *sci_req)
352{
353 struct scu_task_context *task_context;
354
355 task_context = scic_sds_request_get_task_context(sci_req);
356
357 scu_ssp_reqeust_construct_task_context(sci_req, task_context);
358
359 task_context->control_frame = 1;
360 task_context->priority = SCU_TASK_PRIORITY_HIGH;
361 task_context->task_type = SCU_TASK_TYPE_RAW_FRAME;
362 task_context->transfer_length_bytes = 0;
363 task_context->type.ssp.frame_type = SSP_TASK;
364 task_context->ssp_command_iu_length =
365 sizeof(struct ssp_task_iu) / sizeof(u32);
366}
367
Dan Williamsf1f52e72011-05-10 02:28:45 -0700368/**
Dan Williams5dec6f42011-05-10 02:28:49 -0700369 * This method is will fill in the SCU Task Context for any type of SATA
370 * request. This is called from the various SATA constructors.
371 * @sci_req: The general IO request object which is to be used in
372 * constructing the SCU task context.
373 * @task_context: The buffer pointer for the SCU task context which is being
374 * constructed.
Dan Williamsf1f52e72011-05-10 02:28:45 -0700375 *
Dan Williams5dec6f42011-05-10 02:28:49 -0700376 * The general io request construction is complete. The buffer assignment for
377 * the command buffer is complete. none Revisit task context construction to
378 * determine what is common for SSP/SMP/STP task context structures.
Dan Williamsf1f52e72011-05-10 02:28:45 -0700379 */
Dan Williams5dec6f42011-05-10 02:28:49 -0700380static void scu_sata_reqeust_construct_task_context(
381 struct scic_sds_request *sci_req,
382 struct scu_task_context *task_context)
383{
384 dma_addr_t dma_addr;
Dan Williams5dec6f42011-05-10 02:28:49 -0700385 struct scic_sds_remote_device *target_device;
386 struct scic_sds_port *target_port;
387
Dan Williams5dec6f42011-05-10 02:28:49 -0700388 target_device = scic_sds_request_get_device(sci_req);
389 target_port = scic_sds_request_get_port(sci_req);
390
391 /* Fill in the TC with the its required data */
392 task_context->abort = 0;
393 task_context->priority = SCU_TASK_PRIORITY_NORMAL;
394 task_context->initiator_request = 1;
395 task_context->connection_rate = target_device->connection_rate;
396 task_context->protocol_engine_index =
397 scic_sds_controller_get_protocol_engine_group(controller);
398 task_context->logical_port_index =
399 scic_sds_port_get_index(target_port);
400 task_context->protocol_type = SCU_TASK_CONTEXT_PROTOCOL_STP;
401 task_context->valid = SCU_TASK_CONTEXT_VALID;
402 task_context->context_type = SCU_TASK_CONTEXT_TYPE;
403
404 task_context->remote_node_index =
405 scic_sds_remote_device_get_index(sci_req->target_device);
406 task_context->command_code = 0;
407
408 task_context->link_layer_control = 0;
409 task_context->do_not_dma_ssp_good_response = 1;
410 task_context->strict_ordering = 0;
411 task_context->control_frame = 0;
412 task_context->timeout_enable = 0;
413 task_context->block_guard_enable = 0;
414
415 task_context->address_modifier = 0;
416 task_context->task_phase = 0x01;
417
418 task_context->ssp_command_iu_length =
419 (sizeof(struct host_to_dev_fis) - sizeof(u32)) / sizeof(u32);
420
421 /* Set the first word of the H2D REG FIS */
422 task_context->type.words[0] = *(u32 *)&sci_req->stp.cmd;
423
424 if (sci_req->was_tag_assigned_by_user) {
425 /*
426 * Build the task context now since we have already read
427 * the data
428 */
429 sci_req->post_context =
430 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
431 (scic_sds_controller_get_protocol_engine_group(
432 controller) <<
433 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) |
434 (scic_sds_port_get_index(target_port) <<
435 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT) |
Dan Williamsdd047c82011-06-09 11:06:58 -0700436 ISCI_TAG_TCI(sci_req->io_tag));
Dan Williams5dec6f42011-05-10 02:28:49 -0700437 } else {
438 /*
439 * Build the task context now since we have already read
440 * the data.
441 * I/O tag index is not assigned because we have to wait
442 * until we get a TCi.
443 */
444 sci_req->post_context =
445 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
446 (scic_sds_controller_get_protocol_engine_group(
447 controller) <<
448 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) |
449 (scic_sds_port_get_index(target_port) <<
450 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT));
451 }
452
453 /*
454 * Copy the physical address for the command buffer to the SCU Task
455 * Context. We must offset the command buffer by 4 bytes because the
456 * first 4 bytes are transfered in the body of the TC.
457 */
458 dma_addr = scic_io_request_get_dma_addr(sci_req,
459 ((char *) &sci_req->stp.cmd) +
460 sizeof(u32));
461
462 task_context->command_iu_upper = upper_32_bits(dma_addr);
463 task_context->command_iu_lower = lower_32_bits(dma_addr);
464
465 /* SATA Requests do not have a response buffer */
466 task_context->response_iu_upper = 0;
467 task_context->response_iu_lower = 0;
468}
469
Dan Williamsf1f52e72011-05-10 02:28:45 -0700470
471
472/**
Dan Williams5dec6f42011-05-10 02:28:49 -0700473 * scu_stp_raw_request_construct_task_context -
474 * @sci_req: This parameter specifies the STP request object for which to
475 * construct a RAW command frame task context.
476 * @task_context: This parameter specifies the SCU specific task context buffer
477 * to construct.
Dan Williamsf1f52e72011-05-10 02:28:45 -0700478 *
Dan Williams5dec6f42011-05-10 02:28:49 -0700479 * This method performs the operations common to all SATA/STP requests
480 * utilizing the raw frame method. none
Dan Williamsf1f52e72011-05-10 02:28:45 -0700481 */
Dan Williams5dec6f42011-05-10 02:28:49 -0700482static void scu_stp_raw_request_construct_task_context(struct scic_sds_stp_request *stp_req,
483 struct scu_task_context *task_context)
484{
485 struct scic_sds_request *sci_req = to_sci_req(stp_req);
486
487 scu_sata_reqeust_construct_task_context(sci_req, task_context);
488
489 task_context->control_frame = 0;
490 task_context->priority = SCU_TASK_PRIORITY_NORMAL;
491 task_context->task_type = SCU_TASK_TYPE_SATA_RAW_FRAME;
492 task_context->type.stp.fis_type = FIS_REGH2D;
493 task_context->transfer_length_bytes = sizeof(struct host_to_dev_fis) - sizeof(u32);
494}
495
496static enum sci_status
497scic_sds_stp_pio_request_construct(struct scic_sds_request *sci_req,
498 bool copy_rx_frame)
499{
500 struct scic_sds_stp_request *stp_req = &sci_req->stp.req;
501 struct scic_sds_stp_pio_request *pio = &stp_req->type.pio;
502
503 scu_stp_raw_request_construct_task_context(stp_req,
504 sci_req->task_context_buffer);
505
506 pio->current_transfer_bytes = 0;
507 pio->ending_error = 0;
508 pio->ending_status = 0;
509
510 pio->request_current.sgl_offset = 0;
511 pio->request_current.sgl_set = SCU_SGL_ELEMENT_PAIR_A;
512
513 if (copy_rx_frame) {
514 scic_sds_request_build_sgl(sci_req);
515 /* Since the IO request copy of the TC contains the same data as
516 * the actual TC this pointer is vaild for either.
517 */
518 pio->request_current.sgl_pair = &sci_req->task_context_buffer->sgl_pair_ab;
519 } else {
520 /* The user does not want the data copied to the SGL buffer location */
521 pio->request_current.sgl_pair = NULL;
522 }
523
524 return SCI_SUCCESS;
525}
526
527/**
528 *
529 * @sci_req: This parameter specifies the request to be constructed as an
530 * optimized request.
531 * @optimized_task_type: This parameter specifies whether the request is to be
532 * an UDMA request or a NCQ request. - A value of 0 indicates UDMA. - A
533 * value of 1 indicates NCQ.
534 *
535 * This method will perform request construction common to all types of STP
536 * requests that are optimized by the silicon (i.e. UDMA, NCQ). This method
537 * returns an indication as to whether the construction was successful.
538 */
539static void scic_sds_stp_optimized_request_construct(struct scic_sds_request *sci_req,
540 u8 optimized_task_type,
541 u32 len,
542 enum dma_data_direction dir)
543{
544 struct scu_task_context *task_context = sci_req->task_context_buffer;
545
546 /* Build the STP task context structure */
547 scu_sata_reqeust_construct_task_context(sci_req, task_context);
548
549 /* Copy over the SGL elements */
550 scic_sds_request_build_sgl(sci_req);
551
552 /* Copy over the number of bytes to be transfered */
553 task_context->transfer_length_bytes = len;
554
555 if (dir == DMA_TO_DEVICE) {
556 /*
557 * The difference between the DMA IN and DMA OUT request task type
558 * values are consistent with the difference between FPDMA READ
559 * and FPDMA WRITE values. Add the supplied task type parameter
560 * to this difference to set the task type properly for this
561 * DATA OUT (WRITE) case. */
562 task_context->task_type = optimized_task_type + (SCU_TASK_TYPE_DMA_OUT
563 - SCU_TASK_TYPE_DMA_IN);
564 } else {
565 /*
566 * For the DATA IN (READ) case, simply save the supplied
567 * optimized task type. */
568 task_context->task_type = optimized_task_type;
569 }
570}
571
572
573
Dan Williamsf1f52e72011-05-10 02:28:45 -0700574static enum sci_status
575scic_io_request_construct_sata(struct scic_sds_request *sci_req,
576 u32 len,
577 enum dma_data_direction dir,
578 bool copy)
Dan Williams6f231dd2011-07-02 22:56:22 -0700579{
Dan Williams6f231dd2011-07-02 22:56:22 -0700580 enum sci_status status = SCI_SUCCESS;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700581 struct isci_request *ireq = sci_req_to_ireq(sci_req);
582 struct sas_task *task = isci_request_access_task(ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700583
Dan Williamsf1f52e72011-05-10 02:28:45 -0700584 /* check for management protocols */
585 if (ireq->ttype == tmf_task) {
586 struct isci_tmf *tmf = isci_request_access_tmf(ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700587
Dan Williamsf1f52e72011-05-10 02:28:45 -0700588 if (tmf->tmf_code == isci_tmf_sata_srst_high ||
Dan Williams5dec6f42011-05-10 02:28:49 -0700589 tmf->tmf_code == isci_tmf_sata_srst_low) {
590 scu_stp_raw_request_construct_task_context(&sci_req->stp.req,
591 sci_req->task_context_buffer);
592 return SCI_SUCCESS;
593 } else {
Dan Williamsf1f52e72011-05-10 02:28:45 -0700594 dev_err(scic_to_dev(sci_req->owning_controller),
595 "%s: Request 0x%p received un-handled SAT "
596 "management protocol 0x%x.\n",
597 __func__, sci_req, tmf->tmf_code);
Dan Williams6f231dd2011-07-02 22:56:22 -0700598
Dan Williamsf1f52e72011-05-10 02:28:45 -0700599 return SCI_FAILURE;
600 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700601 }
602
Dan Williamsf1f52e72011-05-10 02:28:45 -0700603 if (!sas_protocol_ata(task->task_proto)) {
604 dev_err(scic_to_dev(sci_req->owning_controller),
605 "%s: Non-ATA protocol in SATA path: 0x%x\n",
606 __func__,
607 task->task_proto);
Dan Williams6f231dd2011-07-02 22:56:22 -0700608 return SCI_FAILURE;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700609
Dan Williams6f231dd2011-07-02 22:56:22 -0700610 }
611
Dan Williamsf1f52e72011-05-10 02:28:45 -0700612 /* non data */
Dan Williams5dec6f42011-05-10 02:28:49 -0700613 if (task->data_dir == DMA_NONE) {
614 scu_stp_raw_request_construct_task_context(&sci_req->stp.req,
615 sci_req->task_context_buffer);
616 return SCI_SUCCESS;
617 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700618
619 /* NCQ */
Dan Williams5dec6f42011-05-10 02:28:49 -0700620 if (task->ata_task.use_ncq) {
621 scic_sds_stp_optimized_request_construct(sci_req,
622 SCU_TASK_TYPE_FPDMAQ_READ,
623 len, dir);
624 return SCI_SUCCESS;
625 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700626
627 /* DMA */
Dan Williams5dec6f42011-05-10 02:28:49 -0700628 if (task->ata_task.dma_xfer) {
629 scic_sds_stp_optimized_request_construct(sci_req,
630 SCU_TASK_TYPE_DMA_IN,
631 len, dir);
632 return SCI_SUCCESS;
633 } else /* PIO */
Dan Williamsf1f52e72011-05-10 02:28:45 -0700634 return scic_sds_stp_pio_request_construct(sci_req, copy);
635
636 return status;
637}
638
639static enum sci_status scic_io_request_construct_basic_ssp(struct scic_sds_request *sci_req)
640{
641 struct isci_request *ireq = sci_req_to_ireq(sci_req);
642 struct sas_task *task = isci_request_access_task(ireq);
643
644 sci_req->protocol = SCIC_SSP_PROTOCOL;
645
646 scu_ssp_io_request_construct_task_context(sci_req,
647 task->data_dir,
648 task->total_xfer_len);
649
650 scic_sds_io_request_build_ssp_command_iu(sci_req);
651
Edmund Nadolskie3013702011-06-02 00:10:43 +0000652 sci_change_state(&sci_req->sm, SCI_REQ_CONSTRUCTED);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700653
654 return SCI_SUCCESS;
655}
656
657enum sci_status scic_task_request_construct_ssp(
658 struct scic_sds_request *sci_req)
659{
660 /* Construct the SSP Task SCU Task Context */
661 scu_ssp_task_request_construct_task_context(sci_req);
662
663 /* Fill in the SSP Task IU */
664 scic_sds_task_request_build_ssp_task_iu(sci_req);
665
Edmund Nadolskie3013702011-06-02 00:10:43 +0000666 sci_change_state(&sci_req->sm, SCI_REQ_CONSTRUCTED);
Dan Williams6f231dd2011-07-02 22:56:22 -0700667
668 return SCI_SUCCESS;
669}
670
Dan Williamsf1f52e72011-05-10 02:28:45 -0700671static enum sci_status scic_io_request_construct_basic_sata(struct scic_sds_request *sci_req)
Dan Williams6f231dd2011-07-02 22:56:22 -0700672{
Dan Williamsf1f52e72011-05-10 02:28:45 -0700673 enum sci_status status;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700674 bool copy = false;
675 struct isci_request *isci_request = sci_req_to_ireq(sci_req);
676 struct sas_task *task = isci_request_access_task(isci_request);
Dan Williams6f231dd2011-07-02 22:56:22 -0700677
Dan Williamsf1f52e72011-05-10 02:28:45 -0700678 sci_req->protocol = SCIC_STP_PROTOCOL;
Dan Williams6f231dd2011-07-02 22:56:22 -0700679
Dan Williamsf1f52e72011-05-10 02:28:45 -0700680 copy = (task->data_dir == DMA_NONE) ? false : true;
Dan Williams6f231dd2011-07-02 22:56:22 -0700681
Dan Williamsf1f52e72011-05-10 02:28:45 -0700682 status = scic_io_request_construct_sata(sci_req,
683 task->total_xfer_len,
684 task->data_dir,
685 copy);
Dan Williams6f231dd2011-07-02 22:56:22 -0700686
Dan Williamsf1f52e72011-05-10 02:28:45 -0700687 if (status == SCI_SUCCESS)
Edmund Nadolskie3013702011-06-02 00:10:43 +0000688 sci_change_state(&sci_req->sm, SCI_REQ_CONSTRUCTED);
Dan Williams6f231dd2011-07-02 22:56:22 -0700689
Dan Williamsf1f52e72011-05-10 02:28:45 -0700690 return status;
Dan Williams6f231dd2011-07-02 22:56:22 -0700691}
692
Dan Williamsf1f52e72011-05-10 02:28:45 -0700693enum sci_status scic_task_request_construct_sata(struct scic_sds_request *sci_req)
Dan Williams6f231dd2011-07-02 22:56:22 -0700694{
Dan Williamsf1f52e72011-05-10 02:28:45 -0700695 enum sci_status status = SCI_SUCCESS;
696 struct isci_request *ireq = sci_req_to_ireq(sci_req);
Dan Williams6f231dd2011-07-02 22:56:22 -0700697
Dan Williamsf1f52e72011-05-10 02:28:45 -0700698 /* check for management protocols */
699 if (ireq->ttype == tmf_task) {
700 struct isci_tmf *tmf = isci_request_access_tmf(ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700701
Dan Williamsf1f52e72011-05-10 02:28:45 -0700702 if (tmf->tmf_code == isci_tmf_sata_srst_high ||
703 tmf->tmf_code == isci_tmf_sata_srst_low) {
Dan Williams5dec6f42011-05-10 02:28:49 -0700704 scu_stp_raw_request_construct_task_context(&sci_req->stp.req,
705 sci_req->task_context_buffer);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700706 } else {
707 dev_err(scic_to_dev(sci_req->owning_controller),
708 "%s: Request 0x%p received un-handled SAT "
709 "Protocol 0x%x.\n",
710 __func__, sci_req, tmf->tmf_code);
711
712 return SCI_FAILURE;
713 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700714 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700715
Dan Williams5dec6f42011-05-10 02:28:49 -0700716 if (status != SCI_SUCCESS)
717 return status;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000718 sci_change_state(&sci_req->sm, SCI_REQ_CONSTRUCTED);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700719
720 return status;
Dan Williams6f231dd2011-07-02 22:56:22 -0700721}
722
723/**
Dan Williamsf1f52e72011-05-10 02:28:45 -0700724 * sci_req_tx_bytes - bytes transferred when reply underruns request
725 * @sci_req: request that was terminated early
Dan Williams6f231dd2011-07-02 22:56:22 -0700726 */
Dan Williamsf1f52e72011-05-10 02:28:45 -0700727#define SCU_TASK_CONTEXT_SRAM 0x200000
728static u32 sci_req_tx_bytes(struct scic_sds_request *sci_req)
Dan Williams6f231dd2011-07-02 22:56:22 -0700729{
Dan Williamsf1f52e72011-05-10 02:28:45 -0700730 struct scic_sds_controller *scic = sci_req->owning_controller;
731 u32 ret_val = 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700732
Dan Williamsf1f52e72011-05-10 02:28:45 -0700733 if (readl(&scic->smu_registers->address_modifier) == 0) {
734 void __iomem *scu_reg_base = scic->scu_registers;
Dan Williams6f231dd2011-07-02 22:56:22 -0700735
Dan Williamsf1f52e72011-05-10 02:28:45 -0700736 /* get the bytes of data from the Address == BAR1 + 20002Ch + (256*TCi) where
737 * BAR1 is the scu_registers
738 * 0x20002C = 0x200000 + 0x2c
739 * = start of task context SRAM + offset of (type.ssp.data_offset)
740 * TCi is the io_tag of struct scic_sds_request
Dan Williams67ea8382011-05-08 11:47:15 -0700741 */
Dan Williamsf1f52e72011-05-10 02:28:45 -0700742 ret_val = readl(scu_reg_base +
743 (SCU_TASK_CONTEXT_SRAM + offsetof(struct scu_task_context, type.ssp.data_offset)) +
Dan Williamsdd047c82011-06-09 11:06:58 -0700744 ((sizeof(struct scu_task_context)) * ISCI_TAG_TCI(sci_req->io_tag)));
Dan Williams67ea8382011-05-08 11:47:15 -0700745 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700746
Dan Williamsf1f52e72011-05-10 02:28:45 -0700747 return ret_val;
Dan Williams6f231dd2011-07-02 22:56:22 -0700748}
749
Piotr Sawickif4636a72011-05-10 23:50:32 +0000750enum sci_status scic_sds_request_start(struct scic_sds_request *sci_req)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700751{
Piotr Sawickif4636a72011-05-10 23:50:32 +0000752 struct scic_sds_controller *scic = sci_req->owning_controller;
753 struct scu_task_context *task_context;
754 enum sci_base_request_states state;
755
756 if (sci_req->device_sequence !=
757 scic_sds_remote_device_get_sequence(sci_req->target_device))
Dan Williamsf1f52e72011-05-10 02:28:45 -0700758 return SCI_FAILURE;
759
Edmund Nadolskie3013702011-06-02 00:10:43 +0000760 state = sci_req->sm.current_state_id;
761 if (state != SCI_REQ_CONSTRUCTED) {
Piotr Sawickif4636a72011-05-10 23:50:32 +0000762 dev_warn(scic_to_dev(scic),
763 "%s: SCIC IO Request requested to start while in wrong "
764 "state %d\n", __func__, state);
765 return SCI_FAILURE_INVALID_STATE;
766 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700767
Piotr Sawickif4636a72011-05-10 23:50:32 +0000768 /* if necessary, allocate a TCi for the io request object and then will,
769 * if necessary, copy the constructed TC data into the actual TC buffer.
770 * If everything is successful the post context field is updated with
771 * the TCi so the controller can post the request to the hardware.
772 */
773 if (sci_req->io_tag == SCI_CONTROLLER_INVALID_IO_TAG)
774 sci_req->io_tag = scic_controller_allocate_io_tag(scic);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700775
Piotr Sawickif4636a72011-05-10 23:50:32 +0000776 /* Record the IO Tag in the request */
777 if (sci_req->io_tag != SCI_CONTROLLER_INVALID_IO_TAG) {
778 task_context = sci_req->task_context_buffer;
779
Dan Williamsdd047c82011-06-09 11:06:58 -0700780 task_context->task_index = ISCI_TAG_TCI(sci_req->io_tag);
Piotr Sawickif4636a72011-05-10 23:50:32 +0000781
782 switch (task_context->protocol_type) {
783 case SCU_TASK_CONTEXT_PROTOCOL_SMP:
784 case SCU_TASK_CONTEXT_PROTOCOL_SSP:
785 /* SSP/SMP Frame */
786 task_context->type.ssp.tag = sci_req->io_tag;
787 task_context->type.ssp.target_port_transfer_tag =
788 0xFFFF;
789 break;
790
791 case SCU_TASK_CONTEXT_PROTOCOL_STP:
792 /* STP/SATA Frame
793 * task_context->type.stp.ncq_tag = sci_req->ncq_tag;
794 */
795 break;
796
797 case SCU_TASK_CONTEXT_PROTOCOL_NONE:
798 /* / @todo When do we set no protocol type? */
799 break;
800
801 default:
802 /* This should never happen since we build the IO
803 * requests */
804 break;
805 }
806
807 /*
808 * Check to see if we need to copy the task context buffer
809 * or have been building into the task context buffer */
810 if (sci_req->was_tag_assigned_by_user == false)
811 scic_sds_controller_copy_task_context(scic, sci_req);
812
813 /* Add to the post_context the io tag value */
Dan Williamsdd047c82011-06-09 11:06:58 -0700814 sci_req->post_context |= ISCI_TAG_TCI(sci_req->io_tag);
Piotr Sawickif4636a72011-05-10 23:50:32 +0000815
816 /* Everything is good go ahead and change state */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000817 sci_change_state(&sci_req->sm, SCI_REQ_STARTED);
Piotr Sawickif4636a72011-05-10 23:50:32 +0000818
819 return SCI_SUCCESS;
820 }
821
822 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700823}
824
825enum sci_status
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700826scic_sds_io_request_terminate(struct scic_sds_request *sci_req)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700827{
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700828 enum sci_base_request_states state;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700829
Edmund Nadolskie3013702011-06-02 00:10:43 +0000830 state = sci_req->sm.current_state_id;
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700831
832 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000833 case SCI_REQ_CONSTRUCTED:
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700834 scic_sds_request_set_status(sci_req,
835 SCU_TASK_DONE_TASK_ABORT,
836 SCI_FAILURE_IO_TERMINATED);
837
Edmund Nadolskie3013702011-06-02 00:10:43 +0000838 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700839 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000840 case SCI_REQ_STARTED:
841 case SCI_REQ_TASK_WAIT_TC_COMP:
842 case SCI_REQ_SMP_WAIT_RESP:
843 case SCI_REQ_SMP_WAIT_TC_COMP:
844 case SCI_REQ_STP_UDMA_WAIT_TC_COMP:
845 case SCI_REQ_STP_UDMA_WAIT_D2H:
846 case SCI_REQ_STP_NON_DATA_WAIT_H2D:
847 case SCI_REQ_STP_NON_DATA_WAIT_D2H:
848 case SCI_REQ_STP_PIO_WAIT_H2D:
849 case SCI_REQ_STP_PIO_WAIT_FRAME:
850 case SCI_REQ_STP_PIO_DATA_IN:
851 case SCI_REQ_STP_PIO_DATA_OUT:
852 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED:
853 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG:
854 case SCI_REQ_STP_SOFT_RESET_WAIT_D2H:
855 sci_change_state(&sci_req->sm, SCI_REQ_ABORTING);
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700856 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000857 case SCI_REQ_TASK_WAIT_TC_RESP:
858 sci_change_state(&sci_req->sm, SCI_REQ_ABORTING);
859 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700860 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000861 case SCI_REQ_ABORTING:
862 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700863 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000864 case SCI_REQ_COMPLETED:
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700865 default:
866 dev_warn(scic_to_dev(sci_req->owning_controller),
867 "%s: SCIC IO Request requested to abort while in wrong "
868 "state %d\n",
869 __func__,
Edmund Nadolskie3013702011-06-02 00:10:43 +0000870 sci_req->sm.current_state_id);
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700871 break;
872 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700873
874 return SCI_FAILURE_INVALID_STATE;
875}
876
Dan Williams79e2b6b2011-05-11 08:29:56 -0700877enum sci_status scic_sds_request_complete(struct scic_sds_request *sci_req)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700878{
Dan Williams79e2b6b2011-05-11 08:29:56 -0700879 enum sci_base_request_states state;
880 struct scic_sds_controller *scic = sci_req->owning_controller;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700881
Edmund Nadolskie3013702011-06-02 00:10:43 +0000882 state = sci_req->sm.current_state_id;
883 if (WARN_ONCE(state != SCI_REQ_COMPLETED,
Dan Williams79e2b6b2011-05-11 08:29:56 -0700884 "isci: request completion from wrong state (%d)\n", state))
885 return SCI_FAILURE_INVALID_STATE;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700886
Dan Williams79e2b6b2011-05-11 08:29:56 -0700887 if (!sci_req->was_tag_assigned_by_user)
888 scic_controller_free_io_tag(scic, sci_req->io_tag);
889
890 if (sci_req->saved_rx_frame_index != SCU_INVALID_FRAME_INDEX)
891 scic_sds_controller_release_frame(scic,
892 sci_req->saved_rx_frame_index);
893
894 /* XXX can we just stop the machine and remove the 'final' state? */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000895 sci_change_state(&sci_req->sm, SCI_REQ_FINAL);
Dan Williams79e2b6b2011-05-11 08:29:56 -0700896 return SCI_SUCCESS;
897}
898
899enum sci_status scic_sds_io_request_event_handler(struct scic_sds_request *sci_req,
900 u32 event_code)
901{
902 enum sci_base_request_states state;
903 struct scic_sds_controller *scic = sci_req->owning_controller;
904
Edmund Nadolskie3013702011-06-02 00:10:43 +0000905 state = sci_req->sm.current_state_id;
Dan Williams79e2b6b2011-05-11 08:29:56 -0700906
Edmund Nadolskie3013702011-06-02 00:10:43 +0000907 if (state != SCI_REQ_STP_PIO_DATA_IN) {
Dan Williams79e2b6b2011-05-11 08:29:56 -0700908 dev_warn(scic_to_dev(scic), "%s: (%x) in wrong state %d\n",
909 __func__, event_code, state);
910
911 return SCI_FAILURE_INVALID_STATE;
912 }
913
914 switch (scu_get_event_specifier(event_code)) {
915 case SCU_TASK_DONE_CRC_ERR << SCU_EVENT_SPECIFIC_CODE_SHIFT:
916 /* We are waiting for data and the SCU has R_ERR the data frame.
917 * Go back to waiting for the D2H Register FIS
918 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000919 sci_change_state(&sci_req->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williams79e2b6b2011-05-11 08:29:56 -0700920 return SCI_SUCCESS;
921 default:
922 dev_err(scic_to_dev(scic),
923 "%s: pio request unexpected event %#x\n",
924 __func__, event_code);
925
926 /* TODO Should we fail the PIO request when we get an
927 * unexpected event?
928 */
929 return SCI_FAILURE;
930 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700931}
932
Dan Williamsf1f52e72011-05-10 02:28:45 -0700933/*
934 * This function copies response data for requests returning response data
935 * instead of sense data.
936 * @sci_req: This parameter specifies the request object for which to copy
937 * the response data.
938 */
Dan Williamsf1393032011-05-10 02:28:47 -0700939static void scic_sds_io_request_copy_response(struct scic_sds_request *sci_req)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700940{
941 void *resp_buf;
942 u32 len;
943 struct ssp_response_iu *ssp_response;
944 struct isci_request *ireq = sci_req_to_ireq(sci_req);
945 struct isci_tmf *isci_tmf = isci_request_access_tmf(ireq);
946
947 ssp_response = &sci_req->ssp.rsp;
948
949 resp_buf = &isci_tmf->resp.resp_iu;
950
951 len = min_t(u32,
952 SSP_RESP_IU_MAX_SIZE,
953 be32_to_cpu(ssp_response->response_data_len));
954
955 memcpy(resp_buf, ssp_response->resp_data, len);
956}
957
Edmund Nadolskie3013702011-06-02 00:10:43 +0000958static enum sci_status
959request_started_state_tc_event(struct scic_sds_request *sci_req,
960 u32 completion_code)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700961{
Dan Williamsf1f52e72011-05-10 02:28:45 -0700962 struct ssp_response_iu *resp_iu;
Dan Williamsa7e255a2011-05-11 08:27:47 -0700963 u8 datapres;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700964
Dan Williamsa7e255a2011-05-11 08:27:47 -0700965 /* TODO: Any SDMA return code of other than 0 is bad decode 0x003C0000
966 * to determine SDMA status
Dan Williamsf1f52e72011-05-10 02:28:45 -0700967 */
968 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
969 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
970 scic_sds_request_set_status(sci_req,
971 SCU_TASK_DONE_GOOD,
972 SCI_SUCCESS);
973 break;
Dan Williamsa7e255a2011-05-11 08:27:47 -0700974 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_EARLY_RESP): {
975 /* There are times when the SCU hardware will return an early
Dan Williamsf1f52e72011-05-10 02:28:45 -0700976 * response because the io request specified more data than is
977 * returned by the target device (mode pages, inquiry data,
978 * etc.). We must check the response stats to see if this is
979 * truly a failed request or a good request that just got
980 * completed early.
981 */
982 struct ssp_response_iu *resp = &sci_req->ssp.rsp;
983 ssize_t word_cnt = SSP_RESP_IU_MAX_SIZE / sizeof(u32);
984
985 sci_swab32_cpy(&sci_req->ssp.rsp,
986 &sci_req->ssp.rsp,
987 word_cnt);
988
989 if (resp->status == 0) {
Dan Williamsa7e255a2011-05-11 08:27:47 -0700990 scic_sds_request_set_status(sci_req,
991 SCU_TASK_DONE_GOOD,
992 SCI_SUCCESS_IO_DONE_EARLY);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700993 } else {
Dan Williamsa7e255a2011-05-11 08:27:47 -0700994 scic_sds_request_set_status(sci_req,
995 SCU_TASK_DONE_CHECK_RESPONSE,
996 SCI_FAILURE_IO_RESPONSE_VALID);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700997 }
Dan Williamsa7e255a2011-05-11 08:27:47 -0700998 break;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700999 }
Dan Williamsa7e255a2011-05-11 08:27:47 -07001000 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CHECK_RESPONSE): {
Dan Williamsf1f52e72011-05-10 02:28:45 -07001001 ssize_t word_cnt = SSP_RESP_IU_MAX_SIZE / sizeof(u32);
1002
1003 sci_swab32_cpy(&sci_req->ssp.rsp,
1004 &sci_req->ssp.rsp,
1005 word_cnt);
1006
1007 scic_sds_request_set_status(sci_req,
1008 SCU_TASK_DONE_CHECK_RESPONSE,
1009 SCI_FAILURE_IO_RESPONSE_VALID);
1010 break;
1011 }
1012
1013 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_RESP_LEN_ERR):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001014 /* TODO With TASK_DONE_RESP_LEN_ERR is the response frame
Dan Williamsf1f52e72011-05-10 02:28:45 -07001015 * guaranteed to be received before this completion status is
1016 * posted?
1017 */
1018 resp_iu = &sci_req->ssp.rsp;
1019 datapres = resp_iu->datapres;
1020
Dan Williamsa7e255a2011-05-11 08:27:47 -07001021 if (datapres == 1 || datapres == 2) {
1022 scic_sds_request_set_status(sci_req,
1023 SCU_TASK_DONE_CHECK_RESPONSE,
1024 SCI_FAILURE_IO_RESPONSE_VALID);
Dan Williamsf1f52e72011-05-10 02:28:45 -07001025 } else
Dan Williamsa7e255a2011-05-11 08:27:47 -07001026 scic_sds_request_set_status(sci_req,
1027 SCU_TASK_DONE_GOOD,
1028 SCI_SUCCESS);
Dan Williamsf1f52e72011-05-10 02:28:45 -07001029 break;
Dan Williamsf1f52e72011-05-10 02:28:45 -07001030 /* only stp device gets suspended. */
1031 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_ACK_NAK_TO):
1032 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_PERR):
1033 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_NAK_ERR):
1034 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_DATA_LEN_ERR):
1035 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_ABORT_ERR):
1036 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_XR_WD_LEN):
1037 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_MAX_PLD_ERR):
1038 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_RESP):
1039 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_SDBFIS):
1040 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_REG_ERR):
1041 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SDB_ERR):
1042 if (sci_req->protocol == SCIC_STP_PROTOCOL) {
Dan Williamsa7e255a2011-05-11 08:27:47 -07001043 scic_sds_request_set_status(sci_req,
Dan Williamsf1f52e72011-05-10 02:28:45 -07001044 SCU_GET_COMPLETION_TL_STATUS(completion_code) >>
1045 SCU_COMPLETION_TL_STATUS_SHIFT,
1046 SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED);
1047 } else {
Dan Williamsa7e255a2011-05-11 08:27:47 -07001048 scic_sds_request_set_status(sci_req,
Dan Williamsf1f52e72011-05-10 02:28:45 -07001049 SCU_GET_COMPLETION_TL_STATUS(completion_code) >>
1050 SCU_COMPLETION_TL_STATUS_SHIFT,
1051 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
1052 }
1053 break;
1054
1055 /* both stp/ssp device gets suspended */
1056 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LF_ERR):
1057 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_WRONG_DESTINATION):
1058 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_1):
1059 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_2):
1060 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_3):
1061 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_BAD_DESTINATION):
1062 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_ZONE_VIOLATION):
1063 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_STP_RESOURCES_BUSY):
1064 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_PROTOCOL_NOT_SUPPORTED):
1065 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_CONNECTION_RATE_NOT_SUPPORTED):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001066 scic_sds_request_set_status(sci_req,
1067 SCU_GET_COMPLETION_TL_STATUS(completion_code) >>
1068 SCU_COMPLETION_TL_STATUS_SHIFT,
1069 SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED);
Dan Williamsf1f52e72011-05-10 02:28:45 -07001070 break;
1071
1072 /* neither ssp nor stp gets suspended. */
1073 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_NAK_CMD_ERR):
1074 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_XR):
1075 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_XR_IU_LEN_ERR):
1076 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SDMA_ERR):
1077 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_OFFSET_ERR):
1078 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_EXCESS_DATA):
1079 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_RESP_TO_ERR):
1080 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_UFI_ERR):
1081 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_FRM_TYPE_ERR):
1082 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_LL_RX_ERR):
1083 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_DATA):
1084 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_OPEN_FAIL):
1085 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_VIIT_ENTRY_NV):
1086 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_IIT_ENTRY_NV):
1087 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_RNCNV_OUTBOUND):
1088 default:
1089 scic_sds_request_set_status(
1090 sci_req,
1091 SCU_GET_COMPLETION_TL_STATUS(completion_code) >>
1092 SCU_COMPLETION_TL_STATUS_SHIFT,
1093 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
1094 break;
1095 }
1096
1097 /*
1098 * TODO: This is probably wrong for ACK/NAK timeout conditions
1099 */
1100
1101 /* In all cases we will treat this as the completion of the IO req. */
Edmund Nadolskie3013702011-06-02 00:10:43 +00001102 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsf1f52e72011-05-10 02:28:45 -07001103 return SCI_SUCCESS;
1104}
1105
Edmund Nadolskie3013702011-06-02 00:10:43 +00001106static enum sci_status
1107request_aborting_state_tc_event(struct scic_sds_request *sci_req,
1108 u32 completion_code)
Dan Williamsf1f52e72011-05-10 02:28:45 -07001109{
1110 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1111 case (SCU_TASK_DONE_GOOD << SCU_COMPLETION_TL_STATUS_SHIFT):
1112 case (SCU_TASK_DONE_TASK_ABORT << SCU_COMPLETION_TL_STATUS_SHIFT):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001113 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_TASK_ABORT,
1114 SCI_FAILURE_IO_TERMINATED);
Dan Williamsf1f52e72011-05-10 02:28:45 -07001115
Edmund Nadolskie3013702011-06-02 00:10:43 +00001116 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsf1f52e72011-05-10 02:28:45 -07001117 break;
1118
1119 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001120 /* Unless we get some strange error wait for the task abort to complete
1121 * TODO: Should there be a state change for this completion?
1122 */
Dan Williamsf1f52e72011-05-10 02:28:45 -07001123 break;
1124 }
1125
1126 return SCI_SUCCESS;
1127}
1128
Dan Williamsa7e255a2011-05-11 08:27:47 -07001129static enum sci_status ssp_task_request_await_tc_event(struct scic_sds_request *sci_req,
1130 u32 completion_code)
Dan Williamsf1393032011-05-10 02:28:47 -07001131{
1132 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1133 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
1134 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_GOOD,
1135 SCI_SUCCESS);
1136
Edmund Nadolskie3013702011-06-02 00:10:43 +00001137 sci_change_state(&sci_req->sm, SCI_REQ_TASK_WAIT_TC_RESP);
Dan Williamsf1393032011-05-10 02:28:47 -07001138 break;
Dan Williamsf1393032011-05-10 02:28:47 -07001139 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_ACK_NAK_TO):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001140 /* Currently, the decision is to simply allow the task request
1141 * to timeout if the task IU wasn't received successfully.
1142 * There is a potential for receiving multiple task responses if
1143 * we decide to send the task IU again.
1144 */
Dan Williamsf1393032011-05-10 02:28:47 -07001145 dev_warn(scic_to_dev(sci_req->owning_controller),
1146 "%s: TaskRequest:0x%p CompletionCode:%x - "
Dan Williamsa7e255a2011-05-11 08:27:47 -07001147 "ACK/NAK timeout\n", __func__, sci_req,
Dan Williamsf1393032011-05-10 02:28:47 -07001148 completion_code);
1149
Edmund Nadolskie3013702011-06-02 00:10:43 +00001150 sci_change_state(&sci_req->sm, SCI_REQ_TASK_WAIT_TC_RESP);
Dan Williamsf1393032011-05-10 02:28:47 -07001151 break;
Dan Williamsf1393032011-05-10 02:28:47 -07001152 default:
Edmund Nadolskie3013702011-06-02 00:10:43 +00001153 /*
1154 * All other completion status cause the IO to be complete.
1155 * If a NAK was received, then it is up to the user to retry
1156 * the request.
Dan Williamsa7e255a2011-05-11 08:27:47 -07001157 */
1158 scic_sds_request_set_status(sci_req,
Dan Williamsf1393032011-05-10 02:28:47 -07001159 SCU_NORMALIZE_COMPLETION_STATUS(completion_code),
Dan Williamsa7e255a2011-05-11 08:27:47 -07001160 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
Dan Williamsf1393032011-05-10 02:28:47 -07001161
Edmund Nadolskie3013702011-06-02 00:10:43 +00001162 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsf1393032011-05-10 02:28:47 -07001163 break;
1164 }
1165
1166 return SCI_SUCCESS;
1167}
1168
Edmund Nadolskie3013702011-06-02 00:10:43 +00001169static enum sci_status
1170smp_request_await_response_tc_event(struct scic_sds_request *sci_req,
1171 u32 completion_code)
Dan Williamsc72086e2011-05-10 02:28:48 -07001172{
1173 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1174 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001175 /* In the AWAIT RESPONSE state, any TC completion is
1176 * unexpected. but if the TC has success status, we
1177 * complete the IO anyway.
1178 */
Dan Williams5dec6f42011-05-10 02:28:49 -07001179 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_GOOD,
1180 SCI_SUCCESS);
Dan Williamsc72086e2011-05-10 02:28:48 -07001181
Edmund Nadolskie3013702011-06-02 00:10:43 +00001182 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001183 break;
1184
1185 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_RESP_TO_ERR):
1186 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_UFI_ERR):
1187 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_FRM_TYPE_ERR):
1188 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_LL_RX_ERR):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001189 /* These status has been seen in a specific LSI
1190 * expander, which sometimes is not able to send smp
1191 * response within 2 ms. This causes our hardware break
1192 * the connection and set TC completion with one of
1193 * these SMP_XXX_XX_ERR status. For these type of error,
1194 * we ask scic user to retry the request.
1195 */
Dan Williams5dec6f42011-05-10 02:28:49 -07001196 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_SMP_RESP_TO_ERR,
1197 SCI_FAILURE_RETRY_REQUIRED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001198
Edmund Nadolskie3013702011-06-02 00:10:43 +00001199 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001200 break;
1201
1202 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001203 /* All other completion status cause the IO to be complete. If a NAK
1204 * was received, then it is up to the user to retry the request
1205 */
1206 scic_sds_request_set_status(sci_req,
1207 SCU_NORMALIZE_COMPLETION_STATUS(completion_code),
1208 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
Dan Williamsc72086e2011-05-10 02:28:48 -07001209
Edmund Nadolskie3013702011-06-02 00:10:43 +00001210 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001211 break;
1212 }
1213
1214 return SCI_SUCCESS;
1215}
1216
Edmund Nadolskie3013702011-06-02 00:10:43 +00001217static enum sci_status
1218smp_request_await_tc_event(struct scic_sds_request *sci_req,
1219 u32 completion_code)
Dan Williamsc72086e2011-05-10 02:28:48 -07001220{
1221 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1222 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williams5dec6f42011-05-10 02:28:49 -07001223 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_GOOD,
1224 SCI_SUCCESS);
Dan Williamsc72086e2011-05-10 02:28:48 -07001225
Edmund Nadolskie3013702011-06-02 00:10:43 +00001226 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001227 break;
Dan Williamsc72086e2011-05-10 02:28:48 -07001228 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001229 /* All other completion status cause the IO to be
1230 * complete. If a NAK was received, then it is up to
1231 * the user to retry the request.
1232 */
1233 scic_sds_request_set_status(sci_req,
1234 SCU_NORMALIZE_COMPLETION_STATUS(completion_code),
1235 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
Dan Williamsc72086e2011-05-10 02:28:48 -07001236
Edmund Nadolskie3013702011-06-02 00:10:43 +00001237 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001238 break;
1239 }
1240
1241 return SCI_SUCCESS;
1242}
1243
Dan Williams5dec6f42011-05-10 02:28:49 -07001244void scic_stp_io_request_set_ncq_tag(struct scic_sds_request *req,
1245 u16 ncq_tag)
1246{
1247 /**
1248 * @note This could be made to return an error to the user if the user
1249 * attempts to set the NCQ tag in the wrong state.
1250 */
1251 req->task_context_buffer->type.stp.ncq_tag = ncq_tag;
1252}
1253
1254/**
1255 *
1256 * @sci_req:
1257 *
1258 * Get the next SGL element from the request. - Check on which SGL element pair
1259 * we are working - if working on SLG pair element A - advance to element B -
1260 * else - check to see if there are more SGL element pairs for this IO request
1261 * - if there are more SGL element pairs - advance to the next pair and return
1262 * element A struct scu_sgl_element*
1263 */
1264static struct scu_sgl_element *scic_sds_stp_request_pio_get_next_sgl(struct scic_sds_stp_request *stp_req)
1265{
1266 struct scu_sgl_element *current_sgl;
1267 struct scic_sds_request *sci_req = to_sci_req(stp_req);
1268 struct scic_sds_request_pio_sgl *pio_sgl = &stp_req->type.pio.request_current;
1269
1270 if (pio_sgl->sgl_set == SCU_SGL_ELEMENT_PAIR_A) {
1271 if (pio_sgl->sgl_pair->B.address_lower == 0 &&
1272 pio_sgl->sgl_pair->B.address_upper == 0) {
1273 current_sgl = NULL;
1274 } else {
1275 pio_sgl->sgl_set = SCU_SGL_ELEMENT_PAIR_B;
1276 current_sgl = &pio_sgl->sgl_pair->B;
1277 }
1278 } else {
1279 if (pio_sgl->sgl_pair->next_pair_lower == 0 &&
1280 pio_sgl->sgl_pair->next_pair_upper == 0) {
1281 current_sgl = NULL;
1282 } else {
1283 u64 phys_addr;
1284
1285 phys_addr = pio_sgl->sgl_pair->next_pair_upper;
1286 phys_addr <<= 32;
1287 phys_addr |= pio_sgl->sgl_pair->next_pair_lower;
1288
1289 pio_sgl->sgl_pair = scic_request_get_virt_addr(sci_req, phys_addr);
1290 pio_sgl->sgl_set = SCU_SGL_ELEMENT_PAIR_A;
1291 current_sgl = &pio_sgl->sgl_pair->A;
1292 }
1293 }
1294
1295 return current_sgl;
1296}
1297
Edmund Nadolskie3013702011-06-02 00:10:43 +00001298static enum sci_status
1299stp_request_non_data_await_h2d_tc_event(struct scic_sds_request *sci_req,
1300 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07001301{
1302 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1303 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001304 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_GOOD,
1305 SCI_SUCCESS);
Dan Williams5dec6f42011-05-10 02:28:49 -07001306
Edmund Nadolskie3013702011-06-02 00:10:43 +00001307 sci_change_state(&sci_req->sm, SCI_REQ_STP_NON_DATA_WAIT_D2H);
Dan Williams5dec6f42011-05-10 02:28:49 -07001308 break;
1309
1310 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001311 /* All other completion status cause the IO to be
1312 * complete. If a NAK was received, then it is up to
1313 * the user to retry the request.
1314 */
1315 scic_sds_request_set_status(sci_req,
1316 SCU_NORMALIZE_COMPLETION_STATUS(completion_code),
1317 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
Dan Williams5dec6f42011-05-10 02:28:49 -07001318
Edmund Nadolskie3013702011-06-02 00:10:43 +00001319 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001320 break;
1321 }
1322
1323 return SCI_SUCCESS;
1324}
1325
Dan Williams5dec6f42011-05-10 02:28:49 -07001326#define SCU_MAX_FRAME_BUFFER_SIZE 0x400 /* 1K is the maximum SCU frame data payload */
1327
1328/* transmit DATA_FIS from (current sgl + offset) for input
1329 * parameter length. current sgl and offset is alreay stored in the IO request
1330 */
1331static enum sci_status scic_sds_stp_request_pio_data_out_trasmit_data_frame(
1332 struct scic_sds_request *sci_req,
1333 u32 length)
1334{
1335 struct scic_sds_controller *scic = sci_req->owning_controller;
1336 struct scic_sds_stp_request *stp_req = &sci_req->stp.req;
1337 struct scu_task_context *task_context;
1338 struct scu_sgl_element *current_sgl;
1339
1340 /* Recycle the TC and reconstruct it for sending out DATA FIS containing
1341 * for the data from current_sgl+offset for the input length
1342 */
1343 task_context = scic_sds_controller_get_task_context_buffer(scic,
1344 sci_req->io_tag);
1345
1346 if (stp_req->type.pio.request_current.sgl_set == SCU_SGL_ELEMENT_PAIR_A)
1347 current_sgl = &stp_req->type.pio.request_current.sgl_pair->A;
1348 else
1349 current_sgl = &stp_req->type.pio.request_current.sgl_pair->B;
1350
1351 /* update the TC */
1352 task_context->command_iu_upper = current_sgl->address_upper;
1353 task_context->command_iu_lower = current_sgl->address_lower;
1354 task_context->transfer_length_bytes = length;
1355 task_context->type.stp.fis_type = FIS_DATA;
1356
1357 /* send the new TC out. */
1358 return scic_controller_continue_io(sci_req);
1359}
1360
1361static enum sci_status scic_sds_stp_request_pio_data_out_transmit_data(struct scic_sds_request *sci_req)
1362{
1363
1364 struct scu_sgl_element *current_sgl;
1365 u32 sgl_offset;
1366 u32 remaining_bytes_in_current_sgl = 0;
1367 enum sci_status status = SCI_SUCCESS;
1368 struct scic_sds_stp_request *stp_req = &sci_req->stp.req;
1369
1370 sgl_offset = stp_req->type.pio.request_current.sgl_offset;
1371
1372 if (stp_req->type.pio.request_current.sgl_set == SCU_SGL_ELEMENT_PAIR_A) {
1373 current_sgl = &(stp_req->type.pio.request_current.sgl_pair->A);
1374 remaining_bytes_in_current_sgl = stp_req->type.pio.request_current.sgl_pair->A.length - sgl_offset;
1375 } else {
1376 current_sgl = &(stp_req->type.pio.request_current.sgl_pair->B);
1377 remaining_bytes_in_current_sgl = stp_req->type.pio.request_current.sgl_pair->B.length - sgl_offset;
1378 }
1379
1380
1381 if (stp_req->type.pio.pio_transfer_bytes > 0) {
1382 if (stp_req->type.pio.pio_transfer_bytes >= remaining_bytes_in_current_sgl) {
1383 /* recycle the TC and send the H2D Data FIS from (current sgl + sgl_offset) and length = remaining_bytes_in_current_sgl */
1384 status = scic_sds_stp_request_pio_data_out_trasmit_data_frame(sci_req, remaining_bytes_in_current_sgl);
1385 if (status == SCI_SUCCESS) {
1386 stp_req->type.pio.pio_transfer_bytes -= remaining_bytes_in_current_sgl;
1387
1388 /* update the current sgl, sgl_offset and save for future */
1389 current_sgl = scic_sds_stp_request_pio_get_next_sgl(stp_req);
1390 sgl_offset = 0;
1391 }
1392 } else if (stp_req->type.pio.pio_transfer_bytes < remaining_bytes_in_current_sgl) {
1393 /* recycle the TC and send the H2D Data FIS from (current sgl + sgl_offset) and length = type.pio.pio_transfer_bytes */
1394 scic_sds_stp_request_pio_data_out_trasmit_data_frame(sci_req, stp_req->type.pio.pio_transfer_bytes);
1395
1396 if (status == SCI_SUCCESS) {
1397 /* Sgl offset will be adjusted and saved for future */
1398 sgl_offset += stp_req->type.pio.pio_transfer_bytes;
1399 current_sgl->address_lower += stp_req->type.pio.pio_transfer_bytes;
1400 stp_req->type.pio.pio_transfer_bytes = 0;
1401 }
1402 }
1403 }
1404
1405 if (status == SCI_SUCCESS) {
1406 stp_req->type.pio.request_current.sgl_offset = sgl_offset;
1407 }
1408
1409 return status;
1410}
1411
1412/**
1413 *
1414 * @stp_request: The request that is used for the SGL processing.
1415 * @data_buffer: The buffer of data to be copied.
1416 * @length: The length of the data transfer.
1417 *
1418 * Copy the data from the buffer for the length specified to the IO reqeust SGL
1419 * specified data region. enum sci_status
1420 */
1421static enum sci_status
1422scic_sds_stp_request_pio_data_in_copy_data_buffer(struct scic_sds_stp_request *stp_req,
1423 u8 *data_buf, u32 len)
1424{
1425 struct scic_sds_request *sci_req;
1426 struct isci_request *ireq;
1427 u8 *src_addr;
1428 int copy_len;
1429 struct sas_task *task;
1430 struct scatterlist *sg;
1431 void *kaddr;
1432 int total_len = len;
1433
1434 sci_req = to_sci_req(stp_req);
1435 ireq = sci_req_to_ireq(sci_req);
1436 task = isci_request_access_task(ireq);
1437 src_addr = data_buf;
1438
1439 if (task->num_scatter > 0) {
1440 sg = task->scatter;
1441
1442 while (total_len > 0) {
1443 struct page *page = sg_page(sg);
1444
1445 copy_len = min_t(int, total_len, sg_dma_len(sg));
1446 kaddr = kmap_atomic(page, KM_IRQ0);
1447 memcpy(kaddr + sg->offset, src_addr, copy_len);
1448 kunmap_atomic(kaddr, KM_IRQ0);
1449 total_len -= copy_len;
1450 src_addr += copy_len;
1451 sg = sg_next(sg);
1452 }
1453 } else {
1454 BUG_ON(task->total_xfer_len < total_len);
1455 memcpy(task->scatter, src_addr, total_len);
1456 }
1457
1458 return SCI_SUCCESS;
1459}
1460
1461/**
1462 *
1463 * @sci_req: The PIO DATA IN request that is to receive the data.
1464 * @data_buffer: The buffer to copy from.
1465 *
1466 * Copy the data buffer to the io request data region. enum sci_status
1467 */
1468static enum sci_status scic_sds_stp_request_pio_data_in_copy_data(
1469 struct scic_sds_stp_request *sci_req,
1470 u8 *data_buffer)
1471{
1472 enum sci_status status;
1473
1474 /*
1475 * If there is less than 1K remaining in the transfer request
1476 * copy just the data for the transfer */
1477 if (sci_req->type.pio.pio_transfer_bytes < SCU_MAX_FRAME_BUFFER_SIZE) {
1478 status = scic_sds_stp_request_pio_data_in_copy_data_buffer(
1479 sci_req, data_buffer, sci_req->type.pio.pio_transfer_bytes);
1480
1481 if (status == SCI_SUCCESS)
1482 sci_req->type.pio.pio_transfer_bytes = 0;
1483 } else {
1484 /* We are transfering the whole frame so copy */
1485 status = scic_sds_stp_request_pio_data_in_copy_data_buffer(
1486 sci_req, data_buffer, SCU_MAX_FRAME_BUFFER_SIZE);
1487
1488 if (status == SCI_SUCCESS)
1489 sci_req->type.pio.pio_transfer_bytes -= SCU_MAX_FRAME_BUFFER_SIZE;
1490 }
1491
1492 return status;
1493}
1494
Edmund Nadolskie3013702011-06-02 00:10:43 +00001495static enum sci_status
1496stp_request_pio_await_h2d_completion_tc_event(struct scic_sds_request *sci_req,
1497 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07001498{
1499 enum sci_status status = SCI_SUCCESS;
1500
1501 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1502 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Edmund Nadolskie3013702011-06-02 00:10:43 +00001503 scic_sds_request_set_status(sci_req,
1504 SCU_TASK_DONE_GOOD,
1505 SCI_SUCCESS);
Dan Williams5dec6f42011-05-10 02:28:49 -07001506
Edmund Nadolskie3013702011-06-02 00:10:43 +00001507 sci_change_state(&sci_req->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williams5dec6f42011-05-10 02:28:49 -07001508 break;
1509
1510 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001511 /* All other completion status cause the IO to be
1512 * complete. If a NAK was received, then it is up to
1513 * the user to retry the request.
1514 */
1515 scic_sds_request_set_status(sci_req,
1516 SCU_NORMALIZE_COMPLETION_STATUS(completion_code),
1517 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
Dan Williams5dec6f42011-05-10 02:28:49 -07001518
Edmund Nadolskie3013702011-06-02 00:10:43 +00001519 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001520 break;
1521 }
1522
1523 return status;
1524}
1525
Edmund Nadolskie3013702011-06-02 00:10:43 +00001526static enum sci_status
1527pio_data_out_tx_done_tc_event(struct scic_sds_request *sci_req,
1528 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07001529{
1530 enum sci_status status = SCI_SUCCESS;
1531 bool all_frames_transferred = false;
1532 struct scic_sds_stp_request *stp_req = &sci_req->stp.req;
1533
1534 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1535 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
1536 /* Transmit data */
1537 if (stp_req->type.pio.pio_transfer_bytes != 0) {
1538 status = scic_sds_stp_request_pio_data_out_transmit_data(sci_req);
1539 if (status == SCI_SUCCESS) {
1540 if (stp_req->type.pio.pio_transfer_bytes == 0)
1541 all_frames_transferred = true;
1542 }
1543 } else if (stp_req->type.pio.pio_transfer_bytes == 0) {
1544 /*
1545 * this will happen if the all data is written at the
1546 * first time after the pio setup fis is received
1547 */
1548 all_frames_transferred = true;
1549 }
1550
1551 /* all data transferred. */
1552 if (all_frames_transferred) {
1553 /*
Edmund Nadolskie3013702011-06-02 00:10:43 +00001554 * Change the state to SCI_REQ_STP_PIO_DATA_IN
Dan Williams5dec6f42011-05-10 02:28:49 -07001555 * and wait for PIO_SETUP fis / or D2H REg fis. */
Edmund Nadolskie3013702011-06-02 00:10:43 +00001556 sci_change_state(&sci_req->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williams5dec6f42011-05-10 02:28:49 -07001557 }
1558 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001559
Dan Williams5dec6f42011-05-10 02:28:49 -07001560 default:
1561 /*
Edmund Nadolskie3013702011-06-02 00:10:43 +00001562 * All other completion status cause the IO to be complete.
1563 * If a NAK was received, then it is up to the user to retry
1564 * the request.
1565 */
Dan Williams5dec6f42011-05-10 02:28:49 -07001566 scic_sds_request_set_status(
1567 sci_req,
1568 SCU_NORMALIZE_COMPLETION_STATUS(completion_code),
Edmund Nadolskie3013702011-06-02 00:10:43 +00001569 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
Dan Williams5dec6f42011-05-10 02:28:49 -07001570
Edmund Nadolskie3013702011-06-02 00:10:43 +00001571 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001572 break;
1573 }
1574
1575 return status;
1576}
1577
Dan Williams5dec6f42011-05-10 02:28:49 -07001578static void scic_sds_stp_request_udma_complete_request(
1579 struct scic_sds_request *request,
1580 u32 scu_status,
1581 enum sci_status sci_status)
1582{
1583 scic_sds_request_set_status(request, scu_status, sci_status);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001584 sci_change_state(&request->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001585}
1586
1587static enum sci_status scic_sds_stp_request_udma_general_frame_handler(struct scic_sds_request *sci_req,
1588 u32 frame_index)
1589{
1590 struct scic_sds_controller *scic = sci_req->owning_controller;
1591 struct dev_to_host_fis *frame_header;
1592 enum sci_status status;
1593 u32 *frame_buffer;
1594
1595 status = scic_sds_unsolicited_frame_control_get_header(&scic->uf_control,
1596 frame_index,
1597 (void **)&frame_header);
1598
1599 if ((status == SCI_SUCCESS) &&
1600 (frame_header->fis_type == FIS_REGD2H)) {
1601 scic_sds_unsolicited_frame_control_get_buffer(&scic->uf_control,
1602 frame_index,
1603 (void **)&frame_buffer);
1604
1605 scic_sds_controller_copy_sata_response(&sci_req->stp.rsp,
1606 frame_header,
1607 frame_buffer);
1608 }
1609
1610 scic_sds_controller_release_frame(scic, frame_index);
1611
1612 return status;
1613}
1614
Edmund Nadolskie3013702011-06-02 00:10:43 +00001615enum sci_status
1616scic_sds_io_request_frame_handler(struct scic_sds_request *sci_req,
1617 u32 frame_index)
Dan Williamsd1c637c2011-05-11 08:27:47 -07001618{
1619 struct scic_sds_controller *scic = sci_req->owning_controller;
1620 struct scic_sds_stp_request *stp_req = &sci_req->stp.req;
1621 enum sci_base_request_states state;
1622 enum sci_status status;
1623 ssize_t word_cnt;
1624
Edmund Nadolskie3013702011-06-02 00:10:43 +00001625 state = sci_req->sm.current_state_id;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001626 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001627 case SCI_REQ_STARTED: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001628 struct ssp_frame_hdr ssp_hdr;
1629 void *frame_header;
1630
1631 scic_sds_unsolicited_frame_control_get_header(&scic->uf_control,
1632 frame_index,
1633 &frame_header);
1634
1635 word_cnt = sizeof(struct ssp_frame_hdr) / sizeof(u32);
1636 sci_swab32_cpy(&ssp_hdr, frame_header, word_cnt);
1637
1638 if (ssp_hdr.frame_type == SSP_RESPONSE) {
1639 struct ssp_response_iu *resp_iu;
1640 ssize_t word_cnt = SSP_RESP_IU_MAX_SIZE / sizeof(u32);
1641
1642 scic_sds_unsolicited_frame_control_get_buffer(&scic->uf_control,
1643 frame_index,
1644 (void **)&resp_iu);
1645
1646 sci_swab32_cpy(&sci_req->ssp.rsp, resp_iu, word_cnt);
1647
1648 resp_iu = &sci_req->ssp.rsp;
1649
1650 if (resp_iu->datapres == 0x01 ||
1651 resp_iu->datapres == 0x02) {
1652 scic_sds_request_set_status(sci_req,
1653 SCU_TASK_DONE_CHECK_RESPONSE,
1654 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
1655 } else
1656 scic_sds_request_set_status(sci_req,
1657 SCU_TASK_DONE_GOOD,
1658 SCI_SUCCESS);
1659 } else {
1660 /* not a response frame, why did it get forwarded? */
1661 dev_err(scic_to_dev(scic),
1662 "%s: SCIC IO Request 0x%p received unexpected "
1663 "frame %d type 0x%02x\n", __func__, sci_req,
1664 frame_index, ssp_hdr.frame_type);
1665 }
1666
1667 /*
Edmund Nadolskie3013702011-06-02 00:10:43 +00001668 * In any case we are done with this frame buffer return it to
1669 * the controller
Dan Williamsd1c637c2011-05-11 08:27:47 -07001670 */
1671 scic_sds_controller_release_frame(scic, frame_index);
1672
1673 return SCI_SUCCESS;
1674 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001675
1676 case SCI_REQ_TASK_WAIT_TC_RESP:
Dan Williamsd1c637c2011-05-11 08:27:47 -07001677 scic_sds_io_request_copy_response(sci_req);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001678 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001679 scic_sds_controller_release_frame(scic,frame_index);
1680 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001681
1682 case SCI_REQ_SMP_WAIT_RESP: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001683 struct smp_resp *rsp_hdr = &sci_req->smp.rsp;
1684 void *frame_header;
1685
1686 scic_sds_unsolicited_frame_control_get_header(&scic->uf_control,
1687 frame_index,
1688 &frame_header);
1689
1690 /* byte swap the header. */
1691 word_cnt = SMP_RESP_HDR_SZ / sizeof(u32);
1692 sci_swab32_cpy(rsp_hdr, frame_header, word_cnt);
1693
1694 if (rsp_hdr->frame_type == SMP_RESPONSE) {
1695 void *smp_resp;
1696
1697 scic_sds_unsolicited_frame_control_get_buffer(&scic->uf_control,
1698 frame_index,
1699 &smp_resp);
1700
1701 word_cnt = (sizeof(struct smp_req) - SMP_RESP_HDR_SZ) /
1702 sizeof(u32);
1703
1704 sci_swab32_cpy(((u8 *) rsp_hdr) + SMP_RESP_HDR_SZ,
1705 smp_resp, word_cnt);
1706
1707 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_GOOD,
1708 SCI_SUCCESS);
1709
Edmund Nadolskie3013702011-06-02 00:10:43 +00001710 sci_change_state(&sci_req->sm, SCI_REQ_SMP_WAIT_TC_COMP);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001711 } else {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001712 /*
1713 * This was not a response frame why did it get
1714 * forwarded?
1715 */
Dan Williamsd1c637c2011-05-11 08:27:47 -07001716 dev_err(scic_to_dev(scic),
Edmund Nadolskie3013702011-06-02 00:10:43 +00001717 "%s: SCIC SMP Request 0x%p received unexpected "
1718 "frame %d type 0x%02x\n",
1719 __func__,
1720 sci_req,
1721 frame_index,
1722 rsp_hdr->frame_type);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001723
1724 scic_sds_request_set_status(sci_req,
1725 SCU_TASK_DONE_SMP_FRM_TYPE_ERR,
1726 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
1727
Edmund Nadolskie3013702011-06-02 00:10:43 +00001728 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001729 }
1730
1731 scic_sds_controller_release_frame(scic, frame_index);
1732
1733 return SCI_SUCCESS;
1734 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001735
1736 case SCI_REQ_STP_UDMA_WAIT_TC_COMP:
1737 return scic_sds_stp_request_udma_general_frame_handler(sci_req,
1738 frame_index);
1739
1740 case SCI_REQ_STP_UDMA_WAIT_D2H:
Dan Williamsd1c637c2011-05-11 08:27:47 -07001741 /* Use the general frame handler to copy the resposne data */
Edmund Nadolskie3013702011-06-02 00:10:43 +00001742 status = scic_sds_stp_request_udma_general_frame_handler(sci_req,
1743 frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001744
1745 if (status != SCI_SUCCESS)
1746 return status;
1747
1748 scic_sds_stp_request_udma_complete_request(sci_req,
1749 SCU_TASK_DONE_CHECK_RESPONSE,
1750 SCI_FAILURE_IO_RESPONSE_VALID);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001751
Dan Williamsd1c637c2011-05-11 08:27:47 -07001752 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001753
1754 case SCI_REQ_STP_NON_DATA_WAIT_D2H: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001755 struct dev_to_host_fis *frame_header;
1756 u32 *frame_buffer;
1757
1758 status = scic_sds_unsolicited_frame_control_get_header(&scic->uf_control,
1759 frame_index,
1760 (void **)&frame_header);
1761
1762 if (status != SCI_SUCCESS) {
1763 dev_err(scic_to_dev(scic),
Edmund Nadolskie3013702011-06-02 00:10:43 +00001764 "%s: SCIC IO Request 0x%p could not get frame "
1765 "header for frame index %d, status %x\n",
1766 __func__,
1767 stp_req,
1768 frame_index,
1769 status);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001770
1771 return status;
1772 }
1773
1774 switch (frame_header->fis_type) {
1775 case FIS_REGD2H:
1776 scic_sds_unsolicited_frame_control_get_buffer(&scic->uf_control,
1777 frame_index,
1778 (void **)&frame_buffer);
1779
1780 scic_sds_controller_copy_sata_response(&sci_req->stp.rsp,
1781 frame_header,
1782 frame_buffer);
1783
1784 /* The command has completed with error */
1785 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_CHECK_RESPONSE,
1786 SCI_FAILURE_IO_RESPONSE_VALID);
1787 break;
1788
1789 default:
1790 dev_warn(scic_to_dev(scic),
1791 "%s: IO Request:0x%p Frame Id:%d protocol "
1792 "violation occurred\n", __func__, stp_req,
1793 frame_index);
1794
1795 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_UNEXP_FIS,
1796 SCI_FAILURE_PROTOCOL_VIOLATION);
1797 break;
1798 }
1799
Edmund Nadolskie3013702011-06-02 00:10:43 +00001800 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001801
1802 /* Frame has been decoded return it to the controller */
1803 scic_sds_controller_release_frame(scic, frame_index);
1804
1805 return status;
1806 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001807
1808 case SCI_REQ_STP_PIO_WAIT_FRAME: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001809 struct isci_request *ireq = sci_req_to_ireq(sci_req);
1810 struct sas_task *task = isci_request_access_task(ireq);
1811 struct dev_to_host_fis *frame_header;
1812 u32 *frame_buffer;
1813
1814 status = scic_sds_unsolicited_frame_control_get_header(&scic->uf_control,
1815 frame_index,
1816 (void **)&frame_header);
1817
1818 if (status != SCI_SUCCESS) {
1819 dev_err(scic_to_dev(scic),
Edmund Nadolskie3013702011-06-02 00:10:43 +00001820 "%s: SCIC IO Request 0x%p could not get frame "
1821 "header for frame index %d, status %x\n",
Dan Williamsd1c637c2011-05-11 08:27:47 -07001822 __func__, stp_req, frame_index, status);
1823 return status;
1824 }
1825
1826 switch (frame_header->fis_type) {
1827 case FIS_PIO_SETUP:
1828 /* Get from the frame buffer the PIO Setup Data */
1829 scic_sds_unsolicited_frame_control_get_buffer(&scic->uf_control,
1830 frame_index,
1831 (void **)&frame_buffer);
1832
Edmund Nadolskie3013702011-06-02 00:10:43 +00001833 /* Get the data from the PIO Setup The SCU Hardware
1834 * returns first word in the frame_header and the rest
1835 * of the data is in the frame buffer so we need to
1836 * back up one dword
Dan Williamsd1c637c2011-05-11 08:27:47 -07001837 */
1838
1839 /* transfer_count: first 16bits in the 4th dword */
1840 stp_req->type.pio.pio_transfer_bytes = frame_buffer[3] & 0xffff;
1841
1842 /* ending_status: 4th byte in the 3rd dword */
1843 stp_req->type.pio.ending_status = (frame_buffer[2] >> 24) & 0xff;
1844
1845 scic_sds_controller_copy_sata_response(&sci_req->stp.rsp,
1846 frame_header,
1847 frame_buffer);
1848
1849 sci_req->stp.rsp.status = stp_req->type.pio.ending_status;
1850
1851 /* The next state is dependent on whether the
1852 * request was PIO Data-in or Data out
1853 */
1854 if (task->data_dir == DMA_FROM_DEVICE) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001855 sci_change_state(&sci_req->sm, SCI_REQ_STP_PIO_DATA_IN);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001856 } else if (task->data_dir == DMA_TO_DEVICE) {
1857 /* Transmit data */
1858 status = scic_sds_stp_request_pio_data_out_transmit_data(sci_req);
1859 if (status != SCI_SUCCESS)
1860 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001861 sci_change_state(&sci_req->sm, SCI_REQ_STP_PIO_DATA_OUT);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001862 }
1863 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001864
Dan Williamsd1c637c2011-05-11 08:27:47 -07001865 case FIS_SETDEVBITS:
Edmund Nadolskie3013702011-06-02 00:10:43 +00001866 sci_change_state(&sci_req->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001867 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001868
Dan Williamsd1c637c2011-05-11 08:27:47 -07001869 case FIS_REGD2H:
1870 if (frame_header->status & ATA_BUSY) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001871 /*
1872 * Now why is the drive sending a D2H Register
1873 * FIS when it is still busy? Do nothing since
1874 * we are still in the right state.
Dan Williamsd1c637c2011-05-11 08:27:47 -07001875 */
1876 dev_dbg(scic_to_dev(scic),
1877 "%s: SCIC PIO Request 0x%p received "
1878 "D2H Register FIS with BSY status "
Edmund Nadolskie3013702011-06-02 00:10:43 +00001879 "0x%x\n",
1880 __func__,
1881 stp_req,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001882 frame_header->status);
1883 break;
1884 }
1885
1886 scic_sds_unsolicited_frame_control_get_buffer(&scic->uf_control,
1887 frame_index,
1888 (void **)&frame_buffer);
1889
1890 scic_sds_controller_copy_sata_response(&sci_req->stp.req,
1891 frame_header,
1892 frame_buffer);
1893
1894 scic_sds_request_set_status(sci_req,
1895 SCU_TASK_DONE_CHECK_RESPONSE,
1896 SCI_FAILURE_IO_RESPONSE_VALID);
1897
Edmund Nadolskie3013702011-06-02 00:10:43 +00001898 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001899 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001900
Dan Williamsd1c637c2011-05-11 08:27:47 -07001901 default:
1902 /* FIXME: what do we do here? */
1903 break;
1904 }
1905
1906 /* Frame is decoded return it to the controller */
1907 scic_sds_controller_release_frame(scic, frame_index);
1908
1909 return status;
1910 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001911
1912 case SCI_REQ_STP_PIO_DATA_IN: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001913 struct dev_to_host_fis *frame_header;
1914 struct sata_fis_data *frame_buffer;
1915
1916 status = scic_sds_unsolicited_frame_control_get_header(&scic->uf_control,
1917 frame_index,
1918 (void **)&frame_header);
1919
1920 if (status != SCI_SUCCESS) {
1921 dev_err(scic_to_dev(scic),
Edmund Nadolskie3013702011-06-02 00:10:43 +00001922 "%s: SCIC IO Request 0x%p could not get frame "
1923 "header for frame index %d, status %x\n",
1924 __func__,
1925 stp_req,
1926 frame_index,
1927 status);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001928 return status;
1929 }
1930
1931 if (frame_header->fis_type != FIS_DATA) {
1932 dev_err(scic_to_dev(scic),
1933 "%s: SCIC PIO Request 0x%p received frame %d "
1934 "with fis type 0x%02x when expecting a data "
Edmund Nadolskie3013702011-06-02 00:10:43 +00001935 "fis.\n",
1936 __func__,
1937 stp_req,
1938 frame_index,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001939 frame_header->fis_type);
1940
1941 scic_sds_request_set_status(sci_req,
1942 SCU_TASK_DONE_GOOD,
1943 SCI_FAILURE_IO_REQUIRES_SCSI_ABORT);
1944
Edmund Nadolskie3013702011-06-02 00:10:43 +00001945 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001946
1947 /* Frame is decoded return it to the controller */
1948 scic_sds_controller_release_frame(scic, frame_index);
1949 return status;
1950 }
1951
1952 if (stp_req->type.pio.request_current.sgl_pair == NULL) {
1953 sci_req->saved_rx_frame_index = frame_index;
1954 stp_req->type.pio.pio_transfer_bytes = 0;
1955 } else {
1956 scic_sds_unsolicited_frame_control_get_buffer(&scic->uf_control,
1957 frame_index,
1958 (void **)&frame_buffer);
1959
1960 status = scic_sds_stp_request_pio_data_in_copy_data(stp_req,
1961 (u8 *)frame_buffer);
1962
1963 /* Frame is decoded return it to the controller */
1964 scic_sds_controller_release_frame(scic, frame_index);
1965 }
1966
1967 /* Check for the end of the transfer, are there more
1968 * bytes remaining for this data transfer
1969 */
1970 if (status != SCI_SUCCESS ||
1971 stp_req->type.pio.pio_transfer_bytes != 0)
1972 return status;
1973
1974 if ((stp_req->type.pio.ending_status & ATA_BUSY) == 0) {
1975 scic_sds_request_set_status(sci_req,
1976 SCU_TASK_DONE_CHECK_RESPONSE,
1977 SCI_FAILURE_IO_RESPONSE_VALID);
1978
Edmund Nadolskie3013702011-06-02 00:10:43 +00001979 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001980 } else {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001981 sci_change_state(&sci_req->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001982 }
1983 return status;
1984 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001985
1986 case SCI_REQ_STP_SOFT_RESET_WAIT_D2H: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001987 struct dev_to_host_fis *frame_header;
1988 u32 *frame_buffer;
1989
1990 status = scic_sds_unsolicited_frame_control_get_header(&scic->uf_control,
1991 frame_index,
1992 (void **)&frame_header);
1993 if (status != SCI_SUCCESS) {
1994 dev_err(scic_to_dev(scic),
Edmund Nadolskie3013702011-06-02 00:10:43 +00001995 "%s: SCIC IO Request 0x%p could not get frame "
1996 "header for frame index %d, status %x\n",
1997 __func__,
1998 stp_req,
1999 frame_index,
2000 status);
Dan Williamsd1c637c2011-05-11 08:27:47 -07002001 return status;
2002 }
2003
2004 switch (frame_header->fis_type) {
2005 case FIS_REGD2H:
2006 scic_sds_unsolicited_frame_control_get_buffer(&scic->uf_control,
2007 frame_index,
2008 (void **)&frame_buffer);
2009
2010 scic_sds_controller_copy_sata_response(&sci_req->stp.rsp,
2011 frame_header,
2012 frame_buffer);
2013
2014 /* The command has completed with error */
2015 scic_sds_request_set_status(sci_req,
2016 SCU_TASK_DONE_CHECK_RESPONSE,
2017 SCI_FAILURE_IO_RESPONSE_VALID);
2018 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002019
Dan Williamsd1c637c2011-05-11 08:27:47 -07002020 default:
2021 dev_warn(scic_to_dev(scic),
2022 "%s: IO Request:0x%p Frame Id:%d protocol "
Edmund Nadolskie3013702011-06-02 00:10:43 +00002023 "violation occurred\n",
2024 __func__,
2025 stp_req,
Dan Williamsd1c637c2011-05-11 08:27:47 -07002026 frame_index);
2027
Edmund Nadolskie3013702011-06-02 00:10:43 +00002028 scic_sds_request_set_status(sci_req,
2029 SCU_TASK_DONE_UNEXP_FIS,
Dan Williamsd1c637c2011-05-11 08:27:47 -07002030 SCI_FAILURE_PROTOCOL_VIOLATION);
2031 break;
2032 }
2033
Edmund Nadolskie3013702011-06-02 00:10:43 +00002034 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07002035
2036 /* Frame has been decoded return it to the controller */
2037 scic_sds_controller_release_frame(scic, frame_index);
2038
2039 return status;
2040 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00002041 case SCI_REQ_ABORTING:
2042 /*
2043 * TODO: Is it even possible to get an unsolicited frame in the
Dan Williamsd1c637c2011-05-11 08:27:47 -07002044 * aborting state?
2045 */
2046 scic_sds_controller_release_frame(scic, frame_index);
2047 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002048
Dan Williamsd1c637c2011-05-11 08:27:47 -07002049 default:
2050 dev_warn(scic_to_dev(scic),
Edmund Nadolskie3013702011-06-02 00:10:43 +00002051 "%s: SCIC IO Request given unexpected frame %x while "
2052 "in state %d\n",
2053 __func__,
2054 frame_index,
2055 state);
Dan Williamsd1c637c2011-05-11 08:27:47 -07002056
2057 scic_sds_controller_release_frame(scic, frame_index);
2058 return SCI_FAILURE_INVALID_STATE;
2059 }
2060}
2061
Dan Williamsa7e255a2011-05-11 08:27:47 -07002062static enum sci_status stp_request_udma_await_tc_event(struct scic_sds_request *sci_req,
2063 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07002064{
2065 enum sci_status status = SCI_SUCCESS;
2066
2067 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
2068 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
2069 scic_sds_stp_request_udma_complete_request(sci_req,
2070 SCU_TASK_DONE_GOOD,
2071 SCI_SUCCESS);
2072 break;
2073 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_FIS):
2074 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_REG_ERR):
Dan Williamsa7e255a2011-05-11 08:27:47 -07002075 /* We must check ther response buffer to see if the D2H
2076 * Register FIS was received before we got the TC
2077 * completion.
2078 */
Dan Williams5dec6f42011-05-10 02:28:49 -07002079 if (sci_req->stp.rsp.fis_type == FIS_REGD2H) {
2080 scic_sds_remote_device_suspend(sci_req->target_device,
2081 SCU_EVENT_SPECIFIC(SCU_NORMALIZE_COMPLETION_STATUS(completion_code)));
2082
2083 scic_sds_stp_request_udma_complete_request(sci_req,
2084 SCU_TASK_DONE_CHECK_RESPONSE,
2085 SCI_FAILURE_IO_RESPONSE_VALID);
2086 } else {
Dan Williamsa7e255a2011-05-11 08:27:47 -07002087 /* If we have an error completion status for the
2088 * TC then we can expect a D2H register FIS from
2089 * the device so we must change state to wait
2090 * for it
2091 */
Edmund Nadolskie3013702011-06-02 00:10:43 +00002092 sci_change_state(&sci_req->sm, SCI_REQ_STP_UDMA_WAIT_D2H);
Dan Williams5dec6f42011-05-10 02:28:49 -07002093 }
2094 break;
2095
Dan Williamsa7e255a2011-05-11 08:27:47 -07002096 /* TODO Check to see if any of these completion status need to
2097 * wait for the device to host register fis.
2098 */
2099 /* TODO We can retry the command for SCU_TASK_DONE_CMD_LL_R_ERR
2100 * - this comes only for B0
2101 */
Dan Williams5dec6f42011-05-10 02:28:49 -07002102 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_INV_FIS_LEN):
2103 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_MAX_PLD_ERR):
2104 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_R_ERR):
2105 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CMD_LL_R_ERR):
2106 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CRC_ERR):
2107 scic_sds_remote_device_suspend(sci_req->target_device,
2108 SCU_EVENT_SPECIFIC(SCU_NORMALIZE_COMPLETION_STATUS(completion_code)));
2109 /* Fall through to the default case */
2110 default:
2111 /* All other completion status cause the IO to be complete. */
2112 scic_sds_stp_request_udma_complete_request(sci_req,
2113 SCU_NORMALIZE_COMPLETION_STATUS(completion_code),
2114 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
2115 break;
2116 }
2117
2118 return status;
2119}
2120
Edmund Nadolskie3013702011-06-02 00:10:43 +00002121static enum sci_status
2122stp_request_soft_reset_await_h2d_asserted_tc_event(struct scic_sds_request *sci_req,
2123 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07002124{
2125 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
2126 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williamsa7e255a2011-05-11 08:27:47 -07002127 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_GOOD,
2128 SCI_SUCCESS);
Dan Williams5dec6f42011-05-10 02:28:49 -07002129
Edmund Nadolskie3013702011-06-02 00:10:43 +00002130 sci_change_state(&sci_req->sm, SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG);
Dan Williams5dec6f42011-05-10 02:28:49 -07002131 break;
2132
2133 default:
2134 /*
Edmund Nadolskie3013702011-06-02 00:10:43 +00002135 * All other completion status cause the IO to be complete.
2136 * If a NAK was received, then it is up to the user to retry
2137 * the request.
2138 */
Dan Williamsa7e255a2011-05-11 08:27:47 -07002139 scic_sds_request_set_status(sci_req,
Edmund Nadolskie3013702011-06-02 00:10:43 +00002140 SCU_NORMALIZE_COMPLETION_STATUS(completion_code),
2141 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
Dan Williams5dec6f42011-05-10 02:28:49 -07002142
Edmund Nadolskie3013702011-06-02 00:10:43 +00002143 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07002144 break;
2145 }
2146
2147 return SCI_SUCCESS;
2148}
2149
Edmund Nadolskie3013702011-06-02 00:10:43 +00002150static enum sci_status
2151stp_request_soft_reset_await_h2d_diagnostic_tc_event(struct scic_sds_request *sci_req,
2152 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07002153{
2154 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
2155 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
2156 scic_sds_request_set_status(sci_req, SCU_TASK_DONE_GOOD,
2157 SCI_SUCCESS);
2158
Edmund Nadolskie3013702011-06-02 00:10:43 +00002159 sci_change_state(&sci_req->sm, SCI_REQ_STP_SOFT_RESET_WAIT_D2H);
Dan Williams5dec6f42011-05-10 02:28:49 -07002160 break;
2161
2162 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07002163 /* All other completion status cause the IO to be complete. If
2164 * a NAK was received, then it is up to the user to retry the
2165 * request.
2166 */
2167 scic_sds_request_set_status(sci_req,
Dan Williams5dec6f42011-05-10 02:28:49 -07002168 SCU_NORMALIZE_COMPLETION_STATUS(completion_code),
Dan Williamsa7e255a2011-05-11 08:27:47 -07002169 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR);
Dan Williams5dec6f42011-05-10 02:28:49 -07002170
Edmund Nadolskie3013702011-06-02 00:10:43 +00002171 sci_change_state(&sci_req->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07002172 break;
2173 }
2174
2175 return SCI_SUCCESS;
2176}
2177
Dan Williamsa7e255a2011-05-11 08:27:47 -07002178enum sci_status
Edmund Nadolskie3013702011-06-02 00:10:43 +00002179scic_sds_io_request_tc_completion(struct scic_sds_request *sci_req,
2180 u32 completion_code)
Dan Williamsa7e255a2011-05-11 08:27:47 -07002181{
2182 enum sci_base_request_states state;
2183 struct scic_sds_controller *scic = sci_req->owning_controller;
2184
Edmund Nadolskie3013702011-06-02 00:10:43 +00002185 state = sci_req->sm.current_state_id;
Dan Williamsa7e255a2011-05-11 08:27:47 -07002186
2187 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002188 case SCI_REQ_STARTED:
2189 return request_started_state_tc_event(sci_req, completion_code);
2190
2191 case SCI_REQ_TASK_WAIT_TC_COMP:
2192 return ssp_task_request_await_tc_event(sci_req,
2193 completion_code);
2194
2195 case SCI_REQ_SMP_WAIT_RESP:
2196 return smp_request_await_response_tc_event(sci_req,
2197 completion_code);
2198
2199 case SCI_REQ_SMP_WAIT_TC_COMP:
2200 return smp_request_await_tc_event(sci_req, completion_code);
2201
2202 case SCI_REQ_STP_UDMA_WAIT_TC_COMP:
2203 return stp_request_udma_await_tc_event(sci_req,
2204 completion_code);
2205
2206 case SCI_REQ_STP_NON_DATA_WAIT_H2D:
2207 return stp_request_non_data_await_h2d_tc_event(sci_req,
2208 completion_code);
2209
2210 case SCI_REQ_STP_PIO_WAIT_H2D:
2211 return stp_request_pio_await_h2d_completion_tc_event(sci_req,
2212 completion_code);
2213
2214 case SCI_REQ_STP_PIO_DATA_OUT:
2215 return pio_data_out_tx_done_tc_event(sci_req, completion_code);
2216
2217 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED:
2218 return stp_request_soft_reset_await_h2d_asserted_tc_event(sci_req,
2219 completion_code);
2220
2221 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG:
2222 return stp_request_soft_reset_await_h2d_diagnostic_tc_event(sci_req,
2223 completion_code);
2224
2225 case SCI_REQ_ABORTING:
2226 return request_aborting_state_tc_event(sci_req,
2227 completion_code);
2228
2229 default:
2230 dev_warn(scic_to_dev(scic),
2231 "%s: SCIC IO Request given task completion "
2232 "notification %x while in wrong state %d\n",
2233 __func__,
2234 completion_code,
2235 state);
2236 return SCI_FAILURE_INVALID_STATE;
Dan Williamsa7e255a2011-05-11 08:27:47 -07002237 }
2238}
2239
Dan Williams6f231dd2011-07-02 22:56:22 -07002240/**
2241 * isci_request_process_response_iu() - This function sets the status and
2242 * response iu, in the task struct, from the request object for the upper
2243 * layer driver.
2244 * @sas_task: This parameter is the task struct from the upper layer driver.
2245 * @resp_iu: This parameter points to the response iu of the completed request.
2246 * @dev: This parameter specifies the linux device struct.
2247 *
2248 * none.
2249 */
2250static void isci_request_process_response_iu(
2251 struct sas_task *task,
2252 struct ssp_response_iu *resp_iu,
2253 struct device *dev)
2254{
2255 dev_dbg(dev,
2256 "%s: resp_iu = %p "
2257 "resp_iu->status = 0x%x,\nresp_iu->datapres = %d "
2258 "resp_iu->response_data_len = %x, "
2259 "resp_iu->sense_data_len = %x\nrepsonse data: ",
2260 __func__,
2261 resp_iu,
2262 resp_iu->status,
2263 resp_iu->datapres,
2264 resp_iu->response_data_len,
2265 resp_iu->sense_data_len);
2266
2267 task->task_status.stat = resp_iu->status;
2268
2269 /* libsas updates the task status fields based on the response iu. */
2270 sas_ssp_task_response(dev, task, resp_iu);
2271}
2272
2273/**
2274 * isci_request_set_open_reject_status() - This function prepares the I/O
2275 * completion for OPEN_REJECT conditions.
2276 * @request: This parameter is the completed isci_request object.
2277 * @response_ptr: This parameter specifies the service response for the I/O.
2278 * @status_ptr: This parameter specifies the exec status for the I/O.
2279 * @complete_to_host_ptr: This parameter specifies the action to be taken by
2280 * the LLDD with respect to completing this request or forcing an abort
2281 * condition on the I/O.
2282 * @open_rej_reason: This parameter specifies the encoded reason for the
2283 * abandon-class reject.
2284 *
2285 * none.
2286 */
2287static void isci_request_set_open_reject_status(
2288 struct isci_request *request,
2289 struct sas_task *task,
2290 enum service_response *response_ptr,
2291 enum exec_status *status_ptr,
2292 enum isci_completion_selection *complete_to_host_ptr,
2293 enum sas_open_rej_reason open_rej_reason)
2294{
2295 /* Task in the target is done. */
2296 request->complete_in_target = true;
2297 *response_ptr = SAS_TASK_UNDELIVERED;
2298 *status_ptr = SAS_OPEN_REJECT;
2299 *complete_to_host_ptr = isci_perform_normal_io_completion;
2300 task->task_status.open_rej_reason = open_rej_reason;
2301}
2302
2303/**
2304 * isci_request_handle_controller_specific_errors() - This function decodes
2305 * controller-specific I/O completion error conditions.
2306 * @request: This parameter is the completed isci_request object.
2307 * @response_ptr: This parameter specifies the service response for the I/O.
2308 * @status_ptr: This parameter specifies the exec status for the I/O.
2309 * @complete_to_host_ptr: This parameter specifies the action to be taken by
2310 * the LLDD with respect to completing this request or forcing an abort
2311 * condition on the I/O.
2312 *
2313 * none.
2314 */
2315static void isci_request_handle_controller_specific_errors(
Dan Williams209fae12011-06-13 17:39:44 -07002316 struct isci_remote_device *idev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002317 struct isci_request *request,
2318 struct sas_task *task,
2319 enum service_response *response_ptr,
2320 enum exec_status *status_ptr,
2321 enum isci_completion_selection *complete_to_host_ptr)
2322{
2323 unsigned int cstatus;
2324
Dan Williamsf1f52e72011-05-10 02:28:45 -07002325 cstatus = request->sci.scu_status;
Dan Williams6f231dd2011-07-02 22:56:22 -07002326
2327 dev_dbg(&request->isci_host->pdev->dev,
2328 "%s: %p SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR "
2329 "- controller status = 0x%x\n",
2330 __func__, request, cstatus);
2331
2332 /* Decode the controller-specific errors; most
2333 * important is to recognize those conditions in which
2334 * the target may still have a task outstanding that
2335 * must be aborted.
2336 *
2337 * Note that there are SCU completion codes being
2338 * named in the decode below for which SCIC has already
2339 * done work to handle them in a way other than as
2340 * a controller-specific completion code; these are left
2341 * in the decode below for completeness sake.
2342 */
2343 switch (cstatus) {
2344 case SCU_TASK_DONE_DMASETUP_DIRERR:
2345 /* Also SCU_TASK_DONE_SMP_FRM_TYPE_ERR: */
2346 case SCU_TASK_DONE_XFERCNT_ERR:
2347 /* Also SCU_TASK_DONE_SMP_UFI_ERR: */
2348 if (task->task_proto == SAS_PROTOCOL_SMP) {
2349 /* SCU_TASK_DONE_SMP_UFI_ERR == Task Done. */
2350 *response_ptr = SAS_TASK_COMPLETE;
2351
2352 /* See if the device has been/is being stopped. Note
2353 * that we ignore the quiesce state, since we are
2354 * concerned about the actual device state.
2355 */
Dan Williams209fae12011-06-13 17:39:44 -07002356 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002357 *status_ptr = SAS_DEVICE_UNKNOWN;
2358 else
2359 *status_ptr = SAS_ABORTED_TASK;
2360
2361 request->complete_in_target = true;
2362
2363 *complete_to_host_ptr =
2364 isci_perform_normal_io_completion;
2365 } else {
2366 /* Task in the target is not done. */
2367 *response_ptr = SAS_TASK_UNDELIVERED;
2368
Dan Williams209fae12011-06-13 17:39:44 -07002369 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002370 *status_ptr = SAS_DEVICE_UNKNOWN;
2371 else
2372 *status_ptr = SAM_STAT_TASK_ABORTED;
2373
2374 request->complete_in_target = false;
2375
2376 *complete_to_host_ptr =
2377 isci_perform_error_io_completion;
2378 }
2379
2380 break;
2381
2382 case SCU_TASK_DONE_CRC_ERR:
2383 case SCU_TASK_DONE_NAK_CMD_ERR:
2384 case SCU_TASK_DONE_EXCESS_DATA:
2385 case SCU_TASK_DONE_UNEXP_FIS:
2386 /* Also SCU_TASK_DONE_UNEXP_RESP: */
2387 case SCU_TASK_DONE_VIIT_ENTRY_NV: /* TODO - conditions? */
2388 case SCU_TASK_DONE_IIT_ENTRY_NV: /* TODO - conditions? */
2389 case SCU_TASK_DONE_RNCNV_OUTBOUND: /* TODO - conditions? */
2390 /* These are conditions in which the target
2391 * has completed the task, so that no cleanup
2392 * is necessary.
2393 */
2394 *response_ptr = SAS_TASK_COMPLETE;
2395
2396 /* See if the device has been/is being stopped. Note
2397 * that we ignore the quiesce state, since we are
2398 * concerned about the actual device state.
2399 */
Dan Williams209fae12011-06-13 17:39:44 -07002400 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002401 *status_ptr = SAS_DEVICE_UNKNOWN;
2402 else
2403 *status_ptr = SAS_ABORTED_TASK;
2404
2405 request->complete_in_target = true;
2406
2407 *complete_to_host_ptr = isci_perform_normal_io_completion;
2408 break;
2409
2410
2411 /* Note that the only open reject completion codes seen here will be
2412 * abandon-class codes; all others are automatically retried in the SCU.
2413 */
2414 case SCU_TASK_OPEN_REJECT_WRONG_DESTINATION:
2415
2416 isci_request_set_open_reject_status(
2417 request, task, response_ptr, status_ptr,
2418 complete_to_host_ptr, SAS_OREJ_WRONG_DEST);
2419 break;
2420
2421 case SCU_TASK_OPEN_REJECT_ZONE_VIOLATION:
2422
2423 /* Note - the return of AB0 will change when
2424 * libsas implements detection of zone violations.
2425 */
2426 isci_request_set_open_reject_status(
2427 request, task, response_ptr, status_ptr,
2428 complete_to_host_ptr, SAS_OREJ_RESV_AB0);
2429 break;
2430
2431 case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_1:
2432
2433 isci_request_set_open_reject_status(
2434 request, task, response_ptr, status_ptr,
2435 complete_to_host_ptr, SAS_OREJ_RESV_AB1);
2436 break;
2437
2438 case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_2:
2439
2440 isci_request_set_open_reject_status(
2441 request, task, response_ptr, status_ptr,
2442 complete_to_host_ptr, SAS_OREJ_RESV_AB2);
2443 break;
2444
2445 case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_3:
2446
2447 isci_request_set_open_reject_status(
2448 request, task, response_ptr, status_ptr,
2449 complete_to_host_ptr, SAS_OREJ_RESV_AB3);
2450 break;
2451
2452 case SCU_TASK_OPEN_REJECT_BAD_DESTINATION:
2453
2454 isci_request_set_open_reject_status(
2455 request, task, response_ptr, status_ptr,
2456 complete_to_host_ptr, SAS_OREJ_BAD_DEST);
2457 break;
2458
2459 case SCU_TASK_OPEN_REJECT_STP_RESOURCES_BUSY:
2460
2461 isci_request_set_open_reject_status(
2462 request, task, response_ptr, status_ptr,
2463 complete_to_host_ptr, SAS_OREJ_STP_NORES);
2464 break;
2465
2466 case SCU_TASK_OPEN_REJECT_PROTOCOL_NOT_SUPPORTED:
2467
2468 isci_request_set_open_reject_status(
2469 request, task, response_ptr, status_ptr,
2470 complete_to_host_ptr, SAS_OREJ_EPROTO);
2471 break;
2472
2473 case SCU_TASK_OPEN_REJECT_CONNECTION_RATE_NOT_SUPPORTED:
2474
2475 isci_request_set_open_reject_status(
2476 request, task, response_ptr, status_ptr,
2477 complete_to_host_ptr, SAS_OREJ_CONN_RATE);
2478 break;
2479
2480 case SCU_TASK_DONE_LL_R_ERR:
2481 /* Also SCU_TASK_DONE_ACK_NAK_TO: */
2482 case SCU_TASK_DONE_LL_PERR:
2483 case SCU_TASK_DONE_LL_SY_TERM:
2484 /* Also SCU_TASK_DONE_NAK_ERR:*/
2485 case SCU_TASK_DONE_LL_LF_TERM:
2486 /* Also SCU_TASK_DONE_DATA_LEN_ERR: */
2487 case SCU_TASK_DONE_LL_ABORT_ERR:
2488 case SCU_TASK_DONE_SEQ_INV_TYPE:
2489 /* Also SCU_TASK_DONE_UNEXP_XR: */
2490 case SCU_TASK_DONE_XR_IU_LEN_ERR:
2491 case SCU_TASK_DONE_INV_FIS_LEN:
2492 /* Also SCU_TASK_DONE_XR_WD_LEN: */
2493 case SCU_TASK_DONE_SDMA_ERR:
2494 case SCU_TASK_DONE_OFFSET_ERR:
2495 case SCU_TASK_DONE_MAX_PLD_ERR:
2496 case SCU_TASK_DONE_LF_ERR:
2497 case SCU_TASK_DONE_SMP_RESP_TO_ERR: /* Escalate to dev reset? */
2498 case SCU_TASK_DONE_SMP_LL_RX_ERR:
2499 case SCU_TASK_DONE_UNEXP_DATA:
2500 case SCU_TASK_DONE_UNEXP_SDBFIS:
2501 case SCU_TASK_DONE_REG_ERR:
2502 case SCU_TASK_DONE_SDB_ERR:
2503 case SCU_TASK_DONE_TASK_ABORT:
2504 default:
2505 /* Task in the target is not done. */
2506 *response_ptr = SAS_TASK_UNDELIVERED;
2507 *status_ptr = SAM_STAT_TASK_ABORTED;
Dan Williams6f231dd2011-07-02 22:56:22 -07002508
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002509 if (task->task_proto == SAS_PROTOCOL_SMP) {
2510 request->complete_in_target = true;
2511
2512 *complete_to_host_ptr = isci_perform_normal_io_completion;
2513 } else {
2514 request->complete_in_target = false;
2515
2516 *complete_to_host_ptr = isci_perform_error_io_completion;
2517 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002518 break;
2519 }
2520}
2521
2522/**
2523 * isci_task_save_for_upper_layer_completion() - This function saves the
2524 * request for later completion to the upper layer driver.
2525 * @host: This parameter is a pointer to the host on which the the request
2526 * should be queued (either as an error or success).
2527 * @request: This parameter is the completed request.
2528 * @response: This parameter is the response code for the completed task.
2529 * @status: This parameter is the status code for the completed task.
2530 *
2531 * none.
2532 */
2533static void isci_task_save_for_upper_layer_completion(
2534 struct isci_host *host,
2535 struct isci_request *request,
2536 enum service_response response,
2537 enum exec_status status,
2538 enum isci_completion_selection task_notification_selection)
2539{
2540 struct sas_task *task = isci_request_access_task(request);
2541
Jeff Skirvinec6c9632011-03-04 14:06:44 -08002542 task_notification_selection
2543 = isci_task_set_completion_status(task, response, status,
2544 task_notification_selection);
Dan Williams6f231dd2011-07-02 22:56:22 -07002545
2546 /* Tasks aborted specifically by a call to the lldd_abort_task
2547 * function should not be completed to the host in the regular path.
2548 */
2549 switch (task_notification_selection) {
2550
2551 case isci_perform_normal_io_completion:
2552
2553 /* Normal notification (task_done) */
2554 dev_dbg(&host->pdev->dev,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002555 "%s: Normal - task = %p, response=%d (%d), status=%d (%d)\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002556 __func__,
2557 task,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002558 task->task_status.resp, response,
2559 task->task_status.stat, status);
Dan Williams6f231dd2011-07-02 22:56:22 -07002560 /* Add to the completed list. */
2561 list_add(&request->completed_node,
2562 &host->requests_to_complete);
Jeff Skirvinec6c9632011-03-04 14:06:44 -08002563
2564 /* Take the request off the device's pending request list. */
2565 list_del_init(&request->dev_node);
Dan Williams6f231dd2011-07-02 22:56:22 -07002566 break;
2567
2568 case isci_perform_aborted_io_completion:
Jeff Skirvina5fde222011-03-04 14:06:42 -08002569 /* No notification to libsas because this request is
2570 * already in the abort path.
Dan Williams6f231dd2011-07-02 22:56:22 -07002571 */
2572 dev_warn(&host->pdev->dev,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002573 "%s: Aborted - task = %p, response=%d (%d), status=%d (%d)\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002574 __func__,
2575 task,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002576 task->task_status.resp, response,
2577 task->task_status.stat, status);
Jeff Skirvina5fde222011-03-04 14:06:42 -08002578
2579 /* Wake up whatever process was waiting for this
2580 * request to complete.
2581 */
2582 WARN_ON(request->io_request_completion == NULL);
2583
2584 if (request->io_request_completion != NULL) {
2585
2586 /* Signal whoever is waiting that this
2587 * request is complete.
2588 */
2589 complete(request->io_request_completion);
2590 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002591 break;
2592
2593 case isci_perform_error_io_completion:
2594 /* Use sas_task_abort */
2595 dev_warn(&host->pdev->dev,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002596 "%s: Error - task = %p, response=%d (%d), status=%d (%d)\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002597 __func__,
2598 task,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002599 task->task_status.resp, response,
2600 task->task_status.stat, status);
Dan Williams6f231dd2011-07-02 22:56:22 -07002601 /* Add to the aborted list. */
2602 list_add(&request->completed_node,
Jeff Skirvin11b00c12011-03-04 14:06:40 -08002603 &host->requests_to_errorback);
Dan Williams6f231dd2011-07-02 22:56:22 -07002604 break;
2605
2606 default:
2607 dev_warn(&host->pdev->dev,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002608 "%s: Unknown - task = %p, response=%d (%d), status=%d (%d)\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002609 __func__,
2610 task,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002611 task->task_status.resp, response,
2612 task->task_status.stat, status);
Dan Williams6f231dd2011-07-02 22:56:22 -07002613
Jeff Skirvina5fde222011-03-04 14:06:42 -08002614 /* Add to the error to libsas list. */
Dan Williams6f231dd2011-07-02 22:56:22 -07002615 list_add(&request->completed_node,
Jeff Skirvin11b00c12011-03-04 14:06:40 -08002616 &host->requests_to_errorback);
Dan Williams6f231dd2011-07-02 22:56:22 -07002617 break;
2618 }
2619}
2620
Dan Williamsf1f52e72011-05-10 02:28:45 -07002621static void isci_request_io_request_complete(struct isci_host *isci_host,
2622 struct isci_request *request,
2623 enum sci_io_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -07002624{
2625 struct sas_task *task = isci_request_access_task(request);
2626 struct ssp_response_iu *resp_iu;
2627 void *resp_buf;
2628 unsigned long task_flags;
Dan Williams209fae12011-06-13 17:39:44 -07002629 struct isci_remote_device *idev = isci_lookup_device(task->dev);
Dan Williams6f231dd2011-07-02 22:56:22 -07002630 enum service_response response = SAS_TASK_UNDELIVERED;
2631 enum exec_status status = SAS_ABORTED_TASK;
2632 enum isci_request_status request_status;
2633 enum isci_completion_selection complete_to_host
2634 = isci_perform_normal_io_completion;
2635
2636 dev_dbg(&isci_host->pdev->dev,
2637 "%s: request = %p, task = %p,\n"
2638 "task->data_dir = %d completion_status = 0x%x\n",
2639 __func__,
2640 request,
2641 task,
2642 task->data_dir,
2643 completion_status);
2644
Jeff Skirvina5fde222011-03-04 14:06:42 -08002645 spin_lock(&request->state_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07002646 request_status = isci_request_get_state(request);
Dan Williams6f231dd2011-07-02 22:56:22 -07002647
2648 /* Decode the request status. Note that if the request has been
2649 * aborted by a task management function, we don't care
2650 * what the status is.
2651 */
2652 switch (request_status) {
2653
2654 case aborted:
2655 /* "aborted" indicates that the request was aborted by a task
2656 * management function, since once a task management request is
2657 * perfomed by the device, the request only completes because
2658 * of the subsequent driver terminate.
2659 *
2660 * Aborted also means an external thread is explicitly managing
2661 * this request, so that we do not complete it up the stack.
2662 *
2663 * The target is still there (since the TMF was successful).
2664 */
2665 request->complete_in_target = true;
2666 response = SAS_TASK_COMPLETE;
2667
2668 /* See if the device has been/is being stopped. Note
2669 * that we ignore the quiesce state, since we are
2670 * concerned about the actual device state.
2671 */
Dan Williams209fae12011-06-13 17:39:44 -07002672 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002673 status = SAS_DEVICE_UNKNOWN;
2674 else
2675 status = SAS_ABORTED_TASK;
2676
2677 complete_to_host = isci_perform_aborted_io_completion;
2678 /* This was an aborted request. */
Jeff Skirvina5fde222011-03-04 14:06:42 -08002679
2680 spin_unlock(&request->state_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07002681 break;
2682
2683 case aborting:
2684 /* aborting means that the task management function tried and
2685 * failed to abort the request. We need to note the request
2686 * as SAS_TASK_UNDELIVERED, so that the scsi mid layer marks the
2687 * target as down.
2688 *
2689 * Aborting also means an external thread is explicitly managing
2690 * this request, so that we do not complete it up the stack.
2691 */
2692 request->complete_in_target = true;
2693 response = SAS_TASK_UNDELIVERED;
2694
Dan Williams209fae12011-06-13 17:39:44 -07002695 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002696 /* The device has been /is being stopped. Note that
2697 * we ignore the quiesce state, since we are
2698 * concerned about the actual device state.
2699 */
2700 status = SAS_DEVICE_UNKNOWN;
2701 else
2702 status = SAS_PHY_DOWN;
2703
2704 complete_to_host = isci_perform_aborted_io_completion;
2705
2706 /* This was an aborted request. */
Jeff Skirvina5fde222011-03-04 14:06:42 -08002707
2708 spin_unlock(&request->state_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07002709 break;
2710
2711 case terminating:
2712
2713 /* This was an terminated request. This happens when
2714 * the I/O is being terminated because of an action on
2715 * the device (reset, tear down, etc.), and the I/O needs
2716 * to be completed up the stack.
2717 */
2718 request->complete_in_target = true;
2719 response = SAS_TASK_UNDELIVERED;
2720
2721 /* See if the device has been/is being stopped. Note
2722 * that we ignore the quiesce state, since we are
2723 * concerned about the actual device state.
2724 */
Dan Williams209fae12011-06-13 17:39:44 -07002725 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002726 status = SAS_DEVICE_UNKNOWN;
2727 else
2728 status = SAS_ABORTED_TASK;
2729
Jeff Skirvina5fde222011-03-04 14:06:42 -08002730 complete_to_host = isci_perform_aborted_io_completion;
Dan Williams6f231dd2011-07-02 22:56:22 -07002731
2732 /* This was a terminated request. */
Jeff Skirvina5fde222011-03-04 14:06:42 -08002733
2734 spin_unlock(&request->state_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07002735 break;
2736
Jeff Skirvin77c852f2011-06-20 14:09:16 -07002737 case dead:
2738 /* This was a terminated request that timed-out during the
2739 * termination process. There is no task to complete to
2740 * libsas.
2741 */
2742 complete_to_host = isci_perform_normal_io_completion;
2743 spin_unlock(&request->state_lock);
2744 break;
2745
Dan Williams6f231dd2011-07-02 22:56:22 -07002746 default:
2747
Jeff Skirvina5fde222011-03-04 14:06:42 -08002748 /* The request is done from an SCU HW perspective. */
2749 request->status = completed;
2750
2751 spin_unlock(&request->state_lock);
2752
Dan Williams6f231dd2011-07-02 22:56:22 -07002753 /* This is an active request being completed from the core. */
2754 switch (completion_status) {
2755
2756 case SCI_IO_FAILURE_RESPONSE_VALID:
2757 dev_dbg(&isci_host->pdev->dev,
2758 "%s: SCI_IO_FAILURE_RESPONSE_VALID (%p/%p)\n",
2759 __func__,
2760 request,
2761 task);
2762
2763 if (sas_protocol_ata(task->task_proto)) {
Dan Williams67ea8382011-05-08 11:47:15 -07002764 resp_buf = &request->sci.stp.rsp;
Dan Williams6f231dd2011-07-02 22:56:22 -07002765 isci_request_process_stp_response(task,
Dan Williamsb7645812011-05-08 02:35:32 -07002766 resp_buf);
Dan Williams6f231dd2011-07-02 22:56:22 -07002767 } else if (SAS_PROTOCOL_SSP == task->task_proto) {
2768
2769 /* crack the iu response buffer. */
Dan Williams67ea8382011-05-08 11:47:15 -07002770 resp_iu = &request->sci.ssp.rsp;
Dan Williams6f231dd2011-07-02 22:56:22 -07002771 isci_request_process_response_iu(task, resp_iu,
Dan Williamsb7645812011-05-08 02:35:32 -07002772 &isci_host->pdev->dev);
Dan Williams6f231dd2011-07-02 22:56:22 -07002773
2774 } else if (SAS_PROTOCOL_SMP == task->task_proto) {
2775
2776 dev_err(&isci_host->pdev->dev,
2777 "%s: SCI_IO_FAILURE_RESPONSE_VALID: "
2778 "SAS_PROTOCOL_SMP protocol\n",
2779 __func__);
2780
2781 } else
2782 dev_err(&isci_host->pdev->dev,
2783 "%s: unknown protocol\n", __func__);
2784
2785 /* use the task status set in the task struct by the
2786 * isci_request_process_response_iu call.
2787 */
2788 request->complete_in_target = true;
2789 response = task->task_status.resp;
2790 status = task->task_status.stat;
2791 break;
2792
2793 case SCI_IO_SUCCESS:
2794 case SCI_IO_SUCCESS_IO_DONE_EARLY:
2795
2796 response = SAS_TASK_COMPLETE;
2797 status = SAM_STAT_GOOD;
2798 request->complete_in_target = true;
2799
2800 if (task->task_proto == SAS_PROTOCOL_SMP) {
Dan Williams67ea8382011-05-08 11:47:15 -07002801 void *rsp = &request->sci.smp.rsp;
Dan Williams6f231dd2011-07-02 22:56:22 -07002802
2803 dev_dbg(&isci_host->pdev->dev,
2804 "%s: SMP protocol completion\n",
2805 __func__);
2806
2807 sg_copy_from_buffer(
2808 &task->smp_task.smp_resp, 1,
Dan Williamsb7645812011-05-08 02:35:32 -07002809 rsp, sizeof(struct smp_resp));
Dan Williams6f231dd2011-07-02 22:56:22 -07002810 } else if (completion_status
2811 == SCI_IO_SUCCESS_IO_DONE_EARLY) {
2812
2813 /* This was an SSP / STP / SATA transfer.
2814 * There is a possibility that less data than
2815 * the maximum was transferred.
2816 */
Dan Williamsf1f52e72011-05-10 02:28:45 -07002817 u32 transferred_length = sci_req_tx_bytes(&request->sci);
Dan Williams6f231dd2011-07-02 22:56:22 -07002818
2819 task->task_status.residual
2820 = task->total_xfer_len - transferred_length;
2821
2822 /* If there were residual bytes, call this an
2823 * underrun.
2824 */
2825 if (task->task_status.residual != 0)
2826 status = SAS_DATA_UNDERRUN;
2827
2828 dev_dbg(&isci_host->pdev->dev,
2829 "%s: SCI_IO_SUCCESS_IO_DONE_EARLY %d\n",
2830 __func__,
2831 status);
2832
2833 } else
2834 dev_dbg(&isci_host->pdev->dev,
2835 "%s: SCI_IO_SUCCESS\n",
2836 __func__);
2837
2838 break;
2839
2840 case SCI_IO_FAILURE_TERMINATED:
2841 dev_dbg(&isci_host->pdev->dev,
2842 "%s: SCI_IO_FAILURE_TERMINATED (%p/%p)\n",
2843 __func__,
2844 request,
2845 task);
2846
2847 /* The request was terminated explicitly. No handling
2848 * is needed in the SCSI error handler path.
2849 */
2850 request->complete_in_target = true;
2851 response = SAS_TASK_UNDELIVERED;
2852
2853 /* See if the device has been/is being stopped. Note
2854 * that we ignore the quiesce state, since we are
2855 * concerned about the actual device state.
2856 */
Dan Williams209fae12011-06-13 17:39:44 -07002857 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002858 status = SAS_DEVICE_UNKNOWN;
2859 else
2860 status = SAS_ABORTED_TASK;
2861
2862 complete_to_host = isci_perform_normal_io_completion;
2863 break;
2864
2865 case SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR:
2866
2867 isci_request_handle_controller_specific_errors(
Dan Williams209fae12011-06-13 17:39:44 -07002868 idev, request, task, &response, &status,
Dan Williams6f231dd2011-07-02 22:56:22 -07002869 &complete_to_host);
2870
2871 break;
2872
2873 case SCI_IO_FAILURE_REMOTE_DEVICE_RESET_REQUIRED:
2874 /* This is a special case, in that the I/O completion
2875 * is telling us that the device needs a reset.
2876 * In order for the device reset condition to be
2877 * noticed, the I/O has to be handled in the error
2878 * handler. Set the reset flag and cause the
2879 * SCSI error thread to be scheduled.
2880 */
2881 spin_lock_irqsave(&task->task_state_lock, task_flags);
2882 task->task_state_flags |= SAS_TASK_NEED_DEV_RESET;
2883 spin_unlock_irqrestore(&task->task_state_lock, task_flags);
2884
Jeff Skirvinaa145102011-03-07 16:40:47 -07002885 /* Fail the I/O. */
2886 response = SAS_TASK_UNDELIVERED;
2887 status = SAM_STAT_TASK_ABORTED;
2888
Dan Williams6f231dd2011-07-02 22:56:22 -07002889 complete_to_host = isci_perform_error_io_completion;
2890 request->complete_in_target = false;
2891 break;
2892
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002893 case SCI_FAILURE_RETRY_REQUIRED:
2894
2895 /* Fail the I/O so it can be retried. */
2896 response = SAS_TASK_UNDELIVERED;
Dan Williams209fae12011-06-13 17:39:44 -07002897 if (!idev)
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002898 status = SAS_DEVICE_UNKNOWN;
2899 else
2900 status = SAS_ABORTED_TASK;
2901
2902 complete_to_host = isci_perform_normal_io_completion;
2903 request->complete_in_target = true;
2904 break;
2905
2906
Dan Williams6f231dd2011-07-02 22:56:22 -07002907 default:
2908 /* Catch any otherwise unhandled error codes here. */
2909 dev_warn(&isci_host->pdev->dev,
2910 "%s: invalid completion code: 0x%x - "
2911 "isci_request = %p\n",
2912 __func__, completion_status, request);
2913
2914 response = SAS_TASK_UNDELIVERED;
2915
2916 /* See if the device has been/is being stopped. Note
2917 * that we ignore the quiesce state, since we are
2918 * concerned about the actual device state.
2919 */
Dan Williams209fae12011-06-13 17:39:44 -07002920 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002921 status = SAS_DEVICE_UNKNOWN;
2922 else
2923 status = SAS_ABORTED_TASK;
2924
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002925 if (SAS_PROTOCOL_SMP == task->task_proto) {
2926 request->complete_in_target = true;
2927 complete_to_host = isci_perform_normal_io_completion;
2928 } else {
2929 request->complete_in_target = false;
2930 complete_to_host = isci_perform_error_io_completion;
2931 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002932 break;
2933 }
2934 break;
2935 }
2936
2937 isci_request_unmap_sgl(request, isci_host->pdev);
2938
2939 /* Put the completed request on the correct list */
2940 isci_task_save_for_upper_layer_completion(isci_host, request, response,
2941 status, complete_to_host
2942 );
2943
2944 /* complete the io request to the core. */
Artur Wojcikcc3dbd02011-05-04 07:58:16 +00002945 scic_controller_complete_io(&isci_host->sci,
Dan Williams209fae12011-06-13 17:39:44 -07002946 request->sci.target_device,
Dan Williams67ea8382011-05-08 11:47:15 -07002947 &request->sci);
Dan Williams209fae12011-06-13 17:39:44 -07002948 isci_put_device(idev);
2949
Dan Williams67ea8382011-05-08 11:47:15 -07002950 /* set terminated handle so it cannot be completed or
Dan Williams6f231dd2011-07-02 22:56:22 -07002951 * terminated again, and to cause any calls into abort
2952 * task to recognize the already completed case.
2953 */
Dan Williams67ea8382011-05-08 11:47:15 -07002954 request->terminated = true;
Dan Williams6f231dd2011-07-02 22:56:22 -07002955
Dan Williams6f231dd2011-07-02 22:56:22 -07002956 isci_host_can_dequeue(isci_host, 1);
2957}
Dan Williamsf1f52e72011-05-10 02:28:45 -07002958
Dan Williams9269e0e2011-05-12 07:42:17 -07002959static void scic_sds_request_started_state_enter(struct sci_base_state_machine *sm)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002960{
Edmund Nadolskie3013702011-06-02 00:10:43 +00002961 struct scic_sds_request *sci_req = container_of(sm, typeof(*sci_req), sm);
Dan Williamsf1393032011-05-10 02:28:47 -07002962 struct isci_request *ireq = sci_req_to_ireq(sci_req);
2963 struct domain_device *dev = sci_dev_to_domain(sci_req->target_device);
Dan Williamsc72086e2011-05-10 02:28:48 -07002964 struct sas_task *task;
2965
2966 /* XXX as hch said always creating an internal sas_task for tmf
2967 * requests would simplify the driver
2968 */
2969 task = ireq->ttype == io_task ? isci_request_access_task(ireq) : NULL;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002970
Dan Williams5dec6f42011-05-10 02:28:49 -07002971 /* all unaccelerated request types (non ssp or ncq) handled with
2972 * substates
Dan Williamsf1393032011-05-10 02:28:47 -07002973 */
Dan Williamsc72086e2011-05-10 02:28:48 -07002974 if (!task && dev->dev_type == SAS_END_DEV) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002975 sci_change_state(sm, SCI_REQ_TASK_WAIT_TC_COMP);
Dan Williams5dec6f42011-05-10 02:28:49 -07002976 } else if (!task &&
2977 (isci_request_access_tmf(ireq)->tmf_code == isci_tmf_sata_srst_high ||
2978 isci_request_access_tmf(ireq)->tmf_code == isci_tmf_sata_srst_low)) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002979 sci_change_state(sm, SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED);
Dan Williamsc72086e2011-05-10 02:28:48 -07002980 } else if (task && task->task_proto == SAS_PROTOCOL_SMP) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002981 sci_change_state(sm, SCI_REQ_SMP_WAIT_RESP);
Dan Williams5dec6f42011-05-10 02:28:49 -07002982 } else if (task && sas_protocol_ata(task->task_proto) &&
2983 !task->ata_task.use_ncq) {
2984 u32 state;
2985
2986 if (task->data_dir == DMA_NONE)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002987 state = SCI_REQ_STP_NON_DATA_WAIT_H2D;
Dan Williams5dec6f42011-05-10 02:28:49 -07002988 else if (task->ata_task.dma_xfer)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002989 state = SCI_REQ_STP_UDMA_WAIT_TC_COMP;
Dan Williams5dec6f42011-05-10 02:28:49 -07002990 else /* PIO */
Edmund Nadolskie3013702011-06-02 00:10:43 +00002991 state = SCI_REQ_STP_PIO_WAIT_H2D;
Dan Williams5dec6f42011-05-10 02:28:49 -07002992
Edmund Nadolskie3013702011-06-02 00:10:43 +00002993 sci_change_state(sm, state);
Dan Williamsc72086e2011-05-10 02:28:48 -07002994 }
Dan Williamsf1f52e72011-05-10 02:28:45 -07002995}
2996
Dan Williams9269e0e2011-05-12 07:42:17 -07002997static void scic_sds_request_completed_state_enter(struct sci_base_state_machine *sm)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002998{
Edmund Nadolskie3013702011-06-02 00:10:43 +00002999 struct scic_sds_request *sci_req = container_of(sm, typeof(*sci_req), sm);
Dan Williams79e2b6b2011-05-11 08:29:56 -07003000 struct scic_sds_controller *scic = sci_req->owning_controller;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003001 struct isci_host *ihost = scic_to_ihost(scic);
3002 struct isci_request *ireq = sci_req_to_ireq(sci_req);
3003
Dan Williamsf1f52e72011-05-10 02:28:45 -07003004 /* Tell the SCI_USER that the IO request is complete */
3005 if (sci_req->is_task_management_request == false)
3006 isci_request_io_request_complete(ihost, ireq,
3007 sci_req->sci_status);
3008 else
3009 isci_task_request_complete(ihost, ireq, sci_req->sci_status);
3010}
3011
Dan Williams9269e0e2011-05-12 07:42:17 -07003012static void scic_sds_request_aborting_state_enter(struct sci_base_state_machine *sm)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003013{
Edmund Nadolskie3013702011-06-02 00:10:43 +00003014 struct scic_sds_request *sci_req = container_of(sm, typeof(*sci_req), sm);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003015
3016 /* Setting the abort bit in the Task Context is required by the silicon. */
3017 sci_req->task_context_buffer->abort = 1;
Dan Williamsc72086e2011-05-10 02:28:48 -07003018}
3019
Dan Williams9269e0e2011-05-12 07:42:17 -07003020static void scic_sds_stp_request_started_non_data_await_h2d_completion_enter(struct sci_base_state_machine *sm)
Dan Williams5dec6f42011-05-10 02:28:49 -07003021{
Edmund Nadolskie3013702011-06-02 00:10:43 +00003022 struct scic_sds_request *sci_req = container_of(sm, typeof(*sci_req), sm);
Dan Williams5dec6f42011-05-10 02:28:49 -07003023
Dan Williams79e2b6b2011-05-11 08:29:56 -07003024 scic_sds_remote_device_set_working_request(sci_req->target_device,
3025 sci_req);
Dan Williams5dec6f42011-05-10 02:28:49 -07003026}
3027
Dan Williams9269e0e2011-05-12 07:42:17 -07003028static void scic_sds_stp_request_started_pio_await_h2d_completion_enter(struct sci_base_state_machine *sm)
Dan Williams5dec6f42011-05-10 02:28:49 -07003029{
Edmund Nadolskie3013702011-06-02 00:10:43 +00003030 struct scic_sds_request *sci_req = container_of(sm, typeof(*sci_req), sm);
Dan Williams5dec6f42011-05-10 02:28:49 -07003031
Dan Williams79e2b6b2011-05-11 08:29:56 -07003032 scic_sds_remote_device_set_working_request(sci_req->target_device,
3033 sci_req);
Dan Williams5dec6f42011-05-10 02:28:49 -07003034}
3035
Dan Williams9269e0e2011-05-12 07:42:17 -07003036static void scic_sds_stp_request_started_soft_reset_await_h2d_asserted_completion_enter(struct sci_base_state_machine *sm)
Dan Williams5dec6f42011-05-10 02:28:49 -07003037{
Edmund Nadolskie3013702011-06-02 00:10:43 +00003038 struct scic_sds_request *sci_req = container_of(sm, typeof(*sci_req), sm);
Dan Williams5dec6f42011-05-10 02:28:49 -07003039
Dan Williams79e2b6b2011-05-11 08:29:56 -07003040 scic_sds_remote_device_set_working_request(sci_req->target_device,
3041 sci_req);
Dan Williams5dec6f42011-05-10 02:28:49 -07003042}
3043
Dan Williams9269e0e2011-05-12 07:42:17 -07003044static void scic_sds_stp_request_started_soft_reset_await_h2d_diagnostic_completion_enter(struct sci_base_state_machine *sm)
Dan Williams5dec6f42011-05-10 02:28:49 -07003045{
Edmund Nadolskie3013702011-06-02 00:10:43 +00003046 struct scic_sds_request *sci_req = container_of(sm, typeof(*sci_req), sm);
Dan Williams5dec6f42011-05-10 02:28:49 -07003047 struct scu_task_context *task_context;
3048 struct host_to_dev_fis *h2d_fis;
3049 enum sci_status status;
3050
3051 /* Clear the SRST bit */
3052 h2d_fis = &sci_req->stp.cmd;
3053 h2d_fis->control = 0;
3054
3055 /* Clear the TC control bit */
3056 task_context = scic_sds_controller_get_task_context_buffer(
3057 sci_req->owning_controller, sci_req->io_tag);
3058 task_context->control_frame = 0;
3059
3060 status = scic_controller_continue_io(sci_req);
Dan Williams79e2b6b2011-05-11 08:29:56 -07003061 WARN_ONCE(status != SCI_SUCCESS, "isci: continue io failure\n");
Dan Williams5dec6f42011-05-10 02:28:49 -07003062}
3063
Dan Williamsf1f52e72011-05-10 02:28:45 -07003064static const struct sci_base_state scic_sds_request_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +00003065 [SCI_REQ_INIT] = { },
3066 [SCI_REQ_CONSTRUCTED] = { },
3067 [SCI_REQ_STARTED] = {
Dan Williamsf1f52e72011-05-10 02:28:45 -07003068 .enter_state = scic_sds_request_started_state_enter,
Dan Williams5dec6f42011-05-10 02:28:49 -07003069 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00003070 [SCI_REQ_STP_NON_DATA_WAIT_H2D] = {
Dan Williams5dec6f42011-05-10 02:28:49 -07003071 .enter_state = scic_sds_stp_request_started_non_data_await_h2d_completion_enter,
3072 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00003073 [SCI_REQ_STP_NON_DATA_WAIT_D2H] = { },
3074 [SCI_REQ_STP_PIO_WAIT_H2D] = {
Dan Williams5dec6f42011-05-10 02:28:49 -07003075 .enter_state = scic_sds_stp_request_started_pio_await_h2d_completion_enter,
3076 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00003077 [SCI_REQ_STP_PIO_WAIT_FRAME] = { },
3078 [SCI_REQ_STP_PIO_DATA_IN] = { },
3079 [SCI_REQ_STP_PIO_DATA_OUT] = { },
3080 [SCI_REQ_STP_UDMA_WAIT_TC_COMP] = { },
3081 [SCI_REQ_STP_UDMA_WAIT_D2H] = { },
3082 [SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED] = {
Dan Williams5dec6f42011-05-10 02:28:49 -07003083 .enter_state = scic_sds_stp_request_started_soft_reset_await_h2d_asserted_completion_enter,
3084 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00003085 [SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG] = {
Dan Williams5dec6f42011-05-10 02:28:49 -07003086 .enter_state = scic_sds_stp_request_started_soft_reset_await_h2d_diagnostic_completion_enter,
3087 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00003088 [SCI_REQ_STP_SOFT_RESET_WAIT_D2H] = { },
3089 [SCI_REQ_TASK_WAIT_TC_COMP] = { },
3090 [SCI_REQ_TASK_WAIT_TC_RESP] = { },
3091 [SCI_REQ_SMP_WAIT_RESP] = { },
3092 [SCI_REQ_SMP_WAIT_TC_COMP] = { },
3093 [SCI_REQ_COMPLETED] = {
Dan Williamsf1f52e72011-05-10 02:28:45 -07003094 .enter_state = scic_sds_request_completed_state_enter,
3095 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00003096 [SCI_REQ_ABORTING] = {
Dan Williamsf1f52e72011-05-10 02:28:45 -07003097 .enter_state = scic_sds_request_aborting_state_enter,
3098 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00003099 [SCI_REQ_FINAL] = { },
Dan Williamsf1f52e72011-05-10 02:28:45 -07003100};
3101
Edmund Nadolskie3013702011-06-02 00:10:43 +00003102static void
3103scic_sds_general_request_construct(struct scic_sds_controller *scic,
3104 struct scic_sds_remote_device *sci_dev,
3105 u16 io_tag,
3106 struct scic_sds_request *sci_req)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003107{
Edmund Nadolski12ef6542011-06-02 00:10:50 +00003108 sci_init_sm(&sci_req->sm, scic_sds_request_state_table, SCI_REQ_INIT);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003109
3110 sci_req->io_tag = io_tag;
3111 sci_req->owning_controller = scic;
3112 sci_req->target_device = sci_dev;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003113 sci_req->protocol = SCIC_NO_PROTOCOL;
3114 sci_req->saved_rx_frame_index = SCU_INVALID_FRAME_INDEX;
3115 sci_req->device_sequence = scic_sds_remote_device_get_sequence(sci_dev);
3116
3117 sci_req->sci_status = SCI_SUCCESS;
3118 sci_req->scu_status = 0;
3119 sci_req->post_context = 0xFFFFFFFF;
3120
3121 sci_req->is_task_management_request = false;
3122
3123 if (io_tag == SCI_CONTROLLER_INVALID_IO_TAG) {
3124 sci_req->was_tag_assigned_by_user = false;
Dan Williamsc72086e2011-05-10 02:28:48 -07003125 sci_req->task_context_buffer = &sci_req->tc;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003126 } else {
3127 sci_req->was_tag_assigned_by_user = true;
3128
3129 sci_req->task_context_buffer =
3130 scic_sds_controller_get_task_context_buffer(scic, io_tag);
3131 }
3132}
3133
3134static enum sci_status
3135scic_io_request_construct(struct scic_sds_controller *scic,
3136 struct scic_sds_remote_device *sci_dev,
3137 u16 io_tag, struct scic_sds_request *sci_req)
3138{
3139 struct domain_device *dev = sci_dev_to_domain(sci_dev);
3140 enum sci_status status = SCI_SUCCESS;
3141
3142 /* Build the common part of the request */
3143 scic_sds_general_request_construct(scic, sci_dev, io_tag, sci_req);
3144
Dan Williamsc72086e2011-05-10 02:28:48 -07003145 if (sci_dev->rnc.remote_node_index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003146 return SCI_FAILURE_INVALID_REMOTE_DEVICE;
3147
3148 if (dev->dev_type == SAS_END_DEV)
Dan Williamsc72086e2011-05-10 02:28:48 -07003149 /* pass */;
3150 else if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP))
Dan Williamsf1f52e72011-05-10 02:28:45 -07003151 memset(&sci_req->stp.cmd, 0, sizeof(sci_req->stp.cmd));
Dan Williamsc72086e2011-05-10 02:28:48 -07003152 else if (dev_is_expander(dev))
Dan Williamsf1f52e72011-05-10 02:28:45 -07003153 memset(&sci_req->smp.cmd, 0, sizeof(sci_req->smp.cmd));
Dan Williamsc72086e2011-05-10 02:28:48 -07003154 else
3155 return SCI_FAILURE_UNSUPPORTED_PROTOCOL;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003156
Dan Williamsc72086e2011-05-10 02:28:48 -07003157 memset(sci_req->task_context_buffer, 0,
3158 offsetof(struct scu_task_context, sgl_pair_ab));
Dan Williamsf1f52e72011-05-10 02:28:45 -07003159
3160 return status;
3161}
3162
3163enum sci_status scic_task_request_construct(struct scic_sds_controller *scic,
3164 struct scic_sds_remote_device *sci_dev,
3165 u16 io_tag, struct scic_sds_request *sci_req)
3166{
3167 struct domain_device *dev = sci_dev_to_domain(sci_dev);
3168 enum sci_status status = SCI_SUCCESS;
3169
3170 /* Build the common part of the request */
3171 scic_sds_general_request_construct(scic, sci_dev, io_tag, sci_req);
3172
Dan Williamsc72086e2011-05-10 02:28:48 -07003173 if (dev->dev_type == SAS_END_DEV ||
3174 dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) {
Dan Williamsf1f52e72011-05-10 02:28:45 -07003175 sci_req->is_task_management_request = true;
3176 memset(sci_req->task_context_buffer, 0, sizeof(struct scu_task_context));
Dan Williamsc72086e2011-05-10 02:28:48 -07003177 } else
3178 status = SCI_FAILURE_UNSUPPORTED_PROTOCOL;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003179
3180 return status;
3181}
3182
3183static enum sci_status isci_request_ssp_request_construct(
3184 struct isci_request *request)
3185{
3186 enum sci_status status;
3187
3188 dev_dbg(&request->isci_host->pdev->dev,
3189 "%s: request = %p\n",
3190 __func__,
3191 request);
3192 status = scic_io_request_construct_basic_ssp(&request->sci);
3193 return status;
3194}
3195
3196static enum sci_status isci_request_stp_request_construct(
3197 struct isci_request *request)
3198{
3199 struct sas_task *task = isci_request_access_task(request);
3200 enum sci_status status;
3201 struct host_to_dev_fis *register_fis;
3202
3203 dev_dbg(&request->isci_host->pdev->dev,
3204 "%s: request = %p\n",
3205 __func__,
3206 request);
3207
3208 /* Get the host_to_dev_fis from the core and copy
3209 * the fis from the task into it.
3210 */
3211 register_fis = isci_sata_task_to_fis_copy(task);
3212
3213 status = scic_io_request_construct_basic_sata(&request->sci);
3214
3215 /* Set the ncq tag in the fis, from the queue
3216 * command in the task.
3217 */
3218 if (isci_sata_is_task_ncq(task)) {
3219
3220 isci_sata_set_ncq_tag(
3221 register_fis,
3222 task
3223 );
3224 }
3225
3226 return status;
3227}
3228
3229/*
Dan Williamsc72086e2011-05-10 02:28:48 -07003230 * This function will fill in the SCU Task Context for a SMP request. The
3231 * following important settings are utilized: -# task_type ==
3232 * SCU_TASK_TYPE_SMP. This simply indicates that a normal request type
3233 * (i.e. non-raw frame) is being utilized to perform task management. -#
3234 * control_frame == 1. This ensures that the proper endianess is set so
3235 * that the bytes are transmitted in the right order for a smp request frame.
3236 * @sci_req: This parameter specifies the smp request object being
3237 * constructed.
3238 *
3239 */
3240static void
3241scu_smp_request_construct_task_context(struct scic_sds_request *sci_req,
Dave Jiang77d67382011-05-25 02:21:57 +00003242 ssize_t req_len)
Dan Williamsc72086e2011-05-10 02:28:48 -07003243{
3244 dma_addr_t dma_addr;
Dan Williamsc72086e2011-05-10 02:28:48 -07003245 struct scic_sds_remote_device *sci_dev;
3246 struct scic_sds_port *sci_port;
3247 struct scu_task_context *task_context;
3248 ssize_t word_cnt = sizeof(struct smp_req) / sizeof(u32);
3249
3250 /* byte swap the smp request. */
Dave Jiang77d67382011-05-25 02:21:57 +00003251 sci_swab32_cpy(&sci_req->smp.cmd, &sci_req->smp.cmd,
Dan Williamsc72086e2011-05-10 02:28:48 -07003252 word_cnt);
3253
3254 task_context = scic_sds_request_get_task_context(sci_req);
3255
Dan Williamsc72086e2011-05-10 02:28:48 -07003256 sci_dev = scic_sds_request_get_device(sci_req);
3257 sci_port = scic_sds_request_get_port(sci_req);
3258
3259 /*
3260 * Fill in the TC with the its required data
3261 * 00h
3262 */
3263 task_context->priority = 0;
3264 task_context->initiator_request = 1;
3265 task_context->connection_rate = sci_dev->connection_rate;
3266 task_context->protocol_engine_index =
3267 scic_sds_controller_get_protocol_engine_group(scic);
3268 task_context->logical_port_index = scic_sds_port_get_index(sci_port);
3269 task_context->protocol_type = SCU_TASK_CONTEXT_PROTOCOL_SMP;
3270 task_context->abort = 0;
3271 task_context->valid = SCU_TASK_CONTEXT_VALID;
3272 task_context->context_type = SCU_TASK_CONTEXT_TYPE;
3273
3274 /* 04h */
3275 task_context->remote_node_index = sci_dev->rnc.remote_node_index;
3276 task_context->command_code = 0;
3277 task_context->task_type = SCU_TASK_TYPE_SMP_REQUEST;
3278
3279 /* 08h */
3280 task_context->link_layer_control = 0;
3281 task_context->do_not_dma_ssp_good_response = 1;
3282 task_context->strict_ordering = 0;
3283 task_context->control_frame = 1;
3284 task_context->timeout_enable = 0;
3285 task_context->block_guard_enable = 0;
3286
3287 /* 0ch */
3288 task_context->address_modifier = 0;
3289
3290 /* 10h */
Dave Jiang77d67382011-05-25 02:21:57 +00003291 task_context->ssp_command_iu_length = req_len;
Dan Williamsc72086e2011-05-10 02:28:48 -07003292
3293 /* 14h */
3294 task_context->transfer_length_bytes = 0;
3295
3296 /*
3297 * 18h ~ 30h, protocol specific
3298 * since commandIU has been build by framework at this point, we just
3299 * copy the frist DWord from command IU to this location. */
3300 memcpy(&task_context->type.smp, &sci_req->smp.cmd, sizeof(u32));
3301
3302 /*
3303 * 40h
3304 * "For SMP you could program it to zero. We would prefer that way
3305 * so that done code will be consistent." - Venki
3306 */
3307 task_context->task_phase = 0;
3308
3309 if (sci_req->was_tag_assigned_by_user) {
3310 /*
3311 * Build the task context now since we have already read
3312 * the data
3313 */
3314 sci_req->post_context =
3315 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
3316 (scic_sds_controller_get_protocol_engine_group(scic) <<
3317 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) |
3318 (scic_sds_port_get_index(sci_port) <<
3319 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT) |
Dan Williamsdd047c82011-06-09 11:06:58 -07003320 ISCI_TAG_TCI(sci_req->io_tag));
Dan Williamsc72086e2011-05-10 02:28:48 -07003321 } else {
3322 /*
3323 * Build the task context now since we have already read
3324 * the data.
3325 * I/O tag index is not assigned because we have to wait
3326 * until we get a TCi.
3327 */
3328 sci_req->post_context =
3329 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
3330 (scic_sds_controller_get_protocol_engine_group(scic) <<
3331 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) |
3332 (scic_sds_port_get_index(sci_port) <<
3333 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT));
3334 }
3335
3336 /*
3337 * Copy the physical address for the command buffer to the SCU Task
3338 * Context command buffer should not contain command header.
3339 */
3340 dma_addr = scic_io_request_get_dma_addr(sci_req,
3341 ((char *) &sci_req->smp.cmd) +
3342 sizeof(u32));
3343
3344 task_context->command_iu_upper = upper_32_bits(dma_addr);
3345 task_context->command_iu_lower = lower_32_bits(dma_addr);
3346
3347 /* SMP response comes as UF, so no need to set response IU address. */
3348 task_context->response_iu_upper = 0;
3349 task_context->response_iu_lower = 0;
3350}
3351
Dave Jiang77d67382011-05-25 02:21:57 +00003352static enum sci_status
3353scic_io_request_construct_smp(struct scic_sds_request *sci_req)
Dan Williamsc72086e2011-05-10 02:28:48 -07003354{
Dave Jiang77d67382011-05-25 02:21:57 +00003355 struct smp_req *smp_req = &sci_req->smp.cmd;
Dan Williamsc72086e2011-05-10 02:28:48 -07003356
3357 sci_req->protocol = SCIC_SMP_PROTOCOL;
3358
Dan Williamsc72086e2011-05-10 02:28:48 -07003359 /*
3360 * Look at the SMP requests' header fields; for certain SAS 1.x SMP
3361 * functions under SAS 2.0, a zero request length really indicates
Dave Jiang77d67382011-05-25 02:21:57 +00003362 * a non-zero default length.
3363 */
Dan Williamsc72086e2011-05-10 02:28:48 -07003364 if (smp_req->req_len == 0) {
3365 switch (smp_req->func) {
3366 case SMP_DISCOVER:
3367 case SMP_REPORT_PHY_ERR_LOG:
3368 case SMP_REPORT_PHY_SATA:
3369 case SMP_REPORT_ROUTE_INFO:
3370 smp_req->req_len = 2;
3371 break;
3372 case SMP_CONF_ROUTE_INFO:
3373 case SMP_PHY_CONTROL:
3374 case SMP_PHY_TEST_FUNCTION:
3375 smp_req->req_len = 9;
3376 break;
3377 /* Default - zero is a valid default for 2.0. */
3378 }
3379 }
3380
Dave Jiang77d67382011-05-25 02:21:57 +00003381 scu_smp_request_construct_task_context(sci_req, smp_req->req_len);
Dan Williamsc72086e2011-05-10 02:28:48 -07003382
Edmund Nadolskie3013702011-06-02 00:10:43 +00003383 sci_change_state(&sci_req->sm, SCI_REQ_CONSTRUCTED);
Dan Williamsc72086e2011-05-10 02:28:48 -07003384
3385 return SCI_SUCCESS;
3386}
3387
3388/*
Dan Williamsf1f52e72011-05-10 02:28:45 -07003389 * isci_smp_request_build() - This function builds the smp request.
3390 * @ireq: This parameter points to the isci_request allocated in the
3391 * request construct function.
3392 *
3393 * SCI_SUCCESS on successfull completion, or specific failure code.
3394 */
3395static enum sci_status isci_smp_request_build(struct isci_request *ireq)
3396{
3397 enum sci_status status = SCI_FAILURE;
3398 struct sas_task *task = isci_request_access_task(ireq);
3399 struct scic_sds_request *sci_req = &ireq->sci;
3400
3401 dev_dbg(&ireq->isci_host->pdev->dev,
3402 "%s: request = %p\n", __func__, ireq);
3403
3404 dev_dbg(&ireq->isci_host->pdev->dev,
3405 "%s: smp_req len = %d\n",
3406 __func__,
3407 task->smp_task.smp_req.length);
3408
3409 /* copy the smp_command to the address; */
3410 sg_copy_to_buffer(&task->smp_task.smp_req, 1,
3411 &sci_req->smp.cmd,
3412 sizeof(struct smp_req));
3413
3414 status = scic_io_request_construct_smp(sci_req);
3415 if (status != SCI_SUCCESS)
3416 dev_warn(&ireq->isci_host->pdev->dev,
3417 "%s: failed with status = %d\n",
3418 __func__,
3419 status);
3420
3421 return status;
3422}
3423
3424/**
3425 * isci_io_request_build() - This function builds the io request object.
3426 * @isci_host: This parameter specifies the ISCI host object
3427 * @request: This parameter points to the isci_request object allocated in the
3428 * request construct function.
3429 * @sci_device: This parameter is the handle for the sci core's remote device
3430 * object that is the destination for this request.
3431 *
3432 * SCI_SUCCESS on successfull completion, or specific failure code.
3433 */
3434static enum sci_status isci_io_request_build(
3435 struct isci_host *isci_host,
3436 struct isci_request *request,
3437 struct isci_remote_device *isci_device)
3438{
3439 enum sci_status status = SCI_SUCCESS;
3440 struct sas_task *task = isci_request_access_task(request);
3441 struct scic_sds_remote_device *sci_device = &isci_device->sci;
3442
3443 dev_dbg(&isci_host->pdev->dev,
3444 "%s: isci_device = 0x%p; request = %p, "
3445 "num_scatter = %d\n",
3446 __func__,
3447 isci_device,
3448 request,
3449 task->num_scatter);
3450
3451 /* map the sgl addresses, if present.
3452 * libata does the mapping for sata devices
3453 * before we get the request.
3454 */
3455 if (task->num_scatter &&
3456 !sas_protocol_ata(task->task_proto) &&
3457 !(SAS_PROTOCOL_SMP & task->task_proto)) {
3458
3459 request->num_sg_entries = dma_map_sg(
3460 &isci_host->pdev->dev,
3461 task->scatter,
3462 task->num_scatter,
3463 task->data_dir
3464 );
3465
3466 if (request->num_sg_entries == 0)
3467 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
3468 }
3469
3470 /* build the common request object. For now,
3471 * we will let the core allocate the IO tag.
3472 */
3473 status = scic_io_request_construct(&isci_host->sci, sci_device,
3474 SCI_CONTROLLER_INVALID_IO_TAG,
3475 &request->sci);
3476
3477 if (status != SCI_SUCCESS) {
3478 dev_warn(&isci_host->pdev->dev,
3479 "%s: failed request construct\n",
3480 __func__);
3481 return SCI_FAILURE;
3482 }
3483
3484 switch (task->task_proto) {
3485 case SAS_PROTOCOL_SMP:
3486 status = isci_smp_request_build(request);
3487 break;
3488 case SAS_PROTOCOL_SSP:
3489 status = isci_request_ssp_request_construct(request);
3490 break;
3491 case SAS_PROTOCOL_SATA:
3492 case SAS_PROTOCOL_STP:
3493 case SAS_PROTOCOL_SATA | SAS_PROTOCOL_STP:
3494 status = isci_request_stp_request_construct(request);
3495 break;
3496 default:
3497 dev_warn(&isci_host->pdev->dev,
3498 "%s: unknown protocol\n", __func__);
3499 return SCI_FAILURE;
3500 }
3501
3502 return SCI_SUCCESS;
3503}
3504
Dan Williams0d0cf142011-06-13 00:51:30 -07003505static struct isci_request *isci_request_alloc_core(struct isci_host *ihost,
Dan Williams0d0cf142011-06-13 00:51:30 -07003506 gfp_t gfp_flags)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003507{
Dan Williamsf1f52e72011-05-10 02:28:45 -07003508 dma_addr_t handle;
Dan Williams0d0cf142011-06-13 00:51:30 -07003509 struct isci_request *ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003510
Dan Williams0d0cf142011-06-13 00:51:30 -07003511 ireq = dma_pool_alloc(ihost->dma_pool, gfp_flags, &handle);
3512 if (!ireq) {
3513 dev_warn(&ihost->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003514 "%s: dma_pool_alloc returned NULL\n", __func__);
Dan Williams0d0cf142011-06-13 00:51:30 -07003515 return NULL;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003516 }
3517
3518 /* initialize the request object. */
Dan Williams0d0cf142011-06-13 00:51:30 -07003519 spin_lock_init(&ireq->state_lock);
3520 ireq->request_daddr = handle;
3521 ireq->isci_host = ihost;
Dan Williams0d0cf142011-06-13 00:51:30 -07003522 ireq->io_request_completion = NULL;
3523 ireq->terminated = false;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003524
Dan Williams0d0cf142011-06-13 00:51:30 -07003525 ireq->num_sg_entries = 0;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003526
Dan Williams0d0cf142011-06-13 00:51:30 -07003527 ireq->complete_in_target = false;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003528
Dan Williams0d0cf142011-06-13 00:51:30 -07003529 INIT_LIST_HEAD(&ireq->completed_node);
3530 INIT_LIST_HEAD(&ireq->dev_node);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003531
Dan Williams0d0cf142011-06-13 00:51:30 -07003532 isci_request_change_state(ireq, allocated);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003533
Dan Williams0d0cf142011-06-13 00:51:30 -07003534 return ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003535}
3536
Dan Williams0d0cf142011-06-13 00:51:30 -07003537static struct isci_request *isci_request_alloc_io(struct isci_host *ihost,
3538 struct sas_task *task,
Dan Williams0d0cf142011-06-13 00:51:30 -07003539 gfp_t gfp_flags)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003540{
Dan Williams0d0cf142011-06-13 00:51:30 -07003541 struct isci_request *ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003542
Dan Williams209fae12011-06-13 17:39:44 -07003543 ireq = isci_request_alloc_core(ihost, gfp_flags);
Dan Williams0d0cf142011-06-13 00:51:30 -07003544 if (ireq) {
3545 ireq->ttype_ptr.io_task_ptr = task;
3546 ireq->ttype = io_task;
3547 task->lldd_task = ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003548 }
Dan Williams0d0cf142011-06-13 00:51:30 -07003549 return ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003550}
3551
Dan Williams0d0cf142011-06-13 00:51:30 -07003552struct isci_request *isci_request_alloc_tmf(struct isci_host *ihost,
3553 struct isci_tmf *isci_tmf,
Dan Williams0d0cf142011-06-13 00:51:30 -07003554 gfp_t gfp_flags)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003555{
Dan Williams0d0cf142011-06-13 00:51:30 -07003556 struct isci_request *ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003557
Dan Williams209fae12011-06-13 17:39:44 -07003558 ireq = isci_request_alloc_core(ihost, gfp_flags);
Dan Williams0d0cf142011-06-13 00:51:30 -07003559 if (ireq) {
3560 ireq->ttype_ptr.tmf_task_ptr = isci_tmf;
3561 ireq->ttype = tmf_task;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003562 }
Dan Williams0d0cf142011-06-13 00:51:30 -07003563 return ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003564}
3565
Dan Williams209fae12011-06-13 17:39:44 -07003566int isci_request_execute(struct isci_host *ihost, struct isci_remote_device *idev,
3567 struct sas_task *task, gfp_t gfp_flags)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003568{
Dan Williamsf1f52e72011-05-10 02:28:45 -07003569 enum sci_status status = SCI_FAILURE_UNSUPPORTED_PROTOCOL;
Dan Williams0d0cf142011-06-13 00:51:30 -07003570 struct isci_request *ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003571 unsigned long flags;
Dan Williams0d0cf142011-06-13 00:51:30 -07003572 int ret = 0;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003573
Dan Williamsf1f52e72011-05-10 02:28:45 -07003574 /* do common allocation and init of request object. */
Dan Williams209fae12011-06-13 17:39:44 -07003575 ireq = isci_request_alloc_io(ihost, task, gfp_flags);
Dan Williams0d0cf142011-06-13 00:51:30 -07003576 if (!ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003577 goto out;
3578
Dan Williams0d0cf142011-06-13 00:51:30 -07003579 status = isci_io_request_build(ihost, ireq, idev);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003580 if (status != SCI_SUCCESS) {
Dan Williams0d0cf142011-06-13 00:51:30 -07003581 dev_warn(&ihost->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003582 "%s: request_construct failed - status = 0x%x\n",
3583 __func__,
3584 status);
3585 goto out;
3586 }
3587
Dan Williams0d0cf142011-06-13 00:51:30 -07003588 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003589
3590 /* send the request, let the core assign the IO TAG. */
Dan Williams209fae12011-06-13 17:39:44 -07003591 status = scic_controller_start_io(&ihost->sci, &idev->sci, &ireq->sci,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003592 SCI_CONTROLLER_INVALID_IO_TAG);
3593 if (status != SCI_SUCCESS &&
3594 status != SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED) {
Dan Williams0d0cf142011-06-13 00:51:30 -07003595 dev_warn(&ihost->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003596 "%s: failed request start (0x%x)\n",
3597 __func__, status);
Dan Williams0d0cf142011-06-13 00:51:30 -07003598 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003599 goto out;
3600 }
3601
3602 /* Either I/O started OK, or the core has signaled that
3603 * the device needs a target reset.
3604 *
3605 * In either case, hold onto the I/O for later.
3606 *
3607 * Update it's status and add it to the list in the
3608 * remote device object.
3609 */
Dan Williams0d0cf142011-06-13 00:51:30 -07003610 list_add(&ireq->dev_node, &idev->reqs_in_process);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003611
3612 if (status == SCI_SUCCESS) {
3613 /* Save the tag for possible task mgmt later. */
Dan Williams0d0cf142011-06-13 00:51:30 -07003614 ireq->io_tag = ireq->sci.io_tag;
3615 isci_request_change_state(ireq, started);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003616 } else {
3617 /* The request did not really start in the
3618 * hardware, so clear the request handle
3619 * here so no terminations will be done.
3620 */
Dan Williams0d0cf142011-06-13 00:51:30 -07003621 ireq->terminated = true;
3622 isci_request_change_state(ireq, completed);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003623 }
Dan Williams0d0cf142011-06-13 00:51:30 -07003624 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003625
3626 if (status ==
3627 SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED) {
3628 /* Signal libsas that we need the SCSI error
3629 * handler thread to work on this I/O and that
3630 * we want a device reset.
3631 */
3632 spin_lock_irqsave(&task->task_state_lock, flags);
3633 task->task_state_flags |= SAS_TASK_NEED_DEV_RESET;
3634 spin_unlock_irqrestore(&task->task_state_lock, flags);
3635
3636 /* Cause this task to be scheduled in the SCSI error
3637 * handler thread.
3638 */
Dan Williams0d0cf142011-06-13 00:51:30 -07003639 isci_execpath_callback(ihost, task,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003640 sas_task_abort);
3641
3642 /* Change the status, since we are holding
3643 * the I/O until it is managed by the SCSI
3644 * error handler.
3645 */
3646 status = SCI_SUCCESS;
3647 }
3648
3649 out:
3650 if (status != SCI_SUCCESS) {
3651 /* release dma memory on failure. */
Dan Williams0d0cf142011-06-13 00:51:30 -07003652 isci_request_free(ihost, ireq);
3653 ireq = NULL;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003654 ret = SCI_FAILURE;
3655 }
3656
Dan Williamsf1f52e72011-05-10 02:28:45 -07003657 return ret;
3658}