12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385 |
- /*
- * Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 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
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /**
- * @file cdp_txrx_ctrl.h
- * @brief Define the host data path control API functions
- * called by the host control SW and the OS interface module
- */
- #ifndef _CDP_TXRX_CTRL_H_
- #define _CDP_TXRX_CTRL_H_
- #include "cdp_txrx_handle.h"
- #include "cdp_txrx_cmn_struct.h"
- #include "cdp_txrx_cmn.h"
- #include "cdp_txrx_ops.h"
- static inline int cdp_is_target_ar900b
- (ol_txrx_soc_handle soc)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_is_target_ar900b)
- return 0;
- return soc->ops->ctrl_ops->txrx_is_target_ar900b(soc);
- }
- /* WIN */
- static inline int
- cdp_mempools_attach(ol_txrx_soc_handle soc)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_mempools_attach)
- return 0;
- return soc->ops->ctrl_ops->txrx_mempools_attach(soc);
- }
- #if defined(ATH_SUPPORT_NAC) || defined(ATH_SUPPORT_NAC_RSSI)
- /**
- * @brief update the neighbour peer addresses
- * @details
- * This defines interface function to update neighbour peers addresses
- * which needs to be filtered
- *
- * @param soc - the pointer to soc object
- * @param vdev_id - id of the pointer to vdev
- * @param cmd - add/del entry into peer table
- * @param macaddr - the address of neighbour peer
- * @return - int
- */
- static inline int
- cdp_update_filter_neighbour_peers(ol_txrx_soc_handle soc,
- uint8_t vdev_id, uint32_t cmd, uint8_t *macaddr)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_update_filter_neighbour_peers)
- return 0;
- return soc->ops->ctrl_ops->txrx_update_filter_neighbour_peers
- (soc, vdev_id, cmd, macaddr);
- }
- #endif /* ATH_SUPPORT_NAC || ATH_SUPPORT_NAC_RSSI*/
- #ifdef WLAN_SUPPORT_MSCS
- /**
- * @brief record the MSCS data and send it to the Data path
- * @details
- * This defines interface function to record the MSCS procedure
- * based data parameters so that the data path layer can access it
- *
- * @param soc - the pointer to soc object
- * @param vdev_id - id of the pointer to vdev
- * @param macaddr - the address of neighbour peer
- * @param mscs_params - Structure having MSCS params
- * obtained from handshake
- * @return - QDF_STATUS
- */
- static inline QDF_STATUS
- cdp_record_vdev_mscs_params(ol_txrx_soc_handle soc, uint8_t
- *macaddr, uint8_t vdev_id, struct cdp_mscs_params *mscs_params,
- bool active)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_record_mscs_params)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_record_mscs_params
- (soc, macaddr, vdev_id, mscs_params, active);
- }
- #endif
- /**
- * @brief set the Reo Destination ring for the pdev
- * @details
- * This will be used to configure the Reo Destination ring for this pdev.
- *
- * @param soc - pointer to the soc
- * @param pdev_id - id of the data physical device object
- * @param val - the Reo destination ring index (1 to 4)
- * @return - QDF_STATUS
- */
- static inline QDF_STATUS
- cdp_set_pdev_reo_dest(ol_txrx_soc_handle soc,
- uint8_t pdev_id, enum cdp_host_reo_dest_ring val)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_pdev_reo_dest)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_set_pdev_reo_dest
- (soc, pdev_id, val);
- }
- /**
- * @brief get the Reo Destination ring for the pdev
- *
- * @param soc - pointer to the soc
- * @param pdev_id - id of physical device object
- * @return - the Reo destination ring index (1 to 4), 0 if not supported.
- */
- static inline enum cdp_host_reo_dest_ring
- cdp_get_pdev_reo_dest(ol_txrx_soc_handle soc, uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return cdp_host_reo_dest_ring_unknown;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_get_pdev_reo_dest)
- return cdp_host_reo_dest_ring_unknown;
- return soc->ops->ctrl_ops->txrx_get_pdev_reo_dest(soc, pdev_id);
- }
- /* Is this similar to ol_txrx_peer_state_update() in MCL */
- /**
- * @brief Update the authorize peer object at association time
- * @details
- * For the host-based implementation of rate-control, it
- * updates the peer/node-related parameters within rate-control
- * context of the peer at association.
- *
- * @param soc - pointer to the soc
- * @param vdev_id - id of the pointer to vdev
- * @param peer_mac - mac address of the node's object
- * @authorize - either to authorize or unauthorize peer
- *
- * @return QDF_STATUS
- */
- static inline QDF_STATUS
- cdp_peer_authorize(ol_txrx_soc_handle soc, uint8_t vdev_id, uint8_t *peer_mac,
- u_int32_t authorize)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_peer_authorize)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_peer_authorize
- (soc, vdev_id, peer_mac, authorize);
- }
- /**
- * cdp_peer_get_authorize Get per authorize status
- *
- * @soc - pointer to the soc
- * @vdev_id - id of the pointer to vdev
- * @peer_mac - mac address of the node's object
- *
- * Return: true is peer is authorized, false otherwise
- */
- static inline bool
- cdp_peer_get_authorize(ol_txrx_soc_handle soc, uint8_t vdev_id,
- uint8_t *peer_mac)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return false;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_peer_get_authorize)
- return false;
- return soc->ops->ctrl_ops->txrx_peer_get_authorize
- (soc, vdev_id, peer_mac);
- }
- static inline void cdp_tx_flush_buffers
- (ol_txrx_soc_handle soc, uint8_t vdev_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->tx_flush_buffers)
- return;
- soc->ops->ctrl_ops->tx_flush_buffers(soc, vdev_id);
- }
- static inline QDF_STATUS cdp_txrx_get_vdev_param(ol_txrx_soc_handle soc,
- uint8_t vdev_id,
- enum cdp_vdev_param_type type,
- cdp_config_param_type *val)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_get_vdev_param) {
- dp_cdp_debug("callback not registered:");
- return QDF_STATUS_E_FAILURE;
- }
- return soc->ops->ctrl_ops->txrx_get_vdev_param(soc, vdev_id,
- type, val);
- }
- static inline QDF_STATUS
- cdp_txrx_set_vdev_param(ol_txrx_soc_handle soc,
- uint8_t vdev_id, enum cdp_vdev_param_type type,
- cdp_config_param_type val)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_vdev_param) {
- dp_cdp_nofl_debug("NULL vdev params callback");
- return QDF_STATUS_E_FAILURE;
- }
- return soc->ops->ctrl_ops->txrx_set_vdev_param(soc, vdev_id,
- type, val);
- }
- static inline QDF_STATUS
- cdp_txrx_set_psoc_param(ol_txrx_soc_handle soc,
- enum cdp_psoc_param_type type,
- cdp_config_param_type val)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_psoc_param)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_set_psoc_param(soc, type, val);
- }
- static inline QDF_STATUS
- cdp_txrx_get_psoc_param(ol_txrx_soc_handle soc,
- enum cdp_psoc_param_type type,
- cdp_config_param_type *val)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_get_psoc_param)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_get_psoc_param(soc, type, val);
- }
- static inline
- QDF_STATUS cdp_vdev_alloc_vdev_stats_id(ol_txrx_soc_handle soc,
- uint8_t *vdev_stats_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->host_stats_ops ||
- !soc->ops->host_stats_ops->txrx_alloc_vdev_stats_id)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->host_stats_ops->txrx_alloc_vdev_stats_id
- (soc, vdev_stats_id);
- }
- static inline
- void cdp_vdev_reset_vdev_stats_id(ol_txrx_soc_handle soc,
- uint8_t vdev_stats_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->host_stats_ops ||
- !soc->ops->host_stats_ops->txrx_reset_vdev_stats_id)
- return;
- soc->ops->host_stats_ops->txrx_reset_vdev_stats_id(soc, vdev_stats_id);
- }
- #ifdef VDEV_PEER_PROTOCOL_COUNT
- /**
- * cdp_set_vdev_peer_protocol_count() - set per-peer protocol count tracking
- *
- * @soc - pointer to the soc
- * @vdev - the data virtual device object
- * @enable - enable per-peer protocol count
- *
- * Set per-peer protocol count feature enable
- *
- * Return: void
- */
- static inline
- void cdp_set_vdev_peer_protocol_count(ol_txrx_soc_handle soc, int8_t vdev_id,
- bool enable)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_enable_peer_protocol_count)
- return;
- soc->ops->ctrl_ops->txrx_enable_peer_protocol_count(soc, vdev_id,
- enable);
- }
- /**
- * cdp_set_vdev_peer_protocol_drop_mask() - set per-peer protocol drop mask
- *
- * @soc - pointer to the soc
- * @vdev - the data virtual device object
- * @drop_mask - drop_mask
- *
- * Set per-peer protocol drop_mask
- *
- * Return - void
- */
- static inline
- void cdp_set_vdev_peer_protocol_drop_mask(ol_txrx_soc_handle soc,
- int8_t vdev_id, int drop_mask)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_peer_protocol_drop_mask)
- return;
- soc->ops->ctrl_ops->txrx_set_peer_protocol_drop_mask(soc, vdev_id,
- drop_mask);
- }
- /**
- * cdp_is_vdev_peer_protocol_count_enabled() - whether peer-protocol tracking
- * enabled
- *
- * @soc - pointer to the soc
- * @vdev - the data virtual device object
- *
- * Get whether peer protocol count feature enabled or not
- *
- * Return: whether feature enabled or not
- */
- static inline
- int cdp_is_vdev_peer_protocol_count_enabled(ol_txrx_soc_handle soc,
- int8_t vdev_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_is_peer_protocol_count_enabled)
- return 0;
- return soc->ops->ctrl_ops->txrx_is_peer_protocol_count_enabled(soc,
- vdev_id);
- }
- /**
- * cdp_get_peer_protocol_drop_mask() - get per-peer protocol count drop-mask
- *
- * @soc - pointer to the soc
- * @vdev - the data virtual device object
- *
- * Get peer-protocol-count drop-mask
- *
- * Return: peer-protocol-count drop-mask
- */
- static inline
- int cdp_get_peer_protocol_drop_mask(ol_txrx_soc_handle soc, int8_t vdev_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_get_peer_protocol_drop_mask)
- return 0;
- return soc->ops->ctrl_ops->txrx_get_peer_protocol_drop_mask(soc,
- vdev_id);
- }
- /*
- * Rx-Ingress and Tx-Egress are in the lower level DP layer
- * Rx-Egress and Tx-ingress are handled in osif layer for DP
- * So
- * Rx-Ingress and Tx-Egress definitions are in DP layer
- * Rx-Egress and Tx-ingress mask definitions are here below
- */
- #define VDEV_PEER_PROTOCOL_RX_INGRESS_MASK 1
- #define VDEV_PEER_PROTOCOL_TX_INGRESS_MASK 2
- #define VDEV_PEER_PROTOCOL_RX_EGRESS_MASK 4
- #define VDEV_PEER_PROTOCOL_TX_EGRESS_MASK 8
- #else
- #define cdp_set_vdev_peer_protocol_count(soc, vdev_id, enable)
- #define cdp_set_vdev_peer_protocol_drop_mask(soc, vdev_id, drop_mask)
- #define cdp_is_vdev_peer_protocol_count_enabled(soc, vdev_id) 0
- #define cdp_get_peer_protocol_drop_mask(soc, vdev_id) 0
- #endif
- /**
- * cdp_txrx_set_pdev_param() - set pdev parameter
- * @soc: opaque soc handle
- * @pdev_id: id of data path pdev handle
- * @type: param type
- * @val: value
- *
- * Return: status: 0 - Success, non-zero: Failure
- */
- static inline QDF_STATUS cdp_txrx_set_pdev_param(ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- enum cdp_pdev_param_type type,
- cdp_config_param_type val)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_pdev_param)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_set_pdev_param
- (soc, pdev_id, type, val);
- }
- /**
- * cdp_txrx_set_peer_param() - set pdev parameter
- * @soc: opaque soc handle
- * @vdev_id: id of data path vdev handle
- * @peer_mac: peer mac address
- * @type: param type
- * @val: value
- *
- * Return: status: 0 - Success, non-zero: Failure
- */
- static inline QDF_STATUS cdp_txrx_set_peer_param(ol_txrx_soc_handle soc,
- uint8_t vdev_id,
- uint8_t *peer_mac,
- enum cdp_peer_param_type type,
- cdp_config_param_type val)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_peer_param)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_set_peer_param
- (soc, vdev_id, peer_mac, type, val);
- }
- /**
- * cdp_txrx_get_peer_param() - set pdev parameter
- * @soc: opaque soc handle
- * @vdev_id: id of data path vdev handle
- * @peer_mac: peer mac address
- * @type: param type
- * @val: address of buffer
- *
- * Return: status
- */
- static inline QDF_STATUS cdp_txrx_get_peer_param(ol_txrx_soc_handle soc,
- uint8_t vdev_id,
- uint8_t *peer_mac,
- enum cdp_peer_param_type type,
- cdp_config_param_type *val)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_get_peer_param)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_get_peer_param
- (soc, vdev_id, peer_mac, type, val);
- }
- #ifdef QCA_MULTIPASS_SUPPORT
- static inline void
- cdp_peer_set_vlan_id(ol_txrx_soc_handle soc, uint8_t vdev_id,
- uint8_t *peer_mac, uint16_t vlan_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_peer_set_vlan_id)
- return;
- soc->ops->ctrl_ops->txrx_peer_set_vlan_id(soc, vdev_id, peer_mac,
- vlan_id);
- }
- #endif
- /**
- * cdp_txrx_get_pdev_param() - get pdev parameter
- * @soc: opaque soc handle
- * @pdev_id: id of data path pdev handle
- * @type: param type
- * @value: address of value buffer
- *
- * Return: status
- */
- static inline QDF_STATUS cdp_txrx_get_pdev_param(ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- enum cdp_pdev_param_type type,
- cdp_config_param_type *value)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_get_pdev_param)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_get_pdev_param
- (soc, pdev_id, type, value);
- }
- /**
- * cdp_txrx_peer_protocol_cnt() - set peer protocol count
- * @soc: opaque soc handle
- * @vdev: opaque vdev handle
- * @nbuf: data packet
- * @is_egress: whether egress or ingress
- * @is_rx: whether tx or rx
- *
- * Return: void
- */
- #ifdef VDEV_PEER_PROTOCOL_COUNT
- static inline void
- cdp_txrx_peer_protocol_cnt(ol_txrx_soc_handle soc,
- int8_t vdev_id,
- qdf_nbuf_t nbuf,
- enum vdev_peer_protocol_enter_exit is_egress,
- enum vdev_peer_protocol_tx_rx is_rx)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_peer_protocol_cnt)
- return;
- soc->ops->ctrl_ops->txrx_peer_protocol_cnt(soc, vdev_id, nbuf,
- is_egress, is_rx);
- }
- #else
- #define cdp_txrx_peer_protocol_cnt(soc, vdev_id, nbuf, is_egress, is_rx)
- #endif
- /**
- * cdp_enable_peer_based_pktlog()- Set flag in peer structure
- *
- * @soc: pointer to the soc
- * @pdev_id: id of the data physical device object
- * @enable: enable or disable peer based filter based pktlog
- * @peer_macaddr: Mac address of peer which needs to be
- * filtered
- *
- * This function will set flag in peer structure if peer based filtering
- * is enabled for pktlog
- *
- * Return: int
- */
- static inline int
- cdp_enable_peer_based_pktlog(ol_txrx_soc_handle soc, uint8_t pdev_id,
- char *peer_macaddr,
- uint8_t enable)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE_ERROR(QDF_MODULE_ID_DP,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->enable_peer_based_pktlog)
- return 0;
- return soc->ops->ctrl_ops->enable_peer_based_pktlog
- (soc, pdev_id, peer_macaddr, enable);
- }
- /**
- * cdp_calculate_delay_stats()- get rx delay stats
- *
- * @soc: pointer to the soc
- * @vdev_id: id of vdev handle
- * @nbuf: nbuf which is passed
- *
- * This function will calculate rx delay statistics.
- */
- static inline QDF_STATUS
- cdp_calculate_delay_stats(ol_txrx_soc_handle soc, uint8_t vdev_id,
- qdf_nbuf_t nbuf)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->calculate_delay_stats) {
- dp_cdp_debug("callback not registered:");
- return QDF_STATUS_E_FAILURE;
- }
- return soc->ops->ctrl_ops->calculate_delay_stats(soc, vdev_id, nbuf);
- }
- /**
- * @brief Subscribe to a specified WDI event.
- * @details
- * This function adds the provided wdi_event_subscribe object to a list of
- * subscribers for the specified WDI event.
- * When the event in question happens, each subscriber for the event will
- * have their callback function invoked.
- * The order in which callback functions from multiple subscribers are
- * invoked is unspecified.
- *
- * @param soc - pointer to the soc
- * @param pdev_id - id of the data physical device object
- * @param event_cb_sub - the callback and context for the event subscriber
- * @param event - which event's notifications are being subscribed to
- * @return - int
- */
- static inline int
- cdp_wdi_event_sub(ol_txrx_soc_handle soc, uint8_t pdev_id,
- wdi_event_subscribe *event_cb_sub, uint32_t event)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("invalid instance");
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_wdi_event_sub)
- return 0;
- return soc->ops->ctrl_ops->txrx_wdi_event_sub
- (soc, pdev_id, event_cb_sub, event);
- }
- /**
- * @brief Unsubscribe from a specified WDI event.
- * @details
- * This function removes the provided event subscription object from the
- * list of subscribers for its event.
- * This function shall only be called if there was a successful prior call
- * to event_sub() on the same wdi_event_subscribe object.
- *
- * @param soc - pointer to the soc
- * @param pdev_id - id of the data physical device object
- * @param event_cb_sub - the callback and context for the event subscriber
- * @param event - which event's notifications are being subscribed to
- * @return - int
- */
- static inline int
- cdp_wdi_event_unsub(ol_txrx_soc_handle soc,
- uint8_t pdev_id, wdi_event_subscribe *event_cb_sub,
- uint32_t event)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("invalid instance");
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_wdi_event_unsub)
- return 0;
- return soc->ops->ctrl_ops->txrx_wdi_event_unsub
- (soc, pdev_id, event_cb_sub, event);
- }
- /**
- * @brief Get security type from the from peer.
- * @details
- * This function gets the Security information from the peer handler.
- * The security information is got from the rx descriptor and filled in
- * to the peer handler.
- *
- * @param soc - pointer to the soc
- * @param vdev_id - id of vdev handle
- * @param peer mac - peer mac address
- * @param sec_idx - mcast or ucast frame type.
- * @return - int
- */
- static inline int
- cdp_get_sec_type(ol_txrx_soc_handle soc, uint8_t vdev_id, uint8_t *peer_mac,
- uint8_t sec_idx)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("invalid instance");
- QDF_BUG(0);
- return A_ERROR;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_get_sec_type)
- return A_ERROR;
- return soc->ops->ctrl_ops->txrx_get_sec_type
- (soc, vdev_id, peer_mac, sec_idx);
- }
- /**
- * cdp_set_mgmt_tx_power(): function to set tx power for mgmt frames
- * @param soc - pointer to the soc
- * @vdev_id : id of vdev handle
- * @subtype_index: subtype
- * @tx_power: Tx power
- * Return: QDF_STATUS
- */
- static inline QDF_STATUS
- cdp_set_mgmt_tx_power(ol_txrx_soc_handle soc,
- uint8_t vdev_id, uint8_t subtype, uint8_t tx_power)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_update_mgmt_txpow_vdev)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_update_mgmt_txpow_vdev(soc, vdev_id,
- subtype, tx_power);
- }
- /**
- * cdp_get_pldev() - function to get pktlog device handle
- * @soc: datapath soc handle
- * @pdev_id: physical device id
- *
- * Return: pktlog device handle or NULL
- */
- static inline void *
- cdp_get_pldev(ol_txrx_soc_handle soc, uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return NULL;
- }
- if (!soc->ops->ctrl_ops || !soc->ops->ctrl_ops->txrx_get_pldev)
- return NULL;
- return soc->ops->ctrl_ops->txrx_get_pldev(soc, pdev_id);
- }
- #if defined(WLAN_CFR_ENABLE) && defined(WLAN_ENH_CFR_ENABLE)
- /**
- * cdp_cfr_filter() - Configure Host RX monitor status ring for CFR
- * @soc: SOC TXRX handle
- * @pdev_id: ID of the physical device object
- * @enable: Enable or disable CFR
- * @filter_val: Flag to select filter for monitor mode
- */
- static inline void
- cdp_cfr_filter(ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- bool enable,
- struct cdp_monitor_filter *filter_val)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->cfr_ops || !soc->ops->cfr_ops->txrx_cfr_filter)
- return;
- soc->ops->cfr_ops->txrx_cfr_filter(soc, pdev_id, enable, filter_val);
- }
- /**
- * cdp_get_cfr_rcc() - get cfr rcc config
- * @soc: Datapath soc handle
- * @pdev_id: id of objmgr pdev
- *
- * Return: true/false based on cfr mode setting
- */
- static inline
- bool cdp_get_cfr_rcc(ol_txrx_soc_handle soc, uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->cfr_ops || !soc->ops->cfr_ops->txrx_get_cfr_rcc)
- return 0;
- return soc->ops->cfr_ops->txrx_get_cfr_rcc(soc, pdev_id);
- }
- /**
- * cdp_set_cfr_rcc() - enable/disable cfr rcc config
- * @soc: Datapath soc handle
- * @pdev_id: id of objmgr pdev
- * @enable: Enable/Disable cfr rcc mode
- *
- * Return: none
- */
- static inline
- void cdp_set_cfr_rcc(ol_txrx_soc_handle soc, uint8_t pdev_id, bool enable)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->cfr_ops || !soc->ops->cfr_ops->txrx_set_cfr_rcc)
- return;
- return soc->ops->cfr_ops->txrx_set_cfr_rcc(soc, pdev_id, enable);
- }
- /**
- * cdp_get_cfr_dbg_stats() - Get debug statistics for CFR
- *
- * @soc: SOC TXRX handle
- * @pdev_id: ID of the physical device object
- * @buf: CFR RCC debug statistics buffer
- *
- * Return: None
- */
- static inline void
- cdp_get_cfr_dbg_stats(ol_txrx_soc_handle soc, uint8_t pdev_id,
- struct cdp_cfr_rcc_stats *buf)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->cfr_ops || !soc->ops->cfr_ops->txrx_get_cfr_dbg_stats)
- return;
- soc->ops->cfr_ops->txrx_get_cfr_dbg_stats(soc, pdev_id, buf);
- }
- /**
- * cdp_cfr_clr_dbg_stats() - Clear debug statistics for CFR
- *
- * @soc: SOC TXRX handle
- * @pdev_id: ID of the physical device object
- */
- static inline void
- cdp_cfr_clr_dbg_stats(ol_txrx_soc_handle soc, uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->cfr_ops || !soc->ops->cfr_ops->txrx_clear_cfr_dbg_stats)
- return;
- soc->ops->cfr_ops->txrx_clear_cfr_dbg_stats(soc, pdev_id);
- }
- #endif
- #if defined(WLAN_TX_PKT_CAPTURE_ENH) || defined(WLAN_RX_PKT_CAPTURE_ENH)
- /**
- * cdp_update_peer_pkt_capture_params() - Sets Rx & Tx Capture params for a peer
- * @soc: SOC TXRX handle
- * @pdev_id: id of CDP pdev pointer
- * @is_rx_pkt_cap_enable: enable/disable rx pkt capture for this peer
- * @is_tx_pkt_cap_enable: enable/disable tx pkt capture for this peer
- * @peer_mac: MAC address of peer for which pkt_cap is to be enabled/disabled
- *
- * Return: Success when matching peer is found & flags are set, error otherwise
- */
- static inline QDF_STATUS
- cdp_update_peer_pkt_capture_params(ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- bool is_rx_pkt_cap_enable,
- uint8_t is_tx_pkt_cap_enable,
- uint8_t *peer_mac)
- {
- if (!soc || !soc->ops) {
- dp_err("Invalid SOC instance");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_update_peer_pkt_capture_params)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_update_peer_pkt_capture_params
- (soc, pdev_id, is_rx_pkt_cap_enable,
- is_tx_pkt_cap_enable, peer_mac);
- }
- #endif /* WLAN_TX_PKT_CAPTURE_ENH || WLAN_RX_PKT_CAPTURE_ENH */
- #ifdef WLAN_SUPPORT_RX_PROTOCOL_TYPE_TAG
- /**
- * cdp_update_pdev_rx_protocol_tag() - wrapper function to set the protocol
- * tag in CDP layer from cfg layer
- * @soc: SOC TXRX handle
- * @pdev_id: id of CDP pdev pointer
- * @protocol_mask: Bitmap for protocol for which tagging is enabled
- * @protocol_type: Protocol type for which the tag should be update
- * @tag: Actual tag value for the given prototype
- * Return: Returns QDF_STATUS_SUCCESS/FAILURE
- */
- static inline QDF_STATUS
- cdp_update_pdev_rx_protocol_tag(ol_txrx_soc_handle soc,
- uint8_t pdev_id, uint32_t protocol_mask,
- uint16_t protocol_type, uint16_t tag)
- {
- if (!soc || !soc->ops) {
- dp_err("Invalid SOC instance");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_update_pdev_rx_protocol_tag)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_update_pdev_rx_protocol_tag
- (soc, pdev_id, protocol_mask, protocol_type, tag);
- }
- #ifdef WLAN_SUPPORT_RX_TAG_STATISTICS
- /**
- * cdp_dump_pdev_rx_protocol_tag_stats() - wrapper function to dump the protocol
- tag statistics for given or all protocols
- * @soc: SOC TXRX handle
- * @pdev_id: id of CDP pdev pointer
- * @protocol_type: Protocol type for which the tag should be update
- * Return: Returns QDF_STATUS_SUCCESS/FAILURE
- */
- static inline QDF_STATUS
- cdp_dump_pdev_rx_protocol_tag_stats(ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- uint16_t protocol_type)
- {
- if (!soc || !soc->ops) {
- dp_err("Invalid SOC instance");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_dump_pdev_rx_protocol_tag_stats)
- return QDF_STATUS_E_FAILURE;
- soc->ops->ctrl_ops->txrx_dump_pdev_rx_protocol_tag_stats(soc, pdev_id,
- protocol_type);
- return QDF_STATUS_SUCCESS;
- }
- #endif /* WLAN_SUPPORT_RX_TAG_STATISTICS */
- #endif /* WLAN_SUPPORT_RX_PROTOCOL_TYPE_TAG */
- #ifdef ATH_SUPPORT_NAC_RSSI
- /**
- * cdp_vdev_config_for_nac_rssi(): To invoke dp callback for nac rssi config
- * @soc: soc pointer
- * @vdev_id: id of vdev
- * @nac_cmd: specfies nac_rss config action add, del, list
- * @bssid: Neighbour bssid
- * @client_macaddr: Non-Associated client MAC
- * @chan_num: channel number to scan
- *
- * Return: QDF_STATUS
- */
- static inline QDF_STATUS cdp_vdev_config_for_nac_rssi(ol_txrx_soc_handle soc,
- uint8_t vdev_id, enum cdp_nac_param_cmd nac_cmd,
- char *bssid, char *client_macaddr, uint8_t chan_num)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_vdev_config_for_nac_rssi)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_vdev_config_for_nac_rssi(soc, vdev_id,
- nac_cmd, bssid, client_macaddr, chan_num);
- }
- /*
- * cdp_vdev_get_neighbour_rssi(): To invoke dp callback to get rssi value of nac
- * @soc: soc pointer
- * @vdev_id: id of vdev
- * @macaddr: Non-Associated client MAC
- * @rssi: rssi
- *
- * Return: QDF_STATUS
- */
- static inline QDF_STATUS cdp_vdev_get_neighbour_rssi(ol_txrx_soc_handle soc,
- uint8_t vdev_id,
- char *macaddr,
- uint8_t *rssi)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_vdev_get_neighbour_rssi)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_vdev_get_neighbour_rssi(soc, vdev_id,
- macaddr,
- rssi);
- }
- #endif
- #ifdef WLAN_SUPPORT_RX_FLOW_TAG
- /**
- * cdp_set_rx_flow_tag() - wrapper function to set the flow
- * tag in CDP layer from cfg layer
- * @soc: SOC TXRX handle
- * @pdev_id: id of CDP pdev pointer
- * @flow_info: Flow 5-tuple, along with tag, if any, that needs to added/deleted
- *
- * Return: Success when add/del operation is successful, error otherwise
- */
- static inline QDF_STATUS
- cdp_set_rx_flow_tag(ol_txrx_soc_handle soc, uint8_t pdev_id,
- struct cdp_rx_flow_info *flow_info)
- {
- if (!soc || !soc->ops) {
- dp_err("Invalid SOC instance");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_rx_flow_tag)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_set_rx_flow_tag(soc, pdev_id,
- flow_info);
- }
- /**
- * cdp_dump_rx_flow_tag_stats() - wrapper function to dump the flow
- * tag statistics for given flow
- * @soc: SOC TXRX handle
- * @pdev_id: id of CDP pdev
- * @flow_info: Flow tuple for which we want to print the statistics
- *
- * Return: Success when flow is found and stats are printed, error otherwise
- */
- static inline QDF_STATUS
- cdp_dump_rx_flow_tag_stats(ol_txrx_soc_handle soc, uint8_t pdev_id,
- struct cdp_rx_flow_info *flow_info)
- {
- if (!soc || !soc->ops) {
- dp_err("Invalid SOC instance");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_dump_rx_flow_tag_stats)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_dump_rx_flow_tag_stats(soc,
- pdev_id,
- flow_info);
- }
- #endif /* WLAN_SUPPORT_RX_FLOW_TAG */
- /**
- * cdp_txrx_peer_flush_frags() - flush frags for peer
- *
- * @soc - pointer to the soc
- * @vdev - the data virtual device object
- *
- * Get peer-protocol-count drop-mask
- *
- * Return: peer-protocol-count drop-mask
- */
- static inline
- void cdp_txrx_peer_flush_frags(ol_txrx_soc_handle soc, uint8_t vdev_id,
- uint8_t *peer_mac)
- {
- if (!soc || !soc->ops) {
- dp_cdp_err("Invalid Instance:");
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_peer_flush_frags)
- return;
- return soc->ops->ctrl_ops->txrx_peer_flush_frags(soc, vdev_id,
- peer_mac);
- }
- #if defined(WLAN_FEATURE_TSF_UPLINK_DELAY) || defined(CONFIG_SAWF)
- /**
- * cdp_set_delta_tsf() - wrapper function to set delta_tsf
- * @soc: SOC TXRX handle
- * @vdev_id: vdev id
- * @delta_tsf: difference between TSF clock and qtimer
- *
- * Return: None
- */
- static inline void cdp_set_delta_tsf(ol_txrx_soc_handle soc, uint8_t vdev_id,
- uint32_t delta_tsf)
- {
- if (!soc || !soc->ops) {
- dp_cdp_err("Invalid instance");
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_delta_tsf)
- return;
- soc->ops->ctrl_ops->txrx_set_delta_tsf(soc, vdev_id, delta_tsf);
- }
- #endif
- #ifdef WLAN_FEATURE_TSF_UPLINK_DELAY
- /**
- * cdp_set_tsf_ul_delay_report() - Enable or disable reporting uplink delay
- * @soc: SOC TXRX handle
- * @vdev_id: vdev id
- * @enable: true to enable and false to disable
- *
- * Return: QDF_STATUS
- */
- static inline QDF_STATUS cdp_set_tsf_ul_delay_report(ol_txrx_soc_handle soc,
- uint8_t vdev_id,
- bool enable)
- {
- if (!soc || !soc->ops) {
- dp_cdp_err("Invalid SOC instance");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_tsf_ul_delay_report)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_set_tsf_ul_delay_report(soc, vdev_id,
- enable);
- }
- /**
- * cdp_get_uplink_delay() - Get uplink delay value
- * @soc: SOC TXRX handle
- * @vdev_id: vdev id
- * @val: pointer to save uplink delay value
- *
- * Return: QDF_STATUS
- */
- static inline QDF_STATUS cdp_get_uplink_delay(ol_txrx_soc_handle soc,
- uint32_t vdev_id, uint32_t *val)
- {
- if (!soc || !soc->ops) {
- dp_cdp_err("Invalid SOC instance");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!val) {
- dp_cdp_err("Invalid params val");
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_get_uplink_delay)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_get_uplink_delay(soc, vdev_id, val);
- }
- #endif /* WLAN_FEATURE_TSF_UPLINK_DELAY */
- #ifdef QCA_UNDECODED_METADATA_SUPPORT
- /**
- * cdp_txrx_set_pdev_phyrx_error_mask() - set phyrx error mask
- * @soc: opaque soc handle
- * @pdev_id: id of data path pdev handle
- * @mask1: mask to configure 0 to 31 phy error
- * @mask2: mask to configure 32 to 63 phy error
- *
- * Return: status: 0 - Success, non-zero: Failure
- */
- static inline
- QDF_STATUS cdp_txrx_set_pdev_phyrx_error_mask(ol_txrx_soc_handle soc,
- uint8_t pdev_id, uint32_t mask,
- uint32_t mask_cont)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_set_pdev_phyrx_error_mask)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_set_pdev_phyrx_error_mask
- (soc, pdev_id, mask, mask_cont);
- }
- static inline
- QDF_STATUS cdp_txrx_get_pdev_phyrx_error_mask(ol_txrx_soc_handle soc,
- uint8_t pdev_id, uint32_t *mask,
- uint32_t *mask_cont)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->ctrl_ops ||
- !soc->ops->ctrl_ops->txrx_get_pdev_phyrx_error_mask)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->ctrl_ops->txrx_get_pdev_phyrx_error_mask
- (soc, pdev_id, mask, mask_cont);
- }
- #endif
- #endif /* _CDP_TXRX_CTRL_H_ */
|