htc_services.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. /*
  2. * Copyright (c) 2013-2016 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 <hif.h>
  29. #include <qdf_nbuf.h> /* qdf_nbuf_t */
  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. qdf_nbuf_t netbuf;
  48. uint8_t txAlloc;
  49. int length;
  50. bool disableCreditFlowCtrl = false;
  51. uint16_t conn_flags;
  52. uint16_t rsp_msg_id, rsp_msg_serv_id, rsp_msg_max_msg_size;
  53. uint8_t 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. (qdf_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. qdf_nbuf_put_tail(netbuf, length);
  87. pConnectMsg =
  88. (HTC_CONNECT_SERVICE_MSG *) qdf_nbuf_data(netbuf);
  89. if (NULL == pConnectMsg) {
  90. AR_DEBUG_ASSERT(0);
  91. status = A_EFAULT;
  92. break;
  93. }
  94. qdf_mem_zero(pConnectMsg,
  95. sizeof(HTC_CONNECT_SERVICE_MSG));
  96. conn_flags =
  97. (pConnectReq->
  98. ConnectionFlags & ~HTC_SET_RECV_ALLOC_MASK) |
  99. HTC_CONNECT_FLAGS_SET_RECV_ALLOCATION(txAlloc);
  100. HTC_SET_FIELD(pConnectMsg, HTC_CONNECT_SERVICE_MSG,
  101. MESSAGEID, HTC_MSG_CONNECT_SERVICE_ID);
  102. HTC_SET_FIELD(pConnectMsg, HTC_CONNECT_SERVICE_MSG,
  103. SERVICE_ID, pConnectReq->service_id);
  104. HTC_SET_FIELD(pConnectMsg, HTC_CONNECT_SERVICE_MSG,
  105. CONNECTIONFLAGS, conn_flags);
  106. if (pConnectReq->
  107. ConnectionFlags &
  108. HTC_CONNECT_FLAGS_DISABLE_CREDIT_FLOW_CTRL) {
  109. disableCreditFlowCtrl = true;
  110. }
  111. if (!htc_credit_flow) {
  112. disableCreditFlowCtrl = true;
  113. }
  114. /* check caller if it wants to transfer meta data */
  115. if ((pConnectReq->pMetaData != NULL) &&
  116. (pConnectReq->MetaDataLength <=
  117. HTC_SERVICE_META_DATA_MAX_LENGTH)) {
  118. /* copy meta data into message buffer (after header ) */
  119. qdf_mem_copy((uint8_t *) pConnectMsg +
  120. sizeof(HTC_CONNECT_SERVICE_MSG),
  121. pConnectReq->pMetaData,
  122. pConnectReq->MetaDataLength);
  123. HTC_SET_FIELD(pConnectMsg,
  124. HTC_CONNECT_SERVICE_MSG,
  125. SERVICEMETALENGTH,
  126. pConnectReq->MetaDataLength);
  127. }
  128. SET_HTC_PACKET_INFO_TX(pSendPacket,
  129. NULL,
  130. (uint8_t *) pConnectMsg,
  131. length,
  132. ENDPOINT_0,
  133. HTC_SERVICE_TX_PACKET_TAG);
  134. status = htc_send_pkt((HTC_HANDLE) target, pSendPacket);
  135. /* we don't own it anymore */
  136. pSendPacket = NULL;
  137. if (A_FAILED(status)) {
  138. break;
  139. }
  140. /* wait for response */
  141. status = htc_wait_recv_ctrl_message(target);
  142. if (A_FAILED(status)) {
  143. break;
  144. }
  145. /* we controlled the buffer creation so it has to be properly aligned */
  146. pResponseMsg =
  147. (HTC_CONNECT_SERVICE_RESPONSE_MSG *) target->
  148. CtrlResponseBuffer;
  149. rsp_msg_id = HTC_GET_FIELD(pResponseMsg,
  150. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  151. MESSAGEID);
  152. rsp_msg_serv_id =
  153. HTC_GET_FIELD(pResponseMsg,
  154. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  155. SERVICEID);
  156. rsp_msg_status =
  157. HTC_GET_FIELD(pResponseMsg,
  158. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  159. STATUS);
  160. rsp_msg_end_id =
  161. HTC_GET_FIELD(pResponseMsg,
  162. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  163. ENDPOINTID);
  164. rsp_msg_max_msg_size =
  165. HTC_GET_FIELD(pResponseMsg,
  166. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  167. MAXMSGSIZE);
  168. rsp_msg_serv_meta_len =
  169. HTC_GET_FIELD(pResponseMsg,
  170. HTC_CONNECT_SERVICE_RESPONSE_MSG,
  171. SERVICEMETALENGTH);
  172. if ((rsp_msg_id != HTC_MSG_CONNECT_SERVICE_RESPONSE_ID)
  173. || (target->CtrlResponseLength <
  174. sizeof(HTC_CONNECT_SERVICE_RESPONSE_MSG))) {
  175. /* this message is not valid */
  176. AR_DEBUG_ASSERT(false);
  177. status = A_EPROTO;
  178. break;
  179. }
  180. AR_DEBUG_PRINTF(ATH_DEBUG_TRC,
  181. ("htc_connect_service, service 0x%X connect response from target status:%d, assigned ep: %d\n",
  182. rsp_msg_serv_id, rsp_msg_status,
  183. rsp_msg_end_id));
  184. pConnectResp->ConnectRespCode = rsp_msg_status;
  185. /* check response status */
  186. if (rsp_msg_status != HTC_SERVICE_SUCCESS) {
  187. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  188. (" Target failed service 0x%X connect request (status:%d)\n",
  189. rsp_msg_serv_id,
  190. rsp_msg_status));
  191. status = A_EPROTO;
  192. #ifdef QCA_TX_HTT2_SUPPORT
  193. /* Keep work and not to block the control message. */
  194. target->CtrlResponseProcessing = false;
  195. #endif /* QCA_TX_HTT2_SUPPORT */
  196. break;
  197. }
  198. assignedEndpoint = (HTC_ENDPOINT_ID) rsp_msg_end_id;
  199. maxMsgSize = rsp_msg_max_msg_size;
  200. if ((pConnectResp->pMetaData != NULL) &&
  201. (rsp_msg_serv_meta_len > 0) &&
  202. (rsp_msg_serv_meta_len <=
  203. HTC_SERVICE_META_DATA_MAX_LENGTH)) {
  204. /* caller supplied a buffer and the target responded with data */
  205. int copyLength =
  206. min((int)pConnectResp->BufferLength,
  207. (int)rsp_msg_serv_meta_len);
  208. /* copy the meta data */
  209. qdf_mem_copy(pConnectResp->pMetaData,
  210. ((uint8_t *) pResponseMsg) +
  211. sizeof
  212. (HTC_CONNECT_SERVICE_RESPONSE_MSG),
  213. copyLength);
  214. pConnectResp->ActualLength = copyLength;
  215. }
  216. /* done processing response buffer */
  217. target->CtrlResponseProcessing = false;
  218. }
  219. /* the rest of these are parameter checks so set the error status */
  220. status = A_EPROTO;
  221. if (assignedEndpoint >= ENDPOINT_MAX) {
  222. AR_DEBUG_ASSERT(false);
  223. break;
  224. }
  225. if (0 == maxMsgSize) {
  226. AR_DEBUG_ASSERT(false);
  227. break;
  228. }
  229. pEndpoint = &target->endpoint[assignedEndpoint];
  230. pEndpoint->Id = assignedEndpoint;
  231. if (pEndpoint->service_id != 0) {
  232. /* endpoint already in use! */
  233. AR_DEBUG_ASSERT(false);
  234. break;
  235. }
  236. /* return assigned endpoint to caller */
  237. pConnectResp->Endpoint = assignedEndpoint;
  238. pConnectResp->MaxMsgLength = maxMsgSize;
  239. /* setup the endpoint */
  240. /* service_id marks the endpoint in use */
  241. pEndpoint->service_id = pConnectReq->service_id;
  242. pEndpoint->MaxTxQueueDepth = pConnectReq->MaxSendQueueDepth;
  243. pEndpoint->MaxMsgLength = maxMsgSize;
  244. pEndpoint->TxCredits = txAlloc;
  245. pEndpoint->TxCreditSize = target->TargetCreditSize;
  246. pEndpoint->TxCreditsPerMaxMsg =
  247. maxMsgSize / target->TargetCreditSize;
  248. if (maxMsgSize % target->TargetCreditSize) {
  249. pEndpoint->TxCreditsPerMaxMsg++;
  250. }
  251. #if DEBUG_CREDIT
  252. qdf_print(" Endpoint%d initial credit:%d, size:%d.\n",
  253. pEndpoint->Id, pEndpoint->TxCredits,
  254. pEndpoint->TxCreditSize);
  255. #endif
  256. /* copy all the callbacks */
  257. pEndpoint->EpCallBacks = pConnectReq->EpCallbacks;
  258. status = hif_map_service_to_pipe(target->hif_dev,
  259. pEndpoint->service_id,
  260. &pEndpoint->UL_PipeID,
  261. &pEndpoint->DL_PipeID,
  262. &pEndpoint->ul_is_polled,
  263. &pEndpoint->dl_is_polled);
  264. if (A_FAILED(status)) {
  265. break;
  266. }
  267. qdf_assert(!pEndpoint->dl_is_polled); /* not currently supported */
  268. if (pEndpoint->ul_is_polled) {
  269. qdf_timer_init(target->osdev,
  270. &pEndpoint->ul_poll_timer,
  271. htc_send_complete_check_cleanup,
  272. pEndpoint,
  273. QDF_TIMER_TYPE_SW);
  274. }
  275. AR_DEBUG_PRINTF(ATH_DEBUG_SETUP,
  276. ("HTC Service:0x%4.4X, ULpipe:%d DLpipe:%d id:%d Ready\n",
  277. pEndpoint->service_id, pEndpoint->UL_PipeID,
  278. pEndpoint->DL_PipeID, pEndpoint->Id));
  279. if (disableCreditFlowCtrl && pEndpoint->TxCreditFlowEnabled) {
  280. pEndpoint->TxCreditFlowEnabled = false;
  281. AR_DEBUG_PRINTF(ATH_DEBUG_WARN,
  282. ("HTC Service:0x%4.4X ep:%d TX flow control disabled\n",
  283. pEndpoint->service_id,
  284. assignedEndpoint));
  285. }
  286. } while (false);
  287. if (HTT_SERVICE_GROUP == (pConnectReq->service_id >> 8))
  288. hif_save_htc_htt_config_endpoint(target->hif_dev,
  289. assignedEndpoint);
  290. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("-htc_connect_service\n"));
  291. return status;
  292. }
  293. void htc_set_credit_distribution(HTC_HANDLE HTCHandle,
  294. void *pCreditDistContext,
  295. HTC_CREDIT_DIST_CALLBACK CreditDistFunc,
  296. HTC_CREDIT_INIT_CALLBACK CreditInitFunc,
  297. HTC_SERVICE_ID ServicePriorityOrder[],
  298. int ListLength)
  299. {
  300. /* NOT Supported, this transport does not use a credit based flow control mechanism */
  301. }
  302. void htc_fw_event_handler(void *context, QDF_STATUS status)
  303. {
  304. HTC_TARGET *target = (HTC_TARGET *) context;
  305. HTC_INIT_INFO *initInfo = &target->HTCInitInfo;
  306. /* check if target failure handler exists and pass error code to it. */
  307. if (target->HTCInitInfo.TargetFailure != NULL) {
  308. initInfo->TargetFailure(initInfo->pContext, status);
  309. }
  310. }