sata.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. /*
  2. * This file is provided under a dual BSD/GPLv2 license. When using or
  3. * redistributing this file, you may do so under either license.
  4. *
  5. * GPL LICENSE SUMMARY
  6. *
  7. * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of version 2 of the GNU General Public License as
  11. * published by the Free Software Foundation.
  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., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  21. * The full GNU General Public License is included in this distribution
  22. * in the file called LICENSE.GPL.
  23. *
  24. * BSD LICENSE
  25. *
  26. * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
  27. * All rights reserved.
  28. *
  29. * Redistribution and use in source and binary forms, with or without
  30. * modification, are permitted provided that the following conditions
  31. * are met:
  32. *
  33. * * Redistributions of source code must retain the above copyright
  34. * notice, this list of conditions and the following disclaimer.
  35. * * Redistributions in binary form must reproduce the above copyright
  36. * notice, this list of conditions and the following disclaimer in
  37. * the documentation and/or other materials provided with the
  38. * distribution.
  39. * * Neither the name of Intel Corporation nor the names of its
  40. * contributors may be used to endorse or promote products derived
  41. * from this software without specific prior written permission.
  42. *
  43. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  44. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  45. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  46. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  47. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  48. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  49. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  50. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  51. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  52. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  53. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  54. */
  55. #include "isci.h"
  56. #include "scic_remote_device.h"
  57. #include "scic_sds_remote_device.h"
  58. #include "scic_io_request.h"
  59. #include "scic_task_request.h"
  60. #include "task.h"
  61. #include "request.h"
  62. #include "sata.h"
  63. #include "intel_sat.h"
  64. #include "intel_ata.h"
  65. static u8 isci_sata_get_management_task_protocol(struct isci_tmf *tmf);
  66. /**
  67. * isci_sata_task_to_fis_copy() - This function gets the host_to_dev_fis from
  68. * the core and copies the fis from the task into it.
  69. * @task: This parameter is a pointer to the task struct from libsas.
  70. *
  71. * pointer to the host_to_dev_fis from the core request object.
  72. */
  73. struct host_to_dev_fis *isci_sata_task_to_fis_copy(struct sas_task *task)
  74. {
  75. struct isci_request *request = task->lldd_task;
  76. struct host_to_dev_fis *register_fis =
  77. scic_stp_io_request_get_h2d_reg_address(
  78. request->sci_request_handle
  79. );
  80. memcpy(
  81. (u8 *)register_fis,
  82. (u8 *)&task->ata_task.fis,
  83. sizeof(struct host_to_dev_fis)
  84. );
  85. if (!task->ata_task.device_control_reg_update)
  86. register_fis->flags |= 0x80;
  87. register_fis->flags &= 0xF0;
  88. return register_fis;
  89. }
  90. /**
  91. * isci_sata_is_task_ncq() - This function determines if the given stp task is
  92. * a ncq request.
  93. * @task: This parameter is a pointer to the task struct from libsas.
  94. *
  95. * true if the task is ncq
  96. */
  97. bool isci_sata_is_task_ncq(struct sas_task *task)
  98. {
  99. struct ata_queued_cmd *qc = task->uldd_task;
  100. bool ret = (qc &&
  101. (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
  102. qc->tf.command == ATA_CMD_FPDMA_READ));
  103. return ret;
  104. }
  105. /**
  106. * isci_sata_set_ncq_tag() - This function sets the ncq tag field in the
  107. * host_to_dev_fis equal to the tag in the queue command in the task.
  108. * @task: This parameter is a pointer to the task struct from libsas.
  109. * @register_fis: This parameter is a pointer to the host_to_dev_fis from the
  110. * core request object.
  111. *
  112. */
  113. void isci_sata_set_ncq_tag(
  114. struct host_to_dev_fis *register_fis,
  115. struct sas_task *task)
  116. {
  117. struct ata_queued_cmd *qc = task->uldd_task;
  118. struct isci_request *request = task->lldd_task;
  119. register_fis->sector_count = qc->tag << 3;
  120. scic_stp_io_request_set_ncq_tag(request->sci_request_handle, qc->tag);
  121. }
  122. /**
  123. * isci_request_process_stp_response() - This function sets the status and
  124. * response, in the task struct, from the request object for the upper layer
  125. * driver.
  126. * @sas_task: This parameter is the task struct from the upper layer driver.
  127. * @response_buffer: This parameter points to the response of the completed
  128. * request.
  129. *
  130. * none.
  131. */
  132. void isci_request_process_stp_response(
  133. struct sas_task *task,
  134. void *response_buffer)
  135. {
  136. struct sata_fis_reg_d2h *d2h_reg_fis = (struct sata_fis_reg_d2h *)response_buffer;
  137. struct task_status_struct *ts = &task->task_status;
  138. struct ata_task_resp *resp = (void *)&ts->buf[0];
  139. resp->frame_len = le16_to_cpu(*(__le16 *)(response_buffer + 6));
  140. memcpy(&resp->ending_fis[0], response_buffer + 16, 24);
  141. ts->buf_valid_size = sizeof(*resp);
  142. /**
  143. * If the device fault bit is set in the status register, then
  144. * set the sense data and return.
  145. */
  146. if (d2h_reg_fis->status & ATA_STATUS_REG_DEVICE_FAULT_BIT)
  147. ts->stat = SAS_PROTO_RESPONSE;
  148. else
  149. ts->stat = SAM_STAT_GOOD;
  150. ts->resp = SAS_TASK_COMPLETE;
  151. }
  152. /**
  153. * isci_sata_get_sat_protocol() - retrieve the sat protocol for the request
  154. * @isci_request: ata request
  155. *
  156. * Note: temporary implementation until expert mode removes the callback
  157. *
  158. */
  159. u8 isci_sata_get_sat_protocol(struct isci_request *isci_request)
  160. {
  161. struct sas_task *task;
  162. struct domain_device *dev;
  163. dev_dbg(&isci_request->isci_host->pdev->dev,
  164. "%s: isci_request = %p, ttype = %d\n",
  165. __func__, isci_request, isci_request->ttype);
  166. if (tmf_task == isci_request->ttype) {
  167. struct isci_tmf *tmf = isci_request_access_tmf(isci_request);
  168. return isci_sata_get_management_task_protocol(tmf);
  169. }
  170. task = isci_request_access_task(isci_request);
  171. dev = task->dev;
  172. if (!sas_protocol_ata(task->task_proto)) {
  173. WARN(1, "unhandled task protocol\n");
  174. return SAT_PROTOCOL_NON_DATA;
  175. }
  176. if (task->data_dir == DMA_NONE)
  177. return SAT_PROTOCOL_NON_DATA;
  178. /* the "_IN" protocol types are equivalent to their "_OUT"
  179. * analogs as far as the core is concerned
  180. */
  181. if (dev->sata_dev.command_set == ATAPI_COMMAND_SET) {
  182. if (task->ata_task.dma_xfer)
  183. return SAT_PROTOCOL_PACKET_DMA_DATA_IN;
  184. else
  185. return SAT_PROTOCOL_PACKET_PIO_DATA_IN;
  186. }
  187. if (task->ata_task.use_ncq)
  188. return SAT_PROTOCOL_FPDMA;
  189. if (task->ata_task.dma_xfer)
  190. return SAT_PROTOCOL_UDMA_DATA_IN;
  191. else
  192. return SAT_PROTOCOL_PIO_DATA_IN;
  193. }
  194. static u8 isci_sata_get_management_task_protocol(
  195. struct isci_tmf *tmf)
  196. {
  197. u8 ret = 0;
  198. pr_warn("tmf = %p, func = %d\n", tmf, tmf->tmf_code);
  199. if ((tmf->tmf_code == isci_tmf_sata_srst_high) ||
  200. (tmf->tmf_code == isci_tmf_sata_srst_low)) {
  201. pr_warn("%s: tmf->tmf_code == TMF_LU_RESET\n", __func__);
  202. ret = SAT_PROTOCOL_SOFT_RESET;
  203. }
  204. return ret;
  205. }
  206. enum sci_status isci_sata_management_task_request_build(
  207. struct isci_request *isci_request)
  208. {
  209. struct isci_tmf *isci_tmf;
  210. enum sci_status status;
  211. if (tmf_task != isci_request->ttype)
  212. return SCI_FAILURE;
  213. isci_tmf = isci_request_access_tmf(isci_request);
  214. switch (isci_tmf->tmf_code) {
  215. case isci_tmf_sata_srst_high:
  216. case isci_tmf_sata_srst_low:
  217. {
  218. struct host_to_dev_fis *register_fis =
  219. scic_stp_io_request_get_h2d_reg_address(
  220. isci_request->sci_request_handle
  221. );
  222. memset(register_fis, 0, sizeof(*register_fis));
  223. register_fis->fis_type = 0x27;
  224. register_fis->flags &= ~0x80;
  225. register_fis->flags &= 0xF0;
  226. if (isci_tmf->tmf_code == isci_tmf_sata_srst_high)
  227. register_fis->control |= ATA_SRST;
  228. else
  229. register_fis->control &= ~ATA_SRST;
  230. break;
  231. }
  232. /* other management commnd go here... */
  233. default:
  234. return SCI_FAILURE;
  235. }
  236. /* core builds the protocol specific request
  237. * based on the h2d fis.
  238. */
  239. status = scic_task_request_construct_sata(
  240. isci_request->sci_request_handle
  241. );
  242. return status;
  243. }
  244. /**
  245. * isci_task_send_lu_reset_sata() - This function is called by of the SAS
  246. * Domain Template functions. This is one of the Task Management functoins
  247. * called by libsas, to reset the given SAS lun. Note the assumption that
  248. * while this call is executing, no I/O will be sent by the host to the
  249. * device.
  250. * @lun: This parameter specifies the lun to be reset.
  251. *
  252. * status, zero indicates success.
  253. */
  254. int isci_task_send_lu_reset_sata(
  255. struct isci_host *isci_host,
  256. struct isci_remote_device *isci_device,
  257. u8 *lun)
  258. {
  259. struct isci_tmf tmf;
  260. int ret = TMF_RESP_FUNC_FAILED;
  261. /* Send the soft reset to the target */
  262. #define ISCI_SRST_TIMEOUT_MS 25000 /* 25 second timeout. */
  263. isci_task_build_tmf(&tmf, isci_device, isci_tmf_sata_srst_high,
  264. NULL, NULL
  265. );
  266. ret = isci_task_execute_tmf(isci_host, &tmf, ISCI_SRST_TIMEOUT_MS);
  267. if (ret != TMF_RESP_FUNC_COMPLETE) {
  268. dev_warn(&isci_host->pdev->dev,
  269. "%s: Assert SRST failed (%p) = %x",
  270. __func__,
  271. isci_device,
  272. ret);
  273. /* Return the failure so that the LUN reset is escalated
  274. * to a target reset.
  275. */
  276. }
  277. return ret;
  278. }