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.
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
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.
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.
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.
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
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
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.
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.
60 #include "scu_completion_codes.h"
61 #include "scu_event_codes.h"
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.
71 * This method returns a pointer to an struct scu_sgl_element_pair.
73 static struct scu_sgl_element_pair
*scic_sds_request_get_sgl_element_pair(
74 struct scic_sds_request
*sci_req
,
77 struct scu_task_context
*task_context
;
79 task_context
= (struct scu_task_context
*)sci_req
->task_context_buffer
;
81 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
;
87 return &sci_req
->sg_table
[sgl_pair_index
- 2];
91 * 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.
96 static void scic_sds_request_build_sgl(struct scic_sds_request
*sds_request
)
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
;
104 struct scu_sgl_element_pair
*scu_sg
= NULL
;
105 struct scu_sgl_element_pair
*prev_sg
= NULL
;
107 if (task
->num_scatter
> 0) {
111 scu_sg
= scic_sds_request_get_sgl_element_pair(
115 SCU_SGL_COPY(scu_sg
->A
, sg
);
120 SCU_SGL_COPY(scu_sg
->B
, sg
);
123 SCU_SGL_ZERO(scu_sg
->B
);
127 scic_io_request_get_dma_addr(
131 prev_sg
->next_pair_upper
=
132 upper_32_bits(dma_addr
);
133 prev_sg
->next_pair_lower
=
134 lower_32_bits(dma_addr
);
140 } else { /* handle when no sg */
141 scu_sg
= scic_sds_request_get_sgl_element_pair(sds_request
,
144 dma_addr
= dma_map_single(&isci_host
->pdev
->dev
,
146 task
->total_xfer_len
,
149 isci_request
->zero_scatter_daddr
= dma_addr
;
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
);
157 scu_sg
->next_pair_upper
= 0;
158 scu_sg
->next_pair_lower
= 0;
162 static void scic_sds_io_request_build_ssp_command_iu(struct scic_sds_request
*sci_req
)
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
);
168 cmd_iu
= &sci_req
->ssp
.cmd
;
170 memcpy(cmd_iu
->LUN
, task
->ssp_task
.LUN
, 8);
171 cmd_iu
->add_cdb_len
= 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
;
179 sci_swab32_cpy(&cmd_iu
->cdb
, task
->ssp_task
.cdb
,
180 sizeof(task
->ssp_task
.cdb
) / sizeof(u32
));
183 static void scic_sds_task_request_build_ssp_task_iu(struct scic_sds_request
*sci_req
)
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
);
190 task_iu
= &sci_req
->ssp
.tmf
;
192 memset(task_iu
, 0, sizeof(struct ssp_task_iu
));
194 memcpy(task_iu
->LUN
, task
->ssp_task
.LUN
, 8);
196 task_iu
->task_func
= isci_tmf
->tmf_code
;
198 (ireq
->ttype
== tmf_task
) ?
200 SCI_CONTROLLER_INVALID_IO_TAG
;
204 * This method is will fill in the SCU Task Context for any type of SSP request.
209 static void scu_ssp_reqeust_construct_task_context(
210 struct scic_sds_request
*sds_request
,
211 struct scu_task_context
*task_context
)
214 struct scic_sds_remote_device
*target_device
;
215 struct scic_sds_port
*target_port
;
217 target_device
= scic_sds_request_get_device(sds_request
);
218 target_port
= scic_sds_request_get_port(sds_request
);
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
;
233 task_context
->remote_node_index
=
234 scic_sds_remote_device_get_index(sds_request
->target_device
);
235 task_context
->command_code
= 0;
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;
244 task_context
->address_modifier
= 0;
246 /* task_context->type.ssp.tag = sci_req->io_tag; */
247 task_context
->task_phase
= 0x01;
249 if (sds_request
->was_tag_assigned_by_user
) {
251 * Build the task context now since we have already read
254 sds_request
->post_context
=
255 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC
|
256 (scic_sds_controller_get_protocol_engine_group(
258 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT
) |
259 (scic_sds_port_get_index(target_port
) <<
260 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT
) |
261 ISCI_TAG_TCI(sds_request
->io_tag
));
264 * Build the task context now since we have already read
267 * I/O tag index is not assigned because we have to wait
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
));
280 * Copy the physical address for the command buffer to the
283 dma_addr
= scic_io_request_get_dma_addr(sds_request
,
284 &sds_request
->ssp
.cmd
);
286 task_context
->command_iu_upper
= upper_32_bits(dma_addr
);
287 task_context
->command_iu_lower
= lower_32_bits(dma_addr
);
290 * Copy the physical address for the response buffer to the
293 dma_addr
= scic_io_request_get_dma_addr(sds_request
,
294 &sds_request
->ssp
.rsp
);
296 task_context
->response_iu_upper
= upper_32_bits(dma_addr
);
297 task_context
->response_iu_lower
= lower_32_bits(dma_addr
);
301 * This method is will fill in the SCU Task Context for a SSP IO request.
305 static void scu_ssp_io_request_construct_task_context(
306 struct scic_sds_request
*sci_req
,
307 enum dma_data_direction dir
,
310 struct scu_task_context
*task_context
;
312 task_context
= scic_sds_request_get_task_context(sci_req
);
314 scu_ssp_reqeust_construct_task_context(sci_req
, task_context
);
316 task_context
->ssp_command_iu_length
=
317 sizeof(struct ssp_cmd_iu
) / sizeof(u32
);
318 task_context
->type
.ssp
.frame_type
= SSP_COMMAND
;
321 case DMA_FROM_DEVICE
:
324 task_context
->task_type
= SCU_TASK_TYPE_IOREAD
;
327 task_context
->task_type
= SCU_TASK_TYPE_IOWRITE
;
331 task_context
->transfer_length_bytes
= len
;
333 if (task_context
->transfer_length_bytes
> 0)
334 scic_sds_request_build_sgl(sci_req
);
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
350 static void scu_ssp_task_request_construct_task_context(
351 struct scic_sds_request
*sci_req
)
353 struct scu_task_context
*task_context
;
355 task_context
= scic_sds_request_get_task_context(sci_req
);
357 scu_ssp_reqeust_construct_task_context(sci_req
, task_context
);
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
);
369 * 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
376 * 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.
380 static void scu_sata_reqeust_construct_task_context(
381 struct scic_sds_request
*sci_req
,
382 struct scu_task_context
*task_context
)
385 struct scic_sds_remote_device
*target_device
;
386 struct scic_sds_port
*target_port
;
388 target_device
= scic_sds_request_get_device(sci_req
);
389 target_port
= scic_sds_request_get_port(sci_req
);
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
;
404 task_context
->remote_node_index
=
405 scic_sds_remote_device_get_index(sci_req
->target_device
);
406 task_context
->command_code
= 0;
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;
415 task_context
->address_modifier
= 0;
416 task_context
->task_phase
= 0x01;
418 task_context
->ssp_command_iu_length
=
419 (sizeof(struct host_to_dev_fis
) - sizeof(u32
)) / sizeof(u32
);
421 /* Set the first word of the H2D REG FIS */
422 task_context
->type
.words
[0] = *(u32
*)&sci_req
->stp
.cmd
;
424 if (sci_req
->was_tag_assigned_by_user
) {
426 * Build the task context now since we have already read
429 sci_req
->post_context
=
430 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC
|
431 (scic_sds_controller_get_protocol_engine_group(
433 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT
) |
434 (scic_sds_port_get_index(target_port
) <<
435 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT
) |
436 ISCI_TAG_TCI(sci_req
->io_tag
));
439 * Build the task context now since we have already read
441 * I/O tag index is not assigned because we have to wait
442 * until we get a TCi.
444 sci_req
->post_context
=
445 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC
|
446 (scic_sds_controller_get_protocol_engine_group(
448 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT
) |
449 (scic_sds_port_get_index(target_port
) <<
450 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT
));
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.
458 dma_addr
= scic_io_request_get_dma_addr(sci_req
,
459 ((char *) &sci_req
->stp
.cmd
) +
462 task_context
->command_iu_upper
= upper_32_bits(dma_addr
);
463 task_context
->command_iu_lower
= lower_32_bits(dma_addr
);
465 /* SATA Requests do not have a response buffer */
466 task_context
->response_iu_upper
= 0;
467 task_context
->response_iu_lower
= 0;
473 * 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
479 * This method performs the operations common to all SATA/STP requests
480 * utilizing the raw frame method. none
482 static void scu_stp_raw_request_construct_task_context(struct scic_sds_stp_request
*stp_req
,
483 struct scu_task_context
*task_context
)
485 struct scic_sds_request
*sci_req
= to_sci_req(stp_req
);
487 scu_sata_reqeust_construct_task_context(sci_req
, task_context
);
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
);
496 static enum sci_status
497 scic_sds_stp_pio_request_construct(struct scic_sds_request
*sci_req
,
500 struct scic_sds_stp_request
*stp_req
= &sci_req
->stp
.req
;
501 struct scic_sds_stp_pio_request
*pio
= &stp_req
->type
.pio
;
503 scu_stp_raw_request_construct_task_context(stp_req
,
504 sci_req
->task_context_buffer
);
506 pio
->current_transfer_bytes
= 0;
507 pio
->ending_error
= 0;
508 pio
->ending_status
= 0;
510 pio
->request_current
.sgl_offset
= 0;
511 pio
->request_current
.sgl_set
= SCU_SGL_ELEMENT_PAIR_A
;
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.
518 pio
->request_current
.sgl_pair
= &sci_req
->task_context_buffer
->sgl_pair_ab
;
520 /* The user does not want the data copied to the SGL buffer location */
521 pio
->request_current
.sgl_pair
= NULL
;
529 * @sci_req: This parameter specifies the request to be constructed as an
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.
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.
539 static void scic_sds_stp_optimized_request_construct(struct scic_sds_request
*sci_req
,
540 u8 optimized_task_type
,
542 enum dma_data_direction dir
)
544 struct scu_task_context
*task_context
= sci_req
->task_context_buffer
;
546 /* Build the STP task context structure */
547 scu_sata_reqeust_construct_task_context(sci_req
, task_context
);
549 /* Copy over the SGL elements */
550 scic_sds_request_build_sgl(sci_req
);
552 /* Copy over the number of bytes to be transfered */
553 task_context
->transfer_length_bytes
= len
;
555 if (dir
== DMA_TO_DEVICE
) {
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
);
566 * For the DATA IN (READ) case, simply save the supplied
567 * optimized task type. */
568 task_context
->task_type
= optimized_task_type
;
574 static enum sci_status
575 scic_io_request_construct_sata(struct scic_sds_request
*sci_req
,
577 enum dma_data_direction dir
,
580 enum sci_status status
= SCI_SUCCESS
;
581 struct isci_request
*ireq
= sci_req_to_ireq(sci_req
);
582 struct sas_task
*task
= isci_request_access_task(ireq
);
584 /* check for management protocols */
585 if (ireq
->ttype
== tmf_task
) {
586 struct isci_tmf
*tmf
= isci_request_access_tmf(ireq
);
588 if (tmf
->tmf_code
== isci_tmf_sata_srst_high
||
589 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
);
594 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
);
603 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",
613 if (task
->data_dir
== DMA_NONE
) {
614 scu_stp_raw_request_construct_task_context(&sci_req
->stp
.req
,
615 sci_req
->task_context_buffer
);
620 if (task
->ata_task
.use_ncq
) {
621 scic_sds_stp_optimized_request_construct(sci_req
,
622 SCU_TASK_TYPE_FPDMAQ_READ
,
628 if (task
->ata_task
.dma_xfer
) {
629 scic_sds_stp_optimized_request_construct(sci_req
,
630 SCU_TASK_TYPE_DMA_IN
,
634 return scic_sds_stp_pio_request_construct(sci_req
, copy
);
639 static enum sci_status
scic_io_request_construct_basic_ssp(struct scic_sds_request
*sci_req
)
641 struct isci_request
*ireq
= sci_req_to_ireq(sci_req
);
642 struct sas_task
*task
= isci_request_access_task(ireq
);
644 sci_req
->protocol
= SCIC_SSP_PROTOCOL
;
646 scu_ssp_io_request_construct_task_context(sci_req
,
648 task
->total_xfer_len
);
650 scic_sds_io_request_build_ssp_command_iu(sci_req
);
652 sci_change_state(&sci_req
->sm
, SCI_REQ_CONSTRUCTED
);
657 enum sci_status
scic_task_request_construct_ssp(
658 struct scic_sds_request
*sci_req
)
660 /* Construct the SSP Task SCU Task Context */
661 scu_ssp_task_request_construct_task_context(sci_req
);
663 /* Fill in the SSP Task IU */
664 scic_sds_task_request_build_ssp_task_iu(sci_req
);
666 sci_change_state(&sci_req
->sm
, SCI_REQ_CONSTRUCTED
);
671 static enum sci_status
scic_io_request_construct_basic_sata(struct scic_sds_request
*sci_req
)
673 enum sci_status status
;
675 struct isci_request
*isci_request
= sci_req_to_ireq(sci_req
);
676 struct sas_task
*task
= isci_request_access_task(isci_request
);
678 sci_req
->protocol
= SCIC_STP_PROTOCOL
;
680 copy
= (task
->data_dir
== DMA_NONE
) ? false : true;
682 status
= scic_io_request_construct_sata(sci_req
,
683 task
->total_xfer_len
,
687 if (status
== SCI_SUCCESS
)
688 sci_change_state(&sci_req
->sm
, SCI_REQ_CONSTRUCTED
);
693 enum sci_status
scic_task_request_construct_sata(struct scic_sds_request
*sci_req
)
695 enum sci_status status
= SCI_SUCCESS
;
696 struct isci_request
*ireq
= sci_req_to_ireq(sci_req
);
698 /* check for management protocols */
699 if (ireq
->ttype
== tmf_task
) {
700 struct isci_tmf
*tmf
= isci_request_access_tmf(ireq
);
702 if (tmf
->tmf_code
== isci_tmf_sata_srst_high
||
703 tmf
->tmf_code
== isci_tmf_sata_srst_low
) {
704 scu_stp_raw_request_construct_task_context(&sci_req
->stp
.req
,
705 sci_req
->task_context_buffer
);
707 dev_err(scic_to_dev(sci_req
->owning_controller
),
708 "%s: Request 0x%p received un-handled SAT "
710 __func__
, sci_req
, tmf
->tmf_code
);
716 if (status
!= SCI_SUCCESS
)
718 sci_change_state(&sci_req
->sm
, SCI_REQ_CONSTRUCTED
);
724 * sci_req_tx_bytes - bytes transferred when reply underruns request
725 * @sci_req: request that was terminated early
727 #define SCU_TASK_CONTEXT_SRAM 0x200000
728 static u32
sci_req_tx_bytes(struct scic_sds_request
*sci_req
)
730 struct scic_sds_controller
*scic
= sci_req
->owning_controller
;
733 if (readl(&scic
->smu_registers
->address_modifier
) == 0) {
734 void __iomem
*scu_reg_base
= scic
->scu_registers
;
736 /* 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
742 ret_val
= readl(scu_reg_base
+
743 (SCU_TASK_CONTEXT_SRAM
+ offsetof(struct scu_task_context
, type
.ssp
.data_offset
)) +
744 ((sizeof(struct scu_task_context
)) * ISCI_TAG_TCI(sci_req
->io_tag
)));
750 enum sci_status
scic_sds_request_start(struct scic_sds_request
*sci_req
)
752 struct scic_sds_controller
*scic
= sci_req
->owning_controller
;
753 struct scu_task_context
*task_context
;
754 enum sci_base_request_states state
;
756 state
= sci_req
->sm
.current_state_id
;
757 if (state
!= SCI_REQ_CONSTRUCTED
) {
758 dev_warn(scic_to_dev(scic
),
759 "%s: SCIC IO Request requested to start while in wrong "
760 "state %d\n", __func__
, state
);
761 return SCI_FAILURE_INVALID_STATE
;
764 /* if necessary, allocate a TCi for the io request object and then will,
765 * if necessary, copy the constructed TC data into the actual TC buffer.
766 * If everything is successful the post context field is updated with
767 * the TCi so the controller can post the request to the hardware.
769 if (sci_req
->io_tag
== SCI_CONTROLLER_INVALID_IO_TAG
)
770 sci_req
->io_tag
= scic_controller_allocate_io_tag(scic
);
772 /* Record the IO Tag in the request */
773 if (sci_req
->io_tag
!= SCI_CONTROLLER_INVALID_IO_TAG
) {
774 task_context
= sci_req
->task_context_buffer
;
776 task_context
->task_index
= ISCI_TAG_TCI(sci_req
->io_tag
);
778 switch (task_context
->protocol_type
) {
779 case SCU_TASK_CONTEXT_PROTOCOL_SMP
:
780 case SCU_TASK_CONTEXT_PROTOCOL_SSP
:
782 task_context
->type
.ssp
.tag
= sci_req
->io_tag
;
783 task_context
->type
.ssp
.target_port_transfer_tag
=
787 case SCU_TASK_CONTEXT_PROTOCOL_STP
:
789 * task_context->type.stp.ncq_tag = sci_req->ncq_tag;
793 case SCU_TASK_CONTEXT_PROTOCOL_NONE
:
794 /* / @todo When do we set no protocol type? */
798 /* This should never happen since we build the IO
804 * Check to see if we need to copy the task context buffer
805 * or have been building into the task context buffer */
806 if (sci_req
->was_tag_assigned_by_user
== false)
807 scic_sds_controller_copy_task_context(scic
, sci_req
);
809 /* Add to the post_context the io tag value */
810 sci_req
->post_context
|= ISCI_TAG_TCI(sci_req
->io_tag
);
812 /* Everything is good go ahead and change state */
813 sci_change_state(&sci_req
->sm
, SCI_REQ_STARTED
);
818 return SCI_FAILURE_INSUFFICIENT_RESOURCES
;
822 scic_sds_io_request_terminate(struct scic_sds_request
*sci_req
)
824 enum sci_base_request_states state
;
826 state
= sci_req
->sm
.current_state_id
;
829 case SCI_REQ_CONSTRUCTED
:
830 scic_sds_request_set_status(sci_req
,
831 SCU_TASK_DONE_TASK_ABORT
,
832 SCI_FAILURE_IO_TERMINATED
);
834 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
836 case SCI_REQ_STARTED
:
837 case SCI_REQ_TASK_WAIT_TC_COMP
:
838 case SCI_REQ_SMP_WAIT_RESP
:
839 case SCI_REQ_SMP_WAIT_TC_COMP
:
840 case SCI_REQ_STP_UDMA_WAIT_TC_COMP
:
841 case SCI_REQ_STP_UDMA_WAIT_D2H
:
842 case SCI_REQ_STP_NON_DATA_WAIT_H2D
:
843 case SCI_REQ_STP_NON_DATA_WAIT_D2H
:
844 case SCI_REQ_STP_PIO_WAIT_H2D
:
845 case SCI_REQ_STP_PIO_WAIT_FRAME
:
846 case SCI_REQ_STP_PIO_DATA_IN
:
847 case SCI_REQ_STP_PIO_DATA_OUT
:
848 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED
:
849 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG
:
850 case SCI_REQ_STP_SOFT_RESET_WAIT_D2H
:
851 sci_change_state(&sci_req
->sm
, SCI_REQ_ABORTING
);
853 case SCI_REQ_TASK_WAIT_TC_RESP
:
854 sci_change_state(&sci_req
->sm
, SCI_REQ_ABORTING
);
855 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
857 case SCI_REQ_ABORTING
:
858 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
860 case SCI_REQ_COMPLETED
:
862 dev_warn(scic_to_dev(sci_req
->owning_controller
),
863 "%s: SCIC IO Request requested to abort while in wrong "
866 sci_req
->sm
.current_state_id
);
870 return SCI_FAILURE_INVALID_STATE
;
873 enum sci_status
scic_sds_request_complete(struct scic_sds_request
*sci_req
)
875 enum sci_base_request_states state
;
876 struct scic_sds_controller
*scic
= sci_req
->owning_controller
;
878 state
= sci_req
->sm
.current_state_id
;
879 if (WARN_ONCE(state
!= SCI_REQ_COMPLETED
,
880 "isci: request completion from wrong state (%d)\n", state
))
881 return SCI_FAILURE_INVALID_STATE
;
883 if (!sci_req
->was_tag_assigned_by_user
)
884 scic_controller_free_io_tag(scic
, sci_req
->io_tag
);
886 if (sci_req
->saved_rx_frame_index
!= SCU_INVALID_FRAME_INDEX
)
887 scic_sds_controller_release_frame(scic
,
888 sci_req
->saved_rx_frame_index
);
890 /* XXX can we just stop the machine and remove the 'final' state? */
891 sci_change_state(&sci_req
->sm
, SCI_REQ_FINAL
);
895 enum sci_status
scic_sds_io_request_event_handler(struct scic_sds_request
*sci_req
,
898 enum sci_base_request_states state
;
899 struct scic_sds_controller
*scic
= sci_req
->owning_controller
;
901 state
= sci_req
->sm
.current_state_id
;
903 if (state
!= SCI_REQ_STP_PIO_DATA_IN
) {
904 dev_warn(scic_to_dev(scic
), "%s: (%x) in wrong state %d\n",
905 __func__
, event_code
, state
);
907 return SCI_FAILURE_INVALID_STATE
;
910 switch (scu_get_event_specifier(event_code
)) {
911 case SCU_TASK_DONE_CRC_ERR
<< SCU_EVENT_SPECIFIC_CODE_SHIFT
:
912 /* We are waiting for data and the SCU has R_ERR the data frame.
913 * Go back to waiting for the D2H Register FIS
915 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_PIO_WAIT_FRAME
);
918 dev_err(scic_to_dev(scic
),
919 "%s: pio request unexpected event %#x\n",
920 __func__
, event_code
);
922 /* TODO Should we fail the PIO request when we get an
930 * This function copies response data for requests returning response data
931 * instead of sense data.
932 * @sci_req: This parameter specifies the request object for which to copy
935 static void scic_sds_io_request_copy_response(struct scic_sds_request
*sci_req
)
939 struct ssp_response_iu
*ssp_response
;
940 struct isci_request
*ireq
= sci_req_to_ireq(sci_req
);
941 struct isci_tmf
*isci_tmf
= isci_request_access_tmf(ireq
);
943 ssp_response
= &sci_req
->ssp
.rsp
;
945 resp_buf
= &isci_tmf
->resp
.resp_iu
;
948 SSP_RESP_IU_MAX_SIZE
,
949 be32_to_cpu(ssp_response
->response_data_len
));
951 memcpy(resp_buf
, ssp_response
->resp_data
, len
);
954 static enum sci_status
955 request_started_state_tc_event(struct scic_sds_request
*sci_req
,
958 struct ssp_response_iu
*resp_iu
;
961 /* TODO: Any SDMA return code of other than 0 is bad decode 0x003C0000
962 * to determine SDMA status
964 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
965 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
966 scic_sds_request_set_status(sci_req
,
970 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_EARLY_RESP
): {
971 /* There are times when the SCU hardware will return an early
972 * response because the io request specified more data than is
973 * returned by the target device (mode pages, inquiry data,
974 * etc.). We must check the response stats to see if this is
975 * truly a failed request or a good request that just got
978 struct ssp_response_iu
*resp
= &sci_req
->ssp
.rsp
;
979 ssize_t word_cnt
= SSP_RESP_IU_MAX_SIZE
/ sizeof(u32
);
981 sci_swab32_cpy(&sci_req
->ssp
.rsp
,
985 if (resp
->status
== 0) {
986 scic_sds_request_set_status(sci_req
,
988 SCI_SUCCESS_IO_DONE_EARLY
);
990 scic_sds_request_set_status(sci_req
,
991 SCU_TASK_DONE_CHECK_RESPONSE
,
992 SCI_FAILURE_IO_RESPONSE_VALID
);
996 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CHECK_RESPONSE
): {
997 ssize_t word_cnt
= SSP_RESP_IU_MAX_SIZE
/ sizeof(u32
);
999 sci_swab32_cpy(&sci_req
->ssp
.rsp
,
1003 scic_sds_request_set_status(sci_req
,
1004 SCU_TASK_DONE_CHECK_RESPONSE
,
1005 SCI_FAILURE_IO_RESPONSE_VALID
);
1009 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_RESP_LEN_ERR
):
1010 /* TODO With TASK_DONE_RESP_LEN_ERR is the response frame
1011 * guaranteed to be received before this completion status is
1014 resp_iu
= &sci_req
->ssp
.rsp
;
1015 datapres
= resp_iu
->datapres
;
1017 if (datapres
== 1 || datapres
== 2) {
1018 scic_sds_request_set_status(sci_req
,
1019 SCU_TASK_DONE_CHECK_RESPONSE
,
1020 SCI_FAILURE_IO_RESPONSE_VALID
);
1022 scic_sds_request_set_status(sci_req
,
1026 /* only stp device gets suspended. */
1027 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_ACK_NAK_TO
):
1028 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_PERR
):
1029 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_NAK_ERR
):
1030 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_DATA_LEN_ERR
):
1031 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_ABORT_ERR
):
1032 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_XR_WD_LEN
):
1033 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_MAX_PLD_ERR
):
1034 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_RESP
):
1035 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_SDBFIS
):
1036 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_REG_ERR
):
1037 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SDB_ERR
):
1038 if (sci_req
->protocol
== SCIC_STP_PROTOCOL
) {
1039 scic_sds_request_set_status(sci_req
,
1040 SCU_GET_COMPLETION_TL_STATUS(completion_code
) >>
1041 SCU_COMPLETION_TL_STATUS_SHIFT
,
1042 SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED
);
1044 scic_sds_request_set_status(sci_req
,
1045 SCU_GET_COMPLETION_TL_STATUS(completion_code
) >>
1046 SCU_COMPLETION_TL_STATUS_SHIFT
,
1047 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1051 /* both stp/ssp device gets suspended */
1052 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LF_ERR
):
1053 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_WRONG_DESTINATION
):
1054 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_1
):
1055 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_2
):
1056 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_3
):
1057 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_BAD_DESTINATION
):
1058 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_ZONE_VIOLATION
):
1059 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_STP_RESOURCES_BUSY
):
1060 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_PROTOCOL_NOT_SUPPORTED
):
1061 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_CONNECTION_RATE_NOT_SUPPORTED
):
1062 scic_sds_request_set_status(sci_req
,
1063 SCU_GET_COMPLETION_TL_STATUS(completion_code
) >>
1064 SCU_COMPLETION_TL_STATUS_SHIFT
,
1065 SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED
);
1068 /* neither ssp nor stp gets suspended. */
1069 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_NAK_CMD_ERR
):
1070 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_XR
):
1071 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_XR_IU_LEN_ERR
):
1072 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SDMA_ERR
):
1073 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_OFFSET_ERR
):
1074 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_EXCESS_DATA
):
1075 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_RESP_TO_ERR
):
1076 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_UFI_ERR
):
1077 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_FRM_TYPE_ERR
):
1078 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_LL_RX_ERR
):
1079 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_DATA
):
1080 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_OPEN_FAIL
):
1081 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_VIIT_ENTRY_NV
):
1082 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_IIT_ENTRY_NV
):
1083 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_RNCNV_OUTBOUND
):
1085 scic_sds_request_set_status(
1087 SCU_GET_COMPLETION_TL_STATUS(completion_code
) >>
1088 SCU_COMPLETION_TL_STATUS_SHIFT
,
1089 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1094 * TODO: This is probably wrong for ACK/NAK timeout conditions
1097 /* In all cases we will treat this as the completion of the IO req. */
1098 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1102 static enum sci_status
1103 request_aborting_state_tc_event(struct scic_sds_request
*sci_req
,
1104 u32 completion_code
)
1106 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
1107 case (SCU_TASK_DONE_GOOD
<< SCU_COMPLETION_TL_STATUS_SHIFT
):
1108 case (SCU_TASK_DONE_TASK_ABORT
<< SCU_COMPLETION_TL_STATUS_SHIFT
):
1109 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_TASK_ABORT
,
1110 SCI_FAILURE_IO_TERMINATED
);
1112 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1116 /* Unless we get some strange error wait for the task abort to complete
1117 * TODO: Should there be a state change for this completion?
1125 static enum sci_status
ssp_task_request_await_tc_event(struct scic_sds_request
*sci_req
,
1126 u32 completion_code
)
1128 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
1129 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
1130 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_GOOD
,
1133 sci_change_state(&sci_req
->sm
, SCI_REQ_TASK_WAIT_TC_RESP
);
1135 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_ACK_NAK_TO
):
1136 /* Currently, the decision is to simply allow the task request
1137 * to timeout if the task IU wasn't received successfully.
1138 * There is a potential for receiving multiple task responses if
1139 * we decide to send the task IU again.
1141 dev_warn(scic_to_dev(sci_req
->owning_controller
),
1142 "%s: TaskRequest:0x%p CompletionCode:%x - "
1143 "ACK/NAK timeout\n", __func__
, sci_req
,
1146 sci_change_state(&sci_req
->sm
, SCI_REQ_TASK_WAIT_TC_RESP
);
1150 * All other completion status cause the IO to be complete.
1151 * If a NAK was received, then it is up to the user to retry
1154 scic_sds_request_set_status(sci_req
,
1155 SCU_NORMALIZE_COMPLETION_STATUS(completion_code
),
1156 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1158 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1165 static enum sci_status
1166 smp_request_await_response_tc_event(struct scic_sds_request
*sci_req
,
1167 u32 completion_code
)
1169 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
1170 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
1171 /* In the AWAIT RESPONSE state, any TC completion is
1172 * unexpected. but if the TC has success status, we
1173 * complete the IO anyway.
1175 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_GOOD
,
1178 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1181 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_RESP_TO_ERR
):
1182 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_UFI_ERR
):
1183 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_FRM_TYPE_ERR
):
1184 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_LL_RX_ERR
):
1185 /* These status has been seen in a specific LSI
1186 * expander, which sometimes is not able to send smp
1187 * response within 2 ms. This causes our hardware break
1188 * the connection and set TC completion with one of
1189 * these SMP_XXX_XX_ERR status. For these type of error,
1190 * we ask scic user to retry the request.
1192 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_SMP_RESP_TO_ERR
,
1193 SCI_FAILURE_RETRY_REQUIRED
);
1195 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1199 /* All other completion status cause the IO to be complete. If a NAK
1200 * was received, then it is up to the user to retry the request
1202 scic_sds_request_set_status(sci_req
,
1203 SCU_NORMALIZE_COMPLETION_STATUS(completion_code
),
1204 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1206 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1213 static enum sci_status
1214 smp_request_await_tc_event(struct scic_sds_request
*sci_req
,
1215 u32 completion_code
)
1217 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
1218 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
1219 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_GOOD
,
1222 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1225 /* All other completion status cause the IO to be
1226 * complete. If a NAK was received, then it is up to
1227 * the user to retry the request.
1229 scic_sds_request_set_status(sci_req
,
1230 SCU_NORMALIZE_COMPLETION_STATUS(completion_code
),
1231 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1233 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1240 void scic_stp_io_request_set_ncq_tag(struct scic_sds_request
*req
,
1244 * @note This could be made to return an error to the user if the user
1245 * attempts to set the NCQ tag in the wrong state.
1247 req
->task_context_buffer
->type
.stp
.ncq_tag
= ncq_tag
;
1254 * Get the next SGL element from the request. - Check on which SGL element pair
1255 * we are working - if working on SLG pair element A - advance to element B -
1256 * else - check to see if there are more SGL element pairs for this IO request
1257 * - if there are more SGL element pairs - advance to the next pair and return
1258 * element A struct scu_sgl_element*
1260 static struct scu_sgl_element
*scic_sds_stp_request_pio_get_next_sgl(struct scic_sds_stp_request
*stp_req
)
1262 struct scu_sgl_element
*current_sgl
;
1263 struct scic_sds_request
*sci_req
= to_sci_req(stp_req
);
1264 struct scic_sds_request_pio_sgl
*pio_sgl
= &stp_req
->type
.pio
.request_current
;
1266 if (pio_sgl
->sgl_set
== SCU_SGL_ELEMENT_PAIR_A
) {
1267 if (pio_sgl
->sgl_pair
->B
.address_lower
== 0 &&
1268 pio_sgl
->sgl_pair
->B
.address_upper
== 0) {
1271 pio_sgl
->sgl_set
= SCU_SGL_ELEMENT_PAIR_B
;
1272 current_sgl
= &pio_sgl
->sgl_pair
->B
;
1275 if (pio_sgl
->sgl_pair
->next_pair_lower
== 0 &&
1276 pio_sgl
->sgl_pair
->next_pair_upper
== 0) {
1281 phys_addr
= pio_sgl
->sgl_pair
->next_pair_upper
;
1283 phys_addr
|= pio_sgl
->sgl_pair
->next_pair_lower
;
1285 pio_sgl
->sgl_pair
= scic_request_get_virt_addr(sci_req
, phys_addr
);
1286 pio_sgl
->sgl_set
= SCU_SGL_ELEMENT_PAIR_A
;
1287 current_sgl
= &pio_sgl
->sgl_pair
->A
;
1294 static enum sci_status
1295 stp_request_non_data_await_h2d_tc_event(struct scic_sds_request
*sci_req
,
1296 u32 completion_code
)
1298 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
1299 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
1300 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_GOOD
,
1303 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_NON_DATA_WAIT_D2H
);
1307 /* All other completion status cause the IO to be
1308 * complete. If a NAK was received, then it is up to
1309 * the user to retry the request.
1311 scic_sds_request_set_status(sci_req
,
1312 SCU_NORMALIZE_COMPLETION_STATUS(completion_code
),
1313 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1315 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1322 #define SCU_MAX_FRAME_BUFFER_SIZE 0x400 /* 1K is the maximum SCU frame data payload */
1324 /* transmit DATA_FIS from (current sgl + offset) for input
1325 * parameter length. current sgl and offset is alreay stored in the IO request
1327 static enum sci_status
scic_sds_stp_request_pio_data_out_trasmit_data_frame(
1328 struct scic_sds_request
*sci_req
,
1331 struct scic_sds_controller
*scic
= sci_req
->owning_controller
;
1332 struct scic_sds_stp_request
*stp_req
= &sci_req
->stp
.req
;
1333 struct scu_task_context
*task_context
;
1334 struct scu_sgl_element
*current_sgl
;
1336 /* Recycle the TC and reconstruct it for sending out DATA FIS containing
1337 * for the data from current_sgl+offset for the input length
1339 task_context
= scic_sds_controller_get_task_context_buffer(scic
,
1342 if (stp_req
->type
.pio
.request_current
.sgl_set
== SCU_SGL_ELEMENT_PAIR_A
)
1343 current_sgl
= &stp_req
->type
.pio
.request_current
.sgl_pair
->A
;
1345 current_sgl
= &stp_req
->type
.pio
.request_current
.sgl_pair
->B
;
1348 task_context
->command_iu_upper
= current_sgl
->address_upper
;
1349 task_context
->command_iu_lower
= current_sgl
->address_lower
;
1350 task_context
->transfer_length_bytes
= length
;
1351 task_context
->type
.stp
.fis_type
= FIS_DATA
;
1353 /* send the new TC out. */
1354 return scic_controller_continue_io(sci_req
);
1357 static enum sci_status
scic_sds_stp_request_pio_data_out_transmit_data(struct scic_sds_request
*sci_req
)
1360 struct scu_sgl_element
*current_sgl
;
1362 u32 remaining_bytes_in_current_sgl
= 0;
1363 enum sci_status status
= SCI_SUCCESS
;
1364 struct scic_sds_stp_request
*stp_req
= &sci_req
->stp
.req
;
1366 sgl_offset
= stp_req
->type
.pio
.request_current
.sgl_offset
;
1368 if (stp_req
->type
.pio
.request_current
.sgl_set
== SCU_SGL_ELEMENT_PAIR_A
) {
1369 current_sgl
= &(stp_req
->type
.pio
.request_current
.sgl_pair
->A
);
1370 remaining_bytes_in_current_sgl
= stp_req
->type
.pio
.request_current
.sgl_pair
->A
.length
- sgl_offset
;
1372 current_sgl
= &(stp_req
->type
.pio
.request_current
.sgl_pair
->B
);
1373 remaining_bytes_in_current_sgl
= stp_req
->type
.pio
.request_current
.sgl_pair
->B
.length
- sgl_offset
;
1377 if (stp_req
->type
.pio
.pio_transfer_bytes
> 0) {
1378 if (stp_req
->type
.pio
.pio_transfer_bytes
>= remaining_bytes_in_current_sgl
) {
1379 /* recycle the TC and send the H2D Data FIS from (current sgl + sgl_offset) and length = remaining_bytes_in_current_sgl */
1380 status
= scic_sds_stp_request_pio_data_out_trasmit_data_frame(sci_req
, remaining_bytes_in_current_sgl
);
1381 if (status
== SCI_SUCCESS
) {
1382 stp_req
->type
.pio
.pio_transfer_bytes
-= remaining_bytes_in_current_sgl
;
1384 /* update the current sgl, sgl_offset and save for future */
1385 current_sgl
= scic_sds_stp_request_pio_get_next_sgl(stp_req
);
1388 } else if (stp_req
->type
.pio
.pio_transfer_bytes
< remaining_bytes_in_current_sgl
) {
1389 /* recycle the TC and send the H2D Data FIS from (current sgl + sgl_offset) and length = type.pio.pio_transfer_bytes */
1390 scic_sds_stp_request_pio_data_out_trasmit_data_frame(sci_req
, stp_req
->type
.pio
.pio_transfer_bytes
);
1392 if (status
== SCI_SUCCESS
) {
1393 /* Sgl offset will be adjusted and saved for future */
1394 sgl_offset
+= stp_req
->type
.pio
.pio_transfer_bytes
;
1395 current_sgl
->address_lower
+= stp_req
->type
.pio
.pio_transfer_bytes
;
1396 stp_req
->type
.pio
.pio_transfer_bytes
= 0;
1401 if (status
== SCI_SUCCESS
) {
1402 stp_req
->type
.pio
.request_current
.sgl_offset
= sgl_offset
;
1410 * @stp_request: The request that is used for the SGL processing.
1411 * @data_buffer: The buffer of data to be copied.
1412 * @length: The length of the data transfer.
1414 * Copy the data from the buffer for the length specified to the IO reqeust SGL
1415 * specified data region. enum sci_status
1417 static enum sci_status
1418 scic_sds_stp_request_pio_data_in_copy_data_buffer(struct scic_sds_stp_request
*stp_req
,
1419 u8
*data_buf
, u32 len
)
1421 struct scic_sds_request
*sci_req
;
1422 struct isci_request
*ireq
;
1425 struct sas_task
*task
;
1426 struct scatterlist
*sg
;
1428 int total_len
= len
;
1430 sci_req
= to_sci_req(stp_req
);
1431 ireq
= sci_req_to_ireq(sci_req
);
1432 task
= isci_request_access_task(ireq
);
1433 src_addr
= data_buf
;
1435 if (task
->num_scatter
> 0) {
1438 while (total_len
> 0) {
1439 struct page
*page
= sg_page(sg
);
1441 copy_len
= min_t(int, total_len
, sg_dma_len(sg
));
1442 kaddr
= kmap_atomic(page
, KM_IRQ0
);
1443 memcpy(kaddr
+ sg
->offset
, src_addr
, copy_len
);
1444 kunmap_atomic(kaddr
, KM_IRQ0
);
1445 total_len
-= copy_len
;
1446 src_addr
+= copy_len
;
1450 BUG_ON(task
->total_xfer_len
< total_len
);
1451 memcpy(task
->scatter
, src_addr
, total_len
);
1459 * @sci_req: The PIO DATA IN request that is to receive the data.
1460 * @data_buffer: The buffer to copy from.
1462 * Copy the data buffer to the io request data region. enum sci_status
1464 static enum sci_status
scic_sds_stp_request_pio_data_in_copy_data(
1465 struct scic_sds_stp_request
*sci_req
,
1468 enum sci_status status
;
1471 * If there is less than 1K remaining in the transfer request
1472 * copy just the data for the transfer */
1473 if (sci_req
->type
.pio
.pio_transfer_bytes
< SCU_MAX_FRAME_BUFFER_SIZE
) {
1474 status
= scic_sds_stp_request_pio_data_in_copy_data_buffer(
1475 sci_req
, data_buffer
, sci_req
->type
.pio
.pio_transfer_bytes
);
1477 if (status
== SCI_SUCCESS
)
1478 sci_req
->type
.pio
.pio_transfer_bytes
= 0;
1480 /* We are transfering the whole frame so copy */
1481 status
= scic_sds_stp_request_pio_data_in_copy_data_buffer(
1482 sci_req
, data_buffer
, SCU_MAX_FRAME_BUFFER_SIZE
);
1484 if (status
== SCI_SUCCESS
)
1485 sci_req
->type
.pio
.pio_transfer_bytes
-= SCU_MAX_FRAME_BUFFER_SIZE
;
1491 static enum sci_status
1492 stp_request_pio_await_h2d_completion_tc_event(struct scic_sds_request
*sci_req
,
1493 u32 completion_code
)
1495 enum sci_status status
= SCI_SUCCESS
;
1497 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
1498 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
1499 scic_sds_request_set_status(sci_req
,
1503 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_PIO_WAIT_FRAME
);
1507 /* All other completion status cause the IO to be
1508 * complete. If a NAK was received, then it is up to
1509 * the user to retry the request.
1511 scic_sds_request_set_status(sci_req
,
1512 SCU_NORMALIZE_COMPLETION_STATUS(completion_code
),
1513 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1515 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1522 static enum sci_status
1523 pio_data_out_tx_done_tc_event(struct scic_sds_request
*sci_req
,
1524 u32 completion_code
)
1526 enum sci_status status
= SCI_SUCCESS
;
1527 bool all_frames_transferred
= false;
1528 struct scic_sds_stp_request
*stp_req
= &sci_req
->stp
.req
;
1530 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
1531 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
1533 if (stp_req
->type
.pio
.pio_transfer_bytes
!= 0) {
1534 status
= scic_sds_stp_request_pio_data_out_transmit_data(sci_req
);
1535 if (status
== SCI_SUCCESS
) {
1536 if (stp_req
->type
.pio
.pio_transfer_bytes
== 0)
1537 all_frames_transferred
= true;
1539 } else if (stp_req
->type
.pio
.pio_transfer_bytes
== 0) {
1541 * this will happen if the all data is written at the
1542 * first time after the pio setup fis is received
1544 all_frames_transferred
= true;
1547 /* all data transferred. */
1548 if (all_frames_transferred
) {
1550 * Change the state to SCI_REQ_STP_PIO_DATA_IN
1551 * and wait for PIO_SETUP fis / or D2H REg fis. */
1552 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_PIO_WAIT_FRAME
);
1558 * All other completion status cause the IO to be complete.
1559 * If a NAK was received, then it is up to the user to retry
1562 scic_sds_request_set_status(
1564 SCU_NORMALIZE_COMPLETION_STATUS(completion_code
),
1565 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1567 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1574 static void scic_sds_stp_request_udma_complete_request(
1575 struct scic_sds_request
*request
,
1577 enum sci_status sci_status
)
1579 scic_sds_request_set_status(request
, scu_status
, sci_status
);
1580 sci_change_state(&request
->sm
, SCI_REQ_COMPLETED
);
1583 static enum sci_status
scic_sds_stp_request_udma_general_frame_handler(struct scic_sds_request
*sci_req
,
1586 struct scic_sds_controller
*scic
= sci_req
->owning_controller
;
1587 struct dev_to_host_fis
*frame_header
;
1588 enum sci_status status
;
1591 status
= scic_sds_unsolicited_frame_control_get_header(&scic
->uf_control
,
1593 (void **)&frame_header
);
1595 if ((status
== SCI_SUCCESS
) &&
1596 (frame_header
->fis_type
== FIS_REGD2H
)) {
1597 scic_sds_unsolicited_frame_control_get_buffer(&scic
->uf_control
,
1599 (void **)&frame_buffer
);
1601 scic_sds_controller_copy_sata_response(&sci_req
->stp
.rsp
,
1606 scic_sds_controller_release_frame(scic
, frame_index
);
1612 scic_sds_io_request_frame_handler(struct scic_sds_request
*sci_req
,
1615 struct scic_sds_controller
*scic
= sci_req
->owning_controller
;
1616 struct scic_sds_stp_request
*stp_req
= &sci_req
->stp
.req
;
1617 enum sci_base_request_states state
;
1618 enum sci_status status
;
1621 state
= sci_req
->sm
.current_state_id
;
1623 case SCI_REQ_STARTED
: {
1624 struct ssp_frame_hdr ssp_hdr
;
1627 scic_sds_unsolicited_frame_control_get_header(&scic
->uf_control
,
1631 word_cnt
= sizeof(struct ssp_frame_hdr
) / sizeof(u32
);
1632 sci_swab32_cpy(&ssp_hdr
, frame_header
, word_cnt
);
1634 if (ssp_hdr
.frame_type
== SSP_RESPONSE
) {
1635 struct ssp_response_iu
*resp_iu
;
1636 ssize_t word_cnt
= SSP_RESP_IU_MAX_SIZE
/ sizeof(u32
);
1638 scic_sds_unsolicited_frame_control_get_buffer(&scic
->uf_control
,
1642 sci_swab32_cpy(&sci_req
->ssp
.rsp
, resp_iu
, word_cnt
);
1644 resp_iu
= &sci_req
->ssp
.rsp
;
1646 if (resp_iu
->datapres
== 0x01 ||
1647 resp_iu
->datapres
== 0x02) {
1648 scic_sds_request_set_status(sci_req
,
1649 SCU_TASK_DONE_CHECK_RESPONSE
,
1650 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1652 scic_sds_request_set_status(sci_req
,
1656 /* not a response frame, why did it get forwarded? */
1657 dev_err(scic_to_dev(scic
),
1658 "%s: SCIC IO Request 0x%p received unexpected "
1659 "frame %d type 0x%02x\n", __func__
, sci_req
,
1660 frame_index
, ssp_hdr
.frame_type
);
1664 * In any case we are done with this frame buffer return it to
1667 scic_sds_controller_release_frame(scic
, frame_index
);
1672 case SCI_REQ_TASK_WAIT_TC_RESP
:
1673 scic_sds_io_request_copy_response(sci_req
);
1674 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1675 scic_sds_controller_release_frame(scic
,frame_index
);
1678 case SCI_REQ_SMP_WAIT_RESP
: {
1679 struct smp_resp
*rsp_hdr
= &sci_req
->smp
.rsp
;
1682 scic_sds_unsolicited_frame_control_get_header(&scic
->uf_control
,
1686 /* byte swap the header. */
1687 word_cnt
= SMP_RESP_HDR_SZ
/ sizeof(u32
);
1688 sci_swab32_cpy(rsp_hdr
, frame_header
, word_cnt
);
1690 if (rsp_hdr
->frame_type
== SMP_RESPONSE
) {
1693 scic_sds_unsolicited_frame_control_get_buffer(&scic
->uf_control
,
1697 word_cnt
= (sizeof(struct smp_resp
) - SMP_RESP_HDR_SZ
) /
1700 sci_swab32_cpy(((u8
*) rsp_hdr
) + SMP_RESP_HDR_SZ
,
1701 smp_resp
, word_cnt
);
1703 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_GOOD
,
1706 sci_change_state(&sci_req
->sm
, SCI_REQ_SMP_WAIT_TC_COMP
);
1709 * This was not a response frame why did it get
1712 dev_err(scic_to_dev(scic
),
1713 "%s: SCIC SMP Request 0x%p received unexpected "
1714 "frame %d type 0x%02x\n",
1718 rsp_hdr
->frame_type
);
1720 scic_sds_request_set_status(sci_req
,
1721 SCU_TASK_DONE_SMP_FRM_TYPE_ERR
,
1722 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
1724 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1727 scic_sds_controller_release_frame(scic
, frame_index
);
1732 case SCI_REQ_STP_UDMA_WAIT_TC_COMP
:
1733 return scic_sds_stp_request_udma_general_frame_handler(sci_req
,
1736 case SCI_REQ_STP_UDMA_WAIT_D2H
:
1737 /* Use the general frame handler to copy the resposne data */
1738 status
= scic_sds_stp_request_udma_general_frame_handler(sci_req
,
1741 if (status
!= SCI_SUCCESS
)
1744 scic_sds_stp_request_udma_complete_request(sci_req
,
1745 SCU_TASK_DONE_CHECK_RESPONSE
,
1746 SCI_FAILURE_IO_RESPONSE_VALID
);
1750 case SCI_REQ_STP_NON_DATA_WAIT_D2H
: {
1751 struct dev_to_host_fis
*frame_header
;
1754 status
= scic_sds_unsolicited_frame_control_get_header(&scic
->uf_control
,
1756 (void **)&frame_header
);
1758 if (status
!= SCI_SUCCESS
) {
1759 dev_err(scic_to_dev(scic
),
1760 "%s: SCIC IO Request 0x%p could not get frame "
1761 "header for frame index %d, status %x\n",
1770 switch (frame_header
->fis_type
) {
1772 scic_sds_unsolicited_frame_control_get_buffer(&scic
->uf_control
,
1774 (void **)&frame_buffer
);
1776 scic_sds_controller_copy_sata_response(&sci_req
->stp
.rsp
,
1780 /* The command has completed with error */
1781 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_CHECK_RESPONSE
,
1782 SCI_FAILURE_IO_RESPONSE_VALID
);
1786 dev_warn(scic_to_dev(scic
),
1787 "%s: IO Request:0x%p Frame Id:%d protocol "
1788 "violation occurred\n", __func__
, stp_req
,
1791 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_UNEXP_FIS
,
1792 SCI_FAILURE_PROTOCOL_VIOLATION
);
1796 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1798 /* Frame has been decoded return it to the controller */
1799 scic_sds_controller_release_frame(scic
, frame_index
);
1804 case SCI_REQ_STP_PIO_WAIT_FRAME
: {
1805 struct isci_request
*ireq
= sci_req_to_ireq(sci_req
);
1806 struct sas_task
*task
= isci_request_access_task(ireq
);
1807 struct dev_to_host_fis
*frame_header
;
1810 status
= scic_sds_unsolicited_frame_control_get_header(&scic
->uf_control
,
1812 (void **)&frame_header
);
1814 if (status
!= SCI_SUCCESS
) {
1815 dev_err(scic_to_dev(scic
),
1816 "%s: SCIC IO Request 0x%p could not get frame "
1817 "header for frame index %d, status %x\n",
1818 __func__
, stp_req
, frame_index
, status
);
1822 switch (frame_header
->fis_type
) {
1824 /* Get from the frame buffer the PIO Setup Data */
1825 scic_sds_unsolicited_frame_control_get_buffer(&scic
->uf_control
,
1827 (void **)&frame_buffer
);
1829 /* Get the data from the PIO Setup The SCU Hardware
1830 * returns first word in the frame_header and the rest
1831 * of the data is in the frame buffer so we need to
1835 /* transfer_count: first 16bits in the 4th dword */
1836 stp_req
->type
.pio
.pio_transfer_bytes
= frame_buffer
[3] & 0xffff;
1838 /* ending_status: 4th byte in the 3rd dword */
1839 stp_req
->type
.pio
.ending_status
= (frame_buffer
[2] >> 24) & 0xff;
1841 scic_sds_controller_copy_sata_response(&sci_req
->stp
.rsp
,
1845 sci_req
->stp
.rsp
.status
= stp_req
->type
.pio
.ending_status
;
1847 /* The next state is dependent on whether the
1848 * request was PIO Data-in or Data out
1850 if (task
->data_dir
== DMA_FROM_DEVICE
) {
1851 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_PIO_DATA_IN
);
1852 } else if (task
->data_dir
== DMA_TO_DEVICE
) {
1854 status
= scic_sds_stp_request_pio_data_out_transmit_data(sci_req
);
1855 if (status
!= SCI_SUCCESS
)
1857 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_PIO_DATA_OUT
);
1861 case FIS_SETDEVBITS
:
1862 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_PIO_WAIT_FRAME
);
1866 if (frame_header
->status
& ATA_BUSY
) {
1868 * Now why is the drive sending a D2H Register
1869 * FIS when it is still busy? Do nothing since
1870 * we are still in the right state.
1872 dev_dbg(scic_to_dev(scic
),
1873 "%s: SCIC PIO Request 0x%p received "
1874 "D2H Register FIS with BSY status "
1878 frame_header
->status
);
1882 scic_sds_unsolicited_frame_control_get_buffer(&scic
->uf_control
,
1884 (void **)&frame_buffer
);
1886 scic_sds_controller_copy_sata_response(&sci_req
->stp
.req
,
1890 scic_sds_request_set_status(sci_req
,
1891 SCU_TASK_DONE_CHECK_RESPONSE
,
1892 SCI_FAILURE_IO_RESPONSE_VALID
);
1894 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1898 /* FIXME: what do we do here? */
1902 /* Frame is decoded return it to the controller */
1903 scic_sds_controller_release_frame(scic
, frame_index
);
1908 case SCI_REQ_STP_PIO_DATA_IN
: {
1909 struct dev_to_host_fis
*frame_header
;
1910 struct sata_fis_data
*frame_buffer
;
1912 status
= scic_sds_unsolicited_frame_control_get_header(&scic
->uf_control
,
1914 (void **)&frame_header
);
1916 if (status
!= SCI_SUCCESS
) {
1917 dev_err(scic_to_dev(scic
),
1918 "%s: SCIC IO Request 0x%p could not get frame "
1919 "header for frame index %d, status %x\n",
1927 if (frame_header
->fis_type
!= FIS_DATA
) {
1928 dev_err(scic_to_dev(scic
),
1929 "%s: SCIC PIO Request 0x%p received frame %d "
1930 "with fis type 0x%02x when expecting a data "
1935 frame_header
->fis_type
);
1937 scic_sds_request_set_status(sci_req
,
1939 SCI_FAILURE_IO_REQUIRES_SCSI_ABORT
);
1941 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1943 /* Frame is decoded return it to the controller */
1944 scic_sds_controller_release_frame(scic
, frame_index
);
1948 if (stp_req
->type
.pio
.request_current
.sgl_pair
== NULL
) {
1949 sci_req
->saved_rx_frame_index
= frame_index
;
1950 stp_req
->type
.pio
.pio_transfer_bytes
= 0;
1952 scic_sds_unsolicited_frame_control_get_buffer(&scic
->uf_control
,
1954 (void **)&frame_buffer
);
1956 status
= scic_sds_stp_request_pio_data_in_copy_data(stp_req
,
1957 (u8
*)frame_buffer
);
1959 /* Frame is decoded return it to the controller */
1960 scic_sds_controller_release_frame(scic
, frame_index
);
1963 /* Check for the end of the transfer, are there more
1964 * bytes remaining for this data transfer
1966 if (status
!= SCI_SUCCESS
||
1967 stp_req
->type
.pio
.pio_transfer_bytes
!= 0)
1970 if ((stp_req
->type
.pio
.ending_status
& ATA_BUSY
) == 0) {
1971 scic_sds_request_set_status(sci_req
,
1972 SCU_TASK_DONE_CHECK_RESPONSE
,
1973 SCI_FAILURE_IO_RESPONSE_VALID
);
1975 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
1977 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_PIO_WAIT_FRAME
);
1982 case SCI_REQ_STP_SOFT_RESET_WAIT_D2H
: {
1983 struct dev_to_host_fis
*frame_header
;
1986 status
= scic_sds_unsolicited_frame_control_get_header(&scic
->uf_control
,
1988 (void **)&frame_header
);
1989 if (status
!= SCI_SUCCESS
) {
1990 dev_err(scic_to_dev(scic
),
1991 "%s: SCIC IO Request 0x%p could not get frame "
1992 "header for frame index %d, status %x\n",
2000 switch (frame_header
->fis_type
) {
2002 scic_sds_unsolicited_frame_control_get_buffer(&scic
->uf_control
,
2004 (void **)&frame_buffer
);
2006 scic_sds_controller_copy_sata_response(&sci_req
->stp
.rsp
,
2010 /* The command has completed with error */
2011 scic_sds_request_set_status(sci_req
,
2012 SCU_TASK_DONE_CHECK_RESPONSE
,
2013 SCI_FAILURE_IO_RESPONSE_VALID
);
2017 dev_warn(scic_to_dev(scic
),
2018 "%s: IO Request:0x%p Frame Id:%d protocol "
2019 "violation occurred\n",
2024 scic_sds_request_set_status(sci_req
,
2025 SCU_TASK_DONE_UNEXP_FIS
,
2026 SCI_FAILURE_PROTOCOL_VIOLATION
);
2030 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
2032 /* Frame has been decoded return it to the controller */
2033 scic_sds_controller_release_frame(scic
, frame_index
);
2037 case SCI_REQ_ABORTING
:
2039 * TODO: Is it even possible to get an unsolicited frame in the
2042 scic_sds_controller_release_frame(scic
, frame_index
);
2046 dev_warn(scic_to_dev(scic
),
2047 "%s: SCIC IO Request given unexpected frame %x while "
2053 scic_sds_controller_release_frame(scic
, frame_index
);
2054 return SCI_FAILURE_INVALID_STATE
;
2058 static enum sci_status
stp_request_udma_await_tc_event(struct scic_sds_request
*sci_req
,
2059 u32 completion_code
)
2061 enum sci_status status
= SCI_SUCCESS
;
2063 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
2064 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
2065 scic_sds_stp_request_udma_complete_request(sci_req
,
2069 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_FIS
):
2070 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_REG_ERR
):
2071 /* We must check ther response buffer to see if the D2H
2072 * Register FIS was received before we got the TC
2075 if (sci_req
->stp
.rsp
.fis_type
== FIS_REGD2H
) {
2076 scic_sds_remote_device_suspend(sci_req
->target_device
,
2077 SCU_EVENT_SPECIFIC(SCU_NORMALIZE_COMPLETION_STATUS(completion_code
)));
2079 scic_sds_stp_request_udma_complete_request(sci_req
,
2080 SCU_TASK_DONE_CHECK_RESPONSE
,
2081 SCI_FAILURE_IO_RESPONSE_VALID
);
2083 /* If we have an error completion status for the
2084 * TC then we can expect a D2H register FIS from
2085 * the device so we must change state to wait
2088 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_UDMA_WAIT_D2H
);
2092 /* TODO Check to see if any of these completion status need to
2093 * wait for the device to host register fis.
2095 /* TODO We can retry the command for SCU_TASK_DONE_CMD_LL_R_ERR
2096 * - this comes only for B0
2098 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_INV_FIS_LEN
):
2099 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_MAX_PLD_ERR
):
2100 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_R_ERR
):
2101 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CMD_LL_R_ERR
):
2102 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CRC_ERR
):
2103 scic_sds_remote_device_suspend(sci_req
->target_device
,
2104 SCU_EVENT_SPECIFIC(SCU_NORMALIZE_COMPLETION_STATUS(completion_code
)));
2105 /* Fall through to the default case */
2107 /* All other completion status cause the IO to be complete. */
2108 scic_sds_stp_request_udma_complete_request(sci_req
,
2109 SCU_NORMALIZE_COMPLETION_STATUS(completion_code
),
2110 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
2117 static enum sci_status
2118 stp_request_soft_reset_await_h2d_asserted_tc_event(struct scic_sds_request
*sci_req
,
2119 u32 completion_code
)
2121 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
2122 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
2123 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_GOOD
,
2126 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG
);
2131 * All other completion status cause the IO to be complete.
2132 * If a NAK was received, then it is up to the user to retry
2135 scic_sds_request_set_status(sci_req
,
2136 SCU_NORMALIZE_COMPLETION_STATUS(completion_code
),
2137 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
2139 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
2146 static enum sci_status
2147 stp_request_soft_reset_await_h2d_diagnostic_tc_event(struct scic_sds_request
*sci_req
,
2148 u32 completion_code
)
2150 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code
)) {
2151 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD
):
2152 scic_sds_request_set_status(sci_req
, SCU_TASK_DONE_GOOD
,
2155 sci_change_state(&sci_req
->sm
, SCI_REQ_STP_SOFT_RESET_WAIT_D2H
);
2159 /* All other completion status cause the IO to be complete. If
2160 * a NAK was received, then it is up to the user to retry the
2163 scic_sds_request_set_status(sci_req
,
2164 SCU_NORMALIZE_COMPLETION_STATUS(completion_code
),
2165 SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
);
2167 sci_change_state(&sci_req
->sm
, SCI_REQ_COMPLETED
);
2175 scic_sds_io_request_tc_completion(struct scic_sds_request
*sci_req
,
2176 u32 completion_code
)
2178 enum sci_base_request_states state
;
2179 struct scic_sds_controller
*scic
= sci_req
->owning_controller
;
2181 state
= sci_req
->sm
.current_state_id
;
2184 case SCI_REQ_STARTED
:
2185 return request_started_state_tc_event(sci_req
, completion_code
);
2187 case SCI_REQ_TASK_WAIT_TC_COMP
:
2188 return ssp_task_request_await_tc_event(sci_req
,
2191 case SCI_REQ_SMP_WAIT_RESP
:
2192 return smp_request_await_response_tc_event(sci_req
,
2195 case SCI_REQ_SMP_WAIT_TC_COMP
:
2196 return smp_request_await_tc_event(sci_req
, completion_code
);
2198 case SCI_REQ_STP_UDMA_WAIT_TC_COMP
:
2199 return stp_request_udma_await_tc_event(sci_req
,
2202 case SCI_REQ_STP_NON_DATA_WAIT_H2D
:
2203 return stp_request_non_data_await_h2d_tc_event(sci_req
,
2206 case SCI_REQ_STP_PIO_WAIT_H2D
:
2207 return stp_request_pio_await_h2d_completion_tc_event(sci_req
,
2210 case SCI_REQ_STP_PIO_DATA_OUT
:
2211 return pio_data_out_tx_done_tc_event(sci_req
, completion_code
);
2213 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED
:
2214 return stp_request_soft_reset_await_h2d_asserted_tc_event(sci_req
,
2217 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG
:
2218 return stp_request_soft_reset_await_h2d_diagnostic_tc_event(sci_req
,
2221 case SCI_REQ_ABORTING
:
2222 return request_aborting_state_tc_event(sci_req
,
2226 dev_warn(scic_to_dev(scic
),
2227 "%s: SCIC IO Request given task completion "
2228 "notification %x while in wrong state %d\n",
2232 return SCI_FAILURE_INVALID_STATE
;
2237 * isci_request_process_response_iu() - This function sets the status and
2238 * response iu, in the task struct, from the request object for the upper
2240 * @sas_task: This parameter is the task struct from the upper layer driver.
2241 * @resp_iu: This parameter points to the response iu of the completed request.
2242 * @dev: This parameter specifies the linux device struct.
2246 static void isci_request_process_response_iu(
2247 struct sas_task
*task
,
2248 struct ssp_response_iu
*resp_iu
,
2253 "resp_iu->status = 0x%x,\nresp_iu->datapres = %d "
2254 "resp_iu->response_data_len = %x, "
2255 "resp_iu->sense_data_len = %x\nrepsonse data: ",
2260 resp_iu
->response_data_len
,
2261 resp_iu
->sense_data_len
);
2263 task
->task_status
.stat
= resp_iu
->status
;
2265 /* libsas updates the task status fields based on the response iu. */
2266 sas_ssp_task_response(dev
, task
, resp_iu
);
2270 * isci_request_set_open_reject_status() - This function prepares the I/O
2271 * completion for OPEN_REJECT conditions.
2272 * @request: This parameter is the completed isci_request object.
2273 * @response_ptr: This parameter specifies the service response for the I/O.
2274 * @status_ptr: This parameter specifies the exec status for the I/O.
2275 * @complete_to_host_ptr: This parameter specifies the action to be taken by
2276 * the LLDD with respect to completing this request or forcing an abort
2277 * condition on the I/O.
2278 * @open_rej_reason: This parameter specifies the encoded reason for the
2279 * abandon-class reject.
2283 static void isci_request_set_open_reject_status(
2284 struct isci_request
*request
,
2285 struct sas_task
*task
,
2286 enum service_response
*response_ptr
,
2287 enum exec_status
*status_ptr
,
2288 enum isci_completion_selection
*complete_to_host_ptr
,
2289 enum sas_open_rej_reason open_rej_reason
)
2291 /* Task in the target is done. */
2292 request
->complete_in_target
= true;
2293 *response_ptr
= SAS_TASK_UNDELIVERED
;
2294 *status_ptr
= SAS_OPEN_REJECT
;
2295 *complete_to_host_ptr
= isci_perform_normal_io_completion
;
2296 task
->task_status
.open_rej_reason
= open_rej_reason
;
2300 * isci_request_handle_controller_specific_errors() - This function decodes
2301 * controller-specific I/O completion error conditions.
2302 * @request: This parameter is the completed isci_request object.
2303 * @response_ptr: This parameter specifies the service response for the I/O.
2304 * @status_ptr: This parameter specifies the exec status for the I/O.
2305 * @complete_to_host_ptr: This parameter specifies the action to be taken by
2306 * the LLDD with respect to completing this request or forcing an abort
2307 * condition on the I/O.
2311 static void isci_request_handle_controller_specific_errors(
2312 struct isci_remote_device
*idev
,
2313 struct isci_request
*request
,
2314 struct sas_task
*task
,
2315 enum service_response
*response_ptr
,
2316 enum exec_status
*status_ptr
,
2317 enum isci_completion_selection
*complete_to_host_ptr
)
2319 unsigned int cstatus
;
2321 cstatus
= request
->sci
.scu_status
;
2323 dev_dbg(&request
->isci_host
->pdev
->dev
,
2324 "%s: %p SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR "
2325 "- controller status = 0x%x\n",
2326 __func__
, request
, cstatus
);
2328 /* Decode the controller-specific errors; most
2329 * important is to recognize those conditions in which
2330 * the target may still have a task outstanding that
2333 * Note that there are SCU completion codes being
2334 * named in the decode below for which SCIC has already
2335 * done work to handle them in a way other than as
2336 * a controller-specific completion code; these are left
2337 * in the decode below for completeness sake.
2340 case SCU_TASK_DONE_DMASETUP_DIRERR
:
2341 /* Also SCU_TASK_DONE_SMP_FRM_TYPE_ERR: */
2342 case SCU_TASK_DONE_XFERCNT_ERR
:
2343 /* Also SCU_TASK_DONE_SMP_UFI_ERR: */
2344 if (task
->task_proto
== SAS_PROTOCOL_SMP
) {
2345 /* SCU_TASK_DONE_SMP_UFI_ERR == Task Done. */
2346 *response_ptr
= SAS_TASK_COMPLETE
;
2348 /* See if the device has been/is being stopped. Note
2349 * that we ignore the quiesce state, since we are
2350 * concerned about the actual device state.
2353 *status_ptr
= SAS_DEVICE_UNKNOWN
;
2355 *status_ptr
= SAS_ABORTED_TASK
;
2357 request
->complete_in_target
= true;
2359 *complete_to_host_ptr
=
2360 isci_perform_normal_io_completion
;
2362 /* Task in the target is not done. */
2363 *response_ptr
= SAS_TASK_UNDELIVERED
;
2366 *status_ptr
= SAS_DEVICE_UNKNOWN
;
2368 *status_ptr
= SAM_STAT_TASK_ABORTED
;
2370 request
->complete_in_target
= false;
2372 *complete_to_host_ptr
=
2373 isci_perform_error_io_completion
;
2378 case SCU_TASK_DONE_CRC_ERR
:
2379 case SCU_TASK_DONE_NAK_CMD_ERR
:
2380 case SCU_TASK_DONE_EXCESS_DATA
:
2381 case SCU_TASK_DONE_UNEXP_FIS
:
2382 /* Also SCU_TASK_DONE_UNEXP_RESP: */
2383 case SCU_TASK_DONE_VIIT_ENTRY_NV
: /* TODO - conditions? */
2384 case SCU_TASK_DONE_IIT_ENTRY_NV
: /* TODO - conditions? */
2385 case SCU_TASK_DONE_RNCNV_OUTBOUND
: /* TODO - conditions? */
2386 /* These are conditions in which the target
2387 * has completed the task, so that no cleanup
2390 *response_ptr
= SAS_TASK_COMPLETE
;
2392 /* See if the device has been/is being stopped. Note
2393 * that we ignore the quiesce state, since we are
2394 * concerned about the actual device state.
2397 *status_ptr
= SAS_DEVICE_UNKNOWN
;
2399 *status_ptr
= SAS_ABORTED_TASK
;
2401 request
->complete_in_target
= true;
2403 *complete_to_host_ptr
= isci_perform_normal_io_completion
;
2407 /* Note that the only open reject completion codes seen here will be
2408 * abandon-class codes; all others are automatically retried in the SCU.
2410 case SCU_TASK_OPEN_REJECT_WRONG_DESTINATION
:
2412 isci_request_set_open_reject_status(
2413 request
, task
, response_ptr
, status_ptr
,
2414 complete_to_host_ptr
, SAS_OREJ_WRONG_DEST
);
2417 case SCU_TASK_OPEN_REJECT_ZONE_VIOLATION
:
2419 /* Note - the return of AB0 will change when
2420 * libsas implements detection of zone violations.
2422 isci_request_set_open_reject_status(
2423 request
, task
, response_ptr
, status_ptr
,
2424 complete_to_host_ptr
, SAS_OREJ_RESV_AB0
);
2427 case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_1
:
2429 isci_request_set_open_reject_status(
2430 request
, task
, response_ptr
, status_ptr
,
2431 complete_to_host_ptr
, SAS_OREJ_RESV_AB1
);
2434 case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_2
:
2436 isci_request_set_open_reject_status(
2437 request
, task
, response_ptr
, status_ptr
,
2438 complete_to_host_ptr
, SAS_OREJ_RESV_AB2
);
2441 case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_3
:
2443 isci_request_set_open_reject_status(
2444 request
, task
, response_ptr
, status_ptr
,
2445 complete_to_host_ptr
, SAS_OREJ_RESV_AB3
);
2448 case SCU_TASK_OPEN_REJECT_BAD_DESTINATION
:
2450 isci_request_set_open_reject_status(
2451 request
, task
, response_ptr
, status_ptr
,
2452 complete_to_host_ptr
, SAS_OREJ_BAD_DEST
);
2455 case SCU_TASK_OPEN_REJECT_STP_RESOURCES_BUSY
:
2457 isci_request_set_open_reject_status(
2458 request
, task
, response_ptr
, status_ptr
,
2459 complete_to_host_ptr
, SAS_OREJ_STP_NORES
);
2462 case SCU_TASK_OPEN_REJECT_PROTOCOL_NOT_SUPPORTED
:
2464 isci_request_set_open_reject_status(
2465 request
, task
, response_ptr
, status_ptr
,
2466 complete_to_host_ptr
, SAS_OREJ_EPROTO
);
2469 case SCU_TASK_OPEN_REJECT_CONNECTION_RATE_NOT_SUPPORTED
:
2471 isci_request_set_open_reject_status(
2472 request
, task
, response_ptr
, status_ptr
,
2473 complete_to_host_ptr
, SAS_OREJ_CONN_RATE
);
2476 case SCU_TASK_DONE_LL_R_ERR
:
2477 /* Also SCU_TASK_DONE_ACK_NAK_TO: */
2478 case SCU_TASK_DONE_LL_PERR
:
2479 case SCU_TASK_DONE_LL_SY_TERM
:
2480 /* Also SCU_TASK_DONE_NAK_ERR:*/
2481 case SCU_TASK_DONE_LL_LF_TERM
:
2482 /* Also SCU_TASK_DONE_DATA_LEN_ERR: */
2483 case SCU_TASK_DONE_LL_ABORT_ERR
:
2484 case SCU_TASK_DONE_SEQ_INV_TYPE
:
2485 /* Also SCU_TASK_DONE_UNEXP_XR: */
2486 case SCU_TASK_DONE_XR_IU_LEN_ERR
:
2487 case SCU_TASK_DONE_INV_FIS_LEN
:
2488 /* Also SCU_TASK_DONE_XR_WD_LEN: */
2489 case SCU_TASK_DONE_SDMA_ERR
:
2490 case SCU_TASK_DONE_OFFSET_ERR
:
2491 case SCU_TASK_DONE_MAX_PLD_ERR
:
2492 case SCU_TASK_DONE_LF_ERR
:
2493 case SCU_TASK_DONE_SMP_RESP_TO_ERR
: /* Escalate to dev reset? */
2494 case SCU_TASK_DONE_SMP_LL_RX_ERR
:
2495 case SCU_TASK_DONE_UNEXP_DATA
:
2496 case SCU_TASK_DONE_UNEXP_SDBFIS
:
2497 case SCU_TASK_DONE_REG_ERR
:
2498 case SCU_TASK_DONE_SDB_ERR
:
2499 case SCU_TASK_DONE_TASK_ABORT
:
2501 /* Task in the target is not done. */
2502 *response_ptr
= SAS_TASK_UNDELIVERED
;
2503 *status_ptr
= SAM_STAT_TASK_ABORTED
;
2505 if (task
->task_proto
== SAS_PROTOCOL_SMP
) {
2506 request
->complete_in_target
= true;
2508 *complete_to_host_ptr
= isci_perform_normal_io_completion
;
2510 request
->complete_in_target
= false;
2512 *complete_to_host_ptr
= isci_perform_error_io_completion
;
2519 * isci_task_save_for_upper_layer_completion() - This function saves the
2520 * request for later completion to the upper layer driver.
2521 * @host: This parameter is a pointer to the host on which the the request
2522 * should be queued (either as an error or success).
2523 * @request: This parameter is the completed request.
2524 * @response: This parameter is the response code for the completed task.
2525 * @status: This parameter is the status code for the completed task.
2529 static void isci_task_save_for_upper_layer_completion(
2530 struct isci_host
*host
,
2531 struct isci_request
*request
,
2532 enum service_response response
,
2533 enum exec_status status
,
2534 enum isci_completion_selection task_notification_selection
)
2536 struct sas_task
*task
= isci_request_access_task(request
);
2538 task_notification_selection
2539 = isci_task_set_completion_status(task
, response
, status
,
2540 task_notification_selection
);
2542 /* Tasks aborted specifically by a call to the lldd_abort_task
2543 * function should not be completed to the host in the regular path.
2545 switch (task_notification_selection
) {
2547 case isci_perform_normal_io_completion
:
2549 /* Normal notification (task_done) */
2550 dev_dbg(&host
->pdev
->dev
,
2551 "%s: Normal - task = %p, response=%d (%d), status=%d (%d)\n",
2554 task
->task_status
.resp
, response
,
2555 task
->task_status
.stat
, status
);
2556 /* Add to the completed list. */
2557 list_add(&request
->completed_node
,
2558 &host
->requests_to_complete
);
2560 /* Take the request off the device's pending request list. */
2561 list_del_init(&request
->dev_node
);
2564 case isci_perform_aborted_io_completion
:
2565 /* No notification to libsas because this request is
2566 * already in the abort path.
2568 dev_warn(&host
->pdev
->dev
,
2569 "%s: Aborted - task = %p, response=%d (%d), status=%d (%d)\n",
2572 task
->task_status
.resp
, response
,
2573 task
->task_status
.stat
, status
);
2575 /* Wake up whatever process was waiting for this
2576 * request to complete.
2578 WARN_ON(request
->io_request_completion
== NULL
);
2580 if (request
->io_request_completion
!= NULL
) {
2582 /* Signal whoever is waiting that this
2583 * request is complete.
2585 complete(request
->io_request_completion
);
2589 case isci_perform_error_io_completion
:
2590 /* Use sas_task_abort */
2591 dev_warn(&host
->pdev
->dev
,
2592 "%s: Error - task = %p, response=%d (%d), status=%d (%d)\n",
2595 task
->task_status
.resp
, response
,
2596 task
->task_status
.stat
, status
);
2597 /* Add to the aborted list. */
2598 list_add(&request
->completed_node
,
2599 &host
->requests_to_errorback
);
2603 dev_warn(&host
->pdev
->dev
,
2604 "%s: Unknown - task = %p, response=%d (%d), status=%d (%d)\n",
2607 task
->task_status
.resp
, response
,
2608 task
->task_status
.stat
, status
);
2610 /* Add to the error to libsas list. */
2611 list_add(&request
->completed_node
,
2612 &host
->requests_to_errorback
);
2617 static void isci_request_io_request_complete(struct isci_host
*isci_host
,
2618 struct isci_request
*request
,
2619 enum sci_io_status completion_status
)
2621 struct sas_task
*task
= isci_request_access_task(request
);
2622 struct ssp_response_iu
*resp_iu
;
2624 unsigned long task_flags
;
2625 struct isci_remote_device
*idev
= isci_lookup_device(task
->dev
);
2626 enum service_response response
= SAS_TASK_UNDELIVERED
;
2627 enum exec_status status
= SAS_ABORTED_TASK
;
2628 enum isci_request_status request_status
;
2629 enum isci_completion_selection complete_to_host
2630 = isci_perform_normal_io_completion
;
2632 dev_dbg(&isci_host
->pdev
->dev
,
2633 "%s: request = %p, task = %p,\n"
2634 "task->data_dir = %d completion_status = 0x%x\n",
2641 spin_lock(&request
->state_lock
);
2642 request_status
= isci_request_get_state(request
);
2644 /* Decode the request status. Note that if the request has been
2645 * aborted by a task management function, we don't care
2646 * what the status is.
2648 switch (request_status
) {
2651 /* "aborted" indicates that the request was aborted by a task
2652 * management function, since once a task management request is
2653 * perfomed by the device, the request only completes because
2654 * of the subsequent driver terminate.
2656 * Aborted also means an external thread is explicitly managing
2657 * this request, so that we do not complete it up the stack.
2659 * The target is still there (since the TMF was successful).
2661 request
->complete_in_target
= true;
2662 response
= SAS_TASK_COMPLETE
;
2664 /* See if the device has been/is being stopped. Note
2665 * that we ignore the quiesce state, since we are
2666 * concerned about the actual device state.
2669 status
= SAS_DEVICE_UNKNOWN
;
2671 status
= SAS_ABORTED_TASK
;
2673 complete_to_host
= isci_perform_aborted_io_completion
;
2674 /* This was an aborted request. */
2676 spin_unlock(&request
->state_lock
);
2680 /* aborting means that the task management function tried and
2681 * failed to abort the request. We need to note the request
2682 * as SAS_TASK_UNDELIVERED, so that the scsi mid layer marks the
2685 * Aborting also means an external thread is explicitly managing
2686 * this request, so that we do not complete it up the stack.
2688 request
->complete_in_target
= true;
2689 response
= SAS_TASK_UNDELIVERED
;
2692 /* The device has been /is being stopped. Note that
2693 * we ignore the quiesce state, since we are
2694 * concerned about the actual device state.
2696 status
= SAS_DEVICE_UNKNOWN
;
2698 status
= SAS_PHY_DOWN
;
2700 complete_to_host
= isci_perform_aborted_io_completion
;
2702 /* This was an aborted request. */
2704 spin_unlock(&request
->state_lock
);
2709 /* This was an terminated request. This happens when
2710 * the I/O is being terminated because of an action on
2711 * the device (reset, tear down, etc.), and the I/O needs
2712 * to be completed up the stack.
2714 request
->complete_in_target
= true;
2715 response
= SAS_TASK_UNDELIVERED
;
2717 /* See if the device has been/is being stopped. Note
2718 * that we ignore the quiesce state, since we are
2719 * concerned about the actual device state.
2722 status
= SAS_DEVICE_UNKNOWN
;
2724 status
= SAS_ABORTED_TASK
;
2726 complete_to_host
= isci_perform_aborted_io_completion
;
2728 /* This was a terminated request. */
2730 spin_unlock(&request
->state_lock
);
2734 /* This was a terminated request that timed-out during the
2735 * termination process. There is no task to complete to
2738 complete_to_host
= isci_perform_normal_io_completion
;
2739 spin_unlock(&request
->state_lock
);
2744 /* The request is done from an SCU HW perspective. */
2745 request
->status
= completed
;
2747 spin_unlock(&request
->state_lock
);
2749 /* This is an active request being completed from the core. */
2750 switch (completion_status
) {
2752 case SCI_IO_FAILURE_RESPONSE_VALID
:
2753 dev_dbg(&isci_host
->pdev
->dev
,
2754 "%s: SCI_IO_FAILURE_RESPONSE_VALID (%p/%p)\n",
2759 if (sas_protocol_ata(task
->task_proto
)) {
2760 resp_buf
= &request
->sci
.stp
.rsp
;
2761 isci_request_process_stp_response(task
,
2763 } else if (SAS_PROTOCOL_SSP
== task
->task_proto
) {
2765 /* crack the iu response buffer. */
2766 resp_iu
= &request
->sci
.ssp
.rsp
;
2767 isci_request_process_response_iu(task
, resp_iu
,
2768 &isci_host
->pdev
->dev
);
2770 } else if (SAS_PROTOCOL_SMP
== task
->task_proto
) {
2772 dev_err(&isci_host
->pdev
->dev
,
2773 "%s: SCI_IO_FAILURE_RESPONSE_VALID: "
2774 "SAS_PROTOCOL_SMP protocol\n",
2778 dev_err(&isci_host
->pdev
->dev
,
2779 "%s: unknown protocol\n", __func__
);
2781 /* use the task status set in the task struct by the
2782 * isci_request_process_response_iu call.
2784 request
->complete_in_target
= true;
2785 response
= task
->task_status
.resp
;
2786 status
= task
->task_status
.stat
;
2789 case SCI_IO_SUCCESS
:
2790 case SCI_IO_SUCCESS_IO_DONE_EARLY
:
2792 response
= SAS_TASK_COMPLETE
;
2793 status
= SAM_STAT_GOOD
;
2794 request
->complete_in_target
= true;
2796 if (task
->task_proto
== SAS_PROTOCOL_SMP
) {
2797 void *rsp
= &request
->sci
.smp
.rsp
;
2799 dev_dbg(&isci_host
->pdev
->dev
,
2800 "%s: SMP protocol completion\n",
2803 sg_copy_from_buffer(
2804 &task
->smp_task
.smp_resp
, 1,
2805 rsp
, sizeof(struct smp_resp
));
2806 } else if (completion_status
2807 == SCI_IO_SUCCESS_IO_DONE_EARLY
) {
2809 /* This was an SSP / STP / SATA transfer.
2810 * There is a possibility that less data than
2811 * the maximum was transferred.
2813 u32 transferred_length
= sci_req_tx_bytes(&request
->sci
);
2815 task
->task_status
.residual
2816 = task
->total_xfer_len
- transferred_length
;
2818 /* If there were residual bytes, call this an
2821 if (task
->task_status
.residual
!= 0)
2822 status
= SAS_DATA_UNDERRUN
;
2824 dev_dbg(&isci_host
->pdev
->dev
,
2825 "%s: SCI_IO_SUCCESS_IO_DONE_EARLY %d\n",
2830 dev_dbg(&isci_host
->pdev
->dev
,
2831 "%s: SCI_IO_SUCCESS\n",
2836 case SCI_IO_FAILURE_TERMINATED
:
2837 dev_dbg(&isci_host
->pdev
->dev
,
2838 "%s: SCI_IO_FAILURE_TERMINATED (%p/%p)\n",
2843 /* The request was terminated explicitly. No handling
2844 * is needed in the SCSI error handler path.
2846 request
->complete_in_target
= true;
2847 response
= SAS_TASK_UNDELIVERED
;
2849 /* See if the device has been/is being stopped. Note
2850 * that we ignore the quiesce state, since we are
2851 * concerned about the actual device state.
2854 status
= SAS_DEVICE_UNKNOWN
;
2856 status
= SAS_ABORTED_TASK
;
2858 complete_to_host
= isci_perform_normal_io_completion
;
2861 case SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR
:
2863 isci_request_handle_controller_specific_errors(
2864 idev
, request
, task
, &response
, &status
,
2869 case SCI_IO_FAILURE_REMOTE_DEVICE_RESET_REQUIRED
:
2870 /* This is a special case, in that the I/O completion
2871 * is telling us that the device needs a reset.
2872 * In order for the device reset condition to be
2873 * noticed, the I/O has to be handled in the error
2874 * handler. Set the reset flag and cause the
2875 * SCSI error thread to be scheduled.
2877 spin_lock_irqsave(&task
->task_state_lock
, task_flags
);
2878 task
->task_state_flags
|= SAS_TASK_NEED_DEV_RESET
;
2879 spin_unlock_irqrestore(&task
->task_state_lock
, task_flags
);
2882 response
= SAS_TASK_UNDELIVERED
;
2883 status
= SAM_STAT_TASK_ABORTED
;
2885 complete_to_host
= isci_perform_error_io_completion
;
2886 request
->complete_in_target
= false;
2889 case SCI_FAILURE_RETRY_REQUIRED
:
2891 /* Fail the I/O so it can be retried. */
2892 response
= SAS_TASK_UNDELIVERED
;
2894 status
= SAS_DEVICE_UNKNOWN
;
2896 status
= SAS_ABORTED_TASK
;
2898 complete_to_host
= isci_perform_normal_io_completion
;
2899 request
->complete_in_target
= true;
2904 /* Catch any otherwise unhandled error codes here. */
2905 dev_warn(&isci_host
->pdev
->dev
,
2906 "%s: invalid completion code: 0x%x - "
2907 "isci_request = %p\n",
2908 __func__
, completion_status
, request
);
2910 response
= SAS_TASK_UNDELIVERED
;
2912 /* See if the device has been/is being stopped. Note
2913 * that we ignore the quiesce state, since we are
2914 * concerned about the actual device state.
2917 status
= SAS_DEVICE_UNKNOWN
;
2919 status
= SAS_ABORTED_TASK
;
2921 if (SAS_PROTOCOL_SMP
== task
->task_proto
) {
2922 request
->complete_in_target
= true;
2923 complete_to_host
= isci_perform_normal_io_completion
;
2925 request
->complete_in_target
= false;
2926 complete_to_host
= isci_perform_error_io_completion
;
2933 switch (task
->task_proto
) {
2934 case SAS_PROTOCOL_SSP
:
2935 if (task
->data_dir
== DMA_NONE
)
2937 if (task
->num_scatter
== 0)
2938 /* 0 indicates a single dma address */
2939 dma_unmap_single(&isci_host
->pdev
->dev
,
2940 request
->zero_scatter_daddr
,
2941 task
->total_xfer_len
, task
->data_dir
);
2942 else /* unmap the sgl dma addresses */
2943 dma_unmap_sg(&isci_host
->pdev
->dev
, task
->scatter
,
2944 request
->num_sg_entries
, task
->data_dir
);
2950 /* Put the completed request on the correct list */
2951 isci_task_save_for_upper_layer_completion(isci_host
, request
, response
,
2952 status
, complete_to_host
2955 /* complete the io request to the core. */
2956 scic_controller_complete_io(&isci_host
->sci
,
2957 request
->sci
.target_device
,
2959 isci_put_device(idev
);
2961 /* set terminated handle so it cannot be completed or
2962 * terminated again, and to cause any calls into abort
2963 * task to recognize the already completed case.
2965 request
->terminated
= true;
2967 isci_host_can_dequeue(isci_host
, 1);
2970 static void scic_sds_request_started_state_enter(struct sci_base_state_machine
*sm
)
2972 struct scic_sds_request
*sci_req
= container_of(sm
, typeof(*sci_req
), sm
);
2973 struct isci_request
*ireq
= sci_req_to_ireq(sci_req
);
2974 struct domain_device
*dev
= sci_dev_to_domain(sci_req
->target_device
);
2975 struct sas_task
*task
;
2977 /* XXX as hch said always creating an internal sas_task for tmf
2978 * requests would simplify the driver
2980 task
= ireq
->ttype
== io_task
? isci_request_access_task(ireq
) : NULL
;
2982 /* all unaccelerated request types (non ssp or ncq) handled with
2985 if (!task
&& dev
->dev_type
== SAS_END_DEV
) {
2986 sci_change_state(sm
, SCI_REQ_TASK_WAIT_TC_COMP
);
2988 (isci_request_access_tmf(ireq
)->tmf_code
== isci_tmf_sata_srst_high
||
2989 isci_request_access_tmf(ireq
)->tmf_code
== isci_tmf_sata_srst_low
)) {
2990 sci_change_state(sm
, SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED
);
2991 } else if (task
&& task
->task_proto
== SAS_PROTOCOL_SMP
) {
2992 sci_change_state(sm
, SCI_REQ_SMP_WAIT_RESP
);
2993 } else if (task
&& sas_protocol_ata(task
->task_proto
) &&
2994 !task
->ata_task
.use_ncq
) {
2997 if (task
->data_dir
== DMA_NONE
)
2998 state
= SCI_REQ_STP_NON_DATA_WAIT_H2D
;
2999 else if (task
->ata_task
.dma_xfer
)
3000 state
= SCI_REQ_STP_UDMA_WAIT_TC_COMP
;
3002 state
= SCI_REQ_STP_PIO_WAIT_H2D
;
3004 sci_change_state(sm
, state
);
3008 static void scic_sds_request_completed_state_enter(struct sci_base_state_machine
*sm
)
3010 struct scic_sds_request
*sci_req
= container_of(sm
, typeof(*sci_req
), sm
);
3011 struct scic_sds_controller
*scic
= sci_req
->owning_controller
;
3012 struct isci_host
*ihost
= scic_to_ihost(scic
);
3013 struct isci_request
*ireq
= sci_req_to_ireq(sci_req
);
3015 /* Tell the SCI_USER that the IO request is complete */
3016 if (sci_req
->is_task_management_request
== false)
3017 isci_request_io_request_complete(ihost
, ireq
,
3018 sci_req
->sci_status
);
3020 isci_task_request_complete(ihost
, ireq
, sci_req
->sci_status
);
3023 static void scic_sds_request_aborting_state_enter(struct sci_base_state_machine
*sm
)
3025 struct scic_sds_request
*sci_req
= container_of(sm
, typeof(*sci_req
), sm
);
3027 /* Setting the abort bit in the Task Context is required by the silicon. */
3028 sci_req
->task_context_buffer
->abort
= 1;
3031 static void scic_sds_stp_request_started_non_data_await_h2d_completion_enter(struct sci_base_state_machine
*sm
)
3033 struct scic_sds_request
*sci_req
= container_of(sm
, typeof(*sci_req
), sm
);
3035 scic_sds_remote_device_set_working_request(sci_req
->target_device
,
3039 static void scic_sds_stp_request_started_pio_await_h2d_completion_enter(struct sci_base_state_machine
*sm
)
3041 struct scic_sds_request
*sci_req
= container_of(sm
, typeof(*sci_req
), sm
);
3043 scic_sds_remote_device_set_working_request(sci_req
->target_device
,
3047 static void scic_sds_stp_request_started_soft_reset_await_h2d_asserted_completion_enter(struct sci_base_state_machine
*sm
)
3049 struct scic_sds_request
*sci_req
= container_of(sm
, typeof(*sci_req
), sm
);
3051 scic_sds_remote_device_set_working_request(sci_req
->target_device
,
3055 static void scic_sds_stp_request_started_soft_reset_await_h2d_diagnostic_completion_enter(struct sci_base_state_machine
*sm
)
3057 struct scic_sds_request
*sci_req
= container_of(sm
, typeof(*sci_req
), sm
);
3058 struct scu_task_context
*task_context
;
3059 struct host_to_dev_fis
*h2d_fis
;
3060 enum sci_status status
;
3062 /* Clear the SRST bit */
3063 h2d_fis
= &sci_req
->stp
.cmd
;
3064 h2d_fis
->control
= 0;
3066 /* Clear the TC control bit */
3067 task_context
= scic_sds_controller_get_task_context_buffer(
3068 sci_req
->owning_controller
, sci_req
->io_tag
);
3069 task_context
->control_frame
= 0;
3071 status
= scic_controller_continue_io(sci_req
);
3072 WARN_ONCE(status
!= SCI_SUCCESS
, "isci: continue io failure\n");
3075 static const struct sci_base_state scic_sds_request_state_table
[] = {
3076 [SCI_REQ_INIT
] = { },
3077 [SCI_REQ_CONSTRUCTED
] = { },
3078 [SCI_REQ_STARTED
] = {
3079 .enter_state
= scic_sds_request_started_state_enter
,
3081 [SCI_REQ_STP_NON_DATA_WAIT_H2D
] = {
3082 .enter_state
= scic_sds_stp_request_started_non_data_await_h2d_completion_enter
,
3084 [SCI_REQ_STP_NON_DATA_WAIT_D2H
] = { },
3085 [SCI_REQ_STP_PIO_WAIT_H2D
] = {
3086 .enter_state
= scic_sds_stp_request_started_pio_await_h2d_completion_enter
,
3088 [SCI_REQ_STP_PIO_WAIT_FRAME
] = { },
3089 [SCI_REQ_STP_PIO_DATA_IN
] = { },
3090 [SCI_REQ_STP_PIO_DATA_OUT
] = { },
3091 [SCI_REQ_STP_UDMA_WAIT_TC_COMP
] = { },
3092 [SCI_REQ_STP_UDMA_WAIT_D2H
] = { },
3093 [SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED
] = {
3094 .enter_state
= scic_sds_stp_request_started_soft_reset_await_h2d_asserted_completion_enter
,
3096 [SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG
] = {
3097 .enter_state
= scic_sds_stp_request_started_soft_reset_await_h2d_diagnostic_completion_enter
,
3099 [SCI_REQ_STP_SOFT_RESET_WAIT_D2H
] = { },
3100 [SCI_REQ_TASK_WAIT_TC_COMP
] = { },
3101 [SCI_REQ_TASK_WAIT_TC_RESP
] = { },
3102 [SCI_REQ_SMP_WAIT_RESP
] = { },
3103 [SCI_REQ_SMP_WAIT_TC_COMP
] = { },
3104 [SCI_REQ_COMPLETED
] = {
3105 .enter_state
= scic_sds_request_completed_state_enter
,
3107 [SCI_REQ_ABORTING
] = {
3108 .enter_state
= scic_sds_request_aborting_state_enter
,
3110 [SCI_REQ_FINAL
] = { },
3114 scic_sds_general_request_construct(struct scic_sds_controller
*scic
,
3115 struct scic_sds_remote_device
*sci_dev
,
3117 struct scic_sds_request
*sci_req
)
3119 sci_init_sm(&sci_req
->sm
, scic_sds_request_state_table
, SCI_REQ_INIT
);
3121 sci_req
->io_tag
= io_tag
;
3122 sci_req
->owning_controller
= scic
;
3123 sci_req
->target_device
= sci_dev
;
3124 sci_req
->protocol
= SCIC_NO_PROTOCOL
;
3125 sci_req
->saved_rx_frame_index
= SCU_INVALID_FRAME_INDEX
;
3127 sci_req
->sci_status
= SCI_SUCCESS
;
3128 sci_req
->scu_status
= 0;
3129 sci_req
->post_context
= 0xFFFFFFFF;
3131 sci_req
->is_task_management_request
= false;
3133 if (io_tag
== SCI_CONTROLLER_INVALID_IO_TAG
) {
3134 sci_req
->was_tag_assigned_by_user
= false;
3135 sci_req
->task_context_buffer
= &sci_req
->tc
;
3137 sci_req
->was_tag_assigned_by_user
= true;
3139 sci_req
->task_context_buffer
=
3140 scic_sds_controller_get_task_context_buffer(scic
, io_tag
);
3144 static enum sci_status
3145 scic_io_request_construct(struct scic_sds_controller
*scic
,
3146 struct scic_sds_remote_device
*sci_dev
,
3147 u16 io_tag
, struct scic_sds_request
*sci_req
)
3149 struct domain_device
*dev
= sci_dev_to_domain(sci_dev
);
3150 enum sci_status status
= SCI_SUCCESS
;
3152 /* Build the common part of the request */
3153 scic_sds_general_request_construct(scic
, sci_dev
, io_tag
, sci_req
);
3155 if (sci_dev
->rnc
.remote_node_index
== SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX
)
3156 return SCI_FAILURE_INVALID_REMOTE_DEVICE
;
3158 if (dev
->dev_type
== SAS_END_DEV
)
3160 else if (dev
->dev_type
== SATA_DEV
|| (dev
->tproto
& SAS_PROTOCOL_STP
))
3161 memset(&sci_req
->stp
.cmd
, 0, sizeof(sci_req
->stp
.cmd
));
3162 else if (dev_is_expander(dev
))
3163 memset(&sci_req
->smp
.cmd
, 0, sizeof(sci_req
->smp
.cmd
));
3165 return SCI_FAILURE_UNSUPPORTED_PROTOCOL
;
3167 memset(sci_req
->task_context_buffer
, 0,
3168 offsetof(struct scu_task_context
, sgl_pair_ab
));
3173 enum sci_status
scic_task_request_construct(struct scic_sds_controller
*scic
,
3174 struct scic_sds_remote_device
*sci_dev
,
3175 u16 io_tag
, struct scic_sds_request
*sci_req
)
3177 struct domain_device
*dev
= sci_dev_to_domain(sci_dev
);
3178 enum sci_status status
= SCI_SUCCESS
;
3180 /* Build the common part of the request */
3181 scic_sds_general_request_construct(scic
, sci_dev
, io_tag
, sci_req
);
3183 if (dev
->dev_type
== SAS_END_DEV
||
3184 dev
->dev_type
== SATA_DEV
|| (dev
->tproto
& SAS_PROTOCOL_STP
)) {
3185 sci_req
->is_task_management_request
= true;
3186 memset(sci_req
->task_context_buffer
, 0, sizeof(struct scu_task_context
));
3188 status
= SCI_FAILURE_UNSUPPORTED_PROTOCOL
;
3193 static enum sci_status
isci_request_ssp_request_construct(
3194 struct isci_request
*request
)
3196 enum sci_status status
;
3198 dev_dbg(&request
->isci_host
->pdev
->dev
,
3199 "%s: request = %p\n",
3202 status
= scic_io_request_construct_basic_ssp(&request
->sci
);
3206 static enum sci_status
isci_request_stp_request_construct(
3207 struct isci_request
*request
)
3209 struct sas_task
*task
= isci_request_access_task(request
);
3210 enum sci_status status
;
3211 struct host_to_dev_fis
*register_fis
;
3213 dev_dbg(&request
->isci_host
->pdev
->dev
,
3214 "%s: request = %p\n",
3218 /* Get the host_to_dev_fis from the core and copy
3219 * the fis from the task into it.
3221 register_fis
= isci_sata_task_to_fis_copy(task
);
3223 status
= scic_io_request_construct_basic_sata(&request
->sci
);
3225 /* Set the ncq tag in the fis, from the queue
3226 * command in the task.
3228 if (isci_sata_is_task_ncq(task
)) {
3230 isci_sata_set_ncq_tag(
3240 * This function will fill in the SCU Task Context for a SMP request. The
3241 * following important settings are utilized: -# task_type ==
3242 * SCU_TASK_TYPE_SMP. This simply indicates that a normal request type
3243 * (i.e. non-raw frame) is being utilized to perform task management. -#
3244 * control_frame == 1. This ensures that the proper endianess is set so
3245 * that the bytes are transmitted in the right order for a smp request frame.
3246 * @sci_req: This parameter specifies the smp request object being
3251 scu_smp_request_construct_task_context(struct scic_sds_request
*sci_req
,
3254 dma_addr_t dma_addr
;
3255 struct scic_sds_remote_device
*sci_dev
;
3256 struct scic_sds_port
*sci_port
;
3257 struct scu_task_context
*task_context
;
3258 ssize_t word_cnt
= sizeof(struct smp_req
) / sizeof(u32
);
3260 /* byte swap the smp request. */
3261 sci_swab32_cpy(&sci_req
->smp
.cmd
, &sci_req
->smp
.cmd
,
3264 task_context
= scic_sds_request_get_task_context(sci_req
);
3266 sci_dev
= scic_sds_request_get_device(sci_req
);
3267 sci_port
= scic_sds_request_get_port(sci_req
);
3270 * Fill in the TC with the its required data
3273 task_context
->priority
= 0;
3274 task_context
->initiator_request
= 1;
3275 task_context
->connection_rate
= sci_dev
->connection_rate
;
3276 task_context
->protocol_engine_index
=
3277 scic_sds_controller_get_protocol_engine_group(scic
);
3278 task_context
->logical_port_index
= scic_sds_port_get_index(sci_port
);
3279 task_context
->protocol_type
= SCU_TASK_CONTEXT_PROTOCOL_SMP
;
3280 task_context
->abort
= 0;
3281 task_context
->valid
= SCU_TASK_CONTEXT_VALID
;
3282 task_context
->context_type
= SCU_TASK_CONTEXT_TYPE
;
3285 task_context
->remote_node_index
= sci_dev
->rnc
.remote_node_index
;
3286 task_context
->command_code
= 0;
3287 task_context
->task_type
= SCU_TASK_TYPE_SMP_REQUEST
;
3290 task_context
->link_layer_control
= 0;
3291 task_context
->do_not_dma_ssp_good_response
= 1;
3292 task_context
->strict_ordering
= 0;
3293 task_context
->control_frame
= 1;
3294 task_context
->timeout_enable
= 0;
3295 task_context
->block_guard_enable
= 0;
3298 task_context
->address_modifier
= 0;
3301 task_context
->ssp_command_iu_length
= req_len
;
3304 task_context
->transfer_length_bytes
= 0;
3307 * 18h ~ 30h, protocol specific
3308 * since commandIU has been build by framework at this point, we just
3309 * copy the frist DWord from command IU to this location. */
3310 memcpy(&task_context
->type
.smp
, &sci_req
->smp
.cmd
, sizeof(u32
));
3314 * "For SMP you could program it to zero. We would prefer that way
3315 * so that done code will be consistent." - Venki
3317 task_context
->task_phase
= 0;
3319 if (sci_req
->was_tag_assigned_by_user
) {
3321 * Build the task context now since we have already read
3324 sci_req
->post_context
=
3325 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC
|
3326 (scic_sds_controller_get_protocol_engine_group(scic
) <<
3327 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT
) |
3328 (scic_sds_port_get_index(sci_port
) <<
3329 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT
) |
3330 ISCI_TAG_TCI(sci_req
->io_tag
));
3333 * Build the task context now since we have already read
3335 * I/O tag index is not assigned because we have to wait
3336 * until we get a TCi.
3338 sci_req
->post_context
=
3339 (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC
|
3340 (scic_sds_controller_get_protocol_engine_group(scic
) <<
3341 SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT
) |
3342 (scic_sds_port_get_index(sci_port
) <<
3343 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT
));
3347 * Copy the physical address for the command buffer to the SCU Task
3348 * Context command buffer should not contain command header.
3350 dma_addr
= scic_io_request_get_dma_addr(sci_req
,
3351 ((char *) &sci_req
->smp
.cmd
) +
3354 task_context
->command_iu_upper
= upper_32_bits(dma_addr
);
3355 task_context
->command_iu_lower
= lower_32_bits(dma_addr
);
3357 /* SMP response comes as UF, so no need to set response IU address. */
3358 task_context
->response_iu_upper
= 0;
3359 task_context
->response_iu_lower
= 0;
3362 static enum sci_status
3363 scic_io_request_construct_smp(struct scic_sds_request
*sci_req
)
3365 struct smp_req
*smp_req
= &sci_req
->smp
.cmd
;
3367 sci_req
->protocol
= SCIC_SMP_PROTOCOL
;
3370 * Look at the SMP requests' header fields; for certain SAS 1.x SMP
3371 * functions under SAS 2.0, a zero request length really indicates
3372 * a non-zero default length.
3374 if (smp_req
->req_len
== 0) {
3375 switch (smp_req
->func
) {
3377 case SMP_REPORT_PHY_ERR_LOG
:
3378 case SMP_REPORT_PHY_SATA
:
3379 case SMP_REPORT_ROUTE_INFO
:
3380 smp_req
->req_len
= 2;
3382 case SMP_CONF_ROUTE_INFO
:
3383 case SMP_PHY_CONTROL
:
3384 case SMP_PHY_TEST_FUNCTION
:
3385 smp_req
->req_len
= 9;
3387 /* Default - zero is a valid default for 2.0. */
3391 scu_smp_request_construct_task_context(sci_req
, smp_req
->req_len
);
3393 sci_change_state(&sci_req
->sm
, SCI_REQ_CONSTRUCTED
);
3399 * isci_smp_request_build() - This function builds the smp request.
3400 * @ireq: This parameter points to the isci_request allocated in the
3401 * request construct function.
3403 * SCI_SUCCESS on successfull completion, or specific failure code.
3405 static enum sci_status
isci_smp_request_build(struct isci_request
*ireq
)
3407 enum sci_status status
= SCI_FAILURE
;
3408 struct sas_task
*task
= isci_request_access_task(ireq
);
3409 struct scic_sds_request
*sci_req
= &ireq
->sci
;
3411 dev_dbg(&ireq
->isci_host
->pdev
->dev
,
3412 "%s: request = %p\n", __func__
, ireq
);
3414 dev_dbg(&ireq
->isci_host
->pdev
->dev
,
3415 "%s: smp_req len = %d\n",
3417 task
->smp_task
.smp_req
.length
);
3419 /* copy the smp_command to the address; */
3420 sg_copy_to_buffer(&task
->smp_task
.smp_req
, 1,
3422 sizeof(struct smp_req
));
3424 status
= scic_io_request_construct_smp(sci_req
);
3425 if (status
!= SCI_SUCCESS
)
3426 dev_warn(&ireq
->isci_host
->pdev
->dev
,
3427 "%s: failed with status = %d\n",
3435 * isci_io_request_build() - This function builds the io request object.
3436 * @isci_host: This parameter specifies the ISCI host object
3437 * @request: This parameter points to the isci_request object allocated in the
3438 * request construct function.
3439 * @sci_device: This parameter is the handle for the sci core's remote device
3440 * object that is the destination for this request.
3442 * SCI_SUCCESS on successfull completion, or specific failure code.
3444 static enum sci_status
isci_io_request_build(
3445 struct isci_host
*isci_host
,
3446 struct isci_request
*request
,
3447 struct isci_remote_device
*isci_device
)
3449 enum sci_status status
= SCI_SUCCESS
;
3450 struct sas_task
*task
= isci_request_access_task(request
);
3451 struct scic_sds_remote_device
*sci_device
= &isci_device
->sci
;
3453 dev_dbg(&isci_host
->pdev
->dev
,
3454 "%s: isci_device = 0x%p; request = %p, "
3455 "num_scatter = %d\n",
3461 /* map the sgl addresses, if present.
3462 * libata does the mapping for sata devices
3463 * before we get the request.
3465 if (task
->num_scatter
&&
3466 !sas_protocol_ata(task
->task_proto
) &&
3467 !(SAS_PROTOCOL_SMP
& task
->task_proto
)) {
3469 request
->num_sg_entries
= dma_map_sg(
3470 &isci_host
->pdev
->dev
,
3476 if (request
->num_sg_entries
== 0)
3477 return SCI_FAILURE_INSUFFICIENT_RESOURCES
;
3480 /* build the common request object. For now,
3481 * we will let the core allocate the IO tag.
3483 status
= scic_io_request_construct(&isci_host
->sci
, sci_device
,
3484 SCI_CONTROLLER_INVALID_IO_TAG
,
3487 if (status
!= SCI_SUCCESS
) {
3488 dev_warn(&isci_host
->pdev
->dev
,
3489 "%s: failed request construct\n",
3494 switch (task
->task_proto
) {
3495 case SAS_PROTOCOL_SMP
:
3496 status
= isci_smp_request_build(request
);
3498 case SAS_PROTOCOL_SSP
:
3499 status
= isci_request_ssp_request_construct(request
);
3501 case SAS_PROTOCOL_SATA
:
3502 case SAS_PROTOCOL_STP
:
3503 case SAS_PROTOCOL_SATA
| SAS_PROTOCOL_STP
:
3504 status
= isci_request_stp_request_construct(request
);
3507 dev_warn(&isci_host
->pdev
->dev
,
3508 "%s: unknown protocol\n", __func__
);
3515 static struct isci_request
*isci_request_alloc_core(struct isci_host
*ihost
,
3519 struct isci_request
*ireq
;
3521 ireq
= dma_pool_alloc(ihost
->dma_pool
, gfp_flags
, &handle
);
3523 dev_warn(&ihost
->pdev
->dev
,
3524 "%s: dma_pool_alloc returned NULL\n", __func__
);
3528 /* initialize the request object. */
3529 spin_lock_init(&ireq
->state_lock
);
3530 ireq
->request_daddr
= handle
;
3531 ireq
->isci_host
= ihost
;
3532 ireq
->io_request_completion
= NULL
;
3533 ireq
->terminated
= false;
3535 ireq
->num_sg_entries
= 0;
3537 ireq
->complete_in_target
= false;
3539 INIT_LIST_HEAD(&ireq
->completed_node
);
3540 INIT_LIST_HEAD(&ireq
->dev_node
);
3542 isci_request_change_state(ireq
, allocated
);
3547 static struct isci_request
*isci_request_alloc_io(struct isci_host
*ihost
,
3548 struct sas_task
*task
,
3551 struct isci_request
*ireq
;
3553 ireq
= isci_request_alloc_core(ihost
, gfp_flags
);
3555 ireq
->ttype_ptr
.io_task_ptr
= task
;
3556 ireq
->ttype
= io_task
;
3557 task
->lldd_task
= ireq
;
3562 struct isci_request
*isci_request_alloc_tmf(struct isci_host
*ihost
,
3563 struct isci_tmf
*isci_tmf
,
3566 struct isci_request
*ireq
;
3568 ireq
= isci_request_alloc_core(ihost
, gfp_flags
);
3570 ireq
->ttype_ptr
.tmf_task_ptr
= isci_tmf
;
3571 ireq
->ttype
= tmf_task
;
3576 int isci_request_execute(struct isci_host
*ihost
, struct isci_remote_device
*idev
,
3577 struct sas_task
*task
, gfp_t gfp_flags
)
3579 enum sci_status status
= SCI_FAILURE_UNSUPPORTED_PROTOCOL
;
3580 struct isci_request
*ireq
;
3581 unsigned long flags
;
3584 /* do common allocation and init of request object. */
3585 ireq
= isci_request_alloc_io(ihost
, task
, gfp_flags
);
3589 status
= isci_io_request_build(ihost
, ireq
, idev
);
3590 if (status
!= SCI_SUCCESS
) {
3591 dev_warn(&ihost
->pdev
->dev
,
3592 "%s: request_construct failed - status = 0x%x\n",
3598 spin_lock_irqsave(&ihost
->scic_lock
, flags
);
3600 /* send the request, let the core assign the IO TAG. */
3601 status
= scic_controller_start_io(&ihost
->sci
, &idev
->sci
, &ireq
->sci
,
3602 SCI_CONTROLLER_INVALID_IO_TAG
);
3603 if (status
!= SCI_SUCCESS
&&
3604 status
!= SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED
) {
3605 dev_warn(&ihost
->pdev
->dev
,
3606 "%s: failed request start (0x%x)\n",
3608 spin_unlock_irqrestore(&ihost
->scic_lock
, flags
);
3612 /* Either I/O started OK, or the core has signaled that
3613 * the device needs a target reset.
3615 * In either case, hold onto the I/O for later.
3617 * Update it's status and add it to the list in the
3618 * remote device object.
3620 list_add(&ireq
->dev_node
, &idev
->reqs_in_process
);
3622 if (status
== SCI_SUCCESS
) {
3623 /* Save the tag for possible task mgmt later. */
3624 ireq
->io_tag
= ireq
->sci
.io_tag
;
3625 isci_request_change_state(ireq
, started
);
3627 /* The request did not really start in the
3628 * hardware, so clear the request handle
3629 * here so no terminations will be done.
3631 ireq
->terminated
= true;
3632 isci_request_change_state(ireq
, completed
);
3634 spin_unlock_irqrestore(&ihost
->scic_lock
, flags
);
3637 SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED
) {
3638 /* Signal libsas that we need the SCSI error
3639 * handler thread to work on this I/O and that
3640 * we want a device reset.
3642 spin_lock_irqsave(&task
->task_state_lock
, flags
);
3643 task
->task_state_flags
|= SAS_TASK_NEED_DEV_RESET
;
3644 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
3646 /* Cause this task to be scheduled in the SCSI error
3649 isci_execpath_callback(ihost
, task
,
3652 /* Change the status, since we are holding
3653 * the I/O until it is managed by the SCSI
3656 status
= SCI_SUCCESS
;
3660 if (status
!= SCI_SUCCESS
) {
3661 /* release dma memory on failure. */
3662 isci_request_free(ihost
, ireq
);