sas_ata.c 22 KB

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