htc_services.c 10 KB

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