123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- /*
- * Copyright (c) 2016-2017 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_
- #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_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) \
- { \
- _handle->stats._field += _delta; \
- }
- #define DP_STATS_INCC(_handle, _field, _delta, _cond) \
- { \
- if (_cond) { \
- _handle->stats._field += _delta; \
- } \
- }
- #define DP_STATS_DEC(_handle, _field, _delta) \
- { \
- _handle->stats._field -= _delta; \
- }
- #define DP_STATS_UPD(_handle, _field, _delta) \
- { \
- _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_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)
- #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
- 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);
- #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_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);
- #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 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_status_ring_handler(struct dp_soc *soc);
- void dp_aggregate_vdev_stats(struct dp_vdev *vdev);
- 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);
- #endif /* #ifndef _DP_INTERNAL_H_ */
|