123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579 |
- /*
- * Copyright (c) 2016-2018 The Linux Foundation. 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.
- */
- #ifndef _DP_INTERNAL_H_
- #define _DP_INTERNAL_H_
- #include "dp_types.h"
- #define RX_BUFFER_SIZE_PKTLOG_LITE 1024
- /* Macro For NYSM value received in VHT TLV */
- #define VHT_SGI_NYSM 3
- #if DP_PRINT_ENABLE
- #include <stdarg.h> /* va_list */
- #include <qdf_types.h> /* qdf_vprint */
- #include <cdp_txrx_handle.h>
- enum {
- /* FATAL_ERR - print only irrecoverable error messages */
- DP_PRINT_LEVEL_FATAL_ERR,
- /* ERR - include non-fatal err messages */
- DP_PRINT_LEVEL_ERR,
- /* WARN - include warnings */
- DP_PRINT_LEVEL_WARN,
- /* INFO1 - include fundamental, infrequent events */
- DP_PRINT_LEVEL_INFO1,
- /* INFO2 - include non-fundamental but infrequent events */
- DP_PRINT_LEVEL_INFO2,
- };
- #define dp_print(level, fmt, ...) do { \
- if (level <= g_txrx_print_level) \
- qdf_print(fmt, ## __VA_ARGS__); \
- while (0)
- #define DP_PRINT(level, fmt, ...) do { \
- dp_print(level, "DP: " fmt, ## __VA_ARGS__); \
- while (0)
- #else
- #define DP_PRINT(level, fmt, ...)
- #endif /* DP_PRINT_ENABLE */
- #define DP_TRACE(LVL, fmt, args ...) \
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_##LVL, \
- fmt, ## args)
- #define DP_TRACE_STATS(LVL, fmt, args ...) \
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_##LVL, \
- fmt, ## args)
- #define DP_PRINT_STATS(fmt, args ...) \
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL, \
- fmt, ## args)
- #define DP_STATS_INIT(_handle) \
- qdf_mem_set(&((_handle)->stats), sizeof((_handle)->stats), 0x0)
- #define DP_STATS_CLR(_handle) \
- qdf_mem_set(&((_handle)->stats), sizeof((_handle)->stats), 0x0)
- #ifndef DISABLE_DP_STATS
- #define DP_STATS_INC(_handle, _field, _delta) \
- { \
- if (likely(_handle)) \
- _handle->stats._field += _delta; \
- }
- #define DP_STATS_INCC(_handle, _field, _delta, _cond) \
- { \
- if (_cond && likely(_handle)) \
- _handle->stats._field += _delta; \
- }
- #define DP_STATS_DEC(_handle, _field, _delta) \
- { \
- if (likely(_handle)) \
- _handle->stats._field -= _delta; \
- }
- #define DP_STATS_UPD(_handle, _field, _delta) \
- { \
- if (likely(_handle)) \
- _handle->stats._field = _delta; \
- }
- #define DP_STATS_INC_PKT(_handle, _field, _count, _bytes) \
- { \
- DP_STATS_INC(_handle, _field.num, _count); \
- DP_STATS_INC(_handle, _field.bytes, _bytes) \
- }
- #define DP_STATS_INCC_PKT(_handle, _field, _count, _bytes, _cond) \
- { \
- DP_STATS_INCC(_handle, _field.num, _count, _cond); \
- DP_STATS_INCC(_handle, _field.bytes, _bytes, _cond) \
- }
- #define DP_STATS_AGGR(_handle_a, _handle_b, _field) \
- { \
- _handle_a->stats._field += _handle_b->stats._field; \
- }
- #define DP_STATS_AGGR_PKT(_handle_a, _handle_b, _field) \
- { \
- DP_STATS_AGGR(_handle_a, _handle_b, _field.num); \
- DP_STATS_AGGR(_handle_a, _handle_b, _field.bytes);\
- }
- #define DP_STATS_UPD_STRUCT(_handle_a, _handle_b, _field) \
- { \
- _handle_a->stats._field = _handle_b->stats._field; \
- }
- #define DP_HIST_INIT() \
- uint32_t num_of_packets[MAX_PDEV_CNT] = {0};
- #define DP_HIST_PACKET_COUNT_INC(_pdev_id) \
- { \
- ++num_of_packets[_pdev_id]; \
- }
- #define DP_TX_HISTOGRAM_UPDATE(_pdev, _p_cntrs) \
- do { \
- if (_p_cntrs == 1) { \
- DP_STATS_INC(_pdev, \
- tx_comp_histogram.pkts_1, 1); \
- } else if (_p_cntrs > 1 && _p_cntrs <= 20) { \
- DP_STATS_INC(_pdev, \
- tx_comp_histogram.pkts_2_20, 1); \
- } else if (_p_cntrs > 20 && _p_cntrs <= 40) { \
- DP_STATS_INC(_pdev, \
- tx_comp_histogram.pkts_21_40, 1); \
- } else if (_p_cntrs > 40 && _p_cntrs <= 60) { \
- DP_STATS_INC(_pdev, \
- tx_comp_histogram.pkts_41_60, 1); \
- } else if (_p_cntrs > 60 && _p_cntrs <= 80) { \
- DP_STATS_INC(_pdev, \
- tx_comp_histogram.pkts_61_80, 1); \
- } else if (_p_cntrs > 80 && _p_cntrs <= 100) { \
- DP_STATS_INC(_pdev, \
- tx_comp_histogram.pkts_81_100, 1); \
- } else if (_p_cntrs > 100 && _p_cntrs <= 200) { \
- DP_STATS_INC(_pdev, \
- tx_comp_histogram.pkts_101_200, 1); \
- } else if (_p_cntrs > 200) { \
- DP_STATS_INC(_pdev, \
- tx_comp_histogram.pkts_201_plus, 1); \
- } \
- } while (0)
- #define DP_RX_HISTOGRAM_UPDATE(_pdev, _p_cntrs) \
- do { \
- if (_p_cntrs == 1) { \
- DP_STATS_INC(_pdev, \
- rx_ind_histogram.pkts_1, 1); \
- } else if (_p_cntrs > 1 && _p_cntrs <= 20) { \
- DP_STATS_INC(_pdev, \
- rx_ind_histogram.pkts_2_20, 1); \
- } else if (_p_cntrs > 20 && _p_cntrs <= 40) { \
- DP_STATS_INC(_pdev, \
- rx_ind_histogram.pkts_21_40, 1); \
- } else if (_p_cntrs > 40 && _p_cntrs <= 60) { \
- DP_STATS_INC(_pdev, \
- rx_ind_histogram.pkts_41_60, 1); \
- } else if (_p_cntrs > 60 && _p_cntrs <= 80) { \
- DP_STATS_INC(_pdev, \
- rx_ind_histogram.pkts_61_80, 1); \
- } else if (_p_cntrs > 80 && _p_cntrs <= 100) { \
- DP_STATS_INC(_pdev, \
- rx_ind_histogram.pkts_81_100, 1); \
- } else if (_p_cntrs > 100 && _p_cntrs <= 200) { \
- DP_STATS_INC(_pdev, \
- rx_ind_histogram.pkts_101_200, 1); \
- } else if (_p_cntrs > 200) { \
- DP_STATS_INC(_pdev, \
- rx_ind_histogram.pkts_201_plus, 1); \
- } \
- } while (0)
- #define DP_TX_HIST_STATS_PER_PDEV() \
- do { \
- uint8_t hist_stats = 0; \
- for (hist_stats = 0; hist_stats < soc->pdev_count; \
- hist_stats++) { \
- DP_TX_HISTOGRAM_UPDATE(soc->pdev_list[hist_stats], \
- num_of_packets[hist_stats]); \
- } \
- } while (0)
- #define DP_RX_HIST_STATS_PER_PDEV() \
- do { \
- uint8_t hist_stats = 0; \
- for (hist_stats = 0; hist_stats < soc->pdev_count; \
- hist_stats++) { \
- DP_RX_HISTOGRAM_UPDATE(soc->pdev_list[hist_stats], \
- num_of_packets[hist_stats]); \
- } \
- } while (0)
- #else
- #define DP_STATS_INC(_handle, _field, _delta)
- #define DP_STATS_INCC(_handle, _field, _delta, _cond)
- #define DP_STATS_DEC(_handle, _field, _delta)
- #define DP_STATS_UPD(_handle, _field, _delta)
- #define DP_STATS_INC_PKT(_handle, _field, _count, _bytes)
- #define DP_STATS_INCC_PKT(_handle, _field, _count, _bytes, _cond)
- #define DP_STATS_AGGR(_handle_a, _handle_b, _field)
- #define DP_STATS_AGGR_PKT(_handle_a, _handle_b, _field)
- #define DP_HIST_INIT()
- #define DP_HIST_PACKET_COUNT_INC(_pdev_id)
- #define DP_TX_HISTOGRAM_UPDATE(_pdev, _p_cntrs)
- #define DP_RX_HISTOGRAM_UPDATE(_pdev, _p_cntrs)
- #define DP_RX_HIST_STATS_PER_PDEV()
- #define DP_TX_HIST_STATS_PER_PDEV()
- #endif
- #define DP_HTT_T2H_HP_PIPE 5
- #define DP_UPDATE_STATS(_tgtobj, _srcobj) \
- do { \
- uint8_t i; \
- uint8_t pream_type; \
- for (pream_type = 0; pream_type < DOT11_MAX; pream_type++) { \
- for (i = 0; i < MAX_MCS; i++) { \
- DP_STATS_AGGR(_tgtobj, _srcobj, \
- tx.pkt_type[pream_type].mcs_count[i]); \
- DP_STATS_AGGR(_tgtobj, _srcobj, \
- rx.pkt_type[pream_type].mcs_count[i]); \
- } \
- } \
- \
- for (i = 0; i < MAX_BW; i++) { \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.bw[i]); \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.bw[i]); \
- } \
- \
- for (i = 0; i < SS_COUNT; i++) { \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.nss[i]); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.nss[i]); \
- } \
- for (i = 0; i < WME_AC_MAX; i++) { \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.wme_ac_type[i]); \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.wme_ac_type[i]); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.excess_retries_per_ac[i]); \
- \
- } \
- \
- for (i = 0; i < MAX_GI; i++) { \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.sgi_count[i]); \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.sgi_count[i]); \
- } \
- \
- for (i = 0; i < MAX_RECEPTION_TYPES; i++) \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.reception_type[i]); \
- \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, tx.comp_pkt); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, tx.ucast); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, tx.mcast); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, tx.bcast); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, tx.tx_success); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, tx.nawds_mcast); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.tx_failed); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.ofdma); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.stbc); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.ldpc); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.retries); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.non_amsdu_cnt); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.amsdu_cnt); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.dropped.fw_rem); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.dropped.fw_rem_tx); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.dropped.fw_rem_notx); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.dropped.fw_reason1); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.dropped.fw_reason2); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.dropped.fw_reason3); \
- DP_STATS_AGGR(_tgtobj, _srcobj, tx.dropped.age_out); \
- \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.err.mic_err); \
- DP_STATS_UPD_STRUCT(_tgtobj, _srcobj, rx.rssi); \
- DP_STATS_UPD_STRUCT(_tgtobj, _srcobj, rx.rx_rate); \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.err.decrypt_err); \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.non_ampdu_cnt); \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.ampdu_cnt); \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.non_amsdu_cnt); \
- DP_STATS_AGGR(_tgtobj, _srcobj, rx.amsdu_cnt); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, rx.to_stack); \
- \
- for (i = 0; i < CDP_MAX_RX_RINGS; i++) \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, rx.rcvd_reo[i]); \
- \
- _srcobj->stats.rx.unicast.num = \
- _srcobj->stats.rx.to_stack.num - \
- (_srcobj->stats.rx.multicast.num + \
- _srcobj->stats.rx.bcast.num); \
- _srcobj->stats.rx.unicast.bytes = \
- _srcobj->stats.rx.to_stack.bytes - \
- (_srcobj->stats.rx.multicast.bytes + \
- _srcobj->stats.rx.bcast.bytes); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, rx.unicast); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, rx.multicast); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, rx.bcast); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, rx.raw); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, rx.intra_bss.pkts); \
- DP_STATS_AGGR_PKT(_tgtobj, _srcobj, rx.intra_bss.fail); \
- \
- _tgtobj->stats.tx.last_ack_rssi = \
- _srcobj->stats.tx.last_ack_rssi; \
- } while (0)
- extern int dp_peer_find_attach(struct dp_soc *soc);
- extern void dp_peer_find_detach(struct dp_soc *soc);
- extern void dp_peer_find_hash_add(struct dp_soc *soc, struct dp_peer *peer);
- extern void dp_peer_find_hash_remove(struct dp_soc *soc, struct dp_peer *peer);
- extern void dp_peer_find_hash_erase(struct dp_soc *soc);
- extern void dp_peer_rx_init(struct dp_pdev *pdev, struct dp_peer *peer);
- extern void dp_peer_cleanup(struct dp_vdev *vdev, struct dp_peer *peer);
- extern void dp_peer_rx_cleanup(struct dp_vdev *vdev, struct dp_peer *peer);
- extern void dp_peer_unref_delete(void *peer_handle);
- extern void dp_rx_discard(struct dp_vdev *vdev, struct dp_peer *peer,
- unsigned tid, qdf_nbuf_t msdu_list);
- extern void *dp_find_peer_by_addr(struct cdp_pdev *dev,
- uint8_t *peer_mac_addr, uint8_t *peer_id);
- extern struct dp_peer *dp_peer_find_hash_find(struct dp_soc *soc,
- uint8_t *peer_mac_addr, int mac_addr_is_aligned, uint8_t vdev_id);
- #ifndef CONFIG_WIN
- QDF_STATUS dp_register_peer(struct cdp_pdev *pdev_handle,
- struct ol_txrx_desc_type *sta_desc);
- QDF_STATUS dp_clear_peer(struct cdp_pdev *pdev_handle, uint8_t local_id);
- void *dp_find_peer_by_addr_and_vdev(struct cdp_pdev *pdev_handle,
- struct cdp_vdev *vdev,
- uint8_t *peer_addr, uint8_t *local_id);
- uint16_t dp_local_peer_id(void *peer);
- void *dp_peer_find_by_local_id(struct cdp_pdev *pdev_handle, uint8_t local_id);
- QDF_STATUS dp_peer_state_update(struct cdp_pdev *pdev_handle, uint8_t *peer_mac,
- enum ol_txrx_peer_state state);
- QDF_STATUS dp_get_vdevid(void *peer_handle, uint8_t *vdev_id);
- struct cdp_vdev *dp_get_vdev_by_sta_id(struct cdp_pdev *pdev_handle,
- uint8_t sta_id);
- struct cdp_vdev *dp_get_vdev_for_peer(void *peer);
- uint8_t *dp_peer_get_peer_mac_addr(void *peer);
- int dp_get_peer_state(void *peer_handle);
- void dp_local_peer_id_pool_init(struct dp_pdev *pdev);
- void dp_local_peer_id_alloc(struct dp_pdev *pdev, struct dp_peer *peer);
- void dp_local_peer_id_free(struct dp_pdev *pdev, struct dp_peer *peer);
- qdf_time_t *dp_get_last_assoc_received(void *peer_handle);
- qdf_time_t *dp_get_last_disassoc_received(void *peer_handle);
- qdf_time_t *dp_get_last_deauth_received(void *peer_handle);
- #else
- static inline void dp_local_peer_id_pool_init(struct dp_pdev *pdev)
- {
- }
- static inline
- void dp_local_peer_id_alloc(struct dp_pdev *pdev, struct dp_peer *peer)
- {
- }
- static inline
- void dp_local_peer_id_free(struct dp_pdev *pdev, struct dp_peer *peer)
- {
- }
- #endif
- extern int dp_addba_requestprocess_wifi3(void *peer_handle,
- uint8_t dialogtoken, uint16_t tid, uint16_t batimeout,
- uint16_t buffersize, uint16_t startseqnum);
- extern void dp_addba_responsesetup_wifi3(void *peer_handle, uint8_t tid,
- uint8_t *dialogtoken, uint16_t *statuscode,
- uint16_t *buffersize, uint16_t *batimeout);
- extern void dp_set_addba_response(void *peer_handle, uint8_t tid,
- uint16_t statuscode);
- extern int dp_delba_process_wifi3(void *peer_handle,
- int tid, uint16_t reasoncode);
- extern int dp_rx_tid_setup_wifi3(struct dp_peer *peer, int tid,
- uint32_t ba_window_size, uint32_t start_seq);
- extern QDF_STATUS dp_reo_send_cmd(struct dp_soc *soc,
- enum hal_reo_cmd_type type, struct hal_reo_cmd_params *params,
- void (*callback_fn), void *data);
- extern void dp_reo_cmdlist_destroy(struct dp_soc *soc);
- extern void dp_reo_status_ring_handler(struct dp_soc *soc);
- void dp_aggregate_vdev_stats(struct dp_vdev *vdev);
- void dp_rx_tid_stats_cb(struct dp_soc *soc, void *cb_ctxt,
- union hal_reo_status *reo_status);
- void dp_rx_bar_stats_cb(struct dp_soc *soc, void *cb_ctxt,
- union hal_reo_status *reo_status);
- uint16_t dp_tx_me_send_convert_ucast(struct cdp_vdev *vdev_handle,
- qdf_nbuf_t nbuf, uint8_t newmac[][DP_MAC_ADDR_LEN],
- uint8_t new_mac_cnt);
- void dp_tx_me_alloc_descriptor(struct cdp_pdev *pdev);
- void dp_tx_me_free_descriptor(struct cdp_pdev *pdev);
- QDF_STATUS dp_h2t_ext_stats_msg_send(struct dp_pdev *pdev,
- uint32_t stats_type_upload_mask, uint32_t config_param_0,
- uint32_t config_param_1, uint32_t config_param_2,
- uint32_t config_param_3, int cookie, int cookie_msb,
- uint8_t mac_id);
- void dp_htt_stats_print_tag(uint8_t tag_type, uint32_t *tag_buf);
- void dp_htt_stats_copy_tag(struct dp_pdev *pdev, uint8_t tag_type, uint32_t *tag_buf);
- void dp_peer_rxtid_stats(struct dp_peer *peer, void (*callback_fn),
- void *cb_ctxt);
- void dp_set_pn_check_wifi3(struct cdp_vdev *vdev_handle,
- struct cdp_peer *peer_handle, enum cdp_sec_type sec_type,
- uint32_t *rx_pn);
- void *dp_get_pdev_for_mac_id(struct dp_soc *soc, uint32_t mac_id);
- void dp_mark_peer_inact(void *peer_handle, bool inactive);
- bool dp_set_inact_params(struct cdp_pdev *pdev_handle,
- u_int16_t inact_check_interval,
- u_int16_t inact_normal, u_int16_t inact_overload);
- bool dp_start_inact_timer(struct cdp_pdev *pdev_handle, bool enable);
- void dp_set_overload(struct cdp_pdev *pdev_handle, bool overload);
- bool dp_peer_is_inact(void *peer_handle);
- void dp_init_inact_timer(struct dp_soc *soc);
- void dp_free_inact_timer(struct dp_soc *soc);
- void dp_set_michael_key(struct cdp_peer *peer_handle,
- bool is_unicast, uint32_t *key);
- /*
- * dp_get_mac_id_for_pdev() - Return mac corresponding to pdev for mac
- *
- * @mac_id: MAC id
- * @pdev_id: pdev_id corresponding to pdev, 0 for MCL
- *
- * Single pdev using both MACs will operate on both MAC rings,
- * which is the case for MCL.
- * For WIN each PDEV will operate one ring, so index is zero.
- *
- */
- static inline int dp_get_mac_id_for_pdev(uint32_t mac_id, uint32_t pdev_id)
- {
- if (mac_id && pdev_id) {
- qdf_print("Both mac_id and pdev_id cannot be non zero");
- QDF_BUG(0);
- return 0;
- }
- return (mac_id + pdev_id);
- }
- /*
- * dp_get_mac_id_for_mac() - Return mac corresponding WIN and MCL mac_ids
- *
- * @soc: handle to DP soc
- * @mac_id: MAC id
- *
- * Single pdev using both MACs will operate on both MAC rings,
- * which is the case for MCL.
- * For WIN each PDEV will operate one ring, so index is zero.
- *
- */
- static inline int dp_get_mac_id_for_mac(struct dp_soc *soc, uint32_t mac_id)
- {
- /*
- * Single pdev using both MACs will operate on both MAC rings,
- * which is the case for MCL.
- */
- if (!wlan_cfg_per_pdev_lmac_ring(soc->wlan_cfg_ctx))
- return mac_id;
- /* For WIN each PDEV will operate one ring, so index is zero. */
- return 0;
- }
- #ifdef WDI_EVENT_ENABLE
- QDF_STATUS dp_h2t_cfg_stats_msg_send(struct dp_pdev *pdev,
- uint32_t stats_type_upload_mask,
- uint8_t mac_id);
- int dp_wdi_event_unsub(struct cdp_pdev *txrx_pdev_handle,
- void *event_cb_sub_handle,
- uint32_t event);
- int dp_wdi_event_sub(struct cdp_pdev *txrx_pdev_handle,
- void *event_cb_sub_handle,
- uint32_t event);
- void dp_wdi_event_handler(enum WDI_EVENT event, void *soc,
- void *data, u_int16_t peer_id,
- int status, u_int8_t pdev_id);
- int dp_wdi_event_attach(struct dp_pdev *txrx_pdev);
- int dp_wdi_event_detach(struct dp_pdev *txrx_pdev);
- int dp_set_pktlog_wifi3(struct dp_pdev *pdev, uint32_t event,
- bool enable);
- void *dp_get_pldev(struct cdp_pdev *txrx_pdev);
- void dp_pkt_log_init(struct cdp_pdev *ppdev, void *scn);
- static inline void dp_hif_update_pipe_callback(void *soc, void *cb_context,
- QDF_STATUS (*callback)(void *, qdf_nbuf_t, uint8_t), uint8_t pipe_id)
- {
- struct hif_msg_callbacks hif_pipe_callbacks;
- struct dp_soc *dp_soc = (struct dp_soc *)soc;
- /* TODO: Temporary change to bypass HTC connection for this new
- * HIF pipe, which will be used for packet log and other high-
- * priority HTT messages. Proper HTC connection to be added
- * later once required FW changes are available
- */
- hif_pipe_callbacks.rxCompletionHandler = callback;
- hif_pipe_callbacks.Context = cb_context;
- hif_update_pipe_callback(dp_soc->hif_handle,
- DP_HTT_T2H_HP_PIPE, &hif_pipe_callbacks);
- }
- #else
- static inline int dp_wdi_event_unsub(struct cdp_pdev *txrx_pdev_handle,
- void *event_cb_sub_handle,
- uint32_t event)
- {
- return 0;
- }
- static inline int dp_wdi_event_sub(struct cdp_pdev *txrx_pdev_handle,
- void *event_cb_sub_handle,
- uint32_t event)
- {
- return 0;
- }
- static inline void dp_wdi_event_handler(enum WDI_EVENT event, void *soc,
- void *data, u_int16_t peer_id,
- int status, u_int8_t pdev_id)
- {
- }
- static inline int dp_wdi_event_attach(struct dp_pdev *txrx_pdev)
- {
- return 0;
- }
- static inline int dp_wdi_event_detach(struct dp_pdev *txrx_pdev)
- {
- return 0;
- }
- static inline int dp_set_pktlog_wifi3(struct dp_pdev *pdev, uint32_t event,
- bool enable)
- {
- return 0;
- }
- static inline QDF_STATUS dp_h2t_cfg_stats_msg_send(struct dp_pdev *pdev,
- uint32_t stats_type_upload_mask, uint8_t mac_id)
- {
- return 0;
- }
- static inline void dp_hif_update_pipe_callback(void *soc, void *cb_context,
- QDF_STATUS (*callback)(void *, qdf_nbuf_t, uint8_t), uint8_t pipe_id)
- {
- }
- #endif /* CONFIG_WIN */
- #ifdef QCA_LL_TX_FLOW_CONTROL_V2
- void dp_tx_dump_flow_pool_info(void *soc);
- int dp_tx_delete_flow_pool(struct dp_soc *soc, struct dp_tx_desc_pool_s *pool,
- bool force);
- #endif /* QCA_LL_TX_FLOW_CONTROL_V2 */
- #endif /* #ifndef _DP_INTERNAL_H_ */
|