hc
2024-05-10 cde9070d9970eef1f7ec2360586c802a16230ad8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * Bigdata logging and report. None EWP and Hang event.
 *
 * Copyright (C) 2020, Broadcom.
 *
 *      Unless you and Broadcom execute a separate written software license
 * agreement governing use of this software, this software is licensed to you
 * under the terms of the GNU General Public License version 2 (the "GPL"),
 * available at http://www.broadcom.com/licenses/GPLv2.php, with the
 * following added to such license:
 *
 *      As a special exception, the copyright holders of this software give you
 * permission to link this software with independent modules, and to copy and
 * distribute the resulting executable under terms of your choice, provided that
 * you also meet, for each linked independent module, the terms and conditions of
 * the license of that module.  An independent module is a module which is not
 * derived from this software.  The special exception does not apply to any
 * modifications of the software.
 *
 *
 * <<Broadcom-WL-IPTag/Dual:>>
 */
#ifndef __WL_BIGDATA_H_
#define __WL_BIGDATA_H_
 
#include <802.11.h>
#include <bcmevent.h>
#include <bcmwifi_channels.h>
 
#define MAX_STA_INFO_AP_CNT    20
 
#define DOT11_11B_MAX_RATE 11
#define DOT11_2GHZ_MAX_CH_NUM 14
#define DOT11_HT_MCS_RATE_MASK 0xFF
 
enum {
   BIGDATA_DOT11_11B_MODE = 0,
   BIGDATA_DOT11_11G_MODE = 1,
   BIGDATA_DOT11_11N_MODE = 2,
   BIGDATA_DOT11_11A_MODE = 3,
   BIGDATA_DOT11_11AC_MODE = 4,
   BIGDATA_DOT11_11AX_MODE = 5,
   BIGDATA_DOT11_MODE_MAX
};
 
typedef struct wl_ap_sta_data
{
   struct ether_addr mac;
   uint32 mode_80211;
   uint32 nss;
   chanspec_t chanspec;
   int16 rssi;
   uint32 rate;
   uint8 channel;
   uint32 mimo;
   uint32 disconnected;
   uint32 is_empty;
   uint32 reason_code;
} wl_ap_sta_data_t;
 
typedef struct ap_sta_wq_data
{
   wl_event_msg_t e;
   void *dhdp;
   void *bcm_cfg;
   void *ndev;
} ap_sta_wq_data_t;
 
typedef struct wl_ap_sta_info
{
   wl_ap_sta_data_t *ap_sta_data;
   uint32 sta_list_cnt;
   struct mutex wq_data_sync;
} wl_ap_sta_info_t;
 
int wl_attach_ap_stainfo(void *bcm_cfg);
int wl_detach_ap_stainfo(void *bcm_cfg);
int wl_ap_stainfo_init(void *bcm_cfg);
void wl_gather_ap_stadata(void *handle, void *event_info, u8 event);
int wl_get_ap_stadata(void *bcm_cfg, struct ether_addr *sta_mac, void **data);
#endif /* __WL_BIGDATA_H_ */