blob: 22f6fe171111c7e8ff62f9f65478647734213e40 [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
55
56#include <linux/completion.h>
Dan Williams50e7f9b2011-03-09 21:27:46 -080057#include <linux/irqflags.h>
Dave Jiangaf5ae892011-05-04 17:53:24 -070058#include "sas.h"
Jeff Skirvin61aaff42011-06-21 12:16:33 -070059#include <scsi/libsas.h>
Dan Williams88f3b622011-04-22 19:18:03 -070060#include "remote_device.h"
61#include "remote_node_context.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070062#include "isci.h"
63#include "request.h"
64#include "sata.h"
65#include "task.h"
Dan Williams312e0c22011-06-28 13:47:09 -070066#include "host.h"
Dave Jiangaf5ae892011-05-04 17:53:24 -070067
Dan Williams50e7f9b2011-03-09 21:27:46 -080068/**
Dan Williams1077a572011-03-11 10:13:51 -080069* isci_task_refuse() - complete the request to the upper layer driver in
70* the case where an I/O needs to be completed back in the submit path.
71* @ihost: host on which the the request was queued
72* @task: request to complete
73* @response: response code for the completed task.
74* @status: status code for the completed task.
Dan Williams50e7f9b2011-03-09 21:27:46 -080075*
Dan Williams50e7f9b2011-03-09 21:27:46 -080076*/
Dan Williams1077a572011-03-11 10:13:51 -080077static void isci_task_refuse(struct isci_host *ihost, struct sas_task *task,
78 enum service_response response,
79 enum exec_status status)
Dan Williams50e7f9b2011-03-09 21:27:46 -080080
Dan Williams1077a572011-03-11 10:13:51 -080081{
82 enum isci_completion_selection disposition;
83
84 disposition = isci_perform_normal_io_completion;
85 disposition = isci_task_set_completion_status(task, response, status,
86 disposition);
Dan Williams50e7f9b2011-03-09 21:27:46 -080087
88 /* Tasks aborted specifically by a call to the lldd_abort_task
Dan Williams1077a572011-03-11 10:13:51 -080089 * function should not be completed to the host in the regular path.
90 */
91 switch (disposition) {
Dan Williams50e7f9b2011-03-09 21:27:46 -080092 case isci_perform_normal_io_completion:
93 /* Normal notification (task_done) */
Dan Williams1077a572011-03-11 10:13:51 -080094 dev_dbg(&ihost->pdev->dev,
Jeff Skirvined8a72d2011-03-31 13:10:40 -070095 "%s: Normal - task = %p, response=%d, "
96 "status=%d\n",
Dan Williams50e7f9b2011-03-09 21:27:46 -080097 __func__, task, response, status);
98
Dan Williams1077a572011-03-11 10:13:51 -080099 task->lldd_task = NULL;
Dan Williams50e7f9b2011-03-09 21:27:46 -0800100
Jeff Skirvined8a72d2011-03-31 13:10:40 -0700101 isci_execpath_callback(ihost, task, task->task_done);
Dan Williams50e7f9b2011-03-09 21:27:46 -0800102 break;
103
104 case isci_perform_aborted_io_completion:
105 /* No notification because this request is already in the
106 * abort path.
107 */
Dan Williams1077a572011-03-11 10:13:51 -0800108 dev_warn(&ihost->pdev->dev,
Jeff Skirvined8a72d2011-03-31 13:10:40 -0700109 "%s: Aborted - task = %p, response=%d, "
110 "status=%d\n",
Dan Williams50e7f9b2011-03-09 21:27:46 -0800111 __func__, task, response, status);
112 break;
113
114 case isci_perform_error_io_completion:
115 /* Use sas_task_abort */
Dan Williams1077a572011-03-11 10:13:51 -0800116 dev_warn(&ihost->pdev->dev,
Jeff Skirvined8a72d2011-03-31 13:10:40 -0700117 "%s: Error - task = %p, response=%d, "
118 "status=%d\n",
Dan Williams50e7f9b2011-03-09 21:27:46 -0800119 __func__, task, response, status);
Jeff Skirvined8a72d2011-03-31 13:10:40 -0700120
121 isci_execpath_callback(ihost, task, sas_task_abort);
Dan Williams50e7f9b2011-03-09 21:27:46 -0800122 break;
123
124 default:
Dan Williams1077a572011-03-11 10:13:51 -0800125 dev_warn(&ihost->pdev->dev,
Dan Williams50e7f9b2011-03-09 21:27:46 -0800126 "%s: isci task notification default case!",
127 __func__);
128 sas_task_abort(task);
129 break;
130 }
131}
Dan Williams6f231dd2011-07-02 22:56:22 -0700132
Dan Williams1077a572011-03-11 10:13:51 -0800133#define for_each_sas_task(num, task) \
134 for (; num > 0; num--,\
135 task = list_entry(task->list.next, struct sas_task, list))
136
Jeff Skirvin9274f452011-06-23 17:09:02 -0700137
138static inline int isci_device_io_ready(struct isci_remote_device *idev,
139 struct sas_task *task)
140{
141 return idev ? test_bit(IDEV_IO_READY, &idev->flags) ||
142 (test_bit(IDEV_IO_NCQERROR, &idev->flags) &&
143 isci_task_is_ncq_recovery(task))
144 : 0;
145}
Dan Williams6f231dd2011-07-02 22:56:22 -0700146/**
147 * isci_task_execute_task() - This function is one of the SAS Domain Template
148 * functions. This function is called by libsas to send a task down to
149 * hardware.
150 * @task: This parameter specifies the SAS task to send.
151 * @num: This parameter specifies the number of tasks to queue.
152 * @gfp_flags: This parameter specifies the context of this call.
153 *
154 * status, zero indicates success.
155 */
156int isci_task_execute_task(struct sas_task *task, int num, gfp_t gfp_flags)
157{
Dan Williams4393aa42011-03-31 13:10:44 -0700158 struct isci_host *ihost = dev_to_ihost(task->dev);
Dan Williams209fae12011-06-13 17:39:44 -0700159 struct isci_remote_device *idev;
Dan Williamsf2088262011-06-16 11:26:12 -0700160 unsigned long flags;
161 bool io_ready;
Dan Williams312e0c22011-06-28 13:47:09 -0700162 u16 tag;
Dan Williams6f231dd2011-07-02 22:56:22 -0700163
Dan Williams1077a572011-03-11 10:13:51 -0800164 dev_dbg(&ihost->pdev->dev, "%s: num=%d\n", __func__, num);
Dan Williams6f231dd2011-07-02 22:56:22 -0700165
Dan Williams1077a572011-03-11 10:13:51 -0800166 for_each_sas_task(num, task) {
Dan Williams312e0c22011-06-28 13:47:09 -0700167 enum sci_status status = SCI_FAILURE;
168
Dan Williams209fae12011-06-13 17:39:44 -0700169 spin_lock_irqsave(&ihost->scic_lock, flags);
170 idev = isci_lookup_device(task->dev);
Jeff Skirvin9274f452011-06-23 17:09:02 -0700171 io_ready = isci_device_io_ready(idev, task);
Dan Williams312e0c22011-06-28 13:47:09 -0700172 tag = isci_alloc_tag(ihost);
Dan Williams209fae12011-06-13 17:39:44 -0700173 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700174
Dan Williamsf2088262011-06-16 11:26:12 -0700175 dev_dbg(&ihost->pdev->dev,
176 "task: %p, num: %d dev: %p idev: %p:%#lx cmd = %p\n",
177 task, num, task->dev, idev, idev ? idev->flags : 0,
178 task->uldd_task);
Jeff Skirvinf0846c62011-03-08 19:22:07 -0700179
Dan Williamsf2088262011-06-16 11:26:12 -0700180 if (!idev) {
181 isci_task_refuse(ihost, task, SAS_TASK_UNDELIVERED,
182 SAS_DEVICE_UNKNOWN);
Dan Williams312e0c22011-06-28 13:47:09 -0700183 } else if (!io_ready || tag == SCI_CONTROLLER_INVALID_IO_TAG) {
Dan Williamsf2088262011-06-16 11:26:12 -0700184 /* Indicate QUEUE_FULL so that the scsi midlayer
185 * retries.
186 */
187 isci_task_refuse(ihost, task, SAS_TASK_COMPLETE,
188 SAS_QUEUE_FULL);
Dan Williams6f231dd2011-07-02 22:56:22 -0700189 } else {
Jeff Skirvinf0846c62011-03-08 19:22:07 -0700190 /* There is a device and it's ready for I/O. */
191 spin_lock_irqsave(&task->task_state_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700192
Jeff Skirvinf0846c62011-03-08 19:22:07 -0700193 if (task->task_state_flags & SAS_TASK_STATE_ABORTED) {
Dan Williamsf2088262011-06-16 11:26:12 -0700194 /* The I/O was aborted. */
Jeff Skirvinf0846c62011-03-08 19:22:07 -0700195 spin_unlock_irqrestore(&task->task_state_lock,
196 flags);
197
Dan Williams1077a572011-03-11 10:13:51 -0800198 isci_task_refuse(ihost, task,
199 SAS_TASK_UNDELIVERED,
200 SAM_STAT_TASK_ABORTED);
Jeff Skirvinf0846c62011-03-08 19:22:07 -0700201 } else {
Dan Williams6f231dd2011-07-02 22:56:22 -0700202 task->task_state_flags |= SAS_TASK_AT_INITIATOR;
203 spin_unlock_irqrestore(&task->task_state_lock, flags);
Jeff Skirvinf0846c62011-03-08 19:22:07 -0700204
205 /* build and send the request. */
Dan Williams312e0c22011-06-28 13:47:09 -0700206 status = isci_request_execute(ihost, idev, task, tag, gfp_flags);
Jeff Skirvinf0846c62011-03-08 19:22:07 -0700207
208 if (status != SCI_SUCCESS) {
209
210 spin_lock_irqsave(&task->task_state_lock, flags);
211 /* Did not really start this command. */
212 task->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
213 spin_unlock_irqrestore(&task->task_state_lock, flags);
214
215 /* Indicate QUEUE_FULL so that the scsi
216 * midlayer retries. if the request
217 * failed for remote device reasons,
218 * it gets returned as
219 * SAS_TASK_UNDELIVERED next time
220 * through.
221 */
Dan Williams1077a572011-03-11 10:13:51 -0800222 isci_task_refuse(ihost, task,
223 SAS_TASK_COMPLETE,
224 SAS_QUEUE_FULL);
Jeff Skirvinf0846c62011-03-08 19:22:07 -0700225 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700226 }
227 }
Dan Williams312e0c22011-06-28 13:47:09 -0700228 if (status != SCI_SUCCESS && tag != SCI_CONTROLLER_INVALID_IO_TAG) {
229 spin_lock_irqsave(&ihost->scic_lock, flags);
230 /* command never hit the device, so just free
231 * the tci and skip the sequence increment
232 */
233 isci_tci_free(ihost, ISCI_TAG_TCI(tag));
234 spin_unlock_irqrestore(&ihost->scic_lock, flags);
235 }
Dan Williams209fae12011-06-13 17:39:44 -0700236 isci_put_device(idev);
Dan Williams1077a572011-03-11 10:13:51 -0800237 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700238 return 0;
239}
240
Dan Williams0d0cf142011-06-13 00:51:30 -0700241static struct isci_request *isci_task_request_build(struct isci_host *ihost,
Dan Williams209fae12011-06-13 17:39:44 -0700242 struct isci_remote_device *idev,
Dan Williams312e0c22011-06-28 13:47:09 -0700243 u16 tag, struct isci_tmf *isci_tmf)
Dan Williams6f231dd2011-07-02 22:56:22 -0700244{
Dan Williams6f231dd2011-07-02 22:56:22 -0700245 enum sci_status status = SCI_FAILURE;
Dan Williams0d0cf142011-06-13 00:51:30 -0700246 struct isci_request *ireq = NULL;
Dan Williamsa1a113b2011-04-21 18:44:45 -0700247 struct domain_device *dev;
Dan Williams6f231dd2011-07-02 22:56:22 -0700248
Dan Williams0d0cf142011-06-13 00:51:30 -0700249 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -0700250 "%s: isci_tmf = %p\n", __func__, isci_tmf);
251
Dan Williams0d0cf142011-06-13 00:51:30 -0700252 dev = idev->domain_dev;
Dan Williams6f231dd2011-07-02 22:56:22 -0700253
254 /* do common allocation and init of request object. */
Dan Williams209fae12011-06-13 17:39:44 -0700255 ireq = isci_request_alloc_tmf(ihost, isci_tmf, GFP_ATOMIC);
Dan Williams0d0cf142011-06-13 00:51:30 -0700256 if (!ireq)
257 return NULL;
Dan Williams6f231dd2011-07-02 22:56:22 -0700258
259 /* let the core do it's construct. */
Dan Williams312e0c22011-06-28 13:47:09 -0700260 status = scic_task_request_construct(&ihost->sci, &idev->sci, tag,
Dan Williams0d0cf142011-06-13 00:51:30 -0700261 &ireq->sci);
Dan Williams6f231dd2011-07-02 22:56:22 -0700262
263 if (status != SCI_SUCCESS) {
Dan Williams0d0cf142011-06-13 00:51:30 -0700264 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -0700265 "%s: scic_task_request_construct failed - "
266 "status = 0x%x\n",
267 __func__,
268 status);
269 goto errout;
270 }
271
Dan Williamsa1a113b2011-04-21 18:44:45 -0700272 /* XXX convert to get this from task->tproto like other drivers */
273 if (dev->dev_type == SAS_END_DEV) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700274 isci_tmf->proto = SAS_PROTOCOL_SSP;
Dan Williams0d0cf142011-06-13 00:51:30 -0700275 status = scic_task_request_construct_ssp(&ireq->sci);
Dan Williams6f231dd2011-07-02 22:56:22 -0700276 if (status != SCI_SUCCESS)
277 goto errout;
278 }
279
Dan Williamsa1a113b2011-04-21 18:44:45 -0700280 if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700281 isci_tmf->proto = SAS_PROTOCOL_SATA;
Dan Williams0d0cf142011-06-13 00:51:30 -0700282 status = isci_sata_management_task_request_build(ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700283
284 if (status != SCI_SUCCESS)
285 goto errout;
286 }
Dan Williams0d0cf142011-06-13 00:51:30 -0700287 return ireq;
Dan Williams6f231dd2011-07-02 22:56:22 -0700288 errout:
Dan Williams0d0cf142011-06-13 00:51:30 -0700289 isci_request_free(ihost, ireq);
Dan Williams312e0c22011-06-28 13:47:09 -0700290 return NULL;
Dan Williams6f231dd2011-07-02 22:56:22 -0700291}
292
Dan Williams209fae12011-06-13 17:39:44 -0700293int isci_task_execute_tmf(struct isci_host *ihost,
294 struct isci_remote_device *isci_device,
295 struct isci_tmf *tmf, unsigned long timeout_ms)
Dan Williams6f231dd2011-07-02 22:56:22 -0700296{
297 DECLARE_COMPLETION_ONSTACK(completion);
Bartosz Barcinski467e8552011-04-12 17:28:41 -0700298 enum sci_task_status status = SCI_TASK_FAILURE;
Dan Williams6f231dd2011-07-02 22:56:22 -0700299 struct scic_sds_remote_device *sci_device;
Dan Williams0d0cf142011-06-13 00:51:30 -0700300 struct isci_request *ireq;
Dan Williams6f231dd2011-07-02 22:56:22 -0700301 int ret = TMF_RESP_FUNC_FAILED;
302 unsigned long flags;
Edmund Nadolskifd183882011-05-19 12:00:15 +0000303 unsigned long timeleft;
Dan Williams312e0c22011-06-28 13:47:09 -0700304 u16 tag;
305
306 spin_lock_irqsave(&ihost->scic_lock, flags);
307 tag = isci_alloc_tag(ihost);
308 spin_unlock_irqrestore(&ihost->scic_lock, flags);
309
310 if (tag == SCI_CONTROLLER_INVALID_IO_TAG)
311 return ret;
Dan Williams6f231dd2011-07-02 22:56:22 -0700312
313 /* sanity check, return TMF_RESP_FUNC_FAILED
314 * if the device is not there and ready.
315 */
Jeff Skirvin9274f452011-06-23 17:09:02 -0700316 if (!isci_device ||
317 (!test_bit(IDEV_IO_READY, &isci_device->flags) &&
318 !test_bit(IDEV_IO_NCQERROR, &isci_device->flags))) {
Dan Williams0d0cf142011-06-13 00:51:30 -0700319 dev_dbg(&ihost->pdev->dev,
Dan Williamsf2088262011-06-16 11:26:12 -0700320 "%s: isci_device = %p not ready (%#lx)\n",
Dan Williams6f231dd2011-07-02 22:56:22 -0700321 __func__,
Dan Williamsf2088262011-06-16 11:26:12 -0700322 isci_device, isci_device ? isci_device->flags : 0);
Dan Williams312e0c22011-06-28 13:47:09 -0700323 goto err_tci;
Dan Williams6f231dd2011-07-02 22:56:22 -0700324 } else
Dan Williams0d0cf142011-06-13 00:51:30 -0700325 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -0700326 "%s: isci_device = %p\n",
327 __func__, isci_device);
328
Dan Williams57f20f42011-04-21 18:14:45 -0700329 sci_device = &isci_device->sci;
Dan Williams6f231dd2011-07-02 22:56:22 -0700330
331 /* Assign the pointer to the TMF's completion kernel wait structure. */
332 tmf->complete = &completion;
333
Dan Williams312e0c22011-06-28 13:47:09 -0700334 ireq = isci_task_request_build(ihost, isci_device, tag, tmf);
335 if (!ireq)
336 goto err_tci;
Dan Williams6f231dd2011-07-02 22:56:22 -0700337
Dan Williams0d0cf142011-06-13 00:51:30 -0700338 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700339
340 /* start the TMF io. */
Dan Williams312e0c22011-06-28 13:47:09 -0700341 status = scic_controller_start_task(&ihost->sci,
342 sci_device,
343 &ireq->sci);
Dan Williams6f231dd2011-07-02 22:56:22 -0700344
Bartosz Barcinski467e8552011-04-12 17:28:41 -0700345 if (status != SCI_TASK_SUCCESS) {
Dan Williams0d0cf142011-06-13 00:51:30 -0700346 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -0700347 "%s: start_io failed - status = 0x%x, request = %p\n",
348 __func__,
349 status,
Dan Williams0d0cf142011-06-13 00:51:30 -0700350 ireq);
351 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams312e0c22011-06-28 13:47:09 -0700352 goto err_ireq;
Dan Williams6f231dd2011-07-02 22:56:22 -0700353 }
354
Dan Williams6f231dd2011-07-02 22:56:22 -0700355 if (tmf->cb_state_func != NULL)
356 tmf->cb_state_func(isci_tmf_started, tmf, tmf->cb_data);
357
Dan Williams0d0cf142011-06-13 00:51:30 -0700358 isci_request_change_state(ireq, started);
Dan Williams6f231dd2011-07-02 22:56:22 -0700359
360 /* add the request to the remote device request list. */
Dan Williams0d0cf142011-06-13 00:51:30 -0700361 list_add(&ireq->dev_node, &isci_device->reqs_in_process);
Dan Williams6f231dd2011-07-02 22:56:22 -0700362
Dan Williams0d0cf142011-06-13 00:51:30 -0700363 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700364
365 /* Wait for the TMF to complete, or a timeout. */
Edmund Nadolskifd183882011-05-19 12:00:15 +0000366 timeleft = wait_for_completion_timeout(&completion,
Dan Williams086a0da2011-06-21 16:23:03 -0700367 msecs_to_jiffies(timeout_ms));
Edmund Nadolskifd183882011-05-19 12:00:15 +0000368
369 if (timeleft == 0) {
Dan Williams0d0cf142011-06-13 00:51:30 -0700370 spin_lock_irqsave(&ihost->scic_lock, flags);
Edmund Nadolskifd183882011-05-19 12:00:15 +0000371
372 if (tmf->cb_state_func != NULL)
373 tmf->cb_state_func(isci_tmf_timed_out, tmf, tmf->cb_data);
374
Dan Williams086a0da2011-06-21 16:23:03 -0700375 scic_controller_terminate_request(&ihost->sci,
376 &isci_device->sci,
377 &ireq->sci);
Edmund Nadolskifd183882011-05-19 12:00:15 +0000378
Dan Williams0d0cf142011-06-13 00:51:30 -0700379 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams086a0da2011-06-21 16:23:03 -0700380
381 wait_for_completion(tmf->complete);
Edmund Nadolskifd183882011-05-19 12:00:15 +0000382 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700383
384 isci_print_tmf(tmf);
385
386 if (tmf->status == SCI_SUCCESS)
387 ret = TMF_RESP_FUNC_COMPLETE;
388 else if (tmf->status == SCI_FAILURE_IO_RESPONSE_VALID) {
Dan Williams0d0cf142011-06-13 00:51:30 -0700389 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -0700390 "%s: tmf.status == "
391 "SCI_FAILURE_IO_RESPONSE_VALID\n",
392 __func__);
393 ret = TMF_RESP_FUNC_COMPLETE;
394 }
395 /* Else - leave the default "failed" status alone. */
396
Dan Williams0d0cf142011-06-13 00:51:30 -0700397 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -0700398 "%s: completed request = %p\n",
399 __func__,
Dan Williams0d0cf142011-06-13 00:51:30 -0700400 ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700401
Dan Williams6f231dd2011-07-02 22:56:22 -0700402 return ret;
Dan Williams312e0c22011-06-28 13:47:09 -0700403
404 err_ireq:
405 isci_request_free(ihost, ireq);
406 err_tci:
407 spin_lock_irqsave(&ihost->scic_lock, flags);
408 isci_tci_free(ihost, ISCI_TAG_TCI(tag));
409 spin_unlock_irqrestore(&ihost->scic_lock, flags);
410
411 return ret;
Dan Williams6f231dd2011-07-02 22:56:22 -0700412}
413
414void isci_task_build_tmf(
415 struct isci_tmf *tmf,
Dan Williams6f231dd2011-07-02 22:56:22 -0700416 enum isci_tmf_function_codes code,
417 void (*tmf_sent_cb)(enum isci_tmf_cb_state,
418 struct isci_tmf *,
419 void *),
Jeff Skirvinc3f42fe2011-03-04 14:06:56 -0800420 void *cb_data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700421{
Dan Williams6f231dd2011-07-02 22:56:22 -0700422 memset(tmf, 0, sizeof(*tmf));
423
Dan Williams6f231dd2011-07-02 22:56:22 -0700424 tmf->tmf_code = code;
Dan Williams6f231dd2011-07-02 22:56:22 -0700425 tmf->cb_state_func = tmf_sent_cb;
Jeff Skirvinc3f42fe2011-03-04 14:06:56 -0800426 tmf->cb_data = cb_data;
427}
Jeff Skirvin1fad9e92011-03-04 14:06:46 -0800428
Dan Williams35173d52011-03-26 16:43:01 -0700429static void isci_task_build_abort_task_tmf(
Jeff Skirvinc3f42fe2011-03-04 14:06:56 -0800430 struct isci_tmf *tmf,
Jeff Skirvinc3f42fe2011-03-04 14:06:56 -0800431 enum isci_tmf_function_codes code,
432 void (*tmf_sent_cb)(enum isci_tmf_cb_state,
433 struct isci_tmf *,
434 void *),
435 struct isci_request *old_request)
436{
Dan Williams209fae12011-06-13 17:39:44 -0700437 isci_task_build_tmf(tmf, code, tmf_sent_cb,
Jeff Skirvinc3f42fe2011-03-04 14:06:56 -0800438 (void *)old_request);
439 tmf->io_tag = old_request->io_tag;
Dan Williams6f231dd2011-07-02 22:56:22 -0700440}
441
Dan Williams6f231dd2011-07-02 22:56:22 -0700442/**
443 * isci_task_validate_request_to_abort() - This function checks the given I/O
444 * against the "started" state. If the request is still "started", it's
445 * state is changed to aborted. NOTE: isci_host->scic_lock MUST BE HELD
446 * BEFORE CALLING THIS FUNCTION.
447 * @isci_request: This parameter specifies the request object to control.
448 * @isci_host: This parameter specifies the ISCI host object
449 * @isci_device: This is the device to which the request is pending.
450 * @aborted_io_completion: This is a completion structure that will be added to
451 * the request in case it is changed to aborting; this completion is
452 * triggered when the request is fully completed.
453 *
454 * Either "started" on successful change of the task status to "aborted", or
455 * "unallocated" if the task cannot be controlled.
456 */
457static enum isci_request_status isci_task_validate_request_to_abort(
458 struct isci_request *isci_request,
459 struct isci_host *isci_host,
460 struct isci_remote_device *isci_device,
461 struct completion *aborted_io_completion)
462{
463 enum isci_request_status old_state = unallocated;
464
465 /* Only abort the task if it's in the
466 * device's request_in_process list
467 */
468 if (isci_request && !list_empty(&isci_request->dev_node)) {
469 old_state = isci_request_change_started_to_aborted(
470 isci_request, aborted_io_completion);
471
Dan Williams6f231dd2011-07-02 22:56:22 -0700472 }
473
474 return old_state;
475}
476
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700477/**
478* isci_request_cleanup_completed_loiterer() - This function will take care of
479* the final cleanup on any request which has been explicitly terminated.
480* @isci_host: This parameter specifies the ISCI host object
481* @isci_device: This is the device to which the request is pending.
482* @isci_request: This parameter specifies the terminated request object.
483* @task: This parameter is the libsas I/O request.
484*/
Dan Williams6f231dd2011-07-02 22:56:22 -0700485static void isci_request_cleanup_completed_loiterer(
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700486 struct isci_host *isci_host,
Dan Williams6f231dd2011-07-02 22:56:22 -0700487 struct isci_remote_device *isci_device,
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700488 struct isci_request *isci_request,
489 struct sas_task *task)
Dan Williams6f231dd2011-07-02 22:56:22 -0700490{
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700491 unsigned long flags;
Dan Williams6f231dd2011-07-02 22:56:22 -0700492
493 dev_dbg(&isci_host->pdev->dev,
494 "%s: isci_device=%p, request=%p, task=%p\n",
Jeff Skirvin18d3d722011-03-04 14:06:38 -0800495 __func__, isci_device, isci_request, task);
Dan Williams6f231dd2011-07-02 22:56:22 -0700496
Jeff Skirvina5fde222011-03-04 14:06:42 -0800497 if (task != NULL) {
498
499 spin_lock_irqsave(&task->task_state_lock, flags);
500 task->lldd_task = NULL;
501
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700502 task->task_state_flags &= ~SAS_TASK_NEED_DEV_RESET;
503
Jeff Skirvina5fde222011-03-04 14:06:42 -0800504 isci_set_task_doneflags(task);
505
506 /* If this task is not in the abort path, call task_done. */
507 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
508
509 spin_unlock_irqrestore(&task->task_state_lock, flags);
510 task->task_done(task);
511 } else
512 spin_unlock_irqrestore(&task->task_state_lock, flags);
513 }
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800514
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700515 if (isci_request != NULL) {
516 spin_lock_irqsave(&isci_host->scic_lock, flags);
517 list_del_init(&isci_request->dev_node);
518 spin_unlock_irqrestore(&isci_host->scic_lock, flags);
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800519
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700520 isci_request_free(isci_host, isci_request);
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800521 }
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800522}
523
Dan Williams6f231dd2011-07-02 22:56:22 -0700524/**
525 * isci_terminate_request_core() - This function will terminate the given
526 * request, and wait for it to complete. This function must only be called
527 * from a thread that can wait. Note that the request is terminated and
528 * completed (back to the host, if started there).
529 * @isci_host: This SCU.
530 * @isci_device: The target.
531 * @isci_request: The I/O request to be terminated.
532 *
Dan Williams6f231dd2011-07-02 22:56:22 -0700533 */
534static void isci_terminate_request_core(
535 struct isci_host *isci_host,
536 struct isci_remote_device *isci_device,
Jeff Skirvincbb65c62011-03-04 14:06:50 -0800537 struct isci_request *isci_request)
Dan Williams6f231dd2011-07-02 22:56:22 -0700538{
Jeff Skirvincbb65c62011-03-04 14:06:50 -0800539 enum sci_status status = SCI_SUCCESS;
Dan Williams6f231dd2011-07-02 22:56:22 -0700540 bool was_terminated = false;
541 bool needs_cleanup_handling = false;
542 enum isci_request_status request_status;
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700543 unsigned long flags;
544 unsigned long termination_completed = 1;
545 struct completion *io_request_completion;
546 struct sas_task *task;
Dan Williams6f231dd2011-07-02 22:56:22 -0700547
548 dev_dbg(&isci_host->pdev->dev,
549 "%s: device = %p; request = %p\n",
550 __func__, isci_device, isci_request);
551
Dan Williams6f231dd2011-07-02 22:56:22 -0700552 spin_lock_irqsave(&isci_host->scic_lock, flags);
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800553
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700554 io_request_completion = isci_request->io_request_completion;
555
556 task = (isci_request->ttype == io_task)
557 ? isci_request_access_task(isci_request)
558 : NULL;
559
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800560 /* Note that we are not going to control
561 * the target to abort the request.
562 */
563 isci_request->complete_in_target = true;
564
Dan Williams6f231dd2011-07-02 22:56:22 -0700565 /* Make sure the request wasn't just sitting around signalling
566 * device condition (if the request handle is NULL, then the
567 * request completed but needed additional handling here).
568 */
Dan Williams67ea8382011-05-08 11:47:15 -0700569 if (!isci_request->terminated) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700570 was_terminated = true;
Jeff Skirvincbb65c62011-03-04 14:06:50 -0800571 needs_cleanup_handling = true;
Dan Williams6f231dd2011-07-02 22:56:22 -0700572 status = scic_controller_terminate_request(
Artur Wojcikcc3dbd02011-05-04 07:58:16 +0000573 &isci_host->sci,
Dan Williams57f20f42011-04-21 18:14:45 -0700574 &isci_device->sci,
Dan Williams67ea8382011-05-08 11:47:15 -0700575 &isci_request->sci);
Dan Williams6f231dd2011-07-02 22:56:22 -0700576 }
577 spin_unlock_irqrestore(&isci_host->scic_lock, flags);
578
579 /*
580 * The only time the request to terminate will
581 * fail is when the io request is completed and
582 * being aborted.
583 */
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800584 if (status != SCI_SUCCESS) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700585 dev_err(&isci_host->pdev->dev,
586 "%s: scic_controller_terminate_request"
587 " returned = 0x%x\n",
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700588 __func__, status);
589
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800590 isci_request->io_request_completion = NULL;
591
592 } else {
Dan Williams6f231dd2011-07-02 22:56:22 -0700593 if (was_terminated) {
594 dev_dbg(&isci_host->pdev->dev,
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700595 "%s: before completion wait (%p/%p)\n",
596 __func__, isci_request, io_request_completion);
Dan Williams6f231dd2011-07-02 22:56:22 -0700597
598 /* Wait here for the request to complete. */
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700599 #define TERMINATION_TIMEOUT_MSEC 500
600 termination_completed
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800601 = wait_for_completion_timeout(
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700602 io_request_completion,
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800603 msecs_to_jiffies(TERMINATION_TIMEOUT_MSEC));
Dan Williams6f231dd2011-07-02 22:56:22 -0700604
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700605 if (!termination_completed) {
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800606
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700607 /* The request to terminate has timed out. */
608 spin_lock_irqsave(&isci_host->scic_lock,
609 flags);
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800610
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700611 /* Check for state changes. */
612 if (!isci_request->terminated) {
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800613
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700614 /* The best we can do is to have the
615 * request die a silent death if it
616 * ever really completes.
617 *
618 * Set the request state to "dead",
619 * and clear the task pointer so that
620 * an actual completion event callback
621 * doesn't do anything.
622 */
623 isci_request->status = dead;
624 isci_request->io_request_completion
625 = NULL;
626
627 if (isci_request->ttype == io_task) {
628
629 /* Break links with the
630 * sas_task.
631 */
632 isci_request->ttype_ptr.io_task_ptr
633 = NULL;
634 }
635 } else
636 termination_completed = 1;
637
638 spin_unlock_irqrestore(&isci_host->scic_lock,
639 flags);
640
641 if (!termination_completed) {
642
643 dev_err(&isci_host->pdev->dev,
644 "%s: *** Timeout waiting for "
645 "termination(%p/%p)\n",
646 __func__, io_request_completion,
647 isci_request);
648
649 /* The request can no longer be referenced
650 * safely since it may go away if the
651 * termination every really does complete.
652 */
653 isci_request = NULL;
654 }
655 }
656 if (termination_completed)
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800657 dev_dbg(&isci_host->pdev->dev,
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700658 "%s: after completion wait (%p/%p)\n",
659 __func__, isci_request, io_request_completion);
Dan Williams6f231dd2011-07-02 22:56:22 -0700660 }
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800661
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700662 if (termination_completed) {
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800663
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700664 isci_request->io_request_completion = NULL;
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800665
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700666 /* Peek at the status of the request. This will tell
667 * us if there was special handling on the request such that it
668 * needs to be detached and freed here.
669 */
670 spin_lock_irqsave(&isci_request->state_lock, flags);
671 request_status = isci_request_get_state(isci_request);
672
673 if ((isci_request->ttype == io_task) /* TMFs are in their own thread */
674 && ((request_status == aborted)
675 || (request_status == aborting)
676 || (request_status == terminating)
677 || (request_status == completed)
678 || (request_status == dead)
679 )
680 ) {
681
682 /* The completion routine won't free a request in
683 * the aborted/aborting/etc. states, so we do
684 * it here.
685 */
686 needs_cleanup_handling = true;
687 }
688 spin_unlock_irqrestore(&isci_request->state_lock, flags);
689
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800690 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700691 if (needs_cleanup_handling)
692 isci_request_cleanup_completed_loiterer(
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700693 isci_host, isci_device, isci_request, task);
Jeff Skirvina5fde222011-03-04 14:06:42 -0800694 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700695}
696
697/**
698 * isci_terminate_pending_requests() - This function will change the all of the
699 * requests on the given device's state to "aborting", will terminate the
700 * requests, and wait for them to complete. This function must only be
701 * called from a thread that can wait. Note that the requests are all
702 * terminated and completed (back to the host, if started there).
703 * @isci_host: This parameter specifies SCU.
704 * @isci_device: This parameter specifies the target.
705 *
Dan Williams6f231dd2011-07-02 22:56:22 -0700706 */
Dan Williams980d3ae2011-06-20 15:11:22 -0700707void isci_terminate_pending_requests(struct isci_host *ihost,
708 struct isci_remote_device *idev)
Dan Williams6f231dd2011-07-02 22:56:22 -0700709{
Dan Williams980d3ae2011-06-20 15:11:22 -0700710 struct completion request_completion;
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700711 enum isci_request_status old_state;
Dan Williams980d3ae2011-06-20 15:11:22 -0700712 unsigned long flags;
713 LIST_HEAD(list);
Dan Williams6f231dd2011-07-02 22:56:22 -0700714
Dan Williams980d3ae2011-06-20 15:11:22 -0700715 spin_lock_irqsave(&ihost->scic_lock, flags);
716 list_splice_init(&idev->reqs_in_process, &list);
Dan Williams6f231dd2011-07-02 22:56:22 -0700717
Dan Williams980d3ae2011-06-20 15:11:22 -0700718 /* assumes that isci_terminate_request_core deletes from the list */
719 while (!list_empty(&list)) {
720 struct isci_request *ireq = list_entry(list.next, typeof(*ireq), dev_node);
Dan Williams6f231dd2011-07-02 22:56:22 -0700721
Dan Williams980d3ae2011-06-20 15:11:22 -0700722 /* Change state to "terminating" if it is currently
723 * "started".
724 */
725 old_state = isci_request_change_started_to_newstate(ireq,
726 &request_completion,
727 terminating);
728 switch (old_state) {
729 case started:
730 case completed:
731 case aborting:
732 break;
733 default:
734 /* termination in progress, or otherwise dispositioned.
735 * We know the request was on 'list' so should be safe
736 * to move it back to reqs_in_process
737 */
738 list_move(&ireq->dev_node, &idev->reqs_in_process);
739 ireq = NULL;
740 break;
741 }
742
743 if (!ireq)
744 continue;
745 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800746
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700747 init_completion(&request_completion);
Jeff Skirvin4dc043c2011-03-04 14:06:52 -0800748
Dan Williams980d3ae2011-06-20 15:11:22 -0700749 dev_dbg(&ihost->pdev->dev,
750 "%s: idev=%p request=%p; task=%p old_state=%d\n",
751 __func__, idev, ireq,
752 ireq->ttype == io_task ? isci_request_access_task(ireq) : NULL,
753 old_state);
Jeff Skirvin77c852f2011-06-20 14:09:16 -0700754
Dan Williams980d3ae2011-06-20 15:11:22 -0700755 /* If the old_state is started:
756 * This request was not already being aborted. If it had been,
757 * then the aborting I/O (ie. the TMF request) would not be in
758 * the aborting state, and thus would be terminated here. Note
759 * that since the TMF completion's call to the kernel function
760 * "complete()" does not happen until the pending I/O request
761 * terminate fully completes, we do not have to implement a
762 * special wait here for already aborting requests - the
763 * termination of the TMF request will force the request
764 * to finish it's already started terminate.
765 *
766 * If old_state == completed:
767 * This request completed from the SCU hardware perspective
768 * and now just needs cleaning up in terms of freeing the
769 * request and potentially calling up to libsas.
770 *
771 * If old_state == aborting:
772 * This request has already gone through a TMF timeout, but may
773 * not have been terminated; needs cleaning up at least.
774 */
775 isci_terminate_request_core(ihost, idev, ireq);
776 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700777 }
Dan Williams980d3ae2011-06-20 15:11:22 -0700778 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700779}
780
781/**
782 * isci_task_send_lu_reset_sas() - This function is called by of the SAS Domain
783 * Template functions.
784 * @lun: This parameter specifies the lun to be reset.
785 *
786 * status, zero indicates success.
787 */
788static int isci_task_send_lu_reset_sas(
789 struct isci_host *isci_host,
790 struct isci_remote_device *isci_device,
791 u8 *lun)
792{
793 struct isci_tmf tmf;
794 int ret = TMF_RESP_FUNC_FAILED;
795
796 dev_dbg(&isci_host->pdev->dev,
797 "%s: isci_host = %p, isci_device = %p\n",
798 __func__, isci_host, isci_device);
799 /* Send the LUN reset to the target. By the time the call returns,
800 * the TMF has fully exected in the target (in which case the return
801 * value is "TMF_RESP_FUNC_COMPLETE", or the request timed-out (or
802 * was otherwise unable to be executed ("TMF_RESP_FUNC_FAILED").
803 */
Dan Williams209fae12011-06-13 17:39:44 -0700804 isci_task_build_tmf(&tmf, isci_tmf_ssp_lun_reset, NULL, NULL);
Dan Williams6f231dd2011-07-02 22:56:22 -0700805
806 #define ISCI_LU_RESET_TIMEOUT_MS 2000 /* 2 second timeout. */
Dan Williams209fae12011-06-13 17:39:44 -0700807 ret = isci_task_execute_tmf(isci_host, isci_device, &tmf, ISCI_LU_RESET_TIMEOUT_MS);
Dan Williams6f231dd2011-07-02 22:56:22 -0700808
809 if (ret == TMF_RESP_FUNC_COMPLETE)
810 dev_dbg(&isci_host->pdev->dev,
811 "%s: %p: TMF_LU_RESET passed\n",
812 __func__, isci_device);
813 else
814 dev_dbg(&isci_host->pdev->dev,
815 "%s: %p: TMF_LU_RESET failed (%x)\n",
816 __func__, isci_device, ret);
817
818 return ret;
819}
820
821/**
822 * isci_task_lu_reset() - This function is one of the SAS Domain Template
823 * functions. This is one of the Task Management functoins called by libsas,
824 * to reset the given lun. Note the assumption that while this call is
825 * executing, no I/O will be sent by the host to the device.
826 * @lun: This parameter specifies the lun to be reset.
827 *
828 * status, zero indicates success.
829 */
Dan Williams4393aa42011-03-31 13:10:44 -0700830int isci_task_lu_reset(struct domain_device *domain_device, u8 *lun)
Dan Williams6f231dd2011-07-02 22:56:22 -0700831{
Dan Williams4393aa42011-03-31 13:10:44 -0700832 struct isci_host *isci_host = dev_to_ihost(domain_device);
Dan Williams209fae12011-06-13 17:39:44 -0700833 struct isci_remote_device *isci_device;
834 unsigned long flags;
Dan Williams6f231dd2011-07-02 22:56:22 -0700835 int ret;
Dan Williams6f231dd2011-07-02 22:56:22 -0700836
Dan Williams209fae12011-06-13 17:39:44 -0700837 spin_lock_irqsave(&isci_host->scic_lock, flags);
838 isci_device = isci_lookup_device(domain_device);
839 spin_unlock_irqrestore(&isci_host->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700840
Dan Williams4393aa42011-03-31 13:10:44 -0700841 dev_dbg(&isci_host->pdev->dev,
842 "%s: domain_device=%p, isci_host=%p; isci_device=%p\n",
Dan Williams6f231dd2011-07-02 22:56:22 -0700843 __func__, domain_device, isci_host, isci_device);
844
Dan Williams209fae12011-06-13 17:39:44 -0700845 if (isci_device)
Dan Williamsd06b4872011-05-02 13:59:25 -0700846 set_bit(IDEV_EH, &isci_device->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700847
848 /* If there is a device reset pending on any request in the
849 * device's list, fail this LUN reset request in order to
850 * escalate to the device reset.
851 */
Dan Williams209fae12011-06-13 17:39:44 -0700852 if (!isci_device ||
Dan Williams4393aa42011-03-31 13:10:44 -0700853 isci_device_is_reset_pending(isci_host, isci_device)) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700854 dev_warn(&isci_host->pdev->dev,
Dan Williams4393aa42011-03-31 13:10:44 -0700855 "%s: No dev (%p), or "
Dan Williams6f231dd2011-07-02 22:56:22 -0700856 "RESET PENDING: domain_device=%p\n",
Dan Williams4393aa42011-03-31 13:10:44 -0700857 __func__, isci_device, domain_device);
Dan Williams209fae12011-06-13 17:39:44 -0700858 ret = TMF_RESP_FUNC_FAILED;
859 goto out;
Dan Williams6f231dd2011-07-02 22:56:22 -0700860 }
861
Dan Williams6f231dd2011-07-02 22:56:22 -0700862 /* Send the task management part of the reset. */
863 if (sas_protocol_ata(domain_device->tproto)) {
Dan Williams4393aa42011-03-31 13:10:44 -0700864 ret = isci_task_send_lu_reset_sata(isci_host, isci_device, lun);
Dan Williams6f231dd2011-07-02 22:56:22 -0700865 } else
866 ret = isci_task_send_lu_reset_sas(isci_host, isci_device, lun);
867
868 /* If the LUN reset worked, all the I/O can now be terminated. */
869 if (ret == TMF_RESP_FUNC_COMPLETE)
870 /* Terminate all I/O now. */
871 isci_terminate_pending_requests(isci_host,
Dan Williams980d3ae2011-06-20 15:11:22 -0700872 isci_device);
Dan Williams6f231dd2011-07-02 22:56:22 -0700873
Dan Williams209fae12011-06-13 17:39:44 -0700874 out:
875 isci_put_device(isci_device);
Dan Williams6f231dd2011-07-02 22:56:22 -0700876 return ret;
877}
878
879
880/* int (*lldd_clear_nexus_port)(struct asd_sas_port *); */
881int isci_task_clear_nexus_port(struct asd_sas_port *port)
882{
883 return TMF_RESP_FUNC_FAILED;
884}
885
886
887
888int isci_task_clear_nexus_ha(struct sas_ha_struct *ha)
889{
890 return TMF_RESP_FUNC_FAILED;
891}
892
Dan Williams6f231dd2011-07-02 22:56:22 -0700893/* Task Management Functions. Must be called from process context. */
894
895/**
896 * isci_abort_task_process_cb() - This is a helper function for the abort task
897 * TMF command. It manages the request state with respect to the successful
898 * transmission / completion of the abort task request.
899 * @cb_state: This parameter specifies when this function was called - after
900 * the TMF request has been started and after it has timed-out.
901 * @tmf: This parameter specifies the TMF in progress.
902 *
903 *
904 */
905static void isci_abort_task_process_cb(
906 enum isci_tmf_cb_state cb_state,
907 struct isci_tmf *tmf,
908 void *cb_data)
909{
910 struct isci_request *old_request;
911
912 old_request = (struct isci_request *)cb_data;
913
914 dev_dbg(&old_request->isci_host->pdev->dev,
915 "%s: tmf=%p, old_request=%p\n",
916 __func__, tmf, old_request);
917
918 switch (cb_state) {
919
920 case isci_tmf_started:
921 /* The TMF has been started. Nothing to do here, since the
922 * request state was already set to "aborted" by the abort
923 * task function.
924 */
Bartosz Barcinski6cb4d6b2011-04-12 17:28:43 -0700925 if ((old_request->status != aborted)
926 && (old_request->status != completed))
927 dev_err(&old_request->isci_host->pdev->dev,
928 "%s: Bad request status (%d): tmf=%p, old_request=%p\n",
929 __func__, old_request->status, tmf, old_request);
Dan Williams6f231dd2011-07-02 22:56:22 -0700930 break;
931
932 case isci_tmf_timed_out:
933
934 /* Set the task's state to "aborting", since the abort task
935 * function thread set it to "aborted" (above) in anticipation
936 * of the task management request working correctly. Since the
937 * timeout has now fired, the TMF request failed. We set the
938 * state such that the request completion will indicate the
939 * device is no longer present.
940 */
941 isci_request_change_state(old_request, aborting);
942 break;
943
944 default:
945 dev_err(&old_request->isci_host->pdev->dev,
946 "%s: Bad cb_state (%d): tmf=%p, old_request=%p\n",
947 __func__, cb_state, tmf, old_request);
948 break;
949 }
950}
951
952/**
953 * isci_task_abort_task() - This function is one of the SAS Domain Template
954 * functions. This function is called by libsas to abort a specified task.
955 * @task: This parameter specifies the SAS task to abort.
956 *
957 * status, zero indicates success.
958 */
959int isci_task_abort_task(struct sas_task *task)
960{
Dan Williams4393aa42011-03-31 13:10:44 -0700961 struct isci_host *isci_host = dev_to_ihost(task->dev);
Dan Williams6f231dd2011-07-02 22:56:22 -0700962 DECLARE_COMPLETION_ONSTACK(aborted_io_completion);
Jeff Skirvina5fde222011-03-04 14:06:42 -0800963 struct isci_request *old_request = NULL;
964 enum isci_request_status old_state;
Dan Williams6f231dd2011-07-02 22:56:22 -0700965 struct isci_remote_device *isci_device = NULL;
Jeff Skirvina5fde222011-03-04 14:06:42 -0800966 struct isci_tmf tmf;
967 int ret = TMF_RESP_FUNC_FAILED;
968 unsigned long flags;
969 bool any_dev_reset = false;
Dan Williams6f231dd2011-07-02 22:56:22 -0700970
971 /* Get the isci_request reference from the task. Note that
972 * this check does not depend on the pending request list
973 * in the device, because tasks driving resets may land here
974 * after completion in the core.
975 */
Dan Williams209fae12011-06-13 17:39:44 -0700976 spin_lock_irqsave(&isci_host->scic_lock, flags);
977 spin_lock(&task->task_state_lock);
978
979 old_request = task->lldd_task;
980
981 /* If task is already done, the request isn't valid */
982 if (!(task->task_state_flags & SAS_TASK_STATE_DONE) &&
983 (task->task_state_flags & SAS_TASK_AT_INITIATOR) &&
984 old_request)
985 isci_device = isci_lookup_device(task->dev);
986
987 spin_unlock(&task->task_state_lock);
988 spin_unlock_irqrestore(&isci_host->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700989
990 dev_dbg(&isci_host->pdev->dev,
991 "%s: task = %p\n", __func__, task);
992
Dan Williams209fae12011-06-13 17:39:44 -0700993 if (!isci_device || !old_request)
994 goto out;
Dan Williams6f231dd2011-07-02 22:56:22 -0700995
Dan Williamsd06b4872011-05-02 13:59:25 -0700996 set_bit(IDEV_EH, &isci_device->flags);
997
Dan Williams6f231dd2011-07-02 22:56:22 -0700998 /* This version of the driver will fail abort requests for
999 * SATA/STP. Failing the abort request this way will cause the
1000 * SCSI error handler thread to escalate to LUN reset
1001 */
Dan Williams209fae12011-06-13 17:39:44 -07001002 if (sas_protocol_ata(task->task_proto)) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001003 dev_warn(&isci_host->pdev->dev,
1004 " task %p is for a STP/SATA device;"
1005 " returning TMF_RESP_FUNC_FAILED\n"
1006 " to cause a LUN reset...\n", task);
Dan Williams209fae12011-06-13 17:39:44 -07001007 goto out;
Dan Williams6f231dd2011-07-02 22:56:22 -07001008 }
1009
1010 dev_dbg(&isci_host->pdev->dev,
1011 "%s: old_request == %p\n", __func__, old_request);
1012
Dan Williams209fae12011-06-13 17:39:44 -07001013 any_dev_reset = isci_device_is_reset_pending(isci_host,isci_device);
Jeff Skirvina5fde222011-03-04 14:06:42 -08001014
Dan Williams6f231dd2011-07-02 22:56:22 -07001015 spin_lock_irqsave(&task->task_state_lock, flags);
1016
Dan Williams209fae12011-06-13 17:39:44 -07001017 any_dev_reset = any_dev_reset || (task->task_state_flags & SAS_TASK_NEED_DEV_RESET);
Dan Williams6f231dd2011-07-02 22:56:22 -07001018
1019 /* If the extraction of the request reference from the task
1020 * failed, then the request has been completed (or if there is a
1021 * pending reset then this abort request function must be failed
1022 * in order to escalate to the target reset).
1023 */
Jeff Skirvina5fde222011-03-04 14:06:42 -08001024 if ((old_request == NULL) || any_dev_reset) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001025
1026 /* If the device reset task flag is set, fail the task
1027 * management request. Otherwise, the original request
1028 * has completed.
1029 */
1030 if (any_dev_reset) {
1031
1032 /* Turn off the task's DONE to make sure this
1033 * task is escalated to a target reset.
1034 */
1035 task->task_state_flags &= ~SAS_TASK_STATE_DONE;
1036
Jeff Skirvina5fde222011-03-04 14:06:42 -08001037 /* Make the reset happen as soon as possible. */
1038 task->task_state_flags |= SAS_TASK_NEED_DEV_RESET;
1039
1040 spin_unlock_irqrestore(&task->task_state_lock, flags);
1041
Dan Williams6f231dd2011-07-02 22:56:22 -07001042 /* Fail the task management request in order to
1043 * escalate to the target reset.
1044 */
1045 ret = TMF_RESP_FUNC_FAILED;
1046
1047 dev_dbg(&isci_host->pdev->dev,
1048 "%s: Failing task abort in order to "
1049 "escalate to target reset because\n"
1050 "SAS_TASK_NEED_DEV_RESET is set for "
1051 "task %p on dev %p\n",
1052 __func__, task, isci_device);
1053
Jeff Skirvina5fde222011-03-04 14:06:42 -08001054
Dan Williams6f231dd2011-07-02 22:56:22 -07001055 } else {
Dan Williams6f231dd2011-07-02 22:56:22 -07001056 /* The request has already completed and there
1057 * is nothing to do here other than to set the task
1058 * done bit, and indicate that the task abort function
1059 * was sucessful.
1060 */
1061 isci_set_task_doneflags(task);
1062
Jeff Skirvina5fde222011-03-04 14:06:42 -08001063 spin_unlock_irqrestore(&task->task_state_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07001064
Jeff Skirvina5fde222011-03-04 14:06:42 -08001065 ret = TMF_RESP_FUNC_COMPLETE;
Dan Williams6f231dd2011-07-02 22:56:22 -07001066
Jeff Skirvina5fde222011-03-04 14:06:42 -08001067 dev_dbg(&isci_host->pdev->dev,
1068 "%s: abort task not needed for %p\n",
1069 __func__, task);
Dan Williams6f231dd2011-07-02 22:56:22 -07001070 }
Dan Williams209fae12011-06-13 17:39:44 -07001071 goto out;
Dan Williams6f231dd2011-07-02 22:56:22 -07001072 }
Jeff Skirvina5fde222011-03-04 14:06:42 -08001073 else
1074 spin_unlock_irqrestore(&task->task_state_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07001075
1076 spin_lock_irqsave(&isci_host->scic_lock, flags);
1077
Jeff Skirvinf219f012011-03-31 13:10:34 -07001078 /* Check the request status and change to "aborted" if currently
Jeff Skirvina5fde222011-03-04 14:06:42 -08001079 * "starting"; if true then set the I/O kernel completion
Dan Williams6f231dd2011-07-02 22:56:22 -07001080 * struct that will be triggered when the request completes.
1081 */
Jeff Skirvina5fde222011-03-04 14:06:42 -08001082 old_state = isci_task_validate_request_to_abort(
1083 old_request, isci_host, isci_device,
1084 &aborted_io_completion);
Jeff Skirvinf219f012011-03-31 13:10:34 -07001085 if ((old_state != started) &&
1086 (old_state != completed) &&
1087 (old_state != aborting)) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001088
1089 spin_unlock_irqrestore(&isci_host->scic_lock, flags);
1090
Jeff Skirvina5fde222011-03-04 14:06:42 -08001091 /* The request was already being handled by someone else (because
1092 * they got to set the state away from started).
1093 */
1094 dev_dbg(&isci_host->pdev->dev,
1095 "%s: device = %p; old_request %p already being aborted\n",
1096 __func__,
1097 isci_device, old_request);
Dan Williams209fae12011-06-13 17:39:44 -07001098 ret = TMF_RESP_FUNC_COMPLETE;
1099 goto out;
Dan Williams6f231dd2011-07-02 22:56:22 -07001100 }
Jeff Skirvina5fde222011-03-04 14:06:42 -08001101 if ((task->task_proto == SAS_PROTOCOL_SMP)
Jeff Skirvina5fde222011-03-04 14:06:42 -08001102 || old_request->complete_in_target
1103 ) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001104
1105 spin_unlock_irqrestore(&isci_host->scic_lock, flags);
1106
Jeff Skirvina5fde222011-03-04 14:06:42 -08001107 dev_dbg(&isci_host->pdev->dev,
1108 "%s: SMP request (%d)"
Jeff Skirvina5fde222011-03-04 14:06:42 -08001109 " or complete_in_target (%d), thus no TMF\n",
1110 __func__, (task->task_proto == SAS_PROTOCOL_SMP),
Dan Williams209fae12011-06-13 17:39:44 -07001111 old_request->complete_in_target);
Jeff Skirvina5fde222011-03-04 14:06:42 -08001112
Dan Williams6f231dd2011-07-02 22:56:22 -07001113 /* Set the state on the task. */
1114 isci_task_all_done(task);
1115
1116 ret = TMF_RESP_FUNC_COMPLETE;
1117
1118 /* Stopping and SMP devices are not sent a TMF, and are not
Jeff Skirvina5fde222011-03-04 14:06:42 -08001119 * reset, but the outstanding I/O request is terminated below.
Dan Williams6f231dd2011-07-02 22:56:22 -07001120 */
Dan Williams6f231dd2011-07-02 22:56:22 -07001121 } else {
1122 /* Fill in the tmf stucture */
Dan Williams209fae12011-06-13 17:39:44 -07001123 isci_task_build_abort_task_tmf(&tmf, isci_tmf_ssp_task_abort,
Jeff Skirvinc3f42fe2011-03-04 14:06:56 -08001124 isci_abort_task_process_cb,
1125 old_request);
Dan Williams6f231dd2011-07-02 22:56:22 -07001126
Dan Williams6f231dd2011-07-02 22:56:22 -07001127 spin_unlock_irqrestore(&isci_host->scic_lock, flags);
1128
1129 #define ISCI_ABORT_TASK_TIMEOUT_MS 500 /* half second timeout. */
Dan Williams209fae12011-06-13 17:39:44 -07001130 ret = isci_task_execute_tmf(isci_host, isci_device, &tmf,
Dan Williams6f231dd2011-07-02 22:56:22 -07001131 ISCI_ABORT_TASK_TIMEOUT_MS);
1132
Jeff Skirvina5fde222011-03-04 14:06:42 -08001133 if (ret != TMF_RESP_FUNC_COMPLETE)
Dan Williams6f231dd2011-07-02 22:56:22 -07001134 dev_err(&isci_host->pdev->dev,
1135 "%s: isci_task_send_tmf failed\n",
1136 __func__);
1137 }
Jeff Skirvina5fde222011-03-04 14:06:42 -08001138 if (ret == TMF_RESP_FUNC_COMPLETE) {
1139 old_request->complete_in_target = true;
Dan Williams6f231dd2011-07-02 22:56:22 -07001140
Jeff Skirvin77c852f2011-06-20 14:09:16 -07001141 /* Clean up the request on our side, and wait for the aborted
1142 * I/O to complete.
1143 */
Jeff Skirvincbb65c62011-03-04 14:06:50 -08001144 isci_terminate_request_core(isci_host, isci_device, old_request);
Jeff Skirvina5fde222011-03-04 14:06:42 -08001145 }
1146
1147 /* Make sure we do not leave a reference to aborted_io_completion */
1148 old_request->io_request_completion = NULL;
Dan Williams209fae12011-06-13 17:39:44 -07001149 out:
1150 isci_put_device(isci_device);
Dan Williams6f231dd2011-07-02 22:56:22 -07001151 return ret;
1152}
1153
1154/**
1155 * isci_task_abort_task_set() - This function is one of the SAS Domain Template
1156 * functions. This is one of the Task Management functoins called by libsas,
1157 * to abort all task for the given lun.
1158 * @d_device: This parameter specifies the domain device associated with this
1159 * request.
1160 * @lun: This parameter specifies the lun associated with this request.
1161 *
1162 * status, zero indicates success.
1163 */
1164int isci_task_abort_task_set(
1165 struct domain_device *d_device,
1166 u8 *lun)
1167{
1168 return TMF_RESP_FUNC_FAILED;
1169}
1170
1171
1172/**
1173 * isci_task_clear_aca() - This function is one of the SAS Domain Template
1174 * functions. This is one of the Task Management functoins called by libsas.
1175 * @d_device: This parameter specifies the domain device associated with this
1176 * request.
1177 * @lun: This parameter specifies the lun associated with this request.
1178 *
1179 * status, zero indicates success.
1180 */
1181int isci_task_clear_aca(
1182 struct domain_device *d_device,
1183 u8 *lun)
1184{
1185 return TMF_RESP_FUNC_FAILED;
1186}
1187
1188
1189
1190/**
1191 * isci_task_clear_task_set() - This function is one of the SAS Domain Template
1192 * functions. This is one of the Task Management functoins called by libsas.
1193 * @d_device: This parameter specifies the domain device associated with this
1194 * request.
1195 * @lun: This parameter specifies the lun associated with this request.
1196 *
1197 * status, zero indicates success.
1198 */
1199int isci_task_clear_task_set(
1200 struct domain_device *d_device,
1201 u8 *lun)
1202{
1203 return TMF_RESP_FUNC_FAILED;
1204}
1205
1206
1207/**
1208 * isci_task_query_task() - This function is implemented to cause libsas to
1209 * correctly escalate the failed abort to a LUN or target reset (this is
1210 * because sas_scsi_find_task libsas function does not correctly interpret
1211 * all return codes from the abort task call). When TMF_RESP_FUNC_SUCC is
1212 * returned, libsas turns this into a LUN reset; when FUNC_FAILED is
1213 * returned, libsas will turn this into a target reset
1214 * @task: This parameter specifies the sas task being queried.
1215 * @lun: This parameter specifies the lun associated with this request.
1216 *
1217 * status, zero indicates success.
1218 */
1219int isci_task_query_task(
1220 struct sas_task *task)
1221{
1222 /* See if there is a pending device reset for this device. */
1223 if (task->task_state_flags & SAS_TASK_NEED_DEV_RESET)
1224 return TMF_RESP_FUNC_FAILED;
1225 else
1226 return TMF_RESP_FUNC_SUCC;
1227}
1228
Dave Jiangaf5ae892011-05-04 17:53:24 -07001229/*
Dan Williams6f231dd2011-07-02 22:56:22 -07001230 * isci_task_request_complete() - This function is called by the sci core when
1231 * an task request completes.
Dave Jiangaf5ae892011-05-04 17:53:24 -07001232 * @ihost: This parameter specifies the ISCI host object
1233 * @ireq: This parameter is the completed isci_request object.
Dan Williams6f231dd2011-07-02 22:56:22 -07001234 * @completion_status: This parameter specifies the completion status from the
1235 * sci core.
1236 *
1237 * none.
1238 */
Dave Jiangaf5ae892011-05-04 17:53:24 -07001239void
1240isci_task_request_complete(struct isci_host *ihost,
1241 struct isci_request *ireq,
1242 enum sci_task_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -07001243{
Dave Jiangaf5ae892011-05-04 17:53:24 -07001244 struct isci_tmf *tmf = isci_request_access_tmf(ireq);
Dan Williams6f231dd2011-07-02 22:56:22 -07001245 struct completion *tmf_complete;
Dan Williams67ea8382011-05-08 11:47:15 -07001246 struct scic_sds_request *sci_req = &ireq->sci;
Dan Williams6f231dd2011-07-02 22:56:22 -07001247
Dave Jiangaf5ae892011-05-04 17:53:24 -07001248 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001249 "%s: request = %p, status=%d\n",
Dave Jiangaf5ae892011-05-04 17:53:24 -07001250 __func__, ireq, completion_status);
Dan Williams6f231dd2011-07-02 22:56:22 -07001251
Dave Jiang8d2c65c2011-06-01 09:03:08 +00001252 isci_request_change_state(ireq, completed);
Dan Williams6f231dd2011-07-02 22:56:22 -07001253
1254 tmf->status = completion_status;
Dave Jiangaf5ae892011-05-04 17:53:24 -07001255 ireq->complete_in_target = true;
Dan Williams6f231dd2011-07-02 22:56:22 -07001256
Dave Jiangaf5ae892011-05-04 17:53:24 -07001257 if (tmf->proto == SAS_PROTOCOL_SSP) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001258 memcpy(&tmf->resp.resp_iu,
Dan Williamsb7645812011-05-08 02:35:32 -07001259 &sci_req->ssp.rsp,
Dave Jiangaf5ae892011-05-04 17:53:24 -07001260 SSP_RESP_IU_MAX_SIZE);
1261 } else if (tmf->proto == SAS_PROTOCOL_SATA) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001262 memcpy(&tmf->resp.d2h_fis,
Dan Williamsb7645812011-05-08 02:35:32 -07001263 &sci_req->stp.rsp,
Dave Jiangf2f30082011-05-04 15:02:02 -07001264 sizeof(struct dev_to_host_fis));
Dan Williams6f231dd2011-07-02 22:56:22 -07001265 }
1266
Dan Williams6f231dd2011-07-02 22:56:22 -07001267 /* PRINT_TMF( ((struct isci_tmf *)request->task)); */
1268 tmf_complete = tmf->complete;
1269
Dan Williams209fae12011-06-13 17:39:44 -07001270 scic_controller_complete_io(&ihost->sci, ireq->sci.target_device, &ireq->sci);
Dan Williams67ea8382011-05-08 11:47:15 -07001271 /* set the 'terminated' flag handle to make sure it cannot be terminated
Dan Williams6f231dd2011-07-02 22:56:22 -07001272 * or completed again.
1273 */
Dan Williams67ea8382011-05-08 11:47:15 -07001274 ireq->terminated = true;;
Dan Williams6f231dd2011-07-02 22:56:22 -07001275
Dave Jiangaf5ae892011-05-04 17:53:24 -07001276 isci_request_change_state(ireq, unallocated);
1277 list_del_init(&ireq->dev_node);
Dan Williams6f231dd2011-07-02 22:56:22 -07001278
1279 /* The task management part completes last. */
1280 complete(tmf_complete);
1281}
1282
Jeff Skirvin61aaff42011-06-21 12:16:33 -07001283static void isci_smp_task_timedout(unsigned long _task)
1284{
1285 struct sas_task *task = (void *) _task;
1286 unsigned long flags;
1287
1288 spin_lock_irqsave(&task->task_state_lock, flags);
1289 if (!(task->task_state_flags & SAS_TASK_STATE_DONE))
1290 task->task_state_flags |= SAS_TASK_STATE_ABORTED;
1291 spin_unlock_irqrestore(&task->task_state_lock, flags);
1292
1293 complete(&task->completion);
1294}
1295
1296static void isci_smp_task_done(struct sas_task *task)
1297{
1298 if (!del_timer(&task->timer))
1299 return;
1300 complete(&task->completion);
1301}
1302
1303static struct sas_task *isci_alloc_task(void)
1304{
1305 struct sas_task *task = kzalloc(sizeof(*task), GFP_KERNEL);
1306
1307 if (task) {
1308 INIT_LIST_HEAD(&task->list);
1309 spin_lock_init(&task->task_state_lock);
1310 task->task_state_flags = SAS_TASK_STATE_PENDING;
1311 init_timer(&task->timer);
1312 init_completion(&task->completion);
1313 }
1314
1315 return task;
1316}
1317
1318static void isci_free_task(struct isci_host *ihost, struct sas_task *task)
1319{
1320 if (task) {
1321 BUG_ON(!list_empty(&task->list));
1322 kfree(task);
1323 }
1324}
1325
1326static int isci_smp_execute_task(struct isci_host *ihost,
1327 struct domain_device *dev, void *req,
1328 int req_size, void *resp, int resp_size)
1329{
1330 int res, retry;
1331 struct sas_task *task = NULL;
1332
1333 for (retry = 0; retry < 3; retry++) {
1334 task = isci_alloc_task();
1335 if (!task)
1336 return -ENOMEM;
1337
1338 task->dev = dev;
1339 task->task_proto = dev->tproto;
1340 sg_init_one(&task->smp_task.smp_req, req, req_size);
1341 sg_init_one(&task->smp_task.smp_resp, resp, resp_size);
1342
1343 task->task_done = isci_smp_task_done;
1344
1345 task->timer.data = (unsigned long) task;
1346 task->timer.function = isci_smp_task_timedout;
1347 task->timer.expires = jiffies + 10*HZ;
1348 add_timer(&task->timer);
1349
1350 res = isci_task_execute_task(task, 1, GFP_KERNEL);
1351
1352 if (res) {
1353 del_timer(&task->timer);
1354 dev_err(&ihost->pdev->dev,
1355 "%s: executing SMP task failed:%d\n",
1356 __func__, res);
1357 goto ex_err;
1358 }
1359
1360 wait_for_completion(&task->completion);
1361 res = -ECOMM;
1362 if ((task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
1363 dev_err(&ihost->pdev->dev,
1364 "%s: smp task timed out or aborted\n",
1365 __func__);
1366 isci_task_abort_task(task);
1367 if (!(task->task_state_flags & SAS_TASK_STATE_DONE)) {
1368 dev_err(&ihost->pdev->dev,
1369 "%s: SMP task aborted and not done\n",
1370 __func__);
1371 goto ex_err;
1372 }
1373 }
1374 if (task->task_status.resp == SAS_TASK_COMPLETE &&
1375 task->task_status.stat == SAM_STAT_GOOD) {
1376 res = 0;
1377 break;
1378 }
1379 if (task->task_status.resp == SAS_TASK_COMPLETE &&
1380 task->task_status.stat == SAS_DATA_UNDERRUN) {
1381 /* no error, but return the number of bytes of
1382 * underrun */
1383 res = task->task_status.residual;
1384 break;
1385 }
1386 if (task->task_status.resp == SAS_TASK_COMPLETE &&
1387 task->task_status.stat == SAS_DATA_OVERRUN) {
1388 res = -EMSGSIZE;
1389 break;
1390 } else {
1391 dev_err(&ihost->pdev->dev,
1392 "%s: task to dev %016llx response: 0x%x "
1393 "status 0x%x\n", __func__,
1394 SAS_ADDR(dev->sas_addr),
1395 task->task_status.resp,
1396 task->task_status.stat);
1397 isci_free_task(ihost, task);
1398 task = NULL;
1399 }
1400 }
1401ex_err:
1402 BUG_ON(retry == 3 && task != NULL);
1403 isci_free_task(ihost, task);
1404 return res;
1405}
1406
1407#define DISCOVER_REQ_SIZE 16
1408#define DISCOVER_RESP_SIZE 56
1409
1410int isci_smp_get_phy_attached_dev_type(struct isci_host *ihost,
1411 struct domain_device *dev,
1412 int phy_id, int *adt)
1413{
1414 struct smp_resp *disc_resp;
1415 u8 *disc_req;
1416 int res;
1417
1418 disc_resp = kzalloc(DISCOVER_RESP_SIZE, GFP_KERNEL);
1419 if (!disc_resp)
1420 return -ENOMEM;
1421
1422 disc_req = kzalloc(DISCOVER_REQ_SIZE, GFP_KERNEL);
1423 if (disc_req) {
1424 disc_req[0] = SMP_REQUEST;
1425 disc_req[1] = SMP_DISCOVER;
1426 disc_req[9] = phy_id;
1427 } else {
1428 kfree(disc_resp);
1429 return -ENOMEM;
1430 }
1431 res = isci_smp_execute_task(ihost, dev, disc_req, DISCOVER_REQ_SIZE,
1432 disc_resp, DISCOVER_RESP_SIZE);
1433 if (!res) {
1434 if (disc_resp->result != SMP_RESP_FUNC_ACC)
1435 res = disc_resp->result;
1436 else
1437 *adt = disc_resp->disc.attached_dev_type;
1438 }
1439 kfree(disc_req);
1440 kfree(disc_resp);
1441
1442 return res;
1443}
1444
1445static void isci_wait_for_smp_phy_reset(struct isci_remote_device *idev, int phy_num)
1446{
1447 struct domain_device *dev = idev->domain_dev;
1448 struct isci_port *iport = idev->isci_port;
1449 struct isci_host *ihost = iport->isci_host;
1450 int res, iteration = 0, attached_device_type;
1451 #define STP_WAIT_MSECS 25000
1452 unsigned long tmo = msecs_to_jiffies(STP_WAIT_MSECS);
1453 unsigned long deadline = jiffies + tmo;
1454 enum {
1455 SMP_PHYWAIT_PHYDOWN,
1456 SMP_PHYWAIT_PHYUP,
1457 SMP_PHYWAIT_DONE
1458 } phy_state = SMP_PHYWAIT_PHYDOWN;
1459
1460 /* While there is time, wait for the phy to go away and come back */
1461 while (time_is_after_jiffies(deadline) && phy_state != SMP_PHYWAIT_DONE) {
1462 int event = atomic_read(&iport->event);
1463
1464 ++iteration;
1465
1466 tmo = wait_event_timeout(ihost->eventq,
1467 event != atomic_read(&iport->event) ||
1468 !test_bit(IPORT_BCN_BLOCKED, &iport->flags),
1469 tmo);
1470 /* link down, stop polling */
1471 if (!test_bit(IPORT_BCN_BLOCKED, &iport->flags))
1472 break;
1473
1474 dev_dbg(&ihost->pdev->dev,
1475 "%s: iport %p, iteration %d,"
1476 " phase %d: time_remaining %lu, bcns = %d\n",
1477 __func__, iport, iteration, phy_state,
1478 tmo, test_bit(IPORT_BCN_PENDING, &iport->flags));
1479
1480 res = isci_smp_get_phy_attached_dev_type(ihost, dev, phy_num,
1481 &attached_device_type);
1482 tmo = deadline - jiffies;
1483
1484 if (res) {
1485 dev_warn(&ihost->pdev->dev,
1486 "%s: iteration %d, phase %d:"
1487 " SMP error=%d, time_remaining=%lu\n",
1488 __func__, iteration, phy_state, res, tmo);
1489 break;
1490 }
1491 dev_dbg(&ihost->pdev->dev,
1492 "%s: iport %p, iteration %d,"
1493 " phase %d: time_remaining %lu, bcns = %d, "
1494 "attdevtype = %x\n",
1495 __func__, iport, iteration, phy_state,
1496 tmo, test_bit(IPORT_BCN_PENDING, &iport->flags),
1497 attached_device_type);
1498
1499 switch (phy_state) {
1500 case SMP_PHYWAIT_PHYDOWN:
1501 /* Has the device gone away? */
1502 if (!attached_device_type)
1503 phy_state = SMP_PHYWAIT_PHYUP;
1504
1505 break;
1506
1507 case SMP_PHYWAIT_PHYUP:
1508 /* Has the device come back? */
1509 if (attached_device_type)
1510 phy_state = SMP_PHYWAIT_DONE;
1511 break;
1512
1513 case SMP_PHYWAIT_DONE:
1514 break;
1515 }
1516
1517 }
1518 dev_dbg(&ihost->pdev->dev, "%s: done\n", __func__);
1519}
1520
Dan Williams209fae12011-06-13 17:39:44 -07001521static int isci_reset_device(struct isci_host *ihost,
1522 struct isci_remote_device *idev, int hard_reset)
Dan Williams6f231dd2011-07-02 22:56:22 -07001523{
Dan Williams209fae12011-06-13 17:39:44 -07001524 struct sas_phy *phy = sas_find_local_phy(idev->domain_dev);
Jeff Skirvin61aaff42011-06-21 12:16:33 -07001525 struct isci_port *iport = idev->isci_port;
Dan Williams6f231dd2011-07-02 22:56:22 -07001526 enum sci_status status;
Dan Williamsd06b4872011-05-02 13:59:25 -07001527 unsigned long flags;
1528 int rc;
Dan Williams6f231dd2011-07-02 22:56:22 -07001529
Dan Williamsd06b4872011-05-02 13:59:25 -07001530 dev_dbg(&ihost->pdev->dev, "%s: idev %p\n", __func__, idev);
Dan Williams6f231dd2011-07-02 22:56:22 -07001531
Dan Williamsd06b4872011-05-02 13:59:25 -07001532 spin_lock_irqsave(&ihost->scic_lock, flags);
1533 status = scic_remote_device_reset(&idev->sci);
Dan Williams6f231dd2011-07-02 22:56:22 -07001534 if (status != SCI_SUCCESS) {
Dan Williamsd06b4872011-05-02 13:59:25 -07001535 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07001536
Dan Williamsd06b4872011-05-02 13:59:25 -07001537 dev_warn(&ihost->pdev->dev,
1538 "%s: scic_remote_device_reset(%p) returned %d!\n",
1539 __func__, idev, status);
Dan Williams6f231dd2011-07-02 22:56:22 -07001540
1541 return TMF_RESP_FUNC_FAILED;
1542 }
Dan Williamsd06b4872011-05-02 13:59:25 -07001543 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07001544
Dan Williams6f231dd2011-07-02 22:56:22 -07001545 /* Make sure all pending requests are able to be fully terminated. */
Dan Williamsd06b4872011-05-02 13:59:25 -07001546 isci_device_clear_reset_pending(ihost, idev);
1547
Jeff Skirvin61aaff42011-06-21 12:16:33 -07001548 /* If this is a device on an expander, disable BCN processing. */
1549 if (!scsi_is_sas_phy_local(phy))
1550 set_bit(IPORT_BCN_BLOCKED, &iport->flags);
1551
Dan Williamsd06b4872011-05-02 13:59:25 -07001552 rc = sas_phy_reset(phy, hard_reset);
Dan Williams6f231dd2011-07-02 22:56:22 -07001553
1554 /* Terminate in-progress I/O now. */
Dan Williamsd06b4872011-05-02 13:59:25 -07001555 isci_remote_device_nuke_requests(ihost, idev);
Dan Williams6f231dd2011-07-02 22:56:22 -07001556
Jeff Skirvinff717ab2011-06-20 14:08:51 -07001557 /* Since all pending TCs have been cleaned, resume the RNC. */
Dan Williamsd06b4872011-05-02 13:59:25 -07001558 spin_lock_irqsave(&ihost->scic_lock, flags);
1559 status = scic_remote_device_reset_complete(&idev->sci);
1560 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07001561
Jeff Skirvin61aaff42011-06-21 12:16:33 -07001562 /* If this is a device on an expander, bring the phy back up. */
1563 if (!scsi_is_sas_phy_local(phy)) {
1564 /* A phy reset will cause the device to go away then reappear.
1565 * Since libsas will take action on incoming BCNs (eg. remove
1566 * a device going through an SMP phy-control driven reset),
1567 * we need to wait until the phy comes back up before letting
1568 * discovery proceed in libsas.
1569 */
1570 isci_wait_for_smp_phy_reset(idev, phy->number);
1571
1572 spin_lock_irqsave(&ihost->scic_lock, flags);
1573 isci_port_bcn_enable(ihost, idev->isci_port);
1574 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1575 }
Jeff Skirvinff717ab2011-06-20 14:08:51 -07001576
Dan Williams6f231dd2011-07-02 22:56:22 -07001577 if (status != SCI_SUCCESS) {
Dan Williamsd06b4872011-05-02 13:59:25 -07001578 dev_warn(&ihost->pdev->dev,
1579 "%s: scic_remote_device_reset_complete(%p) "
1580 "returned %d!\n", __func__, idev, status);
Dan Williams6f231dd2011-07-02 22:56:22 -07001581 }
Dan Williams6f231dd2011-07-02 22:56:22 -07001582
Dan Williamsd06b4872011-05-02 13:59:25 -07001583 dev_dbg(&ihost->pdev->dev, "%s: idev %p complete.\n", __func__, idev);
Dan Williams6f231dd2011-07-02 22:56:22 -07001584
Dan Williamsd06b4872011-05-02 13:59:25 -07001585 return rc;
1586}
1587
1588int isci_task_I_T_nexus_reset(struct domain_device *dev)
1589{
1590 struct isci_host *ihost = dev_to_ihost(dev);
Dan Williamsd06b4872011-05-02 13:59:25 -07001591 struct isci_remote_device *idev;
Dan Williams209fae12011-06-13 17:39:44 -07001592 int ret, hard_reset = 1;
Dan Williamsd06b4872011-05-02 13:59:25 -07001593 unsigned long flags;
1594
Dan Williamsd06b4872011-05-02 13:59:25 -07001595 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williams209fae12011-06-13 17:39:44 -07001596 idev = isci_lookup_device(dev);
Dan Williamsd06b4872011-05-02 13:59:25 -07001597 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1598
Dan Williams209fae12011-06-13 17:39:44 -07001599 if (!idev || !test_bit(IDEV_EH, &idev->flags)) {
1600 ret = TMF_RESP_FUNC_COMPLETE;
1601 goto out;
1602 }
Dan Williamsd06b4872011-05-02 13:59:25 -07001603
1604 if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP))
1605 hard_reset = 0;
1606
Dan Williams209fae12011-06-13 17:39:44 -07001607 ret = isci_reset_device(ihost, idev, hard_reset);
1608 out:
1609 isci_put_device(idev);
1610 return ret;
Dan Williamsd06b4872011-05-02 13:59:25 -07001611}
1612
1613int isci_bus_reset_handler(struct scsi_cmnd *cmd)
1614{
1615 struct domain_device *dev = sdev_to_domain_dev(cmd->device);
Dan Williams209fae12011-06-13 17:39:44 -07001616 struct isci_host *ihost = dev_to_ihost(dev);
1617 struct isci_remote_device *idev;
1618 int ret, hard_reset = 1;
1619 unsigned long flags;
Dan Williamsd06b4872011-05-02 13:59:25 -07001620
1621 if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP))
1622 hard_reset = 0;
1623
Dan Williams209fae12011-06-13 17:39:44 -07001624 spin_lock_irqsave(&ihost->scic_lock, flags);
1625 idev = isci_lookup_device(dev);
1626 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1627
1628 if (!idev) {
1629 ret = TMF_RESP_FUNC_COMPLETE;
1630 goto out;
1631 }
1632
1633 ret = isci_reset_device(ihost, idev, hard_reset);
1634 out:
1635 isci_put_device(idev);
1636 return ret;
Dan Williams6f231dd2011-07-02 22:56:22 -07001637}