blob: 225b196800a2c4538e13f031e184f23a4465edfd [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
55
56#include "isci.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070057#include "task.h"
58#include "request.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070059#include "scu_completion_codes.h"
Dan Williams5dec6f42011-05-10 02:28:49 -070060#include "scu_event_codes.h"
Dave Jiang2ec53eb2011-05-04 18:01:22 -070061#include "sas.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070062
Dan Williams5076a1a2011-06-27 14:57:03 -070063static struct scu_sgl_element_pair *to_sgl_element_pair(struct isci_request *ireq,
Dan Williams312e0c22011-06-28 13:47:09 -070064 int idx)
65{
66 if (idx == 0)
Dan Williams5076a1a2011-06-27 14:57:03 -070067 return &ireq->tc->sgl_pair_ab;
Dan Williams312e0c22011-06-28 13:47:09 -070068 else if (idx == 1)
Dan Williams5076a1a2011-06-27 14:57:03 -070069 return &ireq->tc->sgl_pair_cd;
Dan Williams312e0c22011-06-28 13:47:09 -070070 else if (idx < 0)
71 return NULL;
72 else
Dan Williams5076a1a2011-06-27 14:57:03 -070073 return &ireq->sg_table[idx - 2];
Dan Williams6f231dd2011-07-02 22:56:22 -070074}
75
Dan Williamsd9dcb4b2011-06-30 17:38:32 -070076static dma_addr_t to_sgl_element_pair_dma(struct isci_host *ihost,
Dan Williams5076a1a2011-06-27 14:57:03 -070077 struct isci_request *ireq, u32 idx)
Dan Williams312e0c22011-06-28 13:47:09 -070078{
79 u32 offset;
80
81 if (idx == 0) {
Dan Williams5076a1a2011-06-27 14:57:03 -070082 offset = (void *) &ireq->tc->sgl_pair_ab -
Dan Williamsd9dcb4b2011-06-30 17:38:32 -070083 (void *) &ihost->task_context_table[0];
84 return ihost->task_context_dma + offset;
Dan Williams312e0c22011-06-28 13:47:09 -070085 } else if (idx == 1) {
Dan Williams5076a1a2011-06-27 14:57:03 -070086 offset = (void *) &ireq->tc->sgl_pair_cd -
Dan Williamsd9dcb4b2011-06-30 17:38:32 -070087 (void *) &ihost->task_context_table[0];
88 return ihost->task_context_dma + offset;
Dan Williams312e0c22011-06-28 13:47:09 -070089 }
90
Dan Williams89a73012011-06-30 19:14:33 -070091 return sci_io_request_get_dma_addr(ireq, &ireq->sg_table[idx - 2]);
Dan Williams312e0c22011-06-28 13:47:09 -070092}
93
94static void init_sgl_element(struct scu_sgl_element *e, struct scatterlist *sg)
95{
96 e->length = sg_dma_len(sg);
97 e->address_upper = upper_32_bits(sg_dma_address(sg));
98 e->address_lower = lower_32_bits(sg_dma_address(sg));
99 e->address_modifier = 0;
100}
101
Dan Williams89a73012011-06-30 19:14:33 -0700102static void sci_request_build_sgl(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700103{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700104 struct isci_host *ihost = ireq->isci_host;
Dan Williams5076a1a2011-06-27 14:57:03 -0700105 struct sas_task *task = isci_request_access_task(ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700106 struct scatterlist *sg = NULL;
107 dma_addr_t dma_addr;
108 u32 sg_idx = 0;
109 struct scu_sgl_element_pair *scu_sg = NULL;
110 struct scu_sgl_element_pair *prev_sg = NULL;
111
112 if (task->num_scatter > 0) {
113 sg = task->scatter;
114
115 while (sg) {
Dan Williams5076a1a2011-06-27 14:57:03 -0700116 scu_sg = to_sgl_element_pair(ireq, sg_idx);
Dan Williams312e0c22011-06-28 13:47:09 -0700117 init_sgl_element(&scu_sg->A, sg);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700118 sg = sg_next(sg);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700119 if (sg) {
Dan Williams312e0c22011-06-28 13:47:09 -0700120 init_sgl_element(&scu_sg->B, sg);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700121 sg = sg_next(sg);
122 } else
Dan Williams312e0c22011-06-28 13:47:09 -0700123 memset(&scu_sg->B, 0, sizeof(scu_sg->B));
Dan Williamsf1f52e72011-05-10 02:28:45 -0700124
125 if (prev_sg) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700126 dma_addr = to_sgl_element_pair_dma(ihost,
Dan Williams5076a1a2011-06-27 14:57:03 -0700127 ireq,
Dan Williams312e0c22011-06-28 13:47:09 -0700128 sg_idx);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700129
130 prev_sg->next_pair_upper =
131 upper_32_bits(dma_addr);
132 prev_sg->next_pair_lower =
133 lower_32_bits(dma_addr);
134 }
135
136 prev_sg = scu_sg;
137 sg_idx++;
138 }
139 } else { /* handle when no sg */
Dan Williams5076a1a2011-06-27 14:57:03 -0700140 scu_sg = to_sgl_element_pair(ireq, sg_idx);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700141
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700142 dma_addr = dma_map_single(&ihost->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700143 task->scatter,
144 task->total_xfer_len,
145 task->data_dir);
146
Dan Williams5076a1a2011-06-27 14:57:03 -0700147 ireq->zero_scatter_daddr = dma_addr;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700148
149 scu_sg->A.length = task->total_xfer_len;
150 scu_sg->A.address_upper = upper_32_bits(dma_addr);
151 scu_sg->A.address_lower = lower_32_bits(dma_addr);
152 }
153
154 if (scu_sg) {
155 scu_sg->next_pair_upper = 0;
156 scu_sg->next_pair_lower = 0;
157 }
158}
159
Dan Williams89a73012011-06-30 19:14:33 -0700160static void sci_io_request_build_ssp_command_iu(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700161{
162 struct ssp_cmd_iu *cmd_iu;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700163 struct sas_task *task = isci_request_access_task(ireq);
164
Dan Williams5076a1a2011-06-27 14:57:03 -0700165 cmd_iu = &ireq->ssp.cmd;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700166
167 memcpy(cmd_iu->LUN, task->ssp_task.LUN, 8);
168 cmd_iu->add_cdb_len = 0;
169 cmd_iu->_r_a = 0;
170 cmd_iu->_r_b = 0;
171 cmd_iu->en_fburst = 0; /* unsupported */
172 cmd_iu->task_prio = task->ssp_task.task_prio;
173 cmd_iu->task_attr = task->ssp_task.task_attr;
174 cmd_iu->_r_c = 0;
175
176 sci_swab32_cpy(&cmd_iu->cdb, task->ssp_task.cdb,
177 sizeof(task->ssp_task.cdb) / sizeof(u32));
178}
179
Dan Williams89a73012011-06-30 19:14:33 -0700180static void sci_task_request_build_ssp_task_iu(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700181{
182 struct ssp_task_iu *task_iu;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700183 struct sas_task *task = isci_request_access_task(ireq);
184 struct isci_tmf *isci_tmf = isci_request_access_tmf(ireq);
185
Dan Williams5076a1a2011-06-27 14:57:03 -0700186 task_iu = &ireq->ssp.tmf;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700187
188 memset(task_iu, 0, sizeof(struct ssp_task_iu));
189
190 memcpy(task_iu->LUN, task->ssp_task.LUN, 8);
191
192 task_iu->task_func = isci_tmf->tmf_code;
193 task_iu->task_tag =
194 (ireq->ttype == tmf_task) ?
195 isci_tmf->io_tag :
196 SCI_CONTROLLER_INVALID_IO_TAG;
197}
198
199/**
200 * This method is will fill in the SCU Task Context for any type of SSP request.
201 * @sci_req:
202 * @task_context:
203 *
204 */
205static void scu_ssp_reqeust_construct_task_context(
Dan Williams5076a1a2011-06-27 14:57:03 -0700206 struct isci_request *ireq,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700207 struct scu_task_context *task_context)
208{
209 dma_addr_t dma_addr;
Dan Williams78a6f062011-06-30 16:31:37 -0700210 struct isci_remote_device *idev;
Dan Williamsffe191c2011-06-29 13:09:25 -0700211 struct isci_port *iport;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700212
Dan Williams34a99152011-07-01 02:25:15 -0700213 idev = ireq->target_device;
214 iport = idev->owning_port;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700215
216 /* Fill in the TC with the its required data */
217 task_context->abort = 0;
218 task_context->priority = 0;
219 task_context->initiator_request = 1;
Dan Williams78a6f062011-06-30 16:31:37 -0700220 task_context->connection_rate = idev->connection_rate;
Dan Williams34a99152011-07-01 02:25:15 -0700221 task_context->protocol_engine_index = ISCI_PEG;
222 task_context->logical_port_index = iport->physical_port_index;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700223 task_context->protocol_type = SCU_TASK_CONTEXT_PROTOCOL_SSP;
224 task_context->valid = SCU_TASK_CONTEXT_VALID;
225 task_context->context_type = SCU_TASK_CONTEXT_TYPE;
226
Dan Williams34a99152011-07-01 02:25:15 -0700227 task_context->remote_node_index = idev->rnc.remote_node_index;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700228 task_context->command_code = 0;
229
230 task_context->link_layer_control = 0;
231 task_context->do_not_dma_ssp_good_response = 1;
232 task_context->strict_ordering = 0;
233 task_context->control_frame = 0;
234 task_context->timeout_enable = 0;
235 task_context->block_guard_enable = 0;
236
237 task_context->address_modifier = 0;
238
Dan Williams5076a1a2011-06-27 14:57:03 -0700239 /* task_context->type.ssp.tag = ireq->io_tag; */
Dan Williamsf1f52e72011-05-10 02:28:45 -0700240 task_context->task_phase = 0x01;
241
Dan Williams5076a1a2011-06-27 14:57:03 -0700242 ireq->post_context = (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
Dan Williams34a99152011-07-01 02:25:15 -0700243 (ISCI_PEG << SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) |
244 (iport->physical_port_index <<
Dan Williamsffe191c2011-06-29 13:09:25 -0700245 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT) |
246 ISCI_TAG_TCI(ireq->io_tag));
Dan Williamsf1f52e72011-05-10 02:28:45 -0700247
248 /*
249 * Copy the physical address for the command buffer to the
250 * SCU Task Context
251 */
Dan Williams89a73012011-06-30 19:14:33 -0700252 dma_addr = sci_io_request_get_dma_addr(ireq, &ireq->ssp.cmd);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700253
254 task_context->command_iu_upper = upper_32_bits(dma_addr);
255 task_context->command_iu_lower = lower_32_bits(dma_addr);
256
257 /*
258 * Copy the physical address for the response buffer to the
259 * SCU Task Context
260 */
Dan Williams89a73012011-06-30 19:14:33 -0700261 dma_addr = sci_io_request_get_dma_addr(ireq, &ireq->ssp.rsp);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700262
263 task_context->response_iu_upper = upper_32_bits(dma_addr);
264 task_context->response_iu_lower = lower_32_bits(dma_addr);
265}
266
267/**
268 * This method is will fill in the SCU Task Context for a SSP IO request.
269 * @sci_req:
270 *
271 */
Dan Williams5076a1a2011-06-27 14:57:03 -0700272static void scu_ssp_io_request_construct_task_context(struct isci_request *ireq,
Dan Williams312e0c22011-06-28 13:47:09 -0700273 enum dma_data_direction dir,
274 u32 len)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700275{
Dan Williams5076a1a2011-06-27 14:57:03 -0700276 struct scu_task_context *task_context = ireq->tc;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700277
Dan Williams5076a1a2011-06-27 14:57:03 -0700278 scu_ssp_reqeust_construct_task_context(ireq, task_context);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700279
280 task_context->ssp_command_iu_length =
281 sizeof(struct ssp_cmd_iu) / sizeof(u32);
282 task_context->type.ssp.frame_type = SSP_COMMAND;
283
284 switch (dir) {
285 case DMA_FROM_DEVICE:
286 case DMA_NONE:
287 default:
288 task_context->task_type = SCU_TASK_TYPE_IOREAD;
289 break;
290 case DMA_TO_DEVICE:
291 task_context->task_type = SCU_TASK_TYPE_IOWRITE;
292 break;
293 }
294
295 task_context->transfer_length_bytes = len;
296
297 if (task_context->transfer_length_bytes > 0)
Dan Williams89a73012011-06-30 19:14:33 -0700298 sci_request_build_sgl(ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700299}
300
Dan Williamsf1f52e72011-05-10 02:28:45 -0700301/**
302 * This method will fill in the SCU Task Context for a SSP Task request. The
303 * following important settings are utilized: -# priority ==
304 * SCU_TASK_PRIORITY_HIGH. This ensures that the task request is issued
305 * ahead of other task destined for the same Remote Node. -# task_type ==
306 * SCU_TASK_TYPE_IOREAD. This simply indicates that a normal request type
307 * (i.e. non-raw frame) is being utilized to perform task management. -#
308 * control_frame == 1. This ensures that the proper endianess is set so
309 * that the bytes are transmitted in the right order for a task frame.
310 * @sci_req: This parameter specifies the task request object being
311 * constructed.
312 *
313 */
Dan Williams5076a1a2011-06-27 14:57:03 -0700314static void scu_ssp_task_request_construct_task_context(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700315{
Dan Williams5076a1a2011-06-27 14:57:03 -0700316 struct scu_task_context *task_context = ireq->tc;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700317
Dan Williams5076a1a2011-06-27 14:57:03 -0700318 scu_ssp_reqeust_construct_task_context(ireq, task_context);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700319
320 task_context->control_frame = 1;
321 task_context->priority = SCU_TASK_PRIORITY_HIGH;
322 task_context->task_type = SCU_TASK_TYPE_RAW_FRAME;
323 task_context->transfer_length_bytes = 0;
324 task_context->type.ssp.frame_type = SSP_TASK;
325 task_context->ssp_command_iu_length =
326 sizeof(struct ssp_task_iu) / sizeof(u32);
327}
328
Dan Williamsf1f52e72011-05-10 02:28:45 -0700329/**
Dan Williams5dec6f42011-05-10 02:28:49 -0700330 * This method is will fill in the SCU Task Context for any type of SATA
331 * request. This is called from the various SATA constructors.
332 * @sci_req: The general IO request object which is to be used in
333 * constructing the SCU task context.
334 * @task_context: The buffer pointer for the SCU task context which is being
335 * constructed.
Dan Williamsf1f52e72011-05-10 02:28:45 -0700336 *
Dan Williams5dec6f42011-05-10 02:28:49 -0700337 * The general io request construction is complete. The buffer assignment for
338 * the command buffer is complete. none Revisit task context construction to
339 * determine what is common for SSP/SMP/STP task context structures.
Dan Williamsf1f52e72011-05-10 02:28:45 -0700340 */
Dan Williams5dec6f42011-05-10 02:28:49 -0700341static void scu_sata_reqeust_construct_task_context(
Dan Williams5076a1a2011-06-27 14:57:03 -0700342 struct isci_request *ireq,
Dan Williams5dec6f42011-05-10 02:28:49 -0700343 struct scu_task_context *task_context)
344{
345 dma_addr_t dma_addr;
Dan Williams78a6f062011-06-30 16:31:37 -0700346 struct isci_remote_device *idev;
Dan Williamsffe191c2011-06-29 13:09:25 -0700347 struct isci_port *iport;
Dan Williams5dec6f42011-05-10 02:28:49 -0700348
Dan Williams34a99152011-07-01 02:25:15 -0700349 idev = ireq->target_device;
350 iport = idev->owning_port;
Dan Williams5dec6f42011-05-10 02:28:49 -0700351
352 /* Fill in the TC with the its required data */
353 task_context->abort = 0;
354 task_context->priority = SCU_TASK_PRIORITY_NORMAL;
355 task_context->initiator_request = 1;
Dan Williams78a6f062011-06-30 16:31:37 -0700356 task_context->connection_rate = idev->connection_rate;
Dan Williams34a99152011-07-01 02:25:15 -0700357 task_context->protocol_engine_index = ISCI_PEG;
358 task_context->logical_port_index = iport->physical_port_index;
Dan Williams5dec6f42011-05-10 02:28:49 -0700359 task_context->protocol_type = SCU_TASK_CONTEXT_PROTOCOL_STP;
360 task_context->valid = SCU_TASK_CONTEXT_VALID;
361 task_context->context_type = SCU_TASK_CONTEXT_TYPE;
362
Dan Williams34a99152011-07-01 02:25:15 -0700363 task_context->remote_node_index = idev->rnc.remote_node_index;
Dan Williams5dec6f42011-05-10 02:28:49 -0700364 task_context->command_code = 0;
365
366 task_context->link_layer_control = 0;
367 task_context->do_not_dma_ssp_good_response = 1;
368 task_context->strict_ordering = 0;
369 task_context->control_frame = 0;
370 task_context->timeout_enable = 0;
371 task_context->block_guard_enable = 0;
372
373 task_context->address_modifier = 0;
374 task_context->task_phase = 0x01;
375
376 task_context->ssp_command_iu_length =
377 (sizeof(struct host_to_dev_fis) - sizeof(u32)) / sizeof(u32);
378
379 /* Set the first word of the H2D REG FIS */
Dan Williams5076a1a2011-06-27 14:57:03 -0700380 task_context->type.words[0] = *(u32 *)&ireq->stp.cmd;
Dan Williams5dec6f42011-05-10 02:28:49 -0700381
Dan Williams5076a1a2011-06-27 14:57:03 -0700382 ireq->post_context = (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
Dan Williams34a99152011-07-01 02:25:15 -0700383 (ISCI_PEG << SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) |
384 (iport->physical_port_index <<
385 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT) |
386 ISCI_TAG_TCI(ireq->io_tag));
Dan Williams5dec6f42011-05-10 02:28:49 -0700387 /*
388 * Copy the physical address for the command buffer to the SCU Task
389 * Context. We must offset the command buffer by 4 bytes because the
390 * first 4 bytes are transfered in the body of the TC.
391 */
Dan Williams89a73012011-06-30 19:14:33 -0700392 dma_addr = sci_io_request_get_dma_addr(ireq,
Dan Williams5076a1a2011-06-27 14:57:03 -0700393 ((char *) &ireq->stp.cmd) +
Dan Williams5dec6f42011-05-10 02:28:49 -0700394 sizeof(u32));
395
396 task_context->command_iu_upper = upper_32_bits(dma_addr);
397 task_context->command_iu_lower = lower_32_bits(dma_addr);
398
399 /* SATA Requests do not have a response buffer */
400 task_context->response_iu_upper = 0;
401 task_context->response_iu_lower = 0;
402}
403
Dan Williams5076a1a2011-06-27 14:57:03 -0700404static void scu_stp_raw_request_construct_task_context(struct isci_request *ireq)
Dan Williams5dec6f42011-05-10 02:28:49 -0700405{
Dan Williams5076a1a2011-06-27 14:57:03 -0700406 struct scu_task_context *task_context = ireq->tc;
Dan Williams5dec6f42011-05-10 02:28:49 -0700407
Dan Williams5076a1a2011-06-27 14:57:03 -0700408 scu_sata_reqeust_construct_task_context(ireq, task_context);
Dan Williams5dec6f42011-05-10 02:28:49 -0700409
410 task_context->control_frame = 0;
411 task_context->priority = SCU_TASK_PRIORITY_NORMAL;
412 task_context->task_type = SCU_TASK_TYPE_SATA_RAW_FRAME;
413 task_context->type.stp.fis_type = FIS_REGH2D;
414 task_context->transfer_length_bytes = sizeof(struct host_to_dev_fis) - sizeof(u32);
415}
416
Dan Williams89a73012011-06-30 19:14:33 -0700417static enum sci_status sci_stp_pio_request_construct(struct isci_request *ireq,
Dan Williams5076a1a2011-06-27 14:57:03 -0700418 bool copy_rx_frame)
Dan Williams5dec6f42011-05-10 02:28:49 -0700419{
Dan Williams5076a1a2011-06-27 14:57:03 -0700420 struct isci_stp_request *stp_req = &ireq->stp.req;
Dan Williams5dec6f42011-05-10 02:28:49 -0700421
Dan Williams5076a1a2011-06-27 14:57:03 -0700422 scu_stp_raw_request_construct_task_context(ireq);
Dan Williams5dec6f42011-05-10 02:28:49 -0700423
Dan Williamsba7cb222011-06-27 11:56:41 -0700424 stp_req->status = 0;
425 stp_req->sgl.offset = 0;
426 stp_req->sgl.set = SCU_SGL_ELEMENT_PAIR_A;
Dan Williams5dec6f42011-05-10 02:28:49 -0700427
428 if (copy_rx_frame) {
Dan Williams89a73012011-06-30 19:14:33 -0700429 sci_request_build_sgl(ireq);
Dan Williamsba7cb222011-06-27 11:56:41 -0700430 stp_req->sgl.index = 0;
Dan Williams5dec6f42011-05-10 02:28:49 -0700431 } else {
432 /* The user does not want the data copied to the SGL buffer location */
Dan Williamsba7cb222011-06-27 11:56:41 -0700433 stp_req->sgl.index = -1;
Dan Williams5dec6f42011-05-10 02:28:49 -0700434 }
435
436 return SCI_SUCCESS;
437}
438
439/**
440 *
441 * @sci_req: This parameter specifies the request to be constructed as an
442 * optimized request.
443 * @optimized_task_type: This parameter specifies whether the request is to be
444 * an UDMA request or a NCQ request. - A value of 0 indicates UDMA. - A
445 * value of 1 indicates NCQ.
446 *
447 * This method will perform request construction common to all types of STP
448 * requests that are optimized by the silicon (i.e. UDMA, NCQ). This method
449 * returns an indication as to whether the construction was successful.
450 */
Dan Williams89a73012011-06-30 19:14:33 -0700451static void sci_stp_optimized_request_construct(struct isci_request *ireq,
Dan Williams5dec6f42011-05-10 02:28:49 -0700452 u8 optimized_task_type,
453 u32 len,
454 enum dma_data_direction dir)
455{
Dan Williams5076a1a2011-06-27 14:57:03 -0700456 struct scu_task_context *task_context = ireq->tc;
Dan Williams5dec6f42011-05-10 02:28:49 -0700457
458 /* Build the STP task context structure */
Dan Williams5076a1a2011-06-27 14:57:03 -0700459 scu_sata_reqeust_construct_task_context(ireq, task_context);
Dan Williams5dec6f42011-05-10 02:28:49 -0700460
461 /* Copy over the SGL elements */
Dan Williams89a73012011-06-30 19:14:33 -0700462 sci_request_build_sgl(ireq);
Dan Williams5dec6f42011-05-10 02:28:49 -0700463
464 /* Copy over the number of bytes to be transfered */
465 task_context->transfer_length_bytes = len;
466
467 if (dir == DMA_TO_DEVICE) {
468 /*
469 * The difference between the DMA IN and DMA OUT request task type
470 * values are consistent with the difference between FPDMA READ
471 * and FPDMA WRITE values. Add the supplied task type parameter
472 * to this difference to set the task type properly for this
473 * DATA OUT (WRITE) case. */
474 task_context->task_type = optimized_task_type + (SCU_TASK_TYPE_DMA_OUT
475 - SCU_TASK_TYPE_DMA_IN);
476 } else {
477 /*
478 * For the DATA IN (READ) case, simply save the supplied
479 * optimized task type. */
480 task_context->task_type = optimized_task_type;
481 }
482}
483
484
485
Dan Williamsf1f52e72011-05-10 02:28:45 -0700486static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700487sci_io_request_construct_sata(struct isci_request *ireq,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700488 u32 len,
489 enum dma_data_direction dir,
490 bool copy)
Dan Williams6f231dd2011-07-02 22:56:22 -0700491{
Dan Williams6f231dd2011-07-02 22:56:22 -0700492 enum sci_status status = SCI_SUCCESS;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700493 struct sas_task *task = isci_request_access_task(ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700494
Dan Williamsf1f52e72011-05-10 02:28:45 -0700495 /* check for management protocols */
496 if (ireq->ttype == tmf_task) {
497 struct isci_tmf *tmf = isci_request_access_tmf(ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700498
Dan Williamsf1f52e72011-05-10 02:28:45 -0700499 if (tmf->tmf_code == isci_tmf_sata_srst_high ||
Dan Williams5dec6f42011-05-10 02:28:49 -0700500 tmf->tmf_code == isci_tmf_sata_srst_low) {
Dan Williams5076a1a2011-06-27 14:57:03 -0700501 scu_stp_raw_request_construct_task_context(ireq);
Dan Williams5dec6f42011-05-10 02:28:49 -0700502 return SCI_SUCCESS;
503 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700504 dev_err(&ireq->owning_controller->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700505 "%s: Request 0x%p received un-handled SAT "
506 "management protocol 0x%x.\n",
Dan Williams5076a1a2011-06-27 14:57:03 -0700507 __func__, ireq, tmf->tmf_code);
Dan Williams6f231dd2011-07-02 22:56:22 -0700508
Dan Williamsf1f52e72011-05-10 02:28:45 -0700509 return SCI_FAILURE;
510 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700511 }
512
Dan Williamsf1f52e72011-05-10 02:28:45 -0700513 if (!sas_protocol_ata(task->task_proto)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700514 dev_err(&ireq->owning_controller->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700515 "%s: Non-ATA protocol in SATA path: 0x%x\n",
516 __func__,
517 task->task_proto);
Dan Williams6f231dd2011-07-02 22:56:22 -0700518 return SCI_FAILURE;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700519
Dan Williams6f231dd2011-07-02 22:56:22 -0700520 }
521
Dan Williamsf1f52e72011-05-10 02:28:45 -0700522 /* non data */
Dan Williams5dec6f42011-05-10 02:28:49 -0700523 if (task->data_dir == DMA_NONE) {
Dan Williams5076a1a2011-06-27 14:57:03 -0700524 scu_stp_raw_request_construct_task_context(ireq);
Dan Williams5dec6f42011-05-10 02:28:49 -0700525 return SCI_SUCCESS;
526 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700527
528 /* NCQ */
Dan Williams5dec6f42011-05-10 02:28:49 -0700529 if (task->ata_task.use_ncq) {
Dan Williams89a73012011-06-30 19:14:33 -0700530 sci_stp_optimized_request_construct(ireq,
Dan Williams5dec6f42011-05-10 02:28:49 -0700531 SCU_TASK_TYPE_FPDMAQ_READ,
532 len, dir);
533 return SCI_SUCCESS;
534 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700535
536 /* DMA */
Dan Williams5dec6f42011-05-10 02:28:49 -0700537 if (task->ata_task.dma_xfer) {
Dan Williams89a73012011-06-30 19:14:33 -0700538 sci_stp_optimized_request_construct(ireq,
Dan Williams5dec6f42011-05-10 02:28:49 -0700539 SCU_TASK_TYPE_DMA_IN,
540 len, dir);
541 return SCI_SUCCESS;
542 } else /* PIO */
Dan Williams89a73012011-06-30 19:14:33 -0700543 return sci_stp_pio_request_construct(ireq, copy);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700544
545 return status;
546}
547
Dan Williams89a73012011-06-30 19:14:33 -0700548static enum sci_status sci_io_request_construct_basic_ssp(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700549{
Dan Williamsf1f52e72011-05-10 02:28:45 -0700550 struct sas_task *task = isci_request_access_task(ireq);
551
Dan Williams5076a1a2011-06-27 14:57:03 -0700552 ireq->protocol = SCIC_SSP_PROTOCOL;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700553
Dan Williams5076a1a2011-06-27 14:57:03 -0700554 scu_ssp_io_request_construct_task_context(ireq,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700555 task->data_dir,
556 task->total_xfer_len);
557
Dan Williams89a73012011-06-30 19:14:33 -0700558 sci_io_request_build_ssp_command_iu(ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700559
Dan Williams5076a1a2011-06-27 14:57:03 -0700560 sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700561
562 return SCI_SUCCESS;
563}
564
Dan Williams89a73012011-06-30 19:14:33 -0700565enum sci_status sci_task_request_construct_ssp(
Dan Williams5076a1a2011-06-27 14:57:03 -0700566 struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700567{
568 /* Construct the SSP Task SCU Task Context */
Dan Williams5076a1a2011-06-27 14:57:03 -0700569 scu_ssp_task_request_construct_task_context(ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700570
571 /* Fill in the SSP Task IU */
Dan Williams89a73012011-06-30 19:14:33 -0700572 sci_task_request_build_ssp_task_iu(ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700573
Dan Williams5076a1a2011-06-27 14:57:03 -0700574 sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED);
Dan Williams6f231dd2011-07-02 22:56:22 -0700575
576 return SCI_SUCCESS;
577}
578
Dan Williams89a73012011-06-30 19:14:33 -0700579static enum sci_status sci_io_request_construct_basic_sata(struct isci_request *ireq)
Dan Williams6f231dd2011-07-02 22:56:22 -0700580{
Dan Williamsf1f52e72011-05-10 02:28:45 -0700581 enum sci_status status;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700582 bool copy = false;
Dan Williams5076a1a2011-06-27 14:57:03 -0700583 struct sas_task *task = isci_request_access_task(ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700584
Dan Williams5076a1a2011-06-27 14:57:03 -0700585 ireq->protocol = SCIC_STP_PROTOCOL;
Dan Williams6f231dd2011-07-02 22:56:22 -0700586
Dan Williamsf1f52e72011-05-10 02:28:45 -0700587 copy = (task->data_dir == DMA_NONE) ? false : true;
Dan Williams6f231dd2011-07-02 22:56:22 -0700588
Dan Williams89a73012011-06-30 19:14:33 -0700589 status = sci_io_request_construct_sata(ireq,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700590 task->total_xfer_len,
591 task->data_dir,
592 copy);
Dan Williams6f231dd2011-07-02 22:56:22 -0700593
Dan Williamsf1f52e72011-05-10 02:28:45 -0700594 if (status == SCI_SUCCESS)
Dan Williams5076a1a2011-06-27 14:57:03 -0700595 sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED);
Dan Williams6f231dd2011-07-02 22:56:22 -0700596
Dan Williamsf1f52e72011-05-10 02:28:45 -0700597 return status;
Dan Williams6f231dd2011-07-02 22:56:22 -0700598}
599
Dan Williams89a73012011-06-30 19:14:33 -0700600enum sci_status sci_task_request_construct_sata(struct isci_request *ireq)
Dan Williams6f231dd2011-07-02 22:56:22 -0700601{
Dan Williamsf1f52e72011-05-10 02:28:45 -0700602 enum sci_status status = SCI_SUCCESS;
Dan Williams6f231dd2011-07-02 22:56:22 -0700603
Dan Williamsf1f52e72011-05-10 02:28:45 -0700604 /* check for management protocols */
605 if (ireq->ttype == tmf_task) {
606 struct isci_tmf *tmf = isci_request_access_tmf(ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700607
Dan Williamsf1f52e72011-05-10 02:28:45 -0700608 if (tmf->tmf_code == isci_tmf_sata_srst_high ||
609 tmf->tmf_code == isci_tmf_sata_srst_low) {
Dan Williams5076a1a2011-06-27 14:57:03 -0700610 scu_stp_raw_request_construct_task_context(ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700611 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700612 dev_err(&ireq->owning_controller->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700613 "%s: Request 0x%p received un-handled SAT "
614 "Protocol 0x%x.\n",
Dan Williams5076a1a2011-06-27 14:57:03 -0700615 __func__, ireq, tmf->tmf_code);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700616
617 return SCI_FAILURE;
618 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700619 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700620
Dan Williams5dec6f42011-05-10 02:28:49 -0700621 if (status != SCI_SUCCESS)
622 return status;
Dan Williams5076a1a2011-06-27 14:57:03 -0700623 sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700624
625 return status;
Dan Williams6f231dd2011-07-02 22:56:22 -0700626}
627
628/**
Dan Williamsf1f52e72011-05-10 02:28:45 -0700629 * sci_req_tx_bytes - bytes transferred when reply underruns request
630 * @sci_req: request that was terminated early
Dan Williams6f231dd2011-07-02 22:56:22 -0700631 */
Dan Williamsf1f52e72011-05-10 02:28:45 -0700632#define SCU_TASK_CONTEXT_SRAM 0x200000
Dan Williams5076a1a2011-06-27 14:57:03 -0700633static u32 sci_req_tx_bytes(struct isci_request *ireq)
Dan Williams6f231dd2011-07-02 22:56:22 -0700634{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700635 struct isci_host *ihost = ireq->owning_controller;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700636 u32 ret_val = 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700637
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700638 if (readl(&ihost->smu_registers->address_modifier) == 0) {
639 void __iomem *scu_reg_base = ihost->scu_registers;
Dan Williams6f231dd2011-07-02 22:56:22 -0700640
Dan Williamsf1f52e72011-05-10 02:28:45 -0700641 /* get the bytes of data from the Address == BAR1 + 20002Ch + (256*TCi) where
642 * BAR1 is the scu_registers
643 * 0x20002C = 0x200000 + 0x2c
644 * = start of task context SRAM + offset of (type.ssp.data_offset)
Dan Williams89a73012011-06-30 19:14:33 -0700645 * TCi is the io_tag of struct sci_request
Dan Williams67ea8382011-05-08 11:47:15 -0700646 */
Dan Williamsf1f52e72011-05-10 02:28:45 -0700647 ret_val = readl(scu_reg_base +
648 (SCU_TASK_CONTEXT_SRAM + offsetof(struct scu_task_context, type.ssp.data_offset)) +
Dan Williams5076a1a2011-06-27 14:57:03 -0700649 ((sizeof(struct scu_task_context)) * ISCI_TAG_TCI(ireq->io_tag)));
Dan Williams67ea8382011-05-08 11:47:15 -0700650 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700651
Dan Williamsf1f52e72011-05-10 02:28:45 -0700652 return ret_val;
Dan Williams6f231dd2011-07-02 22:56:22 -0700653}
654
Dan Williams89a73012011-06-30 19:14:33 -0700655enum sci_status sci_request_start(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700656{
Piotr Sawickif4636a72011-05-10 23:50:32 +0000657 enum sci_base_request_states state;
Dan Williams5076a1a2011-06-27 14:57:03 -0700658 struct scu_task_context *tc = ireq->tc;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700659 struct isci_host *ihost = ireq->owning_controller;
Piotr Sawickif4636a72011-05-10 23:50:32 +0000660
Dan Williams5076a1a2011-06-27 14:57:03 -0700661 state = ireq->sm.current_state_id;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000662 if (state != SCI_REQ_CONSTRUCTED) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700663 dev_warn(&ihost->pdev->dev,
Piotr Sawickif4636a72011-05-10 23:50:32 +0000664 "%s: SCIC IO Request requested to start while in wrong "
665 "state %d\n", __func__, state);
666 return SCI_FAILURE_INVALID_STATE;
667 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700668
Dan Williams5076a1a2011-06-27 14:57:03 -0700669 tc->task_index = ISCI_TAG_TCI(ireq->io_tag);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700670
Dan Williams312e0c22011-06-28 13:47:09 -0700671 switch (tc->protocol_type) {
672 case SCU_TASK_CONTEXT_PROTOCOL_SMP:
673 case SCU_TASK_CONTEXT_PROTOCOL_SSP:
674 /* SSP/SMP Frame */
Dan Williams5076a1a2011-06-27 14:57:03 -0700675 tc->type.ssp.tag = ireq->io_tag;
Dan Williams312e0c22011-06-28 13:47:09 -0700676 tc->type.ssp.target_port_transfer_tag = 0xFFFF;
677 break;
Piotr Sawickif4636a72011-05-10 23:50:32 +0000678
Dan Williams312e0c22011-06-28 13:47:09 -0700679 case SCU_TASK_CONTEXT_PROTOCOL_STP:
680 /* STP/SATA Frame
Dan Williams5076a1a2011-06-27 14:57:03 -0700681 * tc->type.stp.ncq_tag = ireq->ncq_tag;
Dan Williams312e0c22011-06-28 13:47:09 -0700682 */
683 break;
Piotr Sawickif4636a72011-05-10 23:50:32 +0000684
Dan Williams312e0c22011-06-28 13:47:09 -0700685 case SCU_TASK_CONTEXT_PROTOCOL_NONE:
686 /* / @todo When do we set no protocol type? */
687 break;
Piotr Sawickif4636a72011-05-10 23:50:32 +0000688
Dan Williams312e0c22011-06-28 13:47:09 -0700689 default:
690 /* This should never happen since we build the IO
691 * requests */
692 break;
Piotr Sawickif4636a72011-05-10 23:50:32 +0000693 }
694
Dan Williams312e0c22011-06-28 13:47:09 -0700695 /* Add to the post_context the io tag value */
Dan Williams5076a1a2011-06-27 14:57:03 -0700696 ireq->post_context |= ISCI_TAG_TCI(ireq->io_tag);
Dan Williams312e0c22011-06-28 13:47:09 -0700697
698 /* Everything is good go ahead and change state */
Dan Williams5076a1a2011-06-27 14:57:03 -0700699 sci_change_state(&ireq->sm, SCI_REQ_STARTED);
Dan Williams312e0c22011-06-28 13:47:09 -0700700
701 return SCI_SUCCESS;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700702}
703
704enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700705sci_io_request_terminate(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700706{
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700707 enum sci_base_request_states state;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700708
Dan Williams5076a1a2011-06-27 14:57:03 -0700709 state = ireq->sm.current_state_id;
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700710
711 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000712 case SCI_REQ_CONSTRUCTED:
Dan Williams34a99152011-07-01 02:25:15 -0700713 ireq->scu_status = SCU_TASK_DONE_TASK_ABORT;
714 ireq->sci_status = SCI_FAILURE_IO_TERMINATED;
Dan Williams5076a1a2011-06-27 14:57:03 -0700715 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700716 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000717 case SCI_REQ_STARTED:
718 case SCI_REQ_TASK_WAIT_TC_COMP:
719 case SCI_REQ_SMP_WAIT_RESP:
720 case SCI_REQ_SMP_WAIT_TC_COMP:
721 case SCI_REQ_STP_UDMA_WAIT_TC_COMP:
722 case SCI_REQ_STP_UDMA_WAIT_D2H:
723 case SCI_REQ_STP_NON_DATA_WAIT_H2D:
724 case SCI_REQ_STP_NON_DATA_WAIT_D2H:
725 case SCI_REQ_STP_PIO_WAIT_H2D:
726 case SCI_REQ_STP_PIO_WAIT_FRAME:
727 case SCI_REQ_STP_PIO_DATA_IN:
728 case SCI_REQ_STP_PIO_DATA_OUT:
729 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED:
730 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG:
731 case SCI_REQ_STP_SOFT_RESET_WAIT_D2H:
Dan Williams5076a1a2011-06-27 14:57:03 -0700732 sci_change_state(&ireq->sm, SCI_REQ_ABORTING);
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700733 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000734 case SCI_REQ_TASK_WAIT_TC_RESP:
Jeff Skirvin2cd24ae2011-07-29 17:17:05 -0700735 /* The task frame was already confirmed to have been
736 * sent by the SCU HW. Since the state machine is
737 * now only waiting for the task response itself,
738 * abort the request and complete it immediately
739 * and don't wait for the task response.
740 */
Dan Williams5076a1a2011-06-27 14:57:03 -0700741 sci_change_state(&ireq->sm, SCI_REQ_ABORTING);
742 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700743 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000744 case SCI_REQ_ABORTING:
Jeff Skirvin2cd24ae2011-07-29 17:17:05 -0700745 /* If a request has a termination requested twice, return
746 * a failure indication, since HW confirmation of the first
747 * abort is still outstanding.
748 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000749 case SCI_REQ_COMPLETED:
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700750 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700751 dev_warn(&ireq->owning_controller->pdev->dev,
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700752 "%s: SCIC IO Request requested to abort while in wrong "
753 "state %d\n",
754 __func__,
Dan Williams5076a1a2011-06-27 14:57:03 -0700755 ireq->sm.current_state_id);
Dan Williamsf00e6ba2011-05-10 02:39:11 -0700756 break;
757 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700758
759 return SCI_FAILURE_INVALID_STATE;
760}
761
Dan Williams89a73012011-06-30 19:14:33 -0700762enum sci_status sci_request_complete(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700763{
Dan Williams79e2b6b2011-05-11 08:29:56 -0700764 enum sci_base_request_states state;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700765 struct isci_host *ihost = ireq->owning_controller;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700766
Dan Williams5076a1a2011-06-27 14:57:03 -0700767 state = ireq->sm.current_state_id;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000768 if (WARN_ONCE(state != SCI_REQ_COMPLETED,
Dan Williams79e2b6b2011-05-11 08:29:56 -0700769 "isci: request completion from wrong state (%d)\n", state))
770 return SCI_FAILURE_INVALID_STATE;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700771
Dan Williams5076a1a2011-06-27 14:57:03 -0700772 if (ireq->saved_rx_frame_index != SCU_INVALID_FRAME_INDEX)
Dan Williams89a73012011-06-30 19:14:33 -0700773 sci_controller_release_frame(ihost,
Dan Williams5076a1a2011-06-27 14:57:03 -0700774 ireq->saved_rx_frame_index);
Dan Williams79e2b6b2011-05-11 08:29:56 -0700775
776 /* XXX can we just stop the machine and remove the 'final' state? */
Dan Williams5076a1a2011-06-27 14:57:03 -0700777 sci_change_state(&ireq->sm, SCI_REQ_FINAL);
Dan Williams79e2b6b2011-05-11 08:29:56 -0700778 return SCI_SUCCESS;
779}
780
Dan Williams89a73012011-06-30 19:14:33 -0700781enum sci_status sci_io_request_event_handler(struct isci_request *ireq,
Dan Williams79e2b6b2011-05-11 08:29:56 -0700782 u32 event_code)
783{
784 enum sci_base_request_states state;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700785 struct isci_host *ihost = ireq->owning_controller;
Dan Williams79e2b6b2011-05-11 08:29:56 -0700786
Dan Williams5076a1a2011-06-27 14:57:03 -0700787 state = ireq->sm.current_state_id;
Dan Williams79e2b6b2011-05-11 08:29:56 -0700788
Edmund Nadolskie3013702011-06-02 00:10:43 +0000789 if (state != SCI_REQ_STP_PIO_DATA_IN) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700790 dev_warn(&ihost->pdev->dev, "%s: (%x) in wrong state %d\n",
Dan Williams79e2b6b2011-05-11 08:29:56 -0700791 __func__, event_code, state);
792
793 return SCI_FAILURE_INVALID_STATE;
794 }
795
796 switch (scu_get_event_specifier(event_code)) {
797 case SCU_TASK_DONE_CRC_ERR << SCU_EVENT_SPECIFIC_CODE_SHIFT:
798 /* We are waiting for data and the SCU has R_ERR the data frame.
799 * Go back to waiting for the D2H Register FIS
800 */
Dan Williams5076a1a2011-06-27 14:57:03 -0700801 sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williams79e2b6b2011-05-11 08:29:56 -0700802 return SCI_SUCCESS;
803 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700804 dev_err(&ihost->pdev->dev,
Dan Williams79e2b6b2011-05-11 08:29:56 -0700805 "%s: pio request unexpected event %#x\n",
806 __func__, event_code);
807
808 /* TODO Should we fail the PIO request when we get an
809 * unexpected event?
810 */
811 return SCI_FAILURE;
812 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700813}
814
Dan Williamsf1f52e72011-05-10 02:28:45 -0700815/*
816 * This function copies response data for requests returning response data
817 * instead of sense data.
818 * @sci_req: This parameter specifies the request object for which to copy
819 * the response data.
820 */
Dan Williams89a73012011-06-30 19:14:33 -0700821static void sci_io_request_copy_response(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700822{
823 void *resp_buf;
824 u32 len;
825 struct ssp_response_iu *ssp_response;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700826 struct isci_tmf *isci_tmf = isci_request_access_tmf(ireq);
827
Dan Williams5076a1a2011-06-27 14:57:03 -0700828 ssp_response = &ireq->ssp.rsp;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700829
830 resp_buf = &isci_tmf->resp.resp_iu;
831
832 len = min_t(u32,
833 SSP_RESP_IU_MAX_SIZE,
834 be32_to_cpu(ssp_response->response_data_len));
835
836 memcpy(resp_buf, ssp_response->resp_data, len);
837}
838
Edmund Nadolskie3013702011-06-02 00:10:43 +0000839static enum sci_status
Dan Williams5076a1a2011-06-27 14:57:03 -0700840request_started_state_tc_event(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +0000841 u32 completion_code)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700842{
Dan Williamsf1f52e72011-05-10 02:28:45 -0700843 struct ssp_response_iu *resp_iu;
Dan Williamsa7e255a2011-05-11 08:27:47 -0700844 u8 datapres;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700845
Dan Williamsa7e255a2011-05-11 08:27:47 -0700846 /* TODO: Any SDMA return code of other than 0 is bad decode 0x003C0000
847 * to determine SDMA status
Dan Williamsf1f52e72011-05-10 02:28:45 -0700848 */
849 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
850 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williams34a99152011-07-01 02:25:15 -0700851 ireq->scu_status = SCU_TASK_DONE_GOOD;
852 ireq->sci_status = SCI_SUCCESS;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700853 break;
Dan Williamsa7e255a2011-05-11 08:27:47 -0700854 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_EARLY_RESP): {
855 /* There are times when the SCU hardware will return an early
Dan Williamsf1f52e72011-05-10 02:28:45 -0700856 * response because the io request specified more data than is
857 * returned by the target device (mode pages, inquiry data,
858 * etc.). We must check the response stats to see if this is
859 * truly a failed request or a good request that just got
860 * completed early.
861 */
Dan Williams5076a1a2011-06-27 14:57:03 -0700862 struct ssp_response_iu *resp = &ireq->ssp.rsp;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700863 ssize_t word_cnt = SSP_RESP_IU_MAX_SIZE / sizeof(u32);
864
Dan Williams5076a1a2011-06-27 14:57:03 -0700865 sci_swab32_cpy(&ireq->ssp.rsp,
866 &ireq->ssp.rsp,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700867 word_cnt);
868
869 if (resp->status == 0) {
Dan Williams34a99152011-07-01 02:25:15 -0700870 ireq->scu_status = SCU_TASK_DONE_GOOD;
871 ireq->sci_status = SCI_SUCCESS_IO_DONE_EARLY;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700872 } else {
Dan Williams34a99152011-07-01 02:25:15 -0700873 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
874 ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700875 }
Dan Williamsa7e255a2011-05-11 08:27:47 -0700876 break;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700877 }
Dan Williamsa7e255a2011-05-11 08:27:47 -0700878 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CHECK_RESPONSE): {
Dan Williamsf1f52e72011-05-10 02:28:45 -0700879 ssize_t word_cnt = SSP_RESP_IU_MAX_SIZE / sizeof(u32);
880
Dan Williams5076a1a2011-06-27 14:57:03 -0700881 sci_swab32_cpy(&ireq->ssp.rsp,
882 &ireq->ssp.rsp,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700883 word_cnt);
884
Dan Williams34a99152011-07-01 02:25:15 -0700885 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
886 ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700887 break;
888 }
889
890 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_RESP_LEN_ERR):
Dan Williamsa7e255a2011-05-11 08:27:47 -0700891 /* TODO With TASK_DONE_RESP_LEN_ERR is the response frame
Dan Williamsf1f52e72011-05-10 02:28:45 -0700892 * guaranteed to be received before this completion status is
893 * posted?
894 */
Dan Williams5076a1a2011-06-27 14:57:03 -0700895 resp_iu = &ireq->ssp.rsp;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700896 datapres = resp_iu->datapres;
897
Dan Williamsa7e255a2011-05-11 08:27:47 -0700898 if (datapres == 1 || datapres == 2) {
Dan Williams34a99152011-07-01 02:25:15 -0700899 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
900 ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID;
901 } else {
902 ireq->scu_status = SCU_TASK_DONE_GOOD;
903 ireq->sci_status = SCI_SUCCESS;
904 }
Dan Williamsf1f52e72011-05-10 02:28:45 -0700905 break;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700906 /* only stp device gets suspended. */
907 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_ACK_NAK_TO):
908 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_PERR):
909 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_NAK_ERR):
910 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_DATA_LEN_ERR):
911 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_ABORT_ERR):
912 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_XR_WD_LEN):
913 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_MAX_PLD_ERR):
914 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_RESP):
915 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_SDBFIS):
916 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_REG_ERR):
917 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SDB_ERR):
Dan Williams5076a1a2011-06-27 14:57:03 -0700918 if (ireq->protocol == SCIC_STP_PROTOCOL) {
Dan Williams34a99152011-07-01 02:25:15 -0700919 ireq->scu_status = SCU_GET_COMPLETION_TL_STATUS(completion_code) >>
920 SCU_COMPLETION_TL_STATUS_SHIFT;
921 ireq->sci_status = SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700922 } else {
Dan Williams34a99152011-07-01 02:25:15 -0700923 ireq->scu_status = SCU_GET_COMPLETION_TL_STATUS(completion_code) >>
924 SCU_COMPLETION_TL_STATUS_SHIFT;
925 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700926 }
927 break;
928
929 /* both stp/ssp device gets suspended */
930 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LF_ERR):
931 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_WRONG_DESTINATION):
932 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_1):
933 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_2):
934 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_3):
935 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_BAD_DESTINATION):
936 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_ZONE_VIOLATION):
937 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_STP_RESOURCES_BUSY):
938 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_PROTOCOL_NOT_SUPPORTED):
939 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_CONNECTION_RATE_NOT_SUPPORTED):
Dan Williams34a99152011-07-01 02:25:15 -0700940 ireq->scu_status = SCU_GET_COMPLETION_TL_STATUS(completion_code) >>
941 SCU_COMPLETION_TL_STATUS_SHIFT;
942 ireq->sci_status = SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700943 break;
944
945 /* neither ssp nor stp gets suspended. */
946 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_NAK_CMD_ERR):
947 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_XR):
948 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_XR_IU_LEN_ERR):
949 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SDMA_ERR):
950 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_OFFSET_ERR):
951 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_EXCESS_DATA):
952 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_RESP_TO_ERR):
953 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_UFI_ERR):
954 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_FRM_TYPE_ERR):
955 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_LL_RX_ERR):
956 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_DATA):
957 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_OPEN_FAIL):
958 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_VIIT_ENTRY_NV):
959 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_IIT_ENTRY_NV):
960 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_RNCNV_OUTBOUND):
961 default:
Dan Williams34a99152011-07-01 02:25:15 -0700962 ireq->scu_status = SCU_GET_COMPLETION_TL_STATUS(completion_code) >>
963 SCU_COMPLETION_TL_STATUS_SHIFT;
964 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700965 break;
966 }
967
968 /*
969 * TODO: This is probably wrong for ACK/NAK timeout conditions
970 */
971
972 /* In all cases we will treat this as the completion of the IO req. */
Dan Williams5076a1a2011-06-27 14:57:03 -0700973 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700974 return SCI_SUCCESS;
975}
976
Edmund Nadolskie3013702011-06-02 00:10:43 +0000977static enum sci_status
Dan Williams5076a1a2011-06-27 14:57:03 -0700978request_aborting_state_tc_event(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +0000979 u32 completion_code)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700980{
981 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
982 case (SCU_TASK_DONE_GOOD << SCU_COMPLETION_TL_STATUS_SHIFT):
983 case (SCU_TASK_DONE_TASK_ABORT << SCU_COMPLETION_TL_STATUS_SHIFT):
Dan Williams34a99152011-07-01 02:25:15 -0700984 ireq->scu_status = SCU_TASK_DONE_TASK_ABORT;
985 ireq->sci_status = SCI_FAILURE_IO_TERMINATED;
Dan Williams5076a1a2011-06-27 14:57:03 -0700986 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700987 break;
988
989 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -0700990 /* Unless we get some strange error wait for the task abort to complete
991 * TODO: Should there be a state change for this completion?
992 */
Dan Williamsf1f52e72011-05-10 02:28:45 -0700993 break;
994 }
995
996 return SCI_SUCCESS;
997}
998
Dan Williams5076a1a2011-06-27 14:57:03 -0700999static enum sci_status ssp_task_request_await_tc_event(struct isci_request *ireq,
Dan Williamsa7e255a2011-05-11 08:27:47 -07001000 u32 completion_code)
Dan Williamsf1393032011-05-10 02:28:47 -07001001{
1002 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1003 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williams34a99152011-07-01 02:25:15 -07001004 ireq->scu_status = SCU_TASK_DONE_GOOD;
1005 ireq->sci_status = SCI_SUCCESS;
Dan Williams5076a1a2011-06-27 14:57:03 -07001006 sci_change_state(&ireq->sm, SCI_REQ_TASK_WAIT_TC_RESP);
Dan Williamsf1393032011-05-10 02:28:47 -07001007 break;
Dan Williamsf1393032011-05-10 02:28:47 -07001008 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_ACK_NAK_TO):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001009 /* Currently, the decision is to simply allow the task request
1010 * to timeout if the task IU wasn't received successfully.
1011 * There is a potential for receiving multiple task responses if
1012 * we decide to send the task IU again.
1013 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001014 dev_warn(&ireq->owning_controller->pdev->dev,
Dan Williamsf1393032011-05-10 02:28:47 -07001015 "%s: TaskRequest:0x%p CompletionCode:%x - "
Dan Williams5076a1a2011-06-27 14:57:03 -07001016 "ACK/NAK timeout\n", __func__, ireq,
Dan Williamsf1393032011-05-10 02:28:47 -07001017 completion_code);
1018
Dan Williams5076a1a2011-06-27 14:57:03 -07001019 sci_change_state(&ireq->sm, SCI_REQ_TASK_WAIT_TC_RESP);
Dan Williamsf1393032011-05-10 02:28:47 -07001020 break;
Dan Williamsf1393032011-05-10 02:28:47 -07001021 default:
Edmund Nadolskie3013702011-06-02 00:10:43 +00001022 /*
1023 * All other completion status cause the IO to be complete.
1024 * If a NAK was received, then it is up to the user to retry
1025 * the request.
Dan Williamsa7e255a2011-05-11 08:27:47 -07001026 */
Dan Williams34a99152011-07-01 02:25:15 -07001027 ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code);
1028 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williams5076a1a2011-06-27 14:57:03 -07001029 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsf1393032011-05-10 02:28:47 -07001030 break;
1031 }
1032
1033 return SCI_SUCCESS;
1034}
1035
Edmund Nadolskie3013702011-06-02 00:10:43 +00001036static enum sci_status
Dan Williams5076a1a2011-06-27 14:57:03 -07001037smp_request_await_response_tc_event(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001038 u32 completion_code)
Dan Williamsc72086e2011-05-10 02:28:48 -07001039{
1040 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1041 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001042 /* In the AWAIT RESPONSE state, any TC completion is
1043 * unexpected. but if the TC has success status, we
1044 * complete the IO anyway.
1045 */
Dan Williams34a99152011-07-01 02:25:15 -07001046 ireq->scu_status = SCU_TASK_DONE_GOOD;
1047 ireq->sci_status = SCI_SUCCESS;
Dan Williams5076a1a2011-06-27 14:57:03 -07001048 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001049 break;
Dan Williamsc72086e2011-05-10 02:28:48 -07001050 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_RESP_TO_ERR):
1051 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_UFI_ERR):
1052 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_FRM_TYPE_ERR):
1053 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_LL_RX_ERR):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001054 /* These status has been seen in a specific LSI
1055 * expander, which sometimes is not able to send smp
1056 * response within 2 ms. This causes our hardware break
1057 * the connection and set TC completion with one of
1058 * these SMP_XXX_XX_ERR status. For these type of error,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001059 * we ask ihost user to retry the request.
Dan Williamsa7e255a2011-05-11 08:27:47 -07001060 */
Dan Williams34a99152011-07-01 02:25:15 -07001061 ireq->scu_status = SCU_TASK_DONE_SMP_RESP_TO_ERR;
1062 ireq->sci_status = SCI_FAILURE_RETRY_REQUIRED;
Dan Williams5076a1a2011-06-27 14:57:03 -07001063 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001064 break;
Dan Williamsc72086e2011-05-10 02:28:48 -07001065 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001066 /* All other completion status cause the IO to be complete. If a NAK
1067 * was received, then it is up to the user to retry the request
1068 */
Dan Williams34a99152011-07-01 02:25:15 -07001069 ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code);
1070 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williams5076a1a2011-06-27 14:57:03 -07001071 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001072 break;
1073 }
1074
1075 return SCI_SUCCESS;
1076}
1077
Edmund Nadolskie3013702011-06-02 00:10:43 +00001078static enum sci_status
Dan Williams5076a1a2011-06-27 14:57:03 -07001079smp_request_await_tc_event(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001080 u32 completion_code)
Dan Williamsc72086e2011-05-10 02:28:48 -07001081{
1082 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1083 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williams34a99152011-07-01 02:25:15 -07001084 ireq->scu_status = SCU_TASK_DONE_GOOD;
1085 ireq->sci_status = SCI_SUCCESS;
Dan Williams5076a1a2011-06-27 14:57:03 -07001086 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001087 break;
Dan Williamsc72086e2011-05-10 02:28:48 -07001088 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001089 /* All other completion status cause the IO to be
1090 * complete. If a NAK was received, then it is up to
1091 * the user to retry the request.
1092 */
Dan Williams34a99152011-07-01 02:25:15 -07001093 ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code);
1094 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williams5076a1a2011-06-27 14:57:03 -07001095 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsc72086e2011-05-10 02:28:48 -07001096 break;
1097 }
1098
1099 return SCI_SUCCESS;
1100}
1101
Dan Williamsba7cb222011-06-27 11:56:41 -07001102static struct scu_sgl_element *pio_sgl_next(struct isci_stp_request *stp_req)
Dan Williams5dec6f42011-05-10 02:28:49 -07001103{
Dan Williams312e0c22011-06-28 13:47:09 -07001104 struct scu_sgl_element *sgl;
1105 struct scu_sgl_element_pair *sgl_pair;
Dan Williams5076a1a2011-06-27 14:57:03 -07001106 struct isci_request *ireq = to_ireq(stp_req);
Dan Williamsba7cb222011-06-27 11:56:41 -07001107 struct isci_stp_pio_sgl *pio_sgl = &stp_req->sgl;
Dan Williams5dec6f42011-05-10 02:28:49 -07001108
Dan Williams5076a1a2011-06-27 14:57:03 -07001109 sgl_pair = to_sgl_element_pair(ireq, pio_sgl->index);
Dan Williams312e0c22011-06-28 13:47:09 -07001110 if (!sgl_pair)
1111 sgl = NULL;
Dan Williamsba7cb222011-06-27 11:56:41 -07001112 else if (pio_sgl->set == SCU_SGL_ELEMENT_PAIR_A) {
Dan Williams312e0c22011-06-28 13:47:09 -07001113 if (sgl_pair->B.address_lower == 0 &&
1114 sgl_pair->B.address_upper == 0) {
1115 sgl = NULL;
Dan Williams5dec6f42011-05-10 02:28:49 -07001116 } else {
Dan Williamsba7cb222011-06-27 11:56:41 -07001117 pio_sgl->set = SCU_SGL_ELEMENT_PAIR_B;
Dan Williams312e0c22011-06-28 13:47:09 -07001118 sgl = &sgl_pair->B;
Dan Williams5dec6f42011-05-10 02:28:49 -07001119 }
1120 } else {
Dan Williams312e0c22011-06-28 13:47:09 -07001121 if (sgl_pair->next_pair_lower == 0 &&
1122 sgl_pair->next_pair_upper == 0) {
1123 sgl = NULL;
Dan Williams5dec6f42011-05-10 02:28:49 -07001124 } else {
Dan Williamsba7cb222011-06-27 11:56:41 -07001125 pio_sgl->index++;
1126 pio_sgl->set = SCU_SGL_ELEMENT_PAIR_A;
Dan Williams5076a1a2011-06-27 14:57:03 -07001127 sgl_pair = to_sgl_element_pair(ireq, pio_sgl->index);
Dan Williams312e0c22011-06-28 13:47:09 -07001128 sgl = &sgl_pair->A;
Dan Williams5dec6f42011-05-10 02:28:49 -07001129 }
1130 }
1131
Dan Williams312e0c22011-06-28 13:47:09 -07001132 return sgl;
Dan Williams5dec6f42011-05-10 02:28:49 -07001133}
1134
Edmund Nadolskie3013702011-06-02 00:10:43 +00001135static enum sci_status
Dan Williams5076a1a2011-06-27 14:57:03 -07001136stp_request_non_data_await_h2d_tc_event(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001137 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07001138{
1139 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1140 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williams34a99152011-07-01 02:25:15 -07001141 ireq->scu_status = SCU_TASK_DONE_GOOD;
1142 ireq->sci_status = SCI_SUCCESS;
Dan Williams5076a1a2011-06-27 14:57:03 -07001143 sci_change_state(&ireq->sm, SCI_REQ_STP_NON_DATA_WAIT_D2H);
Dan Williams5dec6f42011-05-10 02:28:49 -07001144 break;
1145
1146 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001147 /* All other completion status cause the IO to be
1148 * complete. If a NAK was received, then it is up to
1149 * the user to retry the request.
1150 */
Dan Williams34a99152011-07-01 02:25:15 -07001151 ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code);
1152 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williams5076a1a2011-06-27 14:57:03 -07001153 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001154 break;
1155 }
1156
1157 return SCI_SUCCESS;
1158}
1159
Dan Williams5dec6f42011-05-10 02:28:49 -07001160#define SCU_MAX_FRAME_BUFFER_SIZE 0x400 /* 1K is the maximum SCU frame data payload */
1161
1162/* transmit DATA_FIS from (current sgl + offset) for input
1163 * parameter length. current sgl and offset is alreay stored in the IO request
1164 */
Dan Williams89a73012011-06-30 19:14:33 -07001165static enum sci_status sci_stp_request_pio_data_out_trasmit_data_frame(
Dan Williams5076a1a2011-06-27 14:57:03 -07001166 struct isci_request *ireq,
Dan Williams5dec6f42011-05-10 02:28:49 -07001167 u32 length)
1168{
Dan Williams5076a1a2011-06-27 14:57:03 -07001169 struct isci_stp_request *stp_req = &ireq->stp.req;
1170 struct scu_task_context *task_context = ireq->tc;
Dan Williams312e0c22011-06-28 13:47:09 -07001171 struct scu_sgl_element_pair *sgl_pair;
Dan Williams5dec6f42011-05-10 02:28:49 -07001172 struct scu_sgl_element *current_sgl;
1173
1174 /* Recycle the TC and reconstruct it for sending out DATA FIS containing
1175 * for the data from current_sgl+offset for the input length
1176 */
Dan Williams5076a1a2011-06-27 14:57:03 -07001177 sgl_pair = to_sgl_element_pair(ireq, stp_req->sgl.index);
Dan Williamsba7cb222011-06-27 11:56:41 -07001178 if (stp_req->sgl.set == SCU_SGL_ELEMENT_PAIR_A)
Dan Williams312e0c22011-06-28 13:47:09 -07001179 current_sgl = &sgl_pair->A;
Dan Williams5dec6f42011-05-10 02:28:49 -07001180 else
Dan Williams312e0c22011-06-28 13:47:09 -07001181 current_sgl = &sgl_pair->B;
Dan Williams5dec6f42011-05-10 02:28:49 -07001182
1183 /* update the TC */
1184 task_context->command_iu_upper = current_sgl->address_upper;
1185 task_context->command_iu_lower = current_sgl->address_lower;
1186 task_context->transfer_length_bytes = length;
1187 task_context->type.stp.fis_type = FIS_DATA;
1188
1189 /* send the new TC out. */
Dan Williams89a73012011-06-30 19:14:33 -07001190 return sci_controller_continue_io(ireq);
Dan Williams5dec6f42011-05-10 02:28:49 -07001191}
1192
Dan Williams89a73012011-06-30 19:14:33 -07001193static enum sci_status sci_stp_request_pio_data_out_transmit_data(struct isci_request *ireq)
Dan Williams5dec6f42011-05-10 02:28:49 -07001194{
Dan Williams5076a1a2011-06-27 14:57:03 -07001195 struct isci_stp_request *stp_req = &ireq->stp.req;
Dan Williams312e0c22011-06-28 13:47:09 -07001196 struct scu_sgl_element_pair *sgl_pair;
Dan Williamsba7cb222011-06-27 11:56:41 -07001197 struct scu_sgl_element *sgl;
1198 enum sci_status status;
1199 u32 offset;
1200 u32 len = 0;
Dan Williams5dec6f42011-05-10 02:28:49 -07001201
Dan Williamsba7cb222011-06-27 11:56:41 -07001202 offset = stp_req->sgl.offset;
Dan Williams5076a1a2011-06-27 14:57:03 -07001203 sgl_pair = to_sgl_element_pair(ireq, stp_req->sgl.index);
Dan Williams312e0c22011-06-28 13:47:09 -07001204 if (WARN_ONCE(!sgl_pair, "%s: null sgl element", __func__))
1205 return SCI_FAILURE;
Dan Williams5dec6f42011-05-10 02:28:49 -07001206
Dan Williamsba7cb222011-06-27 11:56:41 -07001207 if (stp_req->sgl.set == SCU_SGL_ELEMENT_PAIR_A) {
1208 sgl = &sgl_pair->A;
1209 len = sgl_pair->A.length - offset;
Dan Williams5dec6f42011-05-10 02:28:49 -07001210 } else {
Dan Williamsba7cb222011-06-27 11:56:41 -07001211 sgl = &sgl_pair->B;
1212 len = sgl_pair->B.length - offset;
Dan Williams5dec6f42011-05-10 02:28:49 -07001213 }
1214
Dan Williamsba7cb222011-06-27 11:56:41 -07001215 if (stp_req->pio_len == 0)
1216 return SCI_SUCCESS;
Dan Williams5dec6f42011-05-10 02:28:49 -07001217
Dan Williamsba7cb222011-06-27 11:56:41 -07001218 if (stp_req->pio_len >= len) {
Dan Williams89a73012011-06-30 19:14:33 -07001219 status = sci_stp_request_pio_data_out_trasmit_data_frame(ireq, len);
Dan Williamsba7cb222011-06-27 11:56:41 -07001220 if (status != SCI_SUCCESS)
1221 return status;
1222 stp_req->pio_len -= len;
Dan Williams5dec6f42011-05-10 02:28:49 -07001223
Dan Williamsba7cb222011-06-27 11:56:41 -07001224 /* update the current sgl, offset and save for future */
1225 sgl = pio_sgl_next(stp_req);
1226 offset = 0;
1227 } else if (stp_req->pio_len < len) {
Dan Williams89a73012011-06-30 19:14:33 -07001228 sci_stp_request_pio_data_out_trasmit_data_frame(ireq, stp_req->pio_len);
Dan Williamsba7cb222011-06-27 11:56:41 -07001229
1230 /* Sgl offset will be adjusted and saved for future */
1231 offset += stp_req->pio_len;
1232 sgl->address_lower += stp_req->pio_len;
1233 stp_req->pio_len = 0;
Dan Williams5dec6f42011-05-10 02:28:49 -07001234 }
1235
Dan Williamsba7cb222011-06-27 11:56:41 -07001236 stp_req->sgl.offset = offset;
Dan Williams5dec6f42011-05-10 02:28:49 -07001237
1238 return status;
1239}
1240
1241/**
1242 *
1243 * @stp_request: The request that is used for the SGL processing.
1244 * @data_buffer: The buffer of data to be copied.
1245 * @length: The length of the data transfer.
1246 *
1247 * Copy the data from the buffer for the length specified to the IO reqeust SGL
1248 * specified data region. enum sci_status
1249 */
1250static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07001251sci_stp_request_pio_data_in_copy_data_buffer(struct isci_stp_request *stp_req,
Dan Williams5dec6f42011-05-10 02:28:49 -07001252 u8 *data_buf, u32 len)
1253{
Dan Williams5dec6f42011-05-10 02:28:49 -07001254 struct isci_request *ireq;
1255 u8 *src_addr;
1256 int copy_len;
1257 struct sas_task *task;
1258 struct scatterlist *sg;
1259 void *kaddr;
1260 int total_len = len;
1261
Dan Williams5076a1a2011-06-27 14:57:03 -07001262 ireq = to_ireq(stp_req);
Dan Williams5dec6f42011-05-10 02:28:49 -07001263 task = isci_request_access_task(ireq);
1264 src_addr = data_buf;
1265
1266 if (task->num_scatter > 0) {
1267 sg = task->scatter;
1268
1269 while (total_len > 0) {
1270 struct page *page = sg_page(sg);
1271
1272 copy_len = min_t(int, total_len, sg_dma_len(sg));
1273 kaddr = kmap_atomic(page, KM_IRQ0);
1274 memcpy(kaddr + sg->offset, src_addr, copy_len);
1275 kunmap_atomic(kaddr, KM_IRQ0);
1276 total_len -= copy_len;
1277 src_addr += copy_len;
1278 sg = sg_next(sg);
1279 }
1280 } else {
1281 BUG_ON(task->total_xfer_len < total_len);
1282 memcpy(task->scatter, src_addr, total_len);
1283 }
1284
1285 return SCI_SUCCESS;
1286}
1287
1288/**
1289 *
1290 * @sci_req: The PIO DATA IN request that is to receive the data.
1291 * @data_buffer: The buffer to copy from.
1292 *
1293 * Copy the data buffer to the io request data region. enum sci_status
1294 */
Dan Williams89a73012011-06-30 19:14:33 -07001295static enum sci_status sci_stp_request_pio_data_in_copy_data(
Dan Williamsba7cb222011-06-27 11:56:41 -07001296 struct isci_stp_request *stp_req,
Dan Williams5dec6f42011-05-10 02:28:49 -07001297 u8 *data_buffer)
1298{
1299 enum sci_status status;
1300
1301 /*
1302 * If there is less than 1K remaining in the transfer request
1303 * copy just the data for the transfer */
Dan Williamsba7cb222011-06-27 11:56:41 -07001304 if (stp_req->pio_len < SCU_MAX_FRAME_BUFFER_SIZE) {
Dan Williams89a73012011-06-30 19:14:33 -07001305 status = sci_stp_request_pio_data_in_copy_data_buffer(
Dan Williamsba7cb222011-06-27 11:56:41 -07001306 stp_req, data_buffer, stp_req->pio_len);
Dan Williams5dec6f42011-05-10 02:28:49 -07001307
1308 if (status == SCI_SUCCESS)
Dan Williamsba7cb222011-06-27 11:56:41 -07001309 stp_req->pio_len = 0;
Dan Williams5dec6f42011-05-10 02:28:49 -07001310 } else {
1311 /* We are transfering the whole frame so copy */
Dan Williams89a73012011-06-30 19:14:33 -07001312 status = sci_stp_request_pio_data_in_copy_data_buffer(
Dan Williamsba7cb222011-06-27 11:56:41 -07001313 stp_req, data_buffer, SCU_MAX_FRAME_BUFFER_SIZE);
Dan Williams5dec6f42011-05-10 02:28:49 -07001314
1315 if (status == SCI_SUCCESS)
Dan Williamsba7cb222011-06-27 11:56:41 -07001316 stp_req->pio_len -= SCU_MAX_FRAME_BUFFER_SIZE;
Dan Williams5dec6f42011-05-10 02:28:49 -07001317 }
1318
1319 return status;
1320}
1321
Edmund Nadolskie3013702011-06-02 00:10:43 +00001322static enum sci_status
Dan Williams5076a1a2011-06-27 14:57:03 -07001323stp_request_pio_await_h2d_completion_tc_event(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001324 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07001325{
1326 enum sci_status status = SCI_SUCCESS;
1327
1328 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1329 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williams34a99152011-07-01 02:25:15 -07001330 ireq->scu_status = SCU_TASK_DONE_GOOD;
1331 ireq->sci_status = SCI_SUCCESS;
Dan Williams5076a1a2011-06-27 14:57:03 -07001332 sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williams5dec6f42011-05-10 02:28:49 -07001333 break;
1334
1335 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001336 /* All other completion status cause the IO to be
1337 * complete. If a NAK was received, then it is up to
1338 * the user to retry the request.
1339 */
Dan Williams34a99152011-07-01 02:25:15 -07001340 ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code);
1341 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williams5076a1a2011-06-27 14:57:03 -07001342 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001343 break;
1344 }
1345
1346 return status;
1347}
1348
Edmund Nadolskie3013702011-06-02 00:10:43 +00001349static enum sci_status
Dan Williams5076a1a2011-06-27 14:57:03 -07001350pio_data_out_tx_done_tc_event(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001351 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07001352{
1353 enum sci_status status = SCI_SUCCESS;
1354 bool all_frames_transferred = false;
Dan Williams5076a1a2011-06-27 14:57:03 -07001355 struct isci_stp_request *stp_req = &ireq->stp.req;
Dan Williams5dec6f42011-05-10 02:28:49 -07001356
1357 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1358 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
1359 /* Transmit data */
Dan Williamsba7cb222011-06-27 11:56:41 -07001360 if (stp_req->pio_len != 0) {
Dan Williams89a73012011-06-30 19:14:33 -07001361 status = sci_stp_request_pio_data_out_transmit_data(ireq);
Dan Williams5dec6f42011-05-10 02:28:49 -07001362 if (status == SCI_SUCCESS) {
Dan Williamsba7cb222011-06-27 11:56:41 -07001363 if (stp_req->pio_len == 0)
Dan Williams5dec6f42011-05-10 02:28:49 -07001364 all_frames_transferred = true;
1365 }
Dan Williamsba7cb222011-06-27 11:56:41 -07001366 } else if (stp_req->pio_len == 0) {
Dan Williams5dec6f42011-05-10 02:28:49 -07001367 /*
1368 * this will happen if the all data is written at the
1369 * first time after the pio setup fis is received
1370 */
1371 all_frames_transferred = true;
1372 }
1373
1374 /* all data transferred. */
1375 if (all_frames_transferred) {
1376 /*
Edmund Nadolskie3013702011-06-02 00:10:43 +00001377 * Change the state to SCI_REQ_STP_PIO_DATA_IN
Dan Williams5dec6f42011-05-10 02:28:49 -07001378 * and wait for PIO_SETUP fis / or D2H REg fis. */
Dan Williams5076a1a2011-06-27 14:57:03 -07001379 sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williams5dec6f42011-05-10 02:28:49 -07001380 }
1381 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001382
Dan Williams5dec6f42011-05-10 02:28:49 -07001383 default:
1384 /*
Edmund Nadolskie3013702011-06-02 00:10:43 +00001385 * All other completion status cause the IO to be complete.
1386 * If a NAK was received, then it is up to the user to retry
1387 * the request.
1388 */
Dan Williams34a99152011-07-01 02:25:15 -07001389 ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code);
1390 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williams5076a1a2011-06-27 14:57:03 -07001391 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001392 break;
1393 }
1394
1395 return status;
1396}
1397
Dan Williams89a73012011-06-30 19:14:33 -07001398static enum sci_status sci_stp_request_udma_general_frame_handler(struct isci_request *ireq,
Dan Williams5dec6f42011-05-10 02:28:49 -07001399 u32 frame_index)
1400{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001401 struct isci_host *ihost = ireq->owning_controller;
Dan Williams5dec6f42011-05-10 02:28:49 -07001402 struct dev_to_host_fis *frame_header;
1403 enum sci_status status;
1404 u32 *frame_buffer;
1405
Dan Williams89a73012011-06-30 19:14:33 -07001406 status = sci_unsolicited_frame_control_get_header(&ihost->uf_control,
Dan Williams5dec6f42011-05-10 02:28:49 -07001407 frame_index,
1408 (void **)&frame_header);
1409
1410 if ((status == SCI_SUCCESS) &&
1411 (frame_header->fis_type == FIS_REGD2H)) {
Dan Williams89a73012011-06-30 19:14:33 -07001412 sci_unsolicited_frame_control_get_buffer(&ihost->uf_control,
Dan Williams5dec6f42011-05-10 02:28:49 -07001413 frame_index,
1414 (void **)&frame_buffer);
1415
Dan Williams89a73012011-06-30 19:14:33 -07001416 sci_controller_copy_sata_response(&ireq->stp.rsp,
Dan Williams5dec6f42011-05-10 02:28:49 -07001417 frame_header,
1418 frame_buffer);
1419 }
1420
Dan Williams89a73012011-06-30 19:14:33 -07001421 sci_controller_release_frame(ihost, frame_index);
Dan Williams5dec6f42011-05-10 02:28:49 -07001422
1423 return status;
1424}
1425
Edmund Nadolskie3013702011-06-02 00:10:43 +00001426enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07001427sci_io_request_frame_handler(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001428 u32 frame_index)
Dan Williamsd1c637c2011-05-11 08:27:47 -07001429{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001430 struct isci_host *ihost = ireq->owning_controller;
Dan Williams5076a1a2011-06-27 14:57:03 -07001431 struct isci_stp_request *stp_req = &ireq->stp.req;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001432 enum sci_base_request_states state;
1433 enum sci_status status;
1434 ssize_t word_cnt;
1435
Dan Williams5076a1a2011-06-27 14:57:03 -07001436 state = ireq->sm.current_state_id;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001437 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001438 case SCI_REQ_STARTED: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001439 struct ssp_frame_hdr ssp_hdr;
1440 void *frame_header;
1441
Dan Williams89a73012011-06-30 19:14:33 -07001442 sci_unsolicited_frame_control_get_header(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001443 frame_index,
1444 &frame_header);
1445
1446 word_cnt = sizeof(struct ssp_frame_hdr) / sizeof(u32);
1447 sci_swab32_cpy(&ssp_hdr, frame_header, word_cnt);
1448
1449 if (ssp_hdr.frame_type == SSP_RESPONSE) {
1450 struct ssp_response_iu *resp_iu;
1451 ssize_t word_cnt = SSP_RESP_IU_MAX_SIZE / sizeof(u32);
1452
Dan Williams89a73012011-06-30 19:14:33 -07001453 sci_unsolicited_frame_control_get_buffer(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001454 frame_index,
1455 (void **)&resp_iu);
1456
Dan Williams5076a1a2011-06-27 14:57:03 -07001457 sci_swab32_cpy(&ireq->ssp.rsp, resp_iu, word_cnt);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001458
Dan Williams5076a1a2011-06-27 14:57:03 -07001459 resp_iu = &ireq->ssp.rsp;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001460
1461 if (resp_iu->datapres == 0x01 ||
1462 resp_iu->datapres == 0x02) {
Dan Williams34a99152011-07-01 02:25:15 -07001463 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
1464 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
1465 } else {
1466 ireq->scu_status = SCU_TASK_DONE_GOOD;
1467 ireq->sci_status = SCI_SUCCESS;
1468 }
Dan Williamsd1c637c2011-05-11 08:27:47 -07001469 } else {
1470 /* not a response frame, why did it get forwarded? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001471 dev_err(&ihost->pdev->dev,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001472 "%s: SCIC IO Request 0x%p received unexpected "
Dan Williams5076a1a2011-06-27 14:57:03 -07001473 "frame %d type 0x%02x\n", __func__, ireq,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001474 frame_index, ssp_hdr.frame_type);
1475 }
1476
1477 /*
Edmund Nadolskie3013702011-06-02 00:10:43 +00001478 * In any case we are done with this frame buffer return it to
1479 * the controller
Dan Williamsd1c637c2011-05-11 08:27:47 -07001480 */
Dan Williams89a73012011-06-30 19:14:33 -07001481 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001482
1483 return SCI_SUCCESS;
1484 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001485
1486 case SCI_REQ_TASK_WAIT_TC_RESP:
Dan Williams89a73012011-06-30 19:14:33 -07001487 sci_io_request_copy_response(ireq);
Dan Williams5076a1a2011-06-27 14:57:03 -07001488 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williams89a73012011-06-30 19:14:33 -07001489 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001490 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001491
1492 case SCI_REQ_SMP_WAIT_RESP: {
Dan Williams5cbadb22011-09-28 18:35:27 -07001493 struct sas_task *task = isci_request_access_task(ireq);
1494 struct scatterlist *sg = &task->smp_task.smp_resp;
1495 void *frame_header, *kaddr;
1496 u8 *rsp;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001497
Dan Williams89a73012011-06-30 19:14:33 -07001498 sci_unsolicited_frame_control_get_header(&ihost->uf_control,
Dan Williams5cbadb22011-09-28 18:35:27 -07001499 frame_index,
1500 &frame_header);
1501 kaddr = kmap_atomic(sg_page(sg), KM_IRQ0);
1502 rsp = kaddr + sg->offset;
1503 sci_swab32_cpy(rsp, frame_header, 1);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001504
Dan Williams5cbadb22011-09-28 18:35:27 -07001505 if (rsp[0] == SMP_RESPONSE) {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001506 void *smp_resp;
1507
Dan Williams89a73012011-06-30 19:14:33 -07001508 sci_unsolicited_frame_control_get_buffer(&ihost->uf_control,
Dan Williams5cbadb22011-09-28 18:35:27 -07001509 frame_index,
1510 &smp_resp);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001511
Dan Williams5cbadb22011-09-28 18:35:27 -07001512 word_cnt = (sg->length/4)-1;
1513 if (word_cnt > 0)
1514 word_cnt = min_t(unsigned int, word_cnt,
1515 SCU_UNSOLICITED_FRAME_BUFFER_SIZE/4);
1516 sci_swab32_cpy(rsp + 4, smp_resp, word_cnt);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001517
Dan Williams34a99152011-07-01 02:25:15 -07001518 ireq->scu_status = SCU_TASK_DONE_GOOD;
1519 ireq->sci_status = SCI_SUCCESS;
Dan Williams5076a1a2011-06-27 14:57:03 -07001520 sci_change_state(&ireq->sm, SCI_REQ_SMP_WAIT_TC_COMP);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001521 } else {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001522 /*
1523 * This was not a response frame why did it get
1524 * forwarded?
1525 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001526 dev_err(&ihost->pdev->dev,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001527 "%s: SCIC SMP Request 0x%p received unexpected "
1528 "frame %d type 0x%02x\n",
1529 __func__,
Dan Williams5076a1a2011-06-27 14:57:03 -07001530 ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001531 frame_index,
Dan Williams5cbadb22011-09-28 18:35:27 -07001532 rsp[0]);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001533
Dan Williams34a99152011-07-01 02:25:15 -07001534 ireq->scu_status = SCU_TASK_DONE_SMP_FRM_TYPE_ERR;
1535 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williams5076a1a2011-06-27 14:57:03 -07001536 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001537 }
Dan Williams5cbadb22011-09-28 18:35:27 -07001538 kunmap_atomic(kaddr, KM_IRQ0);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001539
Dan Williams89a73012011-06-30 19:14:33 -07001540 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001541
1542 return SCI_SUCCESS;
1543 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001544
1545 case SCI_REQ_STP_UDMA_WAIT_TC_COMP:
Dan Williams89a73012011-06-30 19:14:33 -07001546 return sci_stp_request_udma_general_frame_handler(ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001547 frame_index);
1548
1549 case SCI_REQ_STP_UDMA_WAIT_D2H:
Dan Williamsd1c637c2011-05-11 08:27:47 -07001550 /* Use the general frame handler to copy the resposne data */
Dan Williams34a99152011-07-01 02:25:15 -07001551 status = sci_stp_request_udma_general_frame_handler(ireq, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001552
1553 if (status != SCI_SUCCESS)
1554 return status;
1555
Dan Williams34a99152011-07-01 02:25:15 -07001556 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
1557 ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID;
1558 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001559 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001560
1561 case SCI_REQ_STP_NON_DATA_WAIT_D2H: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001562 struct dev_to_host_fis *frame_header;
1563 u32 *frame_buffer;
1564
Dan Williams89a73012011-06-30 19:14:33 -07001565 status = sci_unsolicited_frame_control_get_header(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001566 frame_index,
1567 (void **)&frame_header);
1568
1569 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001570 dev_err(&ihost->pdev->dev,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001571 "%s: SCIC IO Request 0x%p could not get frame "
1572 "header for frame index %d, status %x\n",
1573 __func__,
1574 stp_req,
1575 frame_index,
1576 status);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001577
1578 return status;
1579 }
1580
1581 switch (frame_header->fis_type) {
1582 case FIS_REGD2H:
Dan Williams89a73012011-06-30 19:14:33 -07001583 sci_unsolicited_frame_control_get_buffer(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001584 frame_index,
1585 (void **)&frame_buffer);
1586
Dan Williams89a73012011-06-30 19:14:33 -07001587 sci_controller_copy_sata_response(&ireq->stp.rsp,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001588 frame_header,
1589 frame_buffer);
1590
1591 /* The command has completed with error */
Dan Williams34a99152011-07-01 02:25:15 -07001592 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
1593 ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001594 break;
1595
1596 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001597 dev_warn(&ihost->pdev->dev,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001598 "%s: IO Request:0x%p Frame Id:%d protocol "
1599 "violation occurred\n", __func__, stp_req,
1600 frame_index);
1601
Dan Williams34a99152011-07-01 02:25:15 -07001602 ireq->scu_status = SCU_TASK_DONE_UNEXP_FIS;
1603 ireq->sci_status = SCI_FAILURE_PROTOCOL_VIOLATION;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001604 break;
1605 }
1606
Dan Williams5076a1a2011-06-27 14:57:03 -07001607 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001608
1609 /* Frame has been decoded return it to the controller */
Dan Williams89a73012011-06-30 19:14:33 -07001610 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001611
1612 return status;
1613 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001614
1615 case SCI_REQ_STP_PIO_WAIT_FRAME: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001616 struct sas_task *task = isci_request_access_task(ireq);
1617 struct dev_to_host_fis *frame_header;
1618 u32 *frame_buffer;
1619
Dan Williams89a73012011-06-30 19:14:33 -07001620 status = sci_unsolicited_frame_control_get_header(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001621 frame_index,
1622 (void **)&frame_header);
1623
1624 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001625 dev_err(&ihost->pdev->dev,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001626 "%s: SCIC IO Request 0x%p could not get frame "
1627 "header for frame index %d, status %x\n",
Dan Williamsd1c637c2011-05-11 08:27:47 -07001628 __func__, stp_req, frame_index, status);
1629 return status;
1630 }
1631
1632 switch (frame_header->fis_type) {
1633 case FIS_PIO_SETUP:
1634 /* Get from the frame buffer the PIO Setup Data */
Dan Williams89a73012011-06-30 19:14:33 -07001635 sci_unsolicited_frame_control_get_buffer(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001636 frame_index,
1637 (void **)&frame_buffer);
1638
Edmund Nadolskie3013702011-06-02 00:10:43 +00001639 /* Get the data from the PIO Setup The SCU Hardware
1640 * returns first word in the frame_header and the rest
1641 * of the data is in the frame buffer so we need to
1642 * back up one dword
Dan Williamsd1c637c2011-05-11 08:27:47 -07001643 */
1644
1645 /* transfer_count: first 16bits in the 4th dword */
Dan Williamsba7cb222011-06-27 11:56:41 -07001646 stp_req->pio_len = frame_buffer[3] & 0xffff;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001647
Dan Williamsba7cb222011-06-27 11:56:41 -07001648 /* status: 4th byte in the 3rd dword */
1649 stp_req->status = (frame_buffer[2] >> 24) & 0xff;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001650
Dan Williams89a73012011-06-30 19:14:33 -07001651 sci_controller_copy_sata_response(&ireq->stp.rsp,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001652 frame_header,
1653 frame_buffer);
1654
Dan Williams5076a1a2011-06-27 14:57:03 -07001655 ireq->stp.rsp.status = stp_req->status;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001656
1657 /* The next state is dependent on whether the
1658 * request was PIO Data-in or Data out
1659 */
1660 if (task->data_dir == DMA_FROM_DEVICE) {
Dan Williams5076a1a2011-06-27 14:57:03 -07001661 sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_DATA_IN);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001662 } else if (task->data_dir == DMA_TO_DEVICE) {
1663 /* Transmit data */
Dan Williams89a73012011-06-30 19:14:33 -07001664 status = sci_stp_request_pio_data_out_transmit_data(ireq);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001665 if (status != SCI_SUCCESS)
1666 break;
Dan Williams5076a1a2011-06-27 14:57:03 -07001667 sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_DATA_OUT);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001668 }
1669 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001670
Dan Williamsd1c637c2011-05-11 08:27:47 -07001671 case FIS_SETDEVBITS:
Dan Williams5076a1a2011-06-27 14:57:03 -07001672 sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001673 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001674
Dan Williamsd1c637c2011-05-11 08:27:47 -07001675 case FIS_REGD2H:
1676 if (frame_header->status & ATA_BUSY) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001677 /*
1678 * Now why is the drive sending a D2H Register
1679 * FIS when it is still busy? Do nothing since
1680 * we are still in the right state.
Dan Williamsd1c637c2011-05-11 08:27:47 -07001681 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001682 dev_dbg(&ihost->pdev->dev,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001683 "%s: SCIC PIO Request 0x%p received "
1684 "D2H Register FIS with BSY status "
Edmund Nadolskie3013702011-06-02 00:10:43 +00001685 "0x%x\n",
1686 __func__,
1687 stp_req,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001688 frame_header->status);
1689 break;
1690 }
1691
Dan Williams89a73012011-06-30 19:14:33 -07001692 sci_unsolicited_frame_control_get_buffer(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001693 frame_index,
1694 (void **)&frame_buffer);
1695
Dan Williams89a73012011-06-30 19:14:33 -07001696 sci_controller_copy_sata_response(&ireq->stp.req,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001697 frame_header,
1698 frame_buffer);
1699
Dan Williams34a99152011-07-01 02:25:15 -07001700 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
1701 ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID;
Dan Williams5076a1a2011-06-27 14:57:03 -07001702 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001703 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001704
Dan Williamsd1c637c2011-05-11 08:27:47 -07001705 default:
1706 /* FIXME: what do we do here? */
1707 break;
1708 }
1709
1710 /* Frame is decoded return it to the controller */
Dan Williams89a73012011-06-30 19:14:33 -07001711 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001712
1713 return status;
1714 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001715
1716 case SCI_REQ_STP_PIO_DATA_IN: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001717 struct dev_to_host_fis *frame_header;
1718 struct sata_fis_data *frame_buffer;
1719
Dan Williams89a73012011-06-30 19:14:33 -07001720 status = sci_unsolicited_frame_control_get_header(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001721 frame_index,
1722 (void **)&frame_header);
1723
1724 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001725 dev_err(&ihost->pdev->dev,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001726 "%s: SCIC IO Request 0x%p could not get frame "
1727 "header for frame index %d, status %x\n",
1728 __func__,
1729 stp_req,
1730 frame_index,
1731 status);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001732 return status;
1733 }
1734
1735 if (frame_header->fis_type != FIS_DATA) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001736 dev_err(&ihost->pdev->dev,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001737 "%s: SCIC PIO Request 0x%p received frame %d "
1738 "with fis type 0x%02x when expecting a data "
Edmund Nadolskie3013702011-06-02 00:10:43 +00001739 "fis.\n",
1740 __func__,
1741 stp_req,
1742 frame_index,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001743 frame_header->fis_type);
1744
Dan Williams34a99152011-07-01 02:25:15 -07001745 ireq->scu_status = SCU_TASK_DONE_GOOD;
1746 ireq->sci_status = SCI_FAILURE_IO_REQUIRES_SCSI_ABORT;
Dan Williams5076a1a2011-06-27 14:57:03 -07001747 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001748
1749 /* Frame is decoded return it to the controller */
Dan Williams89a73012011-06-30 19:14:33 -07001750 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001751 return status;
1752 }
1753
Dan Williamsba7cb222011-06-27 11:56:41 -07001754 if (stp_req->sgl.index < 0) {
Dan Williams5076a1a2011-06-27 14:57:03 -07001755 ireq->saved_rx_frame_index = frame_index;
Dan Williamsba7cb222011-06-27 11:56:41 -07001756 stp_req->pio_len = 0;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001757 } else {
Dan Williams89a73012011-06-30 19:14:33 -07001758 sci_unsolicited_frame_control_get_buffer(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001759 frame_index,
1760 (void **)&frame_buffer);
1761
Dan Williams89a73012011-06-30 19:14:33 -07001762 status = sci_stp_request_pio_data_in_copy_data(stp_req,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001763 (u8 *)frame_buffer);
1764
1765 /* Frame is decoded return it to the controller */
Dan Williams89a73012011-06-30 19:14:33 -07001766 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001767 }
1768
1769 /* Check for the end of the transfer, are there more
1770 * bytes remaining for this data transfer
1771 */
Dan Williamsba7cb222011-06-27 11:56:41 -07001772 if (status != SCI_SUCCESS || stp_req->pio_len != 0)
Dan Williamsd1c637c2011-05-11 08:27:47 -07001773 return status;
1774
Dan Williamsba7cb222011-06-27 11:56:41 -07001775 if ((stp_req->status & ATA_BUSY) == 0) {
Dan Williams34a99152011-07-01 02:25:15 -07001776 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
1777 ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID;
Dan Williams5076a1a2011-06-27 14:57:03 -07001778 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001779 } else {
Dan Williams5076a1a2011-06-27 14:57:03 -07001780 sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001781 }
1782 return status;
1783 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001784
1785 case SCI_REQ_STP_SOFT_RESET_WAIT_D2H: {
Dan Williamsd1c637c2011-05-11 08:27:47 -07001786 struct dev_to_host_fis *frame_header;
1787 u32 *frame_buffer;
1788
Dan Williams89a73012011-06-30 19:14:33 -07001789 status = sci_unsolicited_frame_control_get_header(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001790 frame_index,
1791 (void **)&frame_header);
1792 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001793 dev_err(&ihost->pdev->dev,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001794 "%s: SCIC IO Request 0x%p could not get frame "
1795 "header for frame index %d, status %x\n",
1796 __func__,
1797 stp_req,
1798 frame_index,
1799 status);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001800 return status;
1801 }
1802
1803 switch (frame_header->fis_type) {
1804 case FIS_REGD2H:
Dan Williams89a73012011-06-30 19:14:33 -07001805 sci_unsolicited_frame_control_get_buffer(&ihost->uf_control,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001806 frame_index,
1807 (void **)&frame_buffer);
1808
Dan Williams89a73012011-06-30 19:14:33 -07001809 sci_controller_copy_sata_response(&ireq->stp.rsp,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001810 frame_header,
1811 frame_buffer);
1812
1813 /* The command has completed with error */
Dan Williams34a99152011-07-01 02:25:15 -07001814 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
1815 ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001816 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001817
Dan Williamsd1c637c2011-05-11 08:27:47 -07001818 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001819 dev_warn(&ihost->pdev->dev,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001820 "%s: IO Request:0x%p Frame Id:%d protocol "
Edmund Nadolskie3013702011-06-02 00:10:43 +00001821 "violation occurred\n",
1822 __func__,
1823 stp_req,
Dan Williamsd1c637c2011-05-11 08:27:47 -07001824 frame_index);
1825
Dan Williams34a99152011-07-01 02:25:15 -07001826 ireq->scu_status = SCU_TASK_DONE_UNEXP_FIS;
1827 ireq->sci_status = SCI_FAILURE_PROTOCOL_VIOLATION;
Dan Williamsd1c637c2011-05-11 08:27:47 -07001828 break;
1829 }
1830
Dan Williams5076a1a2011-06-27 14:57:03 -07001831 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001832
1833 /* Frame has been decoded return it to the controller */
Dan Williams89a73012011-06-30 19:14:33 -07001834 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001835
1836 return status;
1837 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001838 case SCI_REQ_ABORTING:
1839 /*
1840 * TODO: Is it even possible to get an unsolicited frame in the
Dan Williamsd1c637c2011-05-11 08:27:47 -07001841 * aborting state?
1842 */
Dan Williams89a73012011-06-30 19:14:33 -07001843 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001844 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001845
Dan Williamsd1c637c2011-05-11 08:27:47 -07001846 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001847 dev_warn(&ihost->pdev->dev,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001848 "%s: SCIC IO Request given unexpected frame %x while "
1849 "in state %d\n",
1850 __func__,
1851 frame_index,
1852 state);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001853
Dan Williams89a73012011-06-30 19:14:33 -07001854 sci_controller_release_frame(ihost, frame_index);
Dan Williamsd1c637c2011-05-11 08:27:47 -07001855 return SCI_FAILURE_INVALID_STATE;
1856 }
1857}
1858
Dan Williams5076a1a2011-06-27 14:57:03 -07001859static enum sci_status stp_request_udma_await_tc_event(struct isci_request *ireq,
Dan Williamsa7e255a2011-05-11 08:27:47 -07001860 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07001861{
1862 enum sci_status status = SCI_SUCCESS;
1863
1864 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1865 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williams34a99152011-07-01 02:25:15 -07001866 ireq->scu_status = SCU_TASK_DONE_GOOD;
1867 ireq->sci_status = SCI_SUCCESS;
1868 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001869 break;
1870 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_FIS):
1871 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_REG_ERR):
Dan Williamsa7e255a2011-05-11 08:27:47 -07001872 /* We must check ther response buffer to see if the D2H
1873 * Register FIS was received before we got the TC
1874 * completion.
1875 */
Dan Williams5076a1a2011-06-27 14:57:03 -07001876 if (ireq->stp.rsp.fis_type == FIS_REGD2H) {
Dan Williams89a73012011-06-30 19:14:33 -07001877 sci_remote_device_suspend(ireq->target_device,
Dan Williams5dec6f42011-05-10 02:28:49 -07001878 SCU_EVENT_SPECIFIC(SCU_NORMALIZE_COMPLETION_STATUS(completion_code)));
1879
Dan Williams34a99152011-07-01 02:25:15 -07001880 ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE;
1881 ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID;
1882 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001883 } else {
Dan Williamsa7e255a2011-05-11 08:27:47 -07001884 /* If we have an error completion status for the
1885 * TC then we can expect a D2H register FIS from
1886 * the device so we must change state to wait
1887 * for it
1888 */
Dan Williams5076a1a2011-06-27 14:57:03 -07001889 sci_change_state(&ireq->sm, SCI_REQ_STP_UDMA_WAIT_D2H);
Dan Williams5dec6f42011-05-10 02:28:49 -07001890 }
1891 break;
1892
Dan Williamsa7e255a2011-05-11 08:27:47 -07001893 /* TODO Check to see if any of these completion status need to
1894 * wait for the device to host register fis.
1895 */
1896 /* TODO We can retry the command for SCU_TASK_DONE_CMD_LL_R_ERR
1897 * - this comes only for B0
1898 */
Dan Williams5dec6f42011-05-10 02:28:49 -07001899 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_INV_FIS_LEN):
1900 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_MAX_PLD_ERR):
1901 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_R_ERR):
1902 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CMD_LL_R_ERR):
1903 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CRC_ERR):
Dan Williams89a73012011-06-30 19:14:33 -07001904 sci_remote_device_suspend(ireq->target_device,
Dan Williams5dec6f42011-05-10 02:28:49 -07001905 SCU_EVENT_SPECIFIC(SCU_NORMALIZE_COMPLETION_STATUS(completion_code)));
1906 /* Fall through to the default case */
1907 default:
1908 /* All other completion status cause the IO to be complete. */
Dan Williams34a99152011-07-01 02:25:15 -07001909 ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code);
1910 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
1911 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001912 break;
1913 }
1914
1915 return status;
1916}
1917
Edmund Nadolskie3013702011-06-02 00:10:43 +00001918static enum sci_status
Dan Williams5076a1a2011-06-27 14:57:03 -07001919stp_request_soft_reset_await_h2d_asserted_tc_event(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001920 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07001921{
1922 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1923 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williams34a99152011-07-01 02:25:15 -07001924 ireq->scu_status = SCU_TASK_DONE_GOOD;
1925 ireq->sci_status = SCI_SUCCESS;
Dan Williams5076a1a2011-06-27 14:57:03 -07001926 sci_change_state(&ireq->sm, SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG);
Dan Williams5dec6f42011-05-10 02:28:49 -07001927 break;
1928
1929 default:
1930 /*
Edmund Nadolskie3013702011-06-02 00:10:43 +00001931 * All other completion status cause the IO to be complete.
1932 * If a NAK was received, then it is up to the user to retry
1933 * the request.
1934 */
Dan Williams34a99152011-07-01 02:25:15 -07001935 ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code);
1936 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williams5076a1a2011-06-27 14:57:03 -07001937 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001938 break;
1939 }
1940
1941 return SCI_SUCCESS;
1942}
1943
Edmund Nadolskie3013702011-06-02 00:10:43 +00001944static enum sci_status
Dan Williams5076a1a2011-06-27 14:57:03 -07001945stp_request_soft_reset_await_h2d_diagnostic_tc_event(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001946 u32 completion_code)
Dan Williams5dec6f42011-05-10 02:28:49 -07001947{
1948 switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) {
1949 case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD):
Dan Williams34a99152011-07-01 02:25:15 -07001950 ireq->scu_status = SCU_TASK_DONE_GOOD;
1951 ireq->sci_status = SCI_SUCCESS;
Dan Williams5076a1a2011-06-27 14:57:03 -07001952 sci_change_state(&ireq->sm, SCI_REQ_STP_SOFT_RESET_WAIT_D2H);
Dan Williams5dec6f42011-05-10 02:28:49 -07001953 break;
1954
1955 default:
Dan Williamsa7e255a2011-05-11 08:27:47 -07001956 /* All other completion status cause the IO to be complete. If
1957 * a NAK was received, then it is up to the user to retry the
1958 * request.
1959 */
Dan Williams34a99152011-07-01 02:25:15 -07001960 ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code);
1961 ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR;
Dan Williams5076a1a2011-06-27 14:57:03 -07001962 sci_change_state(&ireq->sm, SCI_REQ_COMPLETED);
Dan Williams5dec6f42011-05-10 02:28:49 -07001963 break;
1964 }
1965
1966 return SCI_SUCCESS;
1967}
1968
Dan Williamsa7e255a2011-05-11 08:27:47 -07001969enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07001970sci_io_request_tc_completion(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001971 u32 completion_code)
Dan Williamsa7e255a2011-05-11 08:27:47 -07001972{
1973 enum sci_base_request_states state;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001974 struct isci_host *ihost = ireq->owning_controller;
Dan Williamsa7e255a2011-05-11 08:27:47 -07001975
Dan Williams5076a1a2011-06-27 14:57:03 -07001976 state = ireq->sm.current_state_id;
Dan Williamsa7e255a2011-05-11 08:27:47 -07001977
1978 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001979 case SCI_REQ_STARTED:
Dan Williams5076a1a2011-06-27 14:57:03 -07001980 return request_started_state_tc_event(ireq, completion_code);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001981
1982 case SCI_REQ_TASK_WAIT_TC_COMP:
Dan Williams5076a1a2011-06-27 14:57:03 -07001983 return ssp_task_request_await_tc_event(ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001984 completion_code);
1985
1986 case SCI_REQ_SMP_WAIT_RESP:
Dan Williams5076a1a2011-06-27 14:57:03 -07001987 return smp_request_await_response_tc_event(ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001988 completion_code);
1989
1990 case SCI_REQ_SMP_WAIT_TC_COMP:
Dan Williams5076a1a2011-06-27 14:57:03 -07001991 return smp_request_await_tc_event(ireq, completion_code);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001992
1993 case SCI_REQ_STP_UDMA_WAIT_TC_COMP:
Dan Williams5076a1a2011-06-27 14:57:03 -07001994 return stp_request_udma_await_tc_event(ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001995 completion_code);
1996
1997 case SCI_REQ_STP_NON_DATA_WAIT_H2D:
Dan Williams5076a1a2011-06-27 14:57:03 -07001998 return stp_request_non_data_await_h2d_tc_event(ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001999 completion_code);
2000
2001 case SCI_REQ_STP_PIO_WAIT_H2D:
Dan Williams5076a1a2011-06-27 14:57:03 -07002002 return stp_request_pio_await_h2d_completion_tc_event(ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00002003 completion_code);
2004
2005 case SCI_REQ_STP_PIO_DATA_OUT:
Dan Williams5076a1a2011-06-27 14:57:03 -07002006 return pio_data_out_tx_done_tc_event(ireq, completion_code);
Edmund Nadolskie3013702011-06-02 00:10:43 +00002007
2008 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED:
Dan Williams5076a1a2011-06-27 14:57:03 -07002009 return stp_request_soft_reset_await_h2d_asserted_tc_event(ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00002010 completion_code);
2011
2012 case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG:
Dan Williams5076a1a2011-06-27 14:57:03 -07002013 return stp_request_soft_reset_await_h2d_diagnostic_tc_event(ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00002014 completion_code);
2015
2016 case SCI_REQ_ABORTING:
Dan Williams5076a1a2011-06-27 14:57:03 -07002017 return request_aborting_state_tc_event(ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +00002018 completion_code);
2019
2020 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002021 dev_warn(&ihost->pdev->dev,
Edmund Nadolskie3013702011-06-02 00:10:43 +00002022 "%s: SCIC IO Request given task completion "
2023 "notification %x while in wrong state %d\n",
2024 __func__,
2025 completion_code,
2026 state);
2027 return SCI_FAILURE_INVALID_STATE;
Dan Williamsa7e255a2011-05-11 08:27:47 -07002028 }
2029}
2030
Dan Williams6f231dd2011-07-02 22:56:22 -07002031/**
2032 * isci_request_process_response_iu() - This function sets the status and
2033 * response iu, in the task struct, from the request object for the upper
2034 * layer driver.
2035 * @sas_task: This parameter is the task struct from the upper layer driver.
2036 * @resp_iu: This parameter points to the response iu of the completed request.
2037 * @dev: This parameter specifies the linux device struct.
2038 *
2039 * none.
2040 */
2041static void isci_request_process_response_iu(
2042 struct sas_task *task,
2043 struct ssp_response_iu *resp_iu,
2044 struct device *dev)
2045{
2046 dev_dbg(dev,
2047 "%s: resp_iu = %p "
2048 "resp_iu->status = 0x%x,\nresp_iu->datapres = %d "
2049 "resp_iu->response_data_len = %x, "
2050 "resp_iu->sense_data_len = %x\nrepsonse data: ",
2051 __func__,
2052 resp_iu,
2053 resp_iu->status,
2054 resp_iu->datapres,
2055 resp_iu->response_data_len,
2056 resp_iu->sense_data_len);
2057
2058 task->task_status.stat = resp_iu->status;
2059
2060 /* libsas updates the task status fields based on the response iu. */
2061 sas_ssp_task_response(dev, task, resp_iu);
2062}
2063
2064/**
2065 * isci_request_set_open_reject_status() - This function prepares the I/O
2066 * completion for OPEN_REJECT conditions.
2067 * @request: This parameter is the completed isci_request object.
2068 * @response_ptr: This parameter specifies the service response for the I/O.
2069 * @status_ptr: This parameter specifies the exec status for the I/O.
2070 * @complete_to_host_ptr: This parameter specifies the action to be taken by
2071 * the LLDD with respect to completing this request or forcing an abort
2072 * condition on the I/O.
2073 * @open_rej_reason: This parameter specifies the encoded reason for the
2074 * abandon-class reject.
2075 *
2076 * none.
2077 */
2078static void isci_request_set_open_reject_status(
2079 struct isci_request *request,
2080 struct sas_task *task,
2081 enum service_response *response_ptr,
2082 enum exec_status *status_ptr,
2083 enum isci_completion_selection *complete_to_host_ptr,
2084 enum sas_open_rej_reason open_rej_reason)
2085{
2086 /* Task in the target is done. */
Dan Williams38d88792011-06-23 14:33:48 -07002087 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002088 *response_ptr = SAS_TASK_UNDELIVERED;
2089 *status_ptr = SAS_OPEN_REJECT;
2090 *complete_to_host_ptr = isci_perform_normal_io_completion;
2091 task->task_status.open_rej_reason = open_rej_reason;
2092}
2093
2094/**
2095 * isci_request_handle_controller_specific_errors() - This function decodes
2096 * controller-specific I/O completion error conditions.
2097 * @request: This parameter is the completed isci_request object.
2098 * @response_ptr: This parameter specifies the service response for the I/O.
2099 * @status_ptr: This parameter specifies the exec status for the I/O.
2100 * @complete_to_host_ptr: This parameter specifies the action to be taken by
2101 * the LLDD with respect to completing this request or forcing an abort
2102 * condition on the I/O.
2103 *
2104 * none.
2105 */
2106static void isci_request_handle_controller_specific_errors(
Dan Williams209fae12011-06-13 17:39:44 -07002107 struct isci_remote_device *idev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002108 struct isci_request *request,
2109 struct sas_task *task,
2110 enum service_response *response_ptr,
2111 enum exec_status *status_ptr,
2112 enum isci_completion_selection *complete_to_host_ptr)
2113{
2114 unsigned int cstatus;
2115
Dan Williams5076a1a2011-06-27 14:57:03 -07002116 cstatus = request->scu_status;
Dan Williams6f231dd2011-07-02 22:56:22 -07002117
2118 dev_dbg(&request->isci_host->pdev->dev,
2119 "%s: %p SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR "
2120 "- controller status = 0x%x\n",
2121 __func__, request, cstatus);
2122
2123 /* Decode the controller-specific errors; most
2124 * important is to recognize those conditions in which
2125 * the target may still have a task outstanding that
2126 * must be aborted.
2127 *
2128 * Note that there are SCU completion codes being
2129 * named in the decode below for which SCIC has already
2130 * done work to handle them in a way other than as
2131 * a controller-specific completion code; these are left
2132 * in the decode below for completeness sake.
2133 */
2134 switch (cstatus) {
2135 case SCU_TASK_DONE_DMASETUP_DIRERR:
2136 /* Also SCU_TASK_DONE_SMP_FRM_TYPE_ERR: */
2137 case SCU_TASK_DONE_XFERCNT_ERR:
2138 /* Also SCU_TASK_DONE_SMP_UFI_ERR: */
2139 if (task->task_proto == SAS_PROTOCOL_SMP) {
2140 /* SCU_TASK_DONE_SMP_UFI_ERR == Task Done. */
2141 *response_ptr = SAS_TASK_COMPLETE;
2142
2143 /* See if the device has been/is being stopped. Note
2144 * that we ignore the quiesce state, since we are
2145 * concerned about the actual device state.
2146 */
Dan Williams209fae12011-06-13 17:39:44 -07002147 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002148 *status_ptr = SAS_DEVICE_UNKNOWN;
2149 else
2150 *status_ptr = SAS_ABORTED_TASK;
2151
Dan Williams38d88792011-06-23 14:33:48 -07002152 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002153
2154 *complete_to_host_ptr =
2155 isci_perform_normal_io_completion;
2156 } else {
2157 /* Task in the target is not done. */
2158 *response_ptr = SAS_TASK_UNDELIVERED;
2159
Dan Williams209fae12011-06-13 17:39:44 -07002160 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002161 *status_ptr = SAS_DEVICE_UNKNOWN;
2162 else
2163 *status_ptr = SAM_STAT_TASK_ABORTED;
2164
Dan Williams38d88792011-06-23 14:33:48 -07002165 clear_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002166
2167 *complete_to_host_ptr =
2168 isci_perform_error_io_completion;
2169 }
2170
2171 break;
2172
2173 case SCU_TASK_DONE_CRC_ERR:
2174 case SCU_TASK_DONE_NAK_CMD_ERR:
2175 case SCU_TASK_DONE_EXCESS_DATA:
2176 case SCU_TASK_DONE_UNEXP_FIS:
2177 /* Also SCU_TASK_DONE_UNEXP_RESP: */
2178 case SCU_TASK_DONE_VIIT_ENTRY_NV: /* TODO - conditions? */
2179 case SCU_TASK_DONE_IIT_ENTRY_NV: /* TODO - conditions? */
2180 case SCU_TASK_DONE_RNCNV_OUTBOUND: /* TODO - conditions? */
2181 /* These are conditions in which the target
2182 * has completed the task, so that no cleanup
2183 * is necessary.
2184 */
2185 *response_ptr = SAS_TASK_COMPLETE;
2186
2187 /* See if the device has been/is being stopped. Note
2188 * that we ignore the quiesce state, since we are
2189 * concerned about the actual device state.
2190 */
Dan Williams209fae12011-06-13 17:39:44 -07002191 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002192 *status_ptr = SAS_DEVICE_UNKNOWN;
2193 else
2194 *status_ptr = SAS_ABORTED_TASK;
2195
Dan Williams38d88792011-06-23 14:33:48 -07002196 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002197
2198 *complete_to_host_ptr = isci_perform_normal_io_completion;
2199 break;
2200
2201
2202 /* Note that the only open reject completion codes seen here will be
2203 * abandon-class codes; all others are automatically retried in the SCU.
2204 */
2205 case SCU_TASK_OPEN_REJECT_WRONG_DESTINATION:
2206
2207 isci_request_set_open_reject_status(
2208 request, task, response_ptr, status_ptr,
2209 complete_to_host_ptr, SAS_OREJ_WRONG_DEST);
2210 break;
2211
2212 case SCU_TASK_OPEN_REJECT_ZONE_VIOLATION:
2213
2214 /* Note - the return of AB0 will change when
2215 * libsas implements detection of zone violations.
2216 */
2217 isci_request_set_open_reject_status(
2218 request, task, response_ptr, status_ptr,
2219 complete_to_host_ptr, SAS_OREJ_RESV_AB0);
2220 break;
2221
2222 case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_1:
2223
2224 isci_request_set_open_reject_status(
2225 request, task, response_ptr, status_ptr,
2226 complete_to_host_ptr, SAS_OREJ_RESV_AB1);
2227 break;
2228
2229 case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_2:
2230
2231 isci_request_set_open_reject_status(
2232 request, task, response_ptr, status_ptr,
2233 complete_to_host_ptr, SAS_OREJ_RESV_AB2);
2234 break;
2235
2236 case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_3:
2237
2238 isci_request_set_open_reject_status(
2239 request, task, response_ptr, status_ptr,
2240 complete_to_host_ptr, SAS_OREJ_RESV_AB3);
2241 break;
2242
2243 case SCU_TASK_OPEN_REJECT_BAD_DESTINATION:
2244
2245 isci_request_set_open_reject_status(
2246 request, task, response_ptr, status_ptr,
2247 complete_to_host_ptr, SAS_OREJ_BAD_DEST);
2248 break;
2249
2250 case SCU_TASK_OPEN_REJECT_STP_RESOURCES_BUSY:
2251
2252 isci_request_set_open_reject_status(
2253 request, task, response_ptr, status_ptr,
2254 complete_to_host_ptr, SAS_OREJ_STP_NORES);
2255 break;
2256
2257 case SCU_TASK_OPEN_REJECT_PROTOCOL_NOT_SUPPORTED:
2258
2259 isci_request_set_open_reject_status(
2260 request, task, response_ptr, status_ptr,
2261 complete_to_host_ptr, SAS_OREJ_EPROTO);
2262 break;
2263
2264 case SCU_TASK_OPEN_REJECT_CONNECTION_RATE_NOT_SUPPORTED:
2265
2266 isci_request_set_open_reject_status(
2267 request, task, response_ptr, status_ptr,
2268 complete_to_host_ptr, SAS_OREJ_CONN_RATE);
2269 break;
2270
2271 case SCU_TASK_DONE_LL_R_ERR:
2272 /* Also SCU_TASK_DONE_ACK_NAK_TO: */
2273 case SCU_TASK_DONE_LL_PERR:
2274 case SCU_TASK_DONE_LL_SY_TERM:
2275 /* Also SCU_TASK_DONE_NAK_ERR:*/
2276 case SCU_TASK_DONE_LL_LF_TERM:
2277 /* Also SCU_TASK_DONE_DATA_LEN_ERR: */
2278 case SCU_TASK_DONE_LL_ABORT_ERR:
2279 case SCU_TASK_DONE_SEQ_INV_TYPE:
2280 /* Also SCU_TASK_DONE_UNEXP_XR: */
2281 case SCU_TASK_DONE_XR_IU_LEN_ERR:
2282 case SCU_TASK_DONE_INV_FIS_LEN:
2283 /* Also SCU_TASK_DONE_XR_WD_LEN: */
2284 case SCU_TASK_DONE_SDMA_ERR:
2285 case SCU_TASK_DONE_OFFSET_ERR:
2286 case SCU_TASK_DONE_MAX_PLD_ERR:
2287 case SCU_TASK_DONE_LF_ERR:
2288 case SCU_TASK_DONE_SMP_RESP_TO_ERR: /* Escalate to dev reset? */
2289 case SCU_TASK_DONE_SMP_LL_RX_ERR:
2290 case SCU_TASK_DONE_UNEXP_DATA:
2291 case SCU_TASK_DONE_UNEXP_SDBFIS:
2292 case SCU_TASK_DONE_REG_ERR:
2293 case SCU_TASK_DONE_SDB_ERR:
2294 case SCU_TASK_DONE_TASK_ABORT:
2295 default:
2296 /* Task in the target is not done. */
2297 *response_ptr = SAS_TASK_UNDELIVERED;
2298 *status_ptr = SAM_STAT_TASK_ABORTED;
Dan Williams6f231dd2011-07-02 22:56:22 -07002299
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002300 if (task->task_proto == SAS_PROTOCOL_SMP) {
Dan Williams38d88792011-06-23 14:33:48 -07002301 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002302
2303 *complete_to_host_ptr = isci_perform_normal_io_completion;
2304 } else {
Dan Williams38d88792011-06-23 14:33:48 -07002305 clear_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002306
2307 *complete_to_host_ptr = isci_perform_error_io_completion;
2308 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002309 break;
2310 }
2311}
2312
2313/**
2314 * isci_task_save_for_upper_layer_completion() - This function saves the
2315 * request for later completion to the upper layer driver.
2316 * @host: This parameter is a pointer to the host on which the the request
2317 * should be queued (either as an error or success).
2318 * @request: This parameter is the completed request.
2319 * @response: This parameter is the response code for the completed task.
2320 * @status: This parameter is the status code for the completed task.
2321 *
2322 * none.
2323 */
2324static void isci_task_save_for_upper_layer_completion(
2325 struct isci_host *host,
2326 struct isci_request *request,
2327 enum service_response response,
2328 enum exec_status status,
2329 enum isci_completion_selection task_notification_selection)
2330{
2331 struct sas_task *task = isci_request_access_task(request);
2332
Jeff Skirvinec6c9632011-03-04 14:06:44 -08002333 task_notification_selection
2334 = isci_task_set_completion_status(task, response, status,
2335 task_notification_selection);
Dan Williams6f231dd2011-07-02 22:56:22 -07002336
2337 /* Tasks aborted specifically by a call to the lldd_abort_task
2338 * function should not be completed to the host in the regular path.
2339 */
2340 switch (task_notification_selection) {
2341
2342 case isci_perform_normal_io_completion:
2343
2344 /* Normal notification (task_done) */
2345 dev_dbg(&host->pdev->dev,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002346 "%s: Normal - task = %p, response=%d (%d), status=%d (%d)\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002347 __func__,
2348 task,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002349 task->task_status.resp, response,
2350 task->task_status.stat, status);
Dan Williams6f231dd2011-07-02 22:56:22 -07002351 /* Add to the completed list. */
2352 list_add(&request->completed_node,
2353 &host->requests_to_complete);
Jeff Skirvinec6c9632011-03-04 14:06:44 -08002354
2355 /* Take the request off the device's pending request list. */
2356 list_del_init(&request->dev_node);
Dan Williams6f231dd2011-07-02 22:56:22 -07002357 break;
2358
2359 case isci_perform_aborted_io_completion:
Jeff Skirvina5fde222011-03-04 14:06:42 -08002360 /* No notification to libsas because this request is
2361 * already in the abort path.
Dan Williams6f231dd2011-07-02 22:56:22 -07002362 */
Dan Williamsa8a0a132011-07-01 12:07:25 -07002363 dev_dbg(&host->pdev->dev,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002364 "%s: Aborted - task = %p, response=%d (%d), status=%d (%d)\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002365 __func__,
2366 task,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002367 task->task_status.resp, response,
2368 task->task_status.stat, status);
Jeff Skirvina5fde222011-03-04 14:06:42 -08002369
2370 /* Wake up whatever process was waiting for this
2371 * request to complete.
2372 */
2373 WARN_ON(request->io_request_completion == NULL);
2374
2375 if (request->io_request_completion != NULL) {
2376
2377 /* Signal whoever is waiting that this
2378 * request is complete.
2379 */
2380 complete(request->io_request_completion);
2381 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002382 break;
2383
2384 case isci_perform_error_io_completion:
2385 /* Use sas_task_abort */
Dan Williamsa8a0a132011-07-01 12:07:25 -07002386 dev_dbg(&host->pdev->dev,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002387 "%s: Error - task = %p, response=%d (%d), status=%d (%d)\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002388 __func__,
2389 task,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002390 task->task_status.resp, response,
2391 task->task_status.stat, status);
Dan Williams6f231dd2011-07-02 22:56:22 -07002392 /* Add to the aborted list. */
2393 list_add(&request->completed_node,
Jeff Skirvin11b00c12011-03-04 14:06:40 -08002394 &host->requests_to_errorback);
Dan Williams6f231dd2011-07-02 22:56:22 -07002395 break;
2396
2397 default:
Dan Williamsa8a0a132011-07-01 12:07:25 -07002398 dev_dbg(&host->pdev->dev,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002399 "%s: Unknown - task = %p, response=%d (%d), status=%d (%d)\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002400 __func__,
2401 task,
Jeff Skirvinaa145102011-03-07 16:40:47 -07002402 task->task_status.resp, response,
2403 task->task_status.stat, status);
Dan Williams6f231dd2011-07-02 22:56:22 -07002404
Jeff Skirvina5fde222011-03-04 14:06:42 -08002405 /* Add to the error to libsas list. */
Dan Williams6f231dd2011-07-02 22:56:22 -07002406 list_add(&request->completed_node,
Jeff Skirvin11b00c12011-03-04 14:06:40 -08002407 &host->requests_to_errorback);
Dan Williams6f231dd2011-07-02 22:56:22 -07002408 break;
2409 }
2410}
2411
Dan Williams60c48a42011-07-29 17:16:40 -07002412static void isci_process_stp_response(struct sas_task *task, struct dev_to_host_fis *fis)
Dan Williams16ba7702011-07-01 10:52:55 -07002413{
Dan Williams16ba7702011-07-01 10:52:55 -07002414 struct task_status_struct *ts = &task->task_status;
2415 struct ata_task_resp *resp = (void *)&ts->buf[0];
2416
Dan Williams60c48a42011-07-29 17:16:40 -07002417 resp->frame_len = sizeof(*fis);
2418 memcpy(resp->ending_fis, fis, sizeof(*fis));
Dan Williams16ba7702011-07-01 10:52:55 -07002419 ts->buf_valid_size = sizeof(*resp);
2420
Dan Williams60c48a42011-07-29 17:16:40 -07002421 /* If the device fault bit is set in the status register, then
Dan Williams16ba7702011-07-01 10:52:55 -07002422 * set the sense data and return.
2423 */
Dan Williams60c48a42011-07-29 17:16:40 -07002424 if (fis->status & ATA_DF)
Dan Williams16ba7702011-07-01 10:52:55 -07002425 ts->stat = SAS_PROTO_RESPONSE;
2426 else
2427 ts->stat = SAM_STAT_GOOD;
2428
2429 ts->resp = SAS_TASK_COMPLETE;
2430}
2431
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002432static void isci_request_io_request_complete(struct isci_host *ihost,
Dan Williamsf1f52e72011-05-10 02:28:45 -07002433 struct isci_request *request,
2434 enum sci_io_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -07002435{
2436 struct sas_task *task = isci_request_access_task(request);
2437 struct ssp_response_iu *resp_iu;
Dan Williams6f231dd2011-07-02 22:56:22 -07002438 unsigned long task_flags;
Dan Williams209fae12011-06-13 17:39:44 -07002439 struct isci_remote_device *idev = isci_lookup_device(task->dev);
Dan Williams6f231dd2011-07-02 22:56:22 -07002440 enum service_response response = SAS_TASK_UNDELIVERED;
2441 enum exec_status status = SAS_ABORTED_TASK;
2442 enum isci_request_status request_status;
2443 enum isci_completion_selection complete_to_host
2444 = isci_perform_normal_io_completion;
2445
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002446 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002447 "%s: request = %p, task = %p,\n"
2448 "task->data_dir = %d completion_status = 0x%x\n",
2449 __func__,
2450 request,
2451 task,
2452 task->data_dir,
2453 completion_status);
2454
Jeff Skirvina5fde222011-03-04 14:06:42 -08002455 spin_lock(&request->state_lock);
Dan Williams34a99152011-07-01 02:25:15 -07002456 request_status = request->status;
Dan Williams6f231dd2011-07-02 22:56:22 -07002457
2458 /* Decode the request status. Note that if the request has been
2459 * aborted by a task management function, we don't care
2460 * what the status is.
2461 */
2462 switch (request_status) {
2463
2464 case aborted:
2465 /* "aborted" indicates that the request was aborted by a task
2466 * management function, since once a task management request is
2467 * perfomed by the device, the request only completes because
2468 * of the subsequent driver terminate.
2469 *
2470 * Aborted also means an external thread is explicitly managing
2471 * this request, so that we do not complete it up the stack.
2472 *
2473 * The target is still there (since the TMF was successful).
2474 */
Dan Williams38d88792011-06-23 14:33:48 -07002475 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002476 response = SAS_TASK_COMPLETE;
2477
2478 /* See if the device has been/is being stopped. Note
2479 * that we ignore the quiesce state, since we are
2480 * concerned about the actual device state.
2481 */
Dan Williams209fae12011-06-13 17:39:44 -07002482 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002483 status = SAS_DEVICE_UNKNOWN;
2484 else
2485 status = SAS_ABORTED_TASK;
2486
2487 complete_to_host = isci_perform_aborted_io_completion;
2488 /* This was an aborted request. */
Jeff Skirvina5fde222011-03-04 14:06:42 -08002489
2490 spin_unlock(&request->state_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07002491 break;
2492
2493 case aborting:
2494 /* aborting means that the task management function tried and
2495 * failed to abort the request. We need to note the request
2496 * as SAS_TASK_UNDELIVERED, so that the scsi mid layer marks the
2497 * target as down.
2498 *
2499 * Aborting also means an external thread is explicitly managing
2500 * this request, so that we do not complete it up the stack.
2501 */
Dan Williams38d88792011-06-23 14:33:48 -07002502 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002503 response = SAS_TASK_UNDELIVERED;
2504
Dan Williams209fae12011-06-13 17:39:44 -07002505 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002506 /* The device has been /is being stopped. Note that
2507 * we ignore the quiesce state, since we are
2508 * concerned about the actual device state.
2509 */
2510 status = SAS_DEVICE_UNKNOWN;
2511 else
2512 status = SAS_PHY_DOWN;
2513
2514 complete_to_host = isci_perform_aborted_io_completion;
2515
2516 /* This was an aborted request. */
Jeff Skirvina5fde222011-03-04 14:06:42 -08002517
2518 spin_unlock(&request->state_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07002519 break;
2520
2521 case terminating:
2522
2523 /* This was an terminated request. This happens when
2524 * the I/O is being terminated because of an action on
2525 * the device (reset, tear down, etc.), and the I/O needs
2526 * to be completed up the stack.
2527 */
Dan Williams38d88792011-06-23 14:33:48 -07002528 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002529 response = SAS_TASK_UNDELIVERED;
2530
2531 /* See if the device has been/is being stopped. Note
2532 * that we ignore the quiesce state, since we are
2533 * concerned about the actual device state.
2534 */
Dan Williams209fae12011-06-13 17:39:44 -07002535 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002536 status = SAS_DEVICE_UNKNOWN;
2537 else
2538 status = SAS_ABORTED_TASK;
2539
Jeff Skirvina5fde222011-03-04 14:06:42 -08002540 complete_to_host = isci_perform_aborted_io_completion;
Dan Williams6f231dd2011-07-02 22:56:22 -07002541
2542 /* This was a terminated request. */
Jeff Skirvina5fde222011-03-04 14:06:42 -08002543
2544 spin_unlock(&request->state_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07002545 break;
2546
Jeff Skirvin77c852f2011-06-20 14:09:16 -07002547 case dead:
2548 /* This was a terminated request that timed-out during the
2549 * termination process. There is no task to complete to
2550 * libsas.
2551 */
2552 complete_to_host = isci_perform_normal_io_completion;
2553 spin_unlock(&request->state_lock);
2554 break;
2555
Dan Williams6f231dd2011-07-02 22:56:22 -07002556 default:
2557
Jeff Skirvina5fde222011-03-04 14:06:42 -08002558 /* The request is done from an SCU HW perspective. */
2559 request->status = completed;
2560
2561 spin_unlock(&request->state_lock);
2562
Dan Williams6f231dd2011-07-02 22:56:22 -07002563 /* This is an active request being completed from the core. */
2564 switch (completion_status) {
2565
2566 case SCI_IO_FAILURE_RESPONSE_VALID:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002567 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002568 "%s: SCI_IO_FAILURE_RESPONSE_VALID (%p/%p)\n",
2569 __func__,
2570 request,
2571 task);
2572
2573 if (sas_protocol_ata(task->task_proto)) {
Dan Williams60c48a42011-07-29 17:16:40 -07002574 isci_process_stp_response(task, &request->stp.rsp);
Dan Williams6f231dd2011-07-02 22:56:22 -07002575 } else if (SAS_PROTOCOL_SSP == task->task_proto) {
2576
2577 /* crack the iu response buffer. */
Dan Williams5076a1a2011-06-27 14:57:03 -07002578 resp_iu = &request->ssp.rsp;
Dan Williams6f231dd2011-07-02 22:56:22 -07002579 isci_request_process_response_iu(task, resp_iu,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002580 &ihost->pdev->dev);
Dan Williams6f231dd2011-07-02 22:56:22 -07002581
2582 } else if (SAS_PROTOCOL_SMP == task->task_proto) {
2583
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002584 dev_err(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002585 "%s: SCI_IO_FAILURE_RESPONSE_VALID: "
2586 "SAS_PROTOCOL_SMP protocol\n",
2587 __func__);
2588
2589 } else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002590 dev_err(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002591 "%s: unknown protocol\n", __func__);
2592
2593 /* use the task status set in the task struct by the
2594 * isci_request_process_response_iu call.
2595 */
Dan Williams38d88792011-06-23 14:33:48 -07002596 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002597 response = task->task_status.resp;
2598 status = task->task_status.stat;
2599 break;
2600
2601 case SCI_IO_SUCCESS:
2602 case SCI_IO_SUCCESS_IO_DONE_EARLY:
2603
2604 response = SAS_TASK_COMPLETE;
2605 status = SAM_STAT_GOOD;
Dan Williams38d88792011-06-23 14:33:48 -07002606 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002607
Dan Williams5cbadb22011-09-28 18:35:27 -07002608 if (completion_status == SCI_IO_SUCCESS_IO_DONE_EARLY) {
Dan Williams6f231dd2011-07-02 22:56:22 -07002609
2610 /* This was an SSP / STP / SATA transfer.
2611 * There is a possibility that less data than
2612 * the maximum was transferred.
2613 */
Dan Williams5076a1a2011-06-27 14:57:03 -07002614 u32 transferred_length = sci_req_tx_bytes(request);
Dan Williams6f231dd2011-07-02 22:56:22 -07002615
2616 task->task_status.residual
2617 = task->total_xfer_len - transferred_length;
2618
2619 /* If there were residual bytes, call this an
2620 * underrun.
2621 */
2622 if (task->task_status.residual != 0)
2623 status = SAS_DATA_UNDERRUN;
2624
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002625 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002626 "%s: SCI_IO_SUCCESS_IO_DONE_EARLY %d\n",
2627 __func__,
2628 status);
2629
2630 } else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002631 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002632 "%s: SCI_IO_SUCCESS\n",
2633 __func__);
2634
2635 break;
2636
2637 case SCI_IO_FAILURE_TERMINATED:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002638 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002639 "%s: SCI_IO_FAILURE_TERMINATED (%p/%p)\n",
2640 __func__,
2641 request,
2642 task);
2643
2644 /* The request was terminated explicitly. No handling
2645 * is needed in the SCSI error handler path.
2646 */
Dan Williams38d88792011-06-23 14:33:48 -07002647 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002648 response = SAS_TASK_UNDELIVERED;
2649
2650 /* See if the device has been/is being stopped. Note
2651 * that we ignore the quiesce state, since we are
2652 * concerned about the actual device state.
2653 */
Dan Williams209fae12011-06-13 17:39:44 -07002654 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002655 status = SAS_DEVICE_UNKNOWN;
2656 else
2657 status = SAS_ABORTED_TASK;
2658
2659 complete_to_host = isci_perform_normal_io_completion;
2660 break;
2661
2662 case SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR:
2663
2664 isci_request_handle_controller_specific_errors(
Dan Williams209fae12011-06-13 17:39:44 -07002665 idev, request, task, &response, &status,
Dan Williams6f231dd2011-07-02 22:56:22 -07002666 &complete_to_host);
2667
2668 break;
2669
2670 case SCI_IO_FAILURE_REMOTE_DEVICE_RESET_REQUIRED:
2671 /* This is a special case, in that the I/O completion
2672 * is telling us that the device needs a reset.
2673 * In order for the device reset condition to be
2674 * noticed, the I/O has to be handled in the error
2675 * handler. Set the reset flag and cause the
2676 * SCSI error thread to be scheduled.
2677 */
2678 spin_lock_irqsave(&task->task_state_lock, task_flags);
2679 task->task_state_flags |= SAS_TASK_NEED_DEV_RESET;
2680 spin_unlock_irqrestore(&task->task_state_lock, task_flags);
2681
Jeff Skirvinaa145102011-03-07 16:40:47 -07002682 /* Fail the I/O. */
2683 response = SAS_TASK_UNDELIVERED;
2684 status = SAM_STAT_TASK_ABORTED;
2685
Dan Williams6f231dd2011-07-02 22:56:22 -07002686 complete_to_host = isci_perform_error_io_completion;
Dan Williams38d88792011-06-23 14:33:48 -07002687 clear_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002688 break;
2689
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002690 case SCI_FAILURE_RETRY_REQUIRED:
2691
2692 /* Fail the I/O so it can be retried. */
2693 response = SAS_TASK_UNDELIVERED;
Dan Williams209fae12011-06-13 17:39:44 -07002694 if (!idev)
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002695 status = SAS_DEVICE_UNKNOWN;
2696 else
2697 status = SAS_ABORTED_TASK;
2698
2699 complete_to_host = isci_perform_normal_io_completion;
Dan Williams38d88792011-06-23 14:33:48 -07002700 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002701 break;
2702
2703
Dan Williams6f231dd2011-07-02 22:56:22 -07002704 default:
2705 /* Catch any otherwise unhandled error codes here. */
Dan Williamsa8a0a132011-07-01 12:07:25 -07002706 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002707 "%s: invalid completion code: 0x%x - "
2708 "isci_request = %p\n",
2709 __func__, completion_status, request);
2710
2711 response = SAS_TASK_UNDELIVERED;
2712
2713 /* See if the device has been/is being stopped. Note
2714 * that we ignore the quiesce state, since we are
2715 * concerned about the actual device state.
2716 */
Dan Williams209fae12011-06-13 17:39:44 -07002717 if (!idev)
Dan Williams6f231dd2011-07-02 22:56:22 -07002718 status = SAS_DEVICE_UNKNOWN;
2719 else
2720 status = SAS_ABORTED_TASK;
2721
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002722 if (SAS_PROTOCOL_SMP == task->task_proto) {
Dan Williams38d88792011-06-23 14:33:48 -07002723 set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002724 complete_to_host = isci_perform_normal_io_completion;
2725 } else {
Dan Williams38d88792011-06-23 14:33:48 -07002726 clear_bit(IREQ_COMPLETE_IN_TARGET, &request->flags);
Jeff Skirvincde76fb2011-06-20 14:09:06 -07002727 complete_to_host = isci_perform_error_io_completion;
2728 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002729 break;
2730 }
2731 break;
2732 }
2733
Dan Williamsddcc7e32011-06-17 10:40:43 -07002734 switch (task->task_proto) {
2735 case SAS_PROTOCOL_SSP:
2736 if (task->data_dir == DMA_NONE)
2737 break;
2738 if (task->num_scatter == 0)
2739 /* 0 indicates a single dma address */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002740 dma_unmap_single(&ihost->pdev->dev,
Dan Williamsddcc7e32011-06-17 10:40:43 -07002741 request->zero_scatter_daddr,
2742 task->total_xfer_len, task->data_dir);
2743 else /* unmap the sgl dma addresses */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002744 dma_unmap_sg(&ihost->pdev->dev, task->scatter,
Dan Williamsddcc7e32011-06-17 10:40:43 -07002745 request->num_sg_entries, task->data_dir);
2746 break;
Dan Williamse9bf7092011-06-16 16:59:56 -07002747 case SAS_PROTOCOL_SMP: {
2748 struct scatterlist *sg = &task->smp_task.smp_req;
2749 struct smp_req *smp_req;
2750 void *kaddr;
2751
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002752 dma_unmap_sg(&ihost->pdev->dev, sg, 1, DMA_TO_DEVICE);
Dan Williamse9bf7092011-06-16 16:59:56 -07002753
2754 /* need to swab it back in case the command buffer is re-used */
2755 kaddr = kmap_atomic(sg_page(sg), KM_IRQ0);
2756 smp_req = kaddr + sg->offset;
2757 sci_swab32_cpy(smp_req, smp_req, sg->length / sizeof(u32));
2758 kunmap_atomic(kaddr, KM_IRQ0);
2759 break;
2760 }
Dan Williamsddcc7e32011-06-17 10:40:43 -07002761 default:
2762 break;
2763 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002764
2765 /* Put the completed request on the correct list */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002766 isci_task_save_for_upper_layer_completion(ihost, request, response,
Dan Williams6f231dd2011-07-02 22:56:22 -07002767 status, complete_to_host
2768 );
2769
2770 /* complete the io request to the core. */
Dan Williams89a73012011-06-30 19:14:33 -07002771 sci_controller_complete_io(ihost, request->target_device, request);
Dan Williams209fae12011-06-13 17:39:44 -07002772 isci_put_device(idev);
2773
Dan Williams67ea8382011-05-08 11:47:15 -07002774 /* set terminated handle so it cannot be completed or
Dan Williams6f231dd2011-07-02 22:56:22 -07002775 * terminated again, and to cause any calls into abort
2776 * task to recognize the already completed case.
2777 */
Dan Williams38d88792011-06-23 14:33:48 -07002778 set_bit(IREQ_TERMINATED, &request->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07002779}
Dan Williamsf1f52e72011-05-10 02:28:45 -07002780
Dan Williams89a73012011-06-30 19:14:33 -07002781static void sci_request_started_state_enter(struct sci_base_state_machine *sm)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002782{
Dan Williams5076a1a2011-06-27 14:57:03 -07002783 struct isci_request *ireq = container_of(sm, typeof(*ireq), sm);
Dan Williams78a6f062011-06-30 16:31:37 -07002784 struct domain_device *dev = ireq->target_device->domain_dev;
Dan Williamsc72086e2011-05-10 02:28:48 -07002785 struct sas_task *task;
2786
2787 /* XXX as hch said always creating an internal sas_task for tmf
2788 * requests would simplify the driver
2789 */
2790 task = ireq->ttype == io_task ? isci_request_access_task(ireq) : NULL;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002791
Dan Williams5dec6f42011-05-10 02:28:49 -07002792 /* all unaccelerated request types (non ssp or ncq) handled with
2793 * substates
Dan Williamsf1393032011-05-10 02:28:47 -07002794 */
Dan Williamsc72086e2011-05-10 02:28:48 -07002795 if (!task && dev->dev_type == SAS_END_DEV) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002796 sci_change_state(sm, SCI_REQ_TASK_WAIT_TC_COMP);
Dan Williams5dec6f42011-05-10 02:28:49 -07002797 } else if (!task &&
2798 (isci_request_access_tmf(ireq)->tmf_code == isci_tmf_sata_srst_high ||
2799 isci_request_access_tmf(ireq)->tmf_code == isci_tmf_sata_srst_low)) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002800 sci_change_state(sm, SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED);
Dan Williamsc72086e2011-05-10 02:28:48 -07002801 } else if (task && task->task_proto == SAS_PROTOCOL_SMP) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002802 sci_change_state(sm, SCI_REQ_SMP_WAIT_RESP);
Dan Williams5dec6f42011-05-10 02:28:49 -07002803 } else if (task && sas_protocol_ata(task->task_proto) &&
2804 !task->ata_task.use_ncq) {
2805 u32 state;
2806
2807 if (task->data_dir == DMA_NONE)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002808 state = SCI_REQ_STP_NON_DATA_WAIT_H2D;
Dan Williams5dec6f42011-05-10 02:28:49 -07002809 else if (task->ata_task.dma_xfer)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002810 state = SCI_REQ_STP_UDMA_WAIT_TC_COMP;
Dan Williams5dec6f42011-05-10 02:28:49 -07002811 else /* PIO */
Edmund Nadolskie3013702011-06-02 00:10:43 +00002812 state = SCI_REQ_STP_PIO_WAIT_H2D;
Dan Williams5dec6f42011-05-10 02:28:49 -07002813
Edmund Nadolskie3013702011-06-02 00:10:43 +00002814 sci_change_state(sm, state);
Dan Williamsc72086e2011-05-10 02:28:48 -07002815 }
Dan Williamsf1f52e72011-05-10 02:28:45 -07002816}
2817
Dan Williams89a73012011-06-30 19:14:33 -07002818static void sci_request_completed_state_enter(struct sci_base_state_machine *sm)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002819{
Dan Williams5076a1a2011-06-27 14:57:03 -07002820 struct isci_request *ireq = container_of(sm, typeof(*ireq), sm);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002821 struct isci_host *ihost = ireq->owning_controller;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002822
Dan Williamsf1f52e72011-05-10 02:28:45 -07002823 /* Tell the SCI_USER that the IO request is complete */
Dan Williams38d88792011-06-23 14:33:48 -07002824 if (!test_bit(IREQ_TMF, &ireq->flags))
Dan Williamsf1f52e72011-05-10 02:28:45 -07002825 isci_request_io_request_complete(ihost, ireq,
Dan Williams5076a1a2011-06-27 14:57:03 -07002826 ireq->sci_status);
Dan Williamsf1f52e72011-05-10 02:28:45 -07002827 else
Dan Williams5076a1a2011-06-27 14:57:03 -07002828 isci_task_request_complete(ihost, ireq, ireq->sci_status);
Dan Williamsf1f52e72011-05-10 02:28:45 -07002829}
2830
Dan Williams89a73012011-06-30 19:14:33 -07002831static void sci_request_aborting_state_enter(struct sci_base_state_machine *sm)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002832{
Dan Williams5076a1a2011-06-27 14:57:03 -07002833 struct isci_request *ireq = container_of(sm, typeof(*ireq), sm);
Dan Williamsf1f52e72011-05-10 02:28:45 -07002834
2835 /* Setting the abort bit in the Task Context is required by the silicon. */
Dan Williams5076a1a2011-06-27 14:57:03 -07002836 ireq->tc->abort = 1;
Dan Williamsc72086e2011-05-10 02:28:48 -07002837}
2838
Dan Williams89a73012011-06-30 19:14:33 -07002839static void sci_stp_request_started_non_data_await_h2d_completion_enter(struct sci_base_state_machine *sm)
Dan Williams5dec6f42011-05-10 02:28:49 -07002840{
Dan Williams5076a1a2011-06-27 14:57:03 -07002841 struct isci_request *ireq = container_of(sm, typeof(*ireq), sm);
Dan Williams5dec6f42011-05-10 02:28:49 -07002842
Dan Williams34a99152011-07-01 02:25:15 -07002843 ireq->target_device->working_request = ireq;
Dan Williams5dec6f42011-05-10 02:28:49 -07002844}
2845
Dan Williams89a73012011-06-30 19:14:33 -07002846static void sci_stp_request_started_pio_await_h2d_completion_enter(struct sci_base_state_machine *sm)
Dan Williams5dec6f42011-05-10 02:28:49 -07002847{
Dan Williams5076a1a2011-06-27 14:57:03 -07002848 struct isci_request *ireq = container_of(sm, typeof(*ireq), sm);
Dan Williams5dec6f42011-05-10 02:28:49 -07002849
Dan Williams34a99152011-07-01 02:25:15 -07002850 ireq->target_device->working_request = ireq;
Dan Williams5dec6f42011-05-10 02:28:49 -07002851}
2852
Dan Williams89a73012011-06-30 19:14:33 -07002853static void sci_stp_request_started_soft_reset_await_h2d_asserted_completion_enter(struct sci_base_state_machine *sm)
Dan Williams5dec6f42011-05-10 02:28:49 -07002854{
Dan Williams5076a1a2011-06-27 14:57:03 -07002855 struct isci_request *ireq = container_of(sm, typeof(*ireq), sm);
Dan Williams5dec6f42011-05-10 02:28:49 -07002856
Dan Williams34a99152011-07-01 02:25:15 -07002857 ireq->target_device->working_request = ireq;
Dan Williams5dec6f42011-05-10 02:28:49 -07002858}
2859
Dan Williams89a73012011-06-30 19:14:33 -07002860static void sci_stp_request_started_soft_reset_await_h2d_diagnostic_completion_enter(struct sci_base_state_machine *sm)
Dan Williams5dec6f42011-05-10 02:28:49 -07002861{
Dan Williams5076a1a2011-06-27 14:57:03 -07002862 struct isci_request *ireq = container_of(sm, typeof(*ireq), sm);
2863 struct scu_task_context *tc = ireq->tc;
Dan Williams5dec6f42011-05-10 02:28:49 -07002864 struct host_to_dev_fis *h2d_fis;
2865 enum sci_status status;
2866
2867 /* Clear the SRST bit */
Dan Williams5076a1a2011-06-27 14:57:03 -07002868 h2d_fis = &ireq->stp.cmd;
Dan Williams5dec6f42011-05-10 02:28:49 -07002869 h2d_fis->control = 0;
2870
2871 /* Clear the TC control bit */
Dan Williams312e0c22011-06-28 13:47:09 -07002872 tc->control_frame = 0;
Dan Williams5dec6f42011-05-10 02:28:49 -07002873
Dan Williams89a73012011-06-30 19:14:33 -07002874 status = sci_controller_continue_io(ireq);
Dan Williams79e2b6b2011-05-11 08:29:56 -07002875 WARN_ONCE(status != SCI_SUCCESS, "isci: continue io failure\n");
Dan Williams5dec6f42011-05-10 02:28:49 -07002876}
2877
Dan Williams89a73012011-06-30 19:14:33 -07002878static const struct sci_base_state sci_request_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002879 [SCI_REQ_INIT] = { },
2880 [SCI_REQ_CONSTRUCTED] = { },
2881 [SCI_REQ_STARTED] = {
Dan Williams89a73012011-06-30 19:14:33 -07002882 .enter_state = sci_request_started_state_enter,
Dan Williams5dec6f42011-05-10 02:28:49 -07002883 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00002884 [SCI_REQ_STP_NON_DATA_WAIT_H2D] = {
Dan Williams89a73012011-06-30 19:14:33 -07002885 .enter_state = sci_stp_request_started_non_data_await_h2d_completion_enter,
Dan Williams5dec6f42011-05-10 02:28:49 -07002886 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00002887 [SCI_REQ_STP_NON_DATA_WAIT_D2H] = { },
2888 [SCI_REQ_STP_PIO_WAIT_H2D] = {
Dan Williams89a73012011-06-30 19:14:33 -07002889 .enter_state = sci_stp_request_started_pio_await_h2d_completion_enter,
Dan Williams5dec6f42011-05-10 02:28:49 -07002890 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00002891 [SCI_REQ_STP_PIO_WAIT_FRAME] = { },
2892 [SCI_REQ_STP_PIO_DATA_IN] = { },
2893 [SCI_REQ_STP_PIO_DATA_OUT] = { },
2894 [SCI_REQ_STP_UDMA_WAIT_TC_COMP] = { },
2895 [SCI_REQ_STP_UDMA_WAIT_D2H] = { },
2896 [SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED] = {
Dan Williams89a73012011-06-30 19:14:33 -07002897 .enter_state = sci_stp_request_started_soft_reset_await_h2d_asserted_completion_enter,
Dan Williams5dec6f42011-05-10 02:28:49 -07002898 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00002899 [SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG] = {
Dan Williams89a73012011-06-30 19:14:33 -07002900 .enter_state = sci_stp_request_started_soft_reset_await_h2d_diagnostic_completion_enter,
Dan Williams5dec6f42011-05-10 02:28:49 -07002901 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00002902 [SCI_REQ_STP_SOFT_RESET_WAIT_D2H] = { },
2903 [SCI_REQ_TASK_WAIT_TC_COMP] = { },
2904 [SCI_REQ_TASK_WAIT_TC_RESP] = { },
2905 [SCI_REQ_SMP_WAIT_RESP] = { },
2906 [SCI_REQ_SMP_WAIT_TC_COMP] = { },
2907 [SCI_REQ_COMPLETED] = {
Dan Williams89a73012011-06-30 19:14:33 -07002908 .enter_state = sci_request_completed_state_enter,
Dan Williamsf1f52e72011-05-10 02:28:45 -07002909 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00002910 [SCI_REQ_ABORTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07002911 .enter_state = sci_request_aborting_state_enter,
Dan Williamsf1f52e72011-05-10 02:28:45 -07002912 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00002913 [SCI_REQ_FINAL] = { },
Dan Williamsf1f52e72011-05-10 02:28:45 -07002914};
2915
Edmund Nadolskie3013702011-06-02 00:10:43 +00002916static void
Dan Williams89a73012011-06-30 19:14:33 -07002917sci_general_request_construct(struct isci_host *ihost,
Dan Williams78a6f062011-06-30 16:31:37 -07002918 struct isci_remote_device *idev,
Dan Williams5076a1a2011-06-27 14:57:03 -07002919 struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002920{
Dan Williams89a73012011-06-30 19:14:33 -07002921 sci_init_sm(&ireq->sm, sci_request_state_table, SCI_REQ_INIT);
Dan Williamsf1f52e72011-05-10 02:28:45 -07002922
Dan Williams78a6f062011-06-30 16:31:37 -07002923 ireq->target_device = idev;
Dan Williams5076a1a2011-06-27 14:57:03 -07002924 ireq->protocol = SCIC_NO_PROTOCOL;
2925 ireq->saved_rx_frame_index = SCU_INVALID_FRAME_INDEX;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002926
Dan Williams5076a1a2011-06-27 14:57:03 -07002927 ireq->sci_status = SCI_SUCCESS;
2928 ireq->scu_status = 0;
2929 ireq->post_context = 0xFFFFFFFF;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002930}
2931
2932static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07002933sci_io_request_construct(struct isci_host *ihost,
Dan Williams78a6f062011-06-30 16:31:37 -07002934 struct isci_remote_device *idev,
Dan Williams5076a1a2011-06-27 14:57:03 -07002935 struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002936{
Dan Williams78a6f062011-06-30 16:31:37 -07002937 struct domain_device *dev = idev->domain_dev;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002938 enum sci_status status = SCI_SUCCESS;
2939
2940 /* Build the common part of the request */
Dan Williams89a73012011-06-30 19:14:33 -07002941 sci_general_request_construct(ihost, idev, ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -07002942
Dan Williams78a6f062011-06-30 16:31:37 -07002943 if (idev->rnc.remote_node_index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002944 return SCI_FAILURE_INVALID_REMOTE_DEVICE;
2945
2946 if (dev->dev_type == SAS_END_DEV)
Dan Williamsc72086e2011-05-10 02:28:48 -07002947 /* pass */;
2948 else if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP))
Dan Williams5076a1a2011-06-27 14:57:03 -07002949 memset(&ireq->stp.cmd, 0, sizeof(ireq->stp.cmd));
Dan Williamsc72086e2011-05-10 02:28:48 -07002950 else if (dev_is_expander(dev))
Dan Williamse9bf7092011-06-16 16:59:56 -07002951 /* pass */;
Dan Williamsc72086e2011-05-10 02:28:48 -07002952 else
2953 return SCI_FAILURE_UNSUPPORTED_PROTOCOL;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002954
Dan Williams5076a1a2011-06-27 14:57:03 -07002955 memset(ireq->tc, 0, offsetof(struct scu_task_context, sgl_pair_ab));
Dan Williamsf1f52e72011-05-10 02:28:45 -07002956
2957 return status;
2958}
2959
Dan Williams89a73012011-06-30 19:14:33 -07002960enum sci_status sci_task_request_construct(struct isci_host *ihost,
Dan Williams78a6f062011-06-30 16:31:37 -07002961 struct isci_remote_device *idev,
Dan Williams5076a1a2011-06-27 14:57:03 -07002962 u16 io_tag, struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002963{
Dan Williams78a6f062011-06-30 16:31:37 -07002964 struct domain_device *dev = idev->domain_dev;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002965 enum sci_status status = SCI_SUCCESS;
2966
2967 /* Build the common part of the request */
Dan Williams89a73012011-06-30 19:14:33 -07002968 sci_general_request_construct(ihost, idev, ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -07002969
Dan Williamsc72086e2011-05-10 02:28:48 -07002970 if (dev->dev_type == SAS_END_DEV ||
2971 dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) {
Dan Williams5076a1a2011-06-27 14:57:03 -07002972 set_bit(IREQ_TMF, &ireq->flags);
2973 memset(ireq->tc, 0, sizeof(struct scu_task_context));
Dan Williamsc72086e2011-05-10 02:28:48 -07002974 } else
2975 status = SCI_FAILURE_UNSUPPORTED_PROTOCOL;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002976
2977 return status;
2978}
2979
2980static enum sci_status isci_request_ssp_request_construct(
2981 struct isci_request *request)
2982{
2983 enum sci_status status;
2984
2985 dev_dbg(&request->isci_host->pdev->dev,
2986 "%s: request = %p\n",
2987 __func__,
2988 request);
Dan Williams89a73012011-06-30 19:14:33 -07002989 status = sci_io_request_construct_basic_ssp(request);
Dan Williamsf1f52e72011-05-10 02:28:45 -07002990 return status;
2991}
2992
Dan Williams16ba7702011-07-01 10:52:55 -07002993static enum sci_status isci_request_stp_request_construct(struct isci_request *ireq)
Dan Williamsf1f52e72011-05-10 02:28:45 -07002994{
Dan Williams16ba7702011-07-01 10:52:55 -07002995 struct sas_task *task = isci_request_access_task(ireq);
2996 struct host_to_dev_fis *fis = &ireq->stp.cmd;
2997 struct ata_queued_cmd *qc = task->uldd_task;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002998 enum sci_status status;
Dan Williamsf1f52e72011-05-10 02:28:45 -07002999
Dan Williams16ba7702011-07-01 10:52:55 -07003000 dev_dbg(&ireq->isci_host->pdev->dev,
3001 "%s: ireq = %p\n",
Dan Williamsf1f52e72011-05-10 02:28:45 -07003002 __func__,
Dan Williams16ba7702011-07-01 10:52:55 -07003003 ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003004
Dan Williams16ba7702011-07-01 10:52:55 -07003005 memcpy(fis, &task->ata_task.fis, sizeof(struct host_to_dev_fis));
3006 if (!task->ata_task.device_control_reg_update)
3007 fis->flags |= 0x80;
3008 fis->flags &= 0xF0;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003009
Dan Williams16ba7702011-07-01 10:52:55 -07003010 status = sci_io_request_construct_basic_sata(ireq);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003011
Dan Williams16ba7702011-07-01 10:52:55 -07003012 if (qc && (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
3013 qc->tf.command == ATA_CMD_FPDMA_READ)) {
3014 fis->sector_count = qc->tag << 3;
3015 ireq->tc->type.stp.ncq_tag = qc->tag;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003016 }
3017
3018 return status;
3019}
3020
Dan Williamse9bf7092011-06-16 16:59:56 -07003021static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07003022sci_io_request_construct_smp(struct device *dev,
Dan Williams5076a1a2011-06-27 14:57:03 -07003023 struct isci_request *ireq,
Dan Williamse9bf7092011-06-16 16:59:56 -07003024 struct sas_task *task)
Dan Williamsc72086e2011-05-10 02:28:48 -07003025{
Dan Williamse9bf7092011-06-16 16:59:56 -07003026 struct scatterlist *sg = &task->smp_task.smp_req;
Dan Williams78a6f062011-06-30 16:31:37 -07003027 struct isci_remote_device *idev;
Dan Williamsc72086e2011-05-10 02:28:48 -07003028 struct scu_task_context *task_context;
Dan Williamsffe191c2011-06-29 13:09:25 -07003029 struct isci_port *iport;
Dan Williamse9bf7092011-06-16 16:59:56 -07003030 struct smp_req *smp_req;
3031 void *kaddr;
3032 u8 req_len;
3033 u32 cmd;
3034
3035 kaddr = kmap_atomic(sg_page(sg), KM_IRQ0);
3036 smp_req = kaddr + sg->offset;
3037 /*
3038 * Look at the SMP requests' header fields; for certain SAS 1.x SMP
3039 * functions under SAS 2.0, a zero request length really indicates
3040 * a non-zero default length.
3041 */
3042 if (smp_req->req_len == 0) {
3043 switch (smp_req->func) {
3044 case SMP_DISCOVER:
3045 case SMP_REPORT_PHY_ERR_LOG:
3046 case SMP_REPORT_PHY_SATA:
3047 case SMP_REPORT_ROUTE_INFO:
3048 smp_req->req_len = 2;
3049 break;
3050 case SMP_CONF_ROUTE_INFO:
3051 case SMP_PHY_CONTROL:
3052 case SMP_PHY_TEST_FUNCTION:
3053 smp_req->req_len = 9;
3054 break;
3055 /* Default - zero is a valid default for 2.0. */
3056 }
3057 }
3058 req_len = smp_req->req_len;
3059 sci_swab32_cpy(smp_req, smp_req, sg->length / sizeof(u32));
3060 cmd = *(u32 *) smp_req;
3061 kunmap_atomic(kaddr, KM_IRQ0);
3062
3063 if (!dma_map_sg(dev, sg, 1, DMA_TO_DEVICE))
3064 return SCI_FAILURE;
3065
Dan Williams5076a1a2011-06-27 14:57:03 -07003066 ireq->protocol = SCIC_SMP_PROTOCOL;
Dan Williamsc72086e2011-05-10 02:28:48 -07003067
3068 /* byte swap the smp request. */
Dan Williamsc72086e2011-05-10 02:28:48 -07003069
Dan Williams5076a1a2011-06-27 14:57:03 -07003070 task_context = ireq->tc;
Dan Williamsc72086e2011-05-10 02:28:48 -07003071
Dan Williams34a99152011-07-01 02:25:15 -07003072 idev = ireq->target_device;
3073 iport = idev->owning_port;
Dan Williamsc72086e2011-05-10 02:28:48 -07003074
3075 /*
3076 * Fill in the TC with the its required data
3077 * 00h
3078 */
3079 task_context->priority = 0;
3080 task_context->initiator_request = 1;
Dan Williams78a6f062011-06-30 16:31:37 -07003081 task_context->connection_rate = idev->connection_rate;
Dan Williams34a99152011-07-01 02:25:15 -07003082 task_context->protocol_engine_index = ISCI_PEG;
3083 task_context->logical_port_index = iport->physical_port_index;
Dan Williamsc72086e2011-05-10 02:28:48 -07003084 task_context->protocol_type = SCU_TASK_CONTEXT_PROTOCOL_SMP;
3085 task_context->abort = 0;
3086 task_context->valid = SCU_TASK_CONTEXT_VALID;
3087 task_context->context_type = SCU_TASK_CONTEXT_TYPE;
3088
3089 /* 04h */
Dan Williams78a6f062011-06-30 16:31:37 -07003090 task_context->remote_node_index = idev->rnc.remote_node_index;
Dan Williamsc72086e2011-05-10 02:28:48 -07003091 task_context->command_code = 0;
3092 task_context->task_type = SCU_TASK_TYPE_SMP_REQUEST;
3093
3094 /* 08h */
3095 task_context->link_layer_control = 0;
3096 task_context->do_not_dma_ssp_good_response = 1;
3097 task_context->strict_ordering = 0;
3098 task_context->control_frame = 1;
3099 task_context->timeout_enable = 0;
3100 task_context->block_guard_enable = 0;
3101
3102 /* 0ch */
3103 task_context->address_modifier = 0;
3104
3105 /* 10h */
Dave Jiang77d67382011-05-25 02:21:57 +00003106 task_context->ssp_command_iu_length = req_len;
Dan Williamsc72086e2011-05-10 02:28:48 -07003107
3108 /* 14h */
3109 task_context->transfer_length_bytes = 0;
3110
3111 /*
3112 * 18h ~ 30h, protocol specific
3113 * since commandIU has been build by framework at this point, we just
3114 * copy the frist DWord from command IU to this location. */
Dan Williamse9bf7092011-06-16 16:59:56 -07003115 memcpy(&task_context->type.smp, &cmd, sizeof(u32));
Dan Williamsc72086e2011-05-10 02:28:48 -07003116
3117 /*
3118 * 40h
3119 * "For SMP you could program it to zero. We would prefer that way
3120 * so that done code will be consistent." - Venki
3121 */
3122 task_context->task_phase = 0;
3123
Dan Williams5076a1a2011-06-27 14:57:03 -07003124 ireq->post_context = (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
Dan Williams34a99152011-07-01 02:25:15 -07003125 (ISCI_PEG << SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) |
3126 (iport->physical_port_index <<
3127 SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT) |
3128 ISCI_TAG_TCI(ireq->io_tag));
Dan Williamsc72086e2011-05-10 02:28:48 -07003129 /*
3130 * Copy the physical address for the command buffer to the SCU Task
3131 * Context command buffer should not contain command header.
3132 */
Dan Williamse9bf7092011-06-16 16:59:56 -07003133 task_context->command_iu_upper = upper_32_bits(sg_dma_address(sg));
3134 task_context->command_iu_lower = lower_32_bits(sg_dma_address(sg) + sizeof(u32));
Dan Williamsc72086e2011-05-10 02:28:48 -07003135
3136 /* SMP response comes as UF, so no need to set response IU address. */
3137 task_context->response_iu_upper = 0;
3138 task_context->response_iu_lower = 0;
Dan Williamsc72086e2011-05-10 02:28:48 -07003139
Dan Williams5076a1a2011-06-27 14:57:03 -07003140 sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED);
Dan Williamsc72086e2011-05-10 02:28:48 -07003141
3142 return SCI_SUCCESS;
3143}
3144
3145/*
Dan Williamsf1f52e72011-05-10 02:28:45 -07003146 * isci_smp_request_build() - This function builds the smp request.
3147 * @ireq: This parameter points to the isci_request allocated in the
3148 * request construct function.
3149 *
3150 * SCI_SUCCESS on successfull completion, or specific failure code.
3151 */
3152static enum sci_status isci_smp_request_build(struct isci_request *ireq)
3153{
Dan Williamsf1f52e72011-05-10 02:28:45 -07003154 struct sas_task *task = isci_request_access_task(ireq);
Dan Williamse9bf7092011-06-16 16:59:56 -07003155 struct device *dev = &ireq->isci_host->pdev->dev;
Dan Williamse9bf7092011-06-16 16:59:56 -07003156 enum sci_status status = SCI_FAILURE;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003157
Dan Williams89a73012011-06-30 19:14:33 -07003158 status = sci_io_request_construct_smp(dev, ireq, task);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003159 if (status != SCI_SUCCESS)
Dan Williamsa8a0a132011-07-01 12:07:25 -07003160 dev_dbg(&ireq->isci_host->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003161 "%s: failed with status = %d\n",
3162 __func__,
3163 status);
3164
3165 return status;
3166}
3167
3168/**
3169 * isci_io_request_build() - This function builds the io request object.
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07003170 * @ihost: This parameter specifies the ISCI host object
Dan Williamsf1f52e72011-05-10 02:28:45 -07003171 * @request: This parameter points to the isci_request object allocated in the
3172 * request construct function.
3173 * @sci_device: This parameter is the handle for the sci core's remote device
3174 * object that is the destination for this request.
3175 *
3176 * SCI_SUCCESS on successfull completion, or specific failure code.
3177 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07003178static enum sci_status isci_io_request_build(struct isci_host *ihost,
Dan Williams312e0c22011-06-28 13:47:09 -07003179 struct isci_request *request,
Dan Williams78a6f062011-06-30 16:31:37 -07003180 struct isci_remote_device *idev)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003181{
3182 enum sci_status status = SCI_SUCCESS;
3183 struct sas_task *task = isci_request_access_task(request);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003184
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07003185 dev_dbg(&ihost->pdev->dev,
Dan Williams78a6f062011-06-30 16:31:37 -07003186 "%s: idev = 0x%p; request = %p, "
Dan Williamsf1f52e72011-05-10 02:28:45 -07003187 "num_scatter = %d\n",
3188 __func__,
Dan Williams78a6f062011-06-30 16:31:37 -07003189 idev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003190 request,
3191 task->num_scatter);
3192
3193 /* map the sgl addresses, if present.
3194 * libata does the mapping for sata devices
3195 * before we get the request.
3196 */
3197 if (task->num_scatter &&
3198 !sas_protocol_ata(task->task_proto) &&
3199 !(SAS_PROTOCOL_SMP & task->task_proto)) {
3200
3201 request->num_sg_entries = dma_map_sg(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07003202 &ihost->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003203 task->scatter,
3204 task->num_scatter,
3205 task->data_dir
3206 );
3207
3208 if (request->num_sg_entries == 0)
3209 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
3210 }
3211
Dan Williams89a73012011-06-30 19:14:33 -07003212 status = sci_io_request_construct(ihost, idev, request);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003213
3214 if (status != SCI_SUCCESS) {
Dan Williamsa8a0a132011-07-01 12:07:25 -07003215 dev_dbg(&ihost->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003216 "%s: failed request construct\n",
3217 __func__);
3218 return SCI_FAILURE;
3219 }
3220
3221 switch (task->task_proto) {
3222 case SAS_PROTOCOL_SMP:
3223 status = isci_smp_request_build(request);
3224 break;
3225 case SAS_PROTOCOL_SSP:
3226 status = isci_request_ssp_request_construct(request);
3227 break;
3228 case SAS_PROTOCOL_SATA:
3229 case SAS_PROTOCOL_STP:
3230 case SAS_PROTOCOL_SATA | SAS_PROTOCOL_STP:
3231 status = isci_request_stp_request_construct(request);
3232 break;
3233 default:
Dan Williamsa8a0a132011-07-01 12:07:25 -07003234 dev_dbg(&ihost->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003235 "%s: unknown protocol\n", __func__);
3236 return SCI_FAILURE;
3237 }
3238
3239 return SCI_SUCCESS;
3240}
3241
Dan Williamsdb056252011-06-17 14:18:39 -07003242static struct isci_request *isci_request_from_tag(struct isci_host *ihost, u16 tag)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003243{
Dan Williams0d0cf142011-06-13 00:51:30 -07003244 struct isci_request *ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003245
Dan Williamsdb056252011-06-17 14:18:39 -07003246 ireq = ihost->reqs[ISCI_TAG_TCI(tag)];
Dan Williams5076a1a2011-06-27 14:57:03 -07003247 ireq->io_tag = tag;
Dan Williams0d0cf142011-06-13 00:51:30 -07003248 ireq->io_request_completion = NULL;
Dan Williams38d88792011-06-23 14:33:48 -07003249 ireq->flags = 0;
Dan Williams0d0cf142011-06-13 00:51:30 -07003250 ireq->num_sg_entries = 0;
Dan Williams0d0cf142011-06-13 00:51:30 -07003251 INIT_LIST_HEAD(&ireq->completed_node);
3252 INIT_LIST_HEAD(&ireq->dev_node);
Dan Williams0d0cf142011-06-13 00:51:30 -07003253 isci_request_change_state(ireq, allocated);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003254
Dan Williams0d0cf142011-06-13 00:51:30 -07003255 return ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003256}
3257
Dan Williamsdb056252011-06-17 14:18:39 -07003258static struct isci_request *isci_io_request_from_tag(struct isci_host *ihost,
3259 struct sas_task *task,
3260 u16 tag)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003261{
Dan Williams0d0cf142011-06-13 00:51:30 -07003262 struct isci_request *ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003263
Dan Williamsdb056252011-06-17 14:18:39 -07003264 ireq = isci_request_from_tag(ihost, tag);
3265 ireq->ttype_ptr.io_task_ptr = task;
3266 ireq->ttype = io_task;
3267 task->lldd_task = ireq;
3268
Dan Williams0d0cf142011-06-13 00:51:30 -07003269 return ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003270}
3271
Dan Williamsdb056252011-06-17 14:18:39 -07003272struct isci_request *isci_tmf_request_from_tag(struct isci_host *ihost,
3273 struct isci_tmf *isci_tmf,
3274 u16 tag)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003275{
Dan Williams0d0cf142011-06-13 00:51:30 -07003276 struct isci_request *ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003277
Dan Williamsdb056252011-06-17 14:18:39 -07003278 ireq = isci_request_from_tag(ihost, tag);
3279 ireq->ttype_ptr.tmf_task_ptr = isci_tmf;
3280 ireq->ttype = tmf_task;
3281
Dan Williams0d0cf142011-06-13 00:51:30 -07003282 return ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003283}
3284
Dan Williams209fae12011-06-13 17:39:44 -07003285int isci_request_execute(struct isci_host *ihost, struct isci_remote_device *idev,
Dan Williamsdb056252011-06-17 14:18:39 -07003286 struct sas_task *task, u16 tag)
Dan Williamsf1f52e72011-05-10 02:28:45 -07003287{
Dan Williamsf1f52e72011-05-10 02:28:45 -07003288 enum sci_status status = SCI_FAILURE_UNSUPPORTED_PROTOCOL;
Dan Williams0d0cf142011-06-13 00:51:30 -07003289 struct isci_request *ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003290 unsigned long flags;
Dan Williams0d0cf142011-06-13 00:51:30 -07003291 int ret = 0;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003292
Dan Williamsf1f52e72011-05-10 02:28:45 -07003293 /* do common allocation and init of request object. */
Dan Williamsdb056252011-06-17 14:18:39 -07003294 ireq = isci_io_request_from_tag(ihost, task, tag);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003295
Dan Williamsdb056252011-06-17 14:18:39 -07003296 status = isci_io_request_build(ihost, ireq, idev);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003297 if (status != SCI_SUCCESS) {
Dan Williamsa8a0a132011-07-01 12:07:25 -07003298 dev_dbg(&ihost->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003299 "%s: request_construct failed - status = 0x%x\n",
3300 __func__,
3301 status);
Dan Williamsdb056252011-06-17 14:18:39 -07003302 return status;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003303 }
3304
Dan Williams0d0cf142011-06-13 00:51:30 -07003305 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003306
Jeff Skirvin9274f452011-06-23 17:09:02 -07003307 if (test_bit(IDEV_IO_NCQERROR, &idev->flags)) {
3308
3309 if (isci_task_is_ncq_recovery(task)) {
3310
3311 /* The device is in an NCQ recovery state. Issue the
3312 * request on the task side. Note that it will
3313 * complete on the I/O request side because the
3314 * request was built that way (ie.
3315 * ireq->is_task_management_request is false).
3316 */
Dan Williams89a73012011-06-30 19:14:33 -07003317 status = sci_controller_start_task(ihost,
Dan Williams78a6f062011-06-30 16:31:37 -07003318 idev,
Dan Williams5076a1a2011-06-27 14:57:03 -07003319 ireq);
Jeff Skirvin9274f452011-06-23 17:09:02 -07003320 } else {
3321 status = SCI_FAILURE;
3322 }
3323 } else {
Jeff Skirvin9274f452011-06-23 17:09:02 -07003324 /* send the request, let the core assign the IO TAG. */
Dan Williams89a73012011-06-30 19:14:33 -07003325 status = sci_controller_start_io(ihost, idev,
Dan Williams5076a1a2011-06-27 14:57:03 -07003326 ireq);
Jeff Skirvin9274f452011-06-23 17:09:02 -07003327 }
Dan Williams312e0c22011-06-28 13:47:09 -07003328
Dan Williamsf1f52e72011-05-10 02:28:45 -07003329 if (status != SCI_SUCCESS &&
3330 status != SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED) {
Dan Williamsa8a0a132011-07-01 12:07:25 -07003331 dev_dbg(&ihost->pdev->dev,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003332 "%s: failed request start (0x%x)\n",
3333 __func__, status);
Dan Williams0d0cf142011-06-13 00:51:30 -07003334 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamsdb056252011-06-17 14:18:39 -07003335 return status;
Dan Williamsf1f52e72011-05-10 02:28:45 -07003336 }
3337
3338 /* Either I/O started OK, or the core has signaled that
3339 * the device needs a target reset.
3340 *
3341 * In either case, hold onto the I/O for later.
3342 *
3343 * Update it's status and add it to the list in the
3344 * remote device object.
3345 */
Dan Williams0d0cf142011-06-13 00:51:30 -07003346 list_add(&ireq->dev_node, &idev->reqs_in_process);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003347
3348 if (status == SCI_SUCCESS) {
Dan Williams0d0cf142011-06-13 00:51:30 -07003349 isci_request_change_state(ireq, started);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003350 } else {
3351 /* The request did not really start in the
3352 * hardware, so clear the request handle
3353 * here so no terminations will be done.
3354 */
Dan Williams38d88792011-06-23 14:33:48 -07003355 set_bit(IREQ_TERMINATED, &ireq->flags);
Dan Williams0d0cf142011-06-13 00:51:30 -07003356 isci_request_change_state(ireq, completed);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003357 }
Dan Williams0d0cf142011-06-13 00:51:30 -07003358 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamsf1f52e72011-05-10 02:28:45 -07003359
3360 if (status ==
3361 SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED) {
3362 /* Signal libsas that we need the SCSI error
Dan Williams312e0c22011-06-28 13:47:09 -07003363 * handler thread to work on this I/O and that
3364 * we want a device reset.
3365 */
Dan Williamsf1f52e72011-05-10 02:28:45 -07003366 spin_lock_irqsave(&task->task_state_lock, flags);
3367 task->task_state_flags |= SAS_TASK_NEED_DEV_RESET;
3368 spin_unlock_irqrestore(&task->task_state_lock, flags);
3369
3370 /* Cause this task to be scheduled in the SCSI error
Dan Williams312e0c22011-06-28 13:47:09 -07003371 * handler thread.
3372 */
Dan Williams0d0cf142011-06-13 00:51:30 -07003373 isci_execpath_callback(ihost, task,
Dan Williamsf1f52e72011-05-10 02:28:45 -07003374 sas_task_abort);
3375
3376 /* Change the status, since we are holding
Dan Williams312e0c22011-06-28 13:47:09 -07003377 * the I/O until it is managed by the SCSI
3378 * error handler.
3379 */
Dan Williamsf1f52e72011-05-10 02:28:45 -07003380 status = SCI_SUCCESS;
3381 }
3382
Dan Williamsf1f52e72011-05-10 02:28:45 -07003383 return ret;
3384}