sas_ata.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863
  1. /*
  2. * Support for SATA devices on Serial Attached SCSI (SAS) controllers
  3. *
  4. * Copyright (C) 2006 IBM Corporation
  5. *
  6. * Written by: Darrick J. Wong <djwong@us.ibm.com>, IBM Corporation
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of the
  11. * License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. * USA
  22. */
  23. #include <linux/scatterlist.h>
  24. #include <linux/slab.h>
  25. #include <linux/async.h>
  26. #include <linux/export.h>
  27. #include <scsi/sas_ata.h>
  28. #include "sas_internal.h"
  29. #include <scsi/scsi_host.h>
  30. #include <scsi/scsi_device.h>
  31. #include <scsi/scsi_tcq.h>
  32. #include <scsi/scsi.h>
  33. #include <scsi/scsi_transport.h>
  34. #include <scsi/scsi_transport_sas.h>
  35. #include "../scsi_sas_internal.h"
  36. #include "../scsi_transport_api.h"
  37. #include <scsi/scsi_eh.h>
  38. static enum ata_completion_errors sas_to_ata_err(struct task_status_struct *ts)
  39. {
  40. /* Cheesy attempt to translate SAS errors into ATA. Hah! */
  41. /* transport error */
  42. if (ts->resp == SAS_TASK_UNDELIVERED)
  43. return AC_ERR_ATA_BUS;
  44. /* ts->resp == SAS_TASK_COMPLETE */
  45. /* task delivered, what happened afterwards? */
  46. switch (ts->stat) {
  47. case SAS_DEV_NO_RESPONSE:
  48. return AC_ERR_TIMEOUT;
  49. case SAS_INTERRUPTED:
  50. case SAS_PHY_DOWN:
  51. case SAS_NAK_R_ERR:
  52. return AC_ERR_ATA_BUS;
  53. case SAS_DATA_UNDERRUN:
  54. /*
  55. * Some programs that use the taskfile interface
  56. * (smartctl in particular) can cause underrun
  57. * problems. Ignore these errors, perhaps at our
  58. * peril.
  59. */
  60. return 0;
  61. case SAS_DATA_OVERRUN:
  62. case SAS_QUEUE_FULL:
  63. case SAS_DEVICE_UNKNOWN:
  64. case SAS_SG_ERR:
  65. return AC_ERR_INVALID;
  66. case SAS_OPEN_TO:
  67. case SAS_OPEN_REJECT:
  68. SAS_DPRINTK("%s: Saw error %d. What to do?\n",
  69. __func__, ts->stat);
  70. return AC_ERR_OTHER;
  71. case SAM_STAT_CHECK_CONDITION:
  72. case SAS_ABORTED_TASK:
  73. return AC_ERR_DEV;
  74. case SAS_PROTO_RESPONSE:
  75. /* This means the ending_fis has the error
  76. * value; return 0 here to collect it */
  77. return 0;
  78. default:
  79. return 0;
  80. }
  81. }
  82. static void sas_ata_task_done(struct sas_task *task)
  83. {
  84. struct ata_queued_cmd *qc = task->uldd_task;
  85. struct domain_device *dev = task->dev;
  86. struct task_status_struct *stat = &task->task_status;
  87. struct ata_task_resp *resp = (struct ata_task_resp *)stat->buf;
  88. struct sas_ha_struct *sas_ha = dev->port->ha;
  89. enum ata_completion_errors ac;
  90. unsigned long flags;
  91. struct ata_link *link;
  92. struct ata_port *ap;
  93. spin_lock_irqsave(&dev->done_lock, flags);
  94. if (test_bit(SAS_HA_FROZEN, &sas_ha->state))
  95. task = NULL;
  96. else if (qc && qc->scsicmd)
  97. ASSIGN_SAS_TASK(qc->scsicmd, NULL);
  98. spin_unlock_irqrestore(&dev->done_lock, flags);
  99. /* check if libsas-eh got to the task before us */
  100. if (unlikely(!task))
  101. return;
  102. if (!qc)
  103. goto qc_already_gone;
  104. ap = qc->ap;
  105. link = &ap->link;
  106. spin_lock_irqsave(ap->lock, flags);
  107. /* check if we lost the race with libata/sas_ata_post_internal() */
  108. if (unlikely(ap->pflags & ATA_PFLAG_FROZEN)) {
  109. spin_unlock_irqrestore(ap->lock, flags);
  110. if (qc->scsicmd)
  111. goto qc_already_gone;
  112. else {
  113. /* if eh is not involved and the port is frozen then the
  114. * ata internal abort process has taken responsibility
  115. * for this sas_task
  116. */
  117. return;
  118. }
  119. }
  120. if (stat->stat == SAS_PROTO_RESPONSE || stat->stat == SAM_STAT_GOOD ||
  121. ((stat->stat == SAM_STAT_CHECK_CONDITION &&
  122. dev->sata_dev.class == ATA_DEV_ATAPI))) {
  123. memcpy(dev->sata_dev.fis, resp->ending_fis, ATA_RESP_FIS_SIZE);
  124. if (!link->sactive) {
  125. qc->err_mask |= ac_err_mask(dev->sata_dev.fis[2]);
  126. } else {
  127. link->eh_info.err_mask |= ac_err_mask(dev->sata_dev.fis[2]);
  128. if (unlikely(link->eh_info.err_mask))
  129. qc->flags |= ATA_QCFLAG_FAILED;
  130. }
  131. } else {
  132. ac = sas_to_ata_err(stat);
  133. if (ac) {
  134. SAS_DPRINTK("%s: SAS error %x\n", __func__,
  135. stat->stat);
  136. /* We saw a SAS error. Send a vague error. */
  137. if (!link->sactive) {
  138. qc->err_mask = ac;
  139. } else {
  140. link->eh_info.err_mask |= AC_ERR_DEV;
  141. qc->flags |= ATA_QCFLAG_FAILED;
  142. }
  143. dev->sata_dev.fis[3] = 0x04; /* status err */
  144. dev->sata_dev.fis[2] = ATA_ERR;
  145. }
  146. }
  147. qc->lldd_task = NULL;
  148. ata_qc_complete(qc);
  149. spin_unlock_irqrestore(ap->lock, flags);
  150. qc_already_gone:
  151. sas_free_task(task);
  152. }
  153. static unsigned int sas_ata_qc_issue(struct ata_queued_cmd *qc)
  154. {
  155. unsigned long flags;
  156. struct sas_task *task;
  157. struct scatterlist *sg;
  158. int ret = AC_ERR_SYSTEM;
  159. unsigned int si, xfer = 0;
  160. struct ata_port *ap = qc->ap;
  161. struct domain_device *dev = ap->private_data;
  162. struct sas_ha_struct *sas_ha = dev->port->ha;
  163. struct Scsi_Host *host = sas_ha->core.shost;
  164. struct sas_internal *i = to_sas_internal(host->transportt);
  165. /* TODO: audit callers to ensure they are ready for qc_issue to
  166. * unconditionally re-enable interrupts
  167. */
  168. local_irq_save(flags);
  169. spin_unlock(ap->lock);
  170. /* If the device fell off, no sense in issuing commands */
  171. if (test_bit(SAS_DEV_GONE, &dev->state))
  172. goto out;
  173. task = sas_alloc_task(GFP_ATOMIC);
  174. if (!task)
  175. goto out;
  176. task->dev = dev;
  177. task->task_proto = SAS_PROTOCOL_STP;
  178. task->task_done = sas_ata_task_done;
  179. if (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
  180. qc->tf.command == ATA_CMD_FPDMA_READ ||
  181. qc->tf.command == ATA_CMD_FPDMA_RECV ||
  182. qc->tf.command == ATA_CMD_FPDMA_SEND ||
  183. qc->tf.command == ATA_CMD_NCQ_NON_DATA) {
  184. /* Need to zero out the tag libata assigned us */
  185. qc->tf.nsect = 0;
  186. }
  187. ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, (u8 *)&task->ata_task.fis);
  188. task->uldd_task = qc;
  189. if (ata_is_atapi(qc->tf.protocol)) {
  190. memcpy(task->ata_task.atapi_packet, qc->cdb, qc->dev->cdb_len);
  191. task->total_xfer_len = qc->nbytes;
  192. task->num_scatter = qc->n_elem;
  193. } else {
  194. for_each_sg(qc->sg, sg, qc->n_elem, si)
  195. xfer += sg_dma_len(sg);
  196. task->total_xfer_len = xfer;
  197. task->num_scatter = si;
  198. }
  199. task->data_dir = qc->dma_dir;
  200. task->scatter = qc->sg;
  201. task->ata_task.retry_count = 1;
  202. task->task_state_flags = SAS_TASK_STATE_PENDING;
  203. qc->lldd_task = task;
  204. task->ata_task.use_ncq = ata_is_ncq(qc->tf.protocol);
  205. task->ata_task.dma_xfer = ata_is_dma(qc->tf.protocol);
  206. if (qc->scsicmd)
  207. ASSIGN_SAS_TASK(qc->scsicmd, task);
  208. ret = i->dft->lldd_execute_task(task, GFP_ATOMIC);
  209. if (ret) {
  210. SAS_DPRINTK("lldd_execute_task returned: %d\n", ret);
  211. if (qc->scsicmd)
  212. ASSIGN_SAS_TASK(qc->scsicmd, NULL);
  213. sas_free_task(task);
  214. qc->lldd_task = NULL;
  215. ret = AC_ERR_SYSTEM;
  216. }
  217. out:
  218. spin_lock(ap->lock);
  219. local_irq_restore(flags);
  220. return ret;
  221. }
  222. static bool sas_ata_qc_fill_rtf(struct ata_queued_cmd *qc)
  223. {
  224. struct domain_device *dev = qc->ap->private_data;
  225. ata_tf_from_fis(dev->sata_dev.fis, &qc->result_tf);
  226. return true;
  227. }
  228. static struct sas_internal *dev_to_sas_internal(struct domain_device *dev)
  229. {
  230. return to_sas_internal(dev->port->ha->core.shost->transportt);
  231. }
  232. static int sas_get_ata_command_set(struct domain_device *dev);
  233. int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy)
  234. {
  235. if (phy->attached_tproto & SAS_PROTOCOL_STP)
  236. dev->tproto = phy->attached_tproto;
  237. if (phy->attached_sata_dev)
  238. dev->tproto |= SAS_SATA_DEV;
  239. if (phy->attached_dev_type == SAS_SATA_PENDING)
  240. dev->dev_type = SAS_SATA_PENDING;
  241. else {
  242. int res;
  243. dev->dev_type = SAS_SATA_DEV;
  244. res = sas_get_report_phy_sata(dev->parent, phy->phy_id,
  245. &dev->sata_dev.rps_resp);
  246. if (res) {
  247. SAS_DPRINTK("report phy sata to %016llx:0x%x returned "
  248. "0x%x\n", SAS_ADDR(dev->parent->sas_addr),
  249. phy->phy_id, res);
  250. return res;
  251. }
  252. memcpy(dev->frame_rcvd, &dev->sata_dev.rps_resp.rps.fis,
  253. sizeof(struct dev_to_host_fis));
  254. dev->sata_dev.class = sas_get_ata_command_set(dev);
  255. }
  256. return 0;
  257. }
  258. static int sas_ata_clear_pending(struct domain_device *dev, struct ex_phy *phy)
  259. {
  260. int res;
  261. /* we weren't pending, so successfully end the reset sequence now */
  262. if (dev->dev_type != SAS_SATA_PENDING)
  263. return 1;
  264. /* hmmm, if this succeeds do we need to repost the domain_device to the
  265. * lldd so it can pick up new parameters?
  266. */
  267. res = sas_get_ata_info(dev, phy);
  268. if (res)
  269. return 0; /* retry */
  270. else
  271. return 1;
  272. }
  273. static int smp_ata_check_ready(struct ata_link *link)
  274. {
  275. int res;
  276. struct ata_port *ap = link->ap;
  277. struct domain_device *dev = ap->private_data;
  278. struct domain_device *ex_dev = dev->parent;
  279. struct sas_phy *phy = sas_get_local_phy(dev);
  280. struct ex_phy *ex_phy = &ex_dev->ex_dev.ex_phy[phy->number];
  281. res = sas_ex_phy_discover(ex_dev, phy->number);
  282. sas_put_local_phy(phy);
  283. /* break the wait early if the expander is unreachable,
  284. * otherwise keep polling
  285. */
  286. if (res == -ECOMM)
  287. return res;
  288. if (res != SMP_RESP_FUNC_ACC)
  289. return 0;
  290. switch (ex_phy->attached_dev_type) {
  291. case SAS_SATA_PENDING:
  292. return 0;
  293. case SAS_END_DEVICE:
  294. if (ex_phy->attached_sata_dev)
  295. return sas_ata_clear_pending(dev, ex_phy);
  296. default:
  297. return -ENODEV;
  298. }
  299. }
  300. static int local_ata_check_ready(struct ata_link *link)
  301. {
  302. struct ata_port *ap = link->ap;
  303. struct domain_device *dev = ap->private_data;
  304. struct sas_internal *i = dev_to_sas_internal(dev);
  305. if (i->dft->lldd_ata_check_ready)
  306. return i->dft->lldd_ata_check_ready(dev);
  307. else {
  308. /* lldd's that don't implement 'ready' checking get the
  309. * old default behavior of not coordinating reset
  310. * recovery with libata
  311. */
  312. return 1;
  313. }
  314. }
  315. static int sas_ata_printk(const char *level, const struct domain_device *ddev,
  316. const char *fmt, ...)
  317. {
  318. struct ata_port *ap = ddev->sata_dev.ap;
  319. struct device *dev = &ddev->rphy->dev;
  320. struct va_format vaf;
  321. va_list args;
  322. int r;
  323. va_start(args, fmt);
  324. vaf.fmt = fmt;
  325. vaf.va = &args;
  326. r = printk("%ssas: ata%u: %s: %pV",
  327. level, ap->print_id, dev_name(dev), &vaf);
  328. va_end(args);
  329. return r;
  330. }
  331. static int sas_ata_hard_reset(struct ata_link *link, unsigned int *class,
  332. unsigned long deadline)
  333. {
  334. int ret = 0, res;
  335. struct sas_phy *phy;
  336. struct ata_port *ap = link->ap;
  337. int (*check_ready)(struct ata_link *link);
  338. struct domain_device *dev = ap->private_data;
  339. struct sas_internal *i = dev_to_sas_internal(dev);
  340. res = i->dft->lldd_I_T_nexus_reset(dev);
  341. if (res == -ENODEV)
  342. return res;
  343. if (res != TMF_RESP_FUNC_COMPLETE)
  344. sas_ata_printk(KERN_DEBUG, dev, "Unable to reset ata device?\n");
  345. phy = sas_get_local_phy(dev);
  346. if (scsi_is_sas_phy_local(phy))
  347. check_ready = local_ata_check_ready;
  348. else
  349. check_ready = smp_ata_check_ready;
  350. sas_put_local_phy(phy);
  351. ret = ata_wait_after_reset(link, deadline, check_ready);
  352. if (ret && ret != -EAGAIN)
  353. sas_ata_printk(KERN_ERR, dev, "reset failed (errno=%d)\n", ret);
  354. *class = dev->sata_dev.class;
  355. ap->cbl = ATA_CBL_SATA;
  356. return ret;
  357. }
  358. /*
  359. * notify the lldd to forget the sas_task for this internal ata command
  360. * that bypasses scsi-eh
  361. */
  362. static void sas_ata_internal_abort(struct sas_task *task)
  363. {
  364. struct sas_internal *si = dev_to_sas_internal(task->dev);
  365. unsigned long flags;
  366. int res;
  367. spin_lock_irqsave(&task->task_state_lock, flags);
  368. if (task->task_state_flags & SAS_TASK_STATE_ABORTED ||
  369. task->task_state_flags & SAS_TASK_STATE_DONE) {
  370. spin_unlock_irqrestore(&task->task_state_lock, flags);
  371. SAS_DPRINTK("%s: Task %p already finished.\n", __func__,
  372. task);
  373. goto out;
  374. }
  375. task->task_state_flags |= SAS_TASK_STATE_ABORTED;
  376. spin_unlock_irqrestore(&task->task_state_lock, flags);
  377. res = si->dft->lldd_abort_task(task);
  378. spin_lock_irqsave(&task->task_state_lock, flags);
  379. if (task->task_state_flags & SAS_TASK_STATE_DONE ||
  380. res == TMF_RESP_FUNC_COMPLETE) {
  381. spin_unlock_irqrestore(&task->task_state_lock, flags);
  382. goto out;
  383. }
  384. /* XXX we are not prepared to deal with ->lldd_abort_task()
  385. * failures. TODO: lldds need to unconditionally forget about
  386. * aborted ata tasks, otherwise we (likely) leak the sas task
  387. * here
  388. */
  389. SAS_DPRINTK("%s: Task %p leaked.\n", __func__, task);
  390. if (!(task->task_state_flags & SAS_TASK_STATE_DONE))
  391. task->task_state_flags &= ~SAS_TASK_STATE_ABORTED;
  392. spin_unlock_irqrestore(&task->task_state_lock, flags);
  393. return;
  394. out:
  395. sas_free_task(task);
  396. }
  397. static void sas_ata_post_internal(struct ata_queued_cmd *qc)
  398. {
  399. if (qc->flags & ATA_QCFLAG_FAILED)
  400. qc->err_mask |= AC_ERR_OTHER;
  401. if (qc->err_mask) {
  402. /*
  403. * Find the sas_task and kill it. By this point, libata
  404. * has decided to kill the qc and has frozen the port.
  405. * In this state sas_ata_task_done() will no longer free
  406. * the sas_task, so we need to notify the lldd (via
  407. * ->lldd_abort_task) that the task is dead and free it
  408. * ourselves.
  409. */
  410. struct sas_task *task = qc->lldd_task;
  411. qc->lldd_task = NULL;
  412. if (!task)
  413. return;
  414. task->uldd_task = NULL;
  415. sas_ata_internal_abort(task);
  416. }
  417. }
  418. static void sas_ata_set_dmamode(struct ata_port *ap, struct ata_device *ata_dev)
  419. {
  420. struct domain_device *dev = ap->private_data;
  421. struct sas_internal *i = dev_to_sas_internal(dev);
  422. if (i->dft->lldd_ata_set_dmamode)
  423. i->dft->lldd_ata_set_dmamode(dev);
  424. }
  425. static void sas_ata_sched_eh(struct ata_port *ap)
  426. {
  427. struct domain_device *dev = ap->private_data;
  428. struct sas_ha_struct *ha = dev->port->ha;
  429. unsigned long flags;
  430. spin_lock_irqsave(&ha->lock, flags);
  431. if (!test_and_set_bit(SAS_DEV_EH_PENDING, &dev->state))
  432. ha->eh_active++;
  433. ata_std_sched_eh(ap);
  434. spin_unlock_irqrestore(&ha->lock, flags);
  435. }
  436. void sas_ata_end_eh(struct ata_port *ap)
  437. {
  438. struct domain_device *dev = ap->private_data;
  439. struct sas_ha_struct *ha = dev->port->ha;
  440. unsigned long flags;
  441. spin_lock_irqsave(&ha->lock, flags);
  442. if (test_and_clear_bit(SAS_DEV_EH_PENDING, &dev->state))
  443. ha->eh_active--;
  444. spin_unlock_irqrestore(&ha->lock, flags);
  445. }
  446. static struct ata_port_operations sas_sata_ops = {
  447. .prereset = ata_std_prereset,
  448. .hardreset = sas_ata_hard_reset,
  449. .postreset = ata_std_postreset,
  450. .error_handler = ata_std_error_handler,
  451. .post_internal_cmd = sas_ata_post_internal,
  452. .qc_defer = ata_std_qc_defer,
  453. .qc_prep = ata_noop_qc_prep,
  454. .qc_issue = sas_ata_qc_issue,
  455. .qc_fill_rtf = sas_ata_qc_fill_rtf,
  456. .port_start = ata_sas_port_start,
  457. .port_stop = ata_sas_port_stop,
  458. .set_dmamode = sas_ata_set_dmamode,
  459. .sched_eh = sas_ata_sched_eh,
  460. .end_eh = sas_ata_end_eh,
  461. };
  462. static struct ata_port_info sata_port_info = {
  463. .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA | ATA_FLAG_NCQ |
  464. ATA_FLAG_SAS_HOST | ATA_FLAG_FPDMA_AUX,
  465. .pio_mask = ATA_PIO4,
  466. .mwdma_mask = ATA_MWDMA2,
  467. .udma_mask = ATA_UDMA6,
  468. .port_ops = &sas_sata_ops
  469. };
  470. int sas_ata_init(struct domain_device *found_dev)
  471. {
  472. struct sas_ha_struct *ha = found_dev->port->ha;
  473. struct Scsi_Host *shost = ha->core.shost;
  474. struct ata_port *ap;
  475. int rc;
  476. ata_host_init(&found_dev->sata_dev.ata_host, ha->dev, &sas_sata_ops);
  477. ap = ata_sas_port_alloc(&found_dev->sata_dev.ata_host,
  478. &sata_port_info,
  479. shost);
  480. if (!ap) {
  481. SAS_DPRINTK("ata_sas_port_alloc failed.\n");
  482. return -ENODEV;
  483. }
  484. ap->private_data = found_dev;
  485. ap->cbl = ATA_CBL_SATA;
  486. ap->scsi_host = shost;
  487. rc = ata_sas_port_init(ap);
  488. if (rc) {
  489. ata_sas_port_destroy(ap);
  490. return rc;
  491. }
  492. found_dev->sata_dev.ap = ap;
  493. return 0;
  494. }
  495. void sas_ata_task_abort(struct sas_task *task)
  496. {
  497. struct ata_queued_cmd *qc = task->uldd_task;
  498. struct completion *waiting;
  499. /* Bounce SCSI-initiated commands to the SCSI EH */
  500. if (qc->scsicmd) {
  501. struct request_queue *q = qc->scsicmd->device->request_queue;
  502. unsigned long flags;
  503. spin_lock_irqsave(q->queue_lock, flags);
  504. blk_abort_request(qc->scsicmd->request);
  505. spin_unlock_irqrestore(q->queue_lock, flags);
  506. return;
  507. }
  508. /* Internal command, fake a timeout and complete. */
  509. qc->flags &= ~ATA_QCFLAG_ACTIVE;
  510. qc->flags |= ATA_QCFLAG_FAILED;
  511. qc->err_mask |= AC_ERR_TIMEOUT;
  512. waiting = qc->private_data;
  513. complete(waiting);
  514. }
  515. static int sas_get_ata_command_set(struct domain_device *dev)
  516. {
  517. struct dev_to_host_fis *fis =
  518. (struct dev_to_host_fis *) dev->frame_rcvd;
  519. struct ata_taskfile tf;
  520. if (dev->dev_type == SAS_SATA_PENDING)
  521. return ATA_DEV_UNKNOWN;
  522. ata_tf_from_fis((const u8 *)fis, &tf);
  523. return ata_dev_classify(&tf);
  524. }
  525. void sas_probe_sata(struct asd_sas_port *port)
  526. {
  527. struct domain_device *dev, *n;
  528. mutex_lock(&port->ha->disco_mutex);
  529. list_for_each_entry(dev, &port->disco_list, disco_list_node) {
  530. if (!dev_is_sata(dev))
  531. continue;
  532. ata_sas_async_probe(dev->sata_dev.ap);
  533. }
  534. mutex_unlock(&port->ha->disco_mutex);
  535. list_for_each_entry_safe(dev, n, &port->disco_list, disco_list_node) {
  536. if (!dev_is_sata(dev))
  537. continue;
  538. sas_ata_wait_eh(dev);
  539. /* if libata could not bring the link up, don't surface
  540. * the device
  541. */
  542. if (ata_dev_disabled(sas_to_ata_dev(dev)))
  543. sas_fail_probe(dev, __func__, -ENODEV);
  544. }
  545. }
  546. static void sas_ata_flush_pm_eh(struct asd_sas_port *port, const char *func)
  547. {
  548. struct domain_device *dev, *n;
  549. list_for_each_entry_safe(dev, n, &port->dev_list, dev_list_node) {
  550. if (!dev_is_sata(dev))
  551. continue;
  552. sas_ata_wait_eh(dev);
  553. /* if libata failed to power manage the device, tear it down */
  554. if (ata_dev_disabled(sas_to_ata_dev(dev)))
  555. sas_fail_probe(dev, func, -ENODEV);
  556. }
  557. }
  558. void sas_suspend_sata(struct asd_sas_port *port)
  559. {
  560. struct domain_device *dev;
  561. mutex_lock(&port->ha->disco_mutex);
  562. list_for_each_entry(dev, &port->dev_list, dev_list_node) {
  563. struct sata_device *sata;
  564. if (!dev_is_sata(dev))
  565. continue;
  566. sata = &dev->sata_dev;
  567. if (sata->ap->pm_mesg.event == PM_EVENT_SUSPEND)
  568. continue;
  569. ata_sas_port_suspend(sata->ap);
  570. }
  571. mutex_unlock(&port->ha->disco_mutex);
  572. sas_ata_flush_pm_eh(port, __func__);
  573. }
  574. void sas_resume_sata(struct asd_sas_port *port)
  575. {
  576. struct domain_device *dev;
  577. mutex_lock(&port->ha->disco_mutex);
  578. list_for_each_entry(dev, &port->dev_list, dev_list_node) {
  579. struct sata_device *sata;
  580. if (!dev_is_sata(dev))
  581. continue;
  582. sata = &dev->sata_dev;
  583. if (sata->ap->pm_mesg.event == PM_EVENT_ON)
  584. continue;
  585. ata_sas_port_resume(sata->ap);
  586. }
  587. mutex_unlock(&port->ha->disco_mutex);
  588. sas_ata_flush_pm_eh(port, __func__);
  589. }
  590. /**
  591. * sas_discover_sata -- discover an STP/SATA domain device
  592. * @dev: pointer to struct domain_device of interest
  593. *
  594. * Devices directly attached to a HA port, have no parents. All other
  595. * devices do, and should have their "parent" pointer set appropriately
  596. * before calling this function.
  597. */
  598. int sas_discover_sata(struct domain_device *dev)
  599. {
  600. int res;
  601. if (dev->dev_type == SAS_SATA_PM)
  602. return -ENODEV;
  603. dev->sata_dev.class = sas_get_ata_command_set(dev);
  604. sas_fill_in_rphy(dev, dev->rphy);
  605. res = sas_notify_lldd_dev_found(dev);
  606. if (res)
  607. return res;
  608. sas_discover_event(dev->port, DISCE_PROBE);
  609. return 0;
  610. }
  611. static void async_sas_ata_eh(void *data, async_cookie_t cookie)
  612. {
  613. struct domain_device *dev = data;
  614. struct ata_port *ap = dev->sata_dev.ap;
  615. struct sas_ha_struct *ha = dev->port->ha;
  616. sas_ata_printk(KERN_DEBUG, dev, "dev error handler\n");
  617. ata_scsi_port_error_handler(ha->core.shost, ap);
  618. sas_put_device(dev);
  619. }
  620. void sas_ata_strategy_handler(struct Scsi_Host *shost)
  621. {
  622. struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
  623. ASYNC_DOMAIN_EXCLUSIVE(async);
  624. int i;
  625. /* it's ok to defer revalidation events during ata eh, these
  626. * disks are in one of three states:
  627. * 1/ present for initial domain discovery, and these
  628. * resets will cause bcn flutters
  629. * 2/ hot removed, we'll discover that after eh fails
  630. * 3/ hot added after initial discovery, lost the race, and need
  631. * to catch the next train.
  632. */
  633. sas_disable_revalidation(sas_ha);
  634. spin_lock_irq(&sas_ha->phy_port_lock);
  635. for (i = 0; i < sas_ha->num_phys; i++) {
  636. struct asd_sas_port *port = sas_ha->sas_port[i];
  637. struct domain_device *dev;
  638. spin_lock(&port->dev_list_lock);
  639. list_for_each_entry(dev, &port->dev_list, dev_list_node) {
  640. if (!dev_is_sata(dev))
  641. continue;
  642. /* hold a reference over eh since we may be
  643. * racing with final remove once all commands
  644. * are completed
  645. */
  646. kref_get(&dev->kref);
  647. async_schedule_domain(async_sas_ata_eh, dev, &async);
  648. }
  649. spin_unlock(&port->dev_list_lock);
  650. }
  651. spin_unlock_irq(&sas_ha->phy_port_lock);
  652. async_synchronize_full_domain(&async);
  653. sas_enable_revalidation(sas_ha);
  654. }
  655. void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q,
  656. struct list_head *done_q)
  657. {
  658. struct scsi_cmnd *cmd, *n;
  659. struct domain_device *eh_dev;
  660. do {
  661. LIST_HEAD(sata_q);
  662. eh_dev = NULL;
  663. list_for_each_entry_safe(cmd, n, work_q, eh_entry) {
  664. struct domain_device *ddev = cmd_to_domain_dev(cmd);
  665. if (!dev_is_sata(ddev) || TO_SAS_TASK(cmd))
  666. continue;
  667. if (eh_dev && eh_dev != ddev)
  668. continue;
  669. eh_dev = ddev;
  670. list_move(&cmd->eh_entry, &sata_q);
  671. }
  672. if (!list_empty(&sata_q)) {
  673. struct ata_port *ap = eh_dev->sata_dev.ap;
  674. sas_ata_printk(KERN_DEBUG, eh_dev, "cmd error handler\n");
  675. ata_scsi_cmd_error_handler(shost, ap, &sata_q);
  676. /*
  677. * ata's error handler may leave the cmd on the list
  678. * so make sure they don't remain on a stack list
  679. * about to go out of scope.
  680. *
  681. * This looks strange, since the commands are
  682. * now part of no list, but the next error
  683. * action will be ata_port_error_handler()
  684. * which takes no list and sweeps them up
  685. * anyway from the ata tag array.
  686. */
  687. while (!list_empty(&sata_q))
  688. list_del_init(sata_q.next);
  689. }
  690. } while (eh_dev);
  691. }
  692. void sas_ata_schedule_reset(struct domain_device *dev)
  693. {
  694. struct ata_eh_info *ehi;
  695. struct ata_port *ap;
  696. unsigned long flags;
  697. if (!dev_is_sata(dev))
  698. return;
  699. ap = dev->sata_dev.ap;
  700. ehi = &ap->link.eh_info;
  701. spin_lock_irqsave(ap->lock, flags);
  702. ehi->err_mask |= AC_ERR_TIMEOUT;
  703. ehi->action |= ATA_EH_RESET;
  704. ata_port_schedule_eh(ap);
  705. spin_unlock_irqrestore(ap->lock, flags);
  706. }
  707. EXPORT_SYMBOL_GPL(sas_ata_schedule_reset);
  708. void sas_ata_wait_eh(struct domain_device *dev)
  709. {
  710. struct ata_port *ap;
  711. if (!dev_is_sata(dev))
  712. return;
  713. ap = dev->sata_dev.ap;
  714. ata_port_wait_eh(ap);
  715. }