update version to v5.8.9_35085.20190919
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Copyright(c) 2007 - 2012 Realtek Corporation. All rights reserved.
|
||||
* Copyright(c) 2007 - 2017 Realtek Corporation.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of version 2 of the GNU General Public License as
|
||||
@@ -11,25 +11,20 @@
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
||||
*
|
||||
*
|
||||
******************************************************************************/
|
||||
*****************************************************************************/
|
||||
#ifndef __RTW_PWRCTRL_H_
|
||||
#define __RTW_PWRCTRL_H_
|
||||
|
||||
|
||||
#define FW_PWR0 0
|
||||
#define FW_PWR1 1
|
||||
#define FW_PWR2 2
|
||||
#define FW_PWR3 3
|
||||
#define FW_PWR0 0
|
||||
#define FW_PWR1 1
|
||||
#define FW_PWR2 2
|
||||
#define FW_PWR3 3
|
||||
|
||||
|
||||
#define HW_PWR0 7
|
||||
#define HW_PWR1 6
|
||||
#define HW_PWR2 2
|
||||
#define HW_PWR0 7
|
||||
#define HW_PWR1 6
|
||||
#define HW_PWR2 2
|
||||
#define HW_PWR3 0
|
||||
#define HW_PWR4 8
|
||||
|
||||
@@ -42,12 +37,36 @@
|
||||
#define EVT_ALIVE BIT(3)
|
||||
#ifdef CONFIG_BT_COEXIST
|
||||
#define BTCOEX_ALIVE BIT(4)
|
||||
#endif // CONFIG_BT_COEXIST
|
||||
#endif /* CONFIG_BT_COEXIST */
|
||||
|
||||
#ifdef CONFIG_WOWLAN
|
||||
#define MAX_WKFM_NUM 16 /* Frame Mask Cam number for pattern match */
|
||||
#ifdef CONFIG_PLATFORM_ANDROID_INTEL_X86
|
||||
/* TCP/ICMP/UDP multicast with specific IP addr */
|
||||
#define DEFAULT_PATTERN_NUM 4
|
||||
#else
|
||||
/* TCP/ICMP */
|
||||
#define DEFAULT_PATTERN_NUM 3
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_WOW_PATTERN_HW_CAM /* Frame Mask Cam number for pattern match */
|
||||
#define MAX_WKFM_CAM_NUM 12
|
||||
#else
|
||||
#define MAX_WKFM_CAM_NUM 16
|
||||
#endif
|
||||
|
||||
#define MAX_WKFM_SIZE 16 /* (16 bytes for WKFM bit mask, 16*8 = 128 bits) */
|
||||
#define MAX_WKFM_PATTERN_SIZE 128
|
||||
|
||||
/*
|
||||
* MAX_WKFM_PATTERN_STR_LEN : the max. length of wow pattern string
|
||||
* e.g. echo 00:01:02:...:7f > /proc/net/rtl88x2bu/wlan0/wow_pattern_info
|
||||
* - each byte of pattern is represented as 2-bytes ascii : MAX_WKFM_PATTERN_SIZE * 2
|
||||
* - the number of common ':' in pattern string : MAX_WKFM_PATTERN_SIZE - 1
|
||||
* - 1 byte '\n'(0x0a) is generated at the end when we use echo command
|
||||
* so total max. length is (MAX_WKFM_PATTERN_SIZE * 3)
|
||||
*/
|
||||
#define MAX_WKFM_PATTERN_STR_LEN (MAX_WKFM_PATTERN_SIZE * 3)
|
||||
|
||||
#define WKFMCAM_ADDR_NUM 6
|
||||
#define WKFMCAM_SIZE 24 /* each entry need 6*4 bytes */
|
||||
enum pattern_type {
|
||||
@@ -64,19 +83,13 @@ typedef struct rtl_priv_pattern {
|
||||
char mask[MAX_WKFM_SIZE];
|
||||
} rtl_priv_pattern_t;
|
||||
|
||||
struct rtl_wow_pattern {
|
||||
u16 crc;
|
||||
u8 type;
|
||||
u32 mask[4];
|
||||
};
|
||||
#endif /* CONFIG_WOWLAN */
|
||||
|
||||
enum Power_Mgnt
|
||||
{
|
||||
enum Power_Mgnt {
|
||||
PS_MODE_ACTIVE = 0 ,
|
||||
PS_MODE_MIN ,
|
||||
PS_MODE_MAX ,
|
||||
PS_MODE_DTIM , //PS_MODE_SELF_DEFINED
|
||||
PS_MODE_DTIM , /* PS_MODE_SELF_DEFINED */
|
||||
PS_MODE_VOIP ,
|
||||
PS_MODE_UAPSD_WMM ,
|
||||
PS_MODE_UAPSD ,
|
||||
@@ -87,10 +100,17 @@ enum Power_Mgnt
|
||||
PS_MODE_NUM,
|
||||
};
|
||||
|
||||
enum lps_level {
|
||||
LPS_NORMAL = 0,
|
||||
LPS_LCLK,
|
||||
LPS_PG,
|
||||
LPS_LEVEL_MAX,
|
||||
};
|
||||
|
||||
#ifdef CONFIG_PNO_SUPPORT
|
||||
#define MAX_PNO_LIST_COUNT 16
|
||||
#define MAX_SCAN_LIST_COUNT 14 //2.4G only
|
||||
#define MAX_HIDDEN_AP 8 //8 hidden AP
|
||||
#define MAX_SCAN_LIST_COUNT 14 /* 2.4G only */
|
||||
#define MAX_HIDDEN_AP 8 /* 8 hidden AP */
|
||||
#endif
|
||||
|
||||
/*
|
||||
@@ -132,9 +152,9 @@ enum Power_Mgnt
|
||||
|
||||
struct reportpwrstate_parm {
|
||||
unsigned char mode;
|
||||
unsigned char state; //the CPWM value
|
||||
unsigned char state; /* the CPWM value */
|
||||
unsigned short rsvd;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
typedef _sema _pwrlock;
|
||||
@@ -162,41 +182,25 @@ __inline static void _exit_pwrlock(_pwrlock *plock)
|
||||
_rtw_up_sema(plock);
|
||||
}
|
||||
|
||||
#define LPS_DELAY_TIME 1*HZ // 1 sec
|
||||
#define LPS_DELAY_MS 1000 /* 1 sec */
|
||||
|
||||
#define EXE_PWR_NONE 0x01
|
||||
#define EXE_PWR_IPS 0x02
|
||||
#define EXE_PWR_LPS 0x04
|
||||
|
||||
// RF state.
|
||||
typedef enum _rt_rf_power_state
|
||||
{
|
||||
rf_on, // RF is on after RFSleep or RFOff
|
||||
rf_sleep, // 802.11 Power Save mode
|
||||
rf_off, // HW/SW Radio OFF or Inactive Power Save
|
||||
//=====Add the new RF state above this line=====//
|
||||
/* RF state. */
|
||||
typedef enum _rt_rf_power_state {
|
||||
rf_on, /* RF is on after RFSleep or RFOff */
|
||||
rf_sleep, /* 802.11 Power Save mode */
|
||||
rf_off, /* HW/SW Radio OFF or Inactive Power Save */
|
||||
/* =====Add the new RF state above this line===== */
|
||||
rf_max
|
||||
}rt_rf_power_state;
|
||||
} rt_rf_power_state;
|
||||
|
||||
// RF Off Level for IPS or HW/SW radio off
|
||||
#define RT_RF_OFF_LEVL_ASPM BIT(0) // PCI ASPM
|
||||
#define RT_RF_OFF_LEVL_CLK_REQ BIT(1) // PCI clock request
|
||||
#define RT_RF_OFF_LEVL_PCI_D3 BIT(2) // PCI D3 mode
|
||||
#define RT_RF_OFF_LEVL_HALT_NIC BIT(3) // NIC halt, re-initialize hw parameters
|
||||
#define RT_RF_OFF_LEVL_FREE_FW BIT(4) // FW free, re-download the FW
|
||||
#define RT_RF_OFF_LEVL_FW_32K BIT(5) // FW in 32k
|
||||
#define RT_RF_PS_LEVEL_ALWAYS_ASPM BIT(6) // Always enable ASPM and Clock Req in initialization.
|
||||
#define RT_RF_LPS_DISALBE_2R BIT(30) // When LPS is on, disable 2R if no packet is received or transmittd.
|
||||
#define RT_RF_LPS_LEVEL_ASPM BIT(31) // LPS with ASPM
|
||||
|
||||
#define RT_IN_PS_LEVEL(ppsc, _PS_FLAG) ((ppsc->cur_ps_level & _PS_FLAG) ? _TRUE : _FALSE)
|
||||
#define RT_CLEAR_PS_LEVEL(ppsc, _PS_FLAG) (ppsc->cur_ps_level &= (~(_PS_FLAG)))
|
||||
#define RT_SET_PS_LEVEL(ppsc, _PS_FLAG) (ppsc->cur_ps_level |= _PS_FLAG)
|
||||
|
||||
// ASPM OSC Control bit, added by Roger, 2013.03.29.
|
||||
#define RT_PCI_ASPM_OSC_IGNORE 0 // PCI ASPM ignore OSC control in default
|
||||
#define RT_PCI_ASPM_OSC_ENABLE BIT0 // PCI ASPM controlled by OS according to ACPI Spec 5.0
|
||||
#define RT_PCI_ASPM_OSC_DISABLE BIT1 // PCI ASPM controlled by driver or BIOS, i.e., force enable ASPM
|
||||
/* ASPM OSC Control bit, added by Roger, 2013.03.29. */
|
||||
#define RT_PCI_ASPM_OSC_IGNORE 0 /* PCI ASPM ignore OSC control in default */
|
||||
#define RT_PCI_ASPM_OSC_ENABLE BIT0 /* PCI ASPM controlled by OS according to ACPI Spec 5.0 */
|
||||
#define RT_PCI_ASPM_OSC_DISABLE BIT1 /* PCI ASPM controlled by driver or BIOS, i.e., force enable ASPM */
|
||||
|
||||
|
||||
enum _PS_BBRegBackup_ {
|
||||
@@ -207,16 +211,15 @@ enum _PS_BBRegBackup_ {
|
||||
PSBBREG_TOTALCNT
|
||||
};
|
||||
|
||||
enum { // for ips_mode
|
||||
IPS_NONE=0,
|
||||
enum { /* for ips_mode */
|
||||
IPS_NONE = 0,
|
||||
IPS_NORMAL,
|
||||
IPS_LEVEL_2,
|
||||
IPS_LEVEL_2,
|
||||
IPS_NUM
|
||||
};
|
||||
|
||||
// Design for pwrctrl_priv.ips_deny, 32 bits for 32 reasons at most
|
||||
typedef enum _PS_DENY_REASON
|
||||
{
|
||||
/* Design for pwrctrl_priv.ips_deny, 32 bits for 32 reasons at most */
|
||||
typedef enum _PS_DENY_REASON {
|
||||
PS_DENY_DRV_INITIAL = 0,
|
||||
PS_DENY_SCAN,
|
||||
PS_DENY_JOIN,
|
||||
@@ -224,23 +227,24 @@ typedef enum _PS_DENY_REASON
|
||||
PS_DENY_SUSPEND,
|
||||
PS_DENY_IOCTL,
|
||||
PS_DENY_MGNT_TX,
|
||||
PS_DENY_MONITOR_MODE,
|
||||
PS_DENY_BEAMFORMING, /* Beamforming */
|
||||
PS_DENY_DRV_REMOVE = 30,
|
||||
PS_DENY_OTHERS = 31
|
||||
} PS_DENY_REASON;
|
||||
|
||||
#ifdef CONFIG_PNO_SUPPORT
|
||||
typedef struct pno_nlo_info
|
||||
{
|
||||
u32 fast_scan_period; //Fast scan period
|
||||
u8 ssid_num; //number of entry
|
||||
typedef struct pno_nlo_info {
|
||||
u32 fast_scan_period; /* Fast scan period */
|
||||
u8 ssid_num; /* number of entry */
|
||||
u8 hidden_ssid_num;
|
||||
u32 slow_scan_period; //slow scan period
|
||||
u32 fast_scan_iterations; //Fast scan iterations
|
||||
u8 ssid_length[MAX_PNO_LIST_COUNT]; //SSID Length Array
|
||||
u8 ssid_cipher_info[MAX_PNO_LIST_COUNT]; //Cipher information for security
|
||||
u8 ssid_channel_info[MAX_PNO_LIST_COUNT]; //channel information
|
||||
u8 loc_probe_req[MAX_HIDDEN_AP]; //loc_probeReq
|
||||
}pno_nlo_info_t;
|
||||
u32 slow_scan_period; /* slow scan period */
|
||||
u32 fast_scan_iterations; /* Fast scan iterations */
|
||||
u8 ssid_length[MAX_PNO_LIST_COUNT]; /* SSID Length Array */
|
||||
u8 ssid_cipher_info[MAX_PNO_LIST_COUNT]; /* Cipher information for security */
|
||||
u8 ssid_channel_info[MAX_PNO_LIST_COUNT]; /* channel information */
|
||||
u8 loc_probe_req[MAX_HIDDEN_AP]; /* loc_probeReq */
|
||||
} pno_nlo_info_t;
|
||||
|
||||
typedef struct pno_ssid {
|
||||
u32 SSID_len;
|
||||
@@ -249,80 +253,123 @@ typedef struct pno_ssid {
|
||||
|
||||
typedef struct pno_ssid_list {
|
||||
pno_ssid_t node[MAX_PNO_LIST_COUNT];
|
||||
}pno_ssid_list_t;
|
||||
} pno_ssid_list_t;
|
||||
|
||||
typedef struct pno_scan_channel_info
|
||||
{
|
||||
typedef struct pno_scan_channel_info {
|
||||
u8 channel;
|
||||
u8 tx_power;
|
||||
u8 timeout;
|
||||
u8 active; //set 1 means active scan, or pasivite scan.
|
||||
}pno_scan_channel_info_t;
|
||||
u8 active; /* set 1 means active scan, or pasivite scan. */
|
||||
} pno_scan_channel_info_t;
|
||||
|
||||
typedef struct pno_scan_info
|
||||
{
|
||||
u8 enableRFE; //Enable RFE
|
||||
u8 period_scan_time; //exclusive with fast_scan_period and slow_scan_period
|
||||
u8 periodScan; //exclusive with fast_scan_period and slow_scan_period
|
||||
u8 orig_80_offset; //original channel 80 offset
|
||||
u8 orig_40_offset; //original channel 40 offset
|
||||
u8 orig_bw; //original bandwidth
|
||||
u8 orig_ch; //original channel
|
||||
u8 channel_num; //number of channel
|
||||
u64 rfe_type; //rfe_type && 0x00000000000000ff
|
||||
typedef struct pno_scan_info {
|
||||
u8 enableRFE; /* Enable RFE */
|
||||
u8 period_scan_time; /* exclusive with fast_scan_period and slow_scan_period */
|
||||
u8 periodScan; /* exclusive with fast_scan_period and slow_scan_period */
|
||||
u8 orig_80_offset; /* original channel 80 offset */
|
||||
u8 orig_40_offset; /* original channel 40 offset */
|
||||
u8 orig_bw; /* original bandwidth */
|
||||
u8 orig_ch; /* original channel */
|
||||
u8 channel_num; /* number of channel */
|
||||
u64 rfe_type; /* rfe_type && 0x00000000000000ff */
|
||||
pno_scan_channel_info_t ssid_channel_info[MAX_SCAN_LIST_COUNT];
|
||||
}pno_scan_info_t;
|
||||
#endif //CONFIG_PNO_SUPPORT
|
||||
} pno_scan_info_t;
|
||||
#endif /* CONFIG_PNO_SUPPORT */
|
||||
|
||||
struct pwrctrl_priv
|
||||
{
|
||||
#ifdef CONFIG_LPS_POFF
|
||||
/* Driver context for LPS 32K Close IO Power */
|
||||
typedef struct lps_poff_info {
|
||||
bool bEn;
|
||||
u8 *pStaticFile;
|
||||
u8 *pDynamicFile;
|
||||
u32 ConfFileOffset;
|
||||
u32 tx_bndy_static;
|
||||
u32 tx_bndy_dynamic;
|
||||
u16 ConfLenForPTK;
|
||||
u16 ConfLenForGTK;
|
||||
ATOMIC_T bEnterPOFF;
|
||||
ATOMIC_T bTxBoundInProgress;
|
||||
ATOMIC_T bSetPOFFParm;
|
||||
} lps_poff_info_t;
|
||||
#endif /*CONFIG_LPS_POFF*/
|
||||
|
||||
struct aoac_report {
|
||||
u8 iv[8];
|
||||
u8 replay_counter_eapol_key[8];
|
||||
u8 group_key[32];
|
||||
u8 key_index;
|
||||
u8 security_type;
|
||||
u8 wow_pattern_idx;
|
||||
u8 version_info;
|
||||
u8 rekey_ok:1;
|
||||
u8 dummy:7;
|
||||
u8 reserved[3];
|
||||
u8 rxptk_iv[8];
|
||||
u8 rxgtk_iv[4][8];
|
||||
};
|
||||
|
||||
struct rsvd_page_cache_t;
|
||||
|
||||
struct pwrctrl_priv {
|
||||
_pwrlock lock;
|
||||
_pwrlock check_32k_lock;
|
||||
volatile u8 rpwm; // requested power state for fw
|
||||
volatile u8 cpwm; // fw current power state. updated when 1. read from HCPWM 2. driver lowers power level
|
||||
volatile u8 tog; // toggling
|
||||
volatile u8 cpwm_tog; // toggling
|
||||
volatile u8 rpwm; /* requested power state for fw */
|
||||
volatile u8 cpwm; /* fw current power state. updated when 1. read from HCPWM 2. driver lowers power level */
|
||||
volatile u8 tog; /* toggling */
|
||||
volatile u8 cpwm_tog; /* toggling */
|
||||
u8 rpwm_retry;
|
||||
|
||||
u8 pwr_mode;
|
||||
u8 smart_ps;
|
||||
u8 disable_smart_ps;
|
||||
u8 bcn_ant_mode;
|
||||
u8 dtim;
|
||||
u8 dtim;
|
||||
#ifdef CONFIG_LPS_CHK_BY_TP
|
||||
u8 lps_chk_by_tp;
|
||||
u16 lps_tx_tp_th;/*Mbps*/
|
||||
u16 lps_rx_tp_th;/*Mbps*/
|
||||
u16 lps_bi_tp_th;/*Mbps*//*TRX TP*/
|
||||
int lps_chk_cnt_th;
|
||||
int lps_chk_cnt;
|
||||
u32 lps_tx_pkts;
|
||||
u32 lps_rx_pkts;
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_WMMPS_STA
|
||||
u8 wmm_smart_ps;
|
||||
#endif /* CONFIG_WMMPS_STA */
|
||||
|
||||
u32 alives;
|
||||
_workitem cpwm_event;
|
||||
_workitem dma_event; /*for handle un-synchronized tx dma*/
|
||||
#ifdef CONFIG_LPS_RPWM_TIMER
|
||||
u8 brpwmtimeout;
|
||||
_workitem rpwmtimeoutwi;
|
||||
_timer pwr_rpwm_timer;
|
||||
#endif // CONFIG_LPS_RPWM_TIMER
|
||||
u8 bpower_saving; //for LPS/IPS
|
||||
#endif /* CONFIG_LPS_RPWM_TIMER */
|
||||
u8 bpower_saving; /* for LPS/IPS */
|
||||
|
||||
u8 b_hw_radio_off;
|
||||
u8 reg_rfoff;
|
||||
u8 reg_pdnmode; //powerdown mode
|
||||
u8 reg_pdnmode; /* powerdown mode */
|
||||
u32 rfoff_reason;
|
||||
|
||||
//RF OFF Level
|
||||
u32 cur_ps_level;
|
||||
u32 reg_rfps_level;
|
||||
uint ips_enter_cnts;
|
||||
uint ips_leave_cnts;
|
||||
uint lps_enter_cnts;
|
||||
uint lps_leave_cnts;
|
||||
|
||||
uint ips_enter_cnts;
|
||||
uint ips_leave_cnts;
|
||||
uint lps_enter_cnts;
|
||||
uint lps_leave_cnts;
|
||||
|
||||
u8 ips_mode;
|
||||
u8 ips_org_mode;
|
||||
u8 ips_mode_req; // used to accept the mode setting request, will update to ipsmode later
|
||||
u8 ips_mode;
|
||||
u8 ips_org_mode;
|
||||
u8 ips_mode_req; /* used to accept the mode setting request, will update to ipsmode later */
|
||||
uint bips_processing;
|
||||
u32 ips_deny_time; /* will deny IPS when system time is smaller than this */
|
||||
u8 pre_ips_type;// 0: default flow, 1: carddisbale flow
|
||||
systime ips_deny_time; /* will deny IPS when system time is smaller than this */
|
||||
u8 pre_ips_type;/* 0: default flow, 1: carddisbale flow */
|
||||
|
||||
// ps_deny: if 0, power save is free to go; otherwise deny all kinds of power save.
|
||||
// Use PS_DENY_REASON to decide reason.
|
||||
// Don't access this variable directly without control function,
|
||||
// and this variable should be protected by lock.
|
||||
/* ps_deny: if 0, power save is free to go; otherwise deny all kinds of power save. */
|
||||
/* Use PS_DENY_REASON to decide reason. */
|
||||
/* Don't access this variable directly without control function, */
|
||||
/* and this variable should be protected by lock. */
|
||||
u32 ps_deny;
|
||||
|
||||
u8 ps_processing; /* temporarily used to mark whether in rtw_ps_processor */
|
||||
@@ -333,49 +380,65 @@ struct pwrctrl_priv
|
||||
u8 power_mgnt;
|
||||
u8 org_power_mgnt;
|
||||
u8 bFwCurrentInPSMode;
|
||||
u32 DelayLPSLastTimeStamp;
|
||||
systime lps_deny_time; /* will deny LPS when system time is smaller than this */
|
||||
s32 pnp_current_pwr_state;
|
||||
u8 pnp_bstop_trx;
|
||||
|
||||
|
||||
#ifdef CONFIG_AUTOSUSPEND
|
||||
int ps_flag; /* used by autosuspend */
|
||||
u8 bInternalAutoSuspend;
|
||||
#endif
|
||||
u8 bInSuspend;
|
||||
#ifdef CONFIG_BT_COEXIST
|
||||
#ifdef CONFIG_BT_COEXIST
|
||||
u8 bAutoResume;
|
||||
u8 autopm_cnt;
|
||||
#endif
|
||||
u8 bSupportRemoteWakeup;
|
||||
u8 bSupportRemoteWakeup;
|
||||
u8 wowlan_wake_reason;
|
||||
u8 wowlan_last_wake_reason;
|
||||
u8 wowlan_ap_mode;
|
||||
u8 wowlan_mode;
|
||||
u8 wowlan_p2p_mode;
|
||||
u8 wowlan_pno_enable;
|
||||
u8 wowlan_in_resume;
|
||||
|
||||
#ifdef CONFIG_GPIO_WAKEUP
|
||||
u8 is_high_active;
|
||||
#endif /* CONFIG_GPIO_WAKEUP */
|
||||
u8 hst2dev_high_active;
|
||||
#ifdef CONFIG_WOWLAN
|
||||
bool default_patterns_en;
|
||||
#ifdef CONFIG_IPV6
|
||||
u8 wowlan_ns_offload_en;
|
||||
#endif /*CONFIG_IPV6*/
|
||||
u8 wowlan_txpause_status;
|
||||
u8 wowlan_pattern;
|
||||
u8 wowlan_pattern_idx;
|
||||
u64 wowlan_fw_iv;
|
||||
struct rtl_priv_pattern patterns[MAX_WKFM_NUM];
|
||||
struct rtl_priv_pattern patterns[MAX_WKFM_CAM_NUM];
|
||||
#ifdef CONFIG_PNO_SUPPORT
|
||||
u8 pno_in_resume;
|
||||
u8 pno_inited;
|
||||
pno_nlo_info_t *pnlo_info;
|
||||
pno_scan_info_t *pscan_info;
|
||||
pno_ssid_list_t *pno_ssid_list;
|
||||
#endif /* CONFIG_PNO_SUPPORT */
|
||||
#ifdef CONFIG_WOW_PATTERN_HW_CAM
|
||||
_mutex wowlan_pattern_cam_mutex;
|
||||
#endif
|
||||
u8 wowlan_aoac_rpt_loc;
|
||||
struct aoac_report wowlan_aoac_rpt;
|
||||
u8 wowlan_power_mgmt;
|
||||
u8 wowlan_lps_level;
|
||||
#ifdef CONFIG_LPS_1T1R
|
||||
u8 wowlan_lps_1t1r;
|
||||
#endif
|
||||
#endif /* CONFIG_WOWLAN */
|
||||
_timer pwr_state_check_timer;
|
||||
_timer pwr_state_check_timer;
|
||||
int pwr_state_check_interval;
|
||||
u8 pwr_state_check_cnts;
|
||||
|
||||
int ps_flag; /* used by autosuspend */
|
||||
|
||||
rt_rf_power_state rf_pwrstate;//cur power state, only for IPS
|
||||
//rt_rf_power_state current_rfpwrstate;
|
||||
|
||||
rt_rf_power_state rf_pwrstate;/* cur power state, only for IPS */
|
||||
/* rt_rf_power_state current_rfpwrstate; */
|
||||
rt_rf_power_state change_rfpwrstate;
|
||||
|
||||
u8 bHWPowerdown; /* power down mode selection. 0:radio off, 1:power down */
|
||||
@@ -384,24 +447,53 @@ struct pwrctrl_priv
|
||||
u8 brfoffbyhw;
|
||||
unsigned long PS_BBRegBackup[PSBBREG_TOTALCNT];
|
||||
|
||||
#ifdef CONFIG_RESUME_IN_WORKQUEUE
|
||||
#ifdef CONFIG_RESUME_IN_WORKQUEUE
|
||||
struct workqueue_struct *rtw_workqueue;
|
||||
_workitem resume_work;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_HAS_EARLYSUSPEND
|
||||
#ifdef CONFIG_HAS_EARLYSUSPEND
|
||||
struct early_suspend early_suspend;
|
||||
u8 do_late_resume;
|
||||
#endif //CONFIG_HAS_EARLYSUSPEND
|
||||
|
||||
#ifdef CONFIG_ANDROID_POWER
|
||||
#endif /* CONFIG_HAS_EARLYSUSPEND */
|
||||
|
||||
#ifdef CONFIG_ANDROID_POWER
|
||||
android_early_suspend_t early_suspend;
|
||||
u8 do_late_resume;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_INTEL_PROXIM
|
||||
u8 stored_power_mgnt;
|
||||
#endif
|
||||
#ifdef CONFIG_LPS_POFF
|
||||
lps_poff_info_t *plps_poff_info;
|
||||
#endif
|
||||
u8 lps_level_bk;
|
||||
u8 lps_level; /*LPS_NORMAL,LPA_CG,LPS_PG*/
|
||||
#ifdef CONFIG_LPS_1T1R
|
||||
u8 lps_1t1r_bk;
|
||||
u8 lps_1t1r;
|
||||
#endif
|
||||
#ifdef CONFIG_LPS_PG
|
||||
struct rsvd_page_cache_t lpspg_info;
|
||||
#ifdef CONFIG_RTL8822C
|
||||
struct rsvd_page_cache_t lpspg_dpk_info;
|
||||
struct rsvd_page_cache_t lpspg_iqk_info;
|
||||
#endif
|
||||
#endif
|
||||
u8 current_lps_hw_port_id;
|
||||
|
||||
#ifdef CONFIG_RTW_CFGVEDNOR_LLSTATS
|
||||
systime radio_on_start_time;
|
||||
systime pwr_saving_start_time;
|
||||
u32 pwr_saving_time;
|
||||
u32 on_time;
|
||||
u32 tx_time;
|
||||
u32 rx_time;
|
||||
#endif /* CONFIG_RTW_CFGVEDNOR_LLSTATS */
|
||||
|
||||
#ifdef CONFIG_LPS_ACK
|
||||
struct submit_ctx lps_ack_sctx;
|
||||
s8 lps_ack_status;
|
||||
_mutex lps_ack_mutex;
|
||||
#endif /* CONFIG_LPS_ACK */
|
||||
};
|
||||
|
||||
#define rtw_get_ips_mode_req(pwrctl) \
|
||||
@@ -414,15 +506,15 @@ struct pwrctrl_priv
|
||||
|
||||
#define _rtw_set_pwr_state_check_timer(pwrctl, ms) \
|
||||
do { \
|
||||
/*DBG_871X("%s _rtw_set_pwr_state_check_timer(%p, %d)\n", __FUNCTION__, (pwrctl), (ms));*/ \
|
||||
/*RTW_INFO("%s _rtw_set_pwr_state_check_timer(%p, %d)\n", __FUNCTION__, (pwrctl), (ms));*/ \
|
||||
_set_timer(&(pwrctl)->pwr_state_check_timer, (ms)); \
|
||||
} while(0)
|
||||
|
||||
} while (0)
|
||||
|
||||
#define rtw_set_pwr_state_check_timer(pwrctl) \
|
||||
_rtw_set_pwr_state_check_timer((pwrctl), (pwrctl)->pwr_state_check_interval)
|
||||
|
||||
extern void rtw_init_pwrctrl_priv(_adapter *adapter);
|
||||
extern void rtw_free_pwrctrl_priv(_adapter * adapter);
|
||||
extern void rtw_free_pwrctrl_priv(_adapter *adapter);
|
||||
|
||||
#ifdef CONFIG_LPS_LCLK
|
||||
s32 rtw_register_task_alive(PADAPTER, u32 task);
|
||||
@@ -442,39 +534,50 @@ extern void LPS_Leave_check(PADAPTER padapter);
|
||||
extern void LeaveAllPowerSaveMode(PADAPTER Adapter);
|
||||
extern void LeaveAllPowerSaveModeDirect(PADAPTER Adapter);
|
||||
#ifdef CONFIG_IPS
|
||||
void _ips_enter(_adapter * padapter);
|
||||
void ips_enter(_adapter * padapter);
|
||||
int _ips_leave(_adapter * padapter);
|
||||
int ips_leave(_adapter * padapter);
|
||||
void _ips_enter(_adapter *padapter);
|
||||
void ips_enter(_adapter *padapter);
|
||||
int _ips_leave(_adapter *padapter);
|
||||
int ips_leave(_adapter *padapter);
|
||||
#endif
|
||||
|
||||
void rtw_ps_processor(_adapter*padapter);
|
||||
void rtw_ps_processor(_adapter *padapter);
|
||||
|
||||
#ifdef CONFIG_AUTOSUSPEND
|
||||
int autoresume_enter(_adapter* padapter);
|
||||
int autoresume_enter(_adapter *padapter);
|
||||
#endif
|
||||
#ifdef SUPPORT_HW_RFOFF_DETECTED
|
||||
rt_rf_power_state RfOnOffDetect(IN PADAPTER pAdapter );
|
||||
rt_rf_power_state RfOnOffDetect(PADAPTER pAdapter);
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef DBG_CHECK_FW_PS_STATE
|
||||
int rtw_fw_ps_state(PADAPTER padapter);
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_LPS
|
||||
s32 LPS_RF_ON_check(PADAPTER padapter, u32 delay_ms);
|
||||
extern const char * const LPS_CTRL_PHYDM;
|
||||
void LPS_Enter(PADAPTER padapter, const char *msg);
|
||||
void LPS_Leave(PADAPTER padapter, const char *msg);
|
||||
void rtw_leave_lps_and_chk(_adapter *padapter, u8 ps_mode);
|
||||
#ifdef CONFIG_CHECK_LEAVE_LPS
|
||||
#ifdef CONFIG_LPS_CHK_BY_TP
|
||||
void traffic_check_for_leave_lps_by_tp(PADAPTER padapter, u8 tx, struct sta_info *sta);
|
||||
#endif
|
||||
void traffic_check_for_leave_lps(PADAPTER padapter, u8 tx, u32 tx_packets);
|
||||
#endif /*CONFIG_CHECK_LEAVE_LPS*/
|
||||
void rtw_set_ps_mode(PADAPTER padapter, u8 ps_mode, u8 smart_ps, u8 bcn_ant_mode, const char *msg);
|
||||
void rtw_set_fw_in_ips_mode(PADAPTER padapter, u8 enable);
|
||||
void rtw_set_rpwm(_adapter * padapter, u8 val8);
|
||||
#endif
|
||||
u8 rtw_set_rpwm(_adapter *padapter, u8 val8);
|
||||
#ifdef CONFIG_WOWLAN
|
||||
void rtw_wow_lps_level_decide(_adapter *adapter, u8 wow_en);
|
||||
#endif /* CONFIG_WOWLAN */
|
||||
#endif /* CONFIG_LPS */
|
||||
|
||||
#ifdef CONFIG_RESUME_IN_WORKQUEUE
|
||||
void rtw_resume_in_workqueue(struct pwrctrl_priv *pwrpriv);
|
||||
#endif //CONFIG_RESUME_IN_WORKQUEUE
|
||||
#endif /* CONFIG_RESUME_IN_WORKQUEUE */
|
||||
|
||||
#if defined(CONFIG_HAS_EARLYSUSPEND ) || defined(CONFIG_ANDROID_POWER)
|
||||
#if defined(CONFIG_HAS_EARLYSUSPEND) || defined(CONFIG_ANDROID_POWER)
|
||||
bool rtw_is_earlysuspend_registered(struct pwrctrl_priv *pwrpriv);
|
||||
bool rtw_is_do_late_resume(struct pwrctrl_priv *pwrpriv);
|
||||
void rtw_set_do_late_resume(struct pwrctrl_priv *pwrpriv, bool enable);
|
||||
@@ -488,13 +591,25 @@ void rtw_unregister_early_suspend(struct pwrctrl_priv *pwrpriv);
|
||||
#define rtw_unregister_early_suspend(pwrpriv) do {} while (0)
|
||||
#endif /* CONFIG_HAS_EARLYSUSPEND || CONFIG_ANDROID_POWER */
|
||||
|
||||
u8 rtw_interface_ps_func(_adapter *padapter,HAL_INTF_PS_FUNC efunc_id,u8* val);
|
||||
u8 rtw_interface_ps_func(_adapter *padapter, HAL_INTF_PS_FUNC efunc_id, u8 *val);
|
||||
void rtw_set_ips_deny(_adapter *padapter, u32 ms);
|
||||
int _rtw_pwr_wakeup(_adapter *padapter, u32 ips_deffer_ms, const char *caller);
|
||||
#define rtw_pwr_wakeup(adapter) _rtw_pwr_wakeup(adapter, RTW_PWR_STATE_CHK_INTERVAL, __FUNCTION__)
|
||||
#define rtw_pwr_wakeup_ex(adapter, ips_deffer_ms) _rtw_pwr_wakeup(adapter, ips_deffer_ms, __FUNCTION__)
|
||||
int rtw_pm_set_ips(_adapter *padapter, u8 mode);
|
||||
int rtw_pm_set_lps(_adapter *padapter, u8 mode);
|
||||
int rtw_pm_set_lps_level(_adapter *padapter, u8 level);
|
||||
#ifdef CONFIG_LPS_1T1R
|
||||
int rtw_pm_set_lps_1t1r(_adapter *padapter, u8 en);
|
||||
#endif
|
||||
void rtw_set_lps_deny(_adapter *adapter, u32 ms);
|
||||
#ifdef CONFIG_WOWLAN
|
||||
int rtw_pm_set_wow_lps(_adapter *padapter, u8 mode);
|
||||
int rtw_pm_set_wow_lps_level(_adapter *padapter, u8 level);
|
||||
#ifdef CONFIG_LPS_1T1R
|
||||
int rtw_pm_set_wow_lps_1t1r(_adapter *padapter, u8 en);
|
||||
#endif
|
||||
#endif /* CONFIG_WOWLAN */
|
||||
|
||||
void rtw_ps_deny(PADAPTER padapter, PS_DENY_REASON reason);
|
||||
void rtw_ps_deny_cancel(PADAPTER padapter, PS_DENY_REASON reason);
|
||||
@@ -503,14 +618,12 @@ u32 rtw_ps_deny_get(PADAPTER padapter);
|
||||
#if defined(CONFIG_WOWLAN)
|
||||
void rtw_get_current_ip_address(PADAPTER padapter, u8 *pcurrentip);
|
||||
void rtw_get_sec_iv(PADAPTER padapter, u8 *pcur_dot11txpn, u8 *StaAddr);
|
||||
void rtw_set_sec_pn(_adapter *padapter);
|
||||
bool rtw_check_pattern_valid(u8 *input, u8 len);
|
||||
bool rtw_write_to_frame_mask(_adapter *adapter, u8 idx,
|
||||
struct rtl_wow_pattern *content);
|
||||
|
||||
bool rtw_read_from_frame_mask(_adapter *adapter, u8 idx);
|
||||
void rtw_dump_priv_pattern(_adapter *adapter, u8 idx);
|
||||
void rtw_clean_pattern(_adapter *adapter);
|
||||
bool rtw_wowlan_parser_pattern_cmd(u8 *input, char *pattern,
|
||||
int *pattern_len, char *bit_mask);
|
||||
void rtw_wow_pattern_sw_reset(_adapter *adapter);
|
||||
u8 rtw_set_default_pattern(_adapter *adapter);
|
||||
void rtw_wow_pattern_sw_dump(_adapter *adapter);
|
||||
#endif /* CONFIG_WOWLAN */
|
||||
#endif //__RTL871X_PWRCTRL_H_
|
||||
|
||||
void rtw_ssmps_enter(_adapter *adapter, struct sta_info *sta);
|
||||
void rtw_ssmps_leave(_adapter *adapter, struct sta_info *sta);
|
||||
#endif /* __RTL871X_PWRCTRL_H_ */
|
||||
|
Reference in New Issue
Block a user