Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1 | /* |
| 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 Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 57 | #include "task.h" |
| 58 | #include "request.h" |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 59 | #include "scu_completion_codes.h" |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 60 | #include "scu_event_codes.h" |
Dave Jiang | 2ec53eb | 2011-05-04 18:01:22 -0700 | [diff] [blame] | 61 | #include "sas.h" |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 62 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 63 | static struct scu_sgl_element_pair *to_sgl_element_pair(struct isci_request *ireq, |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 64 | int idx) |
| 65 | { |
| 66 | if (idx == 0) |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 67 | return &ireq->tc->sgl_pair_ab; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 68 | else if (idx == 1) |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 69 | return &ireq->tc->sgl_pair_cd; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 70 | else if (idx < 0) |
| 71 | return NULL; |
| 72 | else |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 73 | return &ireq->sg_table[idx - 2]; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 76 | static dma_addr_t to_sgl_element_pair_dma(struct isci_host *ihost, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 77 | struct isci_request *ireq, u32 idx) |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 78 | { |
| 79 | u32 offset; |
| 80 | |
| 81 | if (idx == 0) { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 82 | offset = (void *) &ireq->tc->sgl_pair_ab - |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 83 | (void *) &ihost->task_context_table[0]; |
| 84 | return ihost->task_context_dma + offset; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 85 | } else if (idx == 1) { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 86 | offset = (void *) &ireq->tc->sgl_pair_cd - |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 87 | (void *) &ihost->task_context_table[0]; |
| 88 | return ihost->task_context_dma + offset; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 89 | } |
| 90 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 91 | return sci_io_request_get_dma_addr(ireq, &ireq->sg_table[idx - 2]); |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static 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 Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 102 | static void sci_request_build_sgl(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 103 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 104 | struct isci_host *ihost = ireq->isci_host; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 105 | struct sas_task *task = isci_request_access_task(ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 106 | 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 Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 116 | scu_sg = to_sgl_element_pair(ireq, sg_idx); |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 117 | init_sgl_element(&scu_sg->A, sg); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 118 | sg = sg_next(sg); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 119 | if (sg) { |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 120 | init_sgl_element(&scu_sg->B, sg); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 121 | sg = sg_next(sg); |
| 122 | } else |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 123 | memset(&scu_sg->B, 0, sizeof(scu_sg->B)); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 124 | |
| 125 | if (prev_sg) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 126 | dma_addr = to_sgl_element_pair_dma(ihost, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 127 | ireq, |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 128 | sg_idx); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 129 | |
| 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 Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 140 | scu_sg = to_sgl_element_pair(ireq, sg_idx); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 141 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 142 | dma_addr = dma_map_single(&ihost->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 143 | task->scatter, |
| 144 | task->total_xfer_len, |
| 145 | task->data_dir); |
| 146 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 147 | ireq->zero_scatter_daddr = dma_addr; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 148 | |
| 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 Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 160 | static void sci_io_request_build_ssp_command_iu(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 161 | { |
| 162 | struct ssp_cmd_iu *cmd_iu; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 163 | struct sas_task *task = isci_request_access_task(ireq); |
| 164 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 165 | cmd_iu = &ireq->ssp.cmd; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 166 | |
| 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 Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 180 | static void sci_task_request_build_ssp_task_iu(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 181 | { |
| 182 | struct ssp_task_iu *task_iu; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 183 | struct sas_task *task = isci_request_access_task(ireq); |
| 184 | struct isci_tmf *isci_tmf = isci_request_access_tmf(ireq); |
| 185 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 186 | task_iu = &ireq->ssp.tmf; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 187 | |
| 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 | */ |
| 205 | static void scu_ssp_reqeust_construct_task_context( |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 206 | struct isci_request *ireq, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 207 | struct scu_task_context *task_context) |
| 208 | { |
| 209 | dma_addr_t dma_addr; |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 210 | struct isci_remote_device *idev; |
Dan Williams | ffe191c | 2011-06-29 13:09:25 -0700 | [diff] [blame] | 211 | struct isci_port *iport; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 212 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 213 | idev = ireq->target_device; |
| 214 | iport = idev->owning_port; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 215 | |
| 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 Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 220 | task_context->connection_rate = idev->connection_rate; |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 221 | task_context->protocol_engine_index = ISCI_PEG; |
| 222 | task_context->logical_port_index = iport->physical_port_index; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 223 | 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 Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 227 | task_context->remote_node_index = idev->rnc.remote_node_index; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 228 | 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 Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 239 | /* task_context->type.ssp.tag = ireq->io_tag; */ |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 240 | task_context->task_phase = 0x01; |
| 241 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 242 | ireq->post_context = (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 243 | (ISCI_PEG << SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) | |
| 244 | (iport->physical_port_index << |
Dan Williams | ffe191c | 2011-06-29 13:09:25 -0700 | [diff] [blame] | 245 | SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT) | |
| 246 | ISCI_TAG_TCI(ireq->io_tag)); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 247 | |
| 248 | /* |
| 249 | * Copy the physical address for the command buffer to the |
| 250 | * SCU Task Context |
| 251 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 252 | dma_addr = sci_io_request_get_dma_addr(ireq, &ireq->ssp.cmd); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 253 | |
| 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 Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 261 | dma_addr = sci_io_request_get_dma_addr(ireq, &ireq->ssp.rsp); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 262 | |
| 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 Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 272 | static void scu_ssp_io_request_construct_task_context(struct isci_request *ireq, |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 273 | enum dma_data_direction dir, |
| 274 | u32 len) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 275 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 276 | struct scu_task_context *task_context = ireq->tc; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 277 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 278 | scu_ssp_reqeust_construct_task_context(ireq, task_context); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 279 | |
| 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 Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 298 | sci_request_build_sgl(ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 299 | } |
| 300 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 301 | /** |
| 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 Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 314 | static void scu_ssp_task_request_construct_task_context(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 315 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 316 | struct scu_task_context *task_context = ireq->tc; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 317 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 318 | scu_ssp_reqeust_construct_task_context(ireq, task_context); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 319 | |
| 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 Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 329 | /** |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 330 | * 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 Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 336 | * |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 337 | * 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 Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 340 | */ |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 341 | static void scu_sata_reqeust_construct_task_context( |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 342 | struct isci_request *ireq, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 343 | struct scu_task_context *task_context) |
| 344 | { |
| 345 | dma_addr_t dma_addr; |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 346 | struct isci_remote_device *idev; |
Dan Williams | ffe191c | 2011-06-29 13:09:25 -0700 | [diff] [blame] | 347 | struct isci_port *iport; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 348 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 349 | idev = ireq->target_device; |
| 350 | iport = idev->owning_port; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 351 | |
| 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 Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 356 | task_context->connection_rate = idev->connection_rate; |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 357 | task_context->protocol_engine_index = ISCI_PEG; |
| 358 | task_context->logical_port_index = iport->physical_port_index; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 359 | 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 Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 363 | task_context->remote_node_index = idev->rnc.remote_node_index; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 364 | 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 Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 380 | task_context->type.words[0] = *(u32 *)&ireq->stp.cmd; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 381 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 382 | ireq->post_context = (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 383 | (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 Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 387 | /* |
| 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 Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 392 | dma_addr = sci_io_request_get_dma_addr(ireq, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 393 | ((char *) &ireq->stp.cmd) + |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 394 | 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 Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 404 | static void scu_stp_raw_request_construct_task_context(struct isci_request *ireq) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 405 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 406 | struct scu_task_context *task_context = ireq->tc; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 407 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 408 | scu_sata_reqeust_construct_task_context(ireq, task_context); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 409 | |
| 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 Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 417 | static enum sci_status sci_stp_pio_request_construct(struct isci_request *ireq, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 418 | bool copy_rx_frame) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 419 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 420 | struct isci_stp_request *stp_req = &ireq->stp.req; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 421 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 422 | scu_stp_raw_request_construct_task_context(ireq); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 423 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 424 | stp_req->status = 0; |
| 425 | stp_req->sgl.offset = 0; |
| 426 | stp_req->sgl.set = SCU_SGL_ELEMENT_PAIR_A; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 427 | |
| 428 | if (copy_rx_frame) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 429 | sci_request_build_sgl(ireq); |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 430 | stp_req->sgl.index = 0; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 431 | } else { |
| 432 | /* The user does not want the data copied to the SGL buffer location */ |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 433 | stp_req->sgl.index = -1; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 434 | } |
| 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 Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 451 | static void sci_stp_optimized_request_construct(struct isci_request *ireq, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 452 | u8 optimized_task_type, |
| 453 | u32 len, |
| 454 | enum dma_data_direction dir) |
| 455 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 456 | struct scu_task_context *task_context = ireq->tc; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 457 | |
| 458 | /* Build the STP task context structure */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 459 | scu_sata_reqeust_construct_task_context(ireq, task_context); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 460 | |
| 461 | /* Copy over the SGL elements */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 462 | sci_request_build_sgl(ireq); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 463 | |
| 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 | |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 484 | static void sci_atapi_construct(struct isci_request *ireq) |
| 485 | { |
| 486 | struct host_to_dev_fis *h2d_fis = &ireq->stp.cmd; |
| 487 | struct sas_task *task; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 488 | |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 489 | /* To simplify the implementation we take advantage of the |
| 490 | * silicon's partial acceleration of atapi protocol (dma data |
| 491 | * transfers), so we promote all commands to dma protocol. This |
| 492 | * breaks compatibility with ATA_HORKAGE_ATAPI_MOD16_DMA drives. |
| 493 | */ |
| 494 | h2d_fis->features |= ATAPI_PKT_DMA; |
| 495 | |
| 496 | scu_stp_raw_request_construct_task_context(ireq); |
| 497 | |
| 498 | task = isci_request_access_task(ireq); |
| 499 | if (task->data_dir == DMA_NONE) |
| 500 | task->total_xfer_len = 0; |
| 501 | |
| 502 | /* clear the response so we can detect arrivial of an |
| 503 | * unsolicited h2d fis |
| 504 | */ |
| 505 | ireq->stp.rsp.fis_type = 0; |
| 506 | } |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 507 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 508 | static enum sci_status |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 509 | sci_io_request_construct_sata(struct isci_request *ireq, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 510 | u32 len, |
| 511 | enum dma_data_direction dir, |
| 512 | bool copy) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 513 | { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 514 | enum sci_status status = SCI_SUCCESS; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 515 | struct sas_task *task = isci_request_access_task(ireq); |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 516 | struct domain_device *dev = ireq->target_device->domain_dev; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 517 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 518 | /* check for management protocols */ |
| 519 | if (ireq->ttype == tmf_task) { |
| 520 | struct isci_tmf *tmf = isci_request_access_tmf(ireq); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 521 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 522 | if (tmf->tmf_code == isci_tmf_sata_srst_high || |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 523 | tmf->tmf_code == isci_tmf_sata_srst_low) { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 524 | scu_stp_raw_request_construct_task_context(ireq); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 525 | return SCI_SUCCESS; |
| 526 | } else { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 527 | dev_err(&ireq->owning_controller->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 528 | "%s: Request 0x%p received un-handled SAT " |
| 529 | "management protocol 0x%x.\n", |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 530 | __func__, ireq, tmf->tmf_code); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 531 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 532 | return SCI_FAILURE; |
| 533 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 534 | } |
| 535 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 536 | if (!sas_protocol_ata(task->task_proto)) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 537 | dev_err(&ireq->owning_controller->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 538 | "%s: Non-ATA protocol in SATA path: 0x%x\n", |
| 539 | __func__, |
| 540 | task->task_proto); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 541 | return SCI_FAILURE; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 542 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 543 | } |
| 544 | |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 545 | /* ATAPI */ |
| 546 | if (dev->sata_dev.command_set == ATAPI_COMMAND_SET && |
| 547 | task->ata_task.fis.command == ATA_CMD_PACKET) { |
| 548 | sci_atapi_construct(ireq); |
| 549 | return SCI_SUCCESS; |
| 550 | } |
| 551 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 552 | /* non data */ |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 553 | if (task->data_dir == DMA_NONE) { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 554 | scu_stp_raw_request_construct_task_context(ireq); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 555 | return SCI_SUCCESS; |
| 556 | } |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 557 | |
| 558 | /* NCQ */ |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 559 | if (task->ata_task.use_ncq) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 560 | sci_stp_optimized_request_construct(ireq, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 561 | SCU_TASK_TYPE_FPDMAQ_READ, |
| 562 | len, dir); |
| 563 | return SCI_SUCCESS; |
| 564 | } |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 565 | |
| 566 | /* DMA */ |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 567 | if (task->ata_task.dma_xfer) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 568 | sci_stp_optimized_request_construct(ireq, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 569 | SCU_TASK_TYPE_DMA_IN, |
| 570 | len, dir); |
| 571 | return SCI_SUCCESS; |
| 572 | } else /* PIO */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 573 | return sci_stp_pio_request_construct(ireq, copy); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 574 | |
| 575 | return status; |
| 576 | } |
| 577 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 578 | static enum sci_status sci_io_request_construct_basic_ssp(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 579 | { |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 580 | struct sas_task *task = isci_request_access_task(ireq); |
| 581 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 582 | ireq->protocol = SCIC_SSP_PROTOCOL; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 583 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 584 | scu_ssp_io_request_construct_task_context(ireq, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 585 | task->data_dir, |
| 586 | task->total_xfer_len); |
| 587 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 588 | sci_io_request_build_ssp_command_iu(ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 589 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 590 | sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 591 | |
| 592 | return SCI_SUCCESS; |
| 593 | } |
| 594 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 595 | enum sci_status sci_task_request_construct_ssp( |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 596 | struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 597 | { |
| 598 | /* Construct the SSP Task SCU Task Context */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 599 | scu_ssp_task_request_construct_task_context(ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 600 | |
| 601 | /* Fill in the SSP Task IU */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 602 | sci_task_request_build_ssp_task_iu(ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 603 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 604 | sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 605 | |
| 606 | return SCI_SUCCESS; |
| 607 | } |
| 608 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 609 | static enum sci_status sci_io_request_construct_basic_sata(struct isci_request *ireq) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 610 | { |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 611 | enum sci_status status; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 612 | bool copy = false; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 613 | struct sas_task *task = isci_request_access_task(ireq); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 614 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 615 | ireq->protocol = SCIC_STP_PROTOCOL; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 616 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 617 | copy = (task->data_dir == DMA_NONE) ? false : true; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 618 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 619 | status = sci_io_request_construct_sata(ireq, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 620 | task->total_xfer_len, |
| 621 | task->data_dir, |
| 622 | copy); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 623 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 624 | if (status == SCI_SUCCESS) |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 625 | sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 626 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 627 | return status; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 628 | } |
| 629 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 630 | enum sci_status sci_task_request_construct_sata(struct isci_request *ireq) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 631 | { |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 632 | enum sci_status status = SCI_SUCCESS; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 633 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 634 | /* check for management protocols */ |
| 635 | if (ireq->ttype == tmf_task) { |
| 636 | struct isci_tmf *tmf = isci_request_access_tmf(ireq); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 637 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 638 | if (tmf->tmf_code == isci_tmf_sata_srst_high || |
| 639 | tmf->tmf_code == isci_tmf_sata_srst_low) { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 640 | scu_stp_raw_request_construct_task_context(ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 641 | } else { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 642 | dev_err(&ireq->owning_controller->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 643 | "%s: Request 0x%p received un-handled SAT " |
| 644 | "Protocol 0x%x.\n", |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 645 | __func__, ireq, tmf->tmf_code); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 646 | |
| 647 | return SCI_FAILURE; |
| 648 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 649 | } |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 650 | |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 651 | if (status != SCI_SUCCESS) |
| 652 | return status; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 653 | sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 654 | |
| 655 | return status; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | /** |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 659 | * sci_req_tx_bytes - bytes transferred when reply underruns request |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 660 | * @ireq: request that was terminated early |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 661 | */ |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 662 | #define SCU_TASK_CONTEXT_SRAM 0x200000 |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 663 | static u32 sci_req_tx_bytes(struct isci_request *ireq) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 664 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 665 | struct isci_host *ihost = ireq->owning_controller; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 666 | u32 ret_val = 0; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 667 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 668 | if (readl(&ihost->smu_registers->address_modifier) == 0) { |
| 669 | void __iomem *scu_reg_base = ihost->scu_registers; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 670 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 671 | /* get the bytes of data from the Address == BAR1 + 20002Ch + (256*TCi) where |
| 672 | * BAR1 is the scu_registers |
| 673 | * 0x20002C = 0x200000 + 0x2c |
| 674 | * = start of task context SRAM + offset of (type.ssp.data_offset) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 675 | * TCi is the io_tag of struct sci_request |
Dan Williams | 67ea838 | 2011-05-08 11:47:15 -0700 | [diff] [blame] | 676 | */ |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 677 | ret_val = readl(scu_reg_base + |
| 678 | (SCU_TASK_CONTEXT_SRAM + offsetof(struct scu_task_context, type.ssp.data_offset)) + |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 679 | ((sizeof(struct scu_task_context)) * ISCI_TAG_TCI(ireq->io_tag))); |
Dan Williams | 67ea838 | 2011-05-08 11:47:15 -0700 | [diff] [blame] | 680 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 681 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 682 | return ret_val; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 683 | } |
| 684 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 685 | enum sci_status sci_request_start(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 686 | { |
Piotr Sawicki | f4636a7 | 2011-05-10 23:50:32 +0000 | [diff] [blame] | 687 | enum sci_base_request_states state; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 688 | struct scu_task_context *tc = ireq->tc; |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 689 | struct isci_host *ihost = ireq->owning_controller; |
Piotr Sawicki | f4636a7 | 2011-05-10 23:50:32 +0000 | [diff] [blame] | 690 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 691 | state = ireq->sm.current_state_id; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 692 | if (state != SCI_REQ_CONSTRUCTED) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 693 | dev_warn(&ihost->pdev->dev, |
Piotr Sawicki | f4636a7 | 2011-05-10 23:50:32 +0000 | [diff] [blame] | 694 | "%s: SCIC IO Request requested to start while in wrong " |
| 695 | "state %d\n", __func__, state); |
| 696 | return SCI_FAILURE_INVALID_STATE; |
| 697 | } |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 698 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 699 | tc->task_index = ISCI_TAG_TCI(ireq->io_tag); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 700 | |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 701 | switch (tc->protocol_type) { |
| 702 | case SCU_TASK_CONTEXT_PROTOCOL_SMP: |
| 703 | case SCU_TASK_CONTEXT_PROTOCOL_SSP: |
| 704 | /* SSP/SMP Frame */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 705 | tc->type.ssp.tag = ireq->io_tag; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 706 | tc->type.ssp.target_port_transfer_tag = 0xFFFF; |
| 707 | break; |
Piotr Sawicki | f4636a7 | 2011-05-10 23:50:32 +0000 | [diff] [blame] | 708 | |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 709 | case SCU_TASK_CONTEXT_PROTOCOL_STP: |
| 710 | /* STP/SATA Frame |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 711 | * tc->type.stp.ncq_tag = ireq->ncq_tag; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 712 | */ |
| 713 | break; |
Piotr Sawicki | f4636a7 | 2011-05-10 23:50:32 +0000 | [diff] [blame] | 714 | |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 715 | case SCU_TASK_CONTEXT_PROTOCOL_NONE: |
| 716 | /* / @todo When do we set no protocol type? */ |
| 717 | break; |
Piotr Sawicki | f4636a7 | 2011-05-10 23:50:32 +0000 | [diff] [blame] | 718 | |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 719 | default: |
| 720 | /* This should never happen since we build the IO |
| 721 | * requests */ |
| 722 | break; |
Piotr Sawicki | f4636a7 | 2011-05-10 23:50:32 +0000 | [diff] [blame] | 723 | } |
| 724 | |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 725 | /* Add to the post_context the io tag value */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 726 | ireq->post_context |= ISCI_TAG_TCI(ireq->io_tag); |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 727 | |
| 728 | /* Everything is good go ahead and change state */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 729 | sci_change_state(&ireq->sm, SCI_REQ_STARTED); |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 730 | |
| 731 | return SCI_SUCCESS; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 732 | } |
| 733 | |
| 734 | enum sci_status |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 735 | sci_io_request_terminate(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 736 | { |
Dan Williams | f00e6ba | 2011-05-10 02:39:11 -0700 | [diff] [blame] | 737 | enum sci_base_request_states state; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 738 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 739 | state = ireq->sm.current_state_id; |
Dan Williams | f00e6ba | 2011-05-10 02:39:11 -0700 | [diff] [blame] | 740 | |
| 741 | switch (state) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 742 | case SCI_REQ_CONSTRUCTED: |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 743 | ireq->scu_status = SCU_TASK_DONE_TASK_ABORT; |
| 744 | ireq->sci_status = SCI_FAILURE_IO_TERMINATED; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 745 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | f00e6ba | 2011-05-10 02:39:11 -0700 | [diff] [blame] | 746 | return SCI_SUCCESS; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 747 | case SCI_REQ_STARTED: |
| 748 | case SCI_REQ_TASK_WAIT_TC_COMP: |
| 749 | case SCI_REQ_SMP_WAIT_RESP: |
| 750 | case SCI_REQ_SMP_WAIT_TC_COMP: |
| 751 | case SCI_REQ_STP_UDMA_WAIT_TC_COMP: |
| 752 | case SCI_REQ_STP_UDMA_WAIT_D2H: |
| 753 | case SCI_REQ_STP_NON_DATA_WAIT_H2D: |
| 754 | case SCI_REQ_STP_NON_DATA_WAIT_D2H: |
| 755 | case SCI_REQ_STP_PIO_WAIT_H2D: |
| 756 | case SCI_REQ_STP_PIO_WAIT_FRAME: |
| 757 | case SCI_REQ_STP_PIO_DATA_IN: |
| 758 | case SCI_REQ_STP_PIO_DATA_OUT: |
| 759 | case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED: |
| 760 | case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG: |
| 761 | case SCI_REQ_STP_SOFT_RESET_WAIT_D2H: |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 762 | case SCI_REQ_ATAPI_WAIT_H2D: |
| 763 | case SCI_REQ_ATAPI_WAIT_PIO_SETUP: |
| 764 | case SCI_REQ_ATAPI_WAIT_D2H: |
| 765 | case SCI_REQ_ATAPI_WAIT_TC_COMP: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 766 | sci_change_state(&ireq->sm, SCI_REQ_ABORTING); |
Dan Williams | f00e6ba | 2011-05-10 02:39:11 -0700 | [diff] [blame] | 767 | return SCI_SUCCESS; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 768 | case SCI_REQ_TASK_WAIT_TC_RESP: |
Jeff Skirvin | 39ea2c5 | 2011-07-29 17:17:05 -0700 | [diff] [blame] | 769 | /* The task frame was already confirmed to have been |
| 770 | * sent by the SCU HW. Since the state machine is |
| 771 | * now only waiting for the task response itself, |
| 772 | * abort the request and complete it immediately |
| 773 | * and don't wait for the task response. |
| 774 | */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 775 | sci_change_state(&ireq->sm, SCI_REQ_ABORTING); |
| 776 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | f00e6ba | 2011-05-10 02:39:11 -0700 | [diff] [blame] | 777 | return SCI_SUCCESS; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 778 | case SCI_REQ_ABORTING: |
Jeff Skirvin | 39ea2c5 | 2011-07-29 17:17:05 -0700 | [diff] [blame] | 779 | /* If a request has a termination requested twice, return |
| 780 | * a failure indication, since HW confirmation of the first |
| 781 | * abort is still outstanding. |
| 782 | */ |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 783 | case SCI_REQ_COMPLETED: |
Dan Williams | f00e6ba | 2011-05-10 02:39:11 -0700 | [diff] [blame] | 784 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 785 | dev_warn(&ireq->owning_controller->pdev->dev, |
Dan Williams | f00e6ba | 2011-05-10 02:39:11 -0700 | [diff] [blame] | 786 | "%s: SCIC IO Request requested to abort while in wrong " |
| 787 | "state %d\n", |
| 788 | __func__, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 789 | ireq->sm.current_state_id); |
Dan Williams | f00e6ba | 2011-05-10 02:39:11 -0700 | [diff] [blame] | 790 | break; |
| 791 | } |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 792 | |
| 793 | return SCI_FAILURE_INVALID_STATE; |
| 794 | } |
| 795 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 796 | enum sci_status sci_request_complete(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 797 | { |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 798 | enum sci_base_request_states state; |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 799 | struct isci_host *ihost = ireq->owning_controller; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 800 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 801 | state = ireq->sm.current_state_id; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 802 | if (WARN_ONCE(state != SCI_REQ_COMPLETED, |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 803 | "isci: request completion from wrong state (%d)\n", state)) |
| 804 | return SCI_FAILURE_INVALID_STATE; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 805 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 806 | if (ireq->saved_rx_frame_index != SCU_INVALID_FRAME_INDEX) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 807 | sci_controller_release_frame(ihost, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 808 | ireq->saved_rx_frame_index); |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 809 | |
| 810 | /* XXX can we just stop the machine and remove the 'final' state? */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 811 | sci_change_state(&ireq->sm, SCI_REQ_FINAL); |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 812 | return SCI_SUCCESS; |
| 813 | } |
| 814 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 815 | enum sci_status sci_io_request_event_handler(struct isci_request *ireq, |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 816 | u32 event_code) |
| 817 | { |
| 818 | enum sci_base_request_states state; |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 819 | struct isci_host *ihost = ireq->owning_controller; |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 820 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 821 | state = ireq->sm.current_state_id; |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 822 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 823 | if (state != SCI_REQ_STP_PIO_DATA_IN) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 824 | dev_warn(&ihost->pdev->dev, "%s: (%x) in wrong state %d\n", |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 825 | __func__, event_code, state); |
| 826 | |
| 827 | return SCI_FAILURE_INVALID_STATE; |
| 828 | } |
| 829 | |
| 830 | switch (scu_get_event_specifier(event_code)) { |
| 831 | case SCU_TASK_DONE_CRC_ERR << SCU_EVENT_SPECIFIC_CODE_SHIFT: |
| 832 | /* We are waiting for data and the SCU has R_ERR the data frame. |
| 833 | * Go back to waiting for the D2H Register FIS |
| 834 | */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 835 | sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME); |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 836 | return SCI_SUCCESS; |
| 837 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 838 | dev_err(&ihost->pdev->dev, |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 839 | "%s: pio request unexpected event %#x\n", |
| 840 | __func__, event_code); |
| 841 | |
| 842 | /* TODO Should we fail the PIO request when we get an |
| 843 | * unexpected event? |
| 844 | */ |
| 845 | return SCI_FAILURE; |
| 846 | } |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 847 | } |
| 848 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 849 | /* |
| 850 | * This function copies response data for requests returning response data |
| 851 | * instead of sense data. |
| 852 | * @sci_req: This parameter specifies the request object for which to copy |
| 853 | * the response data. |
| 854 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 855 | static void sci_io_request_copy_response(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 856 | { |
| 857 | void *resp_buf; |
| 858 | u32 len; |
| 859 | struct ssp_response_iu *ssp_response; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 860 | struct isci_tmf *isci_tmf = isci_request_access_tmf(ireq); |
| 861 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 862 | ssp_response = &ireq->ssp.rsp; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 863 | |
| 864 | resp_buf = &isci_tmf->resp.resp_iu; |
| 865 | |
| 866 | len = min_t(u32, |
| 867 | SSP_RESP_IU_MAX_SIZE, |
| 868 | be32_to_cpu(ssp_response->response_data_len)); |
| 869 | |
| 870 | memcpy(resp_buf, ssp_response->resp_data, len); |
| 871 | } |
| 872 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 873 | static enum sci_status |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 874 | request_started_state_tc_event(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 875 | u32 completion_code) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 876 | { |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 877 | struct ssp_response_iu *resp_iu; |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 878 | u8 datapres; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 879 | |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 880 | /* TODO: Any SDMA return code of other than 0 is bad decode 0x003C0000 |
| 881 | * to determine SDMA status |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 882 | */ |
| 883 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 884 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 885 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 886 | ireq->sci_status = SCI_SUCCESS; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 887 | break; |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 888 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_EARLY_RESP): { |
| 889 | /* There are times when the SCU hardware will return an early |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 890 | * response because the io request specified more data than is |
| 891 | * returned by the target device (mode pages, inquiry data, |
| 892 | * etc.). We must check the response stats to see if this is |
| 893 | * truly a failed request or a good request that just got |
| 894 | * completed early. |
| 895 | */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 896 | struct ssp_response_iu *resp = &ireq->ssp.rsp; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 897 | ssize_t word_cnt = SSP_RESP_IU_MAX_SIZE / sizeof(u32); |
| 898 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 899 | sci_swab32_cpy(&ireq->ssp.rsp, |
| 900 | &ireq->ssp.rsp, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 901 | word_cnt); |
| 902 | |
| 903 | if (resp->status == 0) { |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 904 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 905 | ireq->sci_status = SCI_SUCCESS_IO_DONE_EARLY; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 906 | } else { |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 907 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 908 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 909 | } |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 910 | break; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 911 | } |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 912 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CHECK_RESPONSE): { |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 913 | ssize_t word_cnt = SSP_RESP_IU_MAX_SIZE / sizeof(u32); |
| 914 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 915 | sci_swab32_cpy(&ireq->ssp.rsp, |
| 916 | &ireq->ssp.rsp, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 917 | word_cnt); |
| 918 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 919 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 920 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 921 | break; |
| 922 | } |
| 923 | |
| 924 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_RESP_LEN_ERR): |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 925 | /* TODO With TASK_DONE_RESP_LEN_ERR is the response frame |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 926 | * guaranteed to be received before this completion status is |
| 927 | * posted? |
| 928 | */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 929 | resp_iu = &ireq->ssp.rsp; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 930 | datapres = resp_iu->datapres; |
| 931 | |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 932 | if (datapres == 1 || datapres == 2) { |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 933 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 934 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
| 935 | } else { |
| 936 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 937 | ireq->sci_status = SCI_SUCCESS; |
| 938 | } |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 939 | break; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 940 | /* only stp device gets suspended. */ |
| 941 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_ACK_NAK_TO): |
| 942 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_PERR): |
| 943 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_NAK_ERR): |
| 944 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_DATA_LEN_ERR): |
| 945 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_ABORT_ERR): |
| 946 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_XR_WD_LEN): |
| 947 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_MAX_PLD_ERR): |
| 948 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_RESP): |
| 949 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_SDBFIS): |
| 950 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_REG_ERR): |
| 951 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SDB_ERR): |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 952 | if (ireq->protocol == SCIC_STP_PROTOCOL) { |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 953 | ireq->scu_status = SCU_GET_COMPLETION_TL_STATUS(completion_code) >> |
| 954 | SCU_COMPLETION_TL_STATUS_SHIFT; |
| 955 | ireq->sci_status = SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 956 | } else { |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 957 | ireq->scu_status = SCU_GET_COMPLETION_TL_STATUS(completion_code) >> |
| 958 | SCU_COMPLETION_TL_STATUS_SHIFT; |
| 959 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 960 | } |
| 961 | break; |
| 962 | |
| 963 | /* both stp/ssp device gets suspended */ |
| 964 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LF_ERR): |
| 965 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_WRONG_DESTINATION): |
| 966 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_1): |
| 967 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_2): |
| 968 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_3): |
| 969 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_BAD_DESTINATION): |
| 970 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_ZONE_VIOLATION): |
| 971 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_STP_RESOURCES_BUSY): |
| 972 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_PROTOCOL_NOT_SUPPORTED): |
| 973 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_OPEN_REJECT_CONNECTION_RATE_NOT_SUPPORTED): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 974 | ireq->scu_status = SCU_GET_COMPLETION_TL_STATUS(completion_code) >> |
| 975 | SCU_COMPLETION_TL_STATUS_SHIFT; |
| 976 | ireq->sci_status = SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 977 | break; |
| 978 | |
| 979 | /* neither ssp nor stp gets suspended. */ |
| 980 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_NAK_CMD_ERR): |
| 981 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_XR): |
| 982 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_XR_IU_LEN_ERR): |
| 983 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SDMA_ERR): |
| 984 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_OFFSET_ERR): |
| 985 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_EXCESS_DATA): |
| 986 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_RESP_TO_ERR): |
| 987 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_UFI_ERR): |
| 988 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_FRM_TYPE_ERR): |
| 989 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_LL_RX_ERR): |
| 990 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_DATA): |
| 991 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_OPEN_FAIL): |
| 992 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_VIIT_ENTRY_NV): |
| 993 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_IIT_ENTRY_NV): |
| 994 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_RNCNV_OUTBOUND): |
| 995 | default: |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 996 | ireq->scu_status = SCU_GET_COMPLETION_TL_STATUS(completion_code) >> |
| 997 | SCU_COMPLETION_TL_STATUS_SHIFT; |
| 998 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 999 | break; |
| 1000 | } |
| 1001 | |
| 1002 | /* |
| 1003 | * TODO: This is probably wrong for ACK/NAK timeout conditions |
| 1004 | */ |
| 1005 | |
| 1006 | /* In all cases we will treat this as the completion of the IO req. */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1007 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 1008 | return SCI_SUCCESS; |
| 1009 | } |
| 1010 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1011 | static enum sci_status |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1012 | request_aborting_state_tc_event(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1013 | u32 completion_code) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 1014 | { |
| 1015 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 1016 | case (SCU_TASK_DONE_GOOD << SCU_COMPLETION_TL_STATUS_SHIFT): |
| 1017 | case (SCU_TASK_DONE_TASK_ABORT << SCU_COMPLETION_TL_STATUS_SHIFT): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1018 | ireq->scu_status = SCU_TASK_DONE_TASK_ABORT; |
| 1019 | ireq->sci_status = SCI_FAILURE_IO_TERMINATED; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1020 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 1021 | break; |
| 1022 | |
| 1023 | default: |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1024 | /* Unless we get some strange error wait for the task abort to complete |
| 1025 | * TODO: Should there be a state change for this completion? |
| 1026 | */ |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 1027 | break; |
| 1028 | } |
| 1029 | |
| 1030 | return SCI_SUCCESS; |
| 1031 | } |
| 1032 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1033 | static enum sci_status ssp_task_request_await_tc_event(struct isci_request *ireq, |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1034 | u32 completion_code) |
Dan Williams | f139303 | 2011-05-10 02:28:47 -0700 | [diff] [blame] | 1035 | { |
| 1036 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 1037 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1038 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 1039 | ireq->sci_status = SCI_SUCCESS; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1040 | sci_change_state(&ireq->sm, SCI_REQ_TASK_WAIT_TC_RESP); |
Dan Williams | f139303 | 2011-05-10 02:28:47 -0700 | [diff] [blame] | 1041 | break; |
Dan Williams | f139303 | 2011-05-10 02:28:47 -0700 | [diff] [blame] | 1042 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_ACK_NAK_TO): |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1043 | /* Currently, the decision is to simply allow the task request |
| 1044 | * to timeout if the task IU wasn't received successfully. |
| 1045 | * There is a potential for receiving multiple task responses if |
| 1046 | * we decide to send the task IU again. |
| 1047 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1048 | dev_warn(&ireq->owning_controller->pdev->dev, |
Dan Williams | f139303 | 2011-05-10 02:28:47 -0700 | [diff] [blame] | 1049 | "%s: TaskRequest:0x%p CompletionCode:%x - " |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1050 | "ACK/NAK timeout\n", __func__, ireq, |
Dan Williams | f139303 | 2011-05-10 02:28:47 -0700 | [diff] [blame] | 1051 | completion_code); |
| 1052 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1053 | sci_change_state(&ireq->sm, SCI_REQ_TASK_WAIT_TC_RESP); |
Dan Williams | f139303 | 2011-05-10 02:28:47 -0700 | [diff] [blame] | 1054 | break; |
Dan Williams | f139303 | 2011-05-10 02:28:47 -0700 | [diff] [blame] | 1055 | default: |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1056 | /* |
| 1057 | * All other completion status cause the IO to be complete. |
| 1058 | * If a NAK was received, then it is up to the user to retry |
| 1059 | * the request. |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1060 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1061 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 1062 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1063 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | f139303 | 2011-05-10 02:28:47 -0700 | [diff] [blame] | 1064 | break; |
| 1065 | } |
| 1066 | |
| 1067 | return SCI_SUCCESS; |
| 1068 | } |
| 1069 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1070 | static enum sci_status |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1071 | smp_request_await_response_tc_event(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1072 | u32 completion_code) |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1073 | { |
| 1074 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 1075 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1076 | /* In the AWAIT RESPONSE state, any TC completion is |
| 1077 | * unexpected. but if the TC has success status, we |
| 1078 | * complete the IO anyway. |
| 1079 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1080 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 1081 | ireq->sci_status = SCI_SUCCESS; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1082 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1083 | break; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1084 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_RESP_TO_ERR): |
| 1085 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_UFI_ERR): |
| 1086 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_FRM_TYPE_ERR): |
| 1087 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_SMP_LL_RX_ERR): |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1088 | /* These status has been seen in a specific LSI |
| 1089 | * expander, which sometimes is not able to send smp |
| 1090 | * response within 2 ms. This causes our hardware break |
| 1091 | * the connection and set TC completion with one of |
| 1092 | * these SMP_XXX_XX_ERR status. For these type of error, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1093 | * we ask ihost user to retry the request. |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1094 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1095 | ireq->scu_status = SCU_TASK_DONE_SMP_RESP_TO_ERR; |
| 1096 | ireq->sci_status = SCI_FAILURE_RETRY_REQUIRED; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1097 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1098 | break; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1099 | default: |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1100 | /* All other completion status cause the IO to be complete. If a NAK |
| 1101 | * was received, then it is up to the user to retry the request |
| 1102 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1103 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 1104 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1105 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1106 | break; |
| 1107 | } |
| 1108 | |
| 1109 | return SCI_SUCCESS; |
| 1110 | } |
| 1111 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1112 | static enum sci_status |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1113 | smp_request_await_tc_event(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1114 | u32 completion_code) |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1115 | { |
| 1116 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 1117 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1118 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 1119 | ireq->sci_status = SCI_SUCCESS; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1120 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1121 | break; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1122 | default: |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1123 | /* All other completion status cause the IO to be |
| 1124 | * complete. If a NAK was received, then it is up to |
| 1125 | * the user to retry the request. |
| 1126 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1127 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 1128 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1129 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 1130 | break; |
| 1131 | } |
| 1132 | |
| 1133 | return SCI_SUCCESS; |
| 1134 | } |
| 1135 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1136 | static struct scu_sgl_element *pio_sgl_next(struct isci_stp_request *stp_req) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1137 | { |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1138 | struct scu_sgl_element *sgl; |
| 1139 | struct scu_sgl_element_pair *sgl_pair; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1140 | struct isci_request *ireq = to_ireq(stp_req); |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1141 | struct isci_stp_pio_sgl *pio_sgl = &stp_req->sgl; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1142 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1143 | sgl_pair = to_sgl_element_pair(ireq, pio_sgl->index); |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1144 | if (!sgl_pair) |
| 1145 | sgl = NULL; |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1146 | else if (pio_sgl->set == SCU_SGL_ELEMENT_PAIR_A) { |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1147 | if (sgl_pair->B.address_lower == 0 && |
| 1148 | sgl_pair->B.address_upper == 0) { |
| 1149 | sgl = NULL; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1150 | } else { |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1151 | pio_sgl->set = SCU_SGL_ELEMENT_PAIR_B; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1152 | sgl = &sgl_pair->B; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1153 | } |
| 1154 | } else { |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1155 | if (sgl_pair->next_pair_lower == 0 && |
| 1156 | sgl_pair->next_pair_upper == 0) { |
| 1157 | sgl = NULL; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1158 | } else { |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1159 | pio_sgl->index++; |
| 1160 | pio_sgl->set = SCU_SGL_ELEMENT_PAIR_A; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1161 | sgl_pair = to_sgl_element_pair(ireq, pio_sgl->index); |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1162 | sgl = &sgl_pair->A; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1163 | } |
| 1164 | } |
| 1165 | |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1166 | return sgl; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1167 | } |
| 1168 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1169 | static enum sci_status |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1170 | stp_request_non_data_await_h2d_tc_event(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1171 | u32 completion_code) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1172 | { |
| 1173 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 1174 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1175 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 1176 | ireq->sci_status = SCI_SUCCESS; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1177 | sci_change_state(&ireq->sm, SCI_REQ_STP_NON_DATA_WAIT_D2H); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1178 | break; |
| 1179 | |
| 1180 | default: |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1181 | /* All other completion status cause the IO to be |
| 1182 | * complete. If a NAK was received, then it is up to |
| 1183 | * the user to retry the request. |
| 1184 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1185 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 1186 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1187 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1188 | break; |
| 1189 | } |
| 1190 | |
| 1191 | return SCI_SUCCESS; |
| 1192 | } |
| 1193 | |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1194 | #define SCU_MAX_FRAME_BUFFER_SIZE 0x400 /* 1K is the maximum SCU frame data payload */ |
| 1195 | |
| 1196 | /* transmit DATA_FIS from (current sgl + offset) for input |
| 1197 | * parameter length. current sgl and offset is alreay stored in the IO request |
| 1198 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1199 | static enum sci_status sci_stp_request_pio_data_out_trasmit_data_frame( |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1200 | struct isci_request *ireq, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1201 | u32 length) |
| 1202 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1203 | struct isci_stp_request *stp_req = &ireq->stp.req; |
| 1204 | struct scu_task_context *task_context = ireq->tc; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1205 | struct scu_sgl_element_pair *sgl_pair; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1206 | struct scu_sgl_element *current_sgl; |
| 1207 | |
| 1208 | /* Recycle the TC and reconstruct it for sending out DATA FIS containing |
| 1209 | * for the data from current_sgl+offset for the input length |
| 1210 | */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1211 | sgl_pair = to_sgl_element_pair(ireq, stp_req->sgl.index); |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1212 | if (stp_req->sgl.set == SCU_SGL_ELEMENT_PAIR_A) |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1213 | current_sgl = &sgl_pair->A; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1214 | else |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1215 | current_sgl = &sgl_pair->B; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1216 | |
| 1217 | /* update the TC */ |
| 1218 | task_context->command_iu_upper = current_sgl->address_upper; |
| 1219 | task_context->command_iu_lower = current_sgl->address_lower; |
| 1220 | task_context->transfer_length_bytes = length; |
| 1221 | task_context->type.stp.fis_type = FIS_DATA; |
| 1222 | |
| 1223 | /* send the new TC out. */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1224 | return sci_controller_continue_io(ireq); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1225 | } |
| 1226 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1227 | static enum sci_status sci_stp_request_pio_data_out_transmit_data(struct isci_request *ireq) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1228 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1229 | struct isci_stp_request *stp_req = &ireq->stp.req; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1230 | struct scu_sgl_element_pair *sgl_pair; |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 1231 | enum sci_status status = SCI_SUCCESS; |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1232 | struct scu_sgl_element *sgl; |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1233 | u32 offset; |
| 1234 | u32 len = 0; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1235 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1236 | offset = stp_req->sgl.offset; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1237 | sgl_pair = to_sgl_element_pair(ireq, stp_req->sgl.index); |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1238 | if (WARN_ONCE(!sgl_pair, "%s: null sgl element", __func__)) |
| 1239 | return SCI_FAILURE; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1240 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1241 | if (stp_req->sgl.set == SCU_SGL_ELEMENT_PAIR_A) { |
| 1242 | sgl = &sgl_pair->A; |
| 1243 | len = sgl_pair->A.length - offset; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1244 | } else { |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1245 | sgl = &sgl_pair->B; |
| 1246 | len = sgl_pair->B.length - offset; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1247 | } |
| 1248 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1249 | if (stp_req->pio_len == 0) |
| 1250 | return SCI_SUCCESS; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1251 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1252 | if (stp_req->pio_len >= len) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1253 | status = sci_stp_request_pio_data_out_trasmit_data_frame(ireq, len); |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1254 | if (status != SCI_SUCCESS) |
| 1255 | return status; |
| 1256 | stp_req->pio_len -= len; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1257 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1258 | /* update the current sgl, offset and save for future */ |
| 1259 | sgl = pio_sgl_next(stp_req); |
| 1260 | offset = 0; |
| 1261 | } else if (stp_req->pio_len < len) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1262 | sci_stp_request_pio_data_out_trasmit_data_frame(ireq, stp_req->pio_len); |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1263 | |
| 1264 | /* Sgl offset will be adjusted and saved for future */ |
| 1265 | offset += stp_req->pio_len; |
| 1266 | sgl->address_lower += stp_req->pio_len; |
| 1267 | stp_req->pio_len = 0; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1268 | } |
| 1269 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1270 | stp_req->sgl.offset = offset; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1271 | |
| 1272 | return status; |
| 1273 | } |
| 1274 | |
| 1275 | /** |
| 1276 | * |
| 1277 | * @stp_request: The request that is used for the SGL processing. |
| 1278 | * @data_buffer: The buffer of data to be copied. |
| 1279 | * @length: The length of the data transfer. |
| 1280 | * |
| 1281 | * Copy the data from the buffer for the length specified to the IO reqeust SGL |
| 1282 | * specified data region. enum sci_status |
| 1283 | */ |
| 1284 | static enum sci_status |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1285 | sci_stp_request_pio_data_in_copy_data_buffer(struct isci_stp_request *stp_req, |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 1286 | u8 *data_buf, u32 len) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1287 | { |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1288 | struct isci_request *ireq; |
| 1289 | u8 *src_addr; |
| 1290 | int copy_len; |
| 1291 | struct sas_task *task; |
| 1292 | struct scatterlist *sg; |
| 1293 | void *kaddr; |
| 1294 | int total_len = len; |
| 1295 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1296 | ireq = to_ireq(stp_req); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1297 | task = isci_request_access_task(ireq); |
| 1298 | src_addr = data_buf; |
| 1299 | |
| 1300 | if (task->num_scatter > 0) { |
| 1301 | sg = task->scatter; |
| 1302 | |
| 1303 | while (total_len > 0) { |
| 1304 | struct page *page = sg_page(sg); |
| 1305 | |
| 1306 | copy_len = min_t(int, total_len, sg_dma_len(sg)); |
| 1307 | kaddr = kmap_atomic(page, KM_IRQ0); |
| 1308 | memcpy(kaddr + sg->offset, src_addr, copy_len); |
| 1309 | kunmap_atomic(kaddr, KM_IRQ0); |
| 1310 | total_len -= copy_len; |
| 1311 | src_addr += copy_len; |
| 1312 | sg = sg_next(sg); |
| 1313 | } |
| 1314 | } else { |
| 1315 | BUG_ON(task->total_xfer_len < total_len); |
| 1316 | memcpy(task->scatter, src_addr, total_len); |
| 1317 | } |
| 1318 | |
| 1319 | return SCI_SUCCESS; |
| 1320 | } |
| 1321 | |
| 1322 | /** |
| 1323 | * |
| 1324 | * @sci_req: The PIO DATA IN request that is to receive the data. |
| 1325 | * @data_buffer: The buffer to copy from. |
| 1326 | * |
| 1327 | * Copy the data buffer to the io request data region. enum sci_status |
| 1328 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1329 | static enum sci_status sci_stp_request_pio_data_in_copy_data( |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1330 | struct isci_stp_request *stp_req, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1331 | u8 *data_buffer) |
| 1332 | { |
| 1333 | enum sci_status status; |
| 1334 | |
| 1335 | /* |
| 1336 | * If there is less than 1K remaining in the transfer request |
| 1337 | * copy just the data for the transfer */ |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1338 | if (stp_req->pio_len < SCU_MAX_FRAME_BUFFER_SIZE) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1339 | status = sci_stp_request_pio_data_in_copy_data_buffer( |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1340 | stp_req, data_buffer, stp_req->pio_len); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1341 | |
| 1342 | if (status == SCI_SUCCESS) |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1343 | stp_req->pio_len = 0; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1344 | } else { |
| 1345 | /* We are transfering the whole frame so copy */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1346 | status = sci_stp_request_pio_data_in_copy_data_buffer( |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1347 | stp_req, data_buffer, SCU_MAX_FRAME_BUFFER_SIZE); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1348 | |
| 1349 | if (status == SCI_SUCCESS) |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1350 | stp_req->pio_len -= SCU_MAX_FRAME_BUFFER_SIZE; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1351 | } |
| 1352 | |
| 1353 | return status; |
| 1354 | } |
| 1355 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1356 | static enum sci_status |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1357 | stp_request_pio_await_h2d_completion_tc_event(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1358 | u32 completion_code) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1359 | { |
| 1360 | enum sci_status status = SCI_SUCCESS; |
| 1361 | |
| 1362 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 1363 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1364 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 1365 | ireq->sci_status = SCI_SUCCESS; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1366 | sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1367 | break; |
| 1368 | |
| 1369 | default: |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1370 | /* All other completion status cause the IO to be |
| 1371 | * complete. If a NAK was received, then it is up to |
| 1372 | * the user to retry the request. |
| 1373 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1374 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 1375 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1376 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1377 | break; |
| 1378 | } |
| 1379 | |
| 1380 | return status; |
| 1381 | } |
| 1382 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1383 | static enum sci_status |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1384 | pio_data_out_tx_done_tc_event(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1385 | u32 completion_code) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1386 | { |
| 1387 | enum sci_status status = SCI_SUCCESS; |
| 1388 | bool all_frames_transferred = false; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1389 | struct isci_stp_request *stp_req = &ireq->stp.req; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1390 | |
| 1391 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 1392 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
| 1393 | /* Transmit data */ |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1394 | if (stp_req->pio_len != 0) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1395 | status = sci_stp_request_pio_data_out_transmit_data(ireq); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1396 | if (status == SCI_SUCCESS) { |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1397 | if (stp_req->pio_len == 0) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1398 | all_frames_transferred = true; |
| 1399 | } |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1400 | } else if (stp_req->pio_len == 0) { |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1401 | /* |
| 1402 | * this will happen if the all data is written at the |
| 1403 | * first time after the pio setup fis is received |
| 1404 | */ |
| 1405 | all_frames_transferred = true; |
| 1406 | } |
| 1407 | |
| 1408 | /* all data transferred. */ |
| 1409 | if (all_frames_transferred) { |
| 1410 | /* |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1411 | * Change the state to SCI_REQ_STP_PIO_DATA_IN |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1412 | * and wait for PIO_SETUP fis / or D2H REg fis. */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1413 | sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1414 | } |
| 1415 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1416 | |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1417 | default: |
| 1418 | /* |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1419 | * All other completion status cause the IO to be complete. |
| 1420 | * If a NAK was received, then it is up to the user to retry |
| 1421 | * the request. |
| 1422 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1423 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 1424 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1425 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1426 | break; |
| 1427 | } |
| 1428 | |
| 1429 | return status; |
| 1430 | } |
| 1431 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1432 | static enum sci_status sci_stp_request_udma_general_frame_handler(struct isci_request *ireq, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1433 | u32 frame_index) |
| 1434 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1435 | struct isci_host *ihost = ireq->owning_controller; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1436 | struct dev_to_host_fis *frame_header; |
| 1437 | enum sci_status status; |
| 1438 | u32 *frame_buffer; |
| 1439 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1440 | status = sci_unsolicited_frame_control_get_header(&ihost->uf_control, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1441 | frame_index, |
| 1442 | (void **)&frame_header); |
| 1443 | |
| 1444 | if ((status == SCI_SUCCESS) && |
| 1445 | (frame_header->fis_type == FIS_REGD2H)) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1446 | sci_unsolicited_frame_control_get_buffer(&ihost->uf_control, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1447 | frame_index, |
| 1448 | (void **)&frame_buffer); |
| 1449 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1450 | sci_controller_copy_sata_response(&ireq->stp.rsp, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1451 | frame_header, |
| 1452 | frame_buffer); |
| 1453 | } |
| 1454 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1455 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 1456 | |
| 1457 | return status; |
| 1458 | } |
| 1459 | |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 1460 | static enum sci_status process_unsolicited_fis(struct isci_request *ireq, |
| 1461 | u32 frame_index) |
| 1462 | { |
| 1463 | struct isci_host *ihost = ireq->owning_controller; |
| 1464 | enum sci_status status; |
| 1465 | struct dev_to_host_fis *frame_header; |
| 1466 | u32 *frame_buffer; |
| 1467 | |
| 1468 | status = sci_unsolicited_frame_control_get_header(&ihost->uf_control, |
| 1469 | frame_index, |
| 1470 | (void **)&frame_header); |
| 1471 | |
| 1472 | if (status != SCI_SUCCESS) |
| 1473 | return status; |
| 1474 | |
| 1475 | if (frame_header->fis_type != FIS_REGD2H) { |
| 1476 | dev_err(&ireq->isci_host->pdev->dev, |
| 1477 | "%s ERROR: invalid fis type 0x%X\n", |
| 1478 | __func__, frame_header->fis_type); |
| 1479 | return SCI_FAILURE; |
| 1480 | } |
| 1481 | |
| 1482 | sci_unsolicited_frame_control_get_buffer(&ihost->uf_control, |
| 1483 | frame_index, |
| 1484 | (void **)&frame_buffer); |
| 1485 | |
| 1486 | sci_controller_copy_sata_response(&ireq->stp.rsp, |
| 1487 | (u32 *)frame_header, |
| 1488 | frame_buffer); |
| 1489 | |
| 1490 | /* Frame has been decoded return it to the controller */ |
| 1491 | sci_controller_release_frame(ihost, frame_index); |
| 1492 | |
| 1493 | return status; |
| 1494 | } |
| 1495 | |
| 1496 | static enum sci_status atapi_d2h_reg_frame_handler(struct isci_request *ireq, |
| 1497 | u32 frame_index) |
| 1498 | { |
| 1499 | struct sas_task *task = isci_request_access_task(ireq); |
| 1500 | enum sci_status status; |
| 1501 | |
| 1502 | status = process_unsolicited_fis(ireq, frame_index); |
| 1503 | |
| 1504 | if (status == SCI_SUCCESS) { |
| 1505 | if (ireq->stp.rsp.status & ATA_ERR) |
| 1506 | status = SCI_IO_FAILURE_RESPONSE_VALID; |
| 1507 | } else { |
| 1508 | status = SCI_IO_FAILURE_RESPONSE_VALID; |
| 1509 | } |
| 1510 | |
| 1511 | if (status != SCI_SUCCESS) { |
| 1512 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 1513 | ireq->sci_status = status; |
| 1514 | } else { |
| 1515 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 1516 | ireq->sci_status = SCI_SUCCESS; |
| 1517 | } |
| 1518 | |
| 1519 | /* the d2h ufi is the end of non-data commands */ |
| 1520 | if (task->data_dir == DMA_NONE) |
| 1521 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
| 1522 | |
| 1523 | return status; |
| 1524 | } |
| 1525 | |
| 1526 | static void scu_atapi_reconstruct_raw_frame_task_context(struct isci_request *ireq) |
| 1527 | { |
| 1528 | struct ata_device *dev = sas_to_ata_dev(ireq->target_device->domain_dev); |
| 1529 | void *atapi_cdb = ireq->ttype_ptr.io_task_ptr->ata_task.atapi_packet; |
| 1530 | struct scu_task_context *task_context = ireq->tc; |
| 1531 | |
| 1532 | /* fill in the SCU Task Context for a DATA fis containing CDB in Raw Frame |
| 1533 | * type. The TC for previous Packet fis was already there, we only need to |
| 1534 | * change the H2D fis content. |
| 1535 | */ |
| 1536 | memset(&ireq->stp.cmd, 0, sizeof(struct host_to_dev_fis)); |
| 1537 | memcpy(((u8 *)&ireq->stp.cmd + sizeof(u32)), atapi_cdb, ATAPI_CDB_LEN); |
| 1538 | memset(&(task_context->type.stp), 0, sizeof(struct stp_task_context)); |
| 1539 | task_context->type.stp.fis_type = FIS_DATA; |
| 1540 | task_context->transfer_length_bytes = dev->cdb_len; |
| 1541 | } |
| 1542 | |
| 1543 | static void scu_atapi_construct_task_context(struct isci_request *ireq) |
| 1544 | { |
| 1545 | struct ata_device *dev = sas_to_ata_dev(ireq->target_device->domain_dev); |
| 1546 | struct sas_task *task = isci_request_access_task(ireq); |
| 1547 | struct scu_task_context *task_context = ireq->tc; |
| 1548 | int cdb_len = dev->cdb_len; |
| 1549 | |
| 1550 | /* reference: SSTL 1.13.4.2 |
| 1551 | * task_type, sata_direction |
| 1552 | */ |
| 1553 | if (task->data_dir == DMA_TO_DEVICE) { |
| 1554 | task_context->task_type = SCU_TASK_TYPE_PACKET_DMA_OUT; |
| 1555 | task_context->sata_direction = 0; |
| 1556 | } else { |
| 1557 | /* todo: for NO_DATA command, we need to send out raw frame. */ |
| 1558 | task_context->task_type = SCU_TASK_TYPE_PACKET_DMA_IN; |
| 1559 | task_context->sata_direction = 1; |
| 1560 | } |
| 1561 | |
| 1562 | memset(&task_context->type.stp, 0, sizeof(task_context->type.stp)); |
| 1563 | task_context->type.stp.fis_type = FIS_DATA; |
| 1564 | |
| 1565 | memset(&ireq->stp.cmd, 0, sizeof(ireq->stp.cmd)); |
| 1566 | memcpy(&ireq->stp.cmd.lbal, task->ata_task.atapi_packet, cdb_len); |
| 1567 | task_context->ssp_command_iu_length = cdb_len / sizeof(u32); |
| 1568 | |
| 1569 | /* task phase is set to TX_CMD */ |
| 1570 | task_context->task_phase = 0x1; |
| 1571 | |
| 1572 | /* retry counter */ |
| 1573 | task_context->stp_retry_count = 0; |
| 1574 | |
| 1575 | /* data transfer size. */ |
| 1576 | task_context->transfer_length_bytes = task->total_xfer_len; |
| 1577 | |
| 1578 | /* setup sgl */ |
| 1579 | sci_request_build_sgl(ireq); |
| 1580 | } |
| 1581 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1582 | enum sci_status |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1583 | sci_io_request_frame_handler(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1584 | u32 frame_index) |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1585 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1586 | struct isci_host *ihost = ireq->owning_controller; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1587 | struct isci_stp_request *stp_req = &ireq->stp.req; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1588 | enum sci_base_request_states state; |
| 1589 | enum sci_status status; |
| 1590 | ssize_t word_cnt; |
| 1591 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1592 | state = ireq->sm.current_state_id; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1593 | switch (state) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1594 | case SCI_REQ_STARTED: { |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1595 | struct ssp_frame_hdr ssp_hdr; |
| 1596 | void *frame_header; |
| 1597 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1598 | sci_unsolicited_frame_control_get_header(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1599 | frame_index, |
| 1600 | &frame_header); |
| 1601 | |
| 1602 | word_cnt = sizeof(struct ssp_frame_hdr) / sizeof(u32); |
| 1603 | sci_swab32_cpy(&ssp_hdr, frame_header, word_cnt); |
| 1604 | |
| 1605 | if (ssp_hdr.frame_type == SSP_RESPONSE) { |
| 1606 | struct ssp_response_iu *resp_iu; |
| 1607 | ssize_t word_cnt = SSP_RESP_IU_MAX_SIZE / sizeof(u32); |
| 1608 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1609 | sci_unsolicited_frame_control_get_buffer(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1610 | frame_index, |
| 1611 | (void **)&resp_iu); |
| 1612 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1613 | sci_swab32_cpy(&ireq->ssp.rsp, resp_iu, word_cnt); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1614 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1615 | resp_iu = &ireq->ssp.rsp; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1616 | |
| 1617 | if (resp_iu->datapres == 0x01 || |
| 1618 | resp_iu->datapres == 0x02) { |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1619 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 1620 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
| 1621 | } else { |
| 1622 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 1623 | ireq->sci_status = SCI_SUCCESS; |
| 1624 | } |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1625 | } else { |
| 1626 | /* not a response frame, why did it get forwarded? */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1627 | dev_err(&ihost->pdev->dev, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1628 | "%s: SCIC IO Request 0x%p received unexpected " |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1629 | "frame %d type 0x%02x\n", __func__, ireq, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1630 | frame_index, ssp_hdr.frame_type); |
| 1631 | } |
| 1632 | |
| 1633 | /* |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1634 | * In any case we are done with this frame buffer return it to |
| 1635 | * the controller |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1636 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1637 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1638 | |
| 1639 | return SCI_SUCCESS; |
| 1640 | } |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1641 | |
| 1642 | case SCI_REQ_TASK_WAIT_TC_RESP: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1643 | sci_io_request_copy_response(ireq); |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1644 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1645 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1646 | return SCI_SUCCESS; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1647 | |
| 1648 | case SCI_REQ_SMP_WAIT_RESP: { |
Dan Williams | 54b5e3a | 2011-09-28 18:35:27 -0700 | [diff] [blame] | 1649 | struct sas_task *task = isci_request_access_task(ireq); |
| 1650 | struct scatterlist *sg = &task->smp_task.smp_resp; |
| 1651 | void *frame_header, *kaddr; |
| 1652 | u8 *rsp; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1653 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1654 | sci_unsolicited_frame_control_get_header(&ihost->uf_control, |
Dan Williams | 54b5e3a | 2011-09-28 18:35:27 -0700 | [diff] [blame] | 1655 | frame_index, |
| 1656 | &frame_header); |
| 1657 | kaddr = kmap_atomic(sg_page(sg), KM_IRQ0); |
| 1658 | rsp = kaddr + sg->offset; |
| 1659 | sci_swab32_cpy(rsp, frame_header, 1); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1660 | |
Dan Williams | 54b5e3a | 2011-09-28 18:35:27 -0700 | [diff] [blame] | 1661 | if (rsp[0] == SMP_RESPONSE) { |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1662 | void *smp_resp; |
| 1663 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1664 | sci_unsolicited_frame_control_get_buffer(&ihost->uf_control, |
Dan Williams | 54b5e3a | 2011-09-28 18:35:27 -0700 | [diff] [blame] | 1665 | frame_index, |
| 1666 | &smp_resp); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1667 | |
Dan Williams | 54b5e3a | 2011-09-28 18:35:27 -0700 | [diff] [blame] | 1668 | word_cnt = (sg->length/4)-1; |
| 1669 | if (word_cnt > 0) |
| 1670 | word_cnt = min_t(unsigned int, word_cnt, |
| 1671 | SCU_UNSOLICITED_FRAME_BUFFER_SIZE/4); |
| 1672 | sci_swab32_cpy(rsp + 4, smp_resp, word_cnt); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1673 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1674 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 1675 | ireq->sci_status = SCI_SUCCESS; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1676 | sci_change_state(&ireq->sm, SCI_REQ_SMP_WAIT_TC_COMP); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1677 | } else { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1678 | /* |
| 1679 | * This was not a response frame why did it get |
| 1680 | * forwarded? |
| 1681 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1682 | dev_err(&ihost->pdev->dev, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1683 | "%s: SCIC SMP Request 0x%p received unexpected " |
| 1684 | "frame %d type 0x%02x\n", |
| 1685 | __func__, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1686 | ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1687 | frame_index, |
Dan Williams | 54b5e3a | 2011-09-28 18:35:27 -0700 | [diff] [blame] | 1688 | rsp[0]); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1689 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1690 | ireq->scu_status = SCU_TASK_DONE_SMP_FRM_TYPE_ERR; |
| 1691 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1692 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1693 | } |
Dan Williams | 54b5e3a | 2011-09-28 18:35:27 -0700 | [diff] [blame] | 1694 | kunmap_atomic(kaddr, KM_IRQ0); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1695 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1696 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1697 | |
| 1698 | return SCI_SUCCESS; |
| 1699 | } |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1700 | |
| 1701 | case SCI_REQ_STP_UDMA_WAIT_TC_COMP: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1702 | return sci_stp_request_udma_general_frame_handler(ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1703 | frame_index); |
| 1704 | |
| 1705 | case SCI_REQ_STP_UDMA_WAIT_D2H: |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1706 | /* Use the general frame handler to copy the resposne data */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1707 | status = sci_stp_request_udma_general_frame_handler(ireq, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1708 | |
| 1709 | if (status != SCI_SUCCESS) |
| 1710 | return status; |
| 1711 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1712 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 1713 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
| 1714 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1715 | return SCI_SUCCESS; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1716 | |
| 1717 | case SCI_REQ_STP_NON_DATA_WAIT_D2H: { |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1718 | struct dev_to_host_fis *frame_header; |
| 1719 | u32 *frame_buffer; |
| 1720 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1721 | status = sci_unsolicited_frame_control_get_header(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1722 | frame_index, |
| 1723 | (void **)&frame_header); |
| 1724 | |
| 1725 | if (status != SCI_SUCCESS) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1726 | dev_err(&ihost->pdev->dev, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1727 | "%s: SCIC IO Request 0x%p could not get frame " |
| 1728 | "header for frame index %d, status %x\n", |
| 1729 | __func__, |
| 1730 | stp_req, |
| 1731 | frame_index, |
| 1732 | status); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1733 | |
| 1734 | return status; |
| 1735 | } |
| 1736 | |
| 1737 | switch (frame_header->fis_type) { |
| 1738 | case FIS_REGD2H: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1739 | sci_unsolicited_frame_control_get_buffer(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1740 | frame_index, |
| 1741 | (void **)&frame_buffer); |
| 1742 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1743 | sci_controller_copy_sata_response(&ireq->stp.rsp, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1744 | frame_header, |
| 1745 | frame_buffer); |
| 1746 | |
| 1747 | /* The command has completed with error */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1748 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 1749 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1750 | break; |
| 1751 | |
| 1752 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1753 | dev_warn(&ihost->pdev->dev, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1754 | "%s: IO Request:0x%p Frame Id:%d protocol " |
| 1755 | "violation occurred\n", __func__, stp_req, |
| 1756 | frame_index); |
| 1757 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1758 | ireq->scu_status = SCU_TASK_DONE_UNEXP_FIS; |
| 1759 | ireq->sci_status = SCI_FAILURE_PROTOCOL_VIOLATION; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1760 | break; |
| 1761 | } |
| 1762 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1763 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1764 | |
| 1765 | /* Frame has been decoded return it to the controller */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1766 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1767 | |
| 1768 | return status; |
| 1769 | } |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1770 | |
| 1771 | case SCI_REQ_STP_PIO_WAIT_FRAME: { |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1772 | struct sas_task *task = isci_request_access_task(ireq); |
| 1773 | struct dev_to_host_fis *frame_header; |
| 1774 | u32 *frame_buffer; |
| 1775 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1776 | status = sci_unsolicited_frame_control_get_header(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1777 | frame_index, |
| 1778 | (void **)&frame_header); |
| 1779 | |
| 1780 | if (status != SCI_SUCCESS) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1781 | dev_err(&ihost->pdev->dev, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1782 | "%s: SCIC IO Request 0x%p could not get frame " |
| 1783 | "header for frame index %d, status %x\n", |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1784 | __func__, stp_req, frame_index, status); |
| 1785 | return status; |
| 1786 | } |
| 1787 | |
| 1788 | switch (frame_header->fis_type) { |
| 1789 | case FIS_PIO_SETUP: |
| 1790 | /* Get from the frame buffer the PIO Setup Data */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1791 | sci_unsolicited_frame_control_get_buffer(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1792 | frame_index, |
| 1793 | (void **)&frame_buffer); |
| 1794 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1795 | /* Get the data from the PIO Setup The SCU Hardware |
| 1796 | * returns first word in the frame_header and the rest |
| 1797 | * of the data is in the frame buffer so we need to |
| 1798 | * back up one dword |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1799 | */ |
| 1800 | |
| 1801 | /* transfer_count: first 16bits in the 4th dword */ |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1802 | stp_req->pio_len = frame_buffer[3] & 0xffff; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1803 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1804 | /* status: 4th byte in the 3rd dword */ |
| 1805 | stp_req->status = (frame_buffer[2] >> 24) & 0xff; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1806 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1807 | sci_controller_copy_sata_response(&ireq->stp.rsp, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1808 | frame_header, |
| 1809 | frame_buffer); |
| 1810 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1811 | ireq->stp.rsp.status = stp_req->status; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1812 | |
| 1813 | /* The next state is dependent on whether the |
| 1814 | * request was PIO Data-in or Data out |
| 1815 | */ |
| 1816 | if (task->data_dir == DMA_FROM_DEVICE) { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1817 | sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_DATA_IN); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1818 | } else if (task->data_dir == DMA_TO_DEVICE) { |
| 1819 | /* Transmit data */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1820 | status = sci_stp_request_pio_data_out_transmit_data(ireq); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1821 | if (status != SCI_SUCCESS) |
| 1822 | break; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1823 | sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_DATA_OUT); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1824 | } |
| 1825 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1826 | |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1827 | case FIS_SETDEVBITS: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1828 | sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1829 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1830 | |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1831 | case FIS_REGD2H: |
| 1832 | if (frame_header->status & ATA_BUSY) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1833 | /* |
| 1834 | * Now why is the drive sending a D2H Register |
| 1835 | * FIS when it is still busy? Do nothing since |
| 1836 | * we are still in the right state. |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1837 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1838 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1839 | "%s: SCIC PIO Request 0x%p received " |
| 1840 | "D2H Register FIS with BSY status " |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1841 | "0x%x\n", |
| 1842 | __func__, |
| 1843 | stp_req, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1844 | frame_header->status); |
| 1845 | break; |
| 1846 | } |
| 1847 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1848 | sci_unsolicited_frame_control_get_buffer(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1849 | frame_index, |
| 1850 | (void **)&frame_buffer); |
| 1851 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1852 | sci_controller_copy_sata_response(&ireq->stp.req, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1853 | frame_header, |
| 1854 | frame_buffer); |
| 1855 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1856 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 1857 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1858 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1859 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1860 | |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1861 | default: |
| 1862 | /* FIXME: what do we do here? */ |
| 1863 | break; |
| 1864 | } |
| 1865 | |
| 1866 | /* Frame is decoded return it to the controller */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1867 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1868 | |
| 1869 | return status; |
| 1870 | } |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1871 | |
| 1872 | case SCI_REQ_STP_PIO_DATA_IN: { |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1873 | struct dev_to_host_fis *frame_header; |
| 1874 | struct sata_fis_data *frame_buffer; |
| 1875 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1876 | status = sci_unsolicited_frame_control_get_header(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1877 | frame_index, |
| 1878 | (void **)&frame_header); |
| 1879 | |
| 1880 | if (status != SCI_SUCCESS) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1881 | dev_err(&ihost->pdev->dev, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1882 | "%s: SCIC IO Request 0x%p could not get frame " |
| 1883 | "header for frame index %d, status %x\n", |
| 1884 | __func__, |
| 1885 | stp_req, |
| 1886 | frame_index, |
| 1887 | status); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1888 | return status; |
| 1889 | } |
| 1890 | |
| 1891 | if (frame_header->fis_type != FIS_DATA) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1892 | dev_err(&ihost->pdev->dev, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1893 | "%s: SCIC PIO Request 0x%p received frame %d " |
| 1894 | "with fis type 0x%02x when expecting a data " |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1895 | "fis.\n", |
| 1896 | __func__, |
| 1897 | stp_req, |
| 1898 | frame_index, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1899 | frame_header->fis_type); |
| 1900 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1901 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 1902 | ireq->sci_status = SCI_FAILURE_IO_REQUIRES_SCSI_ABORT; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1903 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1904 | |
| 1905 | /* Frame is decoded return it to the controller */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1906 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1907 | return status; |
| 1908 | } |
| 1909 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1910 | if (stp_req->sgl.index < 0) { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1911 | ireq->saved_rx_frame_index = frame_index; |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1912 | stp_req->pio_len = 0; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1913 | } else { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1914 | sci_unsolicited_frame_control_get_buffer(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1915 | frame_index, |
| 1916 | (void **)&frame_buffer); |
| 1917 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1918 | status = sci_stp_request_pio_data_in_copy_data(stp_req, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1919 | (u8 *)frame_buffer); |
| 1920 | |
| 1921 | /* Frame is decoded return it to the controller */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1922 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1923 | } |
| 1924 | |
| 1925 | /* Check for the end of the transfer, are there more |
| 1926 | * bytes remaining for this data transfer |
| 1927 | */ |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1928 | if (status != SCI_SUCCESS || stp_req->pio_len != 0) |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1929 | return status; |
| 1930 | |
Dan Williams | ba7cb22 | 2011-06-27 11:56:41 -0700 | [diff] [blame] | 1931 | if ((stp_req->status & ATA_BUSY) == 0) { |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1932 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 1933 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1934 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1935 | } else { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1936 | sci_change_state(&ireq->sm, SCI_REQ_STP_PIO_WAIT_FRAME); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1937 | } |
| 1938 | return status; |
| 1939 | } |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1940 | |
| 1941 | case SCI_REQ_STP_SOFT_RESET_WAIT_D2H: { |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1942 | struct dev_to_host_fis *frame_header; |
| 1943 | u32 *frame_buffer; |
| 1944 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1945 | status = sci_unsolicited_frame_control_get_header(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1946 | frame_index, |
| 1947 | (void **)&frame_header); |
| 1948 | if (status != SCI_SUCCESS) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1949 | dev_err(&ihost->pdev->dev, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1950 | "%s: SCIC IO Request 0x%p could not get frame " |
| 1951 | "header for frame index %d, status %x\n", |
| 1952 | __func__, |
| 1953 | stp_req, |
| 1954 | frame_index, |
| 1955 | status); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1956 | return status; |
| 1957 | } |
| 1958 | |
| 1959 | switch (frame_header->fis_type) { |
| 1960 | case FIS_REGD2H: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1961 | sci_unsolicited_frame_control_get_buffer(&ihost->uf_control, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1962 | frame_index, |
| 1963 | (void **)&frame_buffer); |
| 1964 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1965 | sci_controller_copy_sata_response(&ireq->stp.rsp, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1966 | frame_header, |
| 1967 | frame_buffer); |
| 1968 | |
| 1969 | /* The command has completed with error */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1970 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 1971 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1972 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1973 | |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1974 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1975 | dev_warn(&ihost->pdev->dev, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1976 | "%s: IO Request:0x%p Frame Id:%d protocol " |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1977 | "violation occurred\n", |
| 1978 | __func__, |
| 1979 | stp_req, |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1980 | frame_index); |
| 1981 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 1982 | ireq->scu_status = SCU_TASK_DONE_UNEXP_FIS; |
| 1983 | ireq->sci_status = SCI_FAILURE_PROTOCOL_VIOLATION; |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1984 | break; |
| 1985 | } |
| 1986 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 1987 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1988 | |
| 1989 | /* Frame has been decoded return it to the controller */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1990 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 1991 | |
| 1992 | return status; |
| 1993 | } |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 1994 | case SCI_REQ_ATAPI_WAIT_PIO_SETUP: { |
| 1995 | struct sas_task *task = isci_request_access_task(ireq); |
| 1996 | |
| 1997 | sci_controller_release_frame(ihost, frame_index); |
| 1998 | ireq->target_device->working_request = ireq; |
| 1999 | if (task->data_dir == DMA_NONE) { |
| 2000 | sci_change_state(&ireq->sm, SCI_REQ_ATAPI_WAIT_TC_COMP); |
| 2001 | scu_atapi_reconstruct_raw_frame_task_context(ireq); |
| 2002 | } else { |
| 2003 | sci_change_state(&ireq->sm, SCI_REQ_ATAPI_WAIT_D2H); |
| 2004 | scu_atapi_construct_task_context(ireq); |
| 2005 | } |
| 2006 | |
| 2007 | sci_controller_continue_io(ireq); |
| 2008 | return SCI_SUCCESS; |
| 2009 | } |
| 2010 | case SCI_REQ_ATAPI_WAIT_D2H: |
| 2011 | return atapi_d2h_reg_frame_handler(ireq, frame_index); |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2012 | case SCI_REQ_ABORTING: |
| 2013 | /* |
| 2014 | * TODO: Is it even possible to get an unsolicited frame in the |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2015 | * aborting state? |
| 2016 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2017 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2018 | return SCI_SUCCESS; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2019 | |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2020 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2021 | dev_warn(&ihost->pdev->dev, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2022 | "%s: SCIC IO Request given unexpected frame %x while " |
| 2023 | "in state %d\n", |
| 2024 | __func__, |
| 2025 | frame_index, |
| 2026 | state); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2027 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2028 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | d1c637c3 | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2029 | return SCI_FAILURE_INVALID_STATE; |
| 2030 | } |
| 2031 | } |
| 2032 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2033 | static enum sci_status stp_request_udma_await_tc_event(struct isci_request *ireq, |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2034 | u32 completion_code) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2035 | { |
| 2036 | enum sci_status status = SCI_SUCCESS; |
| 2037 | |
| 2038 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 2039 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2040 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 2041 | ireq->sci_status = SCI_SUCCESS; |
| 2042 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2043 | break; |
| 2044 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_UNEXP_FIS): |
| 2045 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_REG_ERR): |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2046 | /* We must check ther response buffer to see if the D2H |
| 2047 | * Register FIS was received before we got the TC |
| 2048 | * completion. |
| 2049 | */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2050 | if (ireq->stp.rsp.fis_type == FIS_REGD2H) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2051 | sci_remote_device_suspend(ireq->target_device, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2052 | SCU_EVENT_SPECIFIC(SCU_NORMALIZE_COMPLETION_STATUS(completion_code))); |
| 2053 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2054 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 2055 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
| 2056 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2057 | } else { |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2058 | /* If we have an error completion status for the |
| 2059 | * TC then we can expect a D2H register FIS from |
| 2060 | * the device so we must change state to wait |
| 2061 | * for it |
| 2062 | */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2063 | sci_change_state(&ireq->sm, SCI_REQ_STP_UDMA_WAIT_D2H); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2064 | } |
| 2065 | break; |
| 2066 | |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2067 | /* TODO Check to see if any of these completion status need to |
| 2068 | * wait for the device to host register fis. |
| 2069 | */ |
| 2070 | /* TODO We can retry the command for SCU_TASK_DONE_CMD_LL_R_ERR |
| 2071 | * - this comes only for B0 |
| 2072 | */ |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2073 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_INV_FIS_LEN): |
| 2074 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_MAX_PLD_ERR): |
| 2075 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_LL_R_ERR): |
| 2076 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CMD_LL_R_ERR): |
| 2077 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_CRC_ERR): |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2078 | sci_remote_device_suspend(ireq->target_device, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2079 | SCU_EVENT_SPECIFIC(SCU_NORMALIZE_COMPLETION_STATUS(completion_code))); |
| 2080 | /* Fall through to the default case */ |
| 2081 | default: |
| 2082 | /* All other completion status cause the IO to be complete. */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2083 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 2084 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
| 2085 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2086 | break; |
| 2087 | } |
| 2088 | |
| 2089 | return status; |
| 2090 | } |
| 2091 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2092 | static enum sci_status |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2093 | stp_request_soft_reset_await_h2d_asserted_tc_event(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2094 | u32 completion_code) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2095 | { |
| 2096 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 2097 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2098 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 2099 | ireq->sci_status = SCI_SUCCESS; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2100 | sci_change_state(&ireq->sm, SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2101 | break; |
| 2102 | |
| 2103 | default: |
| 2104 | /* |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2105 | * All other completion status cause the IO to be complete. |
| 2106 | * If a NAK was received, then it is up to the user to retry |
| 2107 | * the request. |
| 2108 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2109 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 2110 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2111 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2112 | break; |
| 2113 | } |
| 2114 | |
| 2115 | return SCI_SUCCESS; |
| 2116 | } |
| 2117 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2118 | static enum sci_status |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2119 | stp_request_soft_reset_await_h2d_diagnostic_tc_event(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2120 | u32 completion_code) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2121 | { |
| 2122 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 2123 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2124 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 2125 | ireq->sci_status = SCI_SUCCESS; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2126 | sci_change_state(&ireq->sm, SCI_REQ_STP_SOFT_RESET_WAIT_D2H); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2127 | break; |
| 2128 | |
| 2129 | default: |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2130 | /* All other completion status cause the IO to be complete. If |
| 2131 | * a NAK was received, then it is up to the user to retry the |
| 2132 | * request. |
| 2133 | */ |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2134 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 2135 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2136 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 2137 | break; |
| 2138 | } |
| 2139 | |
| 2140 | return SCI_SUCCESS; |
| 2141 | } |
| 2142 | |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 2143 | static enum sci_status atapi_raw_completion(struct isci_request *ireq, u32 completion_code, |
| 2144 | enum sci_base_request_states next) |
| 2145 | { |
| 2146 | enum sci_status status = SCI_SUCCESS; |
| 2147 | |
| 2148 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 2149 | case SCU_MAKE_COMPLETION_STATUS(SCU_TASK_DONE_GOOD): |
| 2150 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 2151 | ireq->sci_status = SCI_SUCCESS; |
| 2152 | sci_change_state(&ireq->sm, next); |
| 2153 | break; |
| 2154 | default: |
| 2155 | /* All other completion status cause the IO to be complete. |
| 2156 | * If a NAK was received, then it is up to the user to retry |
| 2157 | * the request. |
| 2158 | */ |
| 2159 | ireq->scu_status = SCU_NORMALIZE_COMPLETION_STATUS(completion_code); |
| 2160 | ireq->sci_status = SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR; |
| 2161 | |
| 2162 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
| 2163 | break; |
| 2164 | } |
| 2165 | |
| 2166 | return status; |
| 2167 | } |
| 2168 | |
| 2169 | static enum sci_status atapi_data_tc_completion_handler(struct isci_request *ireq, |
| 2170 | u32 completion_code) |
| 2171 | { |
| 2172 | struct isci_remote_device *idev = ireq->target_device; |
| 2173 | struct dev_to_host_fis *d2h = &ireq->stp.rsp; |
| 2174 | enum sci_status status = SCI_SUCCESS; |
| 2175 | |
| 2176 | switch (SCU_GET_COMPLETION_TL_STATUS(completion_code)) { |
| 2177 | case (SCU_TASK_DONE_GOOD << SCU_COMPLETION_TL_STATUS_SHIFT): |
| 2178 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
| 2179 | break; |
| 2180 | |
| 2181 | case (SCU_TASK_DONE_UNEXP_FIS << SCU_COMPLETION_TL_STATUS_SHIFT): { |
| 2182 | u16 len = sci_req_tx_bytes(ireq); |
| 2183 | |
| 2184 | /* likely non-error data underrrun, workaround missing |
| 2185 | * d2h frame from the controller |
| 2186 | */ |
| 2187 | if (d2h->fis_type != FIS_REGD2H) { |
| 2188 | d2h->fis_type = FIS_REGD2H; |
| 2189 | d2h->flags = (1 << 6); |
| 2190 | d2h->status = 0x50; |
| 2191 | d2h->error = 0; |
| 2192 | d2h->lbal = 0; |
| 2193 | d2h->byte_count_low = len & 0xff; |
| 2194 | d2h->byte_count_high = len >> 8; |
| 2195 | d2h->device = 0xa0; |
| 2196 | d2h->lbal_exp = 0; |
| 2197 | d2h->lbam_exp = 0; |
| 2198 | d2h->lbah_exp = 0; |
| 2199 | d2h->_r_a = 0; |
| 2200 | d2h->sector_count = 0x3; |
| 2201 | d2h->sector_count_exp = 0; |
| 2202 | d2h->_r_b = 0; |
| 2203 | d2h->_r_c = 0; |
| 2204 | d2h->_r_d = 0; |
| 2205 | } |
| 2206 | |
| 2207 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 2208 | ireq->sci_status = SCI_SUCCESS_IO_DONE_EARLY; |
| 2209 | status = ireq->sci_status; |
| 2210 | |
| 2211 | /* the hw will have suspended the rnc, so complete the |
| 2212 | * request upon pending resume |
| 2213 | */ |
| 2214 | sci_change_state(&idev->sm, SCI_STP_DEV_ATAPI_ERROR); |
| 2215 | break; |
| 2216 | } |
| 2217 | case (SCU_TASK_DONE_EXCESS_DATA << SCU_COMPLETION_TL_STATUS_SHIFT): |
| 2218 | /* In this case, there is no UF coming after. |
| 2219 | * compelte the IO now. |
| 2220 | */ |
| 2221 | ireq->scu_status = SCU_TASK_DONE_GOOD; |
| 2222 | ireq->sci_status = SCI_SUCCESS; |
| 2223 | sci_change_state(&ireq->sm, SCI_REQ_COMPLETED); |
| 2224 | break; |
| 2225 | |
| 2226 | default: |
| 2227 | if (d2h->fis_type == FIS_REGD2H) { |
| 2228 | /* UF received change the device state to ATAPI_ERROR */ |
| 2229 | status = ireq->sci_status; |
| 2230 | sci_change_state(&idev->sm, SCI_STP_DEV_ATAPI_ERROR); |
| 2231 | } else { |
| 2232 | /* If receiving any non-sucess TC status, no UF |
| 2233 | * received yet, then an UF for the status fis |
| 2234 | * is coming after (XXX: suspect this is |
| 2235 | * actually a protocol error or a bug like the |
| 2236 | * DONE_UNEXP_FIS case) |
| 2237 | */ |
| 2238 | ireq->scu_status = SCU_TASK_DONE_CHECK_RESPONSE; |
| 2239 | ireq->sci_status = SCI_FAILURE_IO_RESPONSE_VALID; |
| 2240 | |
| 2241 | sci_change_state(&ireq->sm, SCI_REQ_ATAPI_WAIT_D2H); |
| 2242 | } |
| 2243 | break; |
| 2244 | } |
| 2245 | |
| 2246 | return status; |
| 2247 | } |
| 2248 | |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2249 | enum sci_status |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2250 | sci_io_request_tc_completion(struct isci_request *ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2251 | u32 completion_code) |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2252 | { |
| 2253 | enum sci_base_request_states state; |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2254 | struct isci_host *ihost = ireq->owning_controller; |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2255 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2256 | state = ireq->sm.current_state_id; |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2257 | |
| 2258 | switch (state) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2259 | case SCI_REQ_STARTED: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2260 | return request_started_state_tc_event(ireq, completion_code); |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2261 | |
| 2262 | case SCI_REQ_TASK_WAIT_TC_COMP: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2263 | return ssp_task_request_await_tc_event(ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2264 | completion_code); |
| 2265 | |
| 2266 | case SCI_REQ_SMP_WAIT_RESP: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2267 | return smp_request_await_response_tc_event(ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2268 | completion_code); |
| 2269 | |
| 2270 | case SCI_REQ_SMP_WAIT_TC_COMP: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2271 | return smp_request_await_tc_event(ireq, completion_code); |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2272 | |
| 2273 | case SCI_REQ_STP_UDMA_WAIT_TC_COMP: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2274 | return stp_request_udma_await_tc_event(ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2275 | completion_code); |
| 2276 | |
| 2277 | case SCI_REQ_STP_NON_DATA_WAIT_H2D: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2278 | return stp_request_non_data_await_h2d_tc_event(ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2279 | completion_code); |
| 2280 | |
| 2281 | case SCI_REQ_STP_PIO_WAIT_H2D: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2282 | return stp_request_pio_await_h2d_completion_tc_event(ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2283 | completion_code); |
| 2284 | |
| 2285 | case SCI_REQ_STP_PIO_DATA_OUT: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2286 | return pio_data_out_tx_done_tc_event(ireq, completion_code); |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2287 | |
| 2288 | case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2289 | return stp_request_soft_reset_await_h2d_asserted_tc_event(ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2290 | completion_code); |
| 2291 | |
| 2292 | case SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2293 | return stp_request_soft_reset_await_h2d_diagnostic_tc_event(ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2294 | completion_code); |
| 2295 | |
| 2296 | case SCI_REQ_ABORTING: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2297 | return request_aborting_state_tc_event(ireq, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2298 | completion_code); |
| 2299 | |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 2300 | case SCI_REQ_ATAPI_WAIT_H2D: |
| 2301 | return atapi_raw_completion(ireq, completion_code, |
| 2302 | SCI_REQ_ATAPI_WAIT_PIO_SETUP); |
| 2303 | |
| 2304 | case SCI_REQ_ATAPI_WAIT_TC_COMP: |
| 2305 | return atapi_raw_completion(ireq, completion_code, |
| 2306 | SCI_REQ_ATAPI_WAIT_D2H); |
| 2307 | |
| 2308 | case SCI_REQ_ATAPI_WAIT_D2H: |
| 2309 | return atapi_data_tc_completion_handler(ireq, completion_code); |
| 2310 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2311 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2312 | dev_warn(&ihost->pdev->dev, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2313 | "%s: SCIC IO Request given task completion " |
| 2314 | "notification %x while in wrong state %d\n", |
| 2315 | __func__, |
| 2316 | completion_code, |
| 2317 | state); |
| 2318 | return SCI_FAILURE_INVALID_STATE; |
Dan Williams | a7e255a | 2011-05-11 08:27:47 -0700 | [diff] [blame] | 2319 | } |
| 2320 | } |
| 2321 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2322 | /** |
| 2323 | * isci_request_process_response_iu() - This function sets the status and |
| 2324 | * response iu, in the task struct, from the request object for the upper |
| 2325 | * layer driver. |
| 2326 | * @sas_task: This parameter is the task struct from the upper layer driver. |
| 2327 | * @resp_iu: This parameter points to the response iu of the completed request. |
| 2328 | * @dev: This parameter specifies the linux device struct. |
| 2329 | * |
| 2330 | * none. |
| 2331 | */ |
| 2332 | static void isci_request_process_response_iu( |
| 2333 | struct sas_task *task, |
| 2334 | struct ssp_response_iu *resp_iu, |
| 2335 | struct device *dev) |
| 2336 | { |
| 2337 | dev_dbg(dev, |
| 2338 | "%s: resp_iu = %p " |
| 2339 | "resp_iu->status = 0x%x,\nresp_iu->datapres = %d " |
| 2340 | "resp_iu->response_data_len = %x, " |
| 2341 | "resp_iu->sense_data_len = %x\nrepsonse data: ", |
| 2342 | __func__, |
| 2343 | resp_iu, |
| 2344 | resp_iu->status, |
| 2345 | resp_iu->datapres, |
| 2346 | resp_iu->response_data_len, |
| 2347 | resp_iu->sense_data_len); |
| 2348 | |
| 2349 | task->task_status.stat = resp_iu->status; |
| 2350 | |
| 2351 | /* libsas updates the task status fields based on the response iu. */ |
| 2352 | sas_ssp_task_response(dev, task, resp_iu); |
| 2353 | } |
| 2354 | |
| 2355 | /** |
| 2356 | * isci_request_set_open_reject_status() - This function prepares the I/O |
| 2357 | * completion for OPEN_REJECT conditions. |
| 2358 | * @request: This parameter is the completed isci_request object. |
| 2359 | * @response_ptr: This parameter specifies the service response for the I/O. |
| 2360 | * @status_ptr: This parameter specifies the exec status for the I/O. |
| 2361 | * @complete_to_host_ptr: This parameter specifies the action to be taken by |
| 2362 | * the LLDD with respect to completing this request or forcing an abort |
| 2363 | * condition on the I/O. |
| 2364 | * @open_rej_reason: This parameter specifies the encoded reason for the |
| 2365 | * abandon-class reject. |
| 2366 | * |
| 2367 | * none. |
| 2368 | */ |
| 2369 | static void isci_request_set_open_reject_status( |
| 2370 | struct isci_request *request, |
| 2371 | struct sas_task *task, |
| 2372 | enum service_response *response_ptr, |
| 2373 | enum exec_status *status_ptr, |
| 2374 | enum isci_completion_selection *complete_to_host_ptr, |
| 2375 | enum sas_open_rej_reason open_rej_reason) |
| 2376 | { |
| 2377 | /* Task in the target is done. */ |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2378 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2379 | *response_ptr = SAS_TASK_UNDELIVERED; |
| 2380 | *status_ptr = SAS_OPEN_REJECT; |
| 2381 | *complete_to_host_ptr = isci_perform_normal_io_completion; |
| 2382 | task->task_status.open_rej_reason = open_rej_reason; |
| 2383 | } |
| 2384 | |
| 2385 | /** |
| 2386 | * isci_request_handle_controller_specific_errors() - This function decodes |
| 2387 | * controller-specific I/O completion error conditions. |
| 2388 | * @request: This parameter is the completed isci_request object. |
| 2389 | * @response_ptr: This parameter specifies the service response for the I/O. |
| 2390 | * @status_ptr: This parameter specifies the exec status for the I/O. |
| 2391 | * @complete_to_host_ptr: This parameter specifies the action to be taken by |
| 2392 | * the LLDD with respect to completing this request or forcing an abort |
| 2393 | * condition on the I/O. |
| 2394 | * |
| 2395 | * none. |
| 2396 | */ |
| 2397 | static void isci_request_handle_controller_specific_errors( |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2398 | struct isci_remote_device *idev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2399 | struct isci_request *request, |
| 2400 | struct sas_task *task, |
| 2401 | enum service_response *response_ptr, |
| 2402 | enum exec_status *status_ptr, |
| 2403 | enum isci_completion_selection *complete_to_host_ptr) |
| 2404 | { |
| 2405 | unsigned int cstatus; |
| 2406 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2407 | cstatus = request->scu_status; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2408 | |
| 2409 | dev_dbg(&request->isci_host->pdev->dev, |
| 2410 | "%s: %p SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR " |
| 2411 | "- controller status = 0x%x\n", |
| 2412 | __func__, request, cstatus); |
| 2413 | |
| 2414 | /* Decode the controller-specific errors; most |
| 2415 | * important is to recognize those conditions in which |
| 2416 | * the target may still have a task outstanding that |
| 2417 | * must be aborted. |
| 2418 | * |
| 2419 | * Note that there are SCU completion codes being |
| 2420 | * named in the decode below for which SCIC has already |
| 2421 | * done work to handle them in a way other than as |
| 2422 | * a controller-specific completion code; these are left |
| 2423 | * in the decode below for completeness sake. |
| 2424 | */ |
| 2425 | switch (cstatus) { |
| 2426 | case SCU_TASK_DONE_DMASETUP_DIRERR: |
| 2427 | /* Also SCU_TASK_DONE_SMP_FRM_TYPE_ERR: */ |
| 2428 | case SCU_TASK_DONE_XFERCNT_ERR: |
| 2429 | /* Also SCU_TASK_DONE_SMP_UFI_ERR: */ |
| 2430 | if (task->task_proto == SAS_PROTOCOL_SMP) { |
| 2431 | /* SCU_TASK_DONE_SMP_UFI_ERR == Task Done. */ |
| 2432 | *response_ptr = SAS_TASK_COMPLETE; |
| 2433 | |
| 2434 | /* See if the device has been/is being stopped. Note |
| 2435 | * that we ignore the quiesce state, since we are |
| 2436 | * concerned about the actual device state. |
| 2437 | */ |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2438 | if (!idev) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2439 | *status_ptr = SAS_DEVICE_UNKNOWN; |
| 2440 | else |
| 2441 | *status_ptr = SAS_ABORTED_TASK; |
| 2442 | |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2443 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2444 | |
| 2445 | *complete_to_host_ptr = |
| 2446 | isci_perform_normal_io_completion; |
| 2447 | } else { |
| 2448 | /* Task in the target is not done. */ |
| 2449 | *response_ptr = SAS_TASK_UNDELIVERED; |
| 2450 | |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2451 | if (!idev) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2452 | *status_ptr = SAS_DEVICE_UNKNOWN; |
| 2453 | else |
| 2454 | *status_ptr = SAM_STAT_TASK_ABORTED; |
| 2455 | |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2456 | clear_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2457 | |
| 2458 | *complete_to_host_ptr = |
| 2459 | isci_perform_error_io_completion; |
| 2460 | } |
| 2461 | |
| 2462 | break; |
| 2463 | |
| 2464 | case SCU_TASK_DONE_CRC_ERR: |
| 2465 | case SCU_TASK_DONE_NAK_CMD_ERR: |
| 2466 | case SCU_TASK_DONE_EXCESS_DATA: |
| 2467 | case SCU_TASK_DONE_UNEXP_FIS: |
| 2468 | /* Also SCU_TASK_DONE_UNEXP_RESP: */ |
| 2469 | case SCU_TASK_DONE_VIIT_ENTRY_NV: /* TODO - conditions? */ |
| 2470 | case SCU_TASK_DONE_IIT_ENTRY_NV: /* TODO - conditions? */ |
| 2471 | case SCU_TASK_DONE_RNCNV_OUTBOUND: /* TODO - conditions? */ |
| 2472 | /* These are conditions in which the target |
| 2473 | * has completed the task, so that no cleanup |
| 2474 | * is necessary. |
| 2475 | */ |
| 2476 | *response_ptr = 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 Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2482 | if (!idev) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2483 | *status_ptr = SAS_DEVICE_UNKNOWN; |
| 2484 | else |
| 2485 | *status_ptr = SAS_ABORTED_TASK; |
| 2486 | |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2487 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2488 | |
| 2489 | *complete_to_host_ptr = isci_perform_normal_io_completion; |
| 2490 | break; |
| 2491 | |
| 2492 | |
| 2493 | /* Note that the only open reject completion codes seen here will be |
| 2494 | * abandon-class codes; all others are automatically retried in the SCU. |
| 2495 | */ |
| 2496 | case SCU_TASK_OPEN_REJECT_WRONG_DESTINATION: |
| 2497 | |
| 2498 | isci_request_set_open_reject_status( |
| 2499 | request, task, response_ptr, status_ptr, |
| 2500 | complete_to_host_ptr, SAS_OREJ_WRONG_DEST); |
| 2501 | break; |
| 2502 | |
| 2503 | case SCU_TASK_OPEN_REJECT_ZONE_VIOLATION: |
| 2504 | |
| 2505 | /* Note - the return of AB0 will change when |
| 2506 | * libsas implements detection of zone violations. |
| 2507 | */ |
| 2508 | isci_request_set_open_reject_status( |
| 2509 | request, task, response_ptr, status_ptr, |
| 2510 | complete_to_host_ptr, SAS_OREJ_RESV_AB0); |
| 2511 | break; |
| 2512 | |
| 2513 | case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_1: |
| 2514 | |
| 2515 | isci_request_set_open_reject_status( |
| 2516 | request, task, response_ptr, status_ptr, |
| 2517 | complete_to_host_ptr, SAS_OREJ_RESV_AB1); |
| 2518 | break; |
| 2519 | |
| 2520 | case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_2: |
| 2521 | |
| 2522 | isci_request_set_open_reject_status( |
| 2523 | request, task, response_ptr, status_ptr, |
| 2524 | complete_to_host_ptr, SAS_OREJ_RESV_AB2); |
| 2525 | break; |
| 2526 | |
| 2527 | case SCU_TASK_OPEN_REJECT_RESERVED_ABANDON_3: |
| 2528 | |
| 2529 | isci_request_set_open_reject_status( |
| 2530 | request, task, response_ptr, status_ptr, |
| 2531 | complete_to_host_ptr, SAS_OREJ_RESV_AB3); |
| 2532 | break; |
| 2533 | |
| 2534 | case SCU_TASK_OPEN_REJECT_BAD_DESTINATION: |
| 2535 | |
| 2536 | isci_request_set_open_reject_status( |
| 2537 | request, task, response_ptr, status_ptr, |
| 2538 | complete_to_host_ptr, SAS_OREJ_BAD_DEST); |
| 2539 | break; |
| 2540 | |
| 2541 | case SCU_TASK_OPEN_REJECT_STP_RESOURCES_BUSY: |
| 2542 | |
| 2543 | isci_request_set_open_reject_status( |
| 2544 | request, task, response_ptr, status_ptr, |
| 2545 | complete_to_host_ptr, SAS_OREJ_STP_NORES); |
| 2546 | break; |
| 2547 | |
| 2548 | case SCU_TASK_OPEN_REJECT_PROTOCOL_NOT_SUPPORTED: |
| 2549 | |
| 2550 | isci_request_set_open_reject_status( |
| 2551 | request, task, response_ptr, status_ptr, |
| 2552 | complete_to_host_ptr, SAS_OREJ_EPROTO); |
| 2553 | break; |
| 2554 | |
| 2555 | case SCU_TASK_OPEN_REJECT_CONNECTION_RATE_NOT_SUPPORTED: |
| 2556 | |
| 2557 | isci_request_set_open_reject_status( |
| 2558 | request, task, response_ptr, status_ptr, |
| 2559 | complete_to_host_ptr, SAS_OREJ_CONN_RATE); |
| 2560 | break; |
| 2561 | |
| 2562 | case SCU_TASK_DONE_LL_R_ERR: |
| 2563 | /* Also SCU_TASK_DONE_ACK_NAK_TO: */ |
| 2564 | case SCU_TASK_DONE_LL_PERR: |
| 2565 | case SCU_TASK_DONE_LL_SY_TERM: |
| 2566 | /* Also SCU_TASK_DONE_NAK_ERR:*/ |
| 2567 | case SCU_TASK_DONE_LL_LF_TERM: |
| 2568 | /* Also SCU_TASK_DONE_DATA_LEN_ERR: */ |
| 2569 | case SCU_TASK_DONE_LL_ABORT_ERR: |
| 2570 | case SCU_TASK_DONE_SEQ_INV_TYPE: |
| 2571 | /* Also SCU_TASK_DONE_UNEXP_XR: */ |
| 2572 | case SCU_TASK_DONE_XR_IU_LEN_ERR: |
| 2573 | case SCU_TASK_DONE_INV_FIS_LEN: |
| 2574 | /* Also SCU_TASK_DONE_XR_WD_LEN: */ |
| 2575 | case SCU_TASK_DONE_SDMA_ERR: |
| 2576 | case SCU_TASK_DONE_OFFSET_ERR: |
| 2577 | case SCU_TASK_DONE_MAX_PLD_ERR: |
| 2578 | case SCU_TASK_DONE_LF_ERR: |
| 2579 | case SCU_TASK_DONE_SMP_RESP_TO_ERR: /* Escalate to dev reset? */ |
| 2580 | case SCU_TASK_DONE_SMP_LL_RX_ERR: |
| 2581 | case SCU_TASK_DONE_UNEXP_DATA: |
| 2582 | case SCU_TASK_DONE_UNEXP_SDBFIS: |
| 2583 | case SCU_TASK_DONE_REG_ERR: |
| 2584 | case SCU_TASK_DONE_SDB_ERR: |
| 2585 | case SCU_TASK_DONE_TASK_ABORT: |
| 2586 | default: |
| 2587 | /* Task in the target is not done. */ |
| 2588 | *response_ptr = SAS_TASK_UNDELIVERED; |
| 2589 | *status_ptr = SAM_STAT_TASK_ABORTED; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2590 | |
Jeff Skirvin | cde76fb | 2011-06-20 14:09:06 -0700 | [diff] [blame] | 2591 | if (task->task_proto == SAS_PROTOCOL_SMP) { |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2592 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Jeff Skirvin | cde76fb | 2011-06-20 14:09:06 -0700 | [diff] [blame] | 2593 | |
| 2594 | *complete_to_host_ptr = isci_perform_normal_io_completion; |
| 2595 | } else { |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2596 | clear_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Jeff Skirvin | cde76fb | 2011-06-20 14:09:06 -0700 | [diff] [blame] | 2597 | |
| 2598 | *complete_to_host_ptr = isci_perform_error_io_completion; |
| 2599 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2600 | break; |
| 2601 | } |
| 2602 | } |
| 2603 | |
| 2604 | /** |
| 2605 | * isci_task_save_for_upper_layer_completion() - This function saves the |
| 2606 | * request for later completion to the upper layer driver. |
| 2607 | * @host: This parameter is a pointer to the host on which the the request |
| 2608 | * should be queued (either as an error or success). |
| 2609 | * @request: This parameter is the completed request. |
| 2610 | * @response: This parameter is the response code for the completed task. |
| 2611 | * @status: This parameter is the status code for the completed task. |
| 2612 | * |
| 2613 | * none. |
| 2614 | */ |
| 2615 | static void isci_task_save_for_upper_layer_completion( |
| 2616 | struct isci_host *host, |
| 2617 | struct isci_request *request, |
| 2618 | enum service_response response, |
| 2619 | enum exec_status status, |
| 2620 | enum isci_completion_selection task_notification_selection) |
| 2621 | { |
| 2622 | struct sas_task *task = isci_request_access_task(request); |
| 2623 | |
Jeff Skirvin | ec6c963 | 2011-03-04 14:06:44 -0800 | [diff] [blame] | 2624 | task_notification_selection |
| 2625 | = isci_task_set_completion_status(task, response, status, |
| 2626 | task_notification_selection); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2627 | |
| 2628 | /* Tasks aborted specifically by a call to the lldd_abort_task |
| 2629 | * function should not be completed to the host in the regular path. |
| 2630 | */ |
| 2631 | switch (task_notification_selection) { |
| 2632 | |
| 2633 | case isci_perform_normal_io_completion: |
| 2634 | |
| 2635 | /* Normal notification (task_done) */ |
| 2636 | dev_dbg(&host->pdev->dev, |
Jeff Skirvin | aa14510 | 2011-03-07 16:40:47 -0700 | [diff] [blame] | 2637 | "%s: Normal - task = %p, response=%d (%d), status=%d (%d)\n", |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2638 | __func__, |
| 2639 | task, |
Jeff Skirvin | aa14510 | 2011-03-07 16:40:47 -0700 | [diff] [blame] | 2640 | task->task_status.resp, response, |
| 2641 | task->task_status.stat, status); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2642 | /* Add to the completed list. */ |
| 2643 | list_add(&request->completed_node, |
| 2644 | &host->requests_to_complete); |
Jeff Skirvin | ec6c963 | 2011-03-04 14:06:44 -0800 | [diff] [blame] | 2645 | |
| 2646 | /* Take the request off the device's pending request list. */ |
| 2647 | list_del_init(&request->dev_node); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2648 | break; |
| 2649 | |
| 2650 | case isci_perform_aborted_io_completion: |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame] | 2651 | /* No notification to libsas because this request is |
| 2652 | * already in the abort path. |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2653 | */ |
Dan Williams | a8a0a13 | 2011-07-01 12:07:25 -0700 | [diff] [blame] | 2654 | dev_dbg(&host->pdev->dev, |
Jeff Skirvin | aa14510 | 2011-03-07 16:40:47 -0700 | [diff] [blame] | 2655 | "%s: Aborted - task = %p, response=%d (%d), status=%d (%d)\n", |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2656 | __func__, |
| 2657 | task, |
Jeff Skirvin | aa14510 | 2011-03-07 16:40:47 -0700 | [diff] [blame] | 2658 | task->task_status.resp, response, |
| 2659 | task->task_status.stat, status); |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame] | 2660 | |
| 2661 | /* Wake up whatever process was waiting for this |
| 2662 | * request to complete. |
| 2663 | */ |
| 2664 | WARN_ON(request->io_request_completion == NULL); |
| 2665 | |
| 2666 | if (request->io_request_completion != NULL) { |
| 2667 | |
| 2668 | /* Signal whoever is waiting that this |
| 2669 | * request is complete. |
| 2670 | */ |
| 2671 | complete(request->io_request_completion); |
| 2672 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2673 | break; |
| 2674 | |
| 2675 | case isci_perform_error_io_completion: |
| 2676 | /* Use sas_task_abort */ |
Dan Williams | a8a0a13 | 2011-07-01 12:07:25 -0700 | [diff] [blame] | 2677 | dev_dbg(&host->pdev->dev, |
Jeff Skirvin | aa14510 | 2011-03-07 16:40:47 -0700 | [diff] [blame] | 2678 | "%s: Error - task = %p, response=%d (%d), status=%d (%d)\n", |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2679 | __func__, |
| 2680 | task, |
Jeff Skirvin | aa14510 | 2011-03-07 16:40:47 -0700 | [diff] [blame] | 2681 | task->task_status.resp, response, |
| 2682 | task->task_status.stat, status); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2683 | /* Add to the aborted list. */ |
| 2684 | list_add(&request->completed_node, |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 2685 | &host->requests_to_errorback); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2686 | break; |
| 2687 | |
| 2688 | default: |
Dan Williams | a8a0a13 | 2011-07-01 12:07:25 -0700 | [diff] [blame] | 2689 | dev_dbg(&host->pdev->dev, |
Jeff Skirvin | aa14510 | 2011-03-07 16:40:47 -0700 | [diff] [blame] | 2690 | "%s: Unknown - task = %p, response=%d (%d), status=%d (%d)\n", |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2691 | __func__, |
| 2692 | task, |
Jeff Skirvin | aa14510 | 2011-03-07 16:40:47 -0700 | [diff] [blame] | 2693 | task->task_status.resp, response, |
| 2694 | task->task_status.stat, status); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2695 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame] | 2696 | /* Add to the error to libsas list. */ |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2697 | list_add(&request->completed_node, |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 2698 | &host->requests_to_errorback); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2699 | break; |
| 2700 | } |
| 2701 | } |
| 2702 | |
Dan Williams | 1a87828 | 2011-07-29 17:16:40 -0700 | [diff] [blame] | 2703 | static void isci_process_stp_response(struct sas_task *task, struct dev_to_host_fis *fis) |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 2704 | { |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 2705 | struct task_status_struct *ts = &task->task_status; |
| 2706 | struct ata_task_resp *resp = (void *)&ts->buf[0]; |
| 2707 | |
Dan Williams | 1a87828 | 2011-07-29 17:16:40 -0700 | [diff] [blame] | 2708 | resp->frame_len = sizeof(*fis); |
| 2709 | memcpy(resp->ending_fis, fis, sizeof(*fis)); |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 2710 | ts->buf_valid_size = sizeof(*resp); |
| 2711 | |
Dan Williams | 1a87828 | 2011-07-29 17:16:40 -0700 | [diff] [blame] | 2712 | /* If the device fault bit is set in the status register, then |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 2713 | * set the sense data and return. |
| 2714 | */ |
Dan Williams | 1a87828 | 2011-07-29 17:16:40 -0700 | [diff] [blame] | 2715 | if (fis->status & ATA_DF) |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 2716 | ts->stat = SAS_PROTO_RESPONSE; |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 2717 | else if (fis->status & ATA_ERR) |
| 2718 | ts->stat = SAM_STAT_CHECK_CONDITION; |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 2719 | else |
| 2720 | ts->stat = SAM_STAT_GOOD; |
| 2721 | |
| 2722 | ts->resp = SAS_TASK_COMPLETE; |
| 2723 | } |
| 2724 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2725 | static void isci_request_io_request_complete(struct isci_host *ihost, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 2726 | struct isci_request *request, |
| 2727 | enum sci_io_status completion_status) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2728 | { |
| 2729 | struct sas_task *task = isci_request_access_task(request); |
| 2730 | struct ssp_response_iu *resp_iu; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2731 | unsigned long task_flags; |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2732 | struct isci_remote_device *idev = isci_lookup_device(task->dev); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2733 | enum service_response response = SAS_TASK_UNDELIVERED; |
| 2734 | enum exec_status status = SAS_ABORTED_TASK; |
| 2735 | enum isci_request_status request_status; |
| 2736 | enum isci_completion_selection complete_to_host |
| 2737 | = isci_perform_normal_io_completion; |
| 2738 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2739 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2740 | "%s: request = %p, task = %p,\n" |
| 2741 | "task->data_dir = %d completion_status = 0x%x\n", |
| 2742 | __func__, |
| 2743 | request, |
| 2744 | task, |
| 2745 | task->data_dir, |
| 2746 | completion_status); |
| 2747 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame] | 2748 | spin_lock(&request->state_lock); |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2749 | request_status = request->status; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2750 | |
| 2751 | /* Decode the request status. Note that if the request has been |
| 2752 | * aborted by a task management function, we don't care |
| 2753 | * what the status is. |
| 2754 | */ |
| 2755 | switch (request_status) { |
| 2756 | |
| 2757 | case aborted: |
| 2758 | /* "aborted" indicates that the request was aborted by a task |
| 2759 | * management function, since once a task management request is |
| 2760 | * perfomed by the device, the request only completes because |
| 2761 | * of the subsequent driver terminate. |
| 2762 | * |
| 2763 | * Aborted also means an external thread is explicitly managing |
| 2764 | * this request, so that we do not complete it up the stack. |
| 2765 | * |
| 2766 | * The target is still there (since the TMF was successful). |
| 2767 | */ |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2768 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2769 | response = SAS_TASK_COMPLETE; |
| 2770 | |
| 2771 | /* See if the device has been/is being stopped. Note |
| 2772 | * that we ignore the quiesce state, since we are |
| 2773 | * concerned about the actual device state. |
| 2774 | */ |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2775 | if (!idev) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2776 | status = SAS_DEVICE_UNKNOWN; |
| 2777 | else |
| 2778 | status = SAS_ABORTED_TASK; |
| 2779 | |
| 2780 | complete_to_host = isci_perform_aborted_io_completion; |
| 2781 | /* This was an aborted request. */ |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame] | 2782 | |
| 2783 | spin_unlock(&request->state_lock); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2784 | break; |
| 2785 | |
| 2786 | case aborting: |
| 2787 | /* aborting means that the task management function tried and |
| 2788 | * failed to abort the request. We need to note the request |
| 2789 | * as SAS_TASK_UNDELIVERED, so that the scsi mid layer marks the |
| 2790 | * target as down. |
| 2791 | * |
| 2792 | * Aborting also means an external thread is explicitly managing |
| 2793 | * this request, so that we do not complete it up the stack. |
| 2794 | */ |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2795 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2796 | response = SAS_TASK_UNDELIVERED; |
| 2797 | |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2798 | if (!idev) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2799 | /* The device has been /is being stopped. Note that |
| 2800 | * we ignore the quiesce state, since we are |
| 2801 | * concerned about the actual device state. |
| 2802 | */ |
| 2803 | status = SAS_DEVICE_UNKNOWN; |
| 2804 | else |
| 2805 | status = SAS_PHY_DOWN; |
| 2806 | |
| 2807 | complete_to_host = isci_perform_aborted_io_completion; |
| 2808 | |
| 2809 | /* This was an aborted request. */ |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame] | 2810 | |
| 2811 | spin_unlock(&request->state_lock); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2812 | break; |
| 2813 | |
| 2814 | case terminating: |
| 2815 | |
| 2816 | /* This was an terminated request. This happens when |
| 2817 | * the I/O is being terminated because of an action on |
| 2818 | * the device (reset, tear down, etc.), and the I/O needs |
| 2819 | * to be completed up the stack. |
| 2820 | */ |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2821 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2822 | response = SAS_TASK_UNDELIVERED; |
| 2823 | |
| 2824 | /* See if the device has been/is being stopped. Note |
| 2825 | * that we ignore the quiesce state, since we are |
| 2826 | * concerned about the actual device state. |
| 2827 | */ |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2828 | if (!idev) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2829 | status = SAS_DEVICE_UNKNOWN; |
| 2830 | else |
| 2831 | status = SAS_ABORTED_TASK; |
| 2832 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame] | 2833 | complete_to_host = isci_perform_aborted_io_completion; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2834 | |
| 2835 | /* This was a terminated request. */ |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame] | 2836 | |
| 2837 | spin_unlock(&request->state_lock); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2838 | break; |
| 2839 | |
Jeff Skirvin | 77c852f | 2011-06-20 14:09:16 -0700 | [diff] [blame] | 2840 | case dead: |
| 2841 | /* This was a terminated request that timed-out during the |
| 2842 | * termination process. There is no task to complete to |
| 2843 | * libsas. |
| 2844 | */ |
| 2845 | complete_to_host = isci_perform_normal_io_completion; |
| 2846 | spin_unlock(&request->state_lock); |
| 2847 | break; |
| 2848 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2849 | default: |
| 2850 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame] | 2851 | /* The request is done from an SCU HW perspective. */ |
| 2852 | request->status = completed; |
| 2853 | |
| 2854 | spin_unlock(&request->state_lock); |
| 2855 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2856 | /* This is an active request being completed from the core. */ |
| 2857 | switch (completion_status) { |
| 2858 | |
| 2859 | case SCI_IO_FAILURE_RESPONSE_VALID: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2860 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2861 | "%s: SCI_IO_FAILURE_RESPONSE_VALID (%p/%p)\n", |
| 2862 | __func__, |
| 2863 | request, |
| 2864 | task); |
| 2865 | |
| 2866 | if (sas_protocol_ata(task->task_proto)) { |
Dan Williams | 1a87828 | 2011-07-29 17:16:40 -0700 | [diff] [blame] | 2867 | isci_process_stp_response(task, &request->stp.rsp); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2868 | } else if (SAS_PROTOCOL_SSP == task->task_proto) { |
| 2869 | |
| 2870 | /* crack the iu response buffer. */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2871 | resp_iu = &request->ssp.rsp; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2872 | isci_request_process_response_iu(task, resp_iu, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2873 | &ihost->pdev->dev); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2874 | |
| 2875 | } else if (SAS_PROTOCOL_SMP == task->task_proto) { |
| 2876 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2877 | dev_err(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2878 | "%s: SCI_IO_FAILURE_RESPONSE_VALID: " |
| 2879 | "SAS_PROTOCOL_SMP protocol\n", |
| 2880 | __func__); |
| 2881 | |
| 2882 | } else |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2883 | dev_err(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2884 | "%s: unknown protocol\n", __func__); |
| 2885 | |
| 2886 | /* use the task status set in the task struct by the |
| 2887 | * isci_request_process_response_iu call. |
| 2888 | */ |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2889 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2890 | response = task->task_status.resp; |
| 2891 | status = task->task_status.stat; |
| 2892 | break; |
| 2893 | |
| 2894 | case SCI_IO_SUCCESS: |
| 2895 | case SCI_IO_SUCCESS_IO_DONE_EARLY: |
| 2896 | |
| 2897 | response = SAS_TASK_COMPLETE; |
| 2898 | status = SAM_STAT_GOOD; |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2899 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2900 | |
Dan Williams | 54b5e3a | 2011-09-28 18:35:27 -0700 | [diff] [blame] | 2901 | if (completion_status == SCI_IO_SUCCESS_IO_DONE_EARLY) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2902 | |
| 2903 | /* This was an SSP / STP / SATA transfer. |
| 2904 | * There is a possibility that less data than |
| 2905 | * the maximum was transferred. |
| 2906 | */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2907 | u32 transferred_length = sci_req_tx_bytes(request); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2908 | |
| 2909 | task->task_status.residual |
| 2910 | = task->total_xfer_len - transferred_length; |
| 2911 | |
| 2912 | /* If there were residual bytes, call this an |
| 2913 | * underrun. |
| 2914 | */ |
| 2915 | if (task->task_status.residual != 0) |
| 2916 | status = SAS_DATA_UNDERRUN; |
| 2917 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2918 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2919 | "%s: SCI_IO_SUCCESS_IO_DONE_EARLY %d\n", |
| 2920 | __func__, |
| 2921 | status); |
| 2922 | |
| 2923 | } else |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2924 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2925 | "%s: SCI_IO_SUCCESS\n", |
| 2926 | __func__); |
| 2927 | |
| 2928 | break; |
| 2929 | |
| 2930 | case SCI_IO_FAILURE_TERMINATED: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2931 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2932 | "%s: SCI_IO_FAILURE_TERMINATED (%p/%p)\n", |
| 2933 | __func__, |
| 2934 | request, |
| 2935 | task); |
| 2936 | |
| 2937 | /* The request was terminated explicitly. No handling |
| 2938 | * is needed in the SCSI error handler path. |
| 2939 | */ |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2940 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2941 | response = SAS_TASK_UNDELIVERED; |
| 2942 | |
| 2943 | /* See if the device has been/is being stopped. Note |
| 2944 | * that we ignore the quiesce state, since we are |
| 2945 | * concerned about the actual device state. |
| 2946 | */ |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2947 | if (!idev) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2948 | status = SAS_DEVICE_UNKNOWN; |
| 2949 | else |
| 2950 | status = SAS_ABORTED_TASK; |
| 2951 | |
| 2952 | complete_to_host = isci_perform_normal_io_completion; |
| 2953 | break; |
| 2954 | |
| 2955 | case SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR: |
| 2956 | |
| 2957 | isci_request_handle_controller_specific_errors( |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2958 | idev, request, task, &response, &status, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2959 | &complete_to_host); |
| 2960 | |
| 2961 | break; |
| 2962 | |
| 2963 | case SCI_IO_FAILURE_REMOTE_DEVICE_RESET_REQUIRED: |
| 2964 | /* This is a special case, in that the I/O completion |
| 2965 | * is telling us that the device needs a reset. |
| 2966 | * In order for the device reset condition to be |
| 2967 | * noticed, the I/O has to be handled in the error |
| 2968 | * handler. Set the reset flag and cause the |
| 2969 | * SCSI error thread to be scheduled. |
| 2970 | */ |
| 2971 | spin_lock_irqsave(&task->task_state_lock, task_flags); |
| 2972 | task->task_state_flags |= SAS_TASK_NEED_DEV_RESET; |
| 2973 | spin_unlock_irqrestore(&task->task_state_lock, task_flags); |
| 2974 | |
Jeff Skirvin | aa14510 | 2011-03-07 16:40:47 -0700 | [diff] [blame] | 2975 | /* Fail the I/O. */ |
| 2976 | response = SAS_TASK_UNDELIVERED; |
| 2977 | status = SAM_STAT_TASK_ABORTED; |
| 2978 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2979 | complete_to_host = isci_perform_error_io_completion; |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2980 | clear_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2981 | break; |
| 2982 | |
Jeff Skirvin | cde76fb | 2011-06-20 14:09:06 -0700 | [diff] [blame] | 2983 | case SCI_FAILURE_RETRY_REQUIRED: |
| 2984 | |
| 2985 | /* Fail the I/O so it can be retried. */ |
| 2986 | response = SAS_TASK_UNDELIVERED; |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 2987 | if (!idev) |
Jeff Skirvin | cde76fb | 2011-06-20 14:09:06 -0700 | [diff] [blame] | 2988 | status = SAS_DEVICE_UNKNOWN; |
| 2989 | else |
| 2990 | status = SAS_ABORTED_TASK; |
| 2991 | |
| 2992 | complete_to_host = isci_perform_normal_io_completion; |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 2993 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Jeff Skirvin | cde76fb | 2011-06-20 14:09:06 -0700 | [diff] [blame] | 2994 | break; |
| 2995 | |
| 2996 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2997 | default: |
| 2998 | /* Catch any otherwise unhandled error codes here. */ |
Dan Williams | a8a0a13 | 2011-07-01 12:07:25 -0700 | [diff] [blame] | 2999 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 3000 | "%s: invalid completion code: 0x%x - " |
| 3001 | "isci_request = %p\n", |
| 3002 | __func__, completion_status, request); |
| 3003 | |
| 3004 | response = SAS_TASK_UNDELIVERED; |
| 3005 | |
| 3006 | /* See if the device has been/is being stopped. Note |
| 3007 | * that we ignore the quiesce state, since we are |
| 3008 | * concerned about the actual device state. |
| 3009 | */ |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 3010 | if (!idev) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 3011 | status = SAS_DEVICE_UNKNOWN; |
| 3012 | else |
| 3013 | status = SAS_ABORTED_TASK; |
| 3014 | |
Jeff Skirvin | cde76fb | 2011-06-20 14:09:06 -0700 | [diff] [blame] | 3015 | if (SAS_PROTOCOL_SMP == task->task_proto) { |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 3016 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Jeff Skirvin | cde76fb | 2011-06-20 14:09:06 -0700 | [diff] [blame] | 3017 | complete_to_host = isci_perform_normal_io_completion; |
| 3018 | } else { |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 3019 | clear_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
Jeff Skirvin | cde76fb | 2011-06-20 14:09:06 -0700 | [diff] [blame] | 3020 | complete_to_host = isci_perform_error_io_completion; |
| 3021 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 3022 | break; |
| 3023 | } |
| 3024 | break; |
| 3025 | } |
| 3026 | |
Dan Williams | ddcc7e3 | 2011-06-17 10:40:43 -0700 | [diff] [blame] | 3027 | switch (task->task_proto) { |
| 3028 | case SAS_PROTOCOL_SSP: |
| 3029 | if (task->data_dir == DMA_NONE) |
| 3030 | break; |
| 3031 | if (task->num_scatter == 0) |
| 3032 | /* 0 indicates a single dma address */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 3033 | dma_unmap_single(&ihost->pdev->dev, |
Dan Williams | ddcc7e3 | 2011-06-17 10:40:43 -0700 | [diff] [blame] | 3034 | request->zero_scatter_daddr, |
| 3035 | task->total_xfer_len, task->data_dir); |
| 3036 | else /* unmap the sgl dma addresses */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 3037 | dma_unmap_sg(&ihost->pdev->dev, task->scatter, |
Dan Williams | ddcc7e3 | 2011-06-17 10:40:43 -0700 | [diff] [blame] | 3038 | request->num_sg_entries, task->data_dir); |
| 3039 | break; |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3040 | case SAS_PROTOCOL_SMP: { |
| 3041 | struct scatterlist *sg = &task->smp_task.smp_req; |
| 3042 | struct smp_req *smp_req; |
| 3043 | void *kaddr; |
| 3044 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 3045 | dma_unmap_sg(&ihost->pdev->dev, sg, 1, DMA_TO_DEVICE); |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3046 | |
| 3047 | /* need to swab it back in case the command buffer is re-used */ |
| 3048 | kaddr = kmap_atomic(sg_page(sg), KM_IRQ0); |
| 3049 | smp_req = kaddr + sg->offset; |
| 3050 | sci_swab32_cpy(smp_req, smp_req, sg->length / sizeof(u32)); |
| 3051 | kunmap_atomic(kaddr, KM_IRQ0); |
| 3052 | break; |
| 3053 | } |
Dan Williams | ddcc7e3 | 2011-06-17 10:40:43 -0700 | [diff] [blame] | 3054 | default: |
| 3055 | break; |
| 3056 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 3057 | |
| 3058 | /* Put the completed request on the correct list */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 3059 | isci_task_save_for_upper_layer_completion(ihost, request, response, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 3060 | status, complete_to_host |
| 3061 | ); |
| 3062 | |
| 3063 | /* complete the io request to the core. */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3064 | sci_controller_complete_io(ihost, request->target_device, request); |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 3065 | isci_put_device(idev); |
| 3066 | |
Dan Williams | 67ea838 | 2011-05-08 11:47:15 -0700 | [diff] [blame] | 3067 | /* set terminated handle so it cannot be completed or |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 3068 | * terminated again, and to cause any calls into abort |
| 3069 | * task to recognize the already completed case. |
| 3070 | */ |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 3071 | set_bit(IREQ_TERMINATED, &request->flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 3072 | } |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3073 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3074 | static void sci_request_started_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3075 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3076 | struct isci_request *ireq = container_of(sm, typeof(*ireq), sm); |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3077 | struct domain_device *dev = ireq->target_device->domain_dev; |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3078 | enum sci_base_request_states state; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3079 | struct sas_task *task; |
| 3080 | |
| 3081 | /* XXX as hch said always creating an internal sas_task for tmf |
| 3082 | * requests would simplify the driver |
| 3083 | */ |
| 3084 | task = ireq->ttype == io_task ? isci_request_access_task(ireq) : NULL; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3085 | |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3086 | /* all unaccelerated request types (non ssp or ncq) handled with |
| 3087 | * substates |
Dan Williams | f139303 | 2011-05-10 02:28:47 -0700 | [diff] [blame] | 3088 | */ |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3089 | if (!task && dev->dev_type == SAS_END_DEV) { |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3090 | state = SCI_REQ_TASK_WAIT_TC_COMP; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3091 | } else if (!task && |
| 3092 | (isci_request_access_tmf(ireq)->tmf_code == isci_tmf_sata_srst_high || |
| 3093 | isci_request_access_tmf(ireq)->tmf_code == isci_tmf_sata_srst_low)) { |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3094 | state = SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3095 | } else if (task && task->task_proto == SAS_PROTOCOL_SMP) { |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3096 | state = SCI_REQ_SMP_WAIT_RESP; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3097 | } else if (task && sas_protocol_ata(task->task_proto) && |
| 3098 | !task->ata_task.use_ncq) { |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3099 | if (dev->sata_dev.command_set == ATAPI_COMMAND_SET && |
| 3100 | task->ata_task.fis.command == ATA_CMD_PACKET) { |
| 3101 | state = SCI_REQ_ATAPI_WAIT_H2D; |
| 3102 | } else if (task->data_dir == DMA_NONE) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3103 | state = SCI_REQ_STP_NON_DATA_WAIT_H2D; |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3104 | } else if (task->ata_task.dma_xfer) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3105 | state = SCI_REQ_STP_UDMA_WAIT_TC_COMP; |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3106 | } else /* PIO */ { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3107 | state = SCI_REQ_STP_PIO_WAIT_H2D; |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3108 | } |
| 3109 | } else { |
| 3110 | /* SSP or NCQ are fully accelerated, no substates */ |
| 3111 | return; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3112 | } |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3113 | sci_change_state(sm, state); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3114 | } |
| 3115 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3116 | static void sci_request_completed_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3117 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3118 | struct isci_request *ireq = container_of(sm, typeof(*ireq), sm); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 3119 | struct isci_host *ihost = ireq->owning_controller; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3120 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3121 | /* Tell the SCI_USER that the IO request is complete */ |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 3122 | if (!test_bit(IREQ_TMF, &ireq->flags)) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3123 | isci_request_io_request_complete(ihost, ireq, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3124 | ireq->sci_status); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3125 | else |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3126 | isci_task_request_complete(ihost, ireq, ireq->sci_status); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3127 | } |
| 3128 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3129 | static void sci_request_aborting_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3130 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3131 | struct isci_request *ireq = container_of(sm, typeof(*ireq), sm); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3132 | |
| 3133 | /* Setting the abort bit in the Task Context is required by the silicon. */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3134 | ireq->tc->abort = 1; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3135 | } |
| 3136 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3137 | static void sci_stp_request_started_non_data_await_h2d_completion_enter(struct sci_base_state_machine *sm) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3138 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3139 | struct isci_request *ireq = container_of(sm, typeof(*ireq), sm); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3140 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 3141 | ireq->target_device->working_request = ireq; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3142 | } |
| 3143 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3144 | static void sci_stp_request_started_pio_await_h2d_completion_enter(struct sci_base_state_machine *sm) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3145 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3146 | struct isci_request *ireq = container_of(sm, typeof(*ireq), sm); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3147 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 3148 | ireq->target_device->working_request = ireq; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3149 | } |
| 3150 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3151 | static void sci_stp_request_started_soft_reset_await_h2d_asserted_completion_enter(struct sci_base_state_machine *sm) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3152 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3153 | struct isci_request *ireq = container_of(sm, typeof(*ireq), sm); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3154 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 3155 | ireq->target_device->working_request = ireq; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3156 | } |
| 3157 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3158 | static void sci_stp_request_started_soft_reset_await_h2d_diagnostic_completion_enter(struct sci_base_state_machine *sm) |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3159 | { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3160 | struct isci_request *ireq = container_of(sm, typeof(*ireq), sm); |
| 3161 | struct scu_task_context *tc = ireq->tc; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3162 | struct host_to_dev_fis *h2d_fis; |
| 3163 | enum sci_status status; |
| 3164 | |
| 3165 | /* Clear the SRST bit */ |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3166 | h2d_fis = &ireq->stp.cmd; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3167 | h2d_fis->control = 0; |
| 3168 | |
| 3169 | /* Clear the TC control bit */ |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 3170 | tc->control_frame = 0; |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3171 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3172 | status = sci_controller_continue_io(ireq); |
Dan Williams | 79e2b6b | 2011-05-11 08:29:56 -0700 | [diff] [blame] | 3173 | WARN_ONCE(status != SCI_SUCCESS, "isci: continue io failure\n"); |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3174 | } |
| 3175 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3176 | static const struct sci_base_state sci_request_state_table[] = { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3177 | [SCI_REQ_INIT] = { }, |
| 3178 | [SCI_REQ_CONSTRUCTED] = { }, |
| 3179 | [SCI_REQ_STARTED] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3180 | .enter_state = sci_request_started_state_enter, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3181 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3182 | [SCI_REQ_STP_NON_DATA_WAIT_H2D] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3183 | .enter_state = sci_stp_request_started_non_data_await_h2d_completion_enter, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3184 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3185 | [SCI_REQ_STP_NON_DATA_WAIT_D2H] = { }, |
| 3186 | [SCI_REQ_STP_PIO_WAIT_H2D] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3187 | .enter_state = sci_stp_request_started_pio_await_h2d_completion_enter, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3188 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3189 | [SCI_REQ_STP_PIO_WAIT_FRAME] = { }, |
| 3190 | [SCI_REQ_STP_PIO_DATA_IN] = { }, |
| 3191 | [SCI_REQ_STP_PIO_DATA_OUT] = { }, |
| 3192 | [SCI_REQ_STP_UDMA_WAIT_TC_COMP] = { }, |
| 3193 | [SCI_REQ_STP_UDMA_WAIT_D2H] = { }, |
| 3194 | [SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3195 | .enter_state = sci_stp_request_started_soft_reset_await_h2d_asserted_completion_enter, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3196 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3197 | [SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3198 | .enter_state = sci_stp_request_started_soft_reset_await_h2d_diagnostic_completion_enter, |
Dan Williams | 5dec6f4 | 2011-05-10 02:28:49 -0700 | [diff] [blame] | 3199 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3200 | [SCI_REQ_STP_SOFT_RESET_WAIT_D2H] = { }, |
| 3201 | [SCI_REQ_TASK_WAIT_TC_COMP] = { }, |
| 3202 | [SCI_REQ_TASK_WAIT_TC_RESP] = { }, |
| 3203 | [SCI_REQ_SMP_WAIT_RESP] = { }, |
| 3204 | [SCI_REQ_SMP_WAIT_TC_COMP] = { }, |
Dan Williams | b50102d | 2011-09-30 18:52:19 -0700 | [diff] [blame] | 3205 | [SCI_REQ_ATAPI_WAIT_H2D] = { }, |
| 3206 | [SCI_REQ_ATAPI_WAIT_PIO_SETUP] = { }, |
| 3207 | [SCI_REQ_ATAPI_WAIT_D2H] = { }, |
| 3208 | [SCI_REQ_ATAPI_WAIT_TC_COMP] = { }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3209 | [SCI_REQ_COMPLETED] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3210 | .enter_state = sci_request_completed_state_enter, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3211 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3212 | [SCI_REQ_ABORTING] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3213 | .enter_state = sci_request_aborting_state_enter, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3214 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3215 | [SCI_REQ_FINAL] = { }, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3216 | }; |
| 3217 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 3218 | static void |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3219 | sci_general_request_construct(struct isci_host *ihost, |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3220 | struct isci_remote_device *idev, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3221 | struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3222 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3223 | sci_init_sm(&ireq->sm, sci_request_state_table, SCI_REQ_INIT); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3224 | |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3225 | ireq->target_device = idev; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3226 | ireq->protocol = SCIC_NO_PROTOCOL; |
| 3227 | ireq->saved_rx_frame_index = SCU_INVALID_FRAME_INDEX; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3228 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3229 | ireq->sci_status = SCI_SUCCESS; |
| 3230 | ireq->scu_status = 0; |
| 3231 | ireq->post_context = 0xFFFFFFFF; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3232 | } |
| 3233 | |
| 3234 | static enum sci_status |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3235 | sci_io_request_construct(struct isci_host *ihost, |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3236 | struct isci_remote_device *idev, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3237 | struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3238 | { |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3239 | struct domain_device *dev = idev->domain_dev; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3240 | enum sci_status status = SCI_SUCCESS; |
| 3241 | |
| 3242 | /* Build the common part of the request */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3243 | sci_general_request_construct(ihost, idev, ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3244 | |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3245 | if (idev->rnc.remote_node_index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3246 | return SCI_FAILURE_INVALID_REMOTE_DEVICE; |
| 3247 | |
| 3248 | if (dev->dev_type == SAS_END_DEV) |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3249 | /* pass */; |
| 3250 | else if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3251 | memset(&ireq->stp.cmd, 0, sizeof(ireq->stp.cmd)); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3252 | else if (dev_is_expander(dev)) |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3253 | /* pass */; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3254 | else |
| 3255 | return SCI_FAILURE_UNSUPPORTED_PROTOCOL; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3256 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3257 | memset(ireq->tc, 0, offsetof(struct scu_task_context, sgl_pair_ab)); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3258 | |
| 3259 | return status; |
| 3260 | } |
| 3261 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3262 | enum sci_status sci_task_request_construct(struct isci_host *ihost, |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3263 | struct isci_remote_device *idev, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3264 | u16 io_tag, struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3265 | { |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3266 | struct domain_device *dev = idev->domain_dev; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3267 | enum sci_status status = SCI_SUCCESS; |
| 3268 | |
| 3269 | /* Build the common part of the request */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3270 | sci_general_request_construct(ihost, idev, ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3271 | |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3272 | if (dev->dev_type == SAS_END_DEV || |
| 3273 | dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) { |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3274 | set_bit(IREQ_TMF, &ireq->flags); |
| 3275 | memset(ireq->tc, 0, sizeof(struct scu_task_context)); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3276 | } else |
| 3277 | status = SCI_FAILURE_UNSUPPORTED_PROTOCOL; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3278 | |
| 3279 | return status; |
| 3280 | } |
| 3281 | |
| 3282 | static enum sci_status isci_request_ssp_request_construct( |
| 3283 | struct isci_request *request) |
| 3284 | { |
| 3285 | enum sci_status status; |
| 3286 | |
| 3287 | dev_dbg(&request->isci_host->pdev->dev, |
| 3288 | "%s: request = %p\n", |
| 3289 | __func__, |
| 3290 | request); |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3291 | status = sci_io_request_construct_basic_ssp(request); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3292 | return status; |
| 3293 | } |
| 3294 | |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 3295 | static enum sci_status isci_request_stp_request_construct(struct isci_request *ireq) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3296 | { |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 3297 | struct sas_task *task = isci_request_access_task(ireq); |
| 3298 | struct host_to_dev_fis *fis = &ireq->stp.cmd; |
| 3299 | struct ata_queued_cmd *qc = task->uldd_task; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3300 | enum sci_status status; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3301 | |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 3302 | dev_dbg(&ireq->isci_host->pdev->dev, |
| 3303 | "%s: ireq = %p\n", |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3304 | __func__, |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 3305 | ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3306 | |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 3307 | memcpy(fis, &task->ata_task.fis, sizeof(struct host_to_dev_fis)); |
| 3308 | if (!task->ata_task.device_control_reg_update) |
| 3309 | fis->flags |= 0x80; |
| 3310 | fis->flags &= 0xF0; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3311 | |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 3312 | status = sci_io_request_construct_basic_sata(ireq); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3313 | |
Dan Williams | 16ba770 | 2011-07-01 10:52:55 -0700 | [diff] [blame] | 3314 | if (qc && (qc->tf.command == ATA_CMD_FPDMA_WRITE || |
| 3315 | qc->tf.command == ATA_CMD_FPDMA_READ)) { |
| 3316 | fis->sector_count = qc->tag << 3; |
| 3317 | ireq->tc->type.stp.ncq_tag = qc->tag; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3318 | } |
| 3319 | |
| 3320 | return status; |
| 3321 | } |
| 3322 | |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3323 | static enum sci_status |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3324 | sci_io_request_construct_smp(struct device *dev, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3325 | struct isci_request *ireq, |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3326 | struct sas_task *task) |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3327 | { |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3328 | struct scatterlist *sg = &task->smp_task.smp_req; |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3329 | struct isci_remote_device *idev; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3330 | struct scu_task_context *task_context; |
Dan Williams | ffe191c | 2011-06-29 13:09:25 -0700 | [diff] [blame] | 3331 | struct isci_port *iport; |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3332 | struct smp_req *smp_req; |
| 3333 | void *kaddr; |
| 3334 | u8 req_len; |
| 3335 | u32 cmd; |
| 3336 | |
| 3337 | kaddr = kmap_atomic(sg_page(sg), KM_IRQ0); |
| 3338 | smp_req = kaddr + sg->offset; |
| 3339 | /* |
| 3340 | * Look at the SMP requests' header fields; for certain SAS 1.x SMP |
| 3341 | * functions under SAS 2.0, a zero request length really indicates |
| 3342 | * a non-zero default length. |
| 3343 | */ |
| 3344 | if (smp_req->req_len == 0) { |
| 3345 | switch (smp_req->func) { |
| 3346 | case SMP_DISCOVER: |
| 3347 | case SMP_REPORT_PHY_ERR_LOG: |
| 3348 | case SMP_REPORT_PHY_SATA: |
| 3349 | case SMP_REPORT_ROUTE_INFO: |
| 3350 | smp_req->req_len = 2; |
| 3351 | break; |
| 3352 | case SMP_CONF_ROUTE_INFO: |
| 3353 | case SMP_PHY_CONTROL: |
| 3354 | case SMP_PHY_TEST_FUNCTION: |
| 3355 | smp_req->req_len = 9; |
| 3356 | break; |
| 3357 | /* Default - zero is a valid default for 2.0. */ |
| 3358 | } |
| 3359 | } |
| 3360 | req_len = smp_req->req_len; |
| 3361 | sci_swab32_cpy(smp_req, smp_req, sg->length / sizeof(u32)); |
| 3362 | cmd = *(u32 *) smp_req; |
| 3363 | kunmap_atomic(kaddr, KM_IRQ0); |
| 3364 | |
| 3365 | if (!dma_map_sg(dev, sg, 1, DMA_TO_DEVICE)) |
| 3366 | return SCI_FAILURE; |
| 3367 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3368 | ireq->protocol = SCIC_SMP_PROTOCOL; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3369 | |
| 3370 | /* byte swap the smp request. */ |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3371 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3372 | task_context = ireq->tc; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3373 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 3374 | idev = ireq->target_device; |
| 3375 | iport = idev->owning_port; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3376 | |
| 3377 | /* |
| 3378 | * Fill in the TC with the its required data |
| 3379 | * 00h |
| 3380 | */ |
| 3381 | task_context->priority = 0; |
| 3382 | task_context->initiator_request = 1; |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3383 | task_context->connection_rate = idev->connection_rate; |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 3384 | task_context->protocol_engine_index = ISCI_PEG; |
| 3385 | task_context->logical_port_index = iport->physical_port_index; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3386 | task_context->protocol_type = SCU_TASK_CONTEXT_PROTOCOL_SMP; |
| 3387 | task_context->abort = 0; |
| 3388 | task_context->valid = SCU_TASK_CONTEXT_VALID; |
| 3389 | task_context->context_type = SCU_TASK_CONTEXT_TYPE; |
| 3390 | |
| 3391 | /* 04h */ |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3392 | task_context->remote_node_index = idev->rnc.remote_node_index; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3393 | task_context->command_code = 0; |
| 3394 | task_context->task_type = SCU_TASK_TYPE_SMP_REQUEST; |
| 3395 | |
| 3396 | /* 08h */ |
| 3397 | task_context->link_layer_control = 0; |
| 3398 | task_context->do_not_dma_ssp_good_response = 1; |
| 3399 | task_context->strict_ordering = 0; |
| 3400 | task_context->control_frame = 1; |
| 3401 | task_context->timeout_enable = 0; |
| 3402 | task_context->block_guard_enable = 0; |
| 3403 | |
| 3404 | /* 0ch */ |
| 3405 | task_context->address_modifier = 0; |
| 3406 | |
| 3407 | /* 10h */ |
Dave Jiang | 77d6738 | 2011-05-25 02:21:57 +0000 | [diff] [blame] | 3408 | task_context->ssp_command_iu_length = req_len; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3409 | |
| 3410 | /* 14h */ |
| 3411 | task_context->transfer_length_bytes = 0; |
| 3412 | |
| 3413 | /* |
| 3414 | * 18h ~ 30h, protocol specific |
| 3415 | * since commandIU has been build by framework at this point, we just |
| 3416 | * copy the frist DWord from command IU to this location. */ |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3417 | memcpy(&task_context->type.smp, &cmd, sizeof(u32)); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3418 | |
| 3419 | /* |
| 3420 | * 40h |
| 3421 | * "For SMP you could program it to zero. We would prefer that way |
| 3422 | * so that done code will be consistent." - Venki |
| 3423 | */ |
| 3424 | task_context->task_phase = 0; |
| 3425 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3426 | ireq->post_context = (SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 3427 | (ISCI_PEG << SCU_CONTEXT_COMMAND_PROTOCOL_ENGINE_GROUP_SHIFT) | |
| 3428 | (iport->physical_port_index << |
| 3429 | SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT) | |
| 3430 | ISCI_TAG_TCI(ireq->io_tag)); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3431 | /* |
| 3432 | * Copy the physical address for the command buffer to the SCU Task |
| 3433 | * Context command buffer should not contain command header. |
| 3434 | */ |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3435 | task_context->command_iu_upper = upper_32_bits(sg_dma_address(sg)); |
| 3436 | task_context->command_iu_lower = lower_32_bits(sg_dma_address(sg) + sizeof(u32)); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3437 | |
| 3438 | /* SMP response comes as UF, so no need to set response IU address. */ |
| 3439 | task_context->response_iu_upper = 0; |
| 3440 | task_context->response_iu_lower = 0; |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3441 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3442 | sci_change_state(&ireq->sm, SCI_REQ_CONSTRUCTED); |
Dan Williams | c72086e | 2011-05-10 02:28:48 -0700 | [diff] [blame] | 3443 | |
| 3444 | return SCI_SUCCESS; |
| 3445 | } |
| 3446 | |
| 3447 | /* |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3448 | * isci_smp_request_build() - This function builds the smp request. |
| 3449 | * @ireq: This parameter points to the isci_request allocated in the |
| 3450 | * request construct function. |
| 3451 | * |
| 3452 | * SCI_SUCCESS on successfull completion, or specific failure code. |
| 3453 | */ |
| 3454 | static enum sci_status isci_smp_request_build(struct isci_request *ireq) |
| 3455 | { |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3456 | struct sas_task *task = isci_request_access_task(ireq); |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3457 | struct device *dev = &ireq->isci_host->pdev->dev; |
Dan Williams | e9bf709 | 2011-06-16 16:59:56 -0700 | [diff] [blame] | 3458 | enum sci_status status = SCI_FAILURE; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3459 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3460 | status = sci_io_request_construct_smp(dev, ireq, task); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3461 | if (status != SCI_SUCCESS) |
Dan Williams | a8a0a13 | 2011-07-01 12:07:25 -0700 | [diff] [blame] | 3462 | dev_dbg(&ireq->isci_host->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3463 | "%s: failed with status = %d\n", |
| 3464 | __func__, |
| 3465 | status); |
| 3466 | |
| 3467 | return status; |
| 3468 | } |
| 3469 | |
| 3470 | /** |
| 3471 | * isci_io_request_build() - This function builds the io request object. |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 3472 | * @ihost: This parameter specifies the ISCI host object |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3473 | * @request: This parameter points to the isci_request object allocated in the |
| 3474 | * request construct function. |
| 3475 | * @sci_device: This parameter is the handle for the sci core's remote device |
| 3476 | * object that is the destination for this request. |
| 3477 | * |
| 3478 | * SCI_SUCCESS on successfull completion, or specific failure code. |
| 3479 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 3480 | static enum sci_status isci_io_request_build(struct isci_host *ihost, |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 3481 | struct isci_request *request, |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3482 | struct isci_remote_device *idev) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3483 | { |
| 3484 | enum sci_status status = SCI_SUCCESS; |
| 3485 | struct sas_task *task = isci_request_access_task(request); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3486 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 3487 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3488 | "%s: idev = 0x%p; request = %p, " |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3489 | "num_scatter = %d\n", |
| 3490 | __func__, |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3491 | idev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3492 | request, |
| 3493 | task->num_scatter); |
| 3494 | |
| 3495 | /* map the sgl addresses, if present. |
| 3496 | * libata does the mapping for sata devices |
| 3497 | * before we get the request. |
| 3498 | */ |
| 3499 | if (task->num_scatter && |
| 3500 | !sas_protocol_ata(task->task_proto) && |
| 3501 | !(SAS_PROTOCOL_SMP & task->task_proto)) { |
| 3502 | |
| 3503 | request->num_sg_entries = dma_map_sg( |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 3504 | &ihost->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3505 | task->scatter, |
| 3506 | task->num_scatter, |
| 3507 | task->data_dir |
| 3508 | ); |
| 3509 | |
| 3510 | if (request->num_sg_entries == 0) |
| 3511 | return SCI_FAILURE_INSUFFICIENT_RESOURCES; |
| 3512 | } |
| 3513 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3514 | status = sci_io_request_construct(ihost, idev, request); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3515 | |
| 3516 | if (status != SCI_SUCCESS) { |
Dan Williams | a8a0a13 | 2011-07-01 12:07:25 -0700 | [diff] [blame] | 3517 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3518 | "%s: failed request construct\n", |
| 3519 | __func__); |
| 3520 | return SCI_FAILURE; |
| 3521 | } |
| 3522 | |
| 3523 | switch (task->task_proto) { |
| 3524 | case SAS_PROTOCOL_SMP: |
| 3525 | status = isci_smp_request_build(request); |
| 3526 | break; |
| 3527 | case SAS_PROTOCOL_SSP: |
| 3528 | status = isci_request_ssp_request_construct(request); |
| 3529 | break; |
| 3530 | case SAS_PROTOCOL_SATA: |
| 3531 | case SAS_PROTOCOL_STP: |
| 3532 | case SAS_PROTOCOL_SATA | SAS_PROTOCOL_STP: |
| 3533 | status = isci_request_stp_request_construct(request); |
| 3534 | break; |
| 3535 | default: |
Dan Williams | a8a0a13 | 2011-07-01 12:07:25 -0700 | [diff] [blame] | 3536 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3537 | "%s: unknown protocol\n", __func__); |
| 3538 | return SCI_FAILURE; |
| 3539 | } |
| 3540 | |
| 3541 | return SCI_SUCCESS; |
| 3542 | } |
| 3543 | |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3544 | static struct isci_request *isci_request_from_tag(struct isci_host *ihost, u16 tag) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3545 | { |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3546 | struct isci_request *ireq; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3547 | |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3548 | ireq = ihost->reqs[ISCI_TAG_TCI(tag)]; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3549 | ireq->io_tag = tag; |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3550 | ireq->io_request_completion = NULL; |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 3551 | ireq->flags = 0; |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3552 | ireq->num_sg_entries = 0; |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3553 | INIT_LIST_HEAD(&ireq->completed_node); |
| 3554 | INIT_LIST_HEAD(&ireq->dev_node); |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3555 | isci_request_change_state(ireq, allocated); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3556 | |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3557 | return ireq; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3558 | } |
| 3559 | |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3560 | static struct isci_request *isci_io_request_from_tag(struct isci_host *ihost, |
| 3561 | struct sas_task *task, |
| 3562 | u16 tag) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3563 | { |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3564 | struct isci_request *ireq; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3565 | |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3566 | ireq = isci_request_from_tag(ihost, tag); |
| 3567 | ireq->ttype_ptr.io_task_ptr = task; |
| 3568 | ireq->ttype = io_task; |
| 3569 | task->lldd_task = ireq; |
| 3570 | |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3571 | return ireq; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3572 | } |
| 3573 | |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3574 | struct isci_request *isci_tmf_request_from_tag(struct isci_host *ihost, |
| 3575 | struct isci_tmf *isci_tmf, |
| 3576 | u16 tag) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3577 | { |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3578 | struct isci_request *ireq; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3579 | |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3580 | ireq = isci_request_from_tag(ihost, tag); |
| 3581 | ireq->ttype_ptr.tmf_task_ptr = isci_tmf; |
| 3582 | ireq->ttype = tmf_task; |
| 3583 | |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3584 | return ireq; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3585 | } |
| 3586 | |
Dan Williams | 209fae1 | 2011-06-13 17:39:44 -0700 | [diff] [blame] | 3587 | int isci_request_execute(struct isci_host *ihost, struct isci_remote_device *idev, |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3588 | struct sas_task *task, u16 tag) |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3589 | { |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3590 | enum sci_status status = SCI_FAILURE_UNSUPPORTED_PROTOCOL; |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3591 | struct isci_request *ireq; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3592 | unsigned long flags; |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3593 | int ret = 0; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3594 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3595 | /* do common allocation and init of request object. */ |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3596 | ireq = isci_io_request_from_tag(ihost, task, tag); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3597 | |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3598 | status = isci_io_request_build(ihost, ireq, idev); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3599 | if (status != SCI_SUCCESS) { |
Dan Williams | a8a0a13 | 2011-07-01 12:07:25 -0700 | [diff] [blame] | 3600 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3601 | "%s: request_construct failed - status = 0x%x\n", |
| 3602 | __func__, |
| 3603 | status); |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3604 | return status; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3605 | } |
| 3606 | |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3607 | spin_lock_irqsave(&ihost->scic_lock, flags); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3608 | |
Jeff Skirvin | 9274f45 | 2011-06-23 17:09:02 -0700 | [diff] [blame] | 3609 | if (test_bit(IDEV_IO_NCQERROR, &idev->flags)) { |
| 3610 | |
| 3611 | if (isci_task_is_ncq_recovery(task)) { |
| 3612 | |
| 3613 | /* The device is in an NCQ recovery state. Issue the |
| 3614 | * request on the task side. Note that it will |
| 3615 | * complete on the I/O request side because the |
| 3616 | * request was built that way (ie. |
| 3617 | * ireq->is_task_management_request is false). |
| 3618 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3619 | status = sci_controller_start_task(ihost, |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 3620 | idev, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3621 | ireq); |
Jeff Skirvin | 9274f45 | 2011-06-23 17:09:02 -0700 | [diff] [blame] | 3622 | } else { |
| 3623 | status = SCI_FAILURE; |
| 3624 | } |
| 3625 | } else { |
Jeff Skirvin | 9274f45 | 2011-06-23 17:09:02 -0700 | [diff] [blame] | 3626 | /* send the request, let the core assign the IO TAG. */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 3627 | status = sci_controller_start_io(ihost, idev, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 3628 | ireq); |
Jeff Skirvin | 9274f45 | 2011-06-23 17:09:02 -0700 | [diff] [blame] | 3629 | } |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 3630 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3631 | if (status != SCI_SUCCESS && |
| 3632 | status != SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED) { |
Dan Williams | a8a0a13 | 2011-07-01 12:07:25 -0700 | [diff] [blame] | 3633 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3634 | "%s: failed request start (0x%x)\n", |
| 3635 | __func__, status); |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3636 | spin_unlock_irqrestore(&ihost->scic_lock, flags); |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 3637 | return status; |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3638 | } |
| 3639 | |
| 3640 | /* Either I/O started OK, or the core has signaled that |
| 3641 | * the device needs a target reset. |
| 3642 | * |
| 3643 | * In either case, hold onto the I/O for later. |
| 3644 | * |
| 3645 | * Update it's status and add it to the list in the |
| 3646 | * remote device object. |
| 3647 | */ |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3648 | list_add(&ireq->dev_node, &idev->reqs_in_process); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3649 | |
| 3650 | if (status == SCI_SUCCESS) { |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3651 | isci_request_change_state(ireq, started); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3652 | } else { |
| 3653 | /* The request did not really start in the |
| 3654 | * hardware, so clear the request handle |
| 3655 | * here so no terminations will be done. |
| 3656 | */ |
Dan Williams | 38d8879 | 2011-06-23 14:33:48 -0700 | [diff] [blame] | 3657 | set_bit(IREQ_TERMINATED, &ireq->flags); |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3658 | isci_request_change_state(ireq, completed); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3659 | } |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3660 | spin_unlock_irqrestore(&ihost->scic_lock, flags); |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3661 | |
| 3662 | if (status == |
| 3663 | SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED) { |
| 3664 | /* Signal libsas that we need the SCSI error |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 3665 | * handler thread to work on this I/O and that |
| 3666 | * we want a device reset. |
| 3667 | */ |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3668 | spin_lock_irqsave(&task->task_state_lock, flags); |
| 3669 | task->task_state_flags |= SAS_TASK_NEED_DEV_RESET; |
| 3670 | spin_unlock_irqrestore(&task->task_state_lock, flags); |
| 3671 | |
| 3672 | /* Cause this task to be scheduled in the SCSI error |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 3673 | * handler thread. |
| 3674 | */ |
Dan Williams | 0d0cf14 | 2011-06-13 00:51:30 -0700 | [diff] [blame] | 3675 | isci_execpath_callback(ihost, task, |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3676 | sas_task_abort); |
| 3677 | |
| 3678 | /* Change the status, since we are holding |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 3679 | * the I/O until it is managed by the SCSI |
| 3680 | * error handler. |
| 3681 | */ |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3682 | status = SCI_SUCCESS; |
| 3683 | } |
| 3684 | |
Dan Williams | f1f52e7 | 2011-05-10 02:28:45 -0700 | [diff] [blame] | 3685 | return ret; |
| 3686 | } |