12908d778SJames Bottomley /* 22908d778SJames Bottomley * Serial Attached SCSI (SAS) class SCSI Host glue. 32908d778SJames Bottomley * 42908d778SJames Bottomley * Copyright (C) 2005 Adaptec, Inc. All rights reserved. 52908d778SJames Bottomley * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com> 62908d778SJames Bottomley * 72908d778SJames Bottomley * This file is licensed under GPLv2. 82908d778SJames Bottomley * 92908d778SJames Bottomley * This program is free software; you can redistribute it and/or 102908d778SJames Bottomley * modify it under the terms of the GNU General Public License as 112908d778SJames Bottomley * published by the Free Software Foundation; either version 2 of the 122908d778SJames Bottomley * License, or (at your option) any later version. 132908d778SJames Bottomley * 142908d778SJames Bottomley * This program is distributed in the hope that it will be useful, but 152908d778SJames Bottomley * WITHOUT ANY WARRANTY; without even the implied warranty of 162908d778SJames Bottomley * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 172908d778SJames Bottomley * General Public License for more details. 182908d778SJames Bottomley * 192908d778SJames Bottomley * You should have received a copy of the GNU General Public License 202908d778SJames Bottomley * along with this program; if not, write to the Free Software 212908d778SJames Bottomley * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 222908d778SJames Bottomley * USA 232908d778SJames Bottomley * 242908d778SJames Bottomley */ 252908d778SJames Bottomley 26d7a54e30SChristoph Hellwig #include <linux/kthread.h> 2745e6cdf4SDarrick J. Wong #include <linux/firmware.h> 2809703660SPaul Gortmaker #include <linux/export.h> 2945e6cdf4SDarrick J. Wong #include <linux/ctype.h> 30d7a54e30SChristoph Hellwig 312908d778SJames Bottomley #include "sas_internal.h" 322908d778SJames Bottomley 332908d778SJames Bottomley #include <scsi/scsi_host.h> 342908d778SJames Bottomley #include <scsi/scsi_device.h> 352908d778SJames Bottomley #include <scsi/scsi_tcq.h> 362908d778SJames Bottomley #include <scsi/scsi.h> 37f456393eSDarrick J. Wong #include <scsi/scsi_eh.h> 382908d778SJames Bottomley #include <scsi/scsi_transport.h> 392908d778SJames Bottomley #include <scsi/scsi_transport_sas.h> 40338ec570SDarrick J. Wong #include <scsi/sas_ata.h> 412908d778SJames Bottomley #include "../scsi_sas_internal.h" 4279a5eb60SDarrick J. Wong #include "../scsi_transport_api.h" 43ad689233SDarrick J. Wong #include "../scsi_priv.h" 442908d778SJames Bottomley 452908d778SJames Bottomley #include <linux/err.h> 462908d778SJames Bottomley #include <linux/blkdev.h> 4783144186SRafael J. Wysocki #include <linux/freezer.h> 485a0e3ad6STejun Heo #include <linux/gfp.h> 492908d778SJames Bottomley #include <linux/scatterlist.h> 50fa1c1e8fSDarrick J. Wong #include <linux/libata.h> 512908d778SJames Bottomley 522908d778SJames Bottomley /* ---------- SCSI Host glue ---------- */ 532908d778SJames Bottomley 542908d778SJames Bottomley static void sas_scsi_task_done(struct sas_task *task) 552908d778SJames Bottomley { 562908d778SJames Bottomley struct task_status_struct *ts = &task->task_status; 572908d778SJames Bottomley struct scsi_cmnd *sc = task->uldd_task; 582908d778SJames Bottomley int hs = 0, stat = 0; 592908d778SJames Bottomley 60a8e14fecSJames Bottomley if (unlikely(task->task_state_flags & SAS_TASK_STATE_ABORTED)) { 61a8e14fecSJames Bottomley /* Aborted tasks will be completed by the error handler */ 62a8e14fecSJames Bottomley SAS_DPRINTK("task done but aborted\n"); 63a8e14fecSJames Bottomley return; 64a8e14fecSJames Bottomley } 65a8e14fecSJames Bottomley 662908d778SJames Bottomley if (unlikely(!sc)) { 672908d778SJames Bottomley SAS_DPRINTK("task_done called with non existing SCSI cmnd!\n"); 682908d778SJames Bottomley list_del_init(&task->list); 692908d778SJames Bottomley sas_free_task(task); 702908d778SJames Bottomley return; 712908d778SJames Bottomley } 722908d778SJames Bottomley 732908d778SJames Bottomley if (ts->resp == SAS_TASK_UNDELIVERED) { 742908d778SJames Bottomley /* transport error */ 752908d778SJames Bottomley hs = DID_NO_CONNECT; 762908d778SJames Bottomley } else { /* ts->resp == SAS_TASK_COMPLETE */ 772908d778SJames Bottomley /* task delivered, what happened afterwards? */ 782908d778SJames Bottomley switch (ts->stat) { 792908d778SJames Bottomley case SAS_DEV_NO_RESPONSE: 802908d778SJames Bottomley case SAS_INTERRUPTED: 812908d778SJames Bottomley case SAS_PHY_DOWN: 822908d778SJames Bottomley case SAS_NAK_R_ERR: 832908d778SJames Bottomley case SAS_OPEN_TO: 842908d778SJames Bottomley hs = DID_NO_CONNECT; 852908d778SJames Bottomley break; 862908d778SJames Bottomley case SAS_DATA_UNDERRUN: 87c13e5566SFUJITA Tomonori scsi_set_resid(sc, ts->residual); 88c13e5566SFUJITA Tomonori if (scsi_bufflen(sc) - scsi_get_resid(sc) < sc->underflow) 892908d778SJames Bottomley hs = DID_ERROR; 902908d778SJames Bottomley break; 912908d778SJames Bottomley case SAS_DATA_OVERRUN: 922908d778SJames Bottomley hs = DID_ERROR; 932908d778SJames Bottomley break; 942908d778SJames Bottomley case SAS_QUEUE_FULL: 952908d778SJames Bottomley hs = DID_SOFT_ERROR; /* retry */ 962908d778SJames Bottomley break; 972908d778SJames Bottomley case SAS_DEVICE_UNKNOWN: 982908d778SJames Bottomley hs = DID_BAD_TARGET; 992908d778SJames Bottomley break; 1002908d778SJames Bottomley case SAS_SG_ERR: 1012908d778SJames Bottomley hs = DID_PARITY; 1022908d778SJames Bottomley break; 1032908d778SJames Bottomley case SAS_OPEN_REJECT: 1042908d778SJames Bottomley if (ts->open_rej_reason == SAS_OREJ_RSVD_RETRY) 1052908d778SJames Bottomley hs = DID_SOFT_ERROR; /* retry */ 1062908d778SJames Bottomley else 1072908d778SJames Bottomley hs = DID_ERROR; 1082908d778SJames Bottomley break; 1092908d778SJames Bottomley case SAS_PROTO_RESPONSE: 1102908d778SJames Bottomley SAS_DPRINTK("LLDD:%s sent SAS_PROTO_RESP for an SSP " 1112908d778SJames Bottomley "task; please report this\n", 1122908d778SJames Bottomley task->dev->port->ha->sas_ha_name); 1132908d778SJames Bottomley break; 1142908d778SJames Bottomley case SAS_ABORTED_TASK: 1152908d778SJames Bottomley hs = DID_ABORT; 1162908d778SJames Bottomley break; 117df64d3caSJames Bottomley case SAM_STAT_CHECK_CONDITION: 1182908d778SJames Bottomley memcpy(sc->sense_buffer, ts->buf, 119cc75e8abSFUJITA Tomonori min(SCSI_SENSE_BUFFERSIZE, ts->buf_valid_size)); 120df64d3caSJames Bottomley stat = SAM_STAT_CHECK_CONDITION; 1212908d778SJames Bottomley break; 1222908d778SJames Bottomley default: 1232908d778SJames Bottomley stat = ts->stat; 1242908d778SJames Bottomley break; 1252908d778SJames Bottomley } 1262908d778SJames Bottomley } 1272908d778SJames Bottomley ASSIGN_SAS_TASK(sc, NULL); 1282908d778SJames Bottomley sc->result = (hs << 16) | stat; 1292908d778SJames Bottomley list_del_init(&task->list); 1302908d778SJames Bottomley sas_free_task(task); 1312908d778SJames Bottomley sc->scsi_done(sc); 1322908d778SJames Bottomley } 1332908d778SJames Bottomley 1342908d778SJames Bottomley static struct sas_task *sas_create_task(struct scsi_cmnd *cmd, 1352908d778SJames Bottomley struct domain_device *dev, 1363cc27547SAl Viro gfp_t gfp_flags) 1372908d778SJames Bottomley { 1382908d778SJames Bottomley struct sas_task *task = sas_alloc_task(gfp_flags); 1392908d778SJames Bottomley struct scsi_lun lun; 1402908d778SJames Bottomley 1412908d778SJames Bottomley if (!task) 1422908d778SJames Bottomley return NULL; 1432908d778SJames Bottomley 1442908d778SJames Bottomley task->uldd_task = cmd; 1452908d778SJames Bottomley ASSIGN_SAS_TASK(cmd, task); 1462908d778SJames Bottomley 1472908d778SJames Bottomley task->dev = dev; 1482908d778SJames Bottomley task->task_proto = task->dev->tproto; /* BUG_ON(!SSP) */ 1492908d778SJames Bottomley 1502908d778SJames Bottomley task->ssp_task.retry_count = 1; 1512908d778SJames Bottomley int_to_scsilun(cmd->device->lun, &lun); 1522908d778SJames Bottomley memcpy(task->ssp_task.LUN, &lun.scsi_lun, 8); 1539cbbdca4STejun Heo task->ssp_task.task_attr = TASK_ATTR_SIMPLE; 1542908d778SJames Bottomley memcpy(task->ssp_task.cdb, cmd->cmnd, 16); 1552908d778SJames Bottomley 156c13e5566SFUJITA Tomonori task->scatter = scsi_sglist(cmd); 157c13e5566SFUJITA Tomonori task->num_scatter = scsi_sg_count(cmd); 158c13e5566SFUJITA Tomonori task->total_xfer_len = scsi_bufflen(cmd); 1592908d778SJames Bottomley task->data_dir = cmd->sc_data_direction; 1602908d778SJames Bottomley 1612908d778SJames Bottomley task->task_done = sas_scsi_task_done; 1622908d778SJames Bottomley 1632908d778SJames Bottomley return task; 1642908d778SJames Bottomley } 1652908d778SJames Bottomley 166338ec570SDarrick J. Wong int sas_queue_up(struct sas_task *task) 1672908d778SJames Bottomley { 1682908d778SJames Bottomley struct sas_ha_struct *sas_ha = task->dev->port->ha; 1692908d778SJames Bottomley struct scsi_core *core = &sas_ha->core; 1702908d778SJames Bottomley unsigned long flags; 1712908d778SJames Bottomley LIST_HEAD(list); 1722908d778SJames Bottomley 1732908d778SJames Bottomley spin_lock_irqsave(&core->task_queue_lock, flags); 1742908d778SJames Bottomley if (sas_ha->lldd_queue_size < core->task_queue_size + 1) { 1752908d778SJames Bottomley spin_unlock_irqrestore(&core->task_queue_lock, flags); 1762908d778SJames Bottomley return -SAS_QUEUE_FULL; 1772908d778SJames Bottomley } 1782908d778SJames Bottomley list_add_tail(&task->list, &core->task_queue); 1792908d778SJames Bottomley core->task_queue_size += 1; 1802908d778SJames Bottomley spin_unlock_irqrestore(&core->task_queue_lock, flags); 181d7a54e30SChristoph Hellwig wake_up_process(core->queue_thread); 1822908d778SJames Bottomley 1832908d778SJames Bottomley return 0; 1842908d778SJames Bottomley } 1852908d778SJames Bottomley 18692bd401bSChristoph Hellwig int sas_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd) 1872908d778SJames Bottomley { 1882908d778SJames Bottomley struct sas_internal *i = to_sas_internal(host->transportt); 189a923f756SChristoph Hellwig struct domain_device *dev = cmd_to_domain_dev(cmd); 1902908d778SJames Bottomley struct sas_ha_struct *sas_ha = dev->port->ha; 1912908d778SJames Bottomley struct sas_task *task; 192a923f756SChristoph Hellwig int res = 0; 1932908d778SJames Bottomley 1943673f4bfSDan Williams /* If the device fell off, no sense in issuing commands */ 195*e139942dSDan Williams if (test_bit(SAS_DEV_GONE, &dev->state)) { 1963673f4bfSDan Williams cmd->result = DID_BAD_TARGET << 16; 197a923f756SChristoph Hellwig goto out_done; 1983673f4bfSDan Williams } 1993673f4bfSDan Williams 200fa1c1e8fSDarrick J. Wong if (dev_is_sata(dev)) { 201312d3e56SDan Williams spin_lock_irq(dev->sata_dev.ap->lock); 202b27dcfb0SJeff Garzik res = ata_sas_queuecmd(cmd, dev->sata_dev.ap); 203312d3e56SDan Williams spin_unlock_irq(dev->sata_dev.ap->lock); 204a923f756SChristoph Hellwig return res; 205fa1c1e8fSDarrick J. Wong } 206fa1c1e8fSDarrick J. Wong 2072908d778SJames Bottomley task = sas_create_task(cmd, dev, GFP_ATOMIC); 2082908d778SJames Bottomley if (!task) 209ac81c6a8SChristoph Hellwig return SCSI_MLQUEUE_HOST_BUSY; 2102908d778SJames Bottomley 2112908d778SJames Bottomley /* Queue up, Direct Mode or Task Collector Mode. */ 2122908d778SJames Bottomley if (sas_ha->lldd_max_execute_num < 2) 2132908d778SJames Bottomley res = i->dft->lldd_execute_task(task, 1, GFP_ATOMIC); 2142908d778SJames Bottomley else 2152908d778SJames Bottomley res = sas_queue_up(task); 2162908d778SJames Bottomley 217a923f756SChristoph Hellwig if (res) 218a923f756SChristoph Hellwig goto out_free_task; 219a923f756SChristoph Hellwig return 0; 220a923f756SChristoph Hellwig 221a923f756SChristoph Hellwig out_free_task: 2222908d778SJames Bottomley SAS_DPRINTK("lldd_execute_task returned: %d\n", res); 2232908d778SJames Bottomley ASSIGN_SAS_TASK(cmd, NULL); 2242908d778SJames Bottomley sas_free_task(task); 225ac81c6a8SChristoph Hellwig if (res == -SAS_QUEUE_FULL) 226a923f756SChristoph Hellwig cmd->result = DID_SOFT_ERROR << 16; /* retry */ 227ac81c6a8SChristoph Hellwig else 228ac81c6a8SChristoph Hellwig cmd->result = DID_ERROR << 16; 229a923f756SChristoph Hellwig out_done: 230a923f756SChristoph Hellwig cmd->scsi_done(cmd); 231a923f756SChristoph Hellwig return 0; 2322908d778SJames Bottomley } 2332908d778SJames Bottomley 234a8e14fecSJames Bottomley static void sas_eh_finish_cmd(struct scsi_cmnd *cmd) 235a8e14fecSJames Bottomley { 236a8e14fecSJames Bottomley struct sas_task *task = TO_SAS_TASK(cmd); 237a8e14fecSJames Bottomley struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(cmd->device->host); 238a8e14fecSJames Bottomley 239a8e14fecSJames Bottomley /* remove the aborted task flag to allow the task to be 240a8e14fecSJames Bottomley * completed now. At this point, we only get called following 241a8e14fecSJames Bottomley * an actual abort of the task, so we should be guaranteed not 242a8e14fecSJames Bottomley * to be racing with any completions from the LLD (hence we 243a8e14fecSJames Bottomley * don't need the task state lock to clear the flag) */ 244a8e14fecSJames Bottomley task->task_state_flags &= ~SAS_TASK_STATE_ABORTED; 245a8e14fecSJames Bottomley /* Now call task_done. However, task will be free'd after 246a8e14fecSJames Bottomley * this */ 247a8e14fecSJames Bottomley task->task_done(task); 248a8e14fecSJames Bottomley /* now finish the command and move it on to the error 249a8e14fecSJames Bottomley * handler done list, this also takes it off the 250a8e14fecSJames Bottomley * error handler pending list */ 251a8e14fecSJames Bottomley scsi_eh_finish_cmd(cmd, &sas_ha->eh_done_q); 252a8e14fecSJames Bottomley } 253a8e14fecSJames Bottomley 2542908d778SJames Bottomley static void sas_scsi_clear_queue_lu(struct list_head *error_q, struct scsi_cmnd *my_cmd) 2552908d778SJames Bottomley { 2562908d778SJames Bottomley struct scsi_cmnd *cmd, *n; 2572908d778SJames Bottomley 2582908d778SJames Bottomley list_for_each_entry_safe(cmd, n, error_q, eh_entry) { 25963e4563bSJames Bottomley if (cmd->device->sdev_target == my_cmd->device->sdev_target && 26063e4563bSJames Bottomley cmd->device->lun == my_cmd->device->lun) 261a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 2622908d778SJames Bottomley } 2632908d778SJames Bottomley } 2642908d778SJames Bottomley 2652908d778SJames Bottomley static void sas_scsi_clear_queue_I_T(struct list_head *error_q, 2662908d778SJames Bottomley struct domain_device *dev) 2672908d778SJames Bottomley { 2682908d778SJames Bottomley struct scsi_cmnd *cmd, *n; 2692908d778SJames Bottomley 2702908d778SJames Bottomley list_for_each_entry_safe(cmd, n, error_q, eh_entry) { 2712908d778SJames Bottomley struct domain_device *x = cmd_to_domain_dev(cmd); 2722908d778SJames Bottomley 2732908d778SJames Bottomley if (x == dev) 274a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 2752908d778SJames Bottomley } 2762908d778SJames Bottomley } 2772908d778SJames Bottomley 2782908d778SJames Bottomley static void sas_scsi_clear_queue_port(struct list_head *error_q, 2792908d778SJames Bottomley struct asd_sas_port *port) 2802908d778SJames Bottomley { 2812908d778SJames Bottomley struct scsi_cmnd *cmd, *n; 2822908d778SJames Bottomley 2832908d778SJames Bottomley list_for_each_entry_safe(cmd, n, error_q, eh_entry) { 2842908d778SJames Bottomley struct domain_device *dev = cmd_to_domain_dev(cmd); 2852908d778SJames Bottomley struct asd_sas_port *x = dev->port; 2862908d778SJames Bottomley 2872908d778SJames Bottomley if (x == port) 288a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 2892908d778SJames Bottomley } 2902908d778SJames Bottomley } 2912908d778SJames Bottomley 2922908d778SJames Bottomley enum task_disposition { 2932908d778SJames Bottomley TASK_IS_DONE, 2942908d778SJames Bottomley TASK_IS_ABORTED, 2952908d778SJames Bottomley TASK_IS_AT_LU, 2962908d778SJames Bottomley TASK_IS_NOT_AT_LU, 29702cd743bSDarrick J. Wong TASK_ABORT_FAILED, 2982908d778SJames Bottomley }; 2992908d778SJames Bottomley 3002908d778SJames Bottomley static enum task_disposition sas_scsi_find_task(struct sas_task *task) 3012908d778SJames Bottomley { 3022908d778SJames Bottomley struct sas_ha_struct *ha = task->dev->port->ha; 3032908d778SJames Bottomley unsigned long flags; 3042908d778SJames Bottomley int i, res; 3052908d778SJames Bottomley struct sas_internal *si = 3062908d778SJames Bottomley to_sas_internal(task->dev->port->ha->core.shost->transportt); 3072908d778SJames Bottomley 3082908d778SJames Bottomley if (ha->lldd_max_execute_num > 1) { 3092908d778SJames Bottomley struct scsi_core *core = &ha->core; 3102908d778SJames Bottomley struct sas_task *t, *n; 3112908d778SJames Bottomley 3122908d778SJames Bottomley spin_lock_irqsave(&core->task_queue_lock, flags); 3132908d778SJames Bottomley list_for_each_entry_safe(t, n, &core->task_queue, list) { 3142908d778SJames Bottomley if (task == t) { 3152908d778SJames Bottomley list_del_init(&t->list); 3162908d778SJames Bottomley spin_unlock_irqrestore(&core->task_queue_lock, 3172908d778SJames Bottomley flags); 3182908d778SJames Bottomley SAS_DPRINTK("%s: task 0x%p aborted from " 3192908d778SJames Bottomley "task_queue\n", 320cadbd4a5SHarvey Harrison __func__, task); 3212908d778SJames Bottomley return TASK_IS_ABORTED; 3222908d778SJames Bottomley } 3232908d778SJames Bottomley } 3242908d778SJames Bottomley spin_unlock_irqrestore(&core->task_queue_lock, flags); 3252908d778SJames Bottomley } 3262908d778SJames Bottomley 3272908d778SJames Bottomley for (i = 0; i < 5; i++) { 328cadbd4a5SHarvey Harrison SAS_DPRINTK("%s: aborting task 0x%p\n", __func__, task); 3292908d778SJames Bottomley res = si->dft->lldd_abort_task(task); 3302908d778SJames Bottomley 3312908d778SJames Bottomley spin_lock_irqsave(&task->task_state_lock, flags); 3322908d778SJames Bottomley if (task->task_state_flags & SAS_TASK_STATE_DONE) { 3332908d778SJames Bottomley spin_unlock_irqrestore(&task->task_state_lock, flags); 334cadbd4a5SHarvey Harrison SAS_DPRINTK("%s: task 0x%p is done\n", __func__, 3352908d778SJames Bottomley task); 3362908d778SJames Bottomley return TASK_IS_DONE; 3372908d778SJames Bottomley } 3382908d778SJames Bottomley spin_unlock_irqrestore(&task->task_state_lock, flags); 3392908d778SJames Bottomley 3402908d778SJames Bottomley if (res == TMF_RESP_FUNC_COMPLETE) { 3412908d778SJames Bottomley SAS_DPRINTK("%s: task 0x%p is aborted\n", 342cadbd4a5SHarvey Harrison __func__, task); 3432908d778SJames Bottomley return TASK_IS_ABORTED; 3442908d778SJames Bottomley } else if (si->dft->lldd_query_task) { 3452908d778SJames Bottomley SAS_DPRINTK("%s: querying task 0x%p\n", 346cadbd4a5SHarvey Harrison __func__, task); 3472908d778SJames Bottomley res = si->dft->lldd_query_task(task); 34802cd743bSDarrick J. Wong switch (res) { 34902cd743bSDarrick J. Wong case TMF_RESP_FUNC_SUCC: 3502908d778SJames Bottomley SAS_DPRINTK("%s: task 0x%p at LU\n", 351cadbd4a5SHarvey Harrison __func__, task); 3522908d778SJames Bottomley return TASK_IS_AT_LU; 35302cd743bSDarrick J. Wong case TMF_RESP_FUNC_COMPLETE: 3542908d778SJames Bottomley SAS_DPRINTK("%s: task 0x%p not at LU\n", 355cadbd4a5SHarvey Harrison __func__, task); 3562908d778SJames Bottomley return TASK_IS_NOT_AT_LU; 35702cd743bSDarrick J. Wong case TMF_RESP_FUNC_FAILED: 35802cd743bSDarrick J. Wong SAS_DPRINTK("%s: task 0x%p failed to abort\n", 359cadbd4a5SHarvey Harrison __func__, task); 36002cd743bSDarrick J. Wong return TASK_ABORT_FAILED; 3612908d778SJames Bottomley } 36202cd743bSDarrick J. Wong 3632908d778SJames Bottomley } 3642908d778SJames Bottomley } 3652908d778SJames Bottomley return res; 3662908d778SJames Bottomley } 3672908d778SJames Bottomley 3682908d778SJames Bottomley static int sas_recover_lu(struct domain_device *dev, struct scsi_cmnd *cmd) 3692908d778SJames Bottomley { 3702908d778SJames Bottomley int res = TMF_RESP_FUNC_FAILED; 3712908d778SJames Bottomley struct scsi_lun lun; 3722908d778SJames Bottomley struct sas_internal *i = 3732908d778SJames Bottomley to_sas_internal(dev->port->ha->core.shost->transportt); 3742908d778SJames Bottomley 3752908d778SJames Bottomley int_to_scsilun(cmd->device->lun, &lun); 3762908d778SJames Bottomley 3772908d778SJames Bottomley SAS_DPRINTK("eh: device %llx LUN %x has the task\n", 3782908d778SJames Bottomley SAS_ADDR(dev->sas_addr), 3792908d778SJames Bottomley cmd->device->lun); 3802908d778SJames Bottomley 3812908d778SJames Bottomley if (i->dft->lldd_abort_task_set) 3822908d778SJames Bottomley res = i->dft->lldd_abort_task_set(dev, lun.scsi_lun); 3832908d778SJames Bottomley 3842908d778SJames Bottomley if (res == TMF_RESP_FUNC_FAILED) { 3852908d778SJames Bottomley if (i->dft->lldd_clear_task_set) 3862908d778SJames Bottomley res = i->dft->lldd_clear_task_set(dev, lun.scsi_lun); 3872908d778SJames Bottomley } 3882908d778SJames Bottomley 3892908d778SJames Bottomley if (res == TMF_RESP_FUNC_FAILED) { 3902908d778SJames Bottomley if (i->dft->lldd_lu_reset) 3912908d778SJames Bottomley res = i->dft->lldd_lu_reset(dev, lun.scsi_lun); 3922908d778SJames Bottomley } 3932908d778SJames Bottomley 3942908d778SJames Bottomley return res; 3952908d778SJames Bottomley } 3962908d778SJames Bottomley 3972908d778SJames Bottomley static int sas_recover_I_T(struct domain_device *dev) 3982908d778SJames Bottomley { 3992908d778SJames Bottomley int res = TMF_RESP_FUNC_FAILED; 4002908d778SJames Bottomley struct sas_internal *i = 4012908d778SJames Bottomley to_sas_internal(dev->port->ha->core.shost->transportt); 4022908d778SJames Bottomley 4032908d778SJames Bottomley SAS_DPRINTK("I_T nexus reset for dev %016llx\n", 4042908d778SJames Bottomley SAS_ADDR(dev->sas_addr)); 4052908d778SJames Bottomley 4062908d778SJames Bottomley if (i->dft->lldd_I_T_nexus_reset) 4072908d778SJames Bottomley res = i->dft->lldd_I_T_nexus_reset(dev); 4082908d778SJames Bottomley 4092908d778SJames Bottomley return res; 4102908d778SJames Bottomley } 4112908d778SJames Bottomley 412ad689233SDarrick J. Wong /* Find the sas_phy that's attached to this device */ 4135319578cSJames Bottomley struct sas_phy *sas_find_local_phy(struct domain_device *dev) 4143ebf6922SDarrick J. Wong { 415ad689233SDarrick J. Wong struct domain_device *pdev = dev->parent; 416ad689233SDarrick J. Wong struct ex_phy *exphy = NULL; 417ad689233SDarrick J. Wong int i; 4183ebf6922SDarrick J. Wong 419ad689233SDarrick J. Wong /* Directly attached device */ 420ad689233SDarrick J. Wong if (!pdev) 421ad689233SDarrick J. Wong return dev->port->phy; 4223ebf6922SDarrick J. Wong 423ad689233SDarrick J. Wong /* Otherwise look in the expander */ 424ad689233SDarrick J. Wong for (i = 0; i < pdev->ex_dev.num_phys; i++) 425ad689233SDarrick J. Wong if (!memcmp(dev->sas_addr, 426ad689233SDarrick J. Wong pdev->ex_dev.ex_phy[i].attached_sas_addr, 427ad689233SDarrick J. Wong SAS_ADDR_SIZE)) { 428ad689233SDarrick J. Wong exphy = &pdev->ex_dev.ex_phy[i]; 429ad689233SDarrick J. Wong break; 4303ebf6922SDarrick J. Wong } 4313ebf6922SDarrick J. Wong 432ad689233SDarrick J. Wong BUG_ON(!exphy); 433ad689233SDarrick J. Wong return exphy->phy; 434ad689233SDarrick J. Wong } 4355319578cSJames Bottomley EXPORT_SYMBOL_GPL(sas_find_local_phy); 436ad689233SDarrick J. Wong 437a9344e68SDarrick J. Wong /* Attempt to send a LUN reset message to a device */ 438ad689233SDarrick J. Wong int sas_eh_device_reset_handler(struct scsi_cmnd *cmd) 4392908d778SJames Bottomley { 440ad689233SDarrick J. Wong struct domain_device *dev = cmd_to_domain_dev(cmd); 441a9344e68SDarrick J. Wong struct sas_internal *i = 442a9344e68SDarrick J. Wong to_sas_internal(dev->port->ha->core.shost->transportt); 443a9344e68SDarrick J. Wong struct scsi_lun lun; 444a9344e68SDarrick J. Wong int res; 445a9344e68SDarrick J. Wong 446a9344e68SDarrick J. Wong int_to_scsilun(cmd->device->lun, &lun); 447a9344e68SDarrick J. Wong 448a9344e68SDarrick J. Wong if (!i->dft->lldd_lu_reset) 449a9344e68SDarrick J. Wong return FAILED; 450a9344e68SDarrick J. Wong 451a9344e68SDarrick J. Wong res = i->dft->lldd_lu_reset(dev, lun.scsi_lun); 452a9344e68SDarrick J. Wong if (res == TMF_RESP_FUNC_SUCC || res == TMF_RESP_FUNC_COMPLETE) 453a9344e68SDarrick J. Wong return SUCCESS; 454a9344e68SDarrick J. Wong 455a9344e68SDarrick J. Wong return FAILED; 456a9344e68SDarrick J. Wong } 457a9344e68SDarrick J. Wong 458a9344e68SDarrick J. Wong /* Attempt to send a phy (bus) reset */ 459a9344e68SDarrick J. Wong int sas_eh_bus_reset_handler(struct scsi_cmnd *cmd) 460a9344e68SDarrick J. Wong { 461a9344e68SDarrick J. Wong struct domain_device *dev = cmd_to_domain_dev(cmd); 4625319578cSJames Bottomley struct sas_phy *phy = sas_find_local_phy(dev); 463ad689233SDarrick J. Wong int res; 464ad689233SDarrick J. Wong 465ad689233SDarrick J. Wong res = sas_phy_reset(phy, 1); 466ad689233SDarrick J. Wong if (res) 467a9344e68SDarrick J. Wong SAS_DPRINTK("Bus reset of %s failed 0x%x\n", 468af5ca3f4SKay Sievers kobject_name(&phy->dev.kobj), 469ad689233SDarrick J. Wong res); 470ad689233SDarrick J. Wong if (res == TMF_RESP_FUNC_SUCC || res == TMF_RESP_FUNC_COMPLETE) 471ad689233SDarrick J. Wong return SUCCESS; 472ad689233SDarrick J. Wong 473ad689233SDarrick J. Wong return FAILED; 474ad689233SDarrick J. Wong } 475ad689233SDarrick J. Wong 476ad689233SDarrick J. Wong /* Try to reset a device */ 4778de3ef25SJames Bottomley static int try_to_reset_cmd_device(struct scsi_cmnd *cmd) 478ad689233SDarrick J. Wong { 479a9344e68SDarrick J. Wong int res; 4808de3ef25SJames Bottomley struct Scsi_Host *shost = cmd->device->host; 481ad689233SDarrick J. Wong 482a9344e68SDarrick J. Wong if (!shost->hostt->eh_device_reset_handler) 483a9344e68SDarrick J. Wong goto try_bus_reset; 484a9344e68SDarrick J. Wong 485a9344e68SDarrick J. Wong res = shost->hostt->eh_device_reset_handler(cmd); 486a9344e68SDarrick J. Wong if (res == SUCCESS) 487a9344e68SDarrick J. Wong return res; 488a9344e68SDarrick J. Wong 489a9344e68SDarrick J. Wong try_bus_reset: 490a9344e68SDarrick J. Wong if (shost->hostt->eh_bus_reset_handler) 491a9344e68SDarrick J. Wong return shost->hostt->eh_bus_reset_handler(cmd); 492a9344e68SDarrick J. Wong 493a9344e68SDarrick J. Wong return FAILED; 494ad689233SDarrick J. Wong } 495ad689233SDarrick J. Wong 496ad689233SDarrick J. Wong static int sas_eh_handle_sas_errors(struct Scsi_Host *shost, 497ad689233SDarrick J. Wong struct list_head *work_q, 498ad689233SDarrick J. Wong struct list_head *done_q) 499ad689233SDarrick J. Wong { 5002908d778SJames Bottomley struct scsi_cmnd *cmd, *n; 5012908d778SJames Bottomley enum task_disposition res = TASK_IS_DONE; 5023ebf6922SDarrick J. Wong int tmf_resp, need_reset; 5032908d778SJames Bottomley struct sas_internal *i = to_sas_internal(shost->transportt); 504ad689233SDarrick J. Wong unsigned long flags; 505ad689233SDarrick J. Wong struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost); 5062908d778SJames Bottomley 5072908d778SJames Bottomley Again: 508ad689233SDarrick J. Wong list_for_each_entry_safe(cmd, n, work_q, eh_entry) { 5092908d778SJames Bottomley struct sas_task *task = TO_SAS_TASK(cmd); 510f456393eSDarrick J. Wong 511ad689233SDarrick J. Wong if (!task) 512f456393eSDarrick J. Wong continue; 513ad689233SDarrick J. Wong 514ad689233SDarrick J. Wong list_del_init(&cmd->eh_entry); 5153ebf6922SDarrick J. Wong 5163ebf6922SDarrick J. Wong spin_lock_irqsave(&task->task_state_lock, flags); 5173ebf6922SDarrick J. Wong need_reset = task->task_state_flags & SAS_TASK_NEED_DEV_RESET; 5183ebf6922SDarrick J. Wong spin_unlock_irqrestore(&task->task_state_lock, flags); 5193ebf6922SDarrick J. Wong 5208de3ef25SJames Bottomley if (need_reset) { 5218de3ef25SJames Bottomley SAS_DPRINTK("%s: task 0x%p requests reset\n", 522cadbd4a5SHarvey Harrison __func__, task); 5238de3ef25SJames Bottomley goto reset; 5248de3ef25SJames Bottomley } 5258de3ef25SJames Bottomley 526f456393eSDarrick J. Wong SAS_DPRINTK("trying to find task 0x%p\n", task); 5272908d778SJames Bottomley res = sas_scsi_find_task(task); 5282908d778SJames Bottomley 5292908d778SJames Bottomley cmd->eh_eflags = 0; 5302908d778SJames Bottomley 5312908d778SJames Bottomley switch (res) { 5322908d778SJames Bottomley case TASK_IS_DONE: 533cadbd4a5SHarvey Harrison SAS_DPRINTK("%s: task 0x%p is done\n", __func__, 5342908d778SJames Bottomley task); 535a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 5362908d778SJames Bottomley continue; 5372908d778SJames Bottomley case TASK_IS_ABORTED: 5382908d778SJames Bottomley SAS_DPRINTK("%s: task 0x%p is aborted\n", 539cadbd4a5SHarvey Harrison __func__, task); 540a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 5412908d778SJames Bottomley continue; 5422908d778SJames Bottomley case TASK_IS_AT_LU: 5432908d778SJames Bottomley SAS_DPRINTK("task 0x%p is at LU: lu recover\n", task); 5448de3ef25SJames Bottomley reset: 5452908d778SJames Bottomley tmf_resp = sas_recover_lu(task->dev, cmd); 5462908d778SJames Bottomley if (tmf_resp == TMF_RESP_FUNC_COMPLETE) { 5472908d778SJames Bottomley SAS_DPRINTK("dev %016llx LU %x is " 5482908d778SJames Bottomley "recovered\n", 5492908d778SJames Bottomley SAS_ADDR(task->dev), 5502908d778SJames Bottomley cmd->device->lun); 551a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 552ad689233SDarrick J. Wong sas_scsi_clear_queue_lu(work_q, cmd); 5532908d778SJames Bottomley goto Again; 5542908d778SJames Bottomley } 5552908d778SJames Bottomley /* fallthrough */ 5562908d778SJames Bottomley case TASK_IS_NOT_AT_LU: 55702cd743bSDarrick J. Wong case TASK_ABORT_FAILED: 5582908d778SJames Bottomley SAS_DPRINTK("task 0x%p is not at LU: I_T recover\n", 5592908d778SJames Bottomley task); 5602908d778SJames Bottomley tmf_resp = sas_recover_I_T(task->dev); 5612908d778SJames Bottomley if (tmf_resp == TMF_RESP_FUNC_COMPLETE) { 5628de3ef25SJames Bottomley struct domain_device *dev = task->dev; 5632908d778SJames Bottomley SAS_DPRINTK("I_T %016llx recovered\n", 5642908d778SJames Bottomley SAS_ADDR(task->dev->sas_addr)); 565a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 5668de3ef25SJames Bottomley sas_scsi_clear_queue_I_T(work_q, dev); 5672908d778SJames Bottomley goto Again; 5682908d778SJames Bottomley } 5692908d778SJames Bottomley /* Hammer time :-) */ 5708de3ef25SJames Bottomley try_to_reset_cmd_device(cmd); 5712908d778SJames Bottomley if (i->dft->lldd_clear_nexus_port) { 5722908d778SJames Bottomley struct asd_sas_port *port = task->dev->port; 5732908d778SJames Bottomley SAS_DPRINTK("clearing nexus for port:%d\n", 5742908d778SJames Bottomley port->id); 5752908d778SJames Bottomley res = i->dft->lldd_clear_nexus_port(port); 5762908d778SJames Bottomley if (res == TMF_RESP_FUNC_COMPLETE) { 5772908d778SJames Bottomley SAS_DPRINTK("clear nexus port:%d " 5782908d778SJames Bottomley "succeeded\n", port->id); 579a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 580ad689233SDarrick J. Wong sas_scsi_clear_queue_port(work_q, 5812908d778SJames Bottomley port); 5822908d778SJames Bottomley goto Again; 5832908d778SJames Bottomley } 5842908d778SJames Bottomley } 5852908d778SJames Bottomley if (i->dft->lldd_clear_nexus_ha) { 5862908d778SJames Bottomley SAS_DPRINTK("clear nexus ha\n"); 5872908d778SJames Bottomley res = i->dft->lldd_clear_nexus_ha(ha); 5882908d778SJames Bottomley if (res == TMF_RESP_FUNC_COMPLETE) { 5892908d778SJames Bottomley SAS_DPRINTK("clear nexus ha " 5902908d778SJames Bottomley "succeeded\n"); 591a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 592a8e14fecSJames Bottomley goto clear_q; 5932908d778SJames Bottomley } 5942908d778SJames Bottomley } 5952908d778SJames Bottomley /* If we are here -- this means that no amount 5962908d778SJames Bottomley * of effort could recover from errors. Quite 5972908d778SJames Bottomley * possibly the HA just disappeared. 5982908d778SJames Bottomley */ 5992908d778SJames Bottomley SAS_DPRINTK("error from device %llx, LUN %x " 6002908d778SJames Bottomley "couldn't be recovered in any way\n", 6012908d778SJames Bottomley SAS_ADDR(task->dev->sas_addr), 6022908d778SJames Bottomley cmd->device->lun); 6032908d778SJames Bottomley 604a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 6052908d778SJames Bottomley goto clear_q; 6062908d778SJames Bottomley } 6072908d778SJames Bottomley } 608ad689233SDarrick J. Wong return list_empty(work_q); 6092908d778SJames Bottomley clear_q: 610cadbd4a5SHarvey Harrison SAS_DPRINTK("--- Exit %s -- clear_q\n", __func__); 611a8e14fecSJames Bottomley list_for_each_entry_safe(cmd, n, work_q, eh_entry) 612a8e14fecSJames Bottomley sas_eh_finish_cmd(cmd); 613a8e14fecSJames Bottomley 614ad689233SDarrick J. Wong return list_empty(work_q); 615ad689233SDarrick J. Wong } 616ad689233SDarrick J. Wong 617ad689233SDarrick J. Wong void sas_scsi_recover_host(struct Scsi_Host *shost) 618ad689233SDarrick J. Wong { 619ad689233SDarrick J. Wong struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost); 620ad689233SDarrick J. Wong unsigned long flags; 621ad689233SDarrick J. Wong LIST_HEAD(eh_work_q); 622ad689233SDarrick J. Wong 623ad689233SDarrick J. Wong spin_lock_irqsave(shost->host_lock, flags); 624ad689233SDarrick J. Wong list_splice_init(&shost->eh_cmd_q, &eh_work_q); 6259ee91f7fSJames Bottomley shost->host_eh_scheduled = 0; 626ad689233SDarrick J. Wong spin_unlock_irqrestore(shost->host_lock, flags); 627ad689233SDarrick J. Wong 628cadbd4a5SHarvey Harrison SAS_DPRINTK("Enter %s\n", __func__); 629ad689233SDarrick J. Wong /* 630ad689233SDarrick J. Wong * Deal with commands that still have SAS tasks (i.e. they didn't 631ad689233SDarrick J. Wong * complete via the normal sas_task completion mechanism) 632ad689233SDarrick J. Wong */ 633ad689233SDarrick J. Wong if (sas_eh_handle_sas_errors(shost, &eh_work_q, &ha->eh_done_q)) 634ad689233SDarrick J. Wong goto out; 635ad689233SDarrick J. Wong 636ad689233SDarrick J. Wong /* 637ad689233SDarrick J. Wong * Now deal with SCSI commands that completed ok but have a an error 638ad689233SDarrick J. Wong * code (and hopefully sense data) attached. This is roughly what 639ad689233SDarrick J. Wong * scsi_unjam_host does, but we skip scsi_eh_abort_cmds because any 640ad689233SDarrick J. Wong * command we see here has no sas_task and is thus unknown to the HA. 641ad689233SDarrick J. Wong */ 64200dd4998SJames Bottomley if (!sas_ata_eh(shost, &eh_work_q, &ha->eh_done_q)) 643ad689233SDarrick J. Wong if (!scsi_eh_get_sense(&eh_work_q, &ha->eh_done_q)) 644ad689233SDarrick J. Wong scsi_eh_ready_devs(shost, &eh_work_q, &ha->eh_done_q); 645ad689233SDarrick J. Wong 646ad689233SDarrick J. Wong out: 64700dd4998SJames Bottomley /* now link into libata eh --- if we have any ata devices */ 64800dd4998SJames Bottomley sas_ata_strategy_handler(shost); 64900dd4998SJames Bottomley 650ad689233SDarrick J. Wong scsi_eh_flush_done_q(&ha->eh_done_q); 65100dd4998SJames Bottomley 652cadbd4a5SHarvey Harrison SAS_DPRINTK("--- Exit %s\n", __func__); 653ad689233SDarrick J. Wong return; 6542908d778SJames Bottomley } 6552908d778SJames Bottomley 656242f9dcbSJens Axboe enum blk_eh_timer_return sas_scsi_timed_out(struct scsi_cmnd *cmd) 6572908d778SJames Bottomley { 6582908d778SJames Bottomley struct sas_task *task = TO_SAS_TASK(cmd); 6592908d778SJames Bottomley unsigned long flags; 66000dd4998SJames Bottomley enum blk_eh_timer_return rtn; 66100dd4998SJames Bottomley 66200dd4998SJames Bottomley if (sas_ata_timed_out(cmd, task, &rtn)) 66300dd4998SJames Bottomley return rtn; 6642908d778SJames Bottomley 6652908d778SJames Bottomley if (!task) { 666242f9dcbSJens Axboe cmd->request->timeout /= 2; 6676d4dcd4dSDarrick J. Wong SAS_DPRINTK("command 0x%p, task 0x%p, gone: %s\n", 668242f9dcbSJens Axboe cmd, task, (cmd->request->timeout ? 669242f9dcbSJens Axboe "BLK_EH_RESET_TIMER" : "BLK_EH_NOT_HANDLED")); 670242f9dcbSJens Axboe if (!cmd->request->timeout) 671242f9dcbSJens Axboe return BLK_EH_NOT_HANDLED; 672242f9dcbSJens Axboe return BLK_EH_RESET_TIMER; 6732908d778SJames Bottomley } 6742908d778SJames Bottomley 6752908d778SJames Bottomley spin_lock_irqsave(&task->task_state_lock, flags); 676396819fbSDarrick J. Wong BUG_ON(task->task_state_flags & SAS_TASK_STATE_ABORTED); 6772908d778SJames Bottomley if (task->task_state_flags & SAS_TASK_STATE_DONE) { 6782908d778SJames Bottomley spin_unlock_irqrestore(&task->task_state_lock, flags); 679242f9dcbSJens Axboe SAS_DPRINTK("command 0x%p, task 0x%p, timed out: " 680242f9dcbSJens Axboe "BLK_EH_HANDLED\n", cmd, task); 681242f9dcbSJens Axboe return BLK_EH_HANDLED; 6822908d778SJames Bottomley } 683b218a0d8SDarrick J. Wong if (!(task->task_state_flags & SAS_TASK_AT_INITIATOR)) { 684b218a0d8SDarrick J. Wong spin_unlock_irqrestore(&task->task_state_lock, flags); 685b218a0d8SDarrick J. Wong SAS_DPRINTK("command 0x%p, task 0x%p, not at initiator: " 686242f9dcbSJens Axboe "BLK_EH_RESET_TIMER\n", 687b218a0d8SDarrick J. Wong cmd, task); 688242f9dcbSJens Axboe return BLK_EH_RESET_TIMER; 689b218a0d8SDarrick J. Wong } 6902908d778SJames Bottomley task->task_state_flags |= SAS_TASK_STATE_ABORTED; 6912908d778SJames Bottomley spin_unlock_irqrestore(&task->task_state_lock, flags); 6922908d778SJames Bottomley 693242f9dcbSJens Axboe SAS_DPRINTK("command 0x%p, task 0x%p, timed out: BLK_EH_NOT_HANDLED\n", 6942908d778SJames Bottomley cmd, task); 6952908d778SJames Bottomley 696242f9dcbSJens Axboe return BLK_EH_NOT_HANDLED; 6972908d778SJames Bottomley } 6982908d778SJames Bottomley 699fa1c1e8fSDarrick J. Wong int sas_ioctl(struct scsi_device *sdev, int cmd, void __user *arg) 700fa1c1e8fSDarrick J. Wong { 701fa1c1e8fSDarrick J. Wong struct domain_device *dev = sdev_to_domain_dev(sdev); 702fa1c1e8fSDarrick J. Wong 703fa1c1e8fSDarrick J. Wong if (dev_is_sata(dev)) 70494be9a58SJeff Garzik return ata_sas_scsi_ioctl(dev->sata_dev.ap, sdev, cmd, arg); 705fa1c1e8fSDarrick J. Wong 706fa1c1e8fSDarrick J. Wong return -EINVAL; 707fa1c1e8fSDarrick J. Wong } 708fa1c1e8fSDarrick J. Wong 7092908d778SJames Bottomley struct domain_device *sas_find_dev_by_rphy(struct sas_rphy *rphy) 7102908d778SJames Bottomley { 7112908d778SJames Bottomley struct Scsi_Host *shost = dev_to_shost(rphy->dev.parent); 7122908d778SJames Bottomley struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost); 7132908d778SJames Bottomley struct domain_device *found_dev = NULL; 7142908d778SJames Bottomley int i; 715980fa2f9SDarrick J. Wong unsigned long flags; 7162908d778SJames Bottomley 717980fa2f9SDarrick J. Wong spin_lock_irqsave(&ha->phy_port_lock, flags); 7182908d778SJames Bottomley for (i = 0; i < ha->num_phys; i++) { 7192908d778SJames Bottomley struct asd_sas_port *port = ha->sas_port[i]; 7202908d778SJames Bottomley struct domain_device *dev; 7212908d778SJames Bottomley 7222908d778SJames Bottomley spin_lock(&port->dev_list_lock); 7232908d778SJames Bottomley list_for_each_entry(dev, &port->dev_list, dev_list_node) { 7242908d778SJames Bottomley if (rphy == dev->rphy) { 7252908d778SJames Bottomley found_dev = dev; 7262908d778SJames Bottomley spin_unlock(&port->dev_list_lock); 7272908d778SJames Bottomley goto found; 7282908d778SJames Bottomley } 7292908d778SJames Bottomley } 7302908d778SJames Bottomley spin_unlock(&port->dev_list_lock); 7312908d778SJames Bottomley } 7322908d778SJames Bottomley found: 733980fa2f9SDarrick J. Wong spin_unlock_irqrestore(&ha->phy_port_lock, flags); 7342908d778SJames Bottomley 7352908d778SJames Bottomley return found_dev; 7362908d778SJames Bottomley } 7372908d778SJames Bottomley 7382908d778SJames Bottomley int sas_target_alloc(struct scsi_target *starget) 7392908d778SJames Bottomley { 740735f7d2fSDan Williams struct sas_rphy *rphy = dev_to_rphy(starget->dev.parent); 741735f7d2fSDan Williams struct domain_device *found_dev = sas_find_dev_by_rphy(rphy); 742338ec570SDarrick J. Wong int res; 7432908d778SJames Bottomley 7442908d778SJames Bottomley if (!found_dev) 7452908d778SJames Bottomley return -ENODEV; 7462908d778SJames Bottomley 747fa1c1e8fSDarrick J. Wong if (dev_is_sata(found_dev)) { 748338ec570SDarrick J. Wong res = sas_ata_init_host_and_port(found_dev, starget); 749338ec570SDarrick J. Wong if (res) 750338ec570SDarrick J. Wong return res; 751fa1c1e8fSDarrick J. Wong } 752fa1c1e8fSDarrick J. Wong 753735f7d2fSDan Williams kref_get(&found_dev->kref); 7542908d778SJames Bottomley starget->hostdata = found_dev; 7552908d778SJames Bottomley return 0; 7562908d778SJames Bottomley } 7572908d778SJames Bottomley 75897a1420dSDan Williams #define SAS_DEF_QD 256 7592908d778SJames Bottomley 7602908d778SJames Bottomley int sas_slave_configure(struct scsi_device *scsi_dev) 7612908d778SJames Bottomley { 7622908d778SJames Bottomley struct domain_device *dev = sdev_to_domain_dev(scsi_dev); 7632908d778SJames Bottomley struct sas_ha_struct *sas_ha; 7642908d778SJames Bottomley 7652908d778SJames Bottomley BUG_ON(dev->rphy->identify.device_type != SAS_END_DEVICE); 7662908d778SJames Bottomley 767fa1c1e8fSDarrick J. Wong if (dev_is_sata(dev)) { 768fa1c1e8fSDarrick J. Wong ata_sas_slave_configure(scsi_dev, dev->sata_dev.ap); 769fa1c1e8fSDarrick J. Wong return 0; 770fa1c1e8fSDarrick J. Wong } 771fa1c1e8fSDarrick J. Wong 7722908d778SJames Bottomley sas_ha = dev->port->ha; 7732908d778SJames Bottomley 7742908d778SJames Bottomley sas_read_port_mode_page(scsi_dev); 7752908d778SJames Bottomley 7762908d778SJames Bottomley if (scsi_dev->tagged_supported) { 7772908d778SJames Bottomley scsi_set_tag_type(scsi_dev, MSG_SIMPLE_TAG); 7782908d778SJames Bottomley scsi_activate_tcq(scsi_dev, SAS_DEF_QD); 7792908d778SJames Bottomley } else { 7802908d778SJames Bottomley SAS_DPRINTK("device %llx, LUN %x doesn't support " 7812908d778SJames Bottomley "TCQ\n", SAS_ADDR(dev->sas_addr), 7822908d778SJames Bottomley scsi_dev->lun); 7832908d778SJames Bottomley scsi_dev->tagged_supported = 0; 7842908d778SJames Bottomley scsi_set_tag_type(scsi_dev, 0); 7852908d778SJames Bottomley scsi_deactivate_tcq(scsi_dev, 1); 7862908d778SJames Bottomley } 7872908d778SJames Bottomley 788f27708fcSDarrick J. Wong scsi_dev->allow_restart = 1; 789f27708fcSDarrick J. Wong 7902908d778SJames Bottomley return 0; 7912908d778SJames Bottomley } 7922908d778SJames Bottomley 79397a1420dSDan Williams int sas_change_queue_depth(struct scsi_device *sdev, int depth, int reason) 7942908d778SJames Bottomley { 79597a1420dSDan Williams struct domain_device *dev = sdev_to_domain_dev(sdev); 7962908d778SJames Bottomley 797f6e67035SDan Williams if (dev_is_sata(dev)) 79897a1420dSDan Williams return __ata_change_queue_depth(dev->sata_dev.ap, sdev, depth, 79997a1420dSDan Williams reason); 800f6e67035SDan Williams 80197a1420dSDan Williams switch (reason) { 80297a1420dSDan Williams case SCSI_QDEPTH_DEFAULT: 80397a1420dSDan Williams case SCSI_QDEPTH_RAMP_UP: 80497a1420dSDan Williams if (!sdev->tagged_supported) 80597a1420dSDan Williams depth = 1; 80697a1420dSDan Williams scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth); 80797a1420dSDan Williams break; 80897a1420dSDan Williams case SCSI_QDEPTH_QFULL: 80997a1420dSDan Williams scsi_track_queue_full(sdev, depth); 81097a1420dSDan Williams break; 81197a1420dSDan Williams default: 812e881a172SMike Christie return -EOPNOTSUPP; 8132908d778SJames Bottomley } 8142908d778SJames Bottomley 81597a1420dSDan Williams return depth; 8162908d778SJames Bottomley } 8172908d778SJames Bottomley 8182908d778SJames Bottomley int sas_change_queue_type(struct scsi_device *scsi_dev, int qt) 8192908d778SJames Bottomley { 820f6e67035SDan Williams struct domain_device *dev = sdev_to_domain_dev(scsi_dev); 821f6e67035SDan Williams 822f6e67035SDan Williams if (dev_is_sata(dev)) 823f6e67035SDan Williams return -EINVAL; 824f6e67035SDan Williams 8252908d778SJames Bottomley if (!scsi_dev->tagged_supported) 8262908d778SJames Bottomley return 0; 8272908d778SJames Bottomley 8282908d778SJames Bottomley scsi_deactivate_tcq(scsi_dev, 1); 8292908d778SJames Bottomley 8302908d778SJames Bottomley scsi_set_tag_type(scsi_dev, qt); 8312908d778SJames Bottomley scsi_activate_tcq(scsi_dev, scsi_dev->queue_depth); 8322908d778SJames Bottomley 8332908d778SJames Bottomley return qt; 8342908d778SJames Bottomley } 8352908d778SJames Bottomley 8362908d778SJames Bottomley int sas_bios_param(struct scsi_device *scsi_dev, 8372908d778SJames Bottomley struct block_device *bdev, 8382908d778SJames Bottomley sector_t capacity, int *hsc) 8392908d778SJames Bottomley { 8402908d778SJames Bottomley hsc[0] = 255; 8412908d778SJames Bottomley hsc[1] = 63; 8422908d778SJames Bottomley sector_div(capacity, 255*63); 8432908d778SJames Bottomley hsc[2] = capacity; 8442908d778SJames Bottomley 8452908d778SJames Bottomley return 0; 8462908d778SJames Bottomley } 8472908d778SJames Bottomley 8482908d778SJames Bottomley /* ---------- Task Collector Thread implementation ---------- */ 8492908d778SJames Bottomley 8502908d778SJames Bottomley static void sas_queue(struct sas_ha_struct *sas_ha) 8512908d778SJames Bottomley { 8522908d778SJames Bottomley struct scsi_core *core = &sas_ha->core; 8532908d778SJames Bottomley unsigned long flags; 8542908d778SJames Bottomley LIST_HEAD(q); 8552908d778SJames Bottomley int can_queue; 8562908d778SJames Bottomley int res; 8572908d778SJames Bottomley struct sas_internal *i = to_sas_internal(core->shost->transportt); 8582908d778SJames Bottomley 8592908d778SJames Bottomley spin_lock_irqsave(&core->task_queue_lock, flags); 860d7a54e30SChristoph Hellwig while (!kthread_should_stop() && 8612908d778SJames Bottomley !list_empty(&core->task_queue)) { 8622908d778SJames Bottomley 8632908d778SJames Bottomley can_queue = sas_ha->lldd_queue_size - core->task_queue_size; 8642908d778SJames Bottomley if (can_queue >= 0) { 8652908d778SJames Bottomley can_queue = core->task_queue_size; 8662908d778SJames Bottomley list_splice_init(&core->task_queue, &q); 8672908d778SJames Bottomley } else { 8682908d778SJames Bottomley struct list_head *a, *n; 8692908d778SJames Bottomley 8702908d778SJames Bottomley can_queue = sas_ha->lldd_queue_size; 8712908d778SJames Bottomley list_for_each_safe(a, n, &core->task_queue) { 8722908d778SJames Bottomley list_move_tail(a, &q); 8732908d778SJames Bottomley if (--can_queue == 0) 8742908d778SJames Bottomley break; 8752908d778SJames Bottomley } 8762908d778SJames Bottomley can_queue = sas_ha->lldd_queue_size; 8772908d778SJames Bottomley } 8782908d778SJames Bottomley core->task_queue_size -= can_queue; 8792908d778SJames Bottomley spin_unlock_irqrestore(&core->task_queue_lock, flags); 8802908d778SJames Bottomley { 8812908d778SJames Bottomley struct sas_task *task = list_entry(q.next, 8822908d778SJames Bottomley struct sas_task, 8832908d778SJames Bottomley list); 8842908d778SJames Bottomley list_del_init(&q); 8852908d778SJames Bottomley res = i->dft->lldd_execute_task(task, can_queue, 8862908d778SJames Bottomley GFP_KERNEL); 8872908d778SJames Bottomley if (unlikely(res)) 8882908d778SJames Bottomley __list_add(&q, task->list.prev, &task->list); 8892908d778SJames Bottomley } 8902908d778SJames Bottomley spin_lock_irqsave(&core->task_queue_lock, flags); 8912908d778SJames Bottomley if (res) { 8922908d778SJames Bottomley list_splice_init(&q, &core->task_queue); /*at head*/ 8932908d778SJames Bottomley core->task_queue_size += can_queue; 8942908d778SJames Bottomley } 8952908d778SJames Bottomley } 8962908d778SJames Bottomley spin_unlock_irqrestore(&core->task_queue_lock, flags); 8972908d778SJames Bottomley } 8982908d778SJames Bottomley 8992908d778SJames Bottomley /** 9002908d778SJames Bottomley * sas_queue_thread -- The Task Collector thread 9012908d778SJames Bottomley * @_sas_ha: pointer to struct sas_ha 9022908d778SJames Bottomley */ 9032908d778SJames Bottomley static int sas_queue_thread(void *_sas_ha) 9042908d778SJames Bottomley { 9052908d778SJames Bottomley struct sas_ha_struct *sas_ha = _sas_ha; 9062908d778SJames Bottomley 9072908d778SJames Bottomley while (1) { 908d7a54e30SChristoph Hellwig set_current_state(TASK_INTERRUPTIBLE); 909d7a54e30SChristoph Hellwig schedule(); 9102908d778SJames Bottomley sas_queue(sas_ha); 911d7a54e30SChristoph Hellwig if (kthread_should_stop()) 9122908d778SJames Bottomley break; 9132908d778SJames Bottomley } 9142908d778SJames Bottomley 9152908d778SJames Bottomley return 0; 9162908d778SJames Bottomley } 9172908d778SJames Bottomley 9182908d778SJames Bottomley int sas_init_queue(struct sas_ha_struct *sas_ha) 9192908d778SJames Bottomley { 9202908d778SJames Bottomley struct scsi_core *core = &sas_ha->core; 9212908d778SJames Bottomley 9222908d778SJames Bottomley spin_lock_init(&core->task_queue_lock); 9232908d778SJames Bottomley core->task_queue_size = 0; 9242908d778SJames Bottomley INIT_LIST_HEAD(&core->task_queue); 9252908d778SJames Bottomley 926d7a54e30SChristoph Hellwig core->queue_thread = kthread_run(sas_queue_thread, sas_ha, 927d7a54e30SChristoph Hellwig "sas_queue_%d", core->shost->host_no); 928d7a54e30SChristoph Hellwig if (IS_ERR(core->queue_thread)) 929d7a54e30SChristoph Hellwig return PTR_ERR(core->queue_thread); 930d7a54e30SChristoph Hellwig return 0; 9312908d778SJames Bottomley } 9322908d778SJames Bottomley 9332908d778SJames Bottomley void sas_shutdown_queue(struct sas_ha_struct *sas_ha) 9342908d778SJames Bottomley { 9352908d778SJames Bottomley unsigned long flags; 9362908d778SJames Bottomley struct scsi_core *core = &sas_ha->core; 9372908d778SJames Bottomley struct sas_task *task, *n; 9382908d778SJames Bottomley 939d7a54e30SChristoph Hellwig kthread_stop(core->queue_thread); 9402908d778SJames Bottomley 9412908d778SJames Bottomley if (!list_empty(&core->task_queue)) 9422908d778SJames Bottomley SAS_DPRINTK("HA: %llx: scsi core task queue is NOT empty!?\n", 9432908d778SJames Bottomley SAS_ADDR(sas_ha->sas_addr)); 9442908d778SJames Bottomley 9452908d778SJames Bottomley spin_lock_irqsave(&core->task_queue_lock, flags); 9462908d778SJames Bottomley list_for_each_entry_safe(task, n, &core->task_queue, list) { 9472908d778SJames Bottomley struct scsi_cmnd *cmd = task->uldd_task; 9482908d778SJames Bottomley 9492908d778SJames Bottomley list_del_init(&task->list); 9502908d778SJames Bottomley 9512908d778SJames Bottomley ASSIGN_SAS_TASK(cmd, NULL); 9522908d778SJames Bottomley sas_free_task(task); 9532908d778SJames Bottomley cmd->result = DID_ABORT << 16; 9542908d778SJames Bottomley cmd->scsi_done(cmd); 9552908d778SJames Bottomley } 9562908d778SJames Bottomley spin_unlock_irqrestore(&core->task_queue_lock, flags); 9572908d778SJames Bottomley } 9582908d778SJames Bottomley 959396819fbSDarrick J. Wong /* 960396819fbSDarrick J. Wong * Call the LLDD task abort routine directly. This function is intended for 961396819fbSDarrick J. Wong * use by upper layers that need to tell the LLDD to abort a task. 962396819fbSDarrick J. Wong */ 963396819fbSDarrick J. Wong int __sas_task_abort(struct sas_task *task) 96479a5eb60SDarrick J. Wong { 96579a5eb60SDarrick J. Wong struct sas_internal *si = 96679a5eb60SDarrick J. Wong to_sas_internal(task->dev->port->ha->core.shost->transportt); 96779a5eb60SDarrick J. Wong unsigned long flags; 96879a5eb60SDarrick J. Wong int res; 96979a5eb60SDarrick J. Wong 97079a5eb60SDarrick J. Wong spin_lock_irqsave(&task->task_state_lock, flags); 971396819fbSDarrick J. Wong if (task->task_state_flags & SAS_TASK_STATE_ABORTED || 972396819fbSDarrick J. Wong task->task_state_flags & SAS_TASK_STATE_DONE) { 97379a5eb60SDarrick J. Wong spin_unlock_irqrestore(&task->task_state_lock, flags); 974cadbd4a5SHarvey Harrison SAS_DPRINTK("%s: Task %p already finished.\n", __func__, 97579a5eb60SDarrick J. Wong task); 97679a5eb60SDarrick J. Wong return 0; 97779a5eb60SDarrick J. Wong } 97879a5eb60SDarrick J. Wong task->task_state_flags |= SAS_TASK_STATE_ABORTED; 97979a5eb60SDarrick J. Wong spin_unlock_irqrestore(&task->task_state_lock, flags); 98079a5eb60SDarrick J. Wong 98179a5eb60SDarrick J. Wong if (!si->dft->lldd_abort_task) 98279a5eb60SDarrick J. Wong return -ENODEV; 98379a5eb60SDarrick J. Wong 98479a5eb60SDarrick J. Wong res = si->dft->lldd_abort_task(task); 985396819fbSDarrick J. Wong 986396819fbSDarrick J. Wong spin_lock_irqsave(&task->task_state_lock, flags); 98779a5eb60SDarrick J. Wong if ((task->task_state_flags & SAS_TASK_STATE_DONE) || 98879a5eb60SDarrick J. Wong (res == TMF_RESP_FUNC_COMPLETE)) 98979a5eb60SDarrick J. Wong { 990396819fbSDarrick J. Wong spin_unlock_irqrestore(&task->task_state_lock, flags); 99179a5eb60SDarrick J. Wong task->task_done(task); 99279a5eb60SDarrick J. Wong return 0; 99379a5eb60SDarrick J. Wong } 99479a5eb60SDarrick J. Wong 99579a5eb60SDarrick J. Wong if (!(task->task_state_flags & SAS_TASK_STATE_DONE)) 99679a5eb60SDarrick J. Wong task->task_state_flags &= ~SAS_TASK_STATE_ABORTED; 99779a5eb60SDarrick J. Wong spin_unlock_irqrestore(&task->task_state_lock, flags); 99879a5eb60SDarrick J. Wong 99979a5eb60SDarrick J. Wong return -EAGAIN; 100079a5eb60SDarrick J. Wong } 100179a5eb60SDarrick J. Wong 1002396819fbSDarrick J. Wong /* 1003396819fbSDarrick J. Wong * Tell an upper layer that it needs to initiate an abort for a given task. 1004396819fbSDarrick J. Wong * This should only ever be called by an LLDD. 1005396819fbSDarrick J. Wong */ 1006396819fbSDarrick J. Wong void sas_task_abort(struct sas_task *task) 100779a5eb60SDarrick J. Wong { 1008396819fbSDarrick J. Wong struct scsi_cmnd *sc = task->uldd_task; 100979a5eb60SDarrick J. Wong 1010396819fbSDarrick J. Wong /* Escape for libsas internal commands */ 1011396819fbSDarrick J. Wong if (!sc) { 1012396819fbSDarrick J. Wong if (!del_timer(&task->timer)) 101379a5eb60SDarrick J. Wong return; 1014396819fbSDarrick J. Wong task->timer.function(task->timer.data); 1015396819fbSDarrick J. Wong return; 1016396819fbSDarrick J. Wong } 101779a5eb60SDarrick J. Wong 10183a2755afSDarrick J. Wong if (dev_is_sata(task->dev)) { 10193a2755afSDarrick J. Wong sas_ata_task_abort(task); 10201b4d0d8eSJames Bottomley } else { 10211b4d0d8eSJames Bottomley struct request_queue *q = sc->device->request_queue; 10221b4d0d8eSJames Bottomley unsigned long flags; 10233a2755afSDarrick J. Wong 102470b25f89STejun Heo spin_lock_irqsave(q->queue_lock, flags); 1025242f9dcbSJens Axboe blk_abort_request(sc->request); 102670b25f89STejun Heo spin_unlock_irqrestore(q->queue_lock, flags); 1027396819fbSDarrick J. Wong scsi_schedule_eh(sc->device->host); 102879a5eb60SDarrick J. Wong } 10291b4d0d8eSJames Bottomley } 103079a5eb60SDarrick J. Wong 1031fa1c1e8fSDarrick J. Wong int sas_slave_alloc(struct scsi_device *scsi_dev) 1032fa1c1e8fSDarrick J. Wong { 1033fa1c1e8fSDarrick J. Wong struct domain_device *dev = sdev_to_domain_dev(scsi_dev); 1034fa1c1e8fSDarrick J. Wong 1035fa1c1e8fSDarrick J. Wong if (dev_is_sata(dev)) 1036fa1c1e8fSDarrick J. Wong return ata_sas_port_init(dev->sata_dev.ap); 1037fa1c1e8fSDarrick J. Wong 1038fa1c1e8fSDarrick J. Wong return 0; 1039fa1c1e8fSDarrick J. Wong } 1040fa1c1e8fSDarrick J. Wong 1041fa1c1e8fSDarrick J. Wong void sas_target_destroy(struct scsi_target *starget) 1042fa1c1e8fSDarrick J. Wong { 1043735f7d2fSDan Williams struct domain_device *found_dev = starget->hostdata; 1044fa1c1e8fSDarrick J. Wong 1045fa1c1e8fSDarrick J. Wong if (!found_dev) 1046fa1c1e8fSDarrick J. Wong return; 1047fa1c1e8fSDarrick J. Wong 1048fa1c1e8fSDarrick J. Wong if (dev_is_sata(found_dev)) 1049fa1c1e8fSDarrick J. Wong ata_sas_port_destroy(found_dev->sata_dev.ap); 1050fa1c1e8fSDarrick J. Wong 1051735f7d2fSDan Williams starget->hostdata = NULL; 1052735f7d2fSDan Williams sas_put_device(found_dev); 1053fa1c1e8fSDarrick J. Wong } 1054fa1c1e8fSDarrick J. Wong 105545e6cdf4SDarrick J. Wong static void sas_parse_addr(u8 *sas_addr, const char *p) 105645e6cdf4SDarrick J. Wong { 105745e6cdf4SDarrick J. Wong int i; 105845e6cdf4SDarrick J. Wong for (i = 0; i < SAS_ADDR_SIZE; i++) { 105945e6cdf4SDarrick J. Wong u8 h, l; 106045e6cdf4SDarrick J. Wong if (!*p) 106145e6cdf4SDarrick J. Wong break; 106245e6cdf4SDarrick J. Wong h = isdigit(*p) ? *p-'0' : toupper(*p)-'A'+10; 106345e6cdf4SDarrick J. Wong p++; 106445e6cdf4SDarrick J. Wong l = isdigit(*p) ? *p-'0' : toupper(*p)-'A'+10; 106545e6cdf4SDarrick J. Wong p++; 106645e6cdf4SDarrick J. Wong sas_addr[i] = (h<<4) | l; 106745e6cdf4SDarrick J. Wong } 106845e6cdf4SDarrick J. Wong } 106945e6cdf4SDarrick J. Wong 107045e6cdf4SDarrick J. Wong #define SAS_STRING_ADDR_SIZE 16 107145e6cdf4SDarrick J. Wong 107245e6cdf4SDarrick J. Wong int sas_request_addr(struct Scsi_Host *shost, u8 *addr) 107345e6cdf4SDarrick J. Wong { 107445e6cdf4SDarrick J. Wong int res; 107545e6cdf4SDarrick J. Wong const struct firmware *fw; 107645e6cdf4SDarrick J. Wong 107745e6cdf4SDarrick J. Wong res = request_firmware(&fw, "sas_addr", &shost->shost_gendev); 107845e6cdf4SDarrick J. Wong if (res) 107945e6cdf4SDarrick J. Wong return res; 108045e6cdf4SDarrick J. Wong 108145e6cdf4SDarrick J. Wong if (fw->size < SAS_STRING_ADDR_SIZE) { 108245e6cdf4SDarrick J. Wong res = -ENODEV; 108345e6cdf4SDarrick J. Wong goto out; 108445e6cdf4SDarrick J. Wong } 108545e6cdf4SDarrick J. Wong 108645e6cdf4SDarrick J. Wong sas_parse_addr(addr, fw->data); 108745e6cdf4SDarrick J. Wong 108845e6cdf4SDarrick J. Wong out: 108945e6cdf4SDarrick J. Wong release_firmware(fw); 109045e6cdf4SDarrick J. Wong return res; 109145e6cdf4SDarrick J. Wong } 109245e6cdf4SDarrick J. Wong EXPORT_SYMBOL_GPL(sas_request_addr); 109345e6cdf4SDarrick J. Wong 10942908d778SJames Bottomley EXPORT_SYMBOL_GPL(sas_queuecommand); 10952908d778SJames Bottomley EXPORT_SYMBOL_GPL(sas_target_alloc); 10962908d778SJames Bottomley EXPORT_SYMBOL_GPL(sas_slave_configure); 10972908d778SJames Bottomley EXPORT_SYMBOL_GPL(sas_change_queue_depth); 10982908d778SJames Bottomley EXPORT_SYMBOL_GPL(sas_change_queue_type); 10992908d778SJames Bottomley EXPORT_SYMBOL_GPL(sas_bios_param); 1100396819fbSDarrick J. Wong EXPORT_SYMBOL_GPL(__sas_task_abort); 110179a5eb60SDarrick J. Wong EXPORT_SYMBOL_GPL(sas_task_abort); 1102dea22214SDarrick J. Wong EXPORT_SYMBOL_GPL(sas_phy_reset); 1103acbf167dSDarrick J. Wong EXPORT_SYMBOL_GPL(sas_phy_enable); 1104ad689233SDarrick J. Wong EXPORT_SYMBOL_GPL(sas_eh_device_reset_handler); 1105a9344e68SDarrick J. Wong EXPORT_SYMBOL_GPL(sas_eh_bus_reset_handler); 1106fa1c1e8fSDarrick J. Wong EXPORT_SYMBOL_GPL(sas_slave_alloc); 1107fa1c1e8fSDarrick J. Wong EXPORT_SYMBOL_GPL(sas_target_destroy); 1108fa1c1e8fSDarrick J. Wong EXPORT_SYMBOL_GPL(sas_ioctl); 1109