18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* Copyright(c) 2009-2013 Realtek Corporation.*/ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci#ifndef __RTL92C__FW__H__ 58c2ecf20Sopenharmony_ci#define __RTL92C__FW__H__ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci#define FW_8192C_SIZE 0x8000 88c2ecf20Sopenharmony_ci#define FW_8192C_START_ADDRESS 0x1000 98c2ecf20Sopenharmony_ci#define FW_8192C_END_ADDRESS 0x5FFF 108c2ecf20Sopenharmony_ci#define FW_8192C_PAGE_SIZE 4096 118c2ecf20Sopenharmony_ci#define FW_8192C_POLLING_DELAY 5 128c2ecf20Sopenharmony_ci#define FW_8192C_POLLING_TIMEOUT_COUNT 3000 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_ci#define IS_FW_HEADER_EXIST(_pfwhdr) \ 158c2ecf20Sopenharmony_ci ((le16_to_cpu(_pfwhdr->signature) & 0xFFFF) == 0x88E1) 168c2ecf20Sopenharmony_ci#define USE_OLD_WOWLAN_DEBUG_FW 0 178c2ecf20Sopenharmony_ci 188c2ecf20Sopenharmony_ci#define H2C_88E_RSVDPAGE_LOC_LEN 5 198c2ecf20Sopenharmony_ci#define H2C_88E_PWEMODE_LENGTH 5 208c2ecf20Sopenharmony_ci#define H2C_88E_JOINBSSRPT_LENGTH 1 218c2ecf20Sopenharmony_ci#define H2C_88E_AP_OFFLOAD_LENGTH 3 228c2ecf20Sopenharmony_ci#define H2C_88E_WOWLAN_LENGTH 3 238c2ecf20Sopenharmony_ci#define H2C_88E_KEEP_ALIVE_CTRL_LENGTH 3 248c2ecf20Sopenharmony_ci#if (USE_OLD_WOWLAN_DEBUG_FW == 0) 258c2ecf20Sopenharmony_ci#define H2C_88E_REMOTE_WAKE_CTRL_LEN 1 268c2ecf20Sopenharmony_ci#else 278c2ecf20Sopenharmony_ci#define H2C_88E_REMOTE_WAKE_CTRL_LEN 3 288c2ecf20Sopenharmony_ci#endif 298c2ecf20Sopenharmony_ci#define H2C_88E_AOAC_GLOBAL_INFO_LEN 2 308c2ecf20Sopenharmony_ci#define H2C_88E_AOAC_RSVDPAGE_LOC_LEN 7 318c2ecf20Sopenharmony_ci 328c2ecf20Sopenharmony_ci/* Fw PS state for RPWM. 338c2ecf20Sopenharmony_ci*BIT[2:0] = HW state 348c2ecf20Sopenharmony_ci*BIT[3] = Protocol PS state, 358c2ecf20Sopenharmony_ci*1: register active state , 0: register sleep state 368c2ecf20Sopenharmony_ci*BIT[4] = sub-state 378c2ecf20Sopenharmony_ci*/ 388c2ecf20Sopenharmony_ci#define FW_PS_GO_ON BIT(0) 398c2ecf20Sopenharmony_ci#define FW_PS_TX_NULL BIT(1) 408c2ecf20Sopenharmony_ci#define FW_PS_RF_ON BIT(2) 418c2ecf20Sopenharmony_ci#define FW_PS_REGISTER_ACTIVE BIT(3) 428c2ecf20Sopenharmony_ci 438c2ecf20Sopenharmony_ci#define FW_PS_DPS BIT(0) 448c2ecf20Sopenharmony_ci#define FW_PS_LCLK (FW_PS_DPS) 458c2ecf20Sopenharmony_ci#define FW_PS_RF_OFF BIT(1) 468c2ecf20Sopenharmony_ci#define FW_PS_ALL_ON BIT(2) 478c2ecf20Sopenharmony_ci#define FW_PS_ST_ACTIVE BIT(3) 488c2ecf20Sopenharmony_ci#define FW_PS_ISR_ENABLE BIT(4) 498c2ecf20Sopenharmony_ci#define FW_PS_IMR_ENABLE BIT(5) 508c2ecf20Sopenharmony_ci 518c2ecf20Sopenharmony_ci 528c2ecf20Sopenharmony_ci#define FW_PS_ACK BIT(6) 538c2ecf20Sopenharmony_ci#define FW_PS_TOGGLE BIT(7) 548c2ecf20Sopenharmony_ci 558c2ecf20Sopenharmony_ci /* 88E RPWM value*/ 568c2ecf20Sopenharmony_ci /* BIT[0] = 1: 32k, 0: 40M*/ 578c2ecf20Sopenharmony_ci#define FW_PS_CLOCK_OFF BIT(0) /* 32k*/ 588c2ecf20Sopenharmony_ci#define FW_PS_CLOCK_ON 0 /*40M*/ 598c2ecf20Sopenharmony_ci 608c2ecf20Sopenharmony_ci#define FW_PS_STATE_MASK (0x0F) 618c2ecf20Sopenharmony_ci#define FW_PS_STATE_HW_MASK (0x07) 628c2ecf20Sopenharmony_ci/*ISR_ENABLE, IMR_ENABLE, and PS mode should be inherited.*/ 638c2ecf20Sopenharmony_ci#define FW_PS_STATE_INT_MASK (0x3F) 648c2ecf20Sopenharmony_ci 658c2ecf20Sopenharmony_ci#define FW_PS_STATE(x) (FW_PS_STATE_MASK & (x)) 668c2ecf20Sopenharmony_ci#define FW_PS_STATE_HW(x) (FW_PS_STATE_HW_MASK & (x)) 678c2ecf20Sopenharmony_ci#define FW_PS_STATE_INT(x) (FW_PS_STATE_INT_MASK & (x)) 688c2ecf20Sopenharmony_ci#define FW_PS_ISR_VAL(x) ((x) & 0x70) 698c2ecf20Sopenharmony_ci#define FW_PS_IMR_MASK(x) ((x) & 0xDF) 708c2ecf20Sopenharmony_ci#define FW_PS_KEEP_IMR(x) ((x) & 0x20) 718c2ecf20Sopenharmony_ci 728c2ecf20Sopenharmony_ci#define FW_PS_STATE_S0 (FW_PS_DPS) 738c2ecf20Sopenharmony_ci#define FW_PS_STATE_S1 (FW_PS_LCLK) 748c2ecf20Sopenharmony_ci#define FW_PS_STATE_S2 (FW_PS_RF_OFF) 758c2ecf20Sopenharmony_ci#define FW_PS_STATE_S3 (FW_PS_ALL_ON) 768c2ecf20Sopenharmony_ci#define FW_PS_STATE_S4 ((FW_PS_ST_ACTIVE) | (FW_PS_ALL_ON)) 778c2ecf20Sopenharmony_ci/* ((FW_PS_RF_ON) | (FW_PS_REGISTER_ACTIVE))*/ 788c2ecf20Sopenharmony_ci#define FW_PS_STATE_ALL_ON_88E (FW_PS_CLOCK_ON) 798c2ecf20Sopenharmony_ci/* (FW_PS_RF_ON)*/ 808c2ecf20Sopenharmony_ci#define FW_PS_STATE_RF_ON_88E (FW_PS_CLOCK_ON) 818c2ecf20Sopenharmony_ci/* 0x0*/ 828c2ecf20Sopenharmony_ci#define FW_PS_STATE_RF_OFF_88E (FW_PS_CLOCK_ON) 838c2ecf20Sopenharmony_ci/* (FW_PS_STATE_RF_OFF)*/ 848c2ecf20Sopenharmony_ci#define FW_PS_STATE_RF_OFF_LOW_PWR_88E (FW_PS_CLOCK_OFF) 858c2ecf20Sopenharmony_ci 868c2ecf20Sopenharmony_ci#define FW_PS_STATE_ALL_ON_92C (FW_PS_STATE_S4) 878c2ecf20Sopenharmony_ci#define FW_PS_STATE_RF_ON_92C (FW_PS_STATE_S3) 888c2ecf20Sopenharmony_ci#define FW_PS_STATE_RF_OFF_92C (FW_PS_STATE_S2) 898c2ecf20Sopenharmony_ci#define FW_PS_STATE_RF_OFF_LOW_PWR_92C (FW_PS_STATE_S1) 908c2ecf20Sopenharmony_ci 918c2ecf20Sopenharmony_ci/* For 88E H2C PwrMode Cmd ID 5.*/ 928c2ecf20Sopenharmony_ci#define FW_PWR_STATE_ACTIVE ((FW_PS_RF_ON) | (FW_PS_REGISTER_ACTIVE)) 938c2ecf20Sopenharmony_ci#define FW_PWR_STATE_RF_OFF 0 948c2ecf20Sopenharmony_ci 958c2ecf20Sopenharmony_ci#define FW_PS_IS_ACK(x) ((x) & FW_PS_ACK) 968c2ecf20Sopenharmony_ci#define FW_PS_IS_CLK_ON(x) ((x) & (FW_PS_RF_OFF | FW_PS_ALL_ON)) 978c2ecf20Sopenharmony_ci#define FW_PS_IS_RF_ON(x) ((x) & (FW_PS_ALL_ON)) 988c2ecf20Sopenharmony_ci#define FW_PS_IS_ACTIVE(x) ((x) & (FW_PS_ST_ACTIVE)) 998c2ecf20Sopenharmony_ci#define FW_PS_IS_CPWM_INT(x) ((x) & 0x40) 1008c2ecf20Sopenharmony_ci 1018c2ecf20Sopenharmony_ci#define FW_CLR_PS_STATE(x) ((x) = ((x) & (0xF0))) 1028c2ecf20Sopenharmony_ci 1038c2ecf20Sopenharmony_ci#define IS_IN_LOW_POWER_STATE_88E(fwpsstate) \ 1048c2ecf20Sopenharmony_ci (FW_PS_STATE(fwpsstate) == FW_PS_CLOCK_OFF) 1058c2ecf20Sopenharmony_ci 1068c2ecf20Sopenharmony_ci#define FW_PWR_STATE_ACTIVE ((FW_PS_RF_ON) | (FW_PS_REGISTER_ACTIVE)) 1078c2ecf20Sopenharmony_ci#define FW_PWR_STATE_RF_OFF 0 1088c2ecf20Sopenharmony_ci 1098c2ecf20Sopenharmony_cienum rtl8188e_h2c_cmd { 1108c2ecf20Sopenharmony_ci H2C_88E_RSVDPAGE = 0, 1118c2ecf20Sopenharmony_ci H2C_88E_JOINBSSRPT = 1, 1128c2ecf20Sopenharmony_ci H2C_88E_SCAN = 2, 1138c2ecf20Sopenharmony_ci H2C_88E_KEEP_ALIVE_CTRL = 3, 1148c2ecf20Sopenharmony_ci H2C_88E_DISCONNECT_DECISION = 4, 1158c2ecf20Sopenharmony_ci#if (USE_OLD_WOWLAN_DEBUG_FW == 1) 1168c2ecf20Sopenharmony_ci H2C_88E_WO_WLAN = 5, 1178c2ecf20Sopenharmony_ci#endif 1188c2ecf20Sopenharmony_ci H2C_88E_INIT_OFFLOAD = 6, 1198c2ecf20Sopenharmony_ci#if (USE_OLD_WOWLAN_DEBUG_FW == 1) 1208c2ecf20Sopenharmony_ci H2C_88E_REMOTE_WAKE_CTRL = 7, 1218c2ecf20Sopenharmony_ci#endif 1228c2ecf20Sopenharmony_ci H2C_88E_AP_OFFLOAD = 8, 1238c2ecf20Sopenharmony_ci H2C_88E_BCN_RSVDPAGE = 9, 1248c2ecf20Sopenharmony_ci H2C_88E_PROBERSP_RSVDPAGE = 10, 1258c2ecf20Sopenharmony_ci 1268c2ecf20Sopenharmony_ci H2C_88E_SETPWRMODE = 0x20, 1278c2ecf20Sopenharmony_ci H2C_88E_PS_TUNING_PARA = 0x21, 1288c2ecf20Sopenharmony_ci H2C_88E_PS_TUNING_PARA2 = 0x22, 1298c2ecf20Sopenharmony_ci H2C_88E_PS_LPS_PARA = 0x23, 1308c2ecf20Sopenharmony_ci H2C_88E_P2P_PS_OFFLOAD = 024, 1318c2ecf20Sopenharmony_ci 1328c2ecf20Sopenharmony_ci#if (USE_OLD_WOWLAN_DEBUG_FW == 0) 1338c2ecf20Sopenharmony_ci H2C_88E_WO_WLAN = 0x80, 1348c2ecf20Sopenharmony_ci H2C_88E_REMOTE_WAKE_CTRL = 0x81, 1358c2ecf20Sopenharmony_ci H2C_88E_AOAC_GLOBAL_INFO = 0x82, 1368c2ecf20Sopenharmony_ci H2C_88E_AOAC_RSVDPAGE = 0x83, 1378c2ecf20Sopenharmony_ci#endif 1388c2ecf20Sopenharmony_ci /*Not defined in new 88E H2C CMD Format*/ 1398c2ecf20Sopenharmony_ci H2C_88E_RA_MASK, 1408c2ecf20Sopenharmony_ci H2C_88E_SELECTIVE_SUSPEND_ROF_CMD, 1418c2ecf20Sopenharmony_ci H2C_88E_P2P_PS_MODE, 1428c2ecf20Sopenharmony_ci H2C_88E_PSD_RESULT, 1438c2ecf20Sopenharmony_ci /*Not defined CTW CMD for P2P yet*/ 1448c2ecf20Sopenharmony_ci H2C_88E_P2P_PS_CTW_CMD, 1458c2ecf20Sopenharmony_ci MAX_88E_H2CCMD 1468c2ecf20Sopenharmony_ci}; 1478c2ecf20Sopenharmony_ci 1488c2ecf20Sopenharmony_ci#define pagenum_128(_len) (u32)(((_len)>>7) + ((_len)&0x7F ? 1 : 0)) 1498c2ecf20Sopenharmony_ci 1508c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_FUNC_ENABLE(__cmd, __value) \ 1518c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE(__cmd, 0, 1, __value) 1528c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_PATTERN_MATCH_ENABLE(__cmd, __value) \ 1538c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE(__cmd, 1, 1, __value) 1548c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_MAGIC_PKT_ENABLE(__cmd, __value) \ 1558c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE(__cmd, 2, 1, __value) 1568c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_UNICAST_PKT_ENABLE(__cmd, __value) \ 1578c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE(__cmd, 3, 1, __value) 1588c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_ALL_PKT_DROP(__cmd, __value) \ 1598c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE(__cmd, 4, 1, __value) 1608c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_GPIO_ACTIVE(__cmd, __value) \ 1618c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE(__cmd, 5, 1, __value) 1628c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_REKEY_WAKE_UP(__cmd, __value) \ 1638c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE(__cmd, 6, 1, __value) 1648c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_DISCONNECT_WAKE_UP(__cmd, __value) \ 1658c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE(__cmd, 7, 1, __value) 1668c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_GPIONUM(__cmd, __value) \ 1678c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE((__cmd)+1, 0, 8, __value) 1688c2ecf20Sopenharmony_ci#define SET_88E_H2CCMD_WOWLAN_GPIO_DURATION(__cmd, __value) \ 1698c2ecf20Sopenharmony_ci SET_BITS_TO_LE_1BYTE((__cmd)+2, 0, 8, __value) 1708c2ecf20Sopenharmony_ci 1718c2ecf20Sopenharmony_ci 1728c2ecf20Sopenharmony_cistatic inline void set_h2ccmd_pwrmode_parm_mode(u8 *__ph2ccmd, u8 __val) 1738c2ecf20Sopenharmony_ci{ 1748c2ecf20Sopenharmony_ci *(u8 *)(__ph2ccmd) = __val; 1758c2ecf20Sopenharmony_ci} 1768c2ecf20Sopenharmony_ci 1778c2ecf20Sopenharmony_cistatic inline void set_h2ccmd_pwrmode_parm_rlbm(u8 *__cmd, u8 __value) 1788c2ecf20Sopenharmony_ci{ 1798c2ecf20Sopenharmony_ci u8p_replace_bits(__cmd + 1, __value, GENMASK(3, 0)); 1808c2ecf20Sopenharmony_ci} 1818c2ecf20Sopenharmony_ci 1828c2ecf20Sopenharmony_cistatic inline void set_h2ccmd_pwrmode_parm_smart_ps(u8 *__cmd, u8 __value) 1838c2ecf20Sopenharmony_ci{ 1848c2ecf20Sopenharmony_ci u8p_replace_bits(__cmd + 1, __value, GENMASK(7, 4)); 1858c2ecf20Sopenharmony_ci} 1868c2ecf20Sopenharmony_ci 1878c2ecf20Sopenharmony_cistatic inline void set_h2ccmd_pwrmode_parm_awake_interval(u8 *__cmd, u8 __value) 1888c2ecf20Sopenharmony_ci{ 1898c2ecf20Sopenharmony_ci *(u8 *)(__cmd + 2) = __value; 1908c2ecf20Sopenharmony_ci} 1918c2ecf20Sopenharmony_ci 1928c2ecf20Sopenharmony_cistatic inline void set_h2ccmd_pwrmode_parm_all_queue_uapsd(u8 *__cmd, 1938c2ecf20Sopenharmony_ci u8 __value) 1948c2ecf20Sopenharmony_ci{ 1958c2ecf20Sopenharmony_ci *(u8 *)(__cmd + 3) = __value; 1968c2ecf20Sopenharmony_ci} 1978c2ecf20Sopenharmony_ci 1988c2ecf20Sopenharmony_cistatic inline void set_h2ccmd_pwrmode_parm_pwr_state(u8 *__cmd, u8 __value) 1998c2ecf20Sopenharmony_ci{ 2008c2ecf20Sopenharmony_ci *(u8 *)(__cmd + 4) = __value; 2018c2ecf20Sopenharmony_ci} 2028c2ecf20Sopenharmony_ci 2038c2ecf20Sopenharmony_ci#define SET_H2CCMD_JOINBSSRPT_PARM_OPMODE(__ph2ccmd, __val) \ 2048c2ecf20Sopenharmony_ci *(u8 *)(__ph2ccmd) = __val; 2058c2ecf20Sopenharmony_ci#define SET_H2CCMD_RSVDPAGE_LOC_PROBE_RSP(__ph2ccmd, __val) \ 2068c2ecf20Sopenharmony_ci *(u8 *)(__ph2ccmd) = __val; 2078c2ecf20Sopenharmony_ci#define SET_H2CCMD_RSVDPAGE_LOC_PSPOLL(__ph2ccmd, __val) \ 2088c2ecf20Sopenharmony_ci *(u8 *)(__ph2ccmd + 1) = __val; 2098c2ecf20Sopenharmony_ci#define SET_H2CCMD_RSVDPAGE_LOC_NULL_DATA(__ph2ccmd, __val) \ 2108c2ecf20Sopenharmony_ci *(u8 *)(__ph2ccmd + 2) = __val; 2118c2ecf20Sopenharmony_ci 2128c2ecf20Sopenharmony_ci/* AP_OFFLOAD */ 2138c2ecf20Sopenharmony_ci#define SET_H2CCMD_AP_OFFLOAD_ON(__cmd, __value) \ 2148c2ecf20Sopenharmony_ci *(u8 *)__cmd = __value; 2158c2ecf20Sopenharmony_ci#define SET_H2CCMD_AP_OFFLOAD_HIDDEN(__cmd, __value) \ 2168c2ecf20Sopenharmony_ci *(u8 *)(__cmd + 1) = __value; 2178c2ecf20Sopenharmony_ci#define SET_H2CCMD_AP_OFFLOAD_DENYANY(__cmd, __value) \ 2188c2ecf20Sopenharmony_ci *(u8 *)(__cmd + 2) = __value; 2198c2ecf20Sopenharmony_ci#define SET_H2CCMD_AP_OFFLOAD_WAKEUP_EVT_RPT(__cmd, __value) \ 2208c2ecf20Sopenharmony_ci *(u8 *)(__cmd + 3) = __value; 2218c2ecf20Sopenharmony_ci 2228c2ecf20Sopenharmony_ciint rtl88e_download_fw(struct ieee80211_hw *hw, 2238c2ecf20Sopenharmony_ci bool buse_wake_on_wlan_fw); 2248c2ecf20Sopenharmony_civoid rtl88e_fill_h2c_cmd(struct ieee80211_hw *hw, u8 element_id, 2258c2ecf20Sopenharmony_ci u32 cmd_len, u8 *cmdbuffer); 2268c2ecf20Sopenharmony_civoid rtl88e_firmware_selfreset(struct ieee80211_hw *hw); 2278c2ecf20Sopenharmony_civoid rtl88e_set_fw_pwrmode_cmd(struct ieee80211_hw *hw, u8 mode); 2288c2ecf20Sopenharmony_civoid rtl88e_set_fw_joinbss_report_cmd(struct ieee80211_hw *hw, u8 mstatus); 2298c2ecf20Sopenharmony_civoid rtl88e_set_fw_ap_off_load_cmd(struct ieee80211_hw *hw, 2308c2ecf20Sopenharmony_ci u8 ap_offload_enable); 2318c2ecf20Sopenharmony_civoid rtl88e_set_fw_rsvdpagepkt(struct ieee80211_hw *hw, bool b_dl_finished); 2328c2ecf20Sopenharmony_civoid rtl88e_set_p2p_ps_offload_cmd(struct ieee80211_hw *hw, u8 p2p_ps_state); 2338c2ecf20Sopenharmony_ci#endif 234