Forráskód Böngészése

qcacld-3.0: Fix core/cds documentation

There are quite a few documentation issues in core/cds:
- Documentation using legacy Doxygen format instead of kernel-doc format
- Documentation of implementations instead of interfaces
- Duplicate documentation
- Syntactically incorrect kernel-doc

Fix all of these issues.

Change-Id: I7ffdea9027278c75975a826466da2d7204a25d0c
CRs-Fixed: 3386190
Jeff Johnson 2 éve
szülő
commit
e050889528

+ 12 - 10
core/cds/inc/cds_api.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2014-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -61,13 +61,14 @@
 /**
  * enum cds_driver_state - Driver state
  * @CDS_DRIVER_STATE_UNINITIALIZED: Driver is in uninitialized state.
- * CDS_DRIVER_STATE_LOADED: Driver is loaded and functional.
- * CDS_DRIVER_STATE_LOADING: Driver probe is in progress.
- * CDS_DRIVER_STATE_UNLOADING: Driver remove is in progress.
- * CDS_DRIVER_STATE_RECOVERING: Recovery in progress.
- * CDS_DRIVER_STATE_BAD: Driver in bad state.
- * CDS_DRIVER_STATE_MODULE_STOP: Module stop in progress or done.
- * CDS_DRIVER_STATE_ASSERTING_TARGET: Driver assert target in progress.
+ * @CDS_DRIVER_STATE_LOADED: Driver is loaded and functional.
+ * @CDS_DRIVER_STATE_LOADING: Driver probe is in progress.
+ * @CDS_DRIVER_STATE_UNLOADING: Driver remove is in progress.
+ * @CDS_DRIVER_STATE_RECOVERING: Recovery in progress.
+ * @CDS_DRIVER_STATE_BAD: Driver in bad state.
+ * @CDS_DRIVER_STATE_FW_READY: Driver Firmware ready
+ * @CDS_DRIVER_STATE_MODULE_STOP: Module stop in progress or done.
+ * @CDS_DRIVER_STATE_ASSERTING_TARGET: Driver assert target in progress.
  */
 enum cds_driver_state {
 	CDS_DRIVER_STATE_UNINITIALIZED          = 0,
@@ -82,7 +83,7 @@ enum cds_driver_state {
 };
 
 /**
- * struce cds_vdev_dp_stats - vdev stats populated from DP
+ * struct cds_vdev_dp_stats - vdev stats populated from DP
  * @tx_retries: packet number of successfully transmitted after more
  *              than one retransmission attempt
  * @tx_retries_mpdu: mpdu number of successfully transmitted after more
@@ -344,7 +345,7 @@ QDF_STATUS cds_open(struct wlan_objmgr_psoc *psoc);
 
 /**
  * cds_dp_open() - Open datapath module
- * @psoc - object manager soc handle
+ * @psoc: object manager soc handle
  *
  * API to map the datapath rings to interrupts
  * and also open the datapath pdev module.
@@ -531,6 +532,7 @@ void cds_pkt_stats_to_logger_thread(void *pl_hdr, void *pkt_dump, void *data)
  *
  * @count:	Number of lines to be copied
  * @print:	Print callback to print in the buffer
+ * @print_priv:	Print callback private data
  *
  * Return:	none
  */

+ 10 - 5
core/cds/inc/cds_config.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2016-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -37,9 +37,10 @@
 #include "wmi_unified_param.h"
 
 /**
- * enum cfg_sub_20_channel_width: ini values for su 20 mhz channel width
- * @WLAN_SUB_20_CH_WIDTH_5: Use 5 mhz channel width
- * @WLAN_SUB_20_CH_WIDTH_10: Use 10 mhz channel width
+ * enum cfg_sub_20_channel_width: ini values for su 20 MHz channel width
+ * @WLAN_SUB_20_CH_WIDTH_NONE: No sub-20 MHz channel width
+ * @WLAN_SUB_20_CH_WIDTH_5: Use 5 MHz channel width
+ * @WLAN_SUB_20_CH_WIDTH_10: Use 10 MHz channel width
  */
 enum cfg_sub_20_channel_width {
 	WLAN_SUB_20_CH_WIDTH_NONE = 0,
@@ -86,13 +87,17 @@ struct wlan_cds_feature_set {
  * @is_lpass_enabled: Indicate whether LPASS is enabled or not
  * @tx_chain_mask_cck: Tx chain mask enabled or not
  * @sub_20_channel_width: Sub 20 MHz ch width, ini intersected with fw cap
- * @is_fw_timeout: Indicate whether crash host when fw timesout or not
+ * @max_msdus_per_rxinorderind:
+ * @self_recovery_enabled:
+ * @fw_timeout_crash: Indicate whether crash host when fw timesout or not
+ * @ac_specs:
  * @ito_repeat_count: Indicates ito repeated count
  * @force_target_assert_enabled: Indicate whether target assert enabled or not
  * @bandcapability: Configured band by user
  * @rps_enabled: RPS enabled in SAP mode
  * Structure for holding cds ini parameters.
  * @num_vdevs: Configured max number of VDEVs can be supported in the stack.
+ * @enable_tx_compl_tsf64:
  * @cds_feature_set: CDS feature set structure.
  * @get_wifi_features: Get wifi features from fw
  */

+ 1 - 0
core/cds/inc/cds_ieee80211_common.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2011,2014-2020 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the

+ 38 - 19
core/cds/inc/cds_packet.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2014-2016, 2018, 2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -20,19 +20,12 @@
 #if !defined(__CDS_PKT_H)
 #define __CDS_PKT_H
 
-/**=========================================================================
-
-   \file        cds_packet.h
-
-   \brief       Connectivity driver services (CDS) network Packet APIs
-
-   Network Protocol packet/buffer support interfaces
-
-   ========================================================================*/
+/**
+ * DOC: cds_packet.h
+ *      Connectivity driver services (CDS) network Packet APIs
+ *      Network Protocol packet/buffer support interfaces
+ */
 
-/*--------------------------------------------------------------------------
-   Include Files
-   ------------------------------------------------------------------------*/
 #include <qdf_types.h>
 #include <qdf_status.h>
 
@@ -49,14 +42,21 @@ typedef struct cds_pkt_t cds_pkt_t;
 #include "qdf_nbuf.h"
 
 /**
- * cds_pkt_return_packet  Free the cds Packet
- * @ cds Packet
+ * cds_pkt_return_packet() - Free the cds Packet
+ * @packet: cds Packet
+ *
+ * Return: QDF_STATUS
  */
 QDF_STATUS cds_pkt_return_packet(cds_pkt_t *packet);
 
 /**
- * cds_pkt_get_packet_length  Returns the packet length
- * @ cds Packet
+ * cds_pkt_get_packet_length() - Get packet length for a cds Packet
+ * @pPacket: the cds Packet to get the packet length from
+ * @pPacketSize: location to return the total size of the data
+ *               contained in the cds Packet.
+ *
+ * Return: QDF_STATUS_SUCCESS if the length was returned, otherwise an
+ *         appropriate QDF_STATUS_E_* status code.
  */
 QDF_STATUS cds_pkt_get_packet_length(cds_pkt_t *pPacket,
 				     uint16_t *pPacketSize);
@@ -69,9 +69,24 @@ QDF_STATUS cds_pkt_get_packet_length(cds_pkt_t *pPacket,
  * from HDD and other layers
  * below code will be removed
  */
+
+/**
+ * cds_packet_alloc() - Allocate a network buffer for TX
+ * @size: size of the packet
+ * @data: packet payload
+ * @ppPacket: pointer to return allocated packet
+ *
+ * Allocates a packet of the indicated @size, populates it with the
+ * @data payload, and returns the pointer via @ppPacket. Caller is
+ * responsible for calling cds_packet_free() after the packet has been
+ * sent to reclaim the packet.
+ *
+ * Return: QDF_STATUS_SUCCESS if a packet is allocated, otherwise a
+ * appropriate QDF_STATUS_E_* status code.
+ */
 #ifdef MEMORY_DEBUG
-#define cds_packet_alloc(s, d, p)	\
-	cds_packet_alloc_debug(s, d, p, __func__, __LINE__)
+#define cds_packet_alloc(size, data, ppPacket)	\
+	cds_packet_alloc_debug(size, data, ppPacket, __func__, __LINE__)
 
 QDF_STATUS cds_packet_alloc_debug(uint16_t size, void **data, void **ppPacket,
 				  const char *func_name, uint32_t line_num);
@@ -79,6 +94,10 @@ QDF_STATUS cds_packet_alloc_debug(uint16_t size, void **data, void **ppPacket,
 QDF_STATUS cds_packet_alloc(uint16_t size, void **data, void **ppPacket);
 #endif
 
+/**
+ * cds_packet_free() - Free input network buffer
+ * @pPacket: network buffer
+ */
 void cds_packet_free(void *pPacket);
 
 #endif /* !defined( __CDS_PKT_H ) */

+ 125 - 189
core/cds/inc/cds_sched.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -20,17 +20,11 @@
 #ifndef __CDS_SCHED_H
 #define __CDS_SCHED_H
 
-/**=========================================================================
-
-   \file  cds_sched.h
-
-   \brief Connectivity driver services scheduler
-
-   ========================================================================*/
+/**
+ * DOC: cds_sched.h
+ *      Connectivity driver services scheduler
+ */
 
-/*--------------------------------------------------------------------------
-   Include Files
-   ------------------------------------------------------------------------*/
 #include <qdf_event.h>
 #include <i_qdf_types.h>
 #include <linux/wait.h>
@@ -231,12 +225,33 @@ struct cds_context {
    Function declarations and documentation
    ---------------------------------------------------------------------------*/
 #ifdef QCA_CONFIG_SMP
+
+/**
+ * cds_sched_handle_cpu_hot_plug() - cpu hotplug event handler
+ *
+ * cpu hotplug indication handler
+ * will find online cores and will assign proper core based on perf requirement
+ *
+ * Return: 0 success
+ *         1 fail
+ */
 int cds_sched_handle_cpu_hot_plug(void);
+
+/**
+ * cds_sched_handle_throughput_req() - cpu throughput requirement handler
+ * @high_tput_required:	high throughput is required or not
+ *
+ * high or low throughput indication handler
+ * will find online cores and will assign proper core based on perf requirement
+ *
+ * Return: 0 success
+ *         1 fail
+ */
 int cds_sched_handle_throughput_req(bool high_tput_required);
 
 /**
- * cds_sched_handle_rx_thread_affinity_req - rx thread affinity req handler
- * @high_tput_required: high throughput is required or not
+ * cds_sched_handle_rx_thread_affinity_req() - rx thread affinity req handler
+ * @high_throughput: high throughput is required or not
  *
  * rx thread affinity handler will find online cores and
  * will assign proper core based on perf requirement
@@ -261,28 +276,28 @@ void cds_set_rx_thread_ul_cpu_mask(uint8_t cpu_affinity_mask);
  */
 void cds_set_rx_thread_cpu_mask(uint8_t cpu_affinity_mask);
 
-/*---------------------------------------------------------------------------
-   \brief cds_drop_rxpkt_by_staid() - API to drop pending Rx packets for a sta
-   The \a cds_drop_rxpkt_by_staid() drops queued packets for a station, to drop
-   all the pending packets the caller has to send WLAN_MAX_STA_COUNT as staId.
-   \param  pSchedContext - pointer to the global CDS Sched Context
-   \param staId - Station Id
-
-   \return Nothing
-   \sa cds_drop_rxpkt_by_staid()
-   -------------------------------------------------------------------------*/
+/**
+ * cds_drop_rxpkt_by_staid() - api to drop pending rx packets for a sta
+ * @pSchedContext: Pointer to the global CDS Sched Context
+ * @staId: Station Id
+ *
+ * This api drops queued packets for a station, to drop all the pending
+ * packets the caller has to send WLAN_MAX_STA_COUNT as staId.
+ *
+ * Return: none
+ */
 void cds_drop_rxpkt_by_staid(p_cds_sched_context pSchedContext, uint16_t staId);
 
-/*---------------------------------------------------------------------------
-   \brief cds_indicate_rxpkt() - API to Indicate rx data packet
-   The \a cds_indicate_rxpkt() enqueues the rx packet onto ol_rx_thread_queue
-   and notifies cds_ol_rx_thread().
-   \param  Arg - pointer to the global CDS Sched Context
-   \param pkt - Vos data message buffer
-
-   \return Nothing
-   \sa cds_indicate_rxpkt()
-   -------------------------------------------------------------------------*/
+/**
+ * cds_indicate_rxpkt() - indicate rx data packet
+ * @pSchedContext: Pointer to the global CDS Sched Context
+ * @pkt: CDS data message buffer
+ *
+ * This api enqueues the rx packet into ol_rx_thread_queue and notifies
+ * cds_ol_rx_thread()
+ *
+ * Return: none
+ */
 void cds_indicate_rxpkt(p_cds_sched_context pSchedContext,
 			struct cds_ol_rx_pkt *pkt);
 
@@ -295,142 +310,76 @@ void cds_indicate_rxpkt(p_cds_sched_context pSchedContext,
  */
 QDF_STATUS cds_close_rx_thread(void);
 
-/*---------------------------------------------------------------------------
-   \brief cds_alloc_ol_rx_pkt() - API to return next available cds message
-   The \a cds_alloc_ol_rx_pkt() returns next available cds message buffer
-   used for Rx Data processing.
-   \param pSchedContext - pointer to the global CDS Sched Context
-
-   \return pointer to cds message buffer
-   \sa cds_alloc_ol_rx_pkt()
-   -------------------------------------------------------------------------*/
-struct cds_ol_rx_pkt *cds_alloc_ol_rx_pkt(p_cds_sched_context pSchedContext);
-
-/*---------------------------------------------------------------------------
-   \brief cds_free_ol_rx_pkt() - API to release cds message to the freeq
-   The \a cds_free_ol_rx_pkt() returns the cds message used for Rx data
-   to the free queue.
-   \param  pSchedContext - pointer to the global CDS Sched Context
-   \param  pkt - Vos message buffer to be returned to free queue.
-
-   \return Nothing
-   \sa cds_free_ol_rx_pkt()
-   -------------------------------------------------------------------------*/
-void cds_free_ol_rx_pkt(p_cds_sched_context pSchedContext,
-			 struct cds_ol_rx_pkt *pkt);
-/*---------------------------------------------------------------------------
-   \brief cds_free_ol_rx_pkt_freeq() - Free cdss buffer free queue
-   The \a cds_free_ol_rx_pkt_freeq() does mem free of the buffers
-   available in free cds buffer queue which is used for Data rx processing
-   from Tlshim.
-   \param pSchedContext - pointer to the global CDS Sched Context
-
-   \return Nothing
-   \sa cds_free_ol_rx_pkt_freeq()
-   -------------------------------------------------------------------------*/
-void cds_free_ol_rx_pkt_freeq(p_cds_sched_context pSchedContext);
-#else
 /**
- * cds_sched_handle_rx_thread_affinity_req - rx thread affinity req handler
- * @high_tput_required: high throughput is required or not
+ * cds_alloc_ol_rx_pkt() - API to return next available cds message
+ * @pSchedContext: Pointer to the global CDS Sched Context
  *
- * rx thread affinity handler will find online cores and
- * will assign proper core based on perf requirement
+ * This api returns next available cds message buffer used for rx data
+ * processing
  *
- * Return: None
+ * Return: Pointer to cds message buffer
  */
-static inline void cds_sched_handle_rx_thread_affinity_req(
-	bool high_throughput) {}
+struct cds_ol_rx_pkt *cds_alloc_ol_rx_pkt(p_cds_sched_context pSchedContext);
 
 /**
- * cds_set_rx_thread_ul_cpu_mask() - Rx_thread affinity for UL from INI
- * @cpu_affinity_mask: CPU affinity bitmap
+ * cds_free_ol_rx_pkt() - api to release cds message to the freeq
+ * @pSchedContext: Pointer to the global CDS Sched Context
+ * @pkt: CDS message buffer to be returned to free queue.
  *
- * Return:None
- */
-static inline void cds_set_rx_thread_ul_cpu_mask(uint8_t cpu_affinity_mask) {}
-
-/**
- * cds_set_rx_thread_cpu_mask() - Rx_thread affinity from INI
- * @cpu_affinity_mask: CPU affinity bitmap
+ * This api returns the cds message used for Rx data to the free queue
  *
- * Return:None
+ * Return: none
  */
-static inline void cds_set_rx_thread_cpu_mask(uint8_t cpu_affinity_mask) {}
+void cds_free_ol_rx_pkt(p_cds_sched_context pSchedContext,
+			 struct cds_ol_rx_pkt *pkt);
 
 /**
- * cds_drop_rxpkt_by_staid() - api to drop pending rx packets for a sta
- * @pSchedContext: Pointer to the global CDS Sched Context
- * @staId: Station Id
+ * cds_free_ol_rx_pkt_freeq() - free cds buffer free queue
+ * @pSchedContext: pointer to the global CDS Sched Context
  *
- * This api drops queued packets for a station, to drop all the pending
- * packets the caller has to send WLAN_MAX_STA_COUNT as staId.
+ * This API does mem free of the buffers available in free cds buffer
+ * queue which is used for Data rx processing.
  *
  * Return: none
  */
+void cds_free_ol_rx_pkt_freeq(p_cds_sched_context pSchedContext);
+#else
+static inline void cds_sched_handle_rx_thread_affinity_req(
+	bool high_throughput) {}
+
+static inline void cds_set_rx_thread_ul_cpu_mask(uint8_t cpu_affinity_mask) {}
+
+static inline void cds_set_rx_thread_cpu_mask(uint8_t cpu_affinity_mask) {}
+
 static inline
 void cds_drop_rxpkt_by_staid(p_cds_sched_context pSchedContext, uint16_t staId)
 {
 }
 
-/**
- * cds_indicate_rxpkt() - API to Indicate rx data packet
- * @pSchedContext: pointer to  CDS Sched Context
- * @pkt: CDS OL RX pkt pointer containing to RX data message buffer
- *
- * Return: none
- */
 static inline
 void cds_indicate_rxpkt(p_cds_sched_context pSchedContext,
 			struct cds_ol_rx_pkt *pkt)
 {
 }
 
-/**
- * cds_close_rx_thread() - close the Rx thread
- *
- * This api closes the Rx thread:
- *
- * Return: qdf status
- */
 static inline
 QDF_STATUS cds_close_rx_thread(void)
 {
 	return QDF_STATUS_SUCCESS;
 }
 
-/**
- * cds_alloc_ol_rx_pkt() - API to return next available cds message
- * @pSchedContext: pointer to  CDS Sched Context
- *
- * Return: none
- */
 static inline
 struct cds_ol_rx_pkt *cds_alloc_ol_rx_pkt(p_cds_sched_context pSchedContext)
 {
 	return NULL;
 }
 
-/**
- * cds_free_ol_rx_pkt() - API to release cds message to the freeq
- * @pSchedContext: pointer to  CDS Sched Context
- * @pkt: CDS message buffer to be returned to free queue
- *
- * Return: none
- */
 static inline
 void cds_free_ol_rx_pkt(p_cds_sched_context pSchedContext,
 			 struct cds_ol_rx_pkt *pkt)
 {
 }
 
-/**
- * cds_free_ol_rx_pkt_freeq() - Free cds buffer free queue
- * @pSchedContext: pointer to  CDS Sched Context
- * @pkt: CDS message buffer to be returned to free queue
- *
- * Return: none
- */
 static inline
 void cds_free_ol_rx_pkt_freeq(p_cds_sched_context pSchedContext)
 {
@@ -444,82 +393,69 @@ static inline int cds_sched_handle_throughput_req(
 
 #endif
 
-/*---------------------------------------------------------------------------
-
-   \brief cds_sched_open() - initialize the CDS Scheduler
-
-   The \a cds_sched_open() function initializes the CDS Scheduler
-   Upon successful initialization:
-
-     - All the message queues are initialized
-
-     - The Main Controller thread is created and ready to receive and
-       dispatch messages.
-
-     - The Tx thread is created and ready to receive and dispatch messages
-
-   \param  p_cds_context - pointer to the global QDF Context
-
-   \param  p_cds_sched_context - pointer to a previously allocated buffer big
-   enough to hold a scheduler context.
-
-   \return QDF_STATUS_SUCCESS - Scheduler was successfully initialized and
-   is ready to be used.
-
-   QDF_STATUS_E_RESOURCES - System resources (other than memory)
-   are unavailable to initialize the scheduler
-
-   QDF_STATUS_E_NOMEM - insufficient memory exists to initialize
-   the scheduler
-
-   QDF_STATUS_E_INVAL - Invalid parameter passed to the scheduler Open
-   function
-
-   QDF_STATUS_E_FAILURE - Failure to initialize the scheduler/
-
-   \sa cds_sched_open()
-
-   -------------------------------------------------------------------------*/
+/**
+ * cds_sched_open() - initialize the CDS Scheduler
+ * @p_cds_context: Pointer to the global CDS Context
+ * @pSchedContext: Pointer to a previously allocated buffer big
+ *	enough to hold a scheduler context.
+ * @SchedCtxSize: CDS scheduler context size
+ *
+ * This function initializes the CDS Scheduler
+ * Upon successful initialization:
+ *	- All the message queues are initialized
+ *	- The Main Controller thread is created and ready to receive and
+ *	dispatch messages.
+ *
+ *
+ * Return: QDF status
+ */
 QDF_STATUS cds_sched_open(void *p_cds_context,
-			  p_cds_sched_context pSchedCxt, uint32_t SchedCtxSize);
-
-/*---------------------------------------------------------------------------
-
-   \brief cds_sched_close() - Close the CDS Scheduler
-
-   The \a cds_sched_closes() function closes the CDS Scheduler
-   Upon successful closing:
-
-     - All the message queues are flushed
-
-     - The Main Controller thread is closed
-
-     - The Tx thread is closed
-
-   \return QDF_STATUS_SUCCESS - Scheduler was successfully initialized and
-   is ready to be used.
-
-   QDF_STATUS_E_INVAL - Invalid parameter passed to the scheduler Open
-   function
-
-   QDF_STATUS_E_FAILURE - Failure to initialize the scheduler/
+			  p_cds_sched_context pSchedContext,
+			  uint32_t SchedCtxSize);
 
-   \sa cds_sched_close()
-
-   ---------------------------------------------------------------------------*/
+/**
+ * cds_sched_close() - close the cds scheduler
+ *
+ * This api closes the CDS Scheduler upon successful closing:
+ *	- All the message queues are flushed
+ *	- The Main Controller thread is closed
+ *	- The Tx thread is closed
+ *
+ *
+ * Return: qdf status
+ */
 QDF_STATUS cds_sched_close(void);
 
+/**
+ * get_cds_sched_ctxt() - get cds scheduler context
+ *
+ * Return: cds scheduler context
+ */
 p_cds_sched_context get_cds_sched_ctxt(void);
 
 void qdf_timer_module_init(void);
 void qdf_timer_module_deinit(void);
+
+/**
+ * cds_ssr_protect_init() - initialize ssr protection debug functionality
+ *
+ * Return:
+ *        void
+ */
 void cds_ssr_protect_init(void);
+
+/**
+ * cds_get_gfp_flags(): get GFP flags
+ *
+ * Based on the scheduled context, return GFP flags
+ * Return: gfp flags
+ */
 int cds_get_gfp_flags(void);
 
 /**
  * cds_shutdown_notifier_register() - Register for shutdown notification
- * @cb          : Call back to be called
- * @priv        : Private pointer to be passed back to call back
+ * @cb: Call back to be called
+ * @priv: Private pointer to be passed back to call back
  *
  * During driver remove or shutdown (recovery), external threads might be stuck
  * waiting on some event from firmware at lower layers. Remove or shutdown can't
@@ -529,7 +465,7 @@ int cds_get_gfp_flags(void);
  * further as waiting there may not make sense when FW may already have been
  * down.
  *
- * Return: CDS status
+ * Return: QDF status
  */
 QDF_STATUS cds_shutdown_notifier_register(void (*cb)(void *priv), void *priv);
 

+ 10 - 17
core/cds/inc/cds_utils.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2014-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -20,19 +20,12 @@
 #ifndef __CDS_UTILS_H
 #define __CDS_UTILS_H
 
-/**=========================================================================
-
-   \file  cds_utils.h
-
-   \brief Connectivity driver services (CDS) utility APIs
-
-   Various utility functions
-
-   ========================================================================*/
+/**
+ * DOC: cds_utils.h
+ *      Connectivity driver services (CDS) utility APIs
+ *      Various utility functions
+ */
 
-/*--------------------------------------------------------------------------
-   Include Files
-   ------------------------------------------------------------------------*/
 #include <qdf_types.h>
 #include <qdf_status.h>
 #include <qdf_event.h>
@@ -83,9 +76,9 @@
 
 /**
  * enum cds_band_type - Band type - 2g, 5g or all
- * CDS_BAND_ALL: Both 2G and 5G are valid.
- * CDS_BAND_2GHZ: only 2G is valid.
- * CDS_BAND_5GHZ: only 5G is valid.
+ * @CDS_BAND_ALL: Both 2G and 5G are valid.
+ * @CDS_BAND_2GHZ: only 2G is valid.
+ * @CDS_BAND_5GHZ: only 5G is valid.
  */
 enum cds_band_type {
 	CDS_BAND_ALL = 0,
@@ -104,7 +97,7 @@ enum cds_band_type cds_chan_to_band(uint32_t chan);
 uint8_t cds_get_mmie_size(void);
 
 /**
- * cds_get_gmac_mmie_size: Gives length of GMAC MMIE size
+ * cds_get_gmac_mmie_size() - Gives length of GMAC MMIE size
  *
  * Return: Size of MMIE for GMAC
  */

+ 32 - 31
core/cds/src/cds_ieee80211_common_i.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2013-2017,2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -21,37 +22,37 @@
 
 /**
  * enum ieee80211_phymode - not really a mode; there are really multiple PHY's
- * @IEEE80211_MODE_AUTO - autoselect
- * @IEEE80211_MODE_11A - 5GHz, OFDM
- * @IEEE80211_MODE_11B - 2GHz, CCK
- * @IEEE80211_MODE_11G - 2GHz, OFDM
- * @IEEE80211_MODE_FH - 2GHz, GFSK
- * @IEEE80211_MODE_TURBO_A - 5GHz, OFDM, 2x clock dynamic turbo
- * @IEEE80211_MODE_TURBO_G - 2GHz, OFDM, 2x clock dynamic turbo
- * @IEEE80211_MODE_11NA_HT20 - 5Ghz, HT20
- * @IEEE80211_MODE_11NG_HT20 - 2Ghz, HT20
- * @IEEE80211_MODE_11NA_HT40PLUS - 5Ghz, HT40 (ext ch +1)
- * @IEEE80211_MODE_11NA_HT40MINUS - 5Ghz, HT40 (ext ch -1)
- * @IEEE80211_MODE_11NG_HT40PLUS - 2Ghz, HT40 (ext ch +1)
- * @IEEE80211_MODE_11NG_HT40MINUS - 2Ghz, HT40 (ext ch -1)
- * @IEEE80211_MODE_11NG_HT40 - 2Ghz, Auto HT40
- * @IEEE80211_MODE_11NA_HT40 - 2Ghz, Auto HT40
- * @IEEE80211_MODE_11AC_VHT20 - 5Ghz, VHT20
- * @IEEE80211_MODE_11AC_VHT40PLUS - 5Ghz, VHT40 (Ext ch +1)
- * @IEEE80211_MODE_11AC_VHT40MINUS - 5Ghz VHT40 (Ext ch -1)
- * @IEEE80211_MODE_11AC_VHT40 - 5Ghz, VHT40
- * @IEEE80211_MODE_11AC_VHT80 - 5Ghz, VHT80
- * @IEEE80211_MODE_2G_AUTO - 2G 11 b/g/n autoselect
- * @IEEE80211_MODE_5G_AUTO - 5G 11 a/n/ac autoselect
- * @IEEE80211_MODE_11AGN - Support 11N in both 2G and 5G
- * @IEEE80211_MODE_11AX_HE20 - HE20
- * @IEEE80211_MODE_11AX_HE40 - HE40
- * @IEEE80211_MODE_11AX_HE40PLUS - HE40 (ext ch +1)
- * @IEEE80211_MODE_11AX_HE40MINUS - HE40 (ext ch -1)
- * @IEEE80211_MODE_11AX_HE80 - HE80
- * @IEEE80211_MODE_11AX_HE80P80 - HE 80P80
- * @IEEE80211_MODE_11AX_HE160 - HE160
- * @IEEE80211_MODE_MAX - Maximum possible value
+ * @IEEE80211_MODE_AUTO: autoselect
+ * @IEEE80211_MODE_11A: 5GHz, OFDM
+ * @IEEE80211_MODE_11B: 2GHz, CCK
+ * @IEEE80211_MODE_11G: 2GHz, OFDM
+ * @IEEE80211_MODE_FH: 2GHz, GFSK
+ * @IEEE80211_MODE_TURBO_A: 5GHz, OFDM, 2x clock dynamic turbo
+ * @IEEE80211_MODE_TURBO_G: 2GHz, OFDM, 2x clock dynamic turbo
+ * @IEEE80211_MODE_11NA_HT20: 5Ghz, HT20
+ * @IEEE80211_MODE_11NG_HT20: 2Ghz, HT20
+ * @IEEE80211_MODE_11NA_HT40PLUS: 5Ghz, HT40 (ext ch +1)
+ * @IEEE80211_MODE_11NA_HT40MINUS: 5Ghz, HT40 (ext ch -1)
+ * @IEEE80211_MODE_11NG_HT40PLUS: 2Ghz, HT40 (ext ch +1)
+ * @IEEE80211_MODE_11NG_HT40MINUS: 2Ghz, HT40 (ext ch -1)
+ * @IEEE80211_MODE_11NG_HT40: 2Ghz, Auto HT40
+ * @IEEE80211_MODE_11NA_HT40: 2Ghz, Auto HT40
+ * @IEEE80211_MODE_11AC_VHT20: 5Ghz, VHT20
+ * @IEEE80211_MODE_11AC_VHT40PLUS: 5Ghz, VHT40 (Ext ch +1)
+ * @IEEE80211_MODE_11AC_VHT40MINUS: 5Ghz VHT40 (Ext ch -1)
+ * @IEEE80211_MODE_11AC_VHT40: 5Ghz, VHT40
+ * @IEEE80211_MODE_11AC_VHT80: 5Ghz, VHT80
+ * @IEEE80211_MODE_2G_AUTO: 2G 11 b/g/n autoselect
+ * @IEEE80211_MODE_5G_AUTO: 5G 11 a/n/ac autoselect
+ * @IEEE80211_MODE_11AGN: Support 11N in both 2G and 5G
+ * @IEEE80211_MODE_11AX_HE20: HE20
+ * @IEEE80211_MODE_11AX_HE40: HE40
+ * @IEEE80211_MODE_11AX_HE40PLUS: HE40 (ext ch +1)
+ * @IEEE80211_MODE_11AX_HE40MINUS: HE40 (ext ch -1)
+ * @IEEE80211_MODE_11AX_HE80: HE80
+ * @IEEE80211_MODE_11AX_HE80P80: HE 80P80
+ * @IEEE80211_MODE_11AX_HE160: HE160
+ * @IEEE80211_MODE_MAX: Maximum possible value
  */
 enum ieee80211_phymode {
 	IEEE80211_MODE_AUTO = 0,

+ 7 - 43
core/cds/src/cds_packet.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2014-2016, 2018-2020 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -16,19 +17,12 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/**=========================================================================
-
-   \file        cds_packet.c
-
-   \brief       Connectivity driver services (CDS) network Packet APIs
-
-   Network Protocol packet/buffer support interfaces
-
-   ========================================================================*/
+/**
+ * DOC: cds_packet.c
+ *      Connectivity driver services (CDS) network Packet APIs
+ *      Network Protocol packet/buffer support interfaces
+ */
 
-/*--------------------------------------------------------------------------
-   Include Files
-   ------------------------------------------------------------------------*/
 #include <cds_packet.h>
 #include <i_cds_packet.h>
 #include <qdf_mc_timer.h>
@@ -40,10 +34,6 @@
 
 #define TX_PKT_MIN_HEADROOM          (64)
 
-/**
- * cds_pkt_return_packet  Free the cds Packet
- * @ cds Packet
- */
 QDF_STATUS cds_pkt_return_packet(cds_pkt_t *packet)
 {
 	/* Validate the input parameter pointer */
@@ -62,21 +52,6 @@ QDF_STATUS cds_pkt_return_packet(cds_pkt_t *packet)
 	return QDF_STATUS_SUCCESS;
 }
 
-/**--------------------------------------------------------------------------
-
-   \brief cds_pkt_get_packet_length() - Get packet length for a cds Packet
-
-   This API returns the total length of the data in a cds Packet.
-
-   \param pPacket - the cds Packet to get the packet length from.
-
-   \param pPacketSize - location to return the total size of the data contained
-   in the cds Packet.
-   \return
-
-   \sa
-
-   ---------------------------------------------------------------------------*/
 QDF_STATUS
 cds_pkt_get_packet_length(cds_pkt_t *pPacket, uint16_t *pPacketSize)
 {
@@ -92,10 +67,6 @@ cds_pkt_get_packet_length(cds_pkt_t *pPacket, uint16_t *pPacketSize)
 }
 
 #ifdef MEMORY_DEBUG
-/*---------------------------------------------------------------------------
-* @brief cds_packet_alloc_debug() -
-      Allocate a network buffer for TX
-   ---------------------------------------------------------------------------*/
 QDF_STATUS cds_packet_alloc_debug(uint16_t size, void **data, void **ppPacket,
 				  const char *func_name, uint32_t line_num)
 {
@@ -118,10 +89,6 @@ QDF_STATUS cds_packet_alloc_debug(uint16_t size, void **data, void **ppPacket,
 	return qdf_ret_status;
 }
 #else
-/*---------------------------------------------------------------------------
-* @brief cds_packet_alloc() -
-      Allocate a network buffer for TX
-   ---------------------------------------------------------------------------*/
 QDF_STATUS cds_packet_alloc(uint16_t size, void **data, void **ppPacket)
 {
 	QDF_STATUS qdf_ret_status = QDF_STATUS_E_FAILURE;
@@ -142,10 +109,7 @@ QDF_STATUS cds_packet_alloc(uint16_t size, void **data, void **ppPacket)
 }
 
 #endif
-/*---------------------------------------------------------------------------
-* @brief cds_packet_free() -
-      Free input network buffer
-   ---------------------------------------------------------------------------*/
+
 void cds_packet_free(void *pPacket)
 {
 	qdf_nbuf_free((qdf_nbuf_t) pPacket);

+ 5 - 156
core/cds/src/cds_sched.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2014-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -120,7 +120,7 @@ void cds_set_rx_thread_ul_cpu_mask(uint8_t cpu_affinity_mask)
 
 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0))
 /**
- * cds_rx_thread_log_cpu_affinity_change - Log Rx thread affinity change
+ * cds_rx_thread_log_cpu_affinity_change() - Log Rx thread affinity change
  * @core_affine_cnt: Available cores
  * @tput_req: Throughput request
  * @old_mask: Old affinity mask
@@ -229,15 +229,6 @@ err:
 	return 1;
 }
 
-/**
- * cds_sched_handle_cpu_hot_plug - cpu hotplug event handler
- *
- * cpu hotplug indication handler
- * will find online cores and will assign proper core based on perf requirement
- *
- * Return: 0 success
- *         1 fail
- */
 int cds_sched_handle_cpu_hot_plug(void)
 {
 	p_cds_sched_context pSchedContext = get_cds_sched_ctxt();
@@ -317,16 +308,6 @@ affine_thread:
 	mutex_unlock(&pschedcontext->affinity_lock);
 }
 
-/**
- * cds_sched_handle_throughput_req - cpu throughput requirement handler
- * @high_tput_required:	high throughput is required or not
- *
- * high or low throughput indication ahndler
- * will find online cores and will assign proper core based on perf requirement
- *
- * Return: 0 success
- *         1 fail
- */
 int cds_sched_handle_throughput_req(bool high_tput_required)
 {
 	p_cds_sched_context pSchedContext = get_cds_sched_ctxt();
@@ -437,7 +418,7 @@ static void __cds_cpu_hotplug_notify(uint32_t cpu, bool cpu_up)
 }
 
 /**
- * cds_cpu_hotplug_notify - cpu core up/down notification handler wrapper
+ * cds_cpu_hotplug_notify() - cpu core up/down notification handler wrapper
  * @cpu: CPU Id of the CPU generating the event
  * @cpu_up: true if the CPU is online
  *
@@ -466,25 +447,9 @@ static void cds_cpu_before_offline_cb(void *context, uint32_t cpu)
 }
 #endif /* QCA_CONFIG_SMP */
 
-/**
- * cds_sched_open() - initialize the CDS Scheduler
- * @p_cds_context: Pointer to the global CDS Context
- * @pSchedContext: Pointer to a previously allocated buffer big
- *	enough to hold a scheduler context.
- * @SchedCtxSize: CDS scheduler context size
- *
- * This function initializes the CDS Scheduler
- * Upon successful initialization:
- *	- All the message queues are initialized
- *	- The Main Controller thread is created and ready to receive and
- *	dispatch messages.
- *
- *
- * Return: QDF status
- */
 QDF_STATUS cds_sched_open(void *p_cds_context,
-		p_cds_sched_context pSchedContext,
-		uint32_t SchedCtxSize)
+			  p_cds_sched_context pSchedContext,
+			  uint32_t SchedCtxSize)
 {
 	cds_debug("Opening the CDS Scheduler");
 	/* Sanity checks */
@@ -557,15 +522,6 @@ pkt_freeqalloc_failure:
 } /* cds_sched_open() */
 
 #ifdef QCA_CONFIG_SMP
-/**
- * cds_free_ol_rx_pkt_freeq() - free cds buffer free queue
- * @pSchedContext: pointer to the global CDS Sched Context
- *
- * This API does mem free of the buffers available in free cds buffer
- * queue which is used for Data rx processing.
- *
- * Return: none
- */
 void cds_free_ol_rx_pkt_freeq(p_cds_sched_context pSchedContext)
 {
 	struct cds_ol_rx_pkt *pkt;
@@ -622,14 +578,6 @@ free:
 	return QDF_STATUS_E_NOMEM;
 }
 
-/**
- * cds_free_ol_rx_pkt() - api to release cds message to the freeq
- * This api returns the cds message used for Rx data to the free queue
- * @pSchedContext: Pointer to the global CDS Sched Context
- * @pkt: CDS message buffer to be returned to free queue.
- *
- * Return: none
- */
 void
 cds_free_ol_rx_pkt(p_cds_sched_context pSchedContext,
 		    struct cds_ol_rx_pkt *pkt)
@@ -640,15 +588,6 @@ cds_free_ol_rx_pkt(p_cds_sched_context pSchedContext,
 	spin_unlock_bh(&pSchedContext->cds_ol_rx_pkt_freeq_lock);
 }
 
-/**
- * cds_alloc_ol_rx_pkt() - API to return next available cds message
- * @pSchedContext: Pointer to the global CDS Sched Context
- *
- * This api returns next available cds message buffer used for rx data
- * processing
- *
- * Return: Pointer to cds message buffer
- */
 struct cds_ol_rx_pkt *cds_alloc_ol_rx_pkt(p_cds_sched_context pSchedContext)
 {
 	struct cds_ol_rx_pkt *pkt;
@@ -665,16 +604,6 @@ struct cds_ol_rx_pkt *cds_alloc_ol_rx_pkt(p_cds_sched_context pSchedContext)
 	return pkt;
 }
 
-/**
- * cds_indicate_rxpkt() - indicate rx data packet
- * @pSchedContext: Pointer to the global CDS Sched Context
- * @pkt: CDS data message buffer
- *
- * This api enqueues the rx packet into ol_rx_thread_queue and notifies
- * cds_ol_rx_thread()
- *
- * Return: none
- */
 void
 cds_indicate_rxpkt(p_cds_sched_context pSchedContext,
 		   struct cds_ol_rx_pkt *pkt)
@@ -686,13 +615,6 @@ cds_indicate_rxpkt(p_cds_sched_context pSchedContext,
 	wake_up_interruptible(&pSchedContext->ol_rx_wait_queue);
 }
 
-/**
- * cds_close_rx_thread() - close the Rx thread
- *
- * This api closes the Rx thread:
- *
- * Return: qdf status
- */
 QDF_STATUS cds_close_rx_thread(void)
 {
 	cds_debug("invoked");
@@ -718,16 +640,6 @@ QDF_STATUS cds_close_rx_thread(void)
 	return QDF_STATUS_SUCCESS;
 } /* cds_close_rx_thread */
 
-/**
- * cds_drop_rxpkt_by_staid() - api to drop pending rx packets for a sta
- * @pSchedContext: Pointer to the global CDS Sched Context
- * @staId: Station Id
- *
- * This api drops queued packets for a station, to drop all the pending
- * packets the caller has to send WLAN_MAX_STA_COUNT as staId.
- *
- * Return: none
- */
 void cds_drop_rxpkt_by_staid(p_cds_sched_context pSchedContext, uint16_t staId)
 {
 	struct list_head local_list;
@@ -894,17 +806,6 @@ void cds_resume_rx_thread(void)
 }
 #endif
 
-/**
- * cds_sched_close() - close the cds scheduler
- *
- * This api closes the CDS Scheduler upon successful closing:
- *	- All the message queues are flushed
- *	- The Main Controller thread is closed
- *	- The Tx thread is closed
- *
- *
- * Return: qdf status
- */
 QDF_STATUS cds_sched_close(void)
 {
 	cds_debug("invoked");
@@ -920,11 +821,6 @@ QDF_STATUS cds_sched_close(void)
 	return QDF_STATUS_SUCCESS;
 } /* cds_sched_close() */
 
-/**
- * get_cds_sched_ctxt() - get cds scheduler context
- *
- * Return: none
- */
 p_cds_sched_context get_cds_sched_ctxt(void)
 {
 	/* Make sure that Vos Scheduler context has been initialized */
@@ -934,36 +830,12 @@ p_cds_sched_context get_cds_sched_ctxt(void)
 	return gp_cds_sched_context;
 }
 
-/**
- * cds_ssr_protect_init() - initialize ssr protection debug functionality
- *
- * Return:
- *        void
- */
 void cds_ssr_protect_init(void)
 {
 	spin_lock_init(&ssr_protect_lock);
 	INIT_LIST_HEAD(&shutdown_notifier_head);
 }
 
-/**
- * cds_shutdown_notifier_register() - Register for shutdown notification
- * @cb          : Call back to be called
- * @priv        : Private pointer to be passed back to call back
- *
- * During driver remove or shutdown (recovery), external threads might be stuck
- * waiting on some event from firmware at lower layers. Remove or shutdown can't
- * proceed till the thread completes to avoid any race condition. Call backs can
- * be registered here to get early notification of remove or shutdown so that
- * waiting thread can be unblocked and hence remove or shutdown can proceed
- * further as waiting there may not make sense when FW may already have been
- * down.
- *
- * This is intended for early notification of remove() or shutdown() only so
- * that lower layers can take care of stuffs like external waiting thread.
- *
- * Return: CDS status
- */
 QDF_STATUS cds_shutdown_notifier_register(void (*cb)(void *priv), void *priv)
 {
 	struct shutdown_notifier *notifier;
@@ -998,16 +870,6 @@ QDF_STATUS cds_shutdown_notifier_register(void (*cb)(void *priv), void *priv)
 	return 0;
 }
 
-/**
- * cds_shutdown_notifier_purge() - Purge all the notifiers
- *
- * Shutdown notifiers are added to provide the early notification of remove or
- * shutdown being initiated. Adding this API to purge all the registered call
- * backs as they are not useful any more while all the lower layers are being
- * shutdown.
- *
- * Return: None
- */
 void cds_shutdown_notifier_purge(void)
 {
 	struct shutdown_notifier *notifier, *temp;
@@ -1027,12 +889,6 @@ void cds_shutdown_notifier_purge(void)
 	spin_unlock_irqrestore(&ssr_protect_lock, irq_flags);
 }
 
-/**
- * cds_shutdown_notifier_call() - Call shutdown notifier call back
- *
- * Call registered shutdown notifier call back to indicate about remove or
- * shutdown.
- */
 void cds_shutdown_notifier_call(void)
 {
 	struct shutdown_notifier *notifier;
@@ -1053,12 +909,6 @@ void cds_shutdown_notifier_call(void)
 	spin_unlock_irqrestore(&ssr_protect_lock, irq_flags);
 }
 
-/**
- * cds_get_gfp_flags(): get GFP flags
- *
- * Based on the scheduled context, return GFP flags
- * Return: gfp flags
- */
 int cds_get_gfp_flags(void)
 {
 	int flags = GFP_KERNEL;
@@ -1068,4 +918,3 @@ int cds_get_gfp_flags(void)
 
 	return flags;
 }
-

+ 16 - 18
core/cds/src/i_cds_packet.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2014-2016, 2019, 2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -19,24 +20,16 @@
 #if !defined(__I_CDS_PACKET_H)
 #define __I_CDS_PACKET_H
 
-/**=========================================================================
-
-   \file        i_cds_packet.h
-
-   \brief       Connectivity driver services network packet APIs
-
-   Network Protocol packet/buffer internal include file
-
-   ========================================================================*/
+/**
+ * DOC: i_cds_packet.h
+ *      Connectivity driver services network packet APIs
+ *      Network Protocol packet/buffer internal include file
+ */
 
-/*--------------------------------------------------------------------------
-   Include Files
-   ------------------------------------------------------------------------*/
 #include "qdf_types.h"
+
 /**
- * Rx Packet Struct
- * Buffer for the packet received from WMA has pointers to 802.11
- * frame fields and additional information based on the type of frame.
+ * struct packetmeta - Rx Packet Struct
  * @frequency: Frequency
  * @snr: Signal to noise ratio
  * @rssi: Received signal strength indicator, normalized to -96 dBm as
@@ -55,9 +48,12 @@
  * @session_id: PE session
  * @tsf_delta: Delta between tsf in frame and local value of tsf
  * @rssi_raw: rssi based on actual noise floor in hardware.
- * @pkt_buf: Pointer to Packet
+ * @pkt_qdf_buf: Pointer to Packet
+ *
+ * Buffer for the packet received from WMA has pointers to 802.11
+ * frame fields and additional information based on the type of frame.
  */
-typedef struct {
+struct packetmeta {
 	uint32_t frequency;
 	uint8_t snr;
 	uint32_t rssi;
@@ -75,7 +71,9 @@ typedef struct {
 	uint32_t tsf_delta;
 	uint32_t rssi_raw;
 	void *pkt_qdf_buf;
-} t_packetmeta, *tp_packetmeta;
+};
+
+typedef struct packetmeta t_packetmeta, *tp_packetmeta;
 
 /* implementation specific cds packet type */
 struct cds_pkt_t {