blob: a372af68d9a94bf1b7bd9a97433a8597f00e252e [file] [log] [blame]
James Bottomley2908d772006-08-29 09:22:51 -05001/*
2 * Serial Attached SCSI (SAS) class SCSI Host glue.
3 *
4 * Copyright (C) 2005 Adaptec, Inc. All rights reserved.
5 * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
6 *
7 * This file is licensed under GPLv2.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 */
25
Christoph Hellwigd7a54e32007-04-26 09:38:01 -040026#include <linux/kthread.h>
Darrick J. Wong45e6cdf2008-02-19 10:49:40 -080027#include <linux/firmware.h>
Paul Gortmaker09703662011-05-27 09:37:25 -040028#include <linux/export.h>
Darrick J. Wong45e6cdf2008-02-19 10:49:40 -080029#include <linux/ctype.h>
Andy Shevchenko9ea4e072017-12-19 19:37:27 +020030#include <linux/kernel.h>
Christoph Hellwigd7a54e32007-04-26 09:38:01 -040031
James Bottomley2908d772006-08-29 09:22:51 -050032#include "sas_internal.h"
33
34#include <scsi/scsi_host.h>
35#include <scsi/scsi_device.h>
36#include <scsi/scsi_tcq.h>
37#include <scsi/scsi.h>
Darrick J. Wongf4563932006-10-30 15:18:39 -080038#include <scsi/scsi_eh.h>
James Bottomley2908d772006-08-29 09:22:51 -050039#include <scsi/scsi_transport.h>
40#include <scsi/scsi_transport_sas.h>
Darrick J. Wong338ec572006-10-18 14:43:37 -070041#include <scsi/sas_ata.h>
James Bottomley2908d772006-08-29 09:22:51 -050042#include "../scsi_sas_internal.h"
Darrick J. Wong79a5eb62006-10-30 15:18:50 -080043#include "../scsi_transport_api.h"
Darrick J. Wongad689232007-01-26 14:08:52 -080044#include "../scsi_priv.h"
James Bottomley2908d772006-08-29 09:22:51 -050045
46#include <linux/err.h>
47#include <linux/blkdev.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070048#include <linux/freezer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/gfp.h>
James Bottomley2908d772006-08-29 09:22:51 -050050#include <linux/scatterlist.h>
Darrick J. Wongfa1c1e82006-08-10 19:19:47 -070051#include <linux/libata.h>
James Bottomley2908d772006-08-29 09:22:51 -050052
Dan Williamsa3a14252011-12-06 23:24:42 -080053/* record final status and free the task */
54static void sas_end_task(struct scsi_cmnd *sc, struct sas_task *task)
James Bottomley2908d772006-08-29 09:22:51 -050055{
56 struct task_status_struct *ts = &task->task_status;
James Bottomley2908d772006-08-29 09:22:51 -050057 int hs = 0, stat = 0;
58
James Bottomley2908d772006-08-29 09:22:51 -050059 if (ts->resp == SAS_TASK_UNDELIVERED) {
60 /* transport error */
61 hs = DID_NO_CONNECT;
62 } else { /* ts->resp == SAS_TASK_COMPLETE */
63 /* task delivered, what happened afterwards? */
64 switch (ts->stat) {
65 case SAS_DEV_NO_RESPONSE:
66 case SAS_INTERRUPTED:
67 case SAS_PHY_DOWN:
68 case SAS_NAK_R_ERR:
69 case SAS_OPEN_TO:
70 hs = DID_NO_CONNECT;
71 break;
72 case SAS_DATA_UNDERRUN:
FUJITA Tomonoric13e5562007-05-26 02:46:37 +090073 scsi_set_resid(sc, ts->residual);
74 if (scsi_bufflen(sc) - scsi_get_resid(sc) < sc->underflow)
James Bottomley2908d772006-08-29 09:22:51 -050075 hs = DID_ERROR;
76 break;
77 case SAS_DATA_OVERRUN:
78 hs = DID_ERROR;
79 break;
80 case SAS_QUEUE_FULL:
81 hs = DID_SOFT_ERROR; /* retry */
82 break;
83 case SAS_DEVICE_UNKNOWN:
84 hs = DID_BAD_TARGET;
85 break;
86 case SAS_SG_ERR:
87 hs = DID_PARITY;
88 break;
89 case SAS_OPEN_REJECT:
90 if (ts->open_rej_reason == SAS_OREJ_RSVD_RETRY)
91 hs = DID_SOFT_ERROR; /* retry */
92 else
93 hs = DID_ERROR;
94 break;
95 case SAS_PROTO_RESPONSE:
96 SAS_DPRINTK("LLDD:%s sent SAS_PROTO_RESP for an SSP "
97 "task; please report this\n",
98 task->dev->port->ha->sas_ha_name);
99 break;
100 case SAS_ABORTED_TASK:
101 hs = DID_ABORT;
102 break;
James Bottomleydf64d3c2010-07-27 15:51:13 -0500103 case SAM_STAT_CHECK_CONDITION:
James Bottomley2908d772006-08-29 09:22:51 -0500104 memcpy(sc->sense_buffer, ts->buf,
FUJITA Tomonoricc75e8a2008-01-13 02:20:18 +0900105 min(SCSI_SENSE_BUFFERSIZE, ts->buf_valid_size));
James Bottomleydf64d3c2010-07-27 15:51:13 -0500106 stat = SAM_STAT_CHECK_CONDITION;
James Bottomley2908d772006-08-29 09:22:51 -0500107 break;
108 default:
109 stat = ts->stat;
110 break;
111 }
112 }
Dan Williamsa3a14252011-12-06 23:24:42 -0800113
James Bottomley2908d772006-08-29 09:22:51 -0500114 sc->result = (hs << 16) | stat;
Dan Williamsa3a14252011-12-06 23:24:42 -0800115 ASSIGN_SAS_TASK(sc, NULL);
James Bottomley2908d772006-08-29 09:22:51 -0500116 sas_free_task(task);
Dan Williamsa3a14252011-12-06 23:24:42 -0800117}
118
119static void sas_scsi_task_done(struct sas_task *task)
120{
121 struct scsi_cmnd *sc = task->uldd_task;
Dan Williams9095a642011-11-28 11:29:20 -0800122 struct domain_device *dev = task->dev;
123 struct sas_ha_struct *ha = dev->port->ha;
124 unsigned long flags;
Dan Williamsa3a14252011-12-06 23:24:42 -0800125
Dan Williams9095a642011-11-28 11:29:20 -0800126 spin_lock_irqsave(&dev->done_lock, flags);
127 if (test_bit(SAS_HA_FROZEN, &ha->state))
128 task = NULL;
129 else
130 ASSIGN_SAS_TASK(sc, NULL);
131 spin_unlock_irqrestore(&dev->done_lock, flags);
132
133 if (unlikely(!task)) {
134 /* task will be completed by the error handler */
Dan Williamsa3a14252011-12-06 23:24:42 -0800135 SAS_DPRINTK("task done but aborted\n");
136 return;
137 }
138
139 if (unlikely(!sc)) {
140 SAS_DPRINTK("task_done called with non existing SCSI cmnd!\n");
Dan Williamsa3a14252011-12-06 23:24:42 -0800141 sas_free_task(task);
142 return;
143 }
144
Dan Williamsa3a14252011-12-06 23:24:42 -0800145 sas_end_task(sc, task);
James Bottomleya8e14fe2008-02-19 21:48:42 -0600146 sc->scsi_done(sc);
James Bottomley2908d772006-08-29 09:22:51 -0500147}
148
James Bottomley2908d772006-08-29 09:22:51 -0500149static struct sas_task *sas_create_task(struct scsi_cmnd *cmd,
150 struct domain_device *dev,
Al Viro3cc27542006-09-25 02:55:40 +0100151 gfp_t gfp_flags)
James Bottomley2908d772006-08-29 09:22:51 -0500152{
153 struct sas_task *task = sas_alloc_task(gfp_flags);
154 struct scsi_lun lun;
155
156 if (!task)
157 return NULL;
158
James Bottomley2908d772006-08-29 09:22:51 -0500159 task->uldd_task = cmd;
160 ASSIGN_SAS_TASK(cmd, task);
161
162 task->dev = dev;
163 task->task_proto = task->dev->tproto; /* BUG_ON(!SSP) */
164
165 task->ssp_task.retry_count = 1;
166 int_to_scsilun(cmd->device->lun, &lun);
167 memcpy(task->ssp_task.LUN, &lun.scsi_lun, 8);
Tejun Heo9cbbdca2010-09-03 11:56:16 +0200168 task->ssp_task.task_attr = TASK_ATTR_SIMPLE;
James Bottomleye73823f2013-05-07 15:38:18 -0700169 task->ssp_task.cmd = cmd;
James Bottomley2908d772006-08-29 09:22:51 -0500170
FUJITA Tomonoric13e5562007-05-26 02:46:37 +0900171 task->scatter = scsi_sglist(cmd);
172 task->num_scatter = scsi_sg_count(cmd);
173 task->total_xfer_len = scsi_bufflen(cmd);
James Bottomley2908d772006-08-29 09:22:51 -0500174 task->data_dir = cmd->sc_data_direction;
175
176 task->task_done = sas_scsi_task_done;
177
178 return task;
179}
180
Christoph Hellwig92bd4012011-07-11 14:49:23 -0400181int sas_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
James Bottomley2908d772006-08-29 09:22:51 -0500182{
James Bottomley2908d772006-08-29 09:22:51 -0500183 struct sas_internal *i = to_sas_internal(host->transportt);
Christoph Hellwiga923f752011-07-11 14:49:24 -0400184 struct domain_device *dev = cmd_to_domain_dev(cmd);
Christoph Hellwiga923f752011-07-11 14:49:24 -0400185 struct sas_task *task;
186 int res = 0;
James Bottomley2908d772006-08-29 09:22:51 -0500187
Christoph Hellwiga923f752011-07-11 14:49:24 -0400188 /* If the device fell off, no sense in issuing commands */
Dan Williamse1399422012-01-07 08:52:39 +0000189 if (test_bit(SAS_DEV_GONE, &dev->state)) {
Christoph Hellwiga923f752011-07-11 14:49:24 -0400190 cmd->result = DID_BAD_TARGET << 16;
191 goto out_done;
James Bottomley2908d772006-08-29 09:22:51 -0500192 }
Christoph Hellwiga923f752011-07-11 14:49:24 -0400193
194 if (dev_is_sata(dev)) {
Dan Williams312d3e52011-11-17 17:59:50 -0800195 spin_lock_irq(dev->sata_dev.ap->lock);
Christoph Hellwiga923f752011-07-11 14:49:24 -0400196 res = ata_sas_queuecmd(cmd, dev->sata_dev.ap);
Dan Williams312d3e52011-11-17 17:59:50 -0800197 spin_unlock_irq(dev->sata_dev.ap->lock);
Christoph Hellwiga923f752011-07-11 14:49:24 -0400198 return res;
199 }
200
201 task = sas_create_task(cmd, dev, GFP_ATOMIC);
202 if (!task)
Christoph Hellwigac81c6a2011-07-16 15:00:35 -0400203 return SCSI_MLQUEUE_HOST_BUSY;
Christoph Hellwiga923f752011-07-11 14:49:24 -0400204
Christoph Hellwig79855d12014-11-05 10:36:28 +0100205 res = i->dft->lldd_execute_task(task, GFP_ATOMIC);
Christoph Hellwiga923f752011-07-11 14:49:24 -0400206 if (res)
207 goto out_free_task;
208 return 0;
209
210out_free_task:
211 SAS_DPRINTK("lldd_execute_task returned: %d\n", res);
212 ASSIGN_SAS_TASK(cmd, NULL);
213 sas_free_task(task);
Christoph Hellwigac81c6a2011-07-16 15:00:35 -0400214 if (res == -SAS_QUEUE_FULL)
215 cmd->result = DID_SOFT_ERROR << 16; /* retry */
216 else
217 cmd->result = DID_ERROR << 16;
Christoph Hellwiga923f752011-07-11 14:49:24 -0400218out_done:
219 cmd->scsi_done(cmd);
220 return 0;
James Bottomley2908d772006-08-29 09:22:51 -0500221}
222
James Bottomleya8e14fe2008-02-19 21:48:42 -0600223static void sas_eh_finish_cmd(struct scsi_cmnd *cmd)
224{
James Bottomleya8e14fe2008-02-19 21:48:42 -0600225 struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(cmd->device->host);
Jason Yan318aaf32018-03-08 10:34:53 +0800226 struct domain_device *dev = cmd_to_domain_dev(cmd);
Dan Williams45c73b62012-01-09 10:12:52 -0800227 struct sas_task *task = TO_SAS_TASK(cmd);
James Bottomleya8e14fe2008-02-19 21:48:42 -0600228
Dan Williamsa3a14252011-12-06 23:24:42 -0800229 /* At this point, we only get called following an actual abort
230 * of the task, so we should be guaranteed not to be racing with
231 * any completions from the LLD. Task is freed after this.
232 */
233 sas_end_task(cmd, task);
234
Jason Yan318aaf32018-03-08 10:34:53 +0800235 if (dev_is_sata(dev)) {
236 /* defer commands to libata so that libata EH can
237 * handle ata qcs correctly
238 */
239 list_move_tail(&cmd->eh_entry, &sas_ha->eh_ata_q);
240 return;
241 }
242
James Bottomleya8e14fe2008-02-19 21:48:42 -0600243 /* now finish the command and move it on to the error
244 * handler done list, this also takes it off the
Dan Williamsa3a14252011-12-06 23:24:42 -0800245 * error handler pending list.
246 */
James Bottomleya8e14fe2008-02-19 21:48:42 -0600247 scsi_eh_finish_cmd(cmd, &sas_ha->eh_done_q);
248}
249
James Bottomley2908d772006-08-29 09:22:51 -0500250static void sas_scsi_clear_queue_lu(struct list_head *error_q, struct scsi_cmnd *my_cmd)
251{
252 struct scsi_cmnd *cmd, *n;
253
254 list_for_each_entry_safe(cmd, n, error_q, eh_entry) {
James Bottomley63e45632008-02-22 17:07:52 -0600255 if (cmd->device->sdev_target == my_cmd->device->sdev_target &&
256 cmd->device->lun == my_cmd->device->lun)
Jason Yan318aaf32018-03-08 10:34:53 +0800257 sas_eh_finish_cmd(cmd);
James Bottomley2908d772006-08-29 09:22:51 -0500258 }
259}
260
261static void sas_scsi_clear_queue_I_T(struct list_head *error_q,
262 struct domain_device *dev)
263{
264 struct scsi_cmnd *cmd, *n;
265
266 list_for_each_entry_safe(cmd, n, error_q, eh_entry) {
267 struct domain_device *x = cmd_to_domain_dev(cmd);
268
269 if (x == dev)
James Bottomleya8e14fe2008-02-19 21:48:42 -0600270 sas_eh_finish_cmd(cmd);
James Bottomley2908d772006-08-29 09:22:51 -0500271 }
272}
273
274static void sas_scsi_clear_queue_port(struct list_head *error_q,
275 struct asd_sas_port *port)
276{
277 struct scsi_cmnd *cmd, *n;
278
279 list_for_each_entry_safe(cmd, n, error_q, eh_entry) {
280 struct domain_device *dev = cmd_to_domain_dev(cmd);
281 struct asd_sas_port *x = dev->port;
282
283 if (x == port)
James Bottomleya8e14fe2008-02-19 21:48:42 -0600284 sas_eh_finish_cmd(cmd);
James Bottomley2908d772006-08-29 09:22:51 -0500285 }
286}
287
288enum task_disposition {
289 TASK_IS_DONE,
290 TASK_IS_ABORTED,
291 TASK_IS_AT_LU,
292 TASK_IS_NOT_AT_LU,
Darrick J. Wong02cd7432007-01-11 14:15:46 -0800293 TASK_ABORT_FAILED,
James Bottomley2908d772006-08-29 09:22:51 -0500294};
295
296static enum task_disposition sas_scsi_find_task(struct sas_task *task)
297{
James Bottomley2908d772006-08-29 09:22:51 -0500298 unsigned long flags;
299 int i, res;
300 struct sas_internal *si =
301 to_sas_internal(task->dev->port->ha->core.shost->transportt);
302
James Bottomley2908d772006-08-29 09:22:51 -0500303 for (i = 0; i < 5; i++) {
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700304 SAS_DPRINTK("%s: aborting task 0x%p\n", __func__, task);
James Bottomley2908d772006-08-29 09:22:51 -0500305 res = si->dft->lldd_abort_task(task);
306
307 spin_lock_irqsave(&task->task_state_lock, flags);
308 if (task->task_state_flags & SAS_TASK_STATE_DONE) {
309 spin_unlock_irqrestore(&task->task_state_lock, flags);
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700310 SAS_DPRINTK("%s: task 0x%p is done\n", __func__,
James Bottomley2908d772006-08-29 09:22:51 -0500311 task);
312 return TASK_IS_DONE;
313 }
314 spin_unlock_irqrestore(&task->task_state_lock, flags);
315
316 if (res == TMF_RESP_FUNC_COMPLETE) {
317 SAS_DPRINTK("%s: task 0x%p is aborted\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700318 __func__, task);
James Bottomley2908d772006-08-29 09:22:51 -0500319 return TASK_IS_ABORTED;
320 } else if (si->dft->lldd_query_task) {
321 SAS_DPRINTK("%s: querying task 0x%p\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700322 __func__, task);
James Bottomley2908d772006-08-29 09:22:51 -0500323 res = si->dft->lldd_query_task(task);
Darrick J. Wong02cd7432007-01-11 14:15:46 -0800324 switch (res) {
325 case TMF_RESP_FUNC_SUCC:
James Bottomley2908d772006-08-29 09:22:51 -0500326 SAS_DPRINTK("%s: task 0x%p at LU\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700327 __func__, task);
James Bottomley2908d772006-08-29 09:22:51 -0500328 return TASK_IS_AT_LU;
Darrick J. Wong02cd7432007-01-11 14:15:46 -0800329 case TMF_RESP_FUNC_COMPLETE:
James Bottomley2908d772006-08-29 09:22:51 -0500330 SAS_DPRINTK("%s: task 0x%p not at LU\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700331 __func__, task);
James Bottomley2908d772006-08-29 09:22:51 -0500332 return TASK_IS_NOT_AT_LU;
Darrick J. Wong02cd7432007-01-11 14:15:46 -0800333 case TMF_RESP_FUNC_FAILED:
334 SAS_DPRINTK("%s: task 0x%p failed to abort\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700335 __func__, task);
Darrick J. Wong02cd7432007-01-11 14:15:46 -0800336 return TASK_ABORT_FAILED;
337 }
338
James Bottomley2908d772006-08-29 09:22:51 -0500339 }
340 }
341 return res;
342}
343
344static int sas_recover_lu(struct domain_device *dev, struct scsi_cmnd *cmd)
345{
346 int res = TMF_RESP_FUNC_FAILED;
347 struct scsi_lun lun;
348 struct sas_internal *i =
349 to_sas_internal(dev->port->ha->core.shost->transportt);
350
351 int_to_scsilun(cmd->device->lun, &lun);
352
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200353 SAS_DPRINTK("eh: device %llx LUN %llx has the task\n",
James Bottomley2908d772006-08-29 09:22:51 -0500354 SAS_ADDR(dev->sas_addr),
355 cmd->device->lun);
356
357 if (i->dft->lldd_abort_task_set)
358 res = i->dft->lldd_abort_task_set(dev, lun.scsi_lun);
359
360 if (res == TMF_RESP_FUNC_FAILED) {
361 if (i->dft->lldd_clear_task_set)
362 res = i->dft->lldd_clear_task_set(dev, lun.scsi_lun);
363 }
364
365 if (res == TMF_RESP_FUNC_FAILED) {
366 if (i->dft->lldd_lu_reset)
367 res = i->dft->lldd_lu_reset(dev, lun.scsi_lun);
368 }
369
370 return res;
371}
372
373static int sas_recover_I_T(struct domain_device *dev)
374{
375 int res = TMF_RESP_FUNC_FAILED;
376 struct sas_internal *i =
377 to_sas_internal(dev->port->ha->core.shost->transportt);
378
379 SAS_DPRINTK("I_T nexus reset for dev %016llx\n",
380 SAS_ADDR(dev->sas_addr));
381
382 if (i->dft->lldd_I_T_nexus_reset)
383 res = i->dft->lldd_I_T_nexus_reset(dev);
384
385 return res;
386}
387
Dan Williamsf41a0c42011-12-21 21:33:17 -0800388/* take a reference on the last known good phy for this device */
389struct sas_phy *sas_get_local_phy(struct domain_device *dev)
Darrick J. Wong3ebf6922007-01-11 14:15:17 -0800390{
Dan Williamsf41a0c42011-12-21 21:33:17 -0800391 struct sas_ha_struct *ha = dev->port->ha;
392 struct sas_phy *phy;
393 unsigned long flags;
Darrick J. Wong3ebf6922007-01-11 14:15:17 -0800394
Dan Williamsf41a0c42011-12-21 21:33:17 -0800395 /* a published domain device always has a valid phy, it may be
396 * stale, but it is never NULL
397 */
398 BUG_ON(!dev->phy);
Darrick J. Wong3ebf6922007-01-11 14:15:17 -0800399
Dan Williamsf41a0c42011-12-21 21:33:17 -0800400 spin_lock_irqsave(&ha->phy_port_lock, flags);
401 phy = dev->phy;
402 get_device(&phy->dev);
403 spin_unlock_irqrestore(&ha->phy_port_lock, flags);
Darrick J. Wongad689232007-01-26 14:08:52 -0800404
Dan Williamsf41a0c42011-12-21 21:33:17 -0800405 return phy;
Darrick J. Wong3ebf6922007-01-11 14:15:17 -0800406}
Dan Williamsf41a0c42011-12-21 21:33:17 -0800407EXPORT_SYMBOL_GPL(sas_get_local_phy);
Darrick J. Wong3ebf6922007-01-11 14:15:17 -0800408
Dan Williams5db45bd2012-06-21 23:30:48 -0700409static void sas_wait_eh(struct domain_device *dev)
410{
411 struct sas_ha_struct *ha = dev->port->ha;
412 DEFINE_WAIT(wait);
413
414 if (dev_is_sata(dev)) {
415 ata_port_wait_eh(dev->sata_dev.ap);
416 return;
417 }
418 retry:
419 spin_lock_irq(&ha->lock);
420
421 while (test_bit(SAS_DEV_EH_PENDING, &dev->state)) {
422 prepare_to_wait(&ha->eh_wait_q, &wait, TASK_UNINTERRUPTIBLE);
423 spin_unlock_irq(&ha->lock);
424 schedule();
425 spin_lock_irq(&ha->lock);
426 }
427 finish_wait(&ha->eh_wait_q, &wait);
428
429 spin_unlock_irq(&ha->lock);
430
431 /* make sure SCSI EH is complete */
432 if (scsi_host_in_recovery(ha->core.shost)) {
433 msleep(10);
434 goto retry;
435 }
436}
437EXPORT_SYMBOL(sas_wait_eh);
438
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200439static int sas_queue_reset(struct domain_device *dev, int reset_type,
440 u64 lun, int wait)
Dan Williams5db45bd2012-06-21 23:30:48 -0700441{
442 struct sas_ha_struct *ha = dev->port->ha;
443 int scheduled = 0, tries = 100;
444
445 /* ata: promote lun reset to bus reset */
446 if (dev_is_sata(dev)) {
447 sas_ata_schedule_reset(dev);
448 if (wait)
449 sas_ata_wait_eh(dev);
450 return SUCCESS;
451 }
452
453 while (!scheduled && tries--) {
454 spin_lock_irq(&ha->lock);
455 if (!test_bit(SAS_DEV_EH_PENDING, &dev->state) &&
456 !test_bit(reset_type, &dev->state)) {
457 scheduled = 1;
458 ha->eh_active++;
459 list_add_tail(&dev->ssp_dev.eh_list_node, &ha->eh_dev_q);
460 set_bit(SAS_DEV_EH_PENDING, &dev->state);
461 set_bit(reset_type, &dev->state);
462 int_to_scsilun(lun, &dev->ssp_dev.reset_lun);
463 scsi_schedule_eh(ha->core.shost);
464 }
465 spin_unlock_irq(&ha->lock);
466
467 if (wait)
468 sas_wait_eh(dev);
469
470 if (scheduled)
471 return SUCCESS;
472 }
473
474 SAS_DPRINTK("%s reset of %s failed\n",
475 reset_type == SAS_DEV_LU_RESET ? "LUN" : "Bus",
476 dev_name(&dev->rphy->dev));
477
478 return FAILED;
479}
480
Dan Williams9524c682012-06-21 23:30:53 -0700481int sas_eh_abort_handler(struct scsi_cmnd *cmd)
482{
483 int res;
484 struct sas_task *task = TO_SAS_TASK(cmd);
485 struct Scsi_Host *host = cmd->device->host;
486 struct sas_internal *i = to_sas_internal(host->transportt);
487
Dan Williams9524c682012-06-21 23:30:53 -0700488 if (!i->dft->lldd_abort_task)
489 return FAILED;
490
491 res = i->dft->lldd_abort_task(task);
492 if (res == TMF_RESP_FUNC_SUCC || res == TMF_RESP_FUNC_COMPLETE)
493 return SUCCESS;
494
495 return FAILED;
496}
497EXPORT_SYMBOL_GPL(sas_eh_abort_handler);
498
Darrick J. Wonga9344e62007-01-29 23:48:19 -0800499/* Attempt to send a LUN reset message to a device */
Darrick J. Wongad689232007-01-26 14:08:52 -0800500int sas_eh_device_reset_handler(struct scsi_cmnd *cmd)
James Bottomley2908d772006-08-29 09:22:51 -0500501{
Darrick J. Wonga9344e62007-01-29 23:48:19 -0800502 int res;
Dan Williams5db45bd2012-06-21 23:30:48 -0700503 struct scsi_lun lun;
504 struct Scsi_Host *host = cmd->device->host;
505 struct domain_device *dev = cmd_to_domain_dev(cmd);
506 struct sas_internal *i = to_sas_internal(host->transportt);
507
508 if (current != host->ehandler)
509 return sas_queue_reset(dev, SAS_DEV_LU_RESET, cmd->device->lun, 0);
Darrick J. Wonga9344e62007-01-29 23:48:19 -0800510
511 int_to_scsilun(cmd->device->lun, &lun);
512
513 if (!i->dft->lldd_lu_reset)
514 return FAILED;
515
516 res = i->dft->lldd_lu_reset(dev, lun.scsi_lun);
517 if (res == TMF_RESP_FUNC_SUCC || res == TMF_RESP_FUNC_COMPLETE)
518 return SUCCESS;
519
520 return FAILED;
521}
522
Hannes Reineckecc199e72017-08-25 13:57:02 +0200523int sas_eh_target_reset_handler(struct scsi_cmnd *cmd)
Darrick J. Wonga9344e62007-01-29 23:48:19 -0800524{
Darrick J. Wongad689232007-01-26 14:08:52 -0800525 int res;
Dan Williamse7db8222012-06-21 23:30:58 -0700526 struct Scsi_Host *host = cmd->device->host;
527 struct domain_device *dev = cmd_to_domain_dev(cmd);
528 struct sas_internal *i = to_sas_internal(host->transportt);
Darrick J. Wongad689232007-01-26 14:08:52 -0800529
Dan Williams5db45bd2012-06-21 23:30:48 -0700530 if (current != host->ehandler)
531 return sas_queue_reset(dev, SAS_DEV_RESET, 0, 0);
532
Dan Williamse7db8222012-06-21 23:30:58 -0700533 if (!i->dft->lldd_I_T_nexus_reset)
534 return FAILED;
Dan Williamsf41a0c42011-12-21 21:33:17 -0800535
Dan Williamse7db8222012-06-21 23:30:58 -0700536 res = i->dft->lldd_I_T_nexus_reset(dev);
537 if (res == TMF_RESP_FUNC_SUCC || res == TMF_RESP_FUNC_COMPLETE ||
538 res == -ENODEV)
Darrick J. Wongad689232007-01-26 14:08:52 -0800539 return SUCCESS;
540
541 return FAILED;
542}
543
544/* Try to reset a device */
James Bottomley8de3ef22008-02-23 23:39:59 -0600545static int try_to_reset_cmd_device(struct scsi_cmnd *cmd)
Darrick J. Wongad689232007-01-26 14:08:52 -0800546{
Darrick J. Wonga9344e62007-01-29 23:48:19 -0800547 int res;
James Bottomley8de3ef22008-02-23 23:39:59 -0600548 struct Scsi_Host *shost = cmd->device->host;
Darrick J. Wongad689232007-01-26 14:08:52 -0800549
Darrick J. Wonga9344e62007-01-29 23:48:19 -0800550 if (!shost->hostt->eh_device_reset_handler)
Hannes Reineckecc199e72017-08-25 13:57:02 +0200551 goto try_target_reset;
Darrick J. Wonga9344e62007-01-29 23:48:19 -0800552
553 res = shost->hostt->eh_device_reset_handler(cmd);
554 if (res == SUCCESS)
555 return res;
556
Hannes Reineckecc199e72017-08-25 13:57:02 +0200557try_target_reset:
558 if (shost->hostt->eh_target_reset_handler)
559 return shost->hostt->eh_target_reset_handler(cmd);
Darrick J. Wonga9344e62007-01-29 23:48:19 -0800560
561 return FAILED;
Darrick J. Wongad689232007-01-26 14:08:52 -0800562}
563
Dan Williams84023472012-01-20 15:23:07 -0800564static void sas_eh_handle_sas_errors(struct Scsi_Host *shost, struct list_head *work_q)
Darrick J. Wongad689232007-01-26 14:08:52 -0800565{
James Bottomley2908d772006-08-29 09:22:51 -0500566 struct scsi_cmnd *cmd, *n;
567 enum task_disposition res = TASK_IS_DONE;
Darrick J. Wong3ebf6922007-01-11 14:15:17 -0800568 int tmf_resp, need_reset;
James Bottomley2908d772006-08-29 09:22:51 -0500569 struct sas_internal *i = to_sas_internal(shost->transportt);
Darrick J. Wongad689232007-01-26 14:08:52 -0800570 unsigned long flags;
571 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
Dan Williams45c73b62012-01-09 10:12:52 -0800572 LIST_HEAD(done);
James Bottomley2908d772006-08-29 09:22:51 -0500573
Dan Williams45c73b62012-01-09 10:12:52 -0800574 /* clean out any commands that won the completion vs eh race */
Darrick J. Wongad689232007-01-26 14:08:52 -0800575 list_for_each_entry_safe(cmd, n, work_q, eh_entry) {
Dan Williams9095a642011-11-28 11:29:20 -0800576 struct domain_device *dev = cmd_to_domain_dev(cmd);
577 struct sas_task *task;
578
579 spin_lock_irqsave(&dev->done_lock, flags);
580 /* by this point the lldd has either observed
581 * SAS_HA_FROZEN and is leaving the task alone, or has
582 * won the race with eh and decided to complete it
583 */
584 task = TO_SAS_TASK(cmd);
585 spin_unlock_irqrestore(&dev->done_lock, flags);
Darrick J. Wongf4563932006-10-30 15:18:39 -0800586
Darrick J. Wongad689232007-01-26 14:08:52 -0800587 if (!task)
Dan Williams45c73b62012-01-09 10:12:52 -0800588 list_move_tail(&cmd->eh_entry, &done);
589 }
590
591 Again:
592 list_for_each_entry_safe(cmd, n, work_q, eh_entry) {
593 struct sas_task *task = TO_SAS_TASK(cmd);
Darrick J. Wongad689232007-01-26 14:08:52 -0800594
595 list_del_init(&cmd->eh_entry);
Darrick J. Wong3ebf6922007-01-11 14:15:17 -0800596
597 spin_lock_irqsave(&task->task_state_lock, flags);
598 need_reset = task->task_state_flags & SAS_TASK_NEED_DEV_RESET;
Darrick J. Wong3ebf6922007-01-11 14:15:17 -0800599 spin_unlock_irqrestore(&task->task_state_lock, flags);
600
James Bottomley8de3ef22008-02-23 23:39:59 -0600601 if (need_reset) {
602 SAS_DPRINTK("%s: task 0x%p requests reset\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700603 __func__, task);
James Bottomley8de3ef22008-02-23 23:39:59 -0600604 goto reset;
605 }
606
Darrick J. Wongf4563932006-10-30 15:18:39 -0800607 SAS_DPRINTK("trying to find task 0x%p\n", task);
James Bottomley2908d772006-08-29 09:22:51 -0500608 res = sas_scsi_find_task(task);
609
James Bottomley2908d772006-08-29 09:22:51 -0500610 switch (res) {
611 case TASK_IS_DONE:
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700612 SAS_DPRINTK("%s: task 0x%p is done\n", __func__,
James Bottomley2908d772006-08-29 09:22:51 -0500613 task);
Jason Yan318aaf32018-03-08 10:34:53 +0800614 sas_eh_finish_cmd(cmd);
James Bottomley2908d772006-08-29 09:22:51 -0500615 continue;
616 case TASK_IS_ABORTED:
617 SAS_DPRINTK("%s: task 0x%p is aborted\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700618 __func__, task);
Jason Yan318aaf32018-03-08 10:34:53 +0800619 sas_eh_finish_cmd(cmd);
James Bottomley2908d772006-08-29 09:22:51 -0500620 continue;
621 case TASK_IS_AT_LU:
622 SAS_DPRINTK("task 0x%p is at LU: lu recover\n", task);
James Bottomley8de3ef22008-02-23 23:39:59 -0600623 reset:
James Bottomley2908d772006-08-29 09:22:51 -0500624 tmf_resp = sas_recover_lu(task->dev, cmd);
625 if (tmf_resp == TMF_RESP_FUNC_COMPLETE) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200626 SAS_DPRINTK("dev %016llx LU %llx is "
James Bottomley2908d772006-08-29 09:22:51 -0500627 "recovered\n",
628 SAS_ADDR(task->dev),
629 cmd->device->lun);
Jason Yan318aaf32018-03-08 10:34:53 +0800630 sas_eh_finish_cmd(cmd);
Darrick J. Wongad689232007-01-26 14:08:52 -0800631 sas_scsi_clear_queue_lu(work_q, cmd);
James Bottomley2908d772006-08-29 09:22:51 -0500632 goto Again;
633 }
634 /* fallthrough */
635 case TASK_IS_NOT_AT_LU:
Darrick J. Wong02cd7432007-01-11 14:15:46 -0800636 case TASK_ABORT_FAILED:
James Bottomley2908d772006-08-29 09:22:51 -0500637 SAS_DPRINTK("task 0x%p is not at LU: I_T recover\n",
638 task);
639 tmf_resp = sas_recover_I_T(task->dev);
Dan Williams26a2e682012-01-30 21:40:45 -0800640 if (tmf_resp == TMF_RESP_FUNC_COMPLETE ||
641 tmf_resp == -ENODEV) {
James Bottomley8de3ef22008-02-23 23:39:59 -0600642 struct domain_device *dev = task->dev;
James Bottomley2908d772006-08-29 09:22:51 -0500643 SAS_DPRINTK("I_T %016llx recovered\n",
644 SAS_ADDR(task->dev->sas_addr));
James Bottomleya8e14fe2008-02-19 21:48:42 -0600645 sas_eh_finish_cmd(cmd);
James Bottomley8de3ef22008-02-23 23:39:59 -0600646 sas_scsi_clear_queue_I_T(work_q, dev);
James Bottomley2908d772006-08-29 09:22:51 -0500647 goto Again;
648 }
649 /* Hammer time :-) */
James Bottomley8de3ef22008-02-23 23:39:59 -0600650 try_to_reset_cmd_device(cmd);
James Bottomley2908d772006-08-29 09:22:51 -0500651 if (i->dft->lldd_clear_nexus_port) {
652 struct asd_sas_port *port = task->dev->port;
653 SAS_DPRINTK("clearing nexus for port:%d\n",
654 port->id);
655 res = i->dft->lldd_clear_nexus_port(port);
656 if (res == TMF_RESP_FUNC_COMPLETE) {
657 SAS_DPRINTK("clear nexus port:%d "
658 "succeeded\n", port->id);
James Bottomleya8e14fe2008-02-19 21:48:42 -0600659 sas_eh_finish_cmd(cmd);
Darrick J. Wongad689232007-01-26 14:08:52 -0800660 sas_scsi_clear_queue_port(work_q,
James Bottomley2908d772006-08-29 09:22:51 -0500661 port);
662 goto Again;
663 }
664 }
665 if (i->dft->lldd_clear_nexus_ha) {
666 SAS_DPRINTK("clear nexus ha\n");
667 res = i->dft->lldd_clear_nexus_ha(ha);
668 if (res == TMF_RESP_FUNC_COMPLETE) {
669 SAS_DPRINTK("clear nexus ha "
670 "succeeded\n");
James Bottomleya8e14fe2008-02-19 21:48:42 -0600671 sas_eh_finish_cmd(cmd);
James Bottomleya8e14fe2008-02-19 21:48:42 -0600672 goto clear_q;
James Bottomley2908d772006-08-29 09:22:51 -0500673 }
674 }
675 /* If we are here -- this means that no amount
676 * of effort could recover from errors. Quite
677 * possibly the HA just disappeared.
678 */
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200679 SAS_DPRINTK("error from device %llx, LUN %llx "
James Bottomley2908d772006-08-29 09:22:51 -0500680 "couldn't be recovered in any way\n",
681 SAS_ADDR(task->dev->sas_addr),
682 cmd->device->lun);
683
James Bottomleya8e14fe2008-02-19 21:48:42 -0600684 sas_eh_finish_cmd(cmd);
James Bottomley2908d772006-08-29 09:22:51 -0500685 goto clear_q;
686 }
687 }
Dan Williams45c73b62012-01-09 10:12:52 -0800688 out:
689 list_splice_tail(&done, work_q);
Dan Williams3944f502011-11-29 12:08:50 -0800690 list_splice_tail_init(&ha->eh_ata_q, work_q);
Dan Williams84023472012-01-20 15:23:07 -0800691 return;
Dan Williams45c73b62012-01-09 10:12:52 -0800692
693 clear_q:
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700694 SAS_DPRINTK("--- Exit %s -- clear_q\n", __func__);
James Bottomleya8e14fe2008-02-19 21:48:42 -0600695 list_for_each_entry_safe(cmd, n, work_q, eh_entry)
696 sas_eh_finish_cmd(cmd);
Dan Williams45c73b62012-01-09 10:12:52 -0800697 goto out;
Darrick J. Wongad689232007-01-26 14:08:52 -0800698}
699
Dan Williams5db45bd2012-06-21 23:30:48 -0700700static void sas_eh_handle_resets(struct Scsi_Host *shost)
701{
702 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
703 struct sas_internal *i = to_sas_internal(shost->transportt);
704
705 /* handle directed resets to sas devices */
706 spin_lock_irq(&ha->lock);
707 while (!list_empty(&ha->eh_dev_q)) {
708 struct domain_device *dev;
709 struct ssp_device *ssp;
710
711 ssp = list_entry(ha->eh_dev_q.next, typeof(*ssp), eh_list_node);
712 list_del_init(&ssp->eh_list_node);
713 dev = container_of(ssp, typeof(*dev), ssp_dev);
714 kref_get(&dev->kref);
715 WARN_ONCE(dev_is_sata(dev), "ssp reset to ata device?\n");
716
717 spin_unlock_irq(&ha->lock);
718
719 if (test_and_clear_bit(SAS_DEV_LU_RESET, &dev->state))
720 i->dft->lldd_lu_reset(dev, ssp->reset_lun.scsi_lun);
721
722 if (test_and_clear_bit(SAS_DEV_RESET, &dev->state))
723 i->dft->lldd_I_T_nexus_reset(dev);
724
725 sas_put_device(dev);
726 spin_lock_irq(&ha->lock);
727 clear_bit(SAS_DEV_EH_PENDING, &dev->state);
728 ha->eh_active--;
729 }
730 spin_unlock_irq(&ha->lock);
731}
732
Dan Williamse4a9c372012-06-21 23:25:27 -0700733
Darrick J. Wongad689232007-01-26 14:08:52 -0800734void sas_scsi_recover_host(struct Scsi_Host *shost)
735{
736 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
Darrick J. Wongad689232007-01-26 14:08:52 -0800737 LIST_HEAD(eh_work_q);
Dan Williamse4a9c372012-06-21 23:25:27 -0700738 int tries = 0;
739 bool retry;
Darrick J. Wongad689232007-01-26 14:08:52 -0800740
Dan Williamse4a9c372012-06-21 23:25:27 -0700741retry:
742 tries++;
743 retry = true;
744 spin_lock_irq(shost->host_lock);
Darrick J. Wongad689232007-01-26 14:08:52 -0800745 list_splice_init(&shost->eh_cmd_q, &eh_work_q);
Dan Williamse4a9c372012-06-21 23:25:27 -0700746 spin_unlock_irq(shost->host_lock);
Darrick J. Wongad689232007-01-26 14:08:52 -0800747
Dan Williamsd230ce62012-01-11 12:08:36 -0800748 SAS_DPRINTK("Enter %s busy: %d failed: %d\n",
Christoph Hellwig74665012014-01-22 15:29:29 +0100749 __func__, atomic_read(&shost->host_busy), shost->host_failed);
Darrick J. Wongad689232007-01-26 14:08:52 -0800750 /*
751 * Deal with commands that still have SAS tasks (i.e. they didn't
Dan Williams84023472012-01-20 15:23:07 -0800752 * complete via the normal sas_task completion mechanism),
753 * SAS_HA_FROZEN gives eh dominion over all sas_task completion.
Darrick J. Wongad689232007-01-26 14:08:52 -0800754 */
Dan Williams9095a642011-11-28 11:29:20 -0800755 set_bit(SAS_HA_FROZEN, &ha->state);
Dan Williams84023472012-01-20 15:23:07 -0800756 sas_eh_handle_sas_errors(shost, &eh_work_q);
757 clear_bit(SAS_HA_FROZEN, &ha->state);
758 if (list_empty(&eh_work_q))
Darrick J. Wongad689232007-01-26 14:08:52 -0800759 goto out;
760
761 /*
762 * Now deal with SCSI commands that completed ok but have a an error
763 * code (and hopefully sense data) attached. This is roughly what
764 * scsi_unjam_host does, but we skip scsi_eh_abort_cmds because any
765 * command we see here has no sas_task and is thus unknown to the HA.
766 */
Dan Williamsd230ce62012-01-11 12:08:36 -0800767 sas_ata_eh(shost, &eh_work_q, &ha->eh_done_q);
768 if (!scsi_eh_get_sense(&eh_work_q, &ha->eh_done_q))
769 scsi_eh_ready_devs(shost, &eh_work_q, &ha->eh_done_q);
Darrick J. Wongad689232007-01-26 14:08:52 -0800770
771out:
Dan Williams5db45bd2012-06-21 23:30:48 -0700772 sas_eh_handle_resets(shost);
773
James Bottomley00dd4992011-01-23 09:44:12 -0600774 /* now link into libata eh --- if we have any ata devices */
775 sas_ata_strategy_handler(shost);
776
Darrick J. Wongad689232007-01-26 14:08:52 -0800777 scsi_eh_flush_done_q(&ha->eh_done_q);
James Bottomley00dd4992011-01-23 09:44:12 -0600778
Dan Williamse4a9c372012-06-21 23:25:27 -0700779 /* check if any new eh work was scheduled during the last run */
780 spin_lock_irq(&ha->lock);
781 if (ha->eh_active == 0) {
782 shost->host_eh_scheduled = 0;
783 retry = false;
784 }
785 spin_unlock_irq(&ha->lock);
786
787 if (retry)
788 goto retry;
789
790 SAS_DPRINTK("--- Exit %s: busy: %d failed: %d tries: %d\n",
Christoph Hellwig74665012014-01-22 15:29:29 +0100791 __func__, atomic_read(&shost->host_busy),
792 shost->host_failed, tries);
James Bottomley2908d772006-08-29 09:22:51 -0500793}
794
Darrick J. Wongfa1c1e82006-08-10 19:19:47 -0700795int sas_ioctl(struct scsi_device *sdev, int cmd, void __user *arg)
796{
797 struct domain_device *dev = sdev_to_domain_dev(sdev);
798
799 if (dev_is_sata(dev))
Jeff Garzik94be9a52009-01-16 10:17:09 -0500800 return ata_sas_scsi_ioctl(dev->sata_dev.ap, sdev, cmd, arg);
Darrick J. Wongfa1c1e82006-08-10 19:19:47 -0700801
802 return -EINVAL;
803}
804
James Bottomley2908d772006-08-29 09:22:51 -0500805struct domain_device *sas_find_dev_by_rphy(struct sas_rphy *rphy)
806{
807 struct Scsi_Host *shost = dev_to_shost(rphy->dev.parent);
808 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
809 struct domain_device *found_dev = NULL;
810 int i;
Darrick J. Wong980fa2f2007-01-11 14:15:40 -0800811 unsigned long flags;
James Bottomley2908d772006-08-29 09:22:51 -0500812
Darrick J. Wong980fa2f2007-01-11 14:15:40 -0800813 spin_lock_irqsave(&ha->phy_port_lock, flags);
James Bottomley2908d772006-08-29 09:22:51 -0500814 for (i = 0; i < ha->num_phys; i++) {
815 struct asd_sas_port *port = ha->sas_port[i];
816 struct domain_device *dev;
817
818 spin_lock(&port->dev_list_lock);
819 list_for_each_entry(dev, &port->dev_list, dev_list_node) {
820 if (rphy == dev->rphy) {
821 found_dev = dev;
822 spin_unlock(&port->dev_list_lock);
823 goto found;
824 }
825 }
826 spin_unlock(&port->dev_list_lock);
827 }
828 found:
Darrick J. Wong980fa2f2007-01-11 14:15:40 -0800829 spin_unlock_irqrestore(&ha->phy_port_lock, flags);
James Bottomley2908d772006-08-29 09:22:51 -0500830
831 return found_dev;
832}
833
James Bottomley2908d772006-08-29 09:22:51 -0500834int sas_target_alloc(struct scsi_target *starget)
835{
Dan Williams735f7d22011-11-17 17:59:47 -0800836 struct sas_rphy *rphy = dev_to_rphy(starget->dev.parent);
837 struct domain_device *found_dev = sas_find_dev_by_rphy(rphy);
James Bottomley2908d772006-08-29 09:22:51 -0500838
839 if (!found_dev)
840 return -ENODEV;
841
Dan Williams735f7d22011-11-17 17:59:47 -0800842 kref_get(&found_dev->kref);
James Bottomley2908d772006-08-29 09:22:51 -0500843 starget->hostdata = found_dev;
844 return 0;
845}
846
Dan Williams97a14202011-09-20 15:10:46 -0700847#define SAS_DEF_QD 256
James Bottomley2908d772006-08-29 09:22:51 -0500848
849int sas_slave_configure(struct scsi_device *scsi_dev)
850{
851 struct domain_device *dev = sdev_to_domain_dev(scsi_dev);
James Bottomley2908d772006-08-29 09:22:51 -0500852
853 BUG_ON(dev->rphy->identify.device_type != SAS_END_DEVICE);
854
Darrick J. Wongfa1c1e82006-08-10 19:19:47 -0700855 if (dev_is_sata(dev)) {
856 ata_sas_slave_configure(scsi_dev, dev->sata_dev.ap);
857 return 0;
858 }
859
James Bottomley2908d772006-08-29 09:22:51 -0500860 sas_read_port_mode_page(scsi_dev);
861
862 if (scsi_dev->tagged_supported) {
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100863 scsi_change_queue_depth(scsi_dev, SAS_DEF_QD);
James Bottomley2908d772006-08-29 09:22:51 -0500864 } else {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200865 SAS_DPRINTK("device %llx, LUN %llx doesn't support "
James Bottomley2908d772006-08-29 09:22:51 -0500866 "TCQ\n", SAS_ADDR(dev->sas_addr),
867 scsi_dev->lun);
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100868 scsi_change_queue_depth(scsi_dev, 1);
James Bottomley2908d772006-08-29 09:22:51 -0500869 }
870
Darrick J. Wongf27708f2007-01-26 14:08:58 -0800871 scsi_dev->allow_restart = 1;
872
James Bottomley2908d772006-08-29 09:22:51 -0500873 return 0;
874}
875
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100876int sas_change_queue_depth(struct scsi_device *sdev, int depth)
James Bottomley2908d772006-08-29 09:22:51 -0500877{
Dan Williams97a14202011-09-20 15:10:46 -0700878 struct domain_device *dev = sdev_to_domain_dev(sdev);
James Bottomley2908d772006-08-29 09:22:51 -0500879
Dan Williamsf6e67032011-09-20 15:10:33 -0700880 if (dev_is_sata(dev))
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100881 return __ata_change_queue_depth(dev->sata_dev.ap, sdev, depth);
Dan Williamsf6e67032011-09-20 15:10:33 -0700882
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100883 if (!sdev->tagged_supported)
884 depth = 1;
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100885 return scsi_change_queue_depth(sdev, depth);
James Bottomley2908d772006-08-29 09:22:51 -0500886}
887
James Bottomley2908d772006-08-29 09:22:51 -0500888int sas_bios_param(struct scsi_device *scsi_dev,
889 struct block_device *bdev,
890 sector_t capacity, int *hsc)
891{
892 hsc[0] = 255;
893 hsc[1] = 63;
894 sector_div(capacity, 255*63);
895 hsc[2] = capacity;
896
897 return 0;
898}
899
Darrick J. Wong396819f2007-01-11 14:15:20 -0800900/*
Darrick J. Wong396819f2007-01-11 14:15:20 -0800901 * Tell an upper layer that it needs to initiate an abort for a given task.
902 * This should only ever be called by an LLDD.
903 */
904void sas_task_abort(struct sas_task *task)
Darrick J. Wong79a5eb62006-10-30 15:18:50 -0800905{
Darrick J. Wong396819f2007-01-11 14:15:20 -0800906 struct scsi_cmnd *sc = task->uldd_task;
Darrick J. Wong79a5eb62006-10-30 15:18:50 -0800907
Darrick J. Wong396819f2007-01-11 14:15:20 -0800908 /* Escape for libsas internal commands */
909 if (!sc) {
Dan Williamsf0bf7502012-06-21 23:36:30 -0700910 struct sas_task_slow *slow = task->slow_task;
911
912 if (!slow)
Darrick J. Wong79a5eb62006-10-30 15:18:50 -0800913 return;
Dan Williamsf0bf7502012-06-21 23:36:30 -0700914 if (!del_timer(&slow->timer))
915 return;
Kees Cook841b86f2017-10-23 09:40:42 +0200916 slow->timer.function(&slow->timer);
Darrick J. Wong396819f2007-01-11 14:15:20 -0800917 return;
918 }
Darrick J. Wong79a5eb62006-10-30 15:18:50 -0800919
Darrick J. Wong3a2755a2007-01-30 01:18:58 -0800920 if (dev_is_sata(task->dev)) {
921 sas_ata_task_abort(task);
James Bottomley1b4d0d82010-05-13 09:31:54 -0500922 } else {
923 struct request_queue *q = sc->device->request_queue;
924 unsigned long flags;
Darrick J. Wong3a2755a2007-01-30 01:18:58 -0800925
James Bottomley1b4d0d82010-05-13 09:31:54 -0500926 spin_lock_irqsave(q->queue_lock, flags);
927 blk_abort_request(sc->request);
928 spin_unlock_irqrestore(q->queue_lock, flags);
James Bottomley1b4d0d82010-05-13 09:31:54 -0500929 }
Darrick J. Wong79a5eb62006-10-30 15:18:50 -0800930}
931
Darrick J. Wongfa1c1e82006-08-10 19:19:47 -0700932void sas_target_destroy(struct scsi_target *starget)
933{
Dan Williams735f7d22011-11-17 17:59:47 -0800934 struct domain_device *found_dev = starget->hostdata;
Darrick J. Wongfa1c1e82006-08-10 19:19:47 -0700935
936 if (!found_dev)
937 return;
938
Dan Williams735f7d22011-11-17 17:59:47 -0800939 starget->hostdata = NULL;
940 sas_put_device(found_dev);
Darrick J. Wongfa1c1e82006-08-10 19:19:47 -0700941}
942
Darrick J. Wong45e6cdf2008-02-19 10:49:40 -0800943#define SAS_STRING_ADDR_SIZE 16
944
945int sas_request_addr(struct Scsi_Host *shost, u8 *addr)
946{
947 int res;
948 const struct firmware *fw;
949
950 res = request_firmware(&fw, "sas_addr", &shost->shost_gendev);
951 if (res)
952 return res;
953
954 if (fw->size < SAS_STRING_ADDR_SIZE) {
955 res = -ENODEV;
956 goto out;
957 }
958
Andy Shevchenko9ea4e072017-12-19 19:37:27 +0200959 res = hex2bin(addr, fw->data, strnlen(fw->data, SAS_ADDR_SIZE * 2) / 2);
960 if (res)
961 goto out;
Darrick J. Wong45e6cdf2008-02-19 10:49:40 -0800962
963out:
964 release_firmware(fw);
965 return res;
966}
967EXPORT_SYMBOL_GPL(sas_request_addr);
968
James Bottomley2908d772006-08-29 09:22:51 -0500969EXPORT_SYMBOL_GPL(sas_queuecommand);
970EXPORT_SYMBOL_GPL(sas_target_alloc);
971EXPORT_SYMBOL_GPL(sas_slave_configure);
James Bottomley2908d772006-08-29 09:22:51 -0500972EXPORT_SYMBOL_GPL(sas_change_queue_depth);
James Bottomley2908d772006-08-29 09:22:51 -0500973EXPORT_SYMBOL_GPL(sas_bios_param);
Darrick J. Wong79a5eb62006-10-30 15:18:50 -0800974EXPORT_SYMBOL_GPL(sas_task_abort);
Darrick J. Wongdea22212006-11-07 17:28:55 -0800975EXPORT_SYMBOL_GPL(sas_phy_reset);
Darrick J. Wongad689232007-01-26 14:08:52 -0800976EXPORT_SYMBOL_GPL(sas_eh_device_reset_handler);
Hannes Reineckecc199e72017-08-25 13:57:02 +0200977EXPORT_SYMBOL_GPL(sas_eh_target_reset_handler);
Darrick J. Wongfa1c1e82006-08-10 19:19:47 -0700978EXPORT_SYMBOL_GPL(sas_target_destroy);
979EXPORT_SYMBOL_GPL(sas_ioctl);