htc_api.h 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718
  1. /*
  2. * Copyright (c) 2013-2014, 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. #ifndef _HTC_API_H_
  27. #define _HTC_API_H_
  28. #include <athdefs.h>
  29. #include "osapi_linux.h"
  30. #include "htc_packet.h"
  31. #include <htc.h>
  32. #include <htc_services.h>
  33. #include <cdf_types.h> /* cdf_device_t */
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif /* __cplusplus */
  37. /* TODO.. for BMI */
  38. #define ENDPOINT1 0
  39. /* TODO -remove me, but we have to fix BMI first */
  40. #define HTC_MAILBOX_NUM_MAX 4
  41. /* this is the amount of header room required by users of HTC */
  42. #define HTC_HEADER_LEN HTC_HDR_LENGTH
  43. typedef void *HTC_HANDLE;
  44. typedef A_UINT16 HTC_SERVICE_ID;
  45. typedef void (*HTC_TARGET_FAILURE)(void *Instance, CDF_STATUS Status);
  46. typedef struct _HTC_INIT_INFO {
  47. void *pContext; /* context for target notifications */
  48. void (*TargetFailure)(void *Instance, CDF_STATUS Status);
  49. void (*TargetSendSuspendComplete)(void *ctx);
  50. } HTC_INIT_INFO;
  51. /* Struct for HTC layer packet stats*/
  52. struct ol_ath_htc_stats {
  53. int htc_get_pkt_q_fail_count;
  54. int htc_pkt_q_empty_count;
  55. int htc_send_q_empty_count;
  56. };
  57. /* To resume HTT Tx queue during runtime resume */
  58. typedef void (*HTC_EP_RESUME_TX_QUEUE)(void *);
  59. /* per service connection send completion */
  60. typedef void (*HTC_EP_SEND_PKT_COMPLETE)(void *, HTC_PACKET *);
  61. /* per service connection callback when a plurality of packets have been sent
  62. * The HTC_PACKET_QUEUE is a temporary queue object (e.g. freed on return from the callback)
  63. * to hold a list of completed send packets.
  64. * If the handler cannot fully traverse the packet queue before returning, it should
  65. * transfer the items of the queue into the caller's private queue using:
  66. * HTC_PACKET_ENQUEUE() */
  67. typedef void (*HTC_EP_SEND_PKT_COMP_MULTIPLE)(void *,
  68. HTC_PACKET_QUEUE *);
  69. /* per service connection pkt received */
  70. typedef void (*HTC_EP_RECV_PKT)(void *, HTC_PACKET *);
  71. /* per service connection callback when a plurality of packets are received
  72. * The HTC_PACKET_QUEUE is a temporary queue object (e.g. freed on return from the callback)
  73. * to hold a list of recv packets.
  74. * If the handler cannot fully traverse the packet queue before returning, it should
  75. * transfer the items of the queue into the caller's private queue using:
  76. * HTC_PACKET_ENQUEUE() */
  77. typedef void (*HTC_EP_RECV_PKT_MULTIPLE)(void *, HTC_PACKET_QUEUE *);
  78. /* Optional per service connection receive buffer re-fill callback,
  79. * On some OSes (like Linux) packets are allocated from a global pool and indicated up
  80. * to the network stack. The driver never gets the packets back from the OS. For these OSes
  81. * a refill callback can be used to allocate and re-queue buffers into HTC.
  82. *
  83. * On other OSes, the network stack can call into the driver's OS-specifc "return_packet" handler and
  84. * the driver can re-queue these buffers into HTC. In this regard a refill callback is
  85. * unnecessary */
  86. typedef void (*HTC_EP_RECV_REFILL)(void *, HTC_ENDPOINT_ID Endpoint);
  87. /* Optional per service connection receive buffer allocation callback.
  88. * On some systems packet buffers are an extremely limited resource. Rather than
  89. * queue largest-possible-sized buffers to HTC, some systems would rather
  90. * allocate a specific size as the packet is received. The trade off is
  91. * slightly more processing (callback invoked for each RX packet)
  92. * for the benefit of committing fewer buffer resources into HTC.
  93. *
  94. * The callback is provided the length of the pending packet to fetch. This includes the
  95. * HTC header length plus the length of payload. The callback can return a pointer to
  96. * the allocated HTC packet for immediate use.
  97. *
  98. * Alternatively a variant of this handler can be used to allocate large receive packets as needed.
  99. * For example an application can use the refill mechanism for normal packets and the recv-alloc mechanism to
  100. * handle the case where a large packet buffer is required. This can significantly reduce the
  101. * amount of "committed" memory used to receive packets.
  102. *
  103. * */
  104. typedef HTC_PACKET *(*HTC_EP_RECV_ALLOC)(void *,
  105. HTC_ENDPOINT_ID Endpoint,
  106. int Length);
  107. typedef enum _HTC_SEND_FULL_ACTION {
  108. HTC_SEND_FULL_KEEP = 0, /* packet that overflowed should be kept in the queue */
  109. HTC_SEND_FULL_DROP = 1, /* packet that overflowed should be dropped */
  110. } HTC_SEND_FULL_ACTION;
  111. /* Optional per service connection callback when a send queue is full. This can occur if the
  112. * host continues queueing up TX packets faster than credits can arrive
  113. * To prevent the host (on some Oses like Linux) from continuously queueing packets
  114. * and consuming resources, this callback is provided so that that the host
  115. * can disable TX in the subsystem (i.e. network stack).
  116. * This callback is invoked for each packet that "overflows" the HTC queue. The callback can
  117. * determine whether the new packet that overflowed the queue can be kept (HTC_SEND_FULL_KEEP) or
  118. * dropped (HTC_SEND_FULL_DROP). If a packet is dropped, the EpTxComplete handler will be called
  119. * and the packet's status field will be set to A_NO_RESOURCE.
  120. * Other OSes require a "per-packet" indication for each completed TX packet, this
  121. * closed loop mechanism will prevent the network stack from overunning the NIC
  122. * The packet to keep or drop is passed for inspection to the registered handler the handler
  123. * must ONLY inspect the packet, it may not free or reclaim the packet. */
  124. typedef HTC_SEND_FULL_ACTION (*HTC_EP_SEND_QUEUE_FULL)(void *,
  125. HTC_PACKET *
  126. pPacket);
  127. typedef struct _HTC_EP_CALLBACKS {
  128. void *pContext; /* context for each callback */
  129. HTC_EP_SEND_PKT_COMPLETE EpTxComplete; /* tx completion callback for connected endpoint */
  130. HTC_EP_RECV_PKT EpRecv; /* receive callback for connected endpoint */
  131. HTC_EP_RECV_REFILL EpRecvRefill; /* OPTIONAL receive re-fill callback for connected endpoint */
  132. HTC_EP_SEND_QUEUE_FULL EpSendFull; /* OPTIONAL send full callback */
  133. HTC_EP_RECV_ALLOC EpRecvAlloc; /* OPTIONAL recv allocation callback */
  134. HTC_EP_RECV_ALLOC EpRecvAllocThresh; /* OPTIONAL recv allocation callback based on a threshold */
  135. HTC_EP_SEND_PKT_COMP_MULTIPLE EpTxCompleteMultiple; /* OPTIONAL completion handler for multiple complete
  136. indications (EpTxComplete must be NULL) */
  137. HTC_EP_RECV_PKT_MULTIPLE EpRecvPktMultiple; /* OPTIONAL completion handler for multiple
  138. recv packet indications (EpRecv must be NULL) */
  139. HTC_EP_RESUME_TX_QUEUE ep_resume_tx_queue;
  140. int RecvAllocThreshold; /* if EpRecvAllocThresh is non-NULL, HTC will compare the
  141. threshold value to the current recv packet length and invoke
  142. the EpRecvAllocThresh callback to acquire a packet buffer */
  143. int RecvRefillWaterMark; /* if a EpRecvRefill handler is provided, this value
  144. can be used to set a trigger refill callback
  145. when the recv queue drops below this value
  146. if set to 0, the refill is only called when packets
  147. are empty */
  148. } HTC_EP_CALLBACKS;
  149. /* service connection information */
  150. typedef struct _HTC_SERVICE_CONNECT_REQ {
  151. HTC_SERVICE_ID service_id; /* service ID to connect to */
  152. A_UINT16 ConnectionFlags; /* connection flags, see htc protocol definition */
  153. A_UINT8 *pMetaData; /* ptr to optional service-specific meta-data */
  154. A_UINT8 MetaDataLength; /* optional meta data length */
  155. HTC_EP_CALLBACKS EpCallbacks; /* endpoint callbacks */
  156. int MaxSendQueueDepth; /* maximum depth of any send queue */
  157. A_UINT32 LocalConnectionFlags; /* HTC flags for the host-side (local) connection */
  158. unsigned int MaxSendMsgSize; /* override max message size in send direction */
  159. } HTC_SERVICE_CONNECT_REQ;
  160. #define HTC_LOCAL_CONN_FLAGS_ENABLE_SEND_BUNDLE_PADDING (1 << 0) /* enable send bundle padding for this endpoint */
  161. /* service connection response information */
  162. typedef struct _HTC_SERVICE_CONNECT_RESP {
  163. A_UINT8 *pMetaData; /* caller supplied buffer to optional meta-data */
  164. A_UINT8 BufferLength; /* length of caller supplied buffer */
  165. A_UINT8 ActualLength; /* actual length of meta data */
  166. HTC_ENDPOINT_ID Endpoint; /* endpoint to communicate over */
  167. unsigned int MaxMsgLength; /* max length of all messages over this endpoint */
  168. A_UINT8 ConnectRespCode; /* connect response code from target */
  169. } HTC_SERVICE_CONNECT_RESP;
  170. /* endpoint distribution structure */
  171. typedef struct _HTC_ENDPOINT_CREDIT_DIST {
  172. struct _HTC_ENDPOINT_CREDIT_DIST *pNext;
  173. struct _HTC_ENDPOINT_CREDIT_DIST *pPrev;
  174. HTC_SERVICE_ID service_id; /* Service ID (set by HTC) */
  175. HTC_ENDPOINT_ID Endpoint; /* endpoint for this distribution struct (set by HTC) */
  176. A_UINT32 DistFlags; /* distribution flags, distribution function can
  177. set default activity using SET_EP_ACTIVE() macro */
  178. int TxCreditsNorm; /* credits for normal operation, anything above this
  179. indicates the endpoint is over-subscribed, this field
  180. is only relevant to the credit distribution function */
  181. int TxCreditsMin; /* floor for credit distribution, this field is
  182. only relevant to the credit distribution function */
  183. int TxCreditsAssigned; /* number of credits assigned to this EP, this field
  184. is only relevant to the credit dist function */
  185. int TxCredits; /* current credits available, this field is used by
  186. HTC to determine whether a message can be sent or
  187. must be queued */
  188. int TxCreditsToDist; /* pending credits to distribute on this endpoint, this
  189. is set by HTC when credit reports arrive.
  190. The credit distribution functions sets this to zero
  191. when it distributes the credits */
  192. int TxCreditsSeek; /* this is the number of credits that the current pending TX
  193. packet needs to transmit. This is set by HTC when
  194. and endpoint needs credits in order to transmit */
  195. int TxCreditSize; /* size in bytes of each credit (set by HTC) */
  196. int TxCreditsPerMaxMsg; /* credits required for a maximum sized messages (set by HTC) */
  197. void *pHTCReserved; /* reserved for HTC use */
  198. int TxQueueDepth; /* current depth of TX queue , i.e. messages waiting for credits
  199. This field is valid only when HTC_CREDIT_DIST_ACTIVITY_CHANGE
  200. or HTC_CREDIT_DIST_SEND_COMPLETE is indicated on an endpoint
  201. that has non-zero credits to recover
  202. */
  203. } HTC_ENDPOINT_CREDIT_DIST;
  204. #define HTC_EP_ACTIVE ((A_UINT32) (1u << 31))
  205. /* macro to check if an endpoint has gone active, useful for credit
  206. * distributions */
  207. #define IS_EP_ACTIVE(epDist) ((epDist)->DistFlags & HTC_EP_ACTIVE)
  208. #define SET_EP_ACTIVE(epDist) (epDist)->DistFlags |= HTC_EP_ACTIVE
  209. /* credit distibution code that is passed into the distrbution function,
  210. * there are mandatory and optional codes that must be handled */
  211. typedef enum _HTC_CREDIT_DIST_REASON {
  212. HTC_CREDIT_DIST_SEND_COMPLETE = 0, /* credits available as a result of completed
  213. send operations (MANDATORY) resulting in credit reports */
  214. HTC_CREDIT_DIST_ACTIVITY_CHANGE = 1, /* a change in endpoint activity occured (OPTIONAL) */
  215. HTC_CREDIT_DIST_SEEK_CREDITS, /* an endpoint needs to "seek" credits (OPTIONAL) */
  216. HTC_DUMP_CREDIT_STATE /* for debugging, dump any state information that is kept by
  217. the distribution function */
  218. } HTC_CREDIT_DIST_REASON;
  219. typedef void (*HTC_CREDIT_DIST_CALLBACK)(void *Context,
  220. HTC_ENDPOINT_CREDIT_DIST *
  221. pEPList,
  222. HTC_CREDIT_DIST_REASON
  223. Reason);
  224. typedef void (*HTC_CREDIT_INIT_CALLBACK)(void *Context,
  225. HTC_ENDPOINT_CREDIT_DIST *
  226. pEPList, int TotalCredits);
  227. /* endpoint statistics action */
  228. typedef enum _HTC_ENDPOINT_STAT_ACTION {
  229. HTC_EP_STAT_SAMPLE = 0, /* only read statistics */
  230. HTC_EP_STAT_SAMPLE_AND_CLEAR = 1, /* sample and immediately clear statistics */
  231. HTC_EP_STAT_CLEAR /* clear only */
  232. } HTC_ENDPOINT_STAT_ACTION;
  233. /* endpoint statistics */
  234. typedef struct _HTC_ENDPOINT_STATS {
  235. A_UINT32 TxPosted; /* number of TX packets posted to the endpoint */
  236. A_UINT32 TxCreditLowIndications; /* number of times the host set the credit-low flag in a send message on
  237. this endpoint */
  238. A_UINT32 TxIssued; /* running count of total TX packets issued */
  239. A_UINT32 TxPacketsBundled; /* running count of TX packets that were issued in bundles */
  240. A_UINT32 TxBundles; /* running count of TX bundles that were issued */
  241. A_UINT32 TxDropped; /* tx packets that were dropped */
  242. A_UINT32 TxCreditRpts; /* running count of total credit reports received for this endpoint */
  243. A_UINT32 TxCreditRptsFromRx; /* credit reports received from this endpoint's RX packets */
  244. A_UINT32 TxCreditRptsFromOther; /* credit reports received from RX packets of other endpoints */
  245. A_UINT32 TxCreditRptsFromEp0; /* credit reports received from endpoint 0 RX packets */
  246. A_UINT32 TxCreditsFromRx; /* count of credits received via Rx packets on this endpoint */
  247. A_UINT32 TxCreditsFromOther; /* count of credits received via another endpoint */
  248. A_UINT32 TxCreditsFromEp0; /* count of credits received via another endpoint */
  249. A_UINT32 TxCreditsConsummed; /* count of consummed credits */
  250. A_UINT32 TxCreditsReturned; /* count of credits returned */
  251. A_UINT32 RxReceived; /* count of RX packets received */
  252. A_UINT32 RxLookAheads; /* count of lookahead records
  253. found in messages received on this endpoint */
  254. A_UINT32 RxPacketsBundled; /* count of recv packets received in a bundle */
  255. A_UINT32 RxBundleLookAheads; /* count of number of bundled lookaheads */
  256. A_UINT32 RxBundleIndFromHdr; /* count of the number of bundle indications from the HTC header */
  257. A_UINT32 RxAllocThreshHit; /* count of the number of times the recv allocation threshhold was hit */
  258. A_UINT32 RxAllocThreshBytes; /* total number of bytes */
  259. } HTC_ENDPOINT_STATS;
  260. /* ------ Function Prototypes ------ */
  261. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  262. @desc: Create an instance of HTC over the underlying HIF device
  263. @function name: htc_create
  264. @input: HifDevice - hif device handle,
  265. pInfo - initialization information
  266. @output:
  267. @return: HTC_HANDLE on success, NULL on failure
  268. @notes:
  269. @example:
  270. @see also: htc_destroy
  271. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  272. HTC_HANDLE htc_create(void *HifDevice,
  273. HTC_INIT_INFO *pInfo, cdf_device_t osdev);
  274. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  275. @desc: Get the underlying HIF device handle
  276. @function name: htc_get_hif_device
  277. @input: HTCHandle - handle passed into the AddInstance callback
  278. @output:
  279. @return: opaque HIF device handle usable in HIF API calls.
  280. @notes:
  281. @example:
  282. @see also:
  283. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  284. void *htc_get_hif_device(HTC_HANDLE HTCHandle);
  285. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  286. @desc: Set credit distribution parameters
  287. @function name: htc_set_credit_distribution
  288. @input: HTCHandle - HTC handle
  289. pCreditDistCont - caller supplied context to pass into distribution functions
  290. CreditDistFunc - Distribution function callback
  291. CreditDistInit - Credit Distribution initialization callback
  292. ServicePriorityOrder - Array containing list of service IDs, lowest index is highest
  293. priority
  294. ListLength - number of elements in ServicePriorityOrder
  295. @output:
  296. @return:
  297. @notes: The user can set a custom credit distribution function to handle special requirements
  298. for each endpoint. A default credit distribution routine can be used by setting
  299. CreditInitFunc to NULL. The default credit distribution is only provided for simple
  300. "fair" credit distribution without regard to any prioritization.
  301. @example:
  302. @see also:
  303. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  304. void htc_set_credit_distribution(HTC_HANDLE HTCHandle,
  305. void *pCreditDistContext,
  306. HTC_CREDIT_DIST_CALLBACK CreditDistFunc,
  307. HTC_CREDIT_INIT_CALLBACK CreditInitFunc,
  308. HTC_SERVICE_ID ServicePriorityOrder[],
  309. int ListLength);
  310. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  311. @desc: Wait for the target to indicate the HTC layer is ready
  312. @function name: htc_wait_target
  313. @input: HTCHandle - HTC handle
  314. @output:
  315. @return:
  316. @notes: This API blocks until the target responds with an HTC ready message.
  317. The caller should not connect services until the target has indicated it is
  318. ready.
  319. @example:
  320. @see also: htc_connect_service
  321. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  322. A_STATUS htc_wait_target(HTC_HANDLE HTCHandle);
  323. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  324. @desc: Start target service communications
  325. @function name: htc_start
  326. @input: HTCHandle - HTC handle
  327. @output:
  328. @return:
  329. @notes: This API indicates to the target that the service connection phase is complete
  330. and the target can freely start all connected services. This API should only be
  331. called AFTER all service connections have been made. TCStart will issue a
  332. SETUP_COMPLETE message to the target to indicate that all service connections
  333. have been made and the target can start communicating over the endpoints.
  334. @example:
  335. @see also: htc_connect_service
  336. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  337. A_STATUS htc_start(HTC_HANDLE HTCHandle);
  338. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  339. @desc: Add receive packet to HTC
  340. @function name: htc_add_receive_pkt
  341. @input: HTCHandle - HTC handle
  342. pPacket - HTC receive packet to add
  343. @output:
  344. @return: A_OK on success
  345. @notes: user must supply HTC packets for capturing incomming HTC frames. The caller
  346. must initialize each HTC packet using the SET_HTC_PACKET_INFO_RX_REFILL()
  347. macro.
  348. @example:
  349. @see also:
  350. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  351. A_STATUS htc_add_receive_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket);
  352. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  353. @desc: Connect to an HTC service
  354. @function name: htc_connect_service
  355. @input: HTCHandle - HTC handle
  356. pReq - connection details
  357. @output: pResp - connection response
  358. @return:
  359. @notes: Service connections must be performed before htc_start. User provides callback handlers
  360. for various endpoint events.
  361. @example:
  362. @see also: htc_start
  363. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  364. A_STATUS htc_connect_service(HTC_HANDLE HTCHandle,
  365. HTC_SERVICE_CONNECT_REQ *pReq,
  366. HTC_SERVICE_CONNECT_RESP *pResp);
  367. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  368. @desc: HTC register log dump
  369. @function name: htc_dump
  370. @input: HTCHandle - HTC handle
  371. CmdId - Log command
  372. start - start/print logs
  373. @output:
  374. @return:
  375. @notes: Register logs will be started/printed.
  376. be flushed.
  377. @example:
  378. @see also:
  379. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  380. void htc_dump(HTC_HANDLE HTCHandle, uint8_t CmdId, bool start);
  381. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  382. @desc: Send an HTC packet
  383. @function name: htc_send_pkt
  384. @input: HTCHandle - HTC handle
  385. pPacket - packet to send
  386. @output:
  387. @return: A_OK
  388. @notes: Caller must initialize packet using SET_HTC_PACKET_INFO_TX() macro.
  389. This interface is fully asynchronous. On error, HTC SendPkt will
  390. call the registered Endpoint callback to cleanup the packet.
  391. @example:
  392. @see also: htc_flush_endpoint
  393. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  394. A_STATUS htc_send_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket);
  395. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  396. @desc: Send an HTC packet containing a tx descriptor and data
  397. @function name: htc_send_data_pkt
  398. @input: HTCHandle - HTC handle
  399. pPacket - packet to send
  400. @output:
  401. @return: A_OK
  402. @notes: Caller must initialize packet using SET_HTC_PACKET_INFO_TX() macro.
  403. Caller must provide headroom in an initial fragment added to the
  404. network buffer to store a HTC_FRAME_HDR.
  405. This interface is fully asynchronous. On error, htc_send_data_pkt will
  406. call the registered Endpoint EpDataTxComplete callback to cleanup
  407. the packet.
  408. @example:
  409. @see also: htc_send_pkt
  410. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  411. #ifdef ATH_11AC_TXCOMPACT
  412. A_STATUS htc_send_data_pkt(HTC_HANDLE HTCHandle, cdf_nbuf_t netbuf,
  413. int Epid, int ActualLength);
  414. #else /*ATH_11AC_TXCOMPACT */
  415. A_STATUS htc_send_data_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket,
  416. A_UINT8 more_data);
  417. #endif /*ATH_11AC_TXCOMPACT */
  418. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  419. @desc: Flush HTC when target is removed surprisely service communications
  420. @function name: htc_flush_surprise_remove
  421. @input: HTCHandle - HTC handle
  422. @output:
  423. @return:
  424. @notes: All receive and pending TX packets will
  425. be flushed.
  426. @example:
  427. @see also:
  428. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  429. void htc_flush_surprise_remove(HTC_HANDLE HTCHandle);
  430. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  431. @desc: Stop HTC service communications
  432. @function name: htc_stop
  433. @input: HTCHandle - HTC handle
  434. @output:
  435. @return:
  436. @notes: HTC communications is halted. All receive and pending TX packets will
  437. be flushed.
  438. @example:
  439. @see also:
  440. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  441. void htc_stop(HTC_HANDLE HTCHandle);
  442. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  443. @desc: Destory HTC service
  444. @function name: htc_destroy
  445. @input: HTCHandle
  446. @output:
  447. @return:
  448. @notes: This cleans up all resources allocated by htc_create().
  449. @example:
  450. @see also: htc_create
  451. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  452. void htc_destroy(HTC_HANDLE HTCHandle);
  453. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  454. @desc: Flush pending TX packets
  455. @function name: htc_flush_endpoint
  456. @input: HTCHandle - HTC handle
  457. Endpoint - Endpoint to flush
  458. Tag - flush tag
  459. @output:
  460. @return:
  461. @notes: The Tag parameter is used to selectively flush packets with matching tags.
  462. The value of 0 forces all packets to be flush regardless of tag.
  463. @example:
  464. @see also: htc_send_pkt
  465. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  466. void htc_flush_endpoint(HTC_HANDLE HTCHandle, HTC_ENDPOINT_ID Endpoint,
  467. HTC_TX_TAG Tag);
  468. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  469. @desc: Dump credit distribution state
  470. @function name: htc_dump_credit_states
  471. @input: HTCHandle - HTC handle
  472. @output:
  473. @return:
  474. @notes: This dumps all credit distribution information to the debugger
  475. @example:
  476. @see also:
  477. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  478. void htc_dump_credit_states(HTC_HANDLE HTCHandle);
  479. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  480. @desc: Indicate a traffic activity change on an endpoint
  481. @function name: htc_indicate_activity_change
  482. @input: HTCHandle - HTC handle
  483. Endpoint - endpoint in which activity has changed
  484. Active - true if active, false if it has become inactive
  485. @output:
  486. @return:
  487. @notes: This triggers the registered credit distribution function to
  488. re-adjust credits for active/inactive endpoints.
  489. @example:
  490. @see also:
  491. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  492. void htc_indicate_activity_change(HTC_HANDLE HTCHandle,
  493. HTC_ENDPOINT_ID Endpoint, A_BOOL Active);
  494. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  495. @desc: Get endpoint statistics
  496. @function name: htc_get_endpoint_statistics
  497. @input: HTCHandle - HTC handle
  498. Endpoint - Endpoint identifier
  499. Action - action to take with statistics
  500. @output:
  501. pStats - statistics that were sampled (can be NULL if Action is HTC_EP_STAT_CLEAR)
  502. @return: true if statistics profiling is enabled, otherwise false.
  503. @notes: Statistics is a compile-time option and this function may return false
  504. if HTC is not compiled with profiling.
  505. The caller can specify the statistic "action" to take when sampling
  506. the statistics. This includes:
  507. HTC_EP_STAT_SAMPLE: The pStats structure is filled with the current values.
  508. HTC_EP_STAT_SAMPLE_AND_CLEAR: The structure is filled and the current statistics
  509. are cleared.
  510. HTC_EP_STAT_CLEA : the statistics are cleared, the called can pass a NULL value for
  511. pStats
  512. @example:
  513. @see also:
  514. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  515. A_BOOL htc_get_endpoint_statistics(HTC_HANDLE HTCHandle,
  516. HTC_ENDPOINT_ID Endpoint,
  517. HTC_ENDPOINT_STAT_ACTION Action,
  518. HTC_ENDPOINT_STATS *pStats);
  519. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  520. @desc: Unblock HTC message reception
  521. @function name: htc_unblock_recv
  522. @input: HTCHandle - HTC handle
  523. @output:
  524. @return:
  525. @notes:
  526. HTC will block the receiver if the EpRecvAlloc callback fails to provide a packet.
  527. The caller can use this API to indicate to HTC when resources (buffers) are available
  528. such that the receiver can be unblocked and HTC may re-attempt fetching the pending message.
  529. This API is not required if the user uses the EpRecvRefill callback or uses the HTCAddReceivePacket()
  530. API to recycle or provide receive packets to HTC.
  531. @example:
  532. @see also:
  533. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  534. void htc_unblock_recv(HTC_HANDLE HTCHandle);
  535. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  536. @desc: send a series of HTC packets
  537. @function name: htc_send_pkts_multiple
  538. @input: HTCHandle - HTC handle
  539. pPktQueue - local queue holding packets to send
  540. @output:
  541. @return: A_OK
  542. @notes: Caller must initialize each packet using SET_HTC_PACKET_INFO_TX() macro.
  543. The queue must only contain packets directed at the same endpoint.
  544. Caller supplies a pointer to an HTC_PACKET_QUEUE structure holding the TX packets in FIFO order.
  545. This API will remove the packets from the pkt queue and place them into the HTC Tx Queue
  546. and bundle messages where possible.
  547. The caller may allocate the pkt queue on the stack to hold the packets.
  548. This interface is fully asynchronous. On error, htc_send_pkts will
  549. call the registered Endpoint callback to cleanup the packet.
  550. @example:
  551. @see also: htc_flush_endpoint
  552. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  553. A_STATUS htc_send_pkts_multiple(HTC_HANDLE HTCHandle,
  554. HTC_PACKET_QUEUE *pPktQueue);
  555. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  556. @desc: Add multiple receive packets to HTC
  557. @function name: htc_add_receive_pkt_multiple
  558. @input: HTCHandle - HTC handle
  559. pPktQueue - HTC receive packet queue holding packets to add
  560. @output:
  561. @return: A_OK on success
  562. @notes: user must supply HTC packets for capturing incomming HTC frames. The caller
  563. must initialize each HTC packet using the SET_HTC_PACKET_INFO_RX_REFILL()
  564. macro. The queue must only contain recv packets for the same endpoint.
  565. Caller supplies a pointer to an HTC_PACKET_QUEUE structure holding the recv packet.
  566. This API will remove the packets from the pkt queue and place them into internal
  567. recv packet list.
  568. The caller may allocate the pkt queue on the stack to hold the packets.
  569. @example:
  570. @see also:
  571. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  572. A_STATUS htc_add_receive_pkt_multiple(HTC_HANDLE HTCHandle,
  573. HTC_PACKET_QUEUE *pPktQueue);
  574. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  575. @desc: Check if an endpoint is marked active
  576. @function name: htc_is_endpoint_active
  577. @input: HTCHandle - HTC handle
  578. Endpoint - endpoint to check for active state
  579. @output:
  580. @return: returns true if Endpoint is Active
  581. @notes:
  582. @example:
  583. @see also:
  584. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  585. A_BOOL htc_is_endpoint_active(HTC_HANDLE HTCHandle,
  586. HTC_ENDPOINT_ID Endpoint);
  587. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  588. @desc: Get the number of recv buffers currently queued into an HTC endpoint
  589. @function name: htc_get_num_recv_buffers
  590. @input: HTCHandle - HTC handle
  591. Endpoint - endpoint to check
  592. @output:
  593. @return: returns number of buffers in queue
  594. @notes:
  595. @example:
  596. @see also:
  597. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  598. int htc_get_num_recv_buffers(HTC_HANDLE HTCHandle,
  599. HTC_ENDPOINT_ID Endpoint);
  600. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  601. @desc: Set the target failure handling callback in HTC layer
  602. @function name: htc_set_target_failure_callback
  603. @input: HTCHandle - HTC handle
  604. Callback - target failure handling callback
  605. @output:
  606. @return:
  607. @notes:
  608. @example:
  609. @see also:
  610. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  611. void htc_set_target_failure_callback(HTC_HANDLE HTCHandle,
  612. HTC_TARGET_FAILURE Callback);
  613. /* internally used functions for testing... */
  614. void htc_enable_recv(HTC_HANDLE HTCHandle);
  615. void htc_disable_recv(HTC_HANDLE HTCHandle);
  616. A_STATUS HTCWaitForPendingRecv(HTC_HANDLE HTCHandle,
  617. A_UINT32 TimeoutInMs,
  618. A_BOOL *pbIsRecvPending);
  619. /* function to fetch stats from htc layer*/
  620. struct ol_ath_htc_stats *ieee80211_ioctl_get_htc_stats(HTC_HANDLE
  621. HTCHandle);
  622. #ifdef HIF_USB
  623. #define HTCReturnReceivePkt(target,p,osbuf) \
  624. A_NETBUF_FREE(osbuf); \
  625. if(p->Status == A_CLONE) { \
  626. cdf_mem_free(p); \
  627. }
  628. #else
  629. #define HTCReturnReceivePkt(target,p,osbuf) htc_add_receive_pkt(target,p)
  630. #endif
  631. #ifdef WLAN_FEATURE_FASTPATH
  632. #define HTC_TX_DESC_FILL(_htc_tx_desc, _download_len, _ep_id, _seq_no) \
  633. do { \
  634. HTC_WRITE32((_htc_tx_desc), \
  635. SM((_download_len), HTC_FRAME_HDR_PAYLOADLEN) | \
  636. SM((_ep_id), HTC_FRAME_HDR_ENDPOINTID)); \
  637. \
  638. HTC_WRITE32((A_UINT32 *)(_htc_tx_desc) + 1, \
  639. SM((_seq_no), HTC_FRAME_HDR_CONTROLBYTES1));\
  640. } while (0)
  641. #endif /* WLAN_FEATURE_FASTPATH */
  642. #ifdef __cplusplus
  643. }
  644. #endif
  645. void htc_get_control_endpoint_tx_host_credits(HTC_HANDLE HTCHandle, int *credit);
  646. void htc_dump_counter_info(HTC_HANDLE HTCHandle);
  647. void *htc_get_targetdef(HTC_HANDLE htc_handle);
  648. void htc_set_target_to_sleep(void *context);
  649. void htc_cancel_deferred_target_sleep(void *context);
  650. int htc_runtime_suspend(void);
  651. int htc_runtime_resume(void);
  652. /* Disable ASPM : Disable PCIe low power */
  653. void htc_disable_aspm(void);
  654. #ifdef IPA_OFFLOAD
  655. void htc_ipa_get_ce_resource(HTC_HANDLE htc_handle,
  656. cdf_dma_addr_t *ce_sr_base_paddr,
  657. uint32_t *ce_sr_ring_size,
  658. cdf_dma_addr_t *ce_reg_paddr);
  659. #else
  660. #define htc_ipa_get_ce_resource(htc_handle, \
  661. ce_sr_base_paddr, \
  662. ce_sr_ring_size, \
  663. ce_reg_paddr) /* NO-OP */
  664. #endif /* IPA_OFFLOAD */
  665. #endif /* _HTC_API_H_ */