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 <linux/completion.h> |
| 57 | #include "scic_task_request.h" |
| 58 | #include "scic_remote_device.h" |
| 59 | #include "scic_io_request.h" |
| 60 | #include "scic_sds_remote_device.h" |
| 61 | #include "scic_sds_remote_node_context.h" |
| 62 | #include "isci.h" |
| 63 | #include "request.h" |
| 64 | #include "sata.h" |
| 65 | #include "task.h" |
| 66 | |
| 67 | |
| 68 | /** |
| 69 | * isci_task_execute_task() - This function is one of the SAS Domain Template |
| 70 | * functions. This function is called by libsas to send a task down to |
| 71 | * hardware. |
| 72 | * @task: This parameter specifies the SAS task to send. |
| 73 | * @num: This parameter specifies the number of tasks to queue. |
| 74 | * @gfp_flags: This parameter specifies the context of this call. |
| 75 | * |
| 76 | * status, zero indicates success. |
| 77 | */ |
| 78 | int isci_task_execute_task(struct sas_task *task, int num, gfp_t gfp_flags) |
| 79 | { |
| 80 | struct isci_host *isci_host; |
| 81 | struct isci_request *request = NULL; |
| 82 | struct isci_remote_device *device; |
| 83 | unsigned long flags; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 84 | int ret; |
| 85 | enum sci_status status; |
| 86 | |
| 87 | |
| 88 | dev_dbg(task->dev->port->ha->dev, "%s: num=%d\n", __func__, num); |
| 89 | |
| 90 | if (task->task_state_flags & SAS_TASK_STATE_ABORTED) { |
| 91 | |
| 92 | isci_task_complete_for_upper_layer( |
| 93 | task, |
| 94 | SAS_TASK_UNDELIVERED, |
| 95 | SAM_STAT_TASK_ABORTED, |
| 96 | isci_perform_normal_io_completion |
| 97 | ); |
| 98 | |
| 99 | return 0; /* The I/O was accepted (and failed). */ |
| 100 | } |
| 101 | if ((task->dev == NULL) || (task->dev->port == NULL)) { |
| 102 | |
| 103 | /* Indicate SAS_TASK_UNDELIVERED, so that the scsi midlayer |
| 104 | * removes the target. |
| 105 | */ |
| 106 | isci_task_complete_for_upper_layer( |
| 107 | task, |
| 108 | SAS_TASK_UNDELIVERED, |
| 109 | SAS_DEVICE_UNKNOWN, |
| 110 | isci_perform_normal_io_completion |
| 111 | ); |
| 112 | return 0; /* The I/O was accepted (and failed). */ |
| 113 | } |
| 114 | isci_host = isci_host_from_sas_ha(task->dev->port->ha); |
| 115 | |
| 116 | /* Check if we have room for more tasks */ |
| 117 | ret = isci_host_can_queue(isci_host, num); |
| 118 | |
| 119 | if (ret) { |
| 120 | dev_warn(task->dev->port->ha->dev, "%s: queue full\n", __func__); |
| 121 | return ret; |
| 122 | } |
| 123 | |
| 124 | do { |
| 125 | dev_dbg(task->dev->port->ha->dev, |
| 126 | "task = %p, num = %d; dev = %p; cmd = %p\n", |
| 127 | task, num, task->dev, task->uldd_task); |
| 128 | |
| 129 | if ((task->dev == NULL) || (task->dev->port == NULL)) { |
| 130 | dev_warn(task->dev->port->ha->dev, |
| 131 | "%s: task %p's port or dev == NULL!\n", |
| 132 | __func__, task); |
| 133 | |
| 134 | /* Indicate SAS_TASK_UNDELIVERED, so that the scsi |
| 135 | * midlayer removes the target. |
| 136 | */ |
| 137 | isci_task_complete_for_upper_layer( |
| 138 | task, |
| 139 | SAS_TASK_UNDELIVERED, |
| 140 | SAS_DEVICE_UNKNOWN, |
| 141 | isci_perform_normal_io_completion |
| 142 | ); |
| 143 | /* We don't have a valid host reference, so we |
| 144 | * can't control the host queueing condition. |
| 145 | */ |
| 146 | continue; |
| 147 | } |
| 148 | |
| 149 | device = isci_dev_from_domain_dev(task->dev); |
| 150 | |
| 151 | isci_host = isci_host_from_sas_ha(task->dev->port->ha); |
| 152 | |
Dan Williams | 8acaec1 | 2011-03-07 14:47:35 -0800 | [diff] [blame] | 153 | if (device && device->status == isci_ready) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 154 | |
| 155 | /* Forces a retry from scsi mid layer. */ |
| 156 | dev_warn(task->dev->port->ha->dev, |
| 157 | "%s: task %p: isci_host->status = %d, " |
| 158 | "device = %p\n", |
| 159 | __func__, |
| 160 | task, |
| 161 | isci_host_get_state(isci_host), |
| 162 | device); |
| 163 | |
| 164 | if (device) |
| 165 | dev_dbg(task->dev->port->ha->dev, |
| 166 | "%s: device->status = 0x%x\n", |
Dan Williams | 8acaec1 | 2011-03-07 14:47:35 -0800 | [diff] [blame] | 167 | __func__, device->status); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 168 | |
| 169 | /* Indicate QUEUE_FULL so that the scsi midlayer |
| 170 | * retries. |
| 171 | */ |
| 172 | isci_task_complete_for_upper_layer( |
| 173 | task, |
| 174 | SAS_TASK_COMPLETE, |
| 175 | SAS_QUEUE_FULL, |
| 176 | isci_perform_normal_io_completion |
| 177 | ); |
| 178 | isci_host_can_dequeue(isci_host, 1); |
| 179 | } |
| 180 | /* the device is going down... */ |
Dan Williams | 8acaec1 | 2011-03-07 14:47:35 -0800 | [diff] [blame] | 181 | else if (!device || device->status != isci_ready_for_io) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 182 | |
| 183 | dev_dbg(task->dev->port->ha->dev, |
| 184 | "%s: task %p: isci_host->status = %d, " |
| 185 | "device = %p\n", |
| 186 | __func__, |
| 187 | task, |
| 188 | isci_host_get_state(isci_host), |
| 189 | device); |
| 190 | |
| 191 | if (device) |
| 192 | dev_dbg(task->dev->port->ha->dev, |
| 193 | "%s: device->status = 0x%x\n", |
Dan Williams | 8acaec1 | 2011-03-07 14:47:35 -0800 | [diff] [blame] | 194 | __func__, device->status); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 195 | |
| 196 | /* Indicate SAS_TASK_UNDELIVERED, so that the scsi |
| 197 | * midlayer removes the target. |
| 198 | */ |
| 199 | isci_task_complete_for_upper_layer( |
| 200 | task, |
| 201 | SAS_TASK_UNDELIVERED, |
| 202 | SAS_DEVICE_UNKNOWN, |
| 203 | isci_perform_normal_io_completion |
| 204 | ); |
| 205 | isci_host_can_dequeue(isci_host, 1); |
| 206 | |
| 207 | } else { |
| 208 | /* build and send the request. */ |
| 209 | status = isci_request_execute(isci_host, task, &request, |
| 210 | gfp_flags); |
| 211 | |
| 212 | if (status == SCI_SUCCESS) { |
| 213 | spin_lock_irqsave(&task->task_state_lock, flags); |
| 214 | task->task_state_flags |= SAS_TASK_AT_INITIATOR; |
| 215 | spin_unlock_irqrestore(&task->task_state_lock, flags); |
| 216 | } else { |
| 217 | /* Indicate QUEUE_FULL so that the scsi |
| 218 | * midlayer retries. if the request |
| 219 | * failed for remote device reasons, |
| 220 | * it gets returned as |
| 221 | * SAS_TASK_UNDELIVERED next time |
| 222 | * through. |
| 223 | */ |
| 224 | isci_task_complete_for_upper_layer( |
| 225 | task, |
| 226 | SAS_TASK_COMPLETE, |
| 227 | SAS_QUEUE_FULL, |
| 228 | isci_perform_normal_io_completion |
| 229 | ); |
| 230 | isci_host_can_dequeue(isci_host, 1); |
| 231 | } |
| 232 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 233 | task = list_entry(task->list.next, struct sas_task, list); |
| 234 | } while (--num > 0); |
| 235 | return 0; |
| 236 | } |
| 237 | |
| 238 | |
| 239 | |
| 240 | /** |
| 241 | * isci_task_request_build() - This function builds the task request object. |
| 242 | * @isci_host: This parameter specifies the ISCI host object |
| 243 | * @request: This parameter points to the isci_request object allocated in the |
| 244 | * request construct function. |
| 245 | * @tmf: This parameter is the task management struct to be built |
| 246 | * |
| 247 | * SCI_SUCCESS on successfull completion, or specific failure code. |
| 248 | */ |
| 249 | static enum sci_status isci_task_request_build( |
| 250 | struct isci_host *isci_host, |
| 251 | struct isci_request **isci_request, |
| 252 | struct isci_tmf *isci_tmf) |
| 253 | { |
| 254 | struct scic_sds_remote_device *sci_device; |
| 255 | enum sci_status status = SCI_FAILURE; |
| 256 | struct isci_request *request; |
| 257 | struct isci_remote_device *isci_device; |
| 258 | /* struct sci_sas_identify_address_frame_protocols dev_protocols; */ |
| 259 | struct smp_discover_response_protocols dev_protocols; |
| 260 | |
| 261 | |
| 262 | dev_dbg(&isci_host->pdev->dev, |
| 263 | "%s: isci_tmf = %p\n", __func__, isci_tmf); |
| 264 | |
| 265 | isci_device = isci_tmf->device; |
Dan Williams | 3a97eec | 2011-03-04 11:51:43 -0800 | [diff] [blame] | 266 | sci_device = to_sci_dev(isci_device); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 267 | |
| 268 | /* do common allocation and init of request object. */ |
| 269 | status = isci_request_alloc_tmf( |
| 270 | isci_host, |
| 271 | isci_tmf, |
| 272 | &request, |
| 273 | isci_device, |
| 274 | GFP_ATOMIC |
| 275 | ); |
| 276 | |
| 277 | if (status != SCI_SUCCESS) |
| 278 | goto out; |
| 279 | |
| 280 | /* let the core do it's construct. */ |
| 281 | status = scic_task_request_construct( |
| 282 | isci_host->core_controller, |
| 283 | sci_device, |
| 284 | SCI_CONTROLLER_INVALID_IO_TAG, |
| 285 | request, |
| 286 | request->sci_request_mem_ptr, |
| 287 | &request->sci_request_handle |
| 288 | ); |
| 289 | |
| 290 | if (status != SCI_SUCCESS) { |
| 291 | dev_warn(&isci_host->pdev->dev, |
| 292 | "%s: scic_task_request_construct failed - " |
| 293 | "status = 0x%x\n", |
| 294 | __func__, |
| 295 | status); |
| 296 | goto errout; |
| 297 | } |
| 298 | |
| 299 | sci_object_set_association( |
| 300 | request->sci_request_handle, |
| 301 | request |
| 302 | ); |
| 303 | |
| 304 | scic_remote_device_get_protocols( |
| 305 | sci_device, |
| 306 | &dev_protocols |
| 307 | ); |
| 308 | |
| 309 | /* let the core do it's protocol |
| 310 | * specific construction. |
| 311 | */ |
| 312 | if (dev_protocols.u.bits.attached_ssp_target) { |
| 313 | |
| 314 | isci_tmf->proto = SAS_PROTOCOL_SSP; |
| 315 | status = scic_task_request_construct_ssp( |
| 316 | request->sci_request_handle |
| 317 | ); |
| 318 | if (status != SCI_SUCCESS) |
| 319 | goto errout; |
| 320 | } |
| 321 | |
| 322 | if (dev_protocols.u.bits.attached_stp_target) { |
| 323 | |
| 324 | isci_tmf->proto = SAS_PROTOCOL_SATA; |
| 325 | status = isci_sata_management_task_request_build(request); |
| 326 | |
| 327 | if (status != SCI_SUCCESS) |
| 328 | goto errout; |
| 329 | } |
| 330 | |
| 331 | goto out; |
| 332 | |
| 333 | errout: |
| 334 | |
| 335 | /* release the dma memory if we fail. */ |
| 336 | isci_request_free(isci_host, request); |
| 337 | request = NULL; |
| 338 | |
| 339 | out: |
| 340 | *isci_request = request; |
| 341 | return status; |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * isci_tmf_timeout_cb() - This function is called as a kernel callback when |
| 346 | * the timeout period for the TMF has expired. |
| 347 | * |
| 348 | * |
| 349 | */ |
| 350 | static void isci_tmf_timeout_cb(void *tmf_request_arg) |
| 351 | { |
| 352 | struct isci_request *request = (struct isci_request *)tmf_request_arg; |
| 353 | struct isci_tmf *tmf = isci_request_access_tmf(request); |
| 354 | enum sci_status status; |
| 355 | |
| 356 | BUG_ON(request->ttype != tmf_task); |
| 357 | |
| 358 | /* This task management request has timed-out. Terminate the request |
| 359 | * so that the request eventually completes to the requestor in the |
| 360 | * request completion callback path. |
| 361 | */ |
| 362 | /* Note - the timer callback function itself has provided spinlock |
| 363 | * exclusion from the start and completion paths. No need to take |
| 364 | * the request->isci_host->scic_lock here. |
| 365 | */ |
| 366 | |
| 367 | if (tmf->timeout_timer != NULL) { |
| 368 | /* Call the users callback, if any. */ |
| 369 | if (tmf->cb_state_func != NULL) |
| 370 | tmf->cb_state_func(isci_tmf_timed_out, tmf, |
| 371 | tmf->cb_data); |
| 372 | |
| 373 | /* Terminate the TMF transmit request. */ |
| 374 | status = scic_controller_terminate_request( |
| 375 | request->isci_host->core_controller, |
Dan Williams | 3a97eec | 2011-03-04 11:51:43 -0800 | [diff] [blame] | 376 | to_sci_dev(request->isci_device), |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 377 | request->sci_request_handle |
| 378 | ); |
| 379 | |
| 380 | dev_dbg(&request->isci_host->pdev->dev, |
| 381 | "%s: tmf_request = %p; tmf = %p; status = %d\n", |
| 382 | __func__, request, tmf, status); |
| 383 | } else |
| 384 | dev_dbg(&request->isci_host->pdev->dev, |
| 385 | "%s: timer already canceled! " |
| 386 | "tmf_request = %p; tmf = %p\n", |
| 387 | __func__, request, tmf); |
| 388 | |
| 389 | /* No need to unlock since the caller to this callback is doing it for |
| 390 | * us. |
| 391 | * request->isci_host->scic_lock |
| 392 | */ |
| 393 | } |
| 394 | |
| 395 | /** |
| 396 | * isci_task_execute_tmf() - This function builds and sends a task request, |
| 397 | * then waits for the completion. |
| 398 | * @isci_host: This parameter specifies the ISCI host object |
| 399 | * @tmf: This parameter is the pointer to the task management structure for |
| 400 | * this request. |
| 401 | * @timeout_ms: This parameter specifies the timeout period for the task |
| 402 | * management request. |
| 403 | * |
| 404 | * TMF_RESP_FUNC_COMPLETE on successful completion of the TMF (this includes |
| 405 | * error conditions reported in the IU status), or TMF_RESP_FUNC_FAILED. |
| 406 | */ |
| 407 | int isci_task_execute_tmf( |
| 408 | struct isci_host *isci_host, |
| 409 | struct isci_tmf *tmf, |
| 410 | unsigned long timeout_ms) |
| 411 | { |
| 412 | DECLARE_COMPLETION_ONSTACK(completion); |
| 413 | enum sci_status status = SCI_FAILURE; |
| 414 | struct scic_sds_remote_device *sci_device; |
| 415 | struct isci_remote_device *isci_device = tmf->device; |
| 416 | struct isci_request *request; |
| 417 | int ret = TMF_RESP_FUNC_FAILED; |
| 418 | unsigned long flags; |
| 419 | |
| 420 | /* sanity check, return TMF_RESP_FUNC_FAILED |
| 421 | * if the device is not there and ready. |
| 422 | */ |
Dan Williams | 8acaec1 | 2011-03-07 14:47:35 -0800 | [diff] [blame] | 423 | if (!isci_device || isci_device->status != isci_ready_for_io) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 424 | dev_dbg(&isci_host->pdev->dev, |
| 425 | "%s: isci_device = %p not ready (%d)\n", |
| 426 | __func__, |
Dan Williams | 8acaec1 | 2011-03-07 14:47:35 -0800 | [diff] [blame] | 427 | isci_device, isci_device->status); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 428 | return TMF_RESP_FUNC_FAILED; |
| 429 | } else |
| 430 | dev_dbg(&isci_host->pdev->dev, |
| 431 | "%s: isci_device = %p\n", |
| 432 | __func__, isci_device); |
| 433 | |
Dan Williams | 3a97eec | 2011-03-04 11:51:43 -0800 | [diff] [blame] | 434 | sci_device = to_sci_dev(isci_device); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 435 | |
| 436 | /* Assign the pointer to the TMF's completion kernel wait structure. */ |
| 437 | tmf->complete = &completion; |
| 438 | |
| 439 | isci_task_request_build( |
| 440 | isci_host, |
| 441 | &request, |
| 442 | tmf |
| 443 | ); |
| 444 | |
| 445 | if (!request) { |
| 446 | dev_warn(&isci_host->pdev->dev, |
| 447 | "%s: isci_task_request_build failed\n", |
| 448 | __func__); |
| 449 | return TMF_RESP_FUNC_FAILED; |
| 450 | } |
| 451 | |
| 452 | /* Allocate the TMF timeout timer. */ |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 453 | spin_lock_irqsave(&isci_host->scic_lock, flags); |
Dan Williams | 7c40a80 | 2011-03-02 11:49:26 -0800 | [diff] [blame] | 454 | tmf->timeout_timer = isci_timer_create(isci_host, request, isci_tmf_timeout_cb); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 455 | |
| 456 | /* Start the timer. */ |
| 457 | if (tmf->timeout_timer) |
| 458 | isci_timer_start(tmf->timeout_timer, timeout_ms); |
| 459 | else |
| 460 | dev_warn(&isci_host->pdev->dev, |
| 461 | "%s: isci_timer_create failed!!!!\n", |
| 462 | __func__); |
| 463 | |
| 464 | /* start the TMF io. */ |
| 465 | status = scic_controller_start_task( |
| 466 | isci_host->core_controller, |
| 467 | sci_device, |
| 468 | request->sci_request_handle, |
| 469 | SCI_CONTROLLER_INVALID_IO_TAG |
| 470 | ); |
| 471 | |
| 472 | if (status != SCI_SUCCESS) { |
| 473 | dev_warn(&isci_host->pdev->dev, |
| 474 | "%s: start_io failed - status = 0x%x, request = %p\n", |
| 475 | __func__, |
| 476 | status, |
| 477 | request); |
| 478 | goto cleanup_request; |
| 479 | } |
| 480 | |
| 481 | /* Call the users callback, if any. */ |
| 482 | if (tmf->cb_state_func != NULL) |
| 483 | tmf->cb_state_func(isci_tmf_started, tmf, tmf->cb_data); |
| 484 | |
| 485 | /* Change the state of the TMF-bearing request to "started". */ |
| 486 | isci_request_change_state(request, started); |
| 487 | |
| 488 | /* add the request to the remote device request list. */ |
| 489 | list_add(&request->dev_node, &isci_device->reqs_in_process); |
| 490 | |
| 491 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 492 | |
| 493 | /* Wait for the TMF to complete, or a timeout. */ |
| 494 | wait_for_completion(&completion); |
| 495 | |
| 496 | isci_print_tmf(tmf); |
| 497 | |
| 498 | if (tmf->status == SCI_SUCCESS) |
| 499 | ret = TMF_RESP_FUNC_COMPLETE; |
| 500 | else if (tmf->status == SCI_FAILURE_IO_RESPONSE_VALID) { |
| 501 | dev_dbg(&isci_host->pdev->dev, |
| 502 | "%s: tmf.status == " |
| 503 | "SCI_FAILURE_IO_RESPONSE_VALID\n", |
| 504 | __func__); |
| 505 | ret = TMF_RESP_FUNC_COMPLETE; |
| 506 | } |
| 507 | /* Else - leave the default "failed" status alone. */ |
| 508 | |
| 509 | dev_dbg(&isci_host->pdev->dev, |
| 510 | "%s: completed request = %p\n", |
| 511 | __func__, |
| 512 | request); |
| 513 | |
| 514 | if (request->io_request_completion != NULL) { |
| 515 | |
| 516 | /* The fact that this is non-NULL for a TMF request |
| 517 | * means there is a thread waiting for this TMF to |
| 518 | * finish. |
| 519 | */ |
| 520 | complete(request->io_request_completion); |
| 521 | } |
| 522 | |
| 523 | spin_lock_irqsave(&isci_host->scic_lock, flags); |
| 524 | |
| 525 | cleanup_request: |
| 526 | |
| 527 | /* Clean up the timer if needed. */ |
| 528 | if (tmf->timeout_timer) { |
Dan Williams | 7c40a80 | 2011-03-02 11:49:26 -0800 | [diff] [blame] | 529 | isci_del_timer(isci_host, tmf->timeout_timer); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 530 | tmf->timeout_timer = NULL; |
| 531 | } |
| 532 | |
| 533 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 534 | |
| 535 | isci_request_free(isci_host, request); |
| 536 | |
| 537 | return ret; |
| 538 | } |
| 539 | |
| 540 | void isci_task_build_tmf( |
| 541 | struct isci_tmf *tmf, |
| 542 | struct isci_remote_device *isci_device, |
| 543 | enum isci_tmf_function_codes code, |
| 544 | void (*tmf_sent_cb)(enum isci_tmf_cb_state, |
| 545 | struct isci_tmf *, |
| 546 | void *), |
| 547 | void *cb_data) |
| 548 | { |
| 549 | dev_dbg(&isci_device->isci_port->isci_host->pdev->dev, |
| 550 | "%s: isci_device = %p\n", __func__, isci_device); |
| 551 | |
| 552 | memset(tmf, 0, sizeof(*tmf)); |
| 553 | |
| 554 | tmf->device = isci_device; |
| 555 | tmf->tmf_code = code; |
| 556 | tmf->timeout_timer = NULL; |
| 557 | tmf->cb_state_func = tmf_sent_cb; |
| 558 | tmf->cb_data = cb_data; |
| 559 | } |
| 560 | |
| 561 | static struct isci_request *isci_task_get_request_from_task( |
| 562 | struct sas_task *task, |
| 563 | struct isci_host **isci_host, |
| 564 | struct isci_remote_device **isci_device) |
| 565 | { |
| 566 | |
| 567 | struct isci_request *request = NULL; |
| 568 | unsigned long flags; |
| 569 | |
| 570 | spin_lock_irqsave(&task->task_state_lock, flags); |
| 571 | |
| 572 | request = task->lldd_task; |
| 573 | |
| 574 | /* If task is already done, the request isn't valid */ |
| 575 | if (!(task->task_state_flags & SAS_TASK_STATE_DONE) && |
| 576 | (task->task_state_flags & SAS_TASK_AT_INITIATOR) && |
| 577 | (request != NULL)) { |
| 578 | |
| 579 | if (isci_host != NULL) |
| 580 | *isci_host = request->isci_host; |
| 581 | |
| 582 | if (isci_device != NULL) |
| 583 | *isci_device = request->isci_device; |
| 584 | } |
| 585 | |
| 586 | spin_unlock_irqrestore(&task->task_state_lock, flags); |
| 587 | |
| 588 | return request; |
| 589 | } |
| 590 | |
| 591 | /** |
| 592 | * isci_task_validate_request_to_abort() - This function checks the given I/O |
| 593 | * against the "started" state. If the request is still "started", it's |
| 594 | * state is changed to aborted. NOTE: isci_host->scic_lock MUST BE HELD |
| 595 | * BEFORE CALLING THIS FUNCTION. |
| 596 | * @isci_request: This parameter specifies the request object to control. |
| 597 | * @isci_host: This parameter specifies the ISCI host object |
| 598 | * @isci_device: This is the device to which the request is pending. |
| 599 | * @aborted_io_completion: This is a completion structure that will be added to |
| 600 | * the request in case it is changed to aborting; this completion is |
| 601 | * triggered when the request is fully completed. |
| 602 | * |
| 603 | * Either "started" on successful change of the task status to "aborted", or |
| 604 | * "unallocated" if the task cannot be controlled. |
| 605 | */ |
| 606 | static enum isci_request_status isci_task_validate_request_to_abort( |
| 607 | struct isci_request *isci_request, |
| 608 | struct isci_host *isci_host, |
| 609 | struct isci_remote_device *isci_device, |
| 610 | struct completion *aborted_io_completion) |
| 611 | { |
| 612 | enum isci_request_status old_state = unallocated; |
| 613 | |
| 614 | /* Only abort the task if it's in the |
| 615 | * device's request_in_process list |
| 616 | */ |
| 617 | if (isci_request && !list_empty(&isci_request->dev_node)) { |
| 618 | old_state = isci_request_change_started_to_aborted( |
| 619 | isci_request, aborted_io_completion); |
| 620 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | return old_state; |
| 624 | } |
| 625 | |
| 626 | static void isci_request_cleanup_completed_loiterer( |
| 627 | struct isci_host *isci_host, |
| 628 | struct isci_remote_device *isci_device, |
| 629 | struct isci_request *isci_request) |
| 630 | { |
Jeff Skirvin | 18d3d72 | 2011-03-04 14:06:38 -0800 | [diff] [blame] | 631 | struct sas_task *task; |
| 632 | unsigned long flags; |
| 633 | |
| 634 | task = (isci_request->ttype == io_task) |
| 635 | ? isci_request_access_task(isci_request) |
| 636 | : NULL; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 637 | |
| 638 | dev_dbg(&isci_host->pdev->dev, |
| 639 | "%s: isci_device=%p, request=%p, task=%p\n", |
Jeff Skirvin | 18d3d72 | 2011-03-04 14:06:38 -0800 | [diff] [blame] | 640 | __func__, isci_device, isci_request, task); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 641 | |
| 642 | spin_lock_irqsave(&isci_host->scic_lock, flags); |
| 643 | list_del_init(&isci_request->dev_node); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 644 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 645 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 646 | if (task != NULL) { |
| 647 | |
| 648 | spin_lock_irqsave(&task->task_state_lock, flags); |
| 649 | task->lldd_task = NULL; |
| 650 | |
| 651 | isci_set_task_doneflags(task); |
| 652 | |
| 653 | /* If this task is not in the abort path, call task_done. */ |
| 654 | if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) { |
| 655 | |
| 656 | spin_unlock_irqrestore(&task->task_state_lock, flags); |
| 657 | task->task_done(task); |
| 658 | } else |
| 659 | spin_unlock_irqrestore(&task->task_state_lock, flags); |
| 660 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 661 | isci_request_free(isci_host, isci_request); |
| 662 | } |
| 663 | /** |
| 664 | * isci_terminate_request_core() - This function will terminate the given |
| 665 | * request, and wait for it to complete. This function must only be called |
| 666 | * from a thread that can wait. Note that the request is terminated and |
| 667 | * completed (back to the host, if started there). |
| 668 | * @isci_host: This SCU. |
| 669 | * @isci_device: The target. |
| 670 | * @isci_request: The I/O request to be terminated. |
| 671 | * |
| 672 | * |
| 673 | */ |
| 674 | static void isci_terminate_request_core( |
| 675 | struct isci_host *isci_host, |
| 676 | struct isci_remote_device *isci_device, |
| 677 | struct isci_request *isci_request, |
| 678 | struct completion *request_completion) |
| 679 | { |
| 680 | enum sci_status status = SCI_SUCCESS; |
| 681 | bool was_terminated = false; |
| 682 | bool needs_cleanup_handling = false; |
| 683 | enum isci_request_status request_status; |
| 684 | unsigned long flags; |
| 685 | |
| 686 | dev_dbg(&isci_host->pdev->dev, |
| 687 | "%s: device = %p; request = %p\n", |
| 688 | __func__, isci_device, isci_request); |
| 689 | |
| 690 | /* Peek at the current status of the request. This will tell |
| 691 | * us if there was special handling on the request such that it |
| 692 | * needs to be detached and freed here. |
| 693 | */ |
| 694 | spin_lock_irqsave(&isci_request->state_lock, flags); |
| 695 | request_status = isci_request_get_state(isci_request); |
| 696 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 697 | if ((isci_request->ttype == io_task) /* TMFs are in their own thread */ |
| 698 | && ((request_status == aborted) |
| 699 | || (request_status == aborting) |
| 700 | || (request_status == terminating) |
| 701 | || (request_status == completed) |
| 702 | ) |
| 703 | ) { |
| 704 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 705 | /* The completion routine won't free a request in |
| 706 | * the aborted/aborting/terminating state, so we do |
| 707 | * it here. |
| 708 | */ |
| 709 | needs_cleanup_handling = true; |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 710 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 711 | spin_unlock_irqrestore(&isci_request->state_lock, flags); |
| 712 | |
| 713 | spin_lock_irqsave(&isci_host->scic_lock, flags); |
| 714 | /* Make sure the request wasn't just sitting around signalling |
| 715 | * device condition (if the request handle is NULL, then the |
| 716 | * request completed but needed additional handling here). |
| 717 | */ |
| 718 | if (isci_request->sci_request_handle != NULL) { |
| 719 | was_terminated = true; |
| 720 | status = scic_controller_terminate_request( |
| 721 | isci_host->core_controller, |
Dan Williams | 3a97eec | 2011-03-04 11:51:43 -0800 | [diff] [blame] | 722 | to_sci_dev(isci_device), |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 723 | isci_request->sci_request_handle |
| 724 | ); |
| 725 | } |
| 726 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 727 | |
| 728 | /* |
| 729 | * The only time the request to terminate will |
| 730 | * fail is when the io request is completed and |
| 731 | * being aborted. |
| 732 | */ |
| 733 | if (status != SCI_SUCCESS) |
| 734 | dev_err(&isci_host->pdev->dev, |
| 735 | "%s: scic_controller_terminate_request" |
| 736 | " returned = 0x%x\n", |
| 737 | __func__, |
| 738 | status); |
| 739 | else { |
| 740 | if (was_terminated) { |
| 741 | dev_dbg(&isci_host->pdev->dev, |
| 742 | "%s: before completion wait (%p)\n", |
| 743 | __func__, |
| 744 | request_completion); |
| 745 | |
| 746 | /* Wait here for the request to complete. */ |
| 747 | wait_for_completion(request_completion); |
| 748 | |
| 749 | dev_dbg(&isci_host->pdev->dev, |
| 750 | "%s: after completion wait (%p)\n", |
| 751 | __func__, |
| 752 | request_completion); |
| 753 | } |
| 754 | |
| 755 | if (needs_cleanup_handling) |
| 756 | isci_request_cleanup_completed_loiterer( |
| 757 | isci_host, isci_device, isci_request |
| 758 | ); |
| 759 | } |
| 760 | } |
| 761 | static void isci_terminate_request( |
| 762 | struct isci_host *isci_host, |
| 763 | struct isci_remote_device *isci_device, |
| 764 | struct isci_request *isci_request, |
| 765 | enum isci_request_status new_request_state) |
| 766 | { |
| 767 | enum isci_request_status old_state; |
| 768 | |
| 769 | DECLARE_COMPLETION_ONSTACK(request_completion); |
| 770 | unsigned long flags; |
| 771 | |
| 772 | spin_lock_irqsave(&isci_host->scic_lock, flags); |
| 773 | |
| 774 | /* Change state to "new_request_state" if it is currently "started" */ |
| 775 | old_state = isci_request_change_started_to_newstate( |
| 776 | isci_request, |
| 777 | &request_completion, |
| 778 | new_request_state |
| 779 | ); |
| 780 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 781 | if ((old_state == started) || (old_state == completed)) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 782 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 783 | /* If the old_state is started: |
| 784 | * This request was not already being aborted. If it had been, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 785 | * then the aborting I/O (ie. the TMF request) would not be in |
| 786 | * the aborting state, and thus would be terminated here. Note |
| 787 | * that since the TMF completion's call to the kernel function |
| 788 | * "complete()" does not happen until the pending I/O request |
| 789 | * terminate fully completes, we do not have to implement a |
| 790 | * special wait here for already aborting requests - the |
| 791 | * termination of the TMF request will force the request |
| 792 | * to finish it's already started terminate. |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 793 | * |
| 794 | * If old_state == completed: |
| 795 | * This request completed from the SCU hardware perspective |
| 796 | * and now just needs cleaning up in terms of freeing the |
| 797 | * request and potentially calling up to libsas. |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 798 | */ |
| 799 | isci_terminate_request_core(isci_host, isci_device, |
| 800 | isci_request, &request_completion); |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 801 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | /** |
| 805 | * isci_terminate_pending_requests() - This function will change the all of the |
| 806 | * requests on the given device's state to "aborting", will terminate the |
| 807 | * requests, and wait for them to complete. This function must only be |
| 808 | * called from a thread that can wait. Note that the requests are all |
| 809 | * terminated and completed (back to the host, if started there). |
| 810 | * @isci_host: This parameter specifies SCU. |
| 811 | * @isci_device: This parameter specifies the target. |
| 812 | * |
| 813 | * |
| 814 | */ |
| 815 | void isci_terminate_pending_requests( |
| 816 | struct isci_host *isci_host, |
| 817 | struct isci_remote_device *isci_device, |
| 818 | enum isci_request_status new_request_state) |
| 819 | { |
| 820 | struct isci_request *isci_request; |
| 821 | struct sas_task *task; |
| 822 | bool done = false; |
| 823 | unsigned long flags; |
| 824 | |
| 825 | dev_dbg(&isci_host->pdev->dev, |
| 826 | "%s: isci_device = %p (new request state = %d)\n", |
| 827 | __func__, isci_device, new_request_state); |
| 828 | |
| 829 | #define ISCI_TERMINATE_SHOW_PENDING_REQUESTS |
| 830 | #ifdef ISCI_TERMINATE_SHOW_PENDING_REQUESTS |
| 831 | { |
| 832 | struct isci_request *request; |
| 833 | |
| 834 | /* Only abort the task if it's in the |
| 835 | * device's request_in_process list |
| 836 | */ |
| 837 | list_for_each_entry(request, |
| 838 | &isci_device->reqs_in_process, |
| 839 | dev_node) |
| 840 | dev_dbg(&isci_host->pdev->dev, |
| 841 | "%s: isci_device = %p; request is on " |
| 842 | "reqs_in_process list: %p\n", |
| 843 | __func__, isci_device, request); |
| 844 | } |
| 845 | #endif /* ISCI_TERMINATE_SHOW_PENDING_REQUESTS */ |
| 846 | |
| 847 | /* Clean up all pending requests. */ |
| 848 | do { |
| 849 | spin_lock_irqsave(&isci_host->scic_lock, flags); |
| 850 | |
| 851 | if (list_empty(&isci_device->reqs_in_process)) { |
| 852 | |
| 853 | done = true; |
| 854 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 855 | |
| 856 | dev_dbg(&isci_host->pdev->dev, |
| 857 | "%s: isci_device = %p; done.\n", |
| 858 | __func__, isci_device); |
| 859 | } else { |
| 860 | /* The list was not empty - grab the first request. */ |
| 861 | isci_request = list_first_entry( |
| 862 | &isci_device->reqs_in_process, |
| 863 | struct isci_request, dev_node |
| 864 | ); |
| 865 | /* Note that we are not expecting to have to control |
| 866 | * the target to abort the request. |
| 867 | */ |
| 868 | isci_request->complete_in_target = true; |
| 869 | |
| 870 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 871 | |
| 872 | /* Get the libsas task reference. */ |
| 873 | task = isci_request_access_task(isci_request); |
| 874 | |
| 875 | dev_dbg(&isci_host->pdev->dev, |
| 876 | "%s: isci_device=%p request=%p; task=%p\n", |
| 877 | __func__, isci_device, isci_request, task); |
| 878 | |
| 879 | /* Mark all still pending I/O with the selected next |
| 880 | * state. |
| 881 | */ |
| 882 | isci_terminate_request(isci_host, isci_device, |
| 883 | isci_request, new_request_state |
| 884 | ); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 885 | } |
| 886 | } while (!done); |
| 887 | } |
| 888 | |
| 889 | /** |
| 890 | * isci_task_send_lu_reset_sas() - This function is called by of the SAS Domain |
| 891 | * Template functions. |
| 892 | * @lun: This parameter specifies the lun to be reset. |
| 893 | * |
| 894 | * status, zero indicates success. |
| 895 | */ |
| 896 | static int isci_task_send_lu_reset_sas( |
| 897 | struct isci_host *isci_host, |
| 898 | struct isci_remote_device *isci_device, |
| 899 | u8 *lun) |
| 900 | { |
| 901 | struct isci_tmf tmf; |
| 902 | int ret = TMF_RESP_FUNC_FAILED; |
| 903 | |
| 904 | dev_dbg(&isci_host->pdev->dev, |
| 905 | "%s: isci_host = %p, isci_device = %p\n", |
| 906 | __func__, isci_host, isci_device); |
| 907 | /* Send the LUN reset to the target. By the time the call returns, |
| 908 | * the TMF has fully exected in the target (in which case the return |
| 909 | * value is "TMF_RESP_FUNC_COMPLETE", or the request timed-out (or |
| 910 | * was otherwise unable to be executed ("TMF_RESP_FUNC_FAILED"). |
| 911 | */ |
| 912 | isci_task_build_tmf(&tmf, isci_device, isci_tmf_ssp_lun_reset, NULL, |
| 913 | NULL); |
| 914 | |
| 915 | #define ISCI_LU_RESET_TIMEOUT_MS 2000 /* 2 second timeout. */ |
| 916 | ret = isci_task_execute_tmf(isci_host, &tmf, ISCI_LU_RESET_TIMEOUT_MS); |
| 917 | |
| 918 | if (ret == TMF_RESP_FUNC_COMPLETE) |
| 919 | dev_dbg(&isci_host->pdev->dev, |
| 920 | "%s: %p: TMF_LU_RESET passed\n", |
| 921 | __func__, isci_device); |
| 922 | else |
| 923 | dev_dbg(&isci_host->pdev->dev, |
| 924 | "%s: %p: TMF_LU_RESET failed (%x)\n", |
| 925 | __func__, isci_device, ret); |
| 926 | |
| 927 | return ret; |
| 928 | } |
| 929 | |
| 930 | /** |
| 931 | * isci_task_lu_reset() - This function is one of the SAS Domain Template |
| 932 | * functions. This is one of the Task Management functoins called by libsas, |
| 933 | * to reset the given lun. Note the assumption that while this call is |
| 934 | * executing, no I/O will be sent by the host to the device. |
| 935 | * @lun: This parameter specifies the lun to be reset. |
| 936 | * |
| 937 | * status, zero indicates success. |
| 938 | */ |
| 939 | int isci_task_lu_reset( |
| 940 | struct domain_device *domain_device, |
| 941 | u8 *lun) |
| 942 | { |
| 943 | struct isci_host *isci_host = NULL; |
| 944 | struct isci_remote_device *isci_device = NULL; |
| 945 | int ret; |
| 946 | bool device_stopping = false; |
| 947 | |
| 948 | if (domain_device == NULL) { |
| 949 | pr_warn("%s: domain_device == NULL\n", __func__); |
| 950 | return TMF_RESP_FUNC_FAILED; |
| 951 | } |
| 952 | |
| 953 | isci_device = isci_dev_from_domain_dev(domain_device); |
| 954 | |
| 955 | if (domain_device->port != NULL) |
| 956 | isci_host = isci_host_from_sas_ha(domain_device->port->ha); |
| 957 | |
| 958 | pr_debug("%s: domain_device=%p, isci_host=%p; isci_device=%p\n", |
| 959 | __func__, domain_device, isci_host, isci_device); |
| 960 | |
| 961 | if (isci_device != NULL) |
| 962 | device_stopping = (isci_device->status == isci_stopping) |
| 963 | || (isci_device->status == isci_stopped); |
| 964 | |
| 965 | /* If there is a device reset pending on any request in the |
| 966 | * device's list, fail this LUN reset request in order to |
| 967 | * escalate to the device reset. |
| 968 | */ |
| 969 | if ((isci_device == NULL) || |
| 970 | (isci_host == NULL) || |
| 971 | ((isci_host != NULL) && |
| 972 | (isci_device != NULL) && |
| 973 | (device_stopping || |
| 974 | (isci_device_is_reset_pending(isci_host, isci_device))))) { |
| 975 | dev_warn(&isci_host->pdev->dev, |
| 976 | "%s: No dev (%p), no host (%p), or " |
| 977 | "RESET PENDING: domain_device=%p\n", |
| 978 | __func__, isci_device, isci_host, domain_device); |
| 979 | return TMF_RESP_FUNC_FAILED; |
| 980 | } |
| 981 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 982 | /* Send the task management part of the reset. */ |
| 983 | if (sas_protocol_ata(domain_device->tproto)) { |
| 984 | ret = isci_task_send_lu_reset_sata( |
| 985 | isci_host, isci_device, lun |
| 986 | ); |
| 987 | } else |
| 988 | ret = isci_task_send_lu_reset_sas(isci_host, isci_device, lun); |
| 989 | |
| 990 | /* If the LUN reset worked, all the I/O can now be terminated. */ |
| 991 | if (ret == TMF_RESP_FUNC_COMPLETE) |
| 992 | /* Terminate all I/O now. */ |
| 993 | isci_terminate_pending_requests(isci_host, |
| 994 | isci_device, |
| 995 | terminating); |
| 996 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 997 | return ret; |
| 998 | } |
| 999 | |
| 1000 | |
| 1001 | /* int (*lldd_clear_nexus_port)(struct asd_sas_port *); */ |
| 1002 | int isci_task_clear_nexus_port(struct asd_sas_port *port) |
| 1003 | { |
| 1004 | return TMF_RESP_FUNC_FAILED; |
| 1005 | } |
| 1006 | |
| 1007 | |
| 1008 | |
| 1009 | int isci_task_clear_nexus_ha(struct sas_ha_struct *ha) |
| 1010 | { |
| 1011 | return TMF_RESP_FUNC_FAILED; |
| 1012 | } |
| 1013 | |
| 1014 | int isci_task_I_T_nexus_reset(struct domain_device *dev) |
| 1015 | { |
| 1016 | return TMF_RESP_FUNC_FAILED; |
| 1017 | } |
| 1018 | |
| 1019 | |
| 1020 | /* Task Management Functions. Must be called from process context. */ |
| 1021 | |
| 1022 | /** |
| 1023 | * isci_abort_task_process_cb() - This is a helper function for the abort task |
| 1024 | * TMF command. It manages the request state with respect to the successful |
| 1025 | * transmission / completion of the abort task request. |
| 1026 | * @cb_state: This parameter specifies when this function was called - after |
| 1027 | * the TMF request has been started and after it has timed-out. |
| 1028 | * @tmf: This parameter specifies the TMF in progress. |
| 1029 | * |
| 1030 | * |
| 1031 | */ |
| 1032 | static void isci_abort_task_process_cb( |
| 1033 | enum isci_tmf_cb_state cb_state, |
| 1034 | struct isci_tmf *tmf, |
| 1035 | void *cb_data) |
| 1036 | { |
| 1037 | struct isci_request *old_request; |
| 1038 | |
| 1039 | old_request = (struct isci_request *)cb_data; |
| 1040 | |
| 1041 | dev_dbg(&old_request->isci_host->pdev->dev, |
| 1042 | "%s: tmf=%p, old_request=%p\n", |
| 1043 | __func__, tmf, old_request); |
| 1044 | |
| 1045 | switch (cb_state) { |
| 1046 | |
| 1047 | case isci_tmf_started: |
| 1048 | /* The TMF has been started. Nothing to do here, since the |
| 1049 | * request state was already set to "aborted" by the abort |
| 1050 | * task function. |
| 1051 | */ |
| 1052 | BUG_ON(old_request->status != aborted); |
| 1053 | break; |
| 1054 | |
| 1055 | case isci_tmf_timed_out: |
| 1056 | |
| 1057 | /* Set the task's state to "aborting", since the abort task |
| 1058 | * function thread set it to "aborted" (above) in anticipation |
| 1059 | * of the task management request working correctly. Since the |
| 1060 | * timeout has now fired, the TMF request failed. We set the |
| 1061 | * state such that the request completion will indicate the |
| 1062 | * device is no longer present. |
| 1063 | */ |
| 1064 | isci_request_change_state(old_request, aborting); |
| 1065 | break; |
| 1066 | |
| 1067 | default: |
| 1068 | dev_err(&old_request->isci_host->pdev->dev, |
| 1069 | "%s: Bad cb_state (%d): tmf=%p, old_request=%p\n", |
| 1070 | __func__, cb_state, tmf, old_request); |
| 1071 | break; |
| 1072 | } |
| 1073 | } |
| 1074 | |
| 1075 | /** |
| 1076 | * isci_task_abort_task() - This function is one of the SAS Domain Template |
| 1077 | * functions. This function is called by libsas to abort a specified task. |
| 1078 | * @task: This parameter specifies the SAS task to abort. |
| 1079 | * |
| 1080 | * status, zero indicates success. |
| 1081 | */ |
| 1082 | int isci_task_abort_task(struct sas_task *task) |
| 1083 | { |
| 1084 | DECLARE_COMPLETION_ONSTACK(aborted_io_completion); |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1085 | struct isci_request *old_request = NULL; |
| 1086 | enum isci_request_status old_state; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1087 | struct isci_remote_device *isci_device = NULL; |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1088 | struct isci_host *isci_host = NULL; |
| 1089 | struct isci_tmf tmf; |
| 1090 | int ret = TMF_RESP_FUNC_FAILED; |
| 1091 | unsigned long flags; |
| 1092 | bool any_dev_reset = false; |
| 1093 | bool device_stopping; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1094 | |
| 1095 | /* Get the isci_request reference from the task. Note that |
| 1096 | * this check does not depend on the pending request list |
| 1097 | * in the device, because tasks driving resets may land here |
| 1098 | * after completion in the core. |
| 1099 | */ |
| 1100 | old_request = isci_task_get_request_from_task(task, &isci_host, |
| 1101 | &isci_device); |
| 1102 | |
| 1103 | dev_dbg(&isci_host->pdev->dev, |
| 1104 | "%s: task = %p\n", __func__, task); |
| 1105 | |
| 1106 | /* Check if the device has been / is currently being removed. |
| 1107 | * If so, no task management will be done, and the I/O will |
| 1108 | * be terminated. |
| 1109 | */ |
| 1110 | device_stopping = (isci_device->status == isci_stopping) |
| 1111 | || (isci_device->status == isci_stopped); |
| 1112 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1113 | /* This version of the driver will fail abort requests for |
| 1114 | * SATA/STP. Failing the abort request this way will cause the |
| 1115 | * SCSI error handler thread to escalate to LUN reset |
| 1116 | */ |
| 1117 | if (sas_protocol_ata(task->task_proto) && !device_stopping) { |
| 1118 | dev_warn(&isci_host->pdev->dev, |
| 1119 | " task %p is for a STP/SATA device;" |
| 1120 | " returning TMF_RESP_FUNC_FAILED\n" |
| 1121 | " to cause a LUN reset...\n", task); |
| 1122 | return TMF_RESP_FUNC_FAILED; |
| 1123 | } |
| 1124 | |
| 1125 | dev_dbg(&isci_host->pdev->dev, |
| 1126 | "%s: old_request == %p\n", __func__, old_request); |
| 1127 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1128 | if (!device_stopping) |
| 1129 | any_dev_reset = isci_device_is_reset_pending(isci_host,isci_device); |
| 1130 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1131 | spin_lock_irqsave(&task->task_state_lock, flags); |
| 1132 | |
| 1133 | /* Don't do resets to stopping devices. */ |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1134 | if (device_stopping) { |
| 1135 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1136 | task->task_state_flags &= ~SAS_TASK_NEED_DEV_RESET; |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1137 | any_dev_reset = false; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1138 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1139 | } else /* See if there is a pending device reset for this device. */ |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1140 | any_dev_reset = any_dev_reset |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1141 | || (task->task_state_flags & SAS_TASK_NEED_DEV_RESET); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1142 | |
| 1143 | /* If the extraction of the request reference from the task |
| 1144 | * failed, then the request has been completed (or if there is a |
| 1145 | * pending reset then this abort request function must be failed |
| 1146 | * in order to escalate to the target reset). |
| 1147 | */ |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1148 | if ((old_request == NULL) || any_dev_reset) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1149 | |
| 1150 | /* If the device reset task flag is set, fail the task |
| 1151 | * management request. Otherwise, the original request |
| 1152 | * has completed. |
| 1153 | */ |
| 1154 | if (any_dev_reset) { |
| 1155 | |
| 1156 | /* Turn off the task's DONE to make sure this |
| 1157 | * task is escalated to a target reset. |
| 1158 | */ |
| 1159 | task->task_state_flags &= ~SAS_TASK_STATE_DONE; |
| 1160 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1161 | /* Make the reset happen as soon as possible. */ |
| 1162 | task->task_state_flags |= SAS_TASK_NEED_DEV_RESET; |
| 1163 | |
| 1164 | spin_unlock_irqrestore(&task->task_state_lock, flags); |
| 1165 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1166 | /* Fail the task management request in order to |
| 1167 | * escalate to the target reset. |
| 1168 | */ |
| 1169 | ret = TMF_RESP_FUNC_FAILED; |
| 1170 | |
| 1171 | dev_dbg(&isci_host->pdev->dev, |
| 1172 | "%s: Failing task abort in order to " |
| 1173 | "escalate to target reset because\n" |
| 1174 | "SAS_TASK_NEED_DEV_RESET is set for " |
| 1175 | "task %p on dev %p\n", |
| 1176 | __func__, task, isci_device); |
| 1177 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1178 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1179 | } else { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1180 | /* The request has already completed and there |
| 1181 | * is nothing to do here other than to set the task |
| 1182 | * done bit, and indicate that the task abort function |
| 1183 | * was sucessful. |
| 1184 | */ |
| 1185 | isci_set_task_doneflags(task); |
| 1186 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1187 | spin_unlock_irqrestore(&task->task_state_lock, flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1188 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1189 | ret = TMF_RESP_FUNC_COMPLETE; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1190 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1191 | dev_dbg(&isci_host->pdev->dev, |
| 1192 | "%s: abort task not needed for %p\n", |
| 1193 | __func__, task); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1194 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1195 | |
| 1196 | return ret; |
| 1197 | } |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1198 | else |
| 1199 | spin_unlock_irqrestore(&task->task_state_lock, flags); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1200 | |
| 1201 | spin_lock_irqsave(&isci_host->scic_lock, flags); |
| 1202 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1203 | /* Check the request status and change to "aborting" if currently |
| 1204 | * "starting"; if true then set the I/O kernel completion |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1205 | * struct that will be triggered when the request completes. |
| 1206 | */ |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1207 | old_state = isci_task_validate_request_to_abort( |
| 1208 | old_request, isci_host, isci_device, |
| 1209 | &aborted_io_completion); |
| 1210 | if ((old_state != started) && (old_state != completed)) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1211 | |
| 1212 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 1213 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1214 | /* The request was already being handled by someone else (because |
| 1215 | * they got to set the state away from started). |
| 1216 | */ |
| 1217 | dev_dbg(&isci_host->pdev->dev, |
| 1218 | "%s: device = %p; old_request %p already being aborted\n", |
| 1219 | __func__, |
| 1220 | isci_device, old_request); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1221 | |
| 1222 | return TMF_RESP_FUNC_COMPLETE; |
| 1223 | } |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1224 | if ((task->task_proto == SAS_PROTOCOL_SMP) |
| 1225 | || device_stopping |
| 1226 | || old_request->complete_in_target |
| 1227 | ) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1228 | |
| 1229 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 1230 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1231 | dev_dbg(&isci_host->pdev->dev, |
| 1232 | "%s: SMP request (%d)" |
| 1233 | " or device is stopping (%d)" |
| 1234 | " or complete_in_target (%d), thus no TMF\n", |
| 1235 | __func__, (task->task_proto == SAS_PROTOCOL_SMP), |
| 1236 | device_stopping, old_request->complete_in_target); |
| 1237 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1238 | /* Set the state on the task. */ |
| 1239 | isci_task_all_done(task); |
| 1240 | |
| 1241 | ret = TMF_RESP_FUNC_COMPLETE; |
| 1242 | |
| 1243 | /* Stopping and SMP devices are not sent a TMF, and are not |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1244 | * reset, but the outstanding I/O request is terminated below. |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1245 | */ |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1246 | } else { |
| 1247 | /* Fill in the tmf stucture */ |
| 1248 | isci_task_build_tmf(&tmf, isci_device, isci_tmf_ssp_task_abort, |
| 1249 | isci_abort_task_process_cb, old_request); |
| 1250 | |
| 1251 | tmf.io_tag = scic_io_request_get_io_tag( |
| 1252 | old_request->sci_request_handle |
| 1253 | ); |
| 1254 | |
| 1255 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 1256 | |
| 1257 | #define ISCI_ABORT_TASK_TIMEOUT_MS 500 /* half second timeout. */ |
| 1258 | ret = isci_task_execute_tmf(isci_host, &tmf, |
| 1259 | ISCI_ABORT_TASK_TIMEOUT_MS); |
| 1260 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1261 | if (ret != TMF_RESP_FUNC_COMPLETE) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1262 | dev_err(&isci_host->pdev->dev, |
| 1263 | "%s: isci_task_send_tmf failed\n", |
| 1264 | __func__); |
| 1265 | } |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1266 | if (ret == TMF_RESP_FUNC_COMPLETE) { |
| 1267 | old_request->complete_in_target = true; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1268 | |
Jeff Skirvin | a5fde22 | 2011-03-04 14:06:42 -0800 | [diff] [blame^] | 1269 | /* Clean up the request on our side, and wait for the aborted I/O to |
| 1270 | * complete. |
| 1271 | */ |
| 1272 | isci_terminate_request_core(isci_host, isci_device, old_request, |
| 1273 | &aborted_io_completion); |
| 1274 | } |
| 1275 | |
| 1276 | /* Make sure we do not leave a reference to aborted_io_completion */ |
| 1277 | old_request->io_request_completion = NULL; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1278 | return ret; |
| 1279 | } |
| 1280 | |
| 1281 | /** |
| 1282 | * isci_task_abort_task_set() - This function is one of the SAS Domain Template |
| 1283 | * functions. This is one of the Task Management functoins called by libsas, |
| 1284 | * to abort all task for the given lun. |
| 1285 | * @d_device: This parameter specifies the domain device associated with this |
| 1286 | * request. |
| 1287 | * @lun: This parameter specifies the lun associated with this request. |
| 1288 | * |
| 1289 | * status, zero indicates success. |
| 1290 | */ |
| 1291 | int isci_task_abort_task_set( |
| 1292 | struct domain_device *d_device, |
| 1293 | u8 *lun) |
| 1294 | { |
| 1295 | return TMF_RESP_FUNC_FAILED; |
| 1296 | } |
| 1297 | |
| 1298 | |
| 1299 | /** |
| 1300 | * isci_task_clear_aca() - This function is one of the SAS Domain Template |
| 1301 | * functions. This is one of the Task Management functoins called by libsas. |
| 1302 | * @d_device: This parameter specifies the domain device associated with this |
| 1303 | * request. |
| 1304 | * @lun: This parameter specifies the lun associated with this request. |
| 1305 | * |
| 1306 | * status, zero indicates success. |
| 1307 | */ |
| 1308 | int isci_task_clear_aca( |
| 1309 | struct domain_device *d_device, |
| 1310 | u8 *lun) |
| 1311 | { |
| 1312 | return TMF_RESP_FUNC_FAILED; |
| 1313 | } |
| 1314 | |
| 1315 | |
| 1316 | |
| 1317 | /** |
| 1318 | * isci_task_clear_task_set() - This function is one of the SAS Domain Template |
| 1319 | * functions. This is one of the Task Management functoins called by libsas. |
| 1320 | * @d_device: This parameter specifies the domain device associated with this |
| 1321 | * request. |
| 1322 | * @lun: This parameter specifies the lun associated with this request. |
| 1323 | * |
| 1324 | * status, zero indicates success. |
| 1325 | */ |
| 1326 | int isci_task_clear_task_set( |
| 1327 | struct domain_device *d_device, |
| 1328 | u8 *lun) |
| 1329 | { |
| 1330 | return TMF_RESP_FUNC_FAILED; |
| 1331 | } |
| 1332 | |
| 1333 | |
| 1334 | /** |
| 1335 | * isci_task_query_task() - This function is implemented to cause libsas to |
| 1336 | * correctly escalate the failed abort to a LUN or target reset (this is |
| 1337 | * because sas_scsi_find_task libsas function does not correctly interpret |
| 1338 | * all return codes from the abort task call). When TMF_RESP_FUNC_SUCC is |
| 1339 | * returned, libsas turns this into a LUN reset; when FUNC_FAILED is |
| 1340 | * returned, libsas will turn this into a target reset |
| 1341 | * @task: This parameter specifies the sas task being queried. |
| 1342 | * @lun: This parameter specifies the lun associated with this request. |
| 1343 | * |
| 1344 | * status, zero indicates success. |
| 1345 | */ |
| 1346 | int isci_task_query_task( |
| 1347 | struct sas_task *task) |
| 1348 | { |
| 1349 | /* See if there is a pending device reset for this device. */ |
| 1350 | if (task->task_state_flags & SAS_TASK_NEED_DEV_RESET) |
| 1351 | return TMF_RESP_FUNC_FAILED; |
| 1352 | else |
| 1353 | return TMF_RESP_FUNC_SUCC; |
| 1354 | } |
| 1355 | |
| 1356 | /** |
| 1357 | * isci_task_request_complete() - This function is called by the sci core when |
| 1358 | * an task request completes. |
| 1359 | * @isci_host: This parameter specifies the ISCI host object |
| 1360 | * @request: This parameter is the completed isci_request object. |
| 1361 | * @completion_status: This parameter specifies the completion status from the |
| 1362 | * sci core. |
| 1363 | * |
| 1364 | * none. |
| 1365 | */ |
| 1366 | void isci_task_request_complete( |
| 1367 | struct isci_host *isci_host, |
| 1368 | struct isci_request *request, |
| 1369 | enum sci_task_status completion_status) |
| 1370 | { |
| 1371 | struct isci_remote_device *isci_device = request->isci_device; |
| 1372 | enum isci_request_status old_state; |
| 1373 | struct isci_tmf *tmf = isci_request_access_tmf(request); |
| 1374 | struct completion *tmf_complete; |
| 1375 | |
| 1376 | dev_dbg(&isci_host->pdev->dev, |
| 1377 | "%s: request = %p, status=%d\n", |
| 1378 | __func__, request, completion_status); |
| 1379 | |
| 1380 | old_state = isci_request_change_state(request, completed); |
| 1381 | |
| 1382 | tmf->status = completion_status; |
| 1383 | request->complete_in_target = true; |
| 1384 | |
| 1385 | if (SAS_PROTOCOL_SSP == tmf->proto) { |
| 1386 | |
| 1387 | memcpy(&tmf->resp.resp_iu, |
| 1388 | scic_io_request_get_response_iu_address( |
| 1389 | request->sci_request_handle |
| 1390 | ), |
| 1391 | sizeof(struct sci_ssp_response_iu)); |
| 1392 | |
| 1393 | } else if (SAS_PROTOCOL_SATA == tmf->proto) { |
| 1394 | |
| 1395 | memcpy(&tmf->resp.d2h_fis, |
| 1396 | scic_stp_io_request_get_d2h_reg_address( |
| 1397 | request->sci_request_handle |
| 1398 | ), |
| 1399 | sizeof(struct sata_fis_reg_d2h) |
| 1400 | ); |
| 1401 | } |
| 1402 | |
| 1403 | /* Manage the timer if it is still running. */ |
| 1404 | if (tmf->timeout_timer) { |
Dan Williams | 7c40a80 | 2011-03-02 11:49:26 -0800 | [diff] [blame] | 1405 | isci_del_timer(isci_host, tmf->timeout_timer); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1406 | tmf->timeout_timer = NULL; |
| 1407 | } |
| 1408 | |
| 1409 | /* PRINT_TMF( ((struct isci_tmf *)request->task)); */ |
| 1410 | tmf_complete = tmf->complete; |
| 1411 | |
| 1412 | scic_controller_complete_task( |
| 1413 | isci_host->core_controller, |
Dan Williams | 3a97eec | 2011-03-04 11:51:43 -0800 | [diff] [blame] | 1414 | to_sci_dev(isci_device), |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1415 | request->sci_request_handle |
| 1416 | ); |
| 1417 | /* NULL the request handle to make sure it cannot be terminated |
| 1418 | * or completed again. |
| 1419 | */ |
| 1420 | request->sci_request_handle = NULL; |
| 1421 | |
| 1422 | isci_request_change_state(request, unallocated); |
| 1423 | list_del_init(&request->dev_node); |
| 1424 | |
| 1425 | /* The task management part completes last. */ |
| 1426 | complete(tmf_complete); |
| 1427 | } |
| 1428 | |
| 1429 | |
| 1430 | /** |
| 1431 | * isci_task_ssp_request_get_lun() - This function is called by the sci core to |
| 1432 | * retrieve the lun for a given task request. |
| 1433 | * @request: This parameter is the isci_request object. |
| 1434 | * |
| 1435 | * lun for specified task request. |
| 1436 | */ |
| 1437 | u32 isci_task_ssp_request_get_lun(struct isci_request *request) |
| 1438 | { |
| 1439 | struct isci_tmf *isci_tmf = isci_request_access_tmf(request); |
| 1440 | |
| 1441 | dev_dbg(&request->isci_host->pdev->dev, |
| 1442 | "%s: lun = %d\n", __func__, isci_tmf->lun[0]); |
| 1443 | /* @todo: build lun from array of bytes to 32 bit */ |
| 1444 | return isci_tmf->lun[0]; |
| 1445 | } |
| 1446 | |
| 1447 | /** |
| 1448 | * isci_task_ssp_request_get_function() - This function is called by the sci |
| 1449 | * core to retrieve the function for a given task request. |
| 1450 | * @request: This parameter is the isci_request object. |
| 1451 | * |
| 1452 | * function code for specified task request. |
| 1453 | */ |
| 1454 | u8 isci_task_ssp_request_get_function(struct isci_request *request) |
| 1455 | { |
| 1456 | struct isci_tmf *isci_tmf = isci_request_access_tmf(request); |
| 1457 | |
| 1458 | dev_dbg(&request->isci_host->pdev->dev, |
| 1459 | "%s: func = %d\n", __func__, isci_tmf->tmf_code); |
| 1460 | |
| 1461 | return isci_tmf->tmf_code; |
| 1462 | } |
| 1463 | |
| 1464 | /** |
| 1465 | * isci_task_ssp_request_get_io_tag_to_manage() - This function is called by |
| 1466 | * the sci core to retrieve the io tag for a given task request. |
| 1467 | * @request: This parameter is the isci_request object. |
| 1468 | * |
| 1469 | * io tag for specified task request. |
| 1470 | */ |
| 1471 | u16 isci_task_ssp_request_get_io_tag_to_manage(struct isci_request *request) |
| 1472 | { |
| 1473 | u16 io_tag = SCI_CONTROLLER_INVALID_IO_TAG; |
| 1474 | |
| 1475 | if (tmf_task == request->ttype) { |
| 1476 | struct isci_tmf *tmf = isci_request_access_tmf(request); |
| 1477 | io_tag = tmf->io_tag; |
| 1478 | } |
| 1479 | |
| 1480 | dev_dbg(&request->isci_host->pdev->dev, |
| 1481 | "%s: request = %p, io_tag = %d\n", |
| 1482 | __func__, request, io_tag); |
| 1483 | |
| 1484 | return io_tag; |
| 1485 | } |
| 1486 | |
| 1487 | /** |
| 1488 | * isci_task_ssp_request_get_response_data_address() - This function is called |
| 1489 | * by the sci core to retrieve the response data address for a given task |
| 1490 | * request. |
| 1491 | * @request: This parameter is the isci_request object. |
| 1492 | * |
| 1493 | * response data address for specified task request. |
| 1494 | */ |
| 1495 | void *isci_task_ssp_request_get_response_data_address( |
| 1496 | struct isci_request *request) |
| 1497 | { |
| 1498 | struct isci_tmf *isci_tmf = isci_request_access_tmf(request); |
| 1499 | |
| 1500 | return &isci_tmf->resp.resp_iu; |
| 1501 | } |
| 1502 | |
| 1503 | /** |
| 1504 | * isci_task_ssp_request_get_response_data_length() - This function is called |
| 1505 | * by the sci core to retrieve the response data length for a given task |
| 1506 | * request. |
| 1507 | * @request: This parameter is the isci_request object. |
| 1508 | * |
| 1509 | * response data length for specified task request. |
| 1510 | */ |
| 1511 | u32 isci_task_ssp_request_get_response_data_length( |
| 1512 | struct isci_request *request) |
| 1513 | { |
| 1514 | struct isci_tmf *isci_tmf = isci_request_access_tmf(request); |
| 1515 | |
| 1516 | return sizeof(isci_tmf->resp.resp_iu); |
| 1517 | } |
| 1518 | |
| 1519 | /** |
| 1520 | * isci_bus_reset_handler() - This function performs a target reset of the |
| 1521 | * device referenced by "cmd'. This function is exported through the |
| 1522 | * "struct scsi_host_template" structure such that it is called when an I/O |
| 1523 | * recovery process has escalated to a target reset. Note that this function |
| 1524 | * is called from the scsi error handler event thread, so may block on calls. |
| 1525 | * @scsi_cmd: This parameter specifies the target to be reset. |
| 1526 | * |
| 1527 | * SUCCESS if the reset process was successful, else FAILED. |
| 1528 | */ |
| 1529 | int isci_bus_reset_handler(struct scsi_cmnd *cmd) |
| 1530 | { |
| 1531 | unsigned long flags = 0; |
| 1532 | struct isci_host *isci_host = NULL; |
| 1533 | enum sci_status status; |
| 1534 | int base_status; |
| 1535 | struct isci_remote_device *isci_dev |
| 1536 | = isci_dev_from_domain_dev( |
| 1537 | sdev_to_domain_dev(cmd->device)); |
| 1538 | |
| 1539 | dev_dbg(&cmd->device->sdev_gendev, |
| 1540 | "%s: cmd %p, isci_dev %p\n", |
| 1541 | __func__, cmd, isci_dev); |
| 1542 | |
| 1543 | if (!isci_dev) { |
| 1544 | dev_warn(&cmd->device->sdev_gendev, |
| 1545 | "%s: isci_dev is GONE!\n", |
| 1546 | __func__); |
| 1547 | |
| 1548 | return TMF_RESP_FUNC_COMPLETE; /* Nothing to reset. */ |
| 1549 | } |
| 1550 | |
| 1551 | if (isci_dev->isci_port != NULL) |
| 1552 | isci_host = isci_dev->isci_port->isci_host; |
| 1553 | |
| 1554 | if (isci_host != NULL) |
| 1555 | spin_lock_irqsave(&isci_host->scic_lock, flags); |
| 1556 | |
Dan Williams | 3a97eec | 2011-03-04 11:51:43 -0800 | [diff] [blame] | 1557 | status = scic_remote_device_reset(to_sci_dev(isci_dev)); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1558 | if (status != SCI_SUCCESS) { |
| 1559 | |
| 1560 | if (isci_host != NULL) |
| 1561 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 1562 | |
| 1563 | scmd_printk(KERN_WARNING, cmd, |
| 1564 | "%s: scic_remote_device_reset(%p) returned %d!\n", |
| 1565 | __func__, isci_dev, status); |
| 1566 | |
| 1567 | return TMF_RESP_FUNC_FAILED; |
| 1568 | } |
| 1569 | if (isci_host != NULL) |
| 1570 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 1571 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1572 | /* Make sure all pending requests are able to be fully terminated. */ |
| 1573 | isci_device_clear_reset_pending(isci_dev); |
| 1574 | |
| 1575 | /* Terminate in-progress I/O now. */ |
| 1576 | isci_remote_device_nuke_requests(isci_dev); |
| 1577 | |
| 1578 | /* Call into the libsas default handler (which calls sas_phy_reset). */ |
| 1579 | base_status = sas_eh_bus_reset_handler(cmd); |
| 1580 | |
| 1581 | if (base_status != SUCCESS) { |
| 1582 | |
| 1583 | /* There can be cases where the resets to individual devices |
| 1584 | * behind an expander will fail because of an unplug of the |
| 1585 | * expander itself. |
| 1586 | */ |
| 1587 | scmd_printk(KERN_WARNING, cmd, |
| 1588 | "%s: sas_eh_bus_reset_handler(%p) returned %d!\n", |
| 1589 | __func__, cmd, base_status); |
| 1590 | } |
| 1591 | |
| 1592 | /* WHAT TO DO HERE IF sas_phy_reset FAILS? */ |
| 1593 | |
| 1594 | if (isci_host != NULL) |
| 1595 | spin_lock_irqsave(&isci_host->scic_lock, flags); |
Dan Williams | 3a97eec | 2011-03-04 11:51:43 -0800 | [diff] [blame] | 1596 | status = scic_remote_device_reset_complete(to_sci_dev(isci_dev)); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1597 | |
| 1598 | if (isci_host != NULL) |
| 1599 | spin_unlock_irqrestore(&isci_host->scic_lock, flags); |
| 1600 | |
| 1601 | if (status != SCI_SUCCESS) { |
| 1602 | scmd_printk(KERN_WARNING, cmd, |
| 1603 | "%s: scic_remote_device_reset_complete(%p) " |
| 1604 | "returned %d!\n", |
| 1605 | __func__, isci_dev, status); |
| 1606 | } |
| 1607 | /* WHAT TO DO HERE IF scic_remote_device_reset_complete FAILS? */ |
| 1608 | |
| 1609 | dev_dbg(&cmd->device->sdev_gendev, |
| 1610 | "%s: cmd %p, isci_dev %p complete.\n", |
| 1611 | __func__, cmd, isci_dev); |
| 1612 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1613 | return TMF_RESP_FUNC_COMPLETE; |
| 1614 | } |