xref: /wlan-dirver/qca-wifi-host-cmn/htc/htc_api.h (revision 5db38f17138c409346f0ba0d72e13640f35d04b5)
1 /*
2  * Copyright (c) 2013-2014, 2016-2021 The Linux Foundation. All rights reserved.
3  * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for
6  * any purpose with or without fee is hereby granted, provided that the
7  * above copyright notice and this permission notice appear in all
8  * copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17  * PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #ifndef _HTC_API_H_
21 #define _HTC_API_H_
22 
23 #include <htc.h>
24 #include <htc_services.h>
25 #include <qdf_types.h>          /* qdf_device_t */
26 #include "htc_packet.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31 
32 /* TODO.. for BMI */
33 #define ENDPOINT1 0
34 /* TODO -remove me, but we have to fix BMI first */
35 #define HTC_MAILBOX_NUM_MAX    4
36 
37 /* this is the amount of header room required by users of HTC */
38 #define HTC_HEADER_LEN         HTC_HDR_LENGTH
39 
40 #define HTC_HTT_TRANSFER_HDRSIZE 24
41 
42 /*
43  * NOTE WELL: struct opaque_htc_handle is not defined anywhere. This
44  * reference is used to help ensure that a HTC_HANDLE is never used
45  * where a different handle type is expected
46  */
47 struct opaque_htc_handle;
48 typedef struct opaque_htc_handle *HTC_HANDLE;
49 
50 typedef uint16_t HTC_SERVICE_ID;
51 
52 typedef void (*HTC_TARGET_FAILURE)(void *Instance, QDF_STATUS Status);
53 
54 struct htc_init_info {
55 	void *pContext;         /* context for target notifications */
56 	void (*TargetFailure)(void *Instance, QDF_STATUS Status);
57 	void (*TargetSendSuspendComplete)(void *ctx, bool is_nack,
58 					  uint16_t reason_code);
59 	void (*target_initial_wakeup_cb)(void *cb_ctx);
60 	void *target_psoc;
61 	uint32_t cfg_wmi_credit_cnt;
62 	/* HTC Pipe Ready Timeout in msecs */
63 	uint32_t htc_ready_timeout_ms;
64 };
65 
66 /* Struct for HTC layer packet stats*/
67 struct ol_ath_htc_stats {
68 	int htc_get_pkt_q_fail_count;
69 	int htc_pkt_q_empty_count;
70 	int htc_send_q_empty_count;
71 };
72 
73 /* To resume HTT Tx queue during runtime resume */
74 typedef void (*HTC_EP_RESUME_TX_QUEUE)(void *);
75 
76 typedef int (*HTC_EP_PADDING_CREDIT_UPDATE) (void *, int);
77 
78 /* per service connection send completion */
79 typedef void (*HTC_EP_SEND_PKT_COMPLETE)(void *, HTC_PACKET *);
80 /* per service connection callback when a plurality of packets have been sent
81  * The HTC_PACKET_QUEUE is a temporary queue object (e.g. freed on return from
82  * the callback) to hold a list of completed send packets.
83  * If the handler cannot fully traverse the packet queue before returning, it
84  * should transfer the items of the queue into the caller's private queue using:
85  * HTC_PACKET_ENQUEUE()
86  */
87 typedef void (*HTC_EP_SEND_PKT_COMP_MULTIPLE)(void *,
88 					      HTC_PACKET_QUEUE *);
89 /* per service connection pkt received */
90 typedef void (*HTC_EP_RECV_PKT)(void *, HTC_PACKET *);
91 /* per service connection callback when a plurality of packets are received
92  * The HTC_PACKET_QUEUE is a temporary queue object (e.g. freed on return from
93  * the callback) to hold a list of recv packets.
94  * If the handler cannot fully traverse the packet queue before returning, it
95  * should transfer the items of the queue into the caller's private queue using:
96  * HTC_PACKET_ENQUEUE()
97  */
98 typedef void (*HTC_EP_RECV_PKT_MULTIPLE)(void *, HTC_PACKET_QUEUE *);
99 
100 /* Optional per service connection receive buffer re-fill callback,
101  * On some OSes (like Linux) packets are allocated from a global pool and
102  * indicated up to the network stack.  The driver never gets the packets back
103  * from the OS. For these OSes a refill callback can be used to allocate and
104  * re-queue buffers into HTC.
105  *
106  * On other OSes, the network stack can call into the driver's OS-specific
107  * "return_packet" handler and the driver can re-queue these buffers into HTC.
108  * In this regard a refill callback is unnecessary
109  */
110 typedef void (*HTC_EP_RECV_REFILL)(void *, HTC_ENDPOINT_ID Endpoint);
111 
112 /* Optional per service connection receive buffer allocation callback.
113  * On some systems packet buffers are an extremely limited resource. Rather than
114  * queue largest-possible-sized buffers to HTC, some systems would rather
115  * allocate a specific size as the packet is received.  The trade off is
116  * slightly more processing (callback invoked for each RX packet)
117  * for the benefit of committing fewer buffer resources into HTC.
118  *
119  * The callback is provided the length of the pending packet to fetch. This
120  * includes the HTC header length plus the length of payload.  The callback can
121  * return a pointer to the allocated HTC packet for immediate use.
122  *
123  * Alternatively a variant of this handler can be used to allocate large receive
124  * packets as needed. For example an application can use the refill mechanism
125  * for normal packets and the recv-alloc mechanism to handle the case where a
126  * large packet buffer is required.  This can significantly reduce the
127  * amount of "committed" memory used to receive packets.
128  */
129 typedef HTC_PACKET *(*HTC_EP_RECV_ALLOC)(void *,
130 					 HTC_ENDPOINT_ID Endpoint,
131 					 int Length);
132 
133 /* Optional per service connection callback to log packet information.
134  */
135 typedef void (*HTC_EP_LOG_PKT)(void *, HTC_PACKET *);
136 
137 enum htc_send_full_action {
138 	/* packet that overflowed should be kept in the queue */
139 	HTC_SEND_FULL_KEEP = 0,
140 	/* packet that overflowed should be dropped */
141 	HTC_SEND_FULL_DROP = 1,
142 };
143 
144 /* Optional per service connection callback when a send queue is full. This can
145  * occur if host continues queueing up TX packets faster than credits can arrive
146  * To prevent the host (on some Oses like Linux) from continuously queueing pkts
147  * and consuming resources, this callback is provided so that that the host
148  * can disable TX in the subsystem (i.e. network stack).
149  * This callback is invoked for each packet that "overflows" the HTC queue. The
150  * callback can determine whether the new packet that overflowed the queue can
151  * be kept (HTC_SEND_FULL_KEEP) or dropped (HTC_SEND_FULL_DROP). If a packet is
152  * dropped, the EpTxComplete handler will be called and the packet's status
153  * field will be set to A_NO_RESOURCE.
154  * Other OSes require a "per-packet" indication for each completed TX packet,
155  * this closed loop mechanism will prevent the network stack from overunning the
156  * NIC. The packet to keep or drop is passed for inspection to the registered
157  * handler the handler must ONLY inspect the packet, it may not free or reclaim
158  * the packet.
159  */
160 typedef enum htc_send_full_action (*HTC_EP_SEND_QUEUE_FULL)(void *,
161 					       HTC_PACKET *pPacket);
162 
163 struct htc_ep_callbacks {
164 	/* context for each callback */
165 	void *pContext;
166 	/* tx completion callback for connected endpoint */
167 	HTC_EP_SEND_PKT_COMPLETE EpTxComplete;
168 	/* receive callback for connected endpoint */
169 	HTC_EP_RECV_PKT EpRecv;
170 	/* OPTIONAL receive re-fill callback for connected endpoint */
171 	HTC_EP_RECV_REFILL EpRecvRefill;
172 	/* OPTIONAL send full callback */
173 	HTC_EP_SEND_QUEUE_FULL EpSendFull;
174 	/* OPTIONAL recv allocation callback */
175 	HTC_EP_RECV_ALLOC EpRecvAlloc;
176 	/* OPTIONAL recv allocation callback based on a threshold */
177 	HTC_EP_RECV_ALLOC EpRecvAllocThresh;
178 	/* OPTIONAL completion handler for multiple complete
179 	 * indications (EpTxComplete must be NULL)
180 	 */
181 	HTC_EP_SEND_PKT_COMP_MULTIPLE EpTxCompleteMultiple;
182 
183 	HTC_EP_RESUME_TX_QUEUE ep_resume_tx_queue;
184 
185 	HTC_EP_PADDING_CREDIT_UPDATE ep_padding_credit_update;
186 	/* if EpRecvAllocThresh is non-NULL, HTC will compare the
187 	 * threshold value to the current recv packet length and invoke
188 	 * the EpRecvAllocThresh callback to acquire a packet buffer
189 	 */
190 	int RecvAllocThreshold;
191 	/* if a EpRecvRefill handler is provided, this value
192 	 * can be used to set a trigger refill callback
193 	 * when the recv queue drops below this value
194 	 * if set to 0, the refill is only called when packets
195 	 * are empty
196 	 */
197 	int RecvRefillWaterMark;
198 	/* OPTIONAL callback to log packet information */
199 	HTC_EP_LOG_PKT ep_log_pkt;
200 };
201 
202 /* service connection information */
203 struct htc_service_connect_req {
204 	/* service ID to connect to */
205 	HTC_SERVICE_ID service_id;
206 	/* connection flags, see htc protocol definition */
207 	uint16_t ConnectionFlags;
208 	/* ptr to optional service-specific meta-data */
209 	uint8_t *pMetaData;
210 	/* optional meta data length */
211 	uint8_t MetaDataLength;
212 	/* endpoint callbacks */
213 	struct htc_ep_callbacks EpCallbacks;
214 	/* maximum depth of any send queue */
215 	int MaxSendQueueDepth;
216 	/* HTC flags for the host-side (local) connection */
217 	uint32_t LocalConnectionFlags;
218 	/* override max message size in send direction */
219 	unsigned int MaxSendMsgSize;
220 };
221 
222 /* enable send bundle padding for this endpoint */
223 #define HTC_LOCAL_CONN_FLAGS_ENABLE_SEND_BUNDLE_PADDING (1 << 0)
224 
225 /* service connection response information */
226 struct htc_service_connect_resp {
227 	/* caller supplied buffer to optional meta-data */
228 	uint8_t *pMetaData;
229 	/* length of caller supplied buffer */
230 	uint8_t BufferLength;
231 	/* actual length of meta data */
232 	uint8_t ActualLength;
233 	/* endpoint to communicate over */
234 	HTC_ENDPOINT_ID Endpoint;
235 	/* max length of all messages over this endpoint */
236 	unsigned int MaxMsgLength;
237 	/* connect response code from target */
238 	uint8_t ConnectRespCode;
239 };
240 
241 /* endpoint distribution structure */
242 struct htc_endpoint_credit_dist {
243 	struct _htc_endpoint_credit_dist *pNext;
244 	struct _htc_endpoint_credit_dist *pPrev;
245 	/* Service ID (set by HTC) */
246 	HTC_SERVICE_ID service_id;
247 	/* endpoint for this distribution struct (set by HTC) */
248 	HTC_ENDPOINT_ID Endpoint;
249 	/* distribution flags, distribution function can
250 	 * set default activity using SET_EP_ACTIVE() macro
251 	 */
252 	uint32_t DistFlags;
253 	/* credits for normal operation, anything above this
254 	 * indicates the endpoint is over-subscribed, this field
255 	 * is only relevant to the credit distribution function
256 	 */
257 	int TxCreditsNorm;
258 	/* floor for credit distribution, this field is
259 	 * only relevant to the credit distribution function
260 	 */
261 	int TxCreditsMin;
262 	/* number of credits assigned to this EP, this field
263 	 * is only relevant to the credit dist function
264 	 */
265 	int TxCreditsAssigned;
266 	/* current credits available, this field is used by
267 	 * HTC to determine whether a message can be sent or
268 	 * must be queued
269 	 */
270 	int TxCredits;
271 	/* pending credits to distribute on this endpoint, this
272 	 * is set by HTC when credit reports arrive.
273 	 * The credit distribution functions sets this to zero
274 	 * when it distributes the credits
275 	 */
276 	int TxCreditsToDist;
277 	/* this is the number of credits that the current pending TX
278 	 * packet needs to transmit.  This is set by HTC when
279 	 * and endpoint needs credits in order to transmit
280 	 */
281 	int TxCreditsSeek;
282 	/* size in bytes of each credit (set by HTC) */
283 	int TxCreditSize;
284 	/* credits required for a maximum sized messages (set by HTC) */
285 	int TxCreditsPerMaxMsg;
286 	/* reserved for HTC use */
287 	void *pHTCReserved;
288 	/* current depth of TX queue , i.e. messages waiting for credits
289 	 * This field is valid only when HTC_CREDIT_DIST_ACTIVITY_CHANGE
290 	 * or HTC_CREDIT_DIST_SEND_COMPLETE is indicated on an endpoint
291 	 * that has non-zero credits to recover
292 	 */
293 	int TxQueueDepth;
294 };
295 
296 #define HTC_EP_ACTIVE                            ((uint32_t) (1u << 31))
297 
298 /* macro to check if an endpoint has gone active, useful for credit
299  * distributions */
300 #define IS_EP_ACTIVE(epDist)  ((epDist)->DistFlags & HTC_EP_ACTIVE)
301 #define SET_EP_ACTIVE(epDist) (epDist)->DistFlags |= HTC_EP_ACTIVE
302 
303 /* credit distribution code that is passed into the distribution function,
304  * there are mandatory and optional codes that must be handled
305  */
306 enum htc_credit_dist_reason {
307 	/* credits available as a result of completed
308 	 * send operations (MANDATORY) resulting in credit reports
309 	 */
310 	HTC_CREDIT_DIST_SEND_COMPLETE = 0,
311 	/* a change in endpoint activity occurred (OPTIONAL) */
312 	HTC_CREDIT_DIST_ACTIVITY_CHANGE = 1,
313 	/* an endpoint needs to "seek" credits (OPTIONAL) */
314 	HTC_CREDIT_DIST_SEEK_CREDITS,
315 	/* for debugging, dump any state information that is kept by
316 	 * the distribution function
317 	 */
318 	HTC_DUMP_CREDIT_STATE
319 };
320 
321 typedef void (*HTC_CREDIT_DIST_CALLBACK)(void *Context,
322 					 struct htc_endpoint_credit_dist *
323 					 pEPList,
324 					 enum htc_credit_dist_reason
325 					 Reason);
326 
327 typedef void (*HTC_CREDIT_INIT_CALLBACK)(void *Context,
328 					 struct htc_endpoint_credit_dist *
329 					 pEPList, int TotalCredits);
330 
331 /* endpoint statistics action */
332 enum htc_endpoint_stat_action {
333 	/* only read statistics */
334 	HTC_EP_STAT_SAMPLE = 0,
335 	/* sample and immediately clear statistics */
336 	HTC_EP_STAT_SAMPLE_AND_CLEAR = 1,
337 	/* clear only */
338 	HTC_EP_STAT_CLEAR
339 };
340 
341 /* endpoint statistics */
342 struct htc_endpoint_stats {
343 	/* number of TX packets posted to the endpoint */
344 	uint32_t TxPosted;
345 	/* number of times the host set the credit-low flag in a send message on
346 	 * this endpoint
347 	 */
348 	uint32_t TxCreditLowIndications;
349 	/* running count of total TX packets issued */
350 	uint32_t TxIssued;
351 	/* running count of TX packets that were issued in bundles */
352 	uint32_t TxPacketsBundled;
353 	/* running count of TX bundles that were issued */
354 	uint32_t TxBundles;
355 	/* tx packets that were dropped */
356 	uint32_t TxDropped;
357 	/* running count of total credit reports received for this endpoint */
358 	uint32_t TxCreditRpts;
359 	/* credit reports received from this endpoint's RX packets */
360 	uint32_t TxCreditRptsFromRx;
361 	/* credit reports received from RX packets of other endpoints */
362 	uint32_t TxCreditRptsFromOther;
363 	/* credit reports received from endpoint 0 RX packets */
364 	uint32_t TxCreditRptsFromEp0;
365 	/* count of credits received via Rx packets on this endpoint */
366 	uint32_t TxCreditsFromRx;
367 	/* count of credits received via another endpoint */
368 	uint32_t TxCreditsFromOther;
369 	/* count of credits received via another endpoint */
370 	uint32_t TxCreditsFromEp0;
371 	/* count of consumed credits */
372 	uint32_t TxCreditsConsummed;
373 	/* count of credits returned */
374 	uint32_t TxCreditsReturned;
375 	/* count of RX packets received */
376 	uint32_t RxReceived;
377 	/* count of lookahead records
378 	 * found in messages received on this endpoint
379 	 */
380 	uint32_t RxLookAheads;
381 	/* count of recv packets received in a bundle */
382 	uint32_t RxPacketsBundled;
383 	/* count of number of bundled lookaheads */
384 	uint32_t RxBundleLookAheads;
385 	/* count of the number of bundle indications from the HTC header */
386 	uint32_t RxBundleIndFromHdr;
387 	/* number of times the recv allocation threshold was hit */
388 	uint32_t RxAllocThreshHit;
389 	/* total number of bytes */
390 	uint32_t RxAllocThreshBytes;
391 };
392 
393 /**
394  * enum htc_link_vote_user_id - user ids for each link vote type
395  * @HTC_LINK_VOTE_INVALID_MIN_USER_ID: min user id
396  * @HTC_LINK_VOTE_SAP_USER_ID: sap user id
397  * @HTC_LINK_VOTE_GO_USER_ID: go user id
398  * @HTC_LINK_VOTE_NDP_USER_ID: ndp user id
399  * @HTC_LINK_VOTE_SAP_DFS_USER_ID: sap dfs user id
400  * @HTC_LINK_VOTE_STA_USER_ID: sta user id
401  * @HTC_LINK_VOTE_INVALID_MAX_USER_ID: max user id
402  */
403 enum htc_link_vote_user_id {
404 	HTC_LINK_VOTE_INVALID_MIN_USER_ID = 0,
405 	HTC_LINK_VOTE_SAP_USER_ID = 1,
406 	HTC_LINK_VOTE_GO_USER_ID = 2,
407 	HTC_LINK_VOTE_NDP_USER_ID = 3,
408 	HTC_LINK_VOTE_SAP_DFS_USER_ID = 4,
409 	HTC_LINK_VOTE_STA_USER_ID = 5,
410 	HTC_LINK_VOTE_INVALID_MAX_USER_ID
411 };
412 
413 /* ------ Function Prototypes ------ */
414 /**
415  * htc_create() - Create an instance of HTC over the underlying HIF device
416  * @HifDevice: hif device handle,
417  * @pInfo: initialization information
418  * @osdev: QDF device structure
419  * @con_mode: driver connection mode
420  *
421  * Return: HTC_HANDLE on success, NULL on failure
422  */
423 HTC_HANDLE htc_create(void *HifDevice, struct htc_init_info *pInfo,
424 			qdf_device_t osdev, uint32_t con_mode);
425 
426 /**
427  * htc_get_hif_device() - Get the underlying HIF device handle
428  * @HTCHandle: handle passed into the AddInstance callback
429  *
430  * Return: opaque HIF device handle usable in HIF API calls.
431  */
432 void *htc_get_hif_device(HTC_HANDLE HTCHandle);
433 
434 /**
435  * htc_set_credit_distribution() - Set credit distribution parameters
436  * @HTCHandle: HTC handle
437  * @pCreditDistContext: caller supplied context to pass into distribution
438  *                      functions
439  * @CreditDistFunc: Distribution function callback
440  * @CreditInitFunc: Credit Distribution initialization callback
441  * @ServicePriorityOrder: Array containing list of service IDs, lowest index
442  *                        is highestpriority
443  * @ListLength: number of elements in ServicePriorityOrder
444  *
445  * The user can set a custom credit distribution function to handle
446  * special requirementsfor each endpoint.  A default credit distribution
447  * routine can be used by setting CreditInitFunc to NULL. The default
448  * credit distribution is only provided for simple "fair" credit distribution
449  * without regard to any prioritization.
450  *
451  * Return: None
452  */
453 void htc_set_credit_distribution(HTC_HANDLE HTCHandle,
454 				 void *pCreditDistContext,
455 				 HTC_CREDIT_DIST_CALLBACK CreditDistFunc,
456 				 HTC_CREDIT_INIT_CALLBACK CreditInitFunc,
457 				 HTC_SERVICE_ID ServicePriorityOrder[],
458 				 int ListLength);
459 
460 /**
461  * htc_wait_target() - Wait for the target to indicate the HTC layer is ready
462  * @HTCHandle: HTC handle
463  *
464  * This API blocks until the target responds with an HTC ready message.
465  * The caller should not connect services until the target has indicated it is
466  * ready.
467  *
468  * Return: None
469  */
470 QDF_STATUS htc_wait_target(HTC_HANDLE HTCHandle);
471 
472 /**
473  * htc_start() - Start target service communications
474  * @HTCHandle: HTC handle
475  *
476  * This API indicates to the target that the service connection phase
477  * is completeand the target can freely start all connected services.  This
478  * API should only be called AFTER all service connections have been made.
479  * TCStart will issue a SETUP_COMPLETE message to the target to indicate that
480  * all service connections have been made and the target can start
481  * communicating over the endpoints.
482  * Return: None
483  */
484 QDF_STATUS htc_start(HTC_HANDLE HTCHandle);
485 
486 /**
487  * htc_connect_service() - Connect to an HTC service
488  * @HTCHandle: HTC handle
489  * @pReq: connection details
490  * @pResp: connection response
491  *
492  * Service connections must be performed before htc_start.
493  * User provides callback handlersfor various endpoint events.
494  * Return: None
495  */
496 QDF_STATUS htc_connect_service(HTC_HANDLE HTCHandle,
497 			     struct htc_service_connect_req *pReq,
498 			     struct htc_service_connect_resp *pResp);
499 
500 /**
501  * htc_dump() - HTC register log dump
502  * @HTCHandle: HTC handle
503  * @CmdId: Log command
504  * @start: start/print logs
505  *
506  * Register logs will be started/printed/ be flushed.
507  *
508  * Return: None
509  */
510 void htc_dump(HTC_HANDLE HTCHandle, uint8_t CmdId, bool start);
511 
512 /**
513  * htc_ce_tasklet_debug_dump() - Dump ce tasklet rings debug data
514  * @htc_handle: HTC handle
515  *
516  * Debug logs will be printed.
517  *
518  * Return: None
519  */
520 void htc_ce_tasklet_debug_dump(HTC_HANDLE htc_handle);
521 
522 /**
523  * htc_send_pkt() - Send an HTC packet
524  * @HTCHandle: HTC handle
525  * @pPacket: packet to send
526  *
527  * Caller must initialize packet using SET_HTC_PACKET_INFO_TX() macro.
528  * This interface is fully asynchronous.  On error, HTC SendPkt will
529  * call the registered Endpoint callback to cleanup the packet.
530  *
531  * Return: QDF_STATUS_SUCCESS
532  */
533 QDF_STATUS htc_send_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket);
534 
535 #ifdef CUSTOM_CB_SCHEDULER_SUPPORT
536 /**
537  * htc_register_custom_cb() - Helper API to register the custom callback
538  * @htc_handle: HTC handle
539  * @endpoint_id: Endpoint ID
540  * @custom_cb: Custom call back function pointer
541  * @custom_cb_context: Custom callback context
542  *
543  * return: QDF_STATUS
544  */
545 QDF_STATUS
546 htc_register_custom_cb(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id,
547 		       void (*custom_cb)(void *), void *custom_cb_context);
548 
549 /**
550  * htc_unregister_custom_cb() - Helper API to unregister the custom callback
551  * @htc_handle: HTC handle
552  * @endpoint_id: Endpoint ID
553  *
554  * return: QDF_STATUS
555  */
556 QDF_STATUS
557 htc_unregister_custom_cb(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id);
558 
559 /**
560  * htc_enable_custom_cb() - Helper API to enable the custom callback
561  * @htc_handle: HTC handle
562  * @endpoint_id: Endpoint ID
563  *
564  * return: QDF_STATUS
565  */
566 QDF_STATUS
567 htc_enable_custom_cb(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id);
568 
569 /**
570  * htc_disable_custom_cb() - Helper API to disable the custom callback
571  * @htc_handle: HTC handle
572  * @endpoint_id: Endpoint ID
573  *
574  * return: QDF_STATUS
575  */
576 QDF_STATUS
577 htc_disable_custom_cb(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id);
578 #else
579 /**
580  * htc_register_custom_cb() - Helper API to register the custom callback
581  * @htc_handle: HTC handle
582  * @endpoint_id: Endpoint ID
583  * @custom_cb: Custom call back function pointer
584  * @custom_cb_context: Custom callback context
585  *
586  * return: QDF_STATUS
587  */
588 static inline QDF_STATUS
589 htc_register_custom_cb(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id,
590 		       void (*custom_cb)(void *), void *custom_cb_context)
591 {
592 	return QDF_STATUS_SUCCESS;
593 }
594 
595 /**
596  * htc_unregister_custom_cb() - Helper API to unregister the custom callback
597  * @htc_handle: HTC handle
598  * @endpoint_id: Endpoint ID
599  *
600  * return: QDF_STATUS
601  */
602 static inline QDF_STATUS
603 htc_unregister_custom_cb(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id)
604 {
605 	return QDF_STATUS_SUCCESS;
606 }
607 
608 /**
609  * htc_enable_custom_cb() - Helper API to enable the custom callback
610  * @htc_handle: HTC handle
611  * @endpoint_id: Endpoint ID
612  *
613  * return: QDF_STATUS
614  */
615 static inline QDF_STATUS
616 htc_enable_custom_cb(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id)
617 {
618 	return QDF_STATUS_SUCCESS;
619 }
620 
621 /**
622  * htc_disable_custom_cb() - Helper API to disable the custom callback
623  * @htc_handle: HTC handle
624  * @endpoint_id: Endpoint ID
625  *
626  * return: QDF_STATUS
627  */
628 static inline QDF_STATUS
629 htc_disable_custom_cb(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id)
630 {
631 	return QDF_STATUS_SUCCESS;
632 }
633 #endif /* CUSTOM_CB_SCHEDULER_SUPPORT */
634 
635 #ifdef ATH_11AC_TXCOMPACT
636 /**
637  * htc_send_data_pkt() - Send an HTC packet containing a tx descriptor and data
638  * @HTCHandle: HTC handle
639  * @netbuf: network buffer containing the packet to send
640  * @Epid: endpoint id
641  * @ActualLength: actual length of the packet
642  *
643  * Caller must initialize packet using SET_HTC_PACKET_INFO_TX() macro.
644  * Caller must provide headroom in an initial fragment added to the
645  * network buffer to store a HTC_FRAME_HDR.
646  * This interface is fully asynchronous.  On error, htc_send_data_pkt will
647  * call the registered Endpoint EpDataTxComplete callback to cleanup
648  * the packet.
649  *
650  * Return: QDF_STATUS
651  */
652 QDF_STATUS htc_send_data_pkt(HTC_HANDLE HTCHandle, qdf_nbuf_t netbuf,
653 			   int Epid, int ActualLength);
654 #else                           /*ATH_11AC_TXCOMPACT */
655 /**
656  * htc_send_data_pkt() - Send an HTC packet containing a tx descriptor and data
657  * @HTCHandle: HTC handle
658  * @pPacket: packet to send
659  * @more_data:
660  *
661  * Caller must initialize packet using SET_HTC_PACKET_INFO_TX() macro.
662  * Caller must provide headroom in an initial fragment added to the
663  * network buffer to store a HTC_FRAME_HDR.
664  * This interface is fully asynchronous.  On error, htc_send_data_pkt will
665  * call the registered Endpoint EpDataTxComplete callback to cleanup
666  * the packet.
667  *
668  * Return: QDF_STATUS
669  */
670 QDF_STATUS htc_send_data_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket,
671 			   uint8_t more_data);
672 #endif /*ATH_11AC_TXCOMPACT */
673 
674 /**
675  * htc_flush_surprise_remove() - Flush HTC when target is removed surprisely
676  *                             service communications
677  * @HTCHandle: HTC handle
678  *
679  * All receive and pending TX packets will be flushed.
680  * Return: None
681  */
682 void htc_flush_surprise_remove(HTC_HANDLE HTCHandle);
683 
684 /**
685  * htc_stop() - Stop HTC service communications
686  * @HTCHandle: HTC handle
687  *
688  * HTC communications is halted.  All receive and pending TX packets
689  * will  be flushed.
690  * Return: None
691  */
692 void htc_stop(HTC_HANDLE HTCHandle);
693 
694 /**
695  * htc_destroy() - Destroy HTC service
696  * @HTCHandle: HTC handle
697  *
698  * This cleans up all resources allocated by htc_create().
699  * Return: None
700  */
701 void htc_destroy(HTC_HANDLE HTCHandle);
702 
703 /**
704  * htc_flush_endpoint() - Flush pending TX packets
705  * @HTCHandle: HTC handle
706  * @Endpoint: Endpoint to flush
707  * @Tag: flush tag
708  *
709  * The Tag parameter is used to selectively flush packets with matching
710  * tags. The value of 0 forces all packets to be flush regardless of tag
711  * Return: None
712  */
713 void htc_flush_endpoint(HTC_HANDLE HTCHandle, HTC_ENDPOINT_ID Endpoint,
714 			HTC_TX_TAG Tag);
715 /**
716  * htc_dump_credit_states() - Dump credit distribution state
717  * @HTCHandle: HTC handle
718  *
719  * This dumps all credit distribution information to the debugger
720  * Return: None
721  */
722 void htc_dump_credit_states(HTC_HANDLE HTCHandle);
723 
724 /**
725  * htc_indicate_activity_change() - Indicate a traffic activity change on an
726  *                                endpoint
727  * @HTCHandle: HTC handle
728  * @Endpoint: endpoint in which activity has changed
729  * @Active: true if active, false if it has become inactive
730  *
731  * This triggers the registered credit distribution function to
732  * re-adjust credits for active/inactive endpoints.
733  * Return: None
734  */
735 void htc_indicate_activity_change(HTC_HANDLE HTCHandle,
736 				  HTC_ENDPOINT_ID Endpoint, bool Active);
737 
738 /**
739  * htc_get_endpoint_statistics() - Get endpoint statistics
740  * @HTCHandle: HTC handle
741  * @Endpoint: Endpoint identifier
742  * @Action: action to take with statistics
743  * @pStats: statistics that were sampled (can be NULL if Action is
744  *           HTC_EP_STAT_CLEAR)
745  *
746  * Statistics is a compile-time option and this function may return
747  * false if HTC is not compiled with profiling.
748  * The caller can specify the statistic "action" to take when sampling
749  * the statistics.  This includes :
750  * HTC_EP_STAT_SAMPLE : The pStats structure is filled with the current
751  *                      values.
752  * HTC_EP_STAT_SAMPLE_AND_CLEAR : The structure is filled and the current
753  *                                statisticsare cleared.
754  * HTC_EP_STAT_CLEA : the statistics are cleared, the called can pass
755  *                    a NULL value for pStats
756  * Return: true if statistics profiling is enabled, otherwise false.
757  */
758 bool htc_get_endpoint_statistics(HTC_HANDLE HTCHandle,
759 				   HTC_ENDPOINT_ID Endpoint,
760 				   enum htc_endpoint_stat_action Action,
761 				   struct htc_endpoint_stats *pStats);
762 
763 /**
764  * htc_unblock_recv() - Unblock HTC message reception
765  * @HTCHandle: HTC handle
766  *
767  * HTC will block the receiver if the EpRecvAlloc callback fails to provide a
768  * packet. The caller can use this API to indicate to HTC when resources
769  * (buffers) are available such that the  receiver can be unblocked and HTC
770  * may re-attempt fetching the pending message.
771  * This API is not required if the user uses the EpRecvRefill callback or uses
772  * the HTCAddReceivePacket()API to recycle or provide receive packets to HTC.
773  * Return: None
774  */
775 void htc_unblock_recv(HTC_HANDLE HTCHandle);
776 
777 /**
778  * htc_add_receive_pkt_multiple() - Add multiple receive packets to HTC
779  * @HTCHandle: HTC handle
780  * @pPktQueue: HTC receive packet queue holding packets to add
781  *
782  * User must supply HTC packets for capturing incoming HTC frames.
783  * The caller mmust initialize each HTC packet using the
784  * SET_HTC_PACKET_INFO_RX_REFILL() macro. The queue must only contain
785  * recv packets for the same endpoint. Caller supplies a pointer to an
786  * HTC_PACKET_QUEUE structure holding the recv packet. This API will
787  * remove the packets from the pkt queue and place them into internal
788  * recv packet list.
789  * The caller may allocate the pkt queue on the stack to hold the pkts.
790  * Return: A_OK on success
791  */
792 A_STATUS htc_add_receive_pkt_multiple(HTC_HANDLE HTCHandle,
793 				      HTC_PACKET_QUEUE *pPktQueue);
794 
795 /**
796  * htc_is_endpoint_active() - Check if an endpoint is marked active
797  * @HTCHandle: HTC handle
798  * @Endpoint: endpoint to check for active state
799  *
800  * Return: returns true if Endpoint is Active
801  */
802 bool htc_is_endpoint_active(HTC_HANDLE HTCHandle,
803 			      HTC_ENDPOINT_ID Endpoint);
804 
805 /**
806  * htc_set_pkt_dbg() - Set up debug flag for HTC packets
807  * @handle: HTC handle
808  * @dbg_flag: enable or disable flag
809  *
810  * Return: none
811  */
812 void htc_set_pkt_dbg(HTC_HANDLE handle, A_BOOL dbg_flag);
813 
814 /**
815  * htc_set_nodrop_pkt() - Set up nodrop pkt flag for mboxping nodrop pkt
816  * @HTCHandle: HTC handle
817  * @isNodropPkt: indicates whether it is nodrop pkt
818  *
819  * Return: None
820  *
821  */
822 void htc_set_nodrop_pkt(HTC_HANDLE HTCHandle, A_BOOL isNodropPkt);
823 
824 /**
825  * htc_enable_hdr_length_check() - Set up htc_hdr_length_check flag
826  * @htc_handle: HTC handle
827  * @htc_hdr_length_check: flag to indicate whether htc header length check is
828  *                         required
829  *
830  * Return: None
831  *
832  */
833 void
834 htc_enable_hdr_length_check(HTC_HANDLE htc_handle, bool htc_hdr_length_check);
835 
836 /**
837  * htc_get_num_recv_buffers() - Get the number of recv buffers currently queued
838  *                            into an HTC endpoint
839  * @HTCHandle: HTC handle
840  * @Endpoint: endpoint to check
841  *
842  * Return: returns number of buffers in queue
843  *
844  */
845 int htc_get_num_recv_buffers(HTC_HANDLE HTCHandle,
846 			     HTC_ENDPOINT_ID Endpoint);
847 
848 /**
849  * htc_set_target_failure_callback() - Set the target failure handling callback
850  *                                   in HTC layer
851  * @HTCHandle: HTC handle
852  * @Callback: target failure handling callback
853  *
854  * Return: None
855  */
856 void htc_set_target_failure_callback(HTC_HANDLE HTCHandle,
857 				     HTC_TARGET_FAILURE Callback);
858 
859 /* internally used functions for testing... */
860 void htc_enable_recv(HTC_HANDLE HTCHandle);
861 void htc_disable_recv(HTC_HANDLE HTCHandle);
862 A_STATUS HTCWaitForPendingRecv(HTC_HANDLE HTCHandle,
863 			       uint32_t TimeoutInMs,
864 			       bool *pbIsRecvPending);
865 
866 /* function to fetch stats from htc layer*/
867 struct ol_ath_htc_stats *ieee80211_ioctl_get_htc_stats(HTC_HANDLE
868 						       HTCHandle);
869 /**
870  * htc_get_tx_queue_depth() - get the tx queue depth of an htc endpoint
871  * @htc_handle: htc handle
872  * @endpoint_id: endpoint to check
873  *
874  * Return: htc_handle tx queue depth
875  */
876 int htc_get_tx_queue_depth(HTC_HANDLE htc_handle, HTC_ENDPOINT_ID endpoint_id);
877 
878 #ifdef WLAN_FEATURE_FASTPATH
879 void htc_ctrl_msg_cmpl(HTC_HANDLE htc_pdev, HTC_ENDPOINT_ID htc_ep_id);
880 
881 #define HTC_TX_DESC_FILL(_htc_tx_desc, _download_len, _ep_id, _seq_no)	\
882 do {                                                            \
883 	HTC_WRITE32((_htc_tx_desc),                             \
884 		SM((_download_len), HTC_FRAME_HDR_PAYLOADLEN) | \
885 		SM((_ep_id), HTC_FRAME_HDR_ENDPOINTID));        \
886 	HTC_WRITE32((uint32_t *)(_htc_tx_desc) + 1,             \
887 		SM((_seq_no), HTC_FRAME_HDR_CONTROLBYTES1));    \
888 } while (0)
889 #endif /* WLAN_FEATURE_FASTPATH */
890 
891 #ifdef __cplusplus
892 }
893 #endif
894 void htc_get_control_endpoint_tx_host_credits(HTC_HANDLE HTCHandle,
895 						int *credit);
896 void htc_dump_counter_info(HTC_HANDLE HTCHandle);
897 void *htc_get_targetdef(HTC_HANDLE htc_handle);
898 #ifdef FEATURE_RUNTIME_PM
899 int htc_runtime_suspend(HTC_HANDLE htc_ctx);
900 int htc_runtime_resume(HTC_HANDLE htc_ctx);
901 #endif
902 void htc_global_credit_flow_disable(void);
903 void htc_global_credit_flow_enable(void);
904 
905 /* Disable ASPM : Disable PCIe low power */
906 bool htc_can_suspend_link(HTC_HANDLE HTCHandle);
907 
908 #ifdef IPA_OFFLOAD
909 void htc_ipa_get_ce_resource(HTC_HANDLE htc_handle,
910 			     qdf_shared_mem_t **ce_sr,
911 			     uint32_t *ce_sr_ring_size,
912 			     qdf_dma_addr_t *ce_reg_paddr);
913 #else
914 #define htc_ipa_get_ce_resource(htc_handle,                \
915 			ce_sr, ce_sr_ring_size, ce_reg_paddr)     /* NO-OP */
916 #endif /* IPA_OFFLOAD */
917 
918 #if defined(DEBUG_HL_LOGGING) && defined(CONFIG_HL_SUPPORT)
919 
920 /**
921  * htc_dump_bundle_stats() - dump tx and rx htc message bundle stats
922  * @HTCHandle: htc handle
923  *
924  * Return: None
925  */
926 void htc_dump_bundle_stats(HTC_HANDLE HTCHandle);
927 
928 /**
929  * htc_clear_bundle_stats() - clear tx and rx htc message bundle stats
930  * @HTCHandle: htc handle
931  *
932  * Return: None
933  */
934 void htc_clear_bundle_stats(HTC_HANDLE HTCHandle);
935 #endif
936 
937 #ifdef FEATURE_RUNTIME_PM
938 int htc_pm_runtime_get(HTC_HANDLE htc_handle);
939 int htc_pm_runtime_put(HTC_HANDLE htc_handle);
940 
941 /**
942  * htc_dec_return_htt_runtime_cnt: Decrement htc htt runtime count
943  * @htc: HTC handle
944  *
945  * Return: value of runtime count after decrement
946  */
947 int32_t htc_dec_return_htt_runtime_cnt(HTC_HANDLE htc);
948 #else
949 static inline int htc_pm_runtime_get(HTC_HANDLE htc_handle) { return 0; }
950 static inline int htc_pm_runtime_put(HTC_HANDLE htc_handle) { return 0; }
951 
952 static inline
953 int32_t htc_dec_return_htt_runtime_cnt(HTC_HANDLE htc)
954 {
955 	return -1;
956 }
957 #endif
958 
959 #ifdef WLAN_DEBUG_LINK_VOTE
960 /**
961  * htc_log_link_user_votes() - API to log link user votes
962  *
963  * API to log the link user votes
964  *
965  * Return: void
966  */
967 void htc_log_link_user_votes(void);
968 
969 /**
970  * htc_vote_link_down() - API to vote for link down
971  * @htc_handle: HTC handle
972  * @id: PCIe link vote user id
973  *
974  * API for upper layers to call HIF to vote for link down
975  *
976  * Return: void
977  */
978 void htc_vote_link_down(HTC_HANDLE htc_handle, enum htc_link_vote_user_id id);
979 
980 /**
981  * htc_vote_link_up() - API to vote for link up
982  * @htc_handle: HTC Handle
983  * @id: PCIe link vote user id
984  *
985  * API for upper layers to call HIF to vote for link up
986  *
987  * Return: void
988  */
989 void htc_vote_link_up(HTC_HANDLE htc_handle, enum htc_link_vote_user_id id);
990 
991 #else
992 static inline
993 void htc_log_link_user_votes(void)
994 {
995 }
996 
997 static inline
998 void htc_vote_link_down(HTC_HANDLE htc_handle, enum htc_link_vote_user_id id)
999 {
1000 }
1001 
1002 static inline
1003 void htc_vote_link_up(HTC_HANDLE htc_handle, enum htc_link_vote_user_id id)
1004 {
1005 }
1006 #endif
1007 
1008 /**
1009   * htc_set_async_ep() - set async HTC end point
1010   *           user should call this function after htc_connect_service before
1011   *           queueing any packets to end point
1012   * @HTCHandle: htc handle
1013   * @htc_ep_id: end point id
1014   * @value: true or false
1015   *
1016   * Return: None
1017   */
1018 void htc_set_async_ep(HTC_HANDLE HTCHandle,
1019 			HTC_ENDPOINT_ID htc_ep_id, bool value);
1020 
1021 /**
1022  * htc_set_wmi_endpoint_count: Set number of WMI endpoint
1023  * @htc_handle: HTC handle
1024  * @wmi_ep_count: WMI endpoint count
1025  *
1026  * return: None
1027  */
1028 void htc_set_wmi_endpoint_count(HTC_HANDLE htc_handle, uint8_t wmi_ep_count);
1029 
1030 /**
1031  * htc_get_wmi_endpoint_count: Get number of WMI endpoint
1032  * @htc_handle: HTC handle
1033  *
1034  * return: WMI endpoint count
1035  */
1036 uint8_t  htc_get_wmi_endpoint_count(HTC_HANDLE htc_handle);
1037 
1038 /**
1039  * htc_print_credit_history: print HTC credit history in buffer
1040  * @htc:        HTC handle
1041  * @count:      Number of lines to be copied
1042  * @print:      Print callback to print in the buffer
1043  * @print_priv: any data required by the print method, e.g. a file handle
1044  *
1045  * return: None
1046  */
1047 #ifdef FEATURE_HTC_CREDIT_HISTORY
1048 void htc_print_credit_history(HTC_HANDLE htc, uint32_t count,
1049 			      qdf_abstract_print * print, void *print_priv);
1050 #else
1051 static inline
1052 void htc_print_credit_history(HTC_HANDLE htc, uint32_t count,
1053 			      qdf_abstract_print *print, void *print_priv)
1054 {
1055 	print(print_priv, "HTC Credit History Feature is disabled");
1056 }
1057 #endif
1058 
1059 #ifdef SYSTEM_PM_CHECK
1060 /**
1061  * htc_system_resume() - Send out any pending WMI/HTT
1062  *  messages pending in htc queues on system resume.
1063  * @htc: HTC handle
1064  *
1065  * Return: None
1066  */
1067 void htc_system_resume(HTC_HANDLE htc);
1068 #else
1069 static inline void htc_system_resume(HTC_HANDLE htc)
1070 {
1071 }
1072 #endif
1073 #endif /* _HTC_API_H_ */
1074