htc_services.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. /*
  2. * Copyright (c) 2013-2015 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #include "htc_debug.h"
  27. #include "htc_internal.h"
  28. #include <cdf_nbuf.h> /* cdf_nbuf_t */
  29. #include "hif.h"
  30. /* use credit flow control over HTC */
  31. unsigned int htc_credit_flow = 1;
  32. #ifndef DEBUG_CREDIT
  33. #define DEBUG_CREDIT 0
  34. #endif
  35. A_STATUS htc_connect_service(HTC_HANDLE HTCHandle,
  36. HTC_SERVICE_CONNECT_REQ *pConnectReq,
  37. HTC_SERVICE_CONNECT_RESP *pConnectResp)
  38. {
  39. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  40. A_STATUS status = A_OK;
  41. HTC_PACKET *pSendPacket = NULL;
  42. HTC_CONNECT_SERVICE_RESPONSE_MSG *pResponseMsg;
  43. HTC_CONNECT_SERVICE_MSG *pConnectMsg;
  44. HTC_ENDPOINT_ID assignedEndpoint = ENDPOINT_MAX;
  45. HTC_ENDPOINT *pEndpoint;
  46. unsigned int maxMsgSize = 0;
  47. cdf_nbuf_t netbuf;
  48. A_UINT8 txAlloc;
  49. int length;
  50. A_BOOL disableCreditFlowCtrl = false;
  51. A_UINT16 conn_flags;
  52. A_UINT16 rsp_msg_id, rsp_msg_serv_id, rsp_msg_max_msg_size;
  53. A_UINT8 rsp_msg_status, rsp_msg_end_id, rsp_msg_serv_meta_len;
  54. AR_DEBUG_PRINTF(ATH_DEBUG_TRC,
  55. ("+htc_connect_service, target:%p SvcID:0x%X\n", target,
  56. pConnectReq->service_id));
  57. do {
  58. AR_DEBUG_ASSERT(pConnectReq->service_id != 0);
  59. if (HTC_CTRL_RSVD_SVC == pConnectReq->service_id) {
  60. /* special case for pseudo control service */
  61. assignedEndpoint = ENDPOINT_0;
  62. maxMsgSize = HTC_MAX_CONTROL_MESSAGE_LENGTH;
  63. txAlloc = 0;
  64. } else {
  65. txAlloc = htc_get_credit_allocation(target,
  66. pConnectReq->service_id);
  67. if (!txAlloc) {
  68. AR_DEBUG_PRINTF(ATH_DEBUG_TRC,
  69. ("Service %d does not allocate target credits!\n",
  70. pConnectReq->service_id));
  71. }
  72. /* allocate a packet to send to the target */
  73. pSendPacket = htc_alloc_control_tx_packet(target);
  74. if (NULL == pSendPacket) {
  75. AR_DEBUG_ASSERT(false);
  76. status = A_NO_MEMORY;
  77. break;
  78. }
  79. netbuf =
  80. (cdf_nbuf_t)
  81. GET_HTC_PACKET_NET_BUF_CONTEXT(pSendPacket);
  82. length =
  83. sizeof(HTC_CONNECT_SERVICE_MSG) +
  84. pConnectReq->MetaDataLength;
  85. /* assemble connect service message */
  86. cdf_nbuf_put_tail(netbuf, length);
  87. pConnectMsg =
  88. (HTC_CONNECT_SERVICE_MSG *) cdf_nbuf_data(netbuf);
  89. if (NULL == pConnectMsg) {
  90. AR_DEBUG_ASSERT(0);
  91. status = A_EFAULT;
  92. break;
  93. }
  94. A_MEMZERO(pConnectMsg, sizeof(HTC_CONNECT_SERVICE_MSG));
  95. conn_flags =
  96. (pConnectReq->
  97. ConnectionFlags & ~HTC_SET_RECV_ALLOC_MASK) |
  98. HTC_CONNECT_FLAGS_SET_RECV_ALLOCATION(txAlloc);
  99. HTC_SET_FIELD(pConnectMsg, HTC_CONNECT_SERVICE_MSG,
  100. MESSAGEID, HTC_MSG_CONNECT_SERVICE_ID);
  101. HTC_SET_FIELD(pConnectMsg, HTC_CONNECT_SERVICE_MSG,
  102. SERVICE_ID, pConnectReq->service_id);
  103. HTC_SET_FIELD(pConnectMsg, HTC_CONNECT_SERVICE_MSG,
  104. CONNECTIONFLAGS, conn_flags);
  105. if (pConnectReq->
  106. ConnectionFlags &
  107. HTC_CONNECT_FLAGS_DISABLE_CREDIT_FLOW_CTRL) {
  108. disableCreditFlowCtrl = true;
  109. }
  110. #if defined(HIF_USB)
  111. if (!htc_credit_flow) {
  112. disableCreditFlowCtrl = true;
  113. }
  114. #else
  115. /* Only enable credit for WMI service */
  116. if (!htc_credit_flow
  117. && pConnectReq->service_id != WMI_CONTROL_SVC) {
  118. disableCreditFlowCtrl = true;
  119. }
  120. #endif
  121. /* check caller if it wants to transfer meta data */
  122. if ((pConnectReq->pMetaData != NULL) &&
  123. (pConnectReq->MetaDataLength <=
  124. HTC_SERVICE_META_DATA_MAX_LENGTH)) {
  125. /* copy meta data into message buffer (after header ) */
  126. A_MEMCPY((A_UINT8 *) pConnectMsg +
  127. sizeof(HTC_CONNECT_SERVICE_MSG),
  128. pConnectReq->pMetaData,
  129. pConnectReq->MetaDataLength);
  130. HTC_SET_FIELD(pConnectMsg,
  131. HTC_CONNECT_SERVICE_MSG,
  132. SERVICEMETALENGTH,
  133. pConnectReq->MetaDataLength);
  134. }
  135. SET_HTC_PACKET_INFO_TX(pSendPacket,
  136. NULL,
  137. (A_UINT8 *) pConnectMsg,
  138. length,
  139. ENDPOINT_0,
  140. HTC_SERVICE_TX_PACKET_TAG);
  141. status = htc_send_pkt((HTC_HANDLE) target, pSendPacket);
  142. /* we don't own it anymore */
  143. pSendPacket = NULL;
  144. if (A_FAILED(status)) {
  145. break;
  146. }
  147. /* wait for response */
  148. status = htc_wait_recv_ctrl_message(target);
  149. if (A_FAILED(status)) {
  150. break;
  151. }
  152. /* we controlled the buffer creation so it has to be properly aligned */
  153. pResponseMsg =
  154. (HTC_CONNECT_SERVICE_RESPONSE_MSG *) target->
  155. CtrlResponseBuffer;
  156. rsp_msg_id = HTC_GET_FIELD(pResponseMsg,
  157. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  158. MESSAGEID);
  159. rsp_msg_serv_id =
  160. HTC_GET_FIELD(pResponseMsg,
  161. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  162. SERVICEID);
  163. rsp_msg_status =
  164. HTC_GET_FIELD(pResponseMsg,
  165. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  166. STATUS);
  167. rsp_msg_end_id =
  168. HTC_GET_FIELD(pResponseMsg,
  169. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  170. ENDPOINTID);
  171. rsp_msg_max_msg_size =
  172. HTC_GET_FIELD(pResponseMsg,
  173. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  174. MAXMSGSIZE);
  175. rsp_msg_serv_meta_len =
  176. HTC_GET_FIELD(pResponseMsg,
  177. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  178. SERVICEMETALENGTH);
  179. if ((rsp_msg_id != HTC_MSG_CONNECT_SERVICE_RESPONSE_ID)
  180. || (target->CtrlResponseLength <
  181. sizeof(HTC_CONNECT_SERVICE_RESPONSE_MSG))) {
  182. /* this message is not valid */
  183. AR_DEBUG_ASSERT(false);
  184. status = A_EPROTO;
  185. break;
  186. }
  187. AR_DEBUG_PRINTF(ATH_DEBUG_TRC,
  188. ("htc_connect_service, service 0x%X connect response from target status:%d, assigned ep: %d\n",
  189. rsp_msg_serv_id, rsp_msg_status,
  190. rsp_msg_end_id));
  191. pConnectResp->ConnectRespCode = rsp_msg_status;
  192. /* check response status */
  193. if (rsp_msg_status != HTC_SERVICE_SUCCESS) {
  194. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  195. (" Target failed service 0x%X connect request (status:%d)\n",
  196. rsp_msg_serv_id,
  197. rsp_msg_status));
  198. status = A_EPROTO;
  199. #ifdef QCA_TX_HTT2_SUPPORT
  200. /* Keep work and not to block the control message. */
  201. target->CtrlResponseProcessing = false;
  202. #endif /* QCA_TX_HTT2_SUPPORT */
  203. break;
  204. }
  205. assignedEndpoint = (HTC_ENDPOINT_ID) rsp_msg_end_id;
  206. maxMsgSize = rsp_msg_max_msg_size;
  207. if ((pConnectResp->pMetaData != NULL) &&
  208. (rsp_msg_serv_meta_len > 0) &&
  209. (rsp_msg_serv_meta_len <=
  210. HTC_SERVICE_META_DATA_MAX_LENGTH)) {
  211. /* caller supplied a buffer and the target responded with data */
  212. int copyLength =
  213. min((int)pConnectResp->BufferLength,
  214. (int)rsp_msg_serv_meta_len);
  215. /* copy the meta data */
  216. A_MEMCPY(pConnectResp->pMetaData,
  217. ((A_UINT8 *) pResponseMsg) +
  218. sizeof
  219. (HTC_CONNECT_SERVICE_RESPONSE_MSG),
  220. copyLength);
  221. pConnectResp->ActualLength = copyLength;
  222. }
  223. /* done processing response buffer */
  224. target->CtrlResponseProcessing = false;
  225. }
  226. /* the rest of these are parameter checks so set the error status */
  227. status = A_EPROTO;
  228. if (assignedEndpoint >= ENDPOINT_MAX) {
  229. AR_DEBUG_ASSERT(false);
  230. break;
  231. }
  232. if (0 == maxMsgSize) {
  233. AR_DEBUG_ASSERT(false);
  234. break;
  235. }
  236. pEndpoint = &target->endpoint[assignedEndpoint];
  237. pEndpoint->Id = assignedEndpoint;
  238. if (pEndpoint->service_id != 0) {
  239. /* endpoint already in use! */
  240. AR_DEBUG_ASSERT(false);
  241. break;
  242. }
  243. /* return assigned endpoint to caller */
  244. pConnectResp->Endpoint = assignedEndpoint;
  245. pConnectResp->MaxMsgLength = maxMsgSize;
  246. /* setup the endpoint */
  247. /* service_id marks the endpoint in use */
  248. pEndpoint->service_id = pConnectReq->service_id;
  249. pEndpoint->MaxTxQueueDepth = pConnectReq->MaxSendQueueDepth;
  250. pEndpoint->MaxMsgLength = maxMsgSize;
  251. pEndpoint->TxCredits = txAlloc;
  252. pEndpoint->TxCreditSize = target->TargetCreditSize;
  253. pEndpoint->TxCreditsPerMaxMsg =
  254. maxMsgSize / target->TargetCreditSize;
  255. if (maxMsgSize % target->TargetCreditSize) {
  256. pEndpoint->TxCreditsPerMaxMsg++;
  257. }
  258. #if DEBUG_CREDIT
  259. cdf_print(" Endpoint%d initial credit:%d, size:%d.\n",
  260. pEndpoint->Id, pEndpoint->TxCredits,
  261. pEndpoint->TxCreditSize);
  262. #endif
  263. /* copy all the callbacks */
  264. pEndpoint->EpCallBacks = pConnectReq->EpCallbacks;
  265. status = hif_map_service_to_pipe(target->hif_dev,
  266. pEndpoint->service_id,
  267. &pEndpoint->UL_PipeID,
  268. &pEndpoint->DL_PipeID,
  269. &pEndpoint->ul_is_polled,
  270. &pEndpoint->dl_is_polled);
  271. if (A_FAILED(status)) {
  272. break;
  273. }
  274. cdf_assert(!pEndpoint->dl_is_polled); /* not currently supported */
  275. if (pEndpoint->ul_is_polled) {
  276. cdf_softirq_timer_init(target->osdev,
  277. &pEndpoint->ul_poll_timer,
  278. htc_send_complete_check_cleanup,
  279. pEndpoint,
  280. CDF_TIMER_TYPE_SW);
  281. }
  282. AR_DEBUG_PRINTF(ATH_DEBUG_SETUP,
  283. ("HTC Service:0x%4.4X, ULpipe:%d DLpipe:%d id:%d Ready\n",
  284. pEndpoint->service_id, pEndpoint->UL_PipeID,
  285. pEndpoint->DL_PipeID, pEndpoint->Id));
  286. if (disableCreditFlowCtrl && pEndpoint->TxCreditFlowEnabled) {
  287. pEndpoint->TxCreditFlowEnabled = false;
  288. AR_DEBUG_PRINTF(ATH_DEBUG_WARN,
  289. ("HTC Service:0x%4.4X ep:%d TX flow control disabled\n",
  290. pEndpoint->service_id,
  291. assignedEndpoint));
  292. }
  293. } while (false);
  294. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("-htc_connect_service \n"));
  295. return status;
  296. }
  297. void htc_set_credit_distribution(HTC_HANDLE HTCHandle,
  298. void *pCreditDistContext,
  299. HTC_CREDIT_DIST_CALLBACK CreditDistFunc,
  300. HTC_CREDIT_INIT_CALLBACK CreditInitFunc,
  301. HTC_SERVICE_ID ServicePriorityOrder[],
  302. int ListLength)
  303. {
  304. /* NOT Supported, this transport does not use a credit based flow control mechanism */
  305. }
  306. void htc_fw_event_handler(void *context, CDF_STATUS status)
  307. {
  308. HTC_TARGET *target = (HTC_TARGET *) context;
  309. HTC_INIT_INFO *initInfo = &target->HTCInitInfo;
  310. /* check if target failure handler exists and pass error code to it. */
  311. if (target->HTCInitInfo.TargetFailure != NULL) {
  312. initInfo->TargetFailure(initInfo->pContext, status);
  313. }
  314. }
  315. /* Disable ASPM : disable PCIe low power */
  316. void htc_disable_aspm(void)
  317. {
  318. hif_disable_aspm();
  319. }