xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/include/rtw_cfg.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /******************************************************************************
2*4882a593Smuzhiyun  *
3*4882a593Smuzhiyun  * Copyright(c) 2007 - 2020 Realtek Corporation.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or modify it
6*4882a593Smuzhiyun  * under the terms of version 2 of the GNU General Public License as
7*4882a593Smuzhiyun  * published by the Free Software Foundation.
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful, but WITHOUT
10*4882a593Smuzhiyun  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12*4882a593Smuzhiyun  * more details.
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  *****************************************************************************/
15*4882a593Smuzhiyun #ifndef _RTW_CFG_H_
16*4882a593Smuzhiyun #define _RTW_CFG_H_
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun enum rtw_pwr_by_rate_setting {
19*4882a593Smuzhiyun 	RTW_PW_BY_RATE_ON = 0,
20*4882a593Smuzhiyun 	RTW_PW_BY_RATE_ALL_SAME = 1
21*4882a593Smuzhiyun };
22*4882a593Smuzhiyun 
23*4882a593Smuzhiyun enum rtw_pwr_limit_type {
24*4882a593Smuzhiyun 	RTW_PWLMT_BY_EFUSE = 0,
25*4882a593Smuzhiyun 	RTW_PWLMT_DISABLE = 1,
26*4882a593Smuzhiyun 	RTW_PWBYRATE_AND_PWLMT = 2
27*4882a593Smuzhiyun };
28*4882a593Smuzhiyun 
29*4882a593Smuzhiyun u8 rtw_load_dvobj_registry(struct dvobj_priv *dvobj);
30*4882a593Smuzhiyun uint rtw_load_registry(_adapter *adapter);
31*4882a593Smuzhiyun 
32*4882a593Smuzhiyun void rtw_core_update_default_setting (struct dvobj_priv *dvobj);
33*4882a593Smuzhiyun 
34*4882a593Smuzhiyun #define RTW_ADAPTIVITY_EN_DISABLE 0
35*4882a593Smuzhiyun #define RTW_ADAPTIVITY_EN_ENABLE 1
36*4882a593Smuzhiyun #define RTW_ADAPTIVITY_EN_AUTO 2
37*4882a593Smuzhiyun 
38*4882a593Smuzhiyun #define RTW_ADAPTIVITY_MODE_NORMAL 0
39*4882a593Smuzhiyun #define RTW_ADAPTIVITY_MODE_CARRIER_SENSE 1
40*4882a593Smuzhiyun 
41*4882a593Smuzhiyun void rtw_cfg_adaptivity_config_msg(void *sel, _adapter *adapter);
42*4882a593Smuzhiyun bool rtw_cfg_adaptivity_needed(_adapter *adapter);
43*4882a593Smuzhiyun 
44*4882a593Smuzhiyun #endif /*_RTW_CFG_H_*/
45