hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
/******************************************************************************
 *
 * Copyright(c) 2022 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
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 *****************************************************************************/
#ifndef _PHL_CMD_PS_H_
#define _PHL_CMD_PS_H_
#ifdef CONFIG_POWER_SAVE
enum ps_mdl_op {
   PS_MDL_OP_NONE = 0,
   PS_MDL_OP_CANCEL_PWR_REQ,
   PS_MDL_OP_CUR_PWR_LVL,
   PS_MDL_OP_CUR_PS_MODE,
   PS_MDL_OP_CUR_ADV_CFG,
   PS_MDL_OP_BASIC_INFO,
   PS_MDL_OP_BTC_PWR_REQ
};
 
enum ps_mdl_dbg_op {
   FORCE_LPS_ENTER = 0,
   FORCE_LPS_LEAVE,
   FORCE_IPS_ENTER,
   FORCE_IPS_LEAVE,
   SET_LPS_MODE,
   SET_IPS_MODE,
   SET_LPS_CAP
};
 
struct bcn_tracking_info {
   struct rtw_bcn_tracking_cfg cur_tracking;
   struct rtw_bcn_tracking_cfg cand_tracking; /* candidate setting for next config */
};
 
struct ps_mdl_dbg_info {
   enum ps_mdl_dbg_op op;
   u8 val;
};
 
#define MAX_CMD_PS_RSON_LENGTH 30
struct phl_cmd_ps_basic_info {
   u8 ps_mode;
   u8 cur_pwr_lvl;
   bool rej_pwr_req;
   bool btc_req_pwr;
   enum phl_ps_rt_rson rt_stop_rson;
   bool ap_active;
   bool gc_active;
   struct rtw_phl_stainfo_t *sta;
   char enter_rson[MAX_CMD_PS_RSON_LENGTH];
   char leave_rson[MAX_CMD_PS_RSON_LENGTH];
   u8 recy_cnt;
   u32 last_tx_ping_time;
   u32 last_tx_dhcp_time;
   struct bcn_tracking_info bcn_tracking_i;
};
 
enum rtw_phl_status phl_register_ps_module(struct phl_info_t *phl_info);
u8 phl_ps_get_cur_pwr_lvl(struct phl_info_t *phl_info);
u8 phl_ps_get_cur_ps_mode(struct phl_info_t *phl);
struct rtw_phl_lps_adv_cfg phl_ps_get_cur_adv_cfg(struct phl_info_t *phl);
bool phl_ps_is_datapath_allowed(struct phl_info_t *phl_info);
void phl_ps_tx_pkt_ntfy(struct phl_info_t *phl_info);
void rtw_phl_ps_set_rt_cap(void *phl, u8 band_idx, bool ps_allow, enum phl_ps_rt_rson rt_rson);
#endif
#endif /* _PHL_CMD_PS_H_ */