123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- /*
- * Copyright (c) 2013-2019, 2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 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.
- */
- /*
- * DOC: Roaming debug log operations declarations
- */
- #ifndef _WLAN_ROAM_DEBUG_H_
- #define _WLAN_ROAM_DEBUG_H_
- #define roam_debug(args ...) \
- QDF_TRACE_DEBUG_NO_FL(QDF_MODULE_ID_ROAM_DEBUG, ## args)
- #define roam_info(args ...) \
- QDF_TRACE_INFO_NO_FL(QDF_MODULE_ID_ROAM_DEBUG, ## args)
- #define wlan_rec_conn_info(vdev_id, op, mac_addr, arg1, arg2) \
- wlan_rec_debug_log(REC_CONN, vdev_id, op, 0, mac_addr, 0, arg1,\
- arg2)
- #ifndef WLAN_ROAM_DEBUG_MAX_REC
- #define WLAN_ROAM_DEBUG_MAX_REC 128
- #endif
- typedef enum {
- REC_ROAM,
- REC_CONN,
- REC_MAX,
- } wlan_rec_type;
- /**
- * @DEBUG_PEER_CREATE_SEND: sent peer_create command to firmware
- * @DEBUG_PEER_CREATE_RESP: received peer create response
- * @DEBUG_PEER_DELETE_SEND: sent peer delete command to firmware
- * @DEBUG_PEER_DELETE_RESP: received peer delete response
- * @DEBUG_PEER_MAP_EVENT: received peer map event
- * @DEBUG_PEER_UNMAP_EVENT: received peer unmap event
- * @DEBUG_PEER_UNREF_DELETE: peer reference is decremented
- * @DEBUG_DELETING_PEER_OBJ: peer object is deleted
- * @DEBUG_ROAM_SYNCH_IND: received roam offload sync indication
- * @DEBUG_ROAM_SYNCH_CNF: sent roam offload sync confirmation
- * @DEBUG_ROAM_SYNCH_FAIL: received roam sync failure indication
- * @DEBUG_ROAM_EVENT: received roam event
- * @DEBUG_BUS_SUSPEND: host going into suspend mode
- * @DEBUG_BUS_RESUME: host operation resumed
- * @DEBUG_CONN_CONNECTING: trace connecting to bssid
- * @DEBUG_CONN_ASSOCIATION: trace association completion
- * @DEBUG_CONN_CONNECT_RESULT: trace connect result to os
- * @DEBUG_CONN_ROAMING: trace station roaming propagtion
- * @DEBUG_CONN_ROAMED: trace roamed to bssid
- * @DEBUG_CONN_ROAMED_IND: trace roam indication
- * @DEBUG_CONN_DISCONNECT: trace station disconnect
- * @DEBUG_CONN_DISCONNECT_HANDLER: trace disconnect handler
- * @DEBUG_CONN_DISCONNECT_IND: trace disconnect indication
- * @DEBUG_CONN_RSO: trace RSO state changing
- */
- enum peer_debug_op {
- DEBUG_PEER_CREATE_SEND = 0,
- DEBUG_PEER_CREATE_RESP,
- DEBUG_PEER_DELETE_SEND,
- DEBUG_PEER_DELETE_RESP,
- DEBUG_PEER_MAP_EVENT,
- DEBUG_PEER_UNMAP_EVENT,
- DEBUG_PEER_UNREF_DELETE,
- DEBUG_DELETING_PEER_OBJ,
- DEBUG_ROAM_SYNCH_IND,
- DEBUG_ROAM_SYNCH_CNF,
- DEBUG_ROAM_SYNCH_FAIL,
- DEBUG_ROAM_EVENT,
- DEBUG_WOW_ROAM_EVENT,
- DEBUG_BUS_SUSPEND,
- DEBUG_BUS_RESUME,
- DEBUG_WOW_REASON,
- DEBUG_CONN_CONNECTING,
- DEBUG_CONN_ASSOCIATION,
- DEBUG_CONN_CONNECT_RESULT,
- DEBUG_CONN_ROAMING,
- DEBUG_CONN_ROAMED,
- DEBUG_CONN_ROAMED_IND,
- DEBUG_CONN_DISCONNECT,
- DEBUG_CONN_DISCONNECT_HANDLER,
- DEBUG_CONN_DISCONNECT_IND,
- DEBUG_CONN_RSO,
- };
- /**
- * struct wlan_roam_debug_rec - roam debug information record definition
- * @time: timestamp when record was added
- * @operation: identifier for operation, command, event, etc.
- * @vdev_id: vdev identifier
- * @peer_id: peer_id. Range 0 - 255, 0xffff is invalid peer_id.
- * @mac_addr: mac address of peer
- * @peer_obj: pointer to peer object
- * @arg1: Optional argument #1
- * @arg2: Opttional argument #2
- */
- struct wlan_roam_debug_rec {
- uint64_t time;
- enum peer_debug_op operation;
- uint8_t vdev_id;
- uint16_t peer_id;
- struct qdf_mac_addr mac_addr;
- void *peer_obj;
- uint32_t arg1;
- uint32_t arg2;
- };
- /**
- * struct wlan_roam_debug_info - Buffer to store the wma debug records
- * @index: index of the most recent entry in the circular buffer
- * @num_max_rec: maximum records stored in the records array
- * @rec: array to store wma debug records, used in circular fashion
- */
- struct wlan_roam_debug_info {
- qdf_atomic_t index;
- uint32_t num_max_rec;
- void (*rec_print)(struct wlan_roam_debug_rec *dbg_rec,
- uint32_t idx, uint32_t delta,
- bool to_kernel);
- struct wlan_roam_debug_rec rec[WLAN_ROAM_DEBUG_MAX_REC];
- };
- #define DEBUG_INVALID_PEER_ID 0xffff
- #define DEBUG_INVALID_VDEV_ID 0xff
- #ifdef FEATURE_ROAM_DEBUG
- /**
- * wlan_roam_debug_log() - Add a debug log entry to wlan roam debug records
- * @vdev_id: vdev identifier
- * @op: operation identifier
- * @peer_id: peer id
- * @mac_addr: mac address of peer, can be NULL
- * @peer_obj: peer object address, can be NULL
- * @arg1: extra argument #1
- * @arg2: extra argument #2
- *
- * Return: none
- */
- void wlan_roam_debug_log(uint8_t vdev_id, uint8_t op,
- uint16_t peer_id, void *mac_addr,
- void *peer_obj, uint32_t arg1, uint32_t arg2);
- /**
- * wlan_rec_debug_log() - Add a debug log entry to wlan debug records
- * @rec_type: record type
- * @vdev_id: vdev identifier
- * @op: operation identifier
- * @peer_id: peer id
- * @mac_addr: mac address of peer, can be NULL
- * @peer_obj: peer object address, can be NULL
- * @arg1: extra argument #1
- * @arg2: extra argument #2
- *
- * Return: none
- */
- void wlan_rec_debug_log(wlan_rec_type rec_type, uint8_t vdev_id, uint8_t op,
- uint16_t peer_id, const void *mac_addr,
- void *peer_obj, uint32_t arg1, uint32_t arg2);
- /**
- * wlan_roam_debug_dump_table() - Print the roam debug log records
- * print all the valid debug records in the order of timestamp
- *
- * Return: none
- */
- void wlan_roam_debug_dump_table(void);
- /**
- * wlan_rec_debug_dump_table() - Print the wlan roam debug log records
- * @rec_type: recorad type
- * @count: count of records to print
- * @to_kernel: print to kernel or not
- *
- * print all the valid debug records in the order of timestamp
- *
- * Return: none
- */
- void wlan_rec_debug_dump_table(wlan_rec_type rec_type, uint32_t count,
- bool to_kernel);
- #ifdef WLAN_LOGGING_BUFFERS_DYNAMICALLY
- /**
- * wlan_roam_debug_init() - Allocate log buffer dynamically
- *
- * Return: none
- */
- void wlan_roam_debug_init(void);
- /**
- * wlan_roam_debug_deinit() - Free log buffer allocated dynamically
- *
- * Return: none
- */
- void wlan_roam_debug_deinit(void);
- #else /* WLAN_LOGGING_BUFFERS_DYNAMICALLY */
- static inline void wlan_roam_debug_init(void)
- {
- }
- static inline void wlan_roam_debug_deinit(void)
- {
- }
- #endif /* WLAN_LOGGING_BUFFERS_DYNAMICALLY */
- #else /* FEATURE_ROAM_DEBUG */
- static inline void
- wlan_roam_debug_log(uint8_t vdev_id, uint8_t op,
- uint16_t peer_id, void *mac_addr,
- void *peer_obj, uint32_t arg1, uint32_t arg2)
- {
- }
- static inline void wlan_rec_debug_log(
- wlan_rec_type rec_type, uint8_t vdev_id, uint8_t op,
- uint16_t peer_id, const void *mac_addr,
- void *peer_obj, uint32_t arg1, uint32_t arg2)
- {
- }
- static inline void wlan_roam_debug_dump_table(void)
- {
- }
- static inline void wlan_rec_debug_dump_table(wlan_rec_type rec_type,
- uint32_t count,
- bool to_kernel)
- {
- }
- static inline void wlan_roam_debug_init(void)
- {
- }
- static inline void wlan_roam_debug_deinit(void)
- {
- }
- #endif /* FEATURE_ROAM_DEBUG */
- #endif /* _WLAN_ROAM_DEBUG_H_ */
|