hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
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
/**
 ******************************************************************************
 *
 * @file rwnx_mod_params.h
 *
 * @brief Declaration of module parameters
 *
 * Copyright (C) RivieraWaves 2012-2021
 *
 ******************************************************************************
 */
 
#ifndef _RWNX_MOD_PARAM_H_
#define _RWNX_MOD_PARAM_H_
 
struct rwnx_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;
   bool auto_reply;
   char *ftl;
   bool dpsm;
#ifdef CONFIG_RWNX_FULLMAC
   bool ant_div;
#endif /* CONFIG_RWNX_FULLMAC */
};
 
extern struct rwnx_mod_params rwnx_mod_params;
 
struct rwnx_hw;
struct wiphy;
int rwnx_handle_dynparams(struct rwnx_hw *rwnx_hw, struct wiphy *wiphy);
void rwnx_custregd(struct rwnx_hw *rwnx_hw, struct wiphy *wiphy);
void rwnx_enable_wapi(struct rwnx_hw *rwnx_hw);
void rwnx_enable_mfp(struct rwnx_hw *rwnx_hw);
 
#endif /* _RWNX_MOD_PARAM_H_ */