htc_api.h 28 KB

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