htc_api.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821
  1. /*
  2. * Copyright (c) 2013-2014, 2016-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef _HTC_API_H_
  19. #define _HTC_API_H_
  20. #include <htc.h>
  21. #include <htc_services.h>
  22. #include <qdf_types.h> /* qdf_device_t */
  23. #include "htc_packet.h"
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif /* __cplusplus */
  27. /* TODO.. for BMI */
  28. #define ENDPOINT1 0
  29. /* TODO -remove me, but we have to fix BMI first */
  30. #define HTC_MAILBOX_NUM_MAX 4
  31. /* this is the amount of header room required by users of HTC */
  32. #define HTC_HEADER_LEN HTC_HDR_LENGTH
  33. #define HTC_HTT_TRANSFER_HDRSIZE 24
  34. /*
  35. * NOTE WELL: struct opaque_htc_handle is not defined anywhere. This
  36. * reference is used to help ensure that a HTC_HANDLE is never used
  37. * where a different handle type is expected
  38. */
  39. struct opaque_htc_handle;
  40. typedef struct opaque_htc_handle *HTC_HANDLE;
  41. typedef uint16_t HTC_SERVICE_ID;
  42. typedef void (*HTC_TARGET_FAILURE)(void *Instance, QDF_STATUS Status);
  43. struct htc_init_info {
  44. void *pContext; /* context for target notifications */
  45. void (*TargetFailure)(void *Instance, QDF_STATUS Status);
  46. void (*TargetSendSuspendComplete)(void *ctx, bool is_nack);
  47. void (*target_initial_wakeup_cb)(void *cb_ctx);
  48. void *target_psoc;
  49. uint32_t cfg_wmi_credit_cnt;
  50. };
  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
  63. * the callback) to hold a list of completed send packets.
  64. * If the handler cannot fully traverse the packet queue before returning, it
  65. * should transfer the items of the queue into the caller's private queue using:
  66. * HTC_PACKET_ENQUEUE()
  67. */
  68. typedef void (*HTC_EP_SEND_PKT_COMP_MULTIPLE)(void *,
  69. HTC_PACKET_QUEUE *);
  70. /* per service connection pkt received */
  71. typedef void (*HTC_EP_RECV_PKT)(void *, HTC_PACKET *);
  72. /* per service connection callback when a plurality of packets are received
  73. * The HTC_PACKET_QUEUE is a temporary queue object (e.g. freed on return from
  74. * the callback) to hold a list of recv packets.
  75. * If the handler cannot fully traverse the packet queue before returning, it
  76. * should transfer the items of the queue into the caller's private queue using:
  77. * HTC_PACKET_ENQUEUE()
  78. */
  79. typedef void (*HTC_EP_RECV_PKT_MULTIPLE)(void *, HTC_PACKET_QUEUE *);
  80. /* Optional per service connection receive buffer re-fill callback,
  81. * On some OSes (like Linux) packets are allocated from a global pool and
  82. * indicated up to the network stack. The driver never gets the packets back
  83. * from the OS. For these OSes a refill callback can be used to allocate and
  84. * re-queue buffers into HTC.
  85. *
  86. * On other OSes, the network stack can call into the driver's OS-specific
  87. * "return_packet" handler and the driver can re-queue these buffers into HTC.
  88. * In this regard a refill callback is unnecessary
  89. */
  90. typedef void (*HTC_EP_RECV_REFILL)(void *, HTC_ENDPOINT_ID Endpoint);
  91. /* Optional per service connection receive buffer allocation callback.
  92. * On some systems packet buffers are an extremely limited resource. Rather than
  93. * queue largest-possible-sized buffers to HTC, some systems would rather
  94. * allocate a specific size as the packet is received. The trade off is
  95. * slightly more processing (callback invoked for each RX packet)
  96. * for the benefit of committing fewer buffer resources into HTC.
  97. *
  98. * The callback is provided the length of the pending packet to fetch. This
  99. * includes the HTC header length plus the length of payload. The callback can
  100. * return a pointer to the allocated HTC packet for immediate use.
  101. *
  102. * Alternatively a variant of this handler can be used to allocate large receive
  103. * packets as needed. For example an application can use the refill mechanism
  104. * for normal packets and the recv-alloc mechanism to handle the case where a
  105. * large packet buffer is required. This can significantly reduce the
  106. * amount of "committed" memory used to receive packets.
  107. */
  108. typedef HTC_PACKET *(*HTC_EP_RECV_ALLOC)(void *,
  109. HTC_ENDPOINT_ID Endpoint,
  110. int Length);
  111. enum htc_send_full_action {
  112. /* packet that overflowed should be kept in the queue */
  113. HTC_SEND_FULL_KEEP = 0,
  114. /* packet that overflowed should be dropped */
  115. HTC_SEND_FULL_DROP = 1,
  116. };
  117. /* Optional per service connection callback when a send queue is full. This can
  118. * occur if host continues queueing up TX packets faster than credits can arrive
  119. * To prevent the host (on some Oses like Linux) from continuously queueing pkts
  120. * and consuming resources, this callback is provided so that that the host
  121. * can disable TX in the subsystem (i.e. network stack).
  122. * This callback is invoked for each packet that "overflows" the HTC queue. The
  123. * callback can determine whether the new packet that overflowed the queue can
  124. * be kept (HTC_SEND_FULL_KEEP) or dropped (HTC_SEND_FULL_DROP). If a packet is
  125. * dropped, the EpTxComplete handler will be called and the packet's status
  126. * field will be set to A_NO_RESOURCE.
  127. * Other OSes require a "per-packet" indication for each completed TX packet,
  128. * this closed loop mechanism will prevent the network stack from overunning the
  129. * NIC. The packet to keep or drop is passed for inspection to the registered
  130. * handler the handler must ONLY inspect the packet, it may not free or reclaim
  131. * the packet.
  132. */
  133. typedef enum htc_send_full_action (*HTC_EP_SEND_QUEUE_FULL)(void *,
  134. HTC_PACKET *pPacket);
  135. struct htc_ep_callbacks {
  136. /* context for each callback */
  137. void *pContext;
  138. /* tx completion callback for connected endpoint */
  139. HTC_EP_SEND_PKT_COMPLETE EpTxComplete;
  140. /* receive callback for connected endpoint */
  141. HTC_EP_RECV_PKT EpRecv;
  142. /* OPTIONAL receive re-fill callback for connected endpoint */
  143. HTC_EP_RECV_REFILL EpRecvRefill;
  144. /* OPTIONAL send full callback */
  145. HTC_EP_SEND_QUEUE_FULL EpSendFull;
  146. /* OPTIONAL recv allocation callback */
  147. HTC_EP_RECV_ALLOC EpRecvAlloc;
  148. /* OPTIONAL recv allocation callback based on a threshold */
  149. HTC_EP_RECV_ALLOC EpRecvAllocThresh;
  150. /* OPTIONAL completion handler for multiple complete
  151. * indications (EpTxComplete must be NULL)
  152. */
  153. HTC_EP_SEND_PKT_COMP_MULTIPLE EpTxCompleteMultiple;
  154. HTC_EP_RESUME_TX_QUEUE ep_resume_tx_queue;
  155. /* if EpRecvAllocThresh is non-NULL, HTC will compare the
  156. * threshold value to the current recv packet length and invoke
  157. * the EpRecvAllocThresh callback to acquire a packet buffer
  158. */
  159. int RecvAllocThreshold;
  160. /* if a EpRecvRefill handler is provided, this value
  161. * can be used to set a trigger refill callback
  162. * when the recv queue drops below this value
  163. * if set to 0, the refill is only called when packets
  164. * are empty
  165. */
  166. int RecvRefillWaterMark;
  167. };
  168. /* service connection information */
  169. struct htc_service_connect_req {
  170. /* service ID to connect to */
  171. HTC_SERVICE_ID service_id;
  172. /* connection flags, see htc protocol definition */
  173. uint16_t ConnectionFlags;
  174. /* ptr to optional service-specific meta-data */
  175. uint8_t *pMetaData;
  176. /* optional meta data length */
  177. uint8_t MetaDataLength;
  178. /* endpoint callbacks */
  179. struct htc_ep_callbacks EpCallbacks;
  180. /* maximum depth of any send queue */
  181. int MaxSendQueueDepth;
  182. /* HTC flags for the host-side (local) connection */
  183. uint32_t LocalConnectionFlags;
  184. /* override max message size in send direction */
  185. unsigned int MaxSendMsgSize;
  186. };
  187. /* enable send bundle padding for this endpoint */
  188. #define HTC_LOCAL_CONN_FLAGS_ENABLE_SEND_BUNDLE_PADDING (1 << 0)
  189. /* service connection response information */
  190. struct htc_service_connect_resp {
  191. /* caller supplied buffer to optional meta-data */
  192. uint8_t *pMetaData;
  193. /* length of caller supplied buffer */
  194. uint8_t BufferLength;
  195. /* actual length of meta data */
  196. uint8_t ActualLength;
  197. /* endpoint to communicate over */
  198. HTC_ENDPOINT_ID Endpoint;
  199. /* max length of all messages over this endpoint */
  200. unsigned int MaxMsgLength;
  201. /* connect response code from target */
  202. uint8_t ConnectRespCode;
  203. };
  204. /* endpoint distribution structure */
  205. struct htc_endpoint_credit_dist {
  206. struct _htc_endpoint_credit_dist *pNext;
  207. struct _htc_endpoint_credit_dist *pPrev;
  208. /* Service ID (set by HTC) */
  209. HTC_SERVICE_ID service_id;
  210. /* endpoint for this distribution struct (set by HTC) */
  211. HTC_ENDPOINT_ID Endpoint;
  212. /* distribution flags, distribution function can
  213. * set default activity using SET_EP_ACTIVE() macro
  214. */
  215. uint32_t DistFlags;
  216. /* credits for normal operation, anything above this
  217. * indicates the endpoint is over-subscribed, this field
  218. * is only relevant to the credit distribution function
  219. */
  220. int TxCreditsNorm;
  221. /* floor for credit distribution, this field is
  222. * only relevant to the credit distribution function
  223. */
  224. int TxCreditsMin;
  225. /* number of credits assigned to this EP, this field
  226. * is only relevant to the credit dist function
  227. */
  228. int TxCreditsAssigned;
  229. /* current credits available, this field is used by
  230. * HTC to determine whether a message can be sent or
  231. * must be queued
  232. */
  233. int TxCredits;
  234. /* pending credits to distribute on this endpoint, this
  235. * is set by HTC when credit reports arrive.
  236. * The credit distribution functions sets this to zero
  237. * when it distributes the credits
  238. */
  239. int TxCreditsToDist;
  240. /* this is the number of credits that the current pending TX
  241. * packet needs to transmit. This is set by HTC when
  242. * and endpoint needs credits in order to transmit
  243. */
  244. int TxCreditsSeek;
  245. /* size in bytes of each credit (set by HTC) */
  246. int TxCreditSize;
  247. /* credits required for a maximum sized messages (set by HTC) */
  248. int TxCreditsPerMaxMsg;
  249. /* reserved for HTC use */
  250. void *pHTCReserved;
  251. /* current depth of TX queue , i.e. messages waiting for credits
  252. * This field is valid only when HTC_CREDIT_DIST_ACTIVITY_CHANGE
  253. * or HTC_CREDIT_DIST_SEND_COMPLETE is indicated on an endpoint
  254. * that has non-zero credits to recover
  255. */
  256. int TxQueueDepth;
  257. };
  258. #define HTC_EP_ACTIVE ((uint32_t) (1u << 31))
  259. /* macro to check if an endpoint has gone active, useful for credit
  260. * distributions */
  261. #define IS_EP_ACTIVE(epDist) ((epDist)->DistFlags & HTC_EP_ACTIVE)
  262. #define SET_EP_ACTIVE(epDist) (epDist)->DistFlags |= HTC_EP_ACTIVE
  263. /* credit distibution code that is passed into the distrbution function,
  264. * there are mandatory and optional codes that must be handled
  265. */
  266. enum htc_credit_dist_reason {
  267. /* credits available as a result of completed
  268. * send operations (MANDATORY) resulting in credit reports
  269. */
  270. HTC_CREDIT_DIST_SEND_COMPLETE = 0,
  271. /* a change in endpoint activity occurred (OPTIONAL) */
  272. HTC_CREDIT_DIST_ACTIVITY_CHANGE = 1,
  273. /* an endpoint needs to "seek" credits (OPTIONAL) */
  274. HTC_CREDIT_DIST_SEEK_CREDITS,
  275. /* for debugging, dump any state information that is kept by
  276. * the distribution function
  277. */
  278. HTC_DUMP_CREDIT_STATE
  279. };
  280. typedef void (*HTC_CREDIT_DIST_CALLBACK)(void *Context,
  281. struct htc_endpoint_credit_dist *
  282. pEPList,
  283. enum htc_credit_dist_reason
  284. Reason);
  285. typedef void (*HTC_CREDIT_INIT_CALLBACK)(void *Context,
  286. struct htc_endpoint_credit_dist *
  287. pEPList, int TotalCredits);
  288. /* endpoint statistics action */
  289. enum htc_endpoint_stat_action {
  290. /* only read statistics */
  291. HTC_EP_STAT_SAMPLE = 0,
  292. /* sample and immediately clear statistics */
  293. HTC_EP_STAT_SAMPLE_AND_CLEAR = 1,
  294. /* clear only */
  295. HTC_EP_STAT_CLEAR
  296. };
  297. /* endpoint statistics */
  298. struct htc_endpoint_stats {
  299. /* number of TX packets posted to the endpoint */
  300. uint32_t TxPosted;
  301. /* number of times the host set the credit-low flag in a send message on
  302. * this endpoint
  303. */
  304. uint32_t TxCreditLowIndications;
  305. /* running count of total TX packets issued */
  306. uint32_t TxIssued;
  307. /* running count of TX packets that were issued in bundles */
  308. uint32_t TxPacketsBundled;
  309. /* running count of TX bundles that were issued */
  310. uint32_t TxBundles;
  311. /* tx packets that were dropped */
  312. uint32_t TxDropped;
  313. /* running count of total credit reports received for this endpoint */
  314. uint32_t TxCreditRpts;
  315. /* credit reports received from this endpoint's RX packets */
  316. uint32_t TxCreditRptsFromRx;
  317. /* credit reports received from RX packets of other endpoints */
  318. uint32_t TxCreditRptsFromOther;
  319. /* credit reports received from endpoint 0 RX packets */
  320. uint32_t TxCreditRptsFromEp0;
  321. /* count of credits received via Rx packets on this endpoint */
  322. uint32_t TxCreditsFromRx;
  323. /* count of credits received via another endpoint */
  324. uint32_t TxCreditsFromOther;
  325. /* count of credits received via another endpoint */
  326. uint32_t TxCreditsFromEp0;
  327. /* count of consummed credits */
  328. uint32_t TxCreditsConsummed;
  329. /* count of credits returned */
  330. uint32_t TxCreditsReturned;
  331. /* count of RX packets received */
  332. uint32_t RxReceived;
  333. /* count of lookahead records
  334. * found in messages received on this endpoint
  335. */
  336. uint32_t RxLookAheads;
  337. /* count of recv packets received in a bundle */
  338. uint32_t RxPacketsBundled;
  339. /* count of number of bundled lookaheads */
  340. uint32_t RxBundleLookAheads;
  341. /* count of the number of bundle indications from the HTC header */
  342. uint32_t RxBundleIndFromHdr;
  343. /* number of times the recv allocation threshold was hit */
  344. uint32_t RxAllocThreshHit;
  345. /* total number of bytes */
  346. uint32_t RxAllocThreshBytes;
  347. };
  348. /* ------ Function Prototypes ------ */
  349. /**
  350. * htc_create - Create an instance of HTC over the underlying HIF device
  351. * @HifDevice: hif device handle,
  352. * @pInfo: initialization information
  353. * @osdev: QDF device structure
  354. * @con_mode: driver connection mode
  355. *
  356. * Return: HTC_HANDLE on success, NULL on failure
  357. */
  358. HTC_HANDLE htc_create(void *HifDevice, struct htc_init_info *pInfo,
  359. qdf_device_t osdev, uint32_t con_mode);
  360. /**
  361. * htc_get_hif_device - Get the underlying HIF device handle
  362. * @HTCHandle: handle passed into the AddInstance callback
  363. *
  364. * Return: opaque HIF device handle usable in HIF API calls.
  365. */
  366. void *htc_get_hif_device(HTC_HANDLE HTCHandle);
  367. /**
  368. * htc_set_credit_distribution - Set credit distribution parameters
  369. * @HTCHandle: HTC handle
  370. * @pCreditDistCont: caller supplied context to pass into distribution functions
  371. * @CreditDistFunc: Distribution function callback
  372. * @CreditDistInit: Credit Distribution initialization callback
  373. * @ServicePriorityOrder: Array containing list of service IDs, lowest index
  374. * @is highestpriority: ListLength - number of elements in ServicePriorityOrder
  375. *
  376. * The user can set a custom credit distribution function to handle
  377. * special requirementsfor each endpoint. A default credit distribution
  378. * routine can be used by setting CreditInitFunc to NULL. The default
  379. * credit distribution is only provided for simple "fair" credit distribution
  380. * without regard to any prioritization.
  381. * Return: None
  382. */
  383. void htc_set_credit_distribution(HTC_HANDLE HTCHandle,
  384. void *pCreditDistContext,
  385. HTC_CREDIT_DIST_CALLBACK CreditDistFunc,
  386. HTC_CREDIT_INIT_CALLBACK CreditInitFunc,
  387. HTC_SERVICE_ID ServicePriorityOrder[],
  388. int ListLength);
  389. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  390. * Wait for the target to indicate the HTC layer is ready
  391. * htc_wait_target
  392. * @HTCHandle - HTC handle
  393. *
  394. * This API blocks until the target responds with an HTC ready message.
  395. * The caller should not connect services until the target has indicated it is
  396. * ready.
  397. * Return: None
  398. */
  399. QDF_STATUS htc_wait_target(HTC_HANDLE HTCHandle);
  400. /**
  401. * htc_start - Start target service communications
  402. * @HTCHandle - HTC handle
  403. *
  404. * This API indicates to the target that the service connection phase
  405. * is completeand the target can freely start all connected services. This
  406. * API should only be called AFTER all service connections have been made.
  407. * TCStart will issue a SETUP_COMPLETE message to the target to indicate that
  408. * all service connections have been made and the target can start
  409. * communicating over the endpoints.
  410. * Return: None
  411. */
  412. QDF_STATUS htc_start(HTC_HANDLE HTCHandle);
  413. /**
  414. * htc_connect_service - Connect to an HTC service
  415. * @HTCHandle - HTC handle
  416. * @pReq - connection details
  417. * @pResp - connection response
  418. *
  419. * Service connections must be performed before htc_start.
  420. * User provides callback handlersfor various endpoint events.
  421. * Return: None
  422. */
  423. QDF_STATUS htc_connect_service(HTC_HANDLE HTCHandle,
  424. struct htc_service_connect_req *pReq,
  425. struct htc_service_connect_resp *pResp);
  426. /**
  427. * htc_dump - HTC register log dump
  428. * @HTCHandle - HTC handle
  429. * @CmdId - Log command
  430. * @start - start/print logs
  431. *
  432. * Register logs will be started/printed/ be flushed.
  433. * Return: None
  434. */
  435. void htc_dump(HTC_HANDLE HTCHandle, uint8_t CmdId, bool start);
  436. /**
  437. * htc_send_pkt - Send an HTC packet
  438. * @HTCHandle - HTC handle
  439. * @pPacket - packet to send
  440. *
  441. * Caller must initialize packet using SET_HTC_PACKET_INFO_TX() macro.
  442. * This interface is fully asynchronous. On error, HTC SendPkt will
  443. * call the registered Endpoint callback to cleanup the packet.
  444. * Return: QDF_STATUS_SUCCESS
  445. */
  446. QDF_STATUS htc_send_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket);
  447. /**
  448. * htc_send_data_pkt - Send an HTC packet containing a tx descriptor and data
  449. * @HTCHandle - HTC handle
  450. * @pPacket - packet to send
  451. *
  452. * Caller must initialize packet using SET_HTC_PACKET_INFO_TX() macro.
  453. * Caller must provide headroom in an initial fragment added to the
  454. * network buffer to store a HTC_FRAME_HDR.
  455. * This interface is fully asynchronous. On error, htc_send_data_pkt will
  456. * call the registered Endpoint EpDataTxComplete callback to cleanup
  457. * the packet.
  458. * Return: A_OK
  459. */
  460. #ifdef ATH_11AC_TXCOMPACT
  461. QDF_STATUS htc_send_data_pkt(HTC_HANDLE HTCHandle, qdf_nbuf_t netbuf,
  462. int Epid, int ActualLength);
  463. #else /*ATH_11AC_TXCOMPACT */
  464. QDF_STATUS htc_send_data_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket,
  465. uint8_t more_data);
  466. #endif /*ATH_11AC_TXCOMPACT */
  467. /**
  468. * htc_flush_surprise_remove - Flush HTC when target is removed surprisely
  469. * service communications
  470. * @HTCHandle - HTC handle
  471. *
  472. * All receive and pending TX packets will be flushed.
  473. * Return: None
  474. */
  475. void htc_flush_surprise_remove(HTC_HANDLE HTCHandle);
  476. /**
  477. * htc_stop - Stop HTC service communications
  478. * @HTCHandle - HTC handle
  479. *
  480. * HTC communications is halted. All receive and pending TX packets
  481. * will be flushed.
  482. * Return: None
  483. */
  484. void htc_stop(HTC_HANDLE HTCHandle);
  485. /**
  486. * htc_destroy - Destroy HTC service
  487. * @HTCHandle - HTC handle
  488. *
  489. * This cleans up all resources allocated by htc_create().
  490. * Return: None
  491. */
  492. void htc_destroy(HTC_HANDLE HTCHandle);
  493. /**
  494. * htc_flush_endpoint - Flush pending TX packets
  495. * @HTCHandle - HTC handle
  496. * @Endpoint - Endpoint to flush
  497. * @Tag - flush tag
  498. *
  499. * The Tag parameter is used to selectively flush packets with matching
  500. * tags. The value of 0 forces all packets to be flush regardless of tag
  501. * Return: None
  502. */
  503. void htc_flush_endpoint(HTC_HANDLE HTCHandle, HTC_ENDPOINT_ID Endpoint,
  504. HTC_TX_TAG Tag);
  505. /**
  506. * htc_dump_credit_states - Dump credit distribution state
  507. * @HTCHandle - HTC handle
  508. *
  509. * This dumps all credit distribution information to the debugger
  510. * Return: None
  511. */
  512. void htc_dump_credit_states(HTC_HANDLE HTCHandle);
  513. /**
  514. * htc_indicate_activity_change - Indicate a traffic activity change on an
  515. * endpoint
  516. * @HTCHandle - HTC handle
  517. * @Endpoint - endpoint in which activity has changed
  518. * @Active - true if active, false if it has become inactive
  519. *
  520. * This triggers the registered credit distribution function to
  521. * re-adjust credits for active/inactive endpoints.
  522. * Return: None
  523. */
  524. void htc_indicate_activity_change(HTC_HANDLE HTCHandle,
  525. HTC_ENDPOINT_ID Endpoint, bool Active);
  526. /**
  527. * htc_get_endpoint_statistics - Get endpoint statistics
  528. * @HTCHandle - HTC handle
  529. * @Endpoint - Endpoint identifier
  530. * @Action - action to take with statistics
  531. * @pStats - statistics that were sampled (can be NULL if Action is
  532. * HTC_EP_STAT_CLEAR)
  533. *
  534. * Statistics is a compile-time option and this function may return
  535. * false if HTC is not compiled with profiling.
  536. * The caller can specify the statistic "action" to take when sampling
  537. * the statistics. This includes :
  538. * HTC_EP_STAT_SAMPLE : The pStats structure is filled with the current
  539. * values.
  540. * HTC_EP_STAT_SAMPLE_AND_CLEAR : The structure is filled and the current
  541. * statisticsare cleared.
  542. * HTC_EP_STAT_CLEA : the statistics are cleared, the called can pass
  543. * a NULL value for pStats
  544. * Return: true if statistics profiling is enabled, otherwise false.
  545. */
  546. bool htc_get_endpoint_statistics(HTC_HANDLE HTCHandle,
  547. HTC_ENDPOINT_ID Endpoint,
  548. enum htc_endpoint_stat_action Action,
  549. struct htc_endpoint_stats *pStats);
  550. /**
  551. * htc_unblock_recv - Unblock HTC message reception
  552. * @HTCHandle - HTC handle
  553. *
  554. * HTC will block the receiver if the EpRecvAlloc callback fails to provide a
  555. * packet. The caller can use this API to indicate to HTC when resources
  556. * (buffers) are available such that the receiver can be unblocked and HTC
  557. * may re-attempt fetching the pending message.
  558. * This API is not required if the user uses the EpRecvRefill callback or uses
  559. * the HTCAddReceivePacket()API to recycle or provide receive packets to HTC.
  560. * Return: None
  561. */
  562. void htc_unblock_recv(HTC_HANDLE HTCHandle);
  563. /**
  564. * htc_add_receive_pkt_multiple - Add multiple receive packets to HTC
  565. * @HTCHandle - HTC handle
  566. * @pPktQueue - HTC receive packet queue holding packets to add
  567. *
  568. * User must supply HTC packets for capturing incoming HTC frames.
  569. * The caller mmust initialize each HTC packet using the
  570. * SET_HTC_PACKET_INFO_RX_REFILL() macro. The queue must only contain
  571. * recv packets for the same endpoint. Caller supplies a pointer to an
  572. * HTC_PACKET_QUEUE structure holding the recv packet. This API will
  573. * remove the packets from the pkt queue and place them into internal
  574. * recv packet list.
  575. * The caller may allocate the pkt queue on the stack to hold the pkts.
  576. * Return: A_OK on success
  577. */
  578. A_STATUS htc_add_receive_pkt_multiple(HTC_HANDLE HTCHandle,
  579. HTC_PACKET_QUEUE *pPktQueue);
  580. /**
  581. * htc_is_endpoint_active - Check if an endpoint is marked active
  582. * @HTCHandle - HTC handle
  583. * @Endpoint - endpoint to check for active state
  584. *
  585. * Return: returns true if Endpoint is Active
  586. */
  587. bool htc_is_endpoint_active(HTC_HANDLE HTCHandle,
  588. HTC_ENDPOINT_ID Endpoint);
  589. /**
  590. * htc_set_nodrop_pkt - Set up nodrop pkt flag for mboxping nodrop pkt
  591. * @HTCHandle - HTC handle
  592. * @isNodropPkt - indicates whether it is nodrop pkt
  593. *
  594. * Return: None
  595. *
  596. */
  597. void htc_set_nodrop_pkt(HTC_HANDLE HTCHandle, A_BOOL isNodropPkt);
  598. /**
  599. * htc_enable_hdr_length_check - Set up htc_hdr_length_check flag
  600. * @HTCHandle - HTC handle
  601. * @htc_hdr_length_check - flag to indicate whether htc header length check is
  602. * required
  603. *
  604. * Return: None
  605. *
  606. */
  607. void
  608. htc_enable_hdr_length_check(HTC_HANDLE htc_handle, bool htc_hdr_length_check);
  609. /**
  610. * htc_get_num_recv_buffers - Get the number of recv buffers currently queued
  611. * into an HTC endpoint
  612. * @HTCHandle - HTC handle
  613. * @Endpoint - endpoint to check
  614. *
  615. * Return: returns number of buffers in queue
  616. *
  617. */
  618. int htc_get_num_recv_buffers(HTC_HANDLE HTCHandle,
  619. HTC_ENDPOINT_ID Endpoint);
  620. /**
  621. * htc_set_target_failure_callback - Set the target failure handling callback
  622. * in HTC layer
  623. * @HTCHandle - HTC handle
  624. * @Callback - target failure handling callback
  625. *
  626. * Return: None
  627. */
  628. void htc_set_target_failure_callback(HTC_HANDLE HTCHandle,
  629. HTC_TARGET_FAILURE Callback);
  630. /* internally used functions for testing... */
  631. void htc_enable_recv(HTC_HANDLE HTCHandle);
  632. void htc_disable_recv(HTC_HANDLE HTCHandle);
  633. A_STATUS HTCWaitForPendingRecv(HTC_HANDLE HTCHandle,
  634. uint32_t TimeoutInMs,
  635. bool *pbIsRecvPending);
  636. /* function to fetch stats from htc layer*/
  637. struct ol_ath_htc_stats *ieee80211_ioctl_get_htc_stats(HTC_HANDLE
  638. HTCHandle);
  639. /**
  640. * htc_get_tx_queue_depth() - get the tx queue depth of an htc endpoint
  641. * @htc_handle: htc handle
  642. * @enpoint_id: endpoint to check
  643. *
  644. * Return: htc_handle tx queue depth
  645. */
  646. int htc_get_tx_queue_depth(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id);
  647. #ifdef WLAN_FEATURE_FASTPATH
  648. void htc_ctrl_msg_cmpl(HTC_HANDLE htc_pdev, HTC_ENDPOINT_ID htc_ep_id);
  649. #define HTC_TX_DESC_FILL(_htc_tx_desc, _download_len, _ep_id, _seq_no) \
  650. do { \
  651. HTC_WRITE32((_htc_tx_desc), \
  652. SM((_download_len), HTC_FRAME_HDR_PAYLOADLEN) | \
  653. SM((_ep_id), HTC_FRAME_HDR_ENDPOINTID)); \
  654. HTC_WRITE32((uint32_t *)(_htc_tx_desc) + 1, \
  655. SM((_seq_no), HTC_FRAME_HDR_CONTROLBYTES1)); \
  656. } while (0)
  657. #endif /* WLAN_FEATURE_FASTPATH */
  658. #ifdef __cplusplus
  659. }
  660. #endif
  661. void htc_get_control_endpoint_tx_host_credits(HTC_HANDLE HTCHandle,
  662. int *credit);
  663. void htc_dump_counter_info(HTC_HANDLE HTCHandle);
  664. void *htc_get_targetdef(HTC_HANDLE htc_handle);
  665. #ifdef FEATURE_RUNTIME_PM
  666. int htc_runtime_suspend(HTC_HANDLE htc_ctx);
  667. int htc_runtime_resume(HTC_HANDLE htc_ctx);
  668. #endif
  669. void htc_global_credit_flow_disable(void);
  670. void htc_global_credit_flow_enable(void);
  671. /* Disable ASPM : Disable PCIe low power */
  672. bool htc_can_suspend_link(HTC_HANDLE HTCHandle);
  673. void htc_vote_link_down(HTC_HANDLE HTCHandle);
  674. void htc_vote_link_up(HTC_HANDLE HTCHandle);
  675. #ifdef IPA_OFFLOAD
  676. void htc_ipa_get_ce_resource(HTC_HANDLE htc_handle,
  677. qdf_shared_mem_t **ce_sr,
  678. uint32_t *ce_sr_ring_size,
  679. qdf_dma_addr_t *ce_reg_paddr);
  680. #else
  681. #define htc_ipa_get_ce_resource(htc_handle, \
  682. ce_sr, ce_sr_ring_size, ce_reg_paddr) /* NO-OP */
  683. #endif /* IPA_OFFLOAD */
  684. #if defined(DEBUG_HL_LOGGING) && defined(CONFIG_HL_SUPPORT)
  685. /**
  686. * htc_dump_bundle_stats() - dump tx and rx htc message bundle stats
  687. * @HTCHandle: htc handle
  688. *
  689. * Return: None
  690. */
  691. void htc_dump_bundle_stats(HTC_HANDLE HTCHandle);
  692. /**
  693. * htc_clear_bundle_stats() - clear tx and rx htc message bundle stats
  694. * @HTCHandle: htc handle
  695. *
  696. * Return: None
  697. */
  698. void htc_clear_bundle_stats(HTC_HANDLE HTCHandle);
  699. #endif
  700. #ifdef FEATURE_RUNTIME_PM
  701. int htc_pm_runtime_get(HTC_HANDLE htc_handle);
  702. int htc_pm_runtime_put(HTC_HANDLE htc_handle);
  703. #else
  704. static inline int htc_pm_runtime_get(HTC_HANDLE htc_handle) { return 0; }
  705. static inline int htc_pm_runtime_put(HTC_HANDLE htc_handle) { return 0; }
  706. #endif
  707. /**
  708. * htc_set_async_ep() - set async HTC end point
  709. * user should call this function after htc_connect_service before
  710. * queing any packets to end point
  711. * @HTCHandle: htc handle
  712. * @HTC_ENDPOINT_ID: end point id
  713. * @value: true or false
  714. *
  715. * Return: None
  716. */
  717. void htc_set_async_ep(HTC_HANDLE HTCHandle,
  718. HTC_ENDPOINT_ID htc_ep_id, bool value);
  719. /**
  720. * htc_set_wmi_endpoint_count: Set number of WMI endpoint
  721. * @htc_handle: HTC handle
  722. * @wmi_ep_count: WMI enpoint count
  723. *
  724. * return: None
  725. */
  726. void htc_set_wmi_endpoint_count(HTC_HANDLE htc_handle, uint8_t wmi_ep_count);
  727. /**
  728. * htc_get_wmi_endpoint_count: Get number of WMI endpoint
  729. * @htc_handle: HTC handle
  730. *
  731. * return: WMI enpoint count
  732. */
  733. uint8_t htc_get_wmi_endpoint_count(HTC_HANDLE htc_handle);
  734. /**
  735. * htc_print_credit_history: print HTC credit history in buffer
  736. * @htc: HTC handle
  737. * @count: Number of lines to be copied
  738. * @print: Print callback to print in the buffer
  739. * @print_priv: any data required by the print method, e.g. a file handle
  740. *
  741. * return: None
  742. */
  743. #ifdef FEATURE_HTC_CREDIT_HISTORY
  744. void htc_print_credit_history(HTC_HANDLE htc, uint32_t count,
  745. qdf_abstract_print * print, void *print_priv);
  746. #else
  747. static inline
  748. void htc_print_credit_history(HTC_HANDLE htc, uint32_t count,
  749. qdf_abstract_print *print, void *print_priv)
  750. {
  751. print(print_priv, "HTC Credit History Feature is disabled");
  752. }
  753. #endif
  754. #endif /* _HTC_API_H_ */