sas_ata.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865
  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. /* Need to zero out the tag libata assigned us */
  182. qc->tf.nsect = 0;
  183. }
  184. ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, (u8 *)&task->ata_task.fis);
  185. task->uldd_task = qc;
  186. if (ata_is_atapi(qc->tf.protocol)) {
  187. memcpy(task->ata_task.atapi_packet, qc->cdb, qc->dev->cdb_len);
  188. task->total_xfer_len = qc->nbytes;
  189. task->num_scatter = qc->n_elem;
  190. } else {
  191. for_each_sg(qc->sg, sg, qc->n_elem, si)
  192. xfer += sg_dma_len(sg);
  193. task->total_xfer_len = xfer;
  194. task->num_scatter = si;
  195. }
  196. task->data_dir = qc->dma_dir;
  197. task->scatter = qc->sg;
  198. task->ata_task.retry_count = 1;
  199. task->task_state_flags = SAS_TASK_STATE_PENDING;
  200. qc->lldd_task = task;
  201. switch (qc->tf.protocol) {
  202. case ATA_PROT_NCQ:
  203. task->ata_task.use_ncq = 1;
  204. /* fall through */
  205. case ATAPI_PROT_DMA:
  206. case ATA_PROT_DMA:
  207. task->ata_task.dma_xfer = 1;
  208. break;
  209. }
  210. if (qc->scsicmd)
  211. ASSIGN_SAS_TASK(qc->scsicmd, task);
  212. ret = i->dft->lldd_execute_task(task, GFP_ATOMIC);
  213. if (ret) {
  214. SAS_DPRINTK("lldd_execute_task returned: %d\n", ret);
  215. if (qc->scsicmd)
  216. ASSIGN_SAS_TASK(qc->scsicmd, NULL);
  217. sas_free_task(task);
  218. ret = AC_ERR_SYSTEM;
  219. }
  220. out:
  221. spin_lock(ap->lock);
  222. local_irq_restore(flags);
  223. return ret;
  224. }
  225. static bool sas_ata_qc_fill_rtf(struct ata_queued_cmd *qc)
  226. {
  227. struct domain_device *dev = qc->ap->private_data;
  228. ata_tf_from_fis(dev->sata_dev.fis, &qc->result_tf);
  229. return true;
  230. }
  231. static struct sas_internal *dev_to_sas_internal(struct domain_device *dev)
  232. {
  233. return to_sas_internal(dev->port->ha->core.shost->transportt);
  234. }
  235. static int sas_get_ata_command_set(struct domain_device *dev);
  236. int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy)
  237. {
  238. if (phy->attached_tproto & SAS_PROTOCOL_STP)
  239. dev->tproto = phy->attached_tproto;
  240. if (phy->attached_sata_dev)
  241. dev->tproto |= SAS_SATA_DEV;
  242. if (phy->attached_dev_type == SAS_SATA_PENDING)
  243. dev->dev_type = SAS_SATA_PENDING;
  244. else {
  245. int res;
  246. dev->dev_type = SAS_SATA_DEV;
  247. res = sas_get_report_phy_sata(dev->parent, phy->phy_id,
  248. &dev->sata_dev.rps_resp);
  249. if (res) {
  250. SAS_DPRINTK("report phy sata to %016llx:0x%x returned "
  251. "0x%x\n", SAS_ADDR(dev->parent->sas_addr),
  252. phy->phy_id, res);
  253. return res;
  254. }
  255. memcpy(dev->frame_rcvd, &dev->sata_dev.rps_resp.rps.fis,
  256. sizeof(struct dev_to_host_fis));
  257. dev->sata_dev.class = sas_get_ata_command_set(dev);
  258. }
  259. return 0;
  260. }
  261. static int sas_ata_clear_pending(struct domain_device *dev, struct ex_phy *phy)
  262. {
  263. int res;
  264. /* we weren't pending, so successfully end the reset sequence now */
  265. if (dev->dev_type != SAS_SATA_PENDING)
  266. return 1;
  267. /* hmmm, if this succeeds do we need to repost the domain_device to the
  268. * lldd so it can pick up new parameters?
  269. */
  270. res = sas_get_ata_info(dev, phy);
  271. if (res)
  272. return 0; /* retry */
  273. else
  274. return 1;
  275. }
  276. static int smp_ata_check_ready(struct ata_link *link)
  277. {
  278. int res;
  279. struct ata_port *ap = link->ap;
  280. struct domain_device *dev = ap->private_data;
  281. struct domain_device *ex_dev = dev->parent;
  282. struct sas_phy *phy = sas_get_local_phy(dev);
  283. struct ex_phy *ex_phy = &ex_dev->ex_dev.ex_phy[phy->number];
  284. res = sas_ex_phy_discover(ex_dev, phy->number);
  285. sas_put_local_phy(phy);
  286. /* break the wait early if the expander is unreachable,
  287. * otherwise keep polling
  288. */
  289. if (res == -ECOMM)
  290. return res;
  291. if (res != SMP_RESP_FUNC_ACC)
  292. return 0;
  293. switch (ex_phy->attached_dev_type) {
  294. case SAS_SATA_PENDING:
  295. return 0;
  296. case SAS_END_DEVICE:
  297. if (ex_phy->attached_sata_dev)
  298. return sas_ata_clear_pending(dev, ex_phy);
  299. default:
  300. return -ENODEV;
  301. }
  302. }
  303. static int local_ata_check_ready(struct ata_link *link)
  304. {
  305. struct ata_port *ap = link->ap;
  306. struct domain_device *dev = ap->private_data;
  307. struct sas_internal *i = dev_to_sas_internal(dev);
  308. if (i->dft->lldd_ata_check_ready)
  309. return i->dft->lldd_ata_check_ready(dev);
  310. else {
  311. /* lldd's that don't implement 'ready' checking get the
  312. * old default behavior of not coordinating reset
  313. * recovery with libata
  314. */
  315. return 1;
  316. }
  317. }
  318. static int sas_ata_printk(const char *level, const struct domain_device *ddev,
  319. const char *fmt, ...)
  320. {
  321. struct ata_port *ap = ddev->sata_dev.ap;
  322. struct device *dev = &ddev->rphy->dev;
  323. struct va_format vaf;
  324. va_list args;
  325. int r;
  326. va_start(args, fmt);
  327. vaf.fmt = fmt;
  328. vaf.va = &args;
  329. r = printk("%ssas: ata%u: %s: %pV",
  330. level, ap->print_id, dev_name(dev), &vaf);
  331. va_end(args);
  332. return r;
  333. }
  334. static int sas_ata_hard_reset(struct ata_link *link, unsigned int *class,
  335. unsigned long deadline)
  336. {
  337. int ret = 0, res;
  338. struct sas_phy *phy;
  339. struct ata_port *ap = link->ap;
  340. int (*check_ready)(struct ata_link *link);
  341. struct domain_device *dev = ap->private_data;
  342. struct sas_internal *i = dev_to_sas_internal(dev);
  343. res = i->dft->lldd_I_T_nexus_reset(dev);
  344. if (res == -ENODEV)
  345. return res;
  346. if (res != TMF_RESP_FUNC_COMPLETE)
  347. sas_ata_printk(KERN_DEBUG, dev, "Unable to reset ata device?\n");
  348. phy = sas_get_local_phy(dev);
  349. if (scsi_is_sas_phy_local(phy))
  350. check_ready = local_ata_check_ready;
  351. else
  352. check_ready = smp_ata_check_ready;
  353. sas_put_local_phy(phy);
  354. ret = ata_wait_after_reset(link, deadline, check_ready);
  355. if (ret && ret != -EAGAIN)
  356. sas_ata_printk(KERN_ERR, dev, "reset failed (errno=%d)\n", ret);
  357. *class = dev->sata_dev.class;
  358. ap->cbl = ATA_CBL_SATA;
  359. return ret;
  360. }
  361. /*
  362. * notify the lldd to forget the sas_task for this internal ata command
  363. * that bypasses scsi-eh
  364. */
  365. static void sas_ata_internal_abort(struct sas_task *task)
  366. {
  367. struct sas_internal *si = dev_to_sas_internal(task->dev);
  368. unsigned long flags;
  369. int res;
  370. spin_lock_irqsave(&task->task_state_lock, flags);
  371. if (task->task_state_flags & SAS_TASK_STATE_ABORTED ||
  372. task->task_state_flags & SAS_TASK_STATE_DONE) {
  373. spin_unlock_irqrestore(&task->task_state_lock, flags);
  374. SAS_DPRINTK("%s: Task %p already finished.\n", __func__,
  375. task);
  376. goto out;
  377. }
  378. task->task_state_flags |= SAS_TASK_STATE_ABORTED;
  379. spin_unlock_irqrestore(&task->task_state_lock, flags);
  380. res = si->dft->lldd_abort_task(task);
  381. spin_lock_irqsave(&task->task_state_lock, flags);
  382. if (task->task_state_flags & SAS_TASK_STATE_DONE ||
  383. res == TMF_RESP_FUNC_COMPLETE) {
  384. spin_unlock_irqrestore(&task->task_state_lock, flags);
  385. goto out;
  386. }
  387. /* XXX we are not prepared to deal with ->lldd_abort_task()
  388. * failures. TODO: lldds need to unconditionally forget about
  389. * aborted ata tasks, otherwise we (likely) leak the sas task
  390. * here
  391. */
  392. SAS_DPRINTK("%s: Task %p leaked.\n", __func__, task);
  393. if (!(task->task_state_flags & SAS_TASK_STATE_DONE))
  394. task->task_state_flags &= ~SAS_TASK_STATE_ABORTED;
  395. spin_unlock_irqrestore(&task->task_state_lock, flags);
  396. return;
  397. out:
  398. sas_free_task(task);
  399. }
  400. static void sas_ata_post_internal(struct ata_queued_cmd *qc)
  401. {
  402. if (qc->flags & ATA_QCFLAG_FAILED)
  403. qc->err_mask |= AC_ERR_OTHER;
  404. if (qc->err_mask) {
  405. /*
  406. * Find the sas_task and kill it. By this point, libata
  407. * has decided to kill the qc and has frozen the port.
  408. * In this state sas_ata_task_done() will no longer free
  409. * the sas_task, so we need to notify the lldd (via
  410. * ->lldd_abort_task) that the task is dead and free it
  411. * ourselves.
  412. */
  413. struct sas_task *task = qc->lldd_task;
  414. qc->lldd_task = NULL;
  415. if (!task)
  416. return;
  417. task->uldd_task = NULL;
  418. sas_ata_internal_abort(task);
  419. }
  420. }
  421. static void sas_ata_set_dmamode(struct ata_port *ap, struct ata_device *ata_dev)
  422. {
  423. struct domain_device *dev = ap->private_data;
  424. struct sas_internal *i = dev_to_sas_internal(dev);
  425. if (i->dft->lldd_ata_set_dmamode)
  426. i->dft->lldd_ata_set_dmamode(dev);
  427. }
  428. static void sas_ata_sched_eh(struct ata_port *ap)
  429. {
  430. struct domain_device *dev = ap->private_data;
  431. struct sas_ha_struct *ha = dev->port->ha;
  432. unsigned long flags;
  433. spin_lock_irqsave(&ha->lock, flags);
  434. if (!test_and_set_bit(SAS_DEV_EH_PENDING, &dev->state))
  435. ha->eh_active++;
  436. ata_std_sched_eh(ap);
  437. spin_unlock_irqrestore(&ha->lock, flags);
  438. }
  439. void sas_ata_end_eh(struct ata_port *ap)
  440. {
  441. struct domain_device *dev = ap->private_data;
  442. struct sas_ha_struct *ha = dev->port->ha;
  443. unsigned long flags;
  444. spin_lock_irqsave(&ha->lock, flags);
  445. if (test_and_clear_bit(SAS_DEV_EH_PENDING, &dev->state))
  446. ha->eh_active--;
  447. spin_unlock_irqrestore(&ha->lock, flags);
  448. }
  449. static struct ata_port_operations sas_sata_ops = {
  450. .prereset = ata_std_prereset,
  451. .hardreset = sas_ata_hard_reset,
  452. .postreset = ata_std_postreset,
  453. .error_handler = ata_std_error_handler,
  454. .post_internal_cmd = sas_ata_post_internal,
  455. .qc_defer = ata_std_qc_defer,
  456. .qc_prep = ata_noop_qc_prep,
  457. .qc_issue = sas_ata_qc_issue,
  458. .qc_fill_rtf = sas_ata_qc_fill_rtf,
  459. .port_start = ata_sas_port_start,
  460. .port_stop = ata_sas_port_stop,
  461. .set_dmamode = sas_ata_set_dmamode,
  462. .sched_eh = sas_ata_sched_eh,
  463. .end_eh = sas_ata_end_eh,
  464. };
  465. static struct ata_port_info sata_port_info = {
  466. .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA | ATA_FLAG_NCQ |
  467. ATA_FLAG_SAS_HOST,
  468. .pio_mask = ATA_PIO4,
  469. .mwdma_mask = ATA_MWDMA2,
  470. .udma_mask = ATA_UDMA6,
  471. .port_ops = &sas_sata_ops
  472. };
  473. int sas_ata_init(struct domain_device *found_dev)
  474. {
  475. struct sas_ha_struct *ha = found_dev->port->ha;
  476. struct Scsi_Host *shost = ha->core.shost;
  477. struct ata_port *ap;
  478. int rc;
  479. ata_host_init(&found_dev->sata_dev.ata_host, ha->dev, &sas_sata_ops);
  480. ap = ata_sas_port_alloc(&found_dev->sata_dev.ata_host,
  481. &sata_port_info,
  482. shost);
  483. if (!ap) {
  484. SAS_DPRINTK("ata_sas_port_alloc failed.\n");
  485. return -ENODEV;
  486. }
  487. ap->private_data = found_dev;
  488. ap->cbl = ATA_CBL_SATA;
  489. ap->scsi_host = shost;
  490. rc = ata_sas_port_init(ap);
  491. if (rc) {
  492. ata_sas_port_destroy(ap);
  493. return rc;
  494. }
  495. found_dev->sata_dev.ap = ap;
  496. return 0;
  497. }
  498. void sas_ata_task_abort(struct sas_task *task)
  499. {
  500. struct ata_queued_cmd *qc = task->uldd_task;
  501. struct completion *waiting;
  502. /* Bounce SCSI-initiated commands to the SCSI EH */
  503. if (qc->scsicmd) {
  504. struct request_queue *q = qc->scsicmd->device->request_queue;
  505. unsigned long flags;
  506. spin_lock_irqsave(q->queue_lock, flags);
  507. blk_abort_request(qc->scsicmd->request);
  508. spin_unlock_irqrestore(q->queue_lock, flags);
  509. return;
  510. }
  511. /* Internal command, fake a timeout and complete. */
  512. qc->flags &= ~ATA_QCFLAG_ACTIVE;
  513. qc->flags |= ATA_QCFLAG_FAILED;
  514. qc->err_mask |= AC_ERR_TIMEOUT;
  515. waiting = qc->private_data;
  516. complete(waiting);
  517. }
  518. static int sas_get_ata_command_set(struct domain_device *dev)
  519. {
  520. struct dev_to_host_fis *fis =
  521. (struct dev_to_host_fis *) dev->frame_rcvd;
  522. struct ata_taskfile tf;
  523. if (dev->dev_type == SAS_SATA_PENDING)
  524. return ATA_DEV_UNKNOWN;
  525. ata_tf_from_fis((const u8 *)fis, &tf);
  526. return ata_dev_classify(&tf);
  527. }
  528. void sas_probe_sata(struct asd_sas_port *port)
  529. {
  530. struct domain_device *dev, *n;
  531. mutex_lock(&port->ha->disco_mutex);
  532. list_for_each_entry(dev, &port->disco_list, disco_list_node) {
  533. if (!dev_is_sata(dev))
  534. continue;
  535. ata_sas_async_probe(dev->sata_dev.ap);
  536. }
  537. mutex_unlock(&port->ha->disco_mutex);
  538. list_for_each_entry_safe(dev, n, &port->disco_list, disco_list_node) {
  539. if (!dev_is_sata(dev))
  540. continue;
  541. sas_ata_wait_eh(dev);
  542. /* if libata could not bring the link up, don't surface
  543. * the device
  544. */
  545. if (ata_dev_disabled(sas_to_ata_dev(dev)))
  546. sas_fail_probe(dev, __func__, -ENODEV);
  547. }
  548. }
  549. static void sas_ata_flush_pm_eh(struct asd_sas_port *port, const char *func)
  550. {
  551. struct domain_device *dev, *n;
  552. list_for_each_entry_safe(dev, n, &port->dev_list, dev_list_node) {
  553. if (!dev_is_sata(dev))
  554. continue;
  555. sas_ata_wait_eh(dev);
  556. /* if libata failed to power manage the device, tear it down */
  557. if (ata_dev_disabled(sas_to_ata_dev(dev)))
  558. sas_fail_probe(dev, func, -ENODEV);
  559. }
  560. }
  561. void sas_suspend_sata(struct asd_sas_port *port)
  562. {
  563. struct domain_device *dev;
  564. mutex_lock(&port->ha->disco_mutex);
  565. list_for_each_entry(dev, &port->dev_list, dev_list_node) {
  566. struct sata_device *sata;
  567. if (!dev_is_sata(dev))
  568. continue;
  569. sata = &dev->sata_dev;
  570. if (sata->ap->pm_mesg.event == PM_EVENT_SUSPEND)
  571. continue;
  572. ata_sas_port_suspend(sata->ap);
  573. }
  574. mutex_unlock(&port->ha->disco_mutex);
  575. sas_ata_flush_pm_eh(port, __func__);
  576. }
  577. void sas_resume_sata(struct asd_sas_port *port)
  578. {
  579. struct domain_device *dev;
  580. mutex_lock(&port->ha->disco_mutex);
  581. list_for_each_entry(dev, &port->dev_list, dev_list_node) {
  582. struct sata_device *sata;
  583. if (!dev_is_sata(dev))
  584. continue;
  585. sata = &dev->sata_dev;
  586. if (sata->ap->pm_mesg.event == PM_EVENT_ON)
  587. continue;
  588. ata_sas_port_resume(sata->ap);
  589. }
  590. mutex_unlock(&port->ha->disco_mutex);
  591. sas_ata_flush_pm_eh(port, __func__);
  592. }
  593. /**
  594. * sas_discover_sata -- discover an STP/SATA domain device
  595. * @dev: pointer to struct domain_device of interest
  596. *
  597. * Devices directly attached to a HA port, have no parents. All other
  598. * devices do, and should have their "parent" pointer set appropriately
  599. * before calling this function.
  600. */
  601. int sas_discover_sata(struct domain_device *dev)
  602. {
  603. int res;
  604. if (dev->dev_type == SAS_SATA_PM)
  605. return -ENODEV;
  606. dev->sata_dev.class = sas_get_ata_command_set(dev);
  607. sas_fill_in_rphy(dev, dev->rphy);
  608. res = sas_notify_lldd_dev_found(dev);
  609. if (res)
  610. return res;
  611. sas_discover_event(dev->port, DISCE_PROBE);
  612. return 0;
  613. }
  614. static void async_sas_ata_eh(void *data, async_cookie_t cookie)
  615. {
  616. struct domain_device *dev = data;
  617. struct ata_port *ap = dev->sata_dev.ap;
  618. struct sas_ha_struct *ha = dev->port->ha;
  619. sas_ata_printk(KERN_DEBUG, dev, "dev error handler\n");
  620. ata_scsi_port_error_handler(ha->core.shost, ap);
  621. sas_put_device(dev);
  622. }
  623. void sas_ata_strategy_handler(struct Scsi_Host *shost)
  624. {
  625. struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
  626. ASYNC_DOMAIN_EXCLUSIVE(async);
  627. int i;
  628. /* it's ok to defer revalidation events during ata eh, these
  629. * disks are in one of three states:
  630. * 1/ present for initial domain discovery, and these
  631. * resets will cause bcn flutters
  632. * 2/ hot removed, we'll discover that after eh fails
  633. * 3/ hot added after initial discovery, lost the race, and need
  634. * to catch the next train.
  635. */
  636. sas_disable_revalidation(sas_ha);
  637. spin_lock_irq(&sas_ha->phy_port_lock);
  638. for (i = 0; i < sas_ha->num_phys; i++) {
  639. struct asd_sas_port *port = sas_ha->sas_port[i];
  640. struct domain_device *dev;
  641. spin_lock(&port->dev_list_lock);
  642. list_for_each_entry(dev, &port->dev_list, dev_list_node) {
  643. if (!dev_is_sata(dev))
  644. continue;
  645. /* hold a reference over eh since we may be
  646. * racing with final remove once all commands
  647. * are completed
  648. */
  649. kref_get(&dev->kref);
  650. async_schedule_domain(async_sas_ata_eh, dev, &async);
  651. }
  652. spin_unlock(&port->dev_list_lock);
  653. }
  654. spin_unlock_irq(&sas_ha->phy_port_lock);
  655. async_synchronize_full_domain(&async);
  656. sas_enable_revalidation(sas_ha);
  657. }
  658. void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q,
  659. struct list_head *done_q)
  660. {
  661. struct scsi_cmnd *cmd, *n;
  662. struct domain_device *eh_dev;
  663. do {
  664. LIST_HEAD(sata_q);
  665. eh_dev = NULL;
  666. list_for_each_entry_safe(cmd, n, work_q, eh_entry) {
  667. struct domain_device *ddev = cmd_to_domain_dev(cmd);
  668. if (!dev_is_sata(ddev) || TO_SAS_TASK(cmd))
  669. continue;
  670. if (eh_dev && eh_dev != ddev)
  671. continue;
  672. eh_dev = ddev;
  673. list_move(&cmd->eh_entry, &sata_q);
  674. }
  675. if (!list_empty(&sata_q)) {
  676. struct ata_port *ap = eh_dev->sata_dev.ap;
  677. sas_ata_printk(KERN_DEBUG, eh_dev, "cmd error handler\n");
  678. ata_scsi_cmd_error_handler(shost, ap, &sata_q);
  679. /*
  680. * ata's error handler may leave the cmd on the list
  681. * so make sure they don't remain on a stack list
  682. * about to go out of scope.
  683. *
  684. * This looks strange, since the commands are
  685. * now part of no list, but the next error
  686. * action will be ata_port_error_handler()
  687. * which takes no list and sweeps them up
  688. * anyway from the ata tag array.
  689. */
  690. while (!list_empty(&sata_q))
  691. list_del_init(sata_q.next);
  692. }
  693. } while (eh_dev);
  694. }
  695. void sas_ata_schedule_reset(struct domain_device *dev)
  696. {
  697. struct ata_eh_info *ehi;
  698. struct ata_port *ap;
  699. unsigned long flags;
  700. if (!dev_is_sata(dev))
  701. return;
  702. ap = dev->sata_dev.ap;
  703. ehi = &ap->link.eh_info;
  704. spin_lock_irqsave(ap->lock, flags);
  705. ehi->err_mask |= AC_ERR_TIMEOUT;
  706. ehi->action |= ATA_EH_RESET;
  707. ata_port_schedule_eh(ap);
  708. spin_unlock_irqrestore(ap->lock, flags);
  709. }
  710. EXPORT_SYMBOL_GPL(sas_ata_schedule_reset);
  711. void sas_ata_wait_eh(struct domain_device *dev)
  712. {
  713. struct ata_port *ap;
  714. if (!dev_is_sata(dev))
  715. return;
  716. ap = dev->sata_dev.ap;
  717. ata_port_wait_eh(ap);
  718. }