-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathecrnx_mod_params.h
executable file
·75 lines (70 loc) · 1.63 KB
/
ecrnx_mod_params.h
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
/**
******************************************************************************
*
* @file ecrnx_mod_params.h
*
* @brief Declaration of module parameters
*
* Copyright (C) ESWIN 2015-2020
*
******************************************************************************
*/
#ifndef _ECRNX_MOD_PARAM_H_
#define _ECRNX_MOD_PARAM_H_
struct ecrnx_mod_params {
bool ht_on;
bool vht_on;
bool he_on;
int mcs_map;
int he_mcs_map;
bool he_ul_on;
bool ldpc_on;
bool stbc_on;
bool gf_rx_on;
int phy_cfg;
int uapsd_timeout;
bool ap_uapsd_on;
bool sgi;
bool sgi80;
bool use_2040;
bool use_80;
bool custregd;
bool custchan;
int nss;
int amsdu_rx_max;
bool bfmee;
bool bfmer;
bool mesh;
bool murx;
bool mutx;
bool mutx_on;
unsigned int roc_dur_max;
int listen_itv;
bool listen_bcmc;
int lp_clk_ppm;
bool ps_on;
int tx_lft;
int amsdu_maxnb;
int uapsd_queues;
bool tdls;
bool uf;
char *ftl;
bool dpsm;
int tx_to_bk;
int tx_to_be;
int tx_to_vi;
int tx_to_vo;
bool ant_div;
//add for config custom_macpolicy
int custom_macrule;
};
extern struct ecrnx_mod_params ecrnx_mod_params;
struct ecrnx_hw;
struct wiphy;
int ecrnx_handle_dynparams(struct ecrnx_hw *ecrnx_hw, struct wiphy *wiphy);
void ecrnx_custregd(struct ecrnx_hw *ecrnx_hw, struct wiphy *wiphy);
void ecrnx_enable_wapi(struct ecrnx_hw *ecrnx_hw);
void ecrnx_enable_mfp(struct ecrnx_hw *ecrnx_hw);
void ecrnx_enable_gcmp(struct ecrnx_hw *ecrnx_hw);
void ecrnx_adjust_amsdu_maxnb(struct ecrnx_hw *ecrnx_hw);
#endif /* _ECRNX_MOD_PARAM_H_ */