Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Larry Finger | a8d7606 | 2012-01-07 20:46:42 -0600 | [diff] [blame] | 3 | * Copyright(c) 2009-2012 Realtek Corporation. |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of version 2 of the GNU General Public License as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in the |
| 19 | * file called LICENSE. |
| 20 | * |
| 21 | * Contact Information: |
| 22 | * wlanfae <wlanfae@realtek.com> |
| 23 | * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park, |
| 24 | * Hsinchu 300, Taiwan. |
| 25 | * |
| 26 | * Larry Finger <Larry.Finger@lwfinger.net> |
| 27 | * |
| 28 | *****************************************************************************/ |
| 29 | |
| 30 | #ifndef __RTL_WIFI_H__ |
| 31 | #define __RTL_WIFI_H__ |
| 32 | |
Larry Finger | d273bb2 | 2012-01-27 13:59:25 -0600 | [diff] [blame] | 33 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 34 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 35 | #include <linux/sched.h> |
| 36 | #include <linux/firmware.h> |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 37 | #include <linux/etherdevice.h> |
David S. Miller | b08cd66 | 2011-02-24 22:50:30 -0800 | [diff] [blame] | 38 | #include <linux/vmalloc.h> |
Larry Finger | 62e6397 | 2011-02-11 14:27:46 -0600 | [diff] [blame] | 39 | #include <linux/usb.h> |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 40 | #include <net/mac80211.h> |
Larry Finger | b0302ab | 2012-01-30 09:54:49 -0600 | [diff] [blame] | 41 | #include <linux/completion.h> |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 42 | #include "debug.h" |
| 43 | |
| 44 | #define RF_CHANGE_BY_INIT 0 |
| 45 | #define RF_CHANGE_BY_IPS BIT(28) |
| 46 | #define RF_CHANGE_BY_PS BIT(29) |
| 47 | #define RF_CHANGE_BY_HW BIT(30) |
| 48 | #define RF_CHANGE_BY_SW BIT(31) |
| 49 | |
| 50 | #define IQK_ADDA_REG_NUM 16 |
| 51 | #define IQK_MAC_REG_NUM 4 |
| 52 | |
| 53 | #define MAX_KEY_LEN 61 |
| 54 | #define KEY_BUF_SIZE 5 |
| 55 | |
| 56 | /* QoS related. */ |
| 57 | /*aci: 0x00 Best Effort*/ |
| 58 | /*aci: 0x01 Background*/ |
| 59 | /*aci: 0x10 Video*/ |
| 60 | /*aci: 0x11 Voice*/ |
| 61 | /*Max: define total number.*/ |
| 62 | #define AC0_BE 0 |
| 63 | #define AC1_BK 1 |
| 64 | #define AC2_VI 2 |
| 65 | #define AC3_VO 3 |
| 66 | #define AC_MAX 4 |
| 67 | #define QOS_QUEUE_NUM 4 |
| 68 | #define RTL_MAC80211_NUM_QUEUE 5 |
Larry Finger | ff6ff96 | 2011-11-17 12:14:43 -0600 | [diff] [blame] | 69 | #define REALTEK_USB_VENQT_MAX_BUF_SIZE 254 |
Larry Finger | 30899cc | 2012-03-19 15:44:31 -0500 | [diff] [blame] | 70 | #define RTL_USB_MAX_RX_COUNT 100 |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 71 | #define QBSS_LOAD_SIZE 5 |
| 72 | #define MAX_WMMELE_LENGTH 64 |
| 73 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 74 | #define TOTAL_CAM_ENTRY 32 |
| 75 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 76 | /*slot time for 11g. */ |
| 77 | #define RTL_SLOT_TIME_9 9 |
| 78 | #define RTL_SLOT_TIME_20 20 |
| 79 | |
| 80 | /*related with tcp/ip. */ |
| 81 | /*if_ehther.h*/ |
| 82 | #define ETH_P_PAE 0x888E /*Port Access Entity (IEEE 802.1X) */ |
| 83 | #define ETH_P_IP 0x0800 /*Internet Protocol packet */ |
| 84 | #define ETH_P_ARP 0x0806 /*Address Resolution packet */ |
| 85 | #define SNAP_SIZE 6 |
| 86 | #define PROTOC_TYPE_SIZE 2 |
| 87 | |
| 88 | /*related with 802.11 frame*/ |
| 89 | #define MAC80211_3ADDR_LEN 24 |
| 90 | #define MAC80211_4ADDR_LEN 30 |
| 91 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 92 | #define CHANNEL_MAX_NUMBER (14 + 24 + 21) /* 14 is the max channel no */ |
| 93 | #define CHANNEL_GROUP_MAX (3 + 9) /* ch1~3, 4~9, 10~14 = three groups */ |
| 94 | #define MAX_PG_GROUP 13 |
| 95 | #define CHANNEL_GROUP_MAX_2G 3 |
| 96 | #define CHANNEL_GROUP_IDX_5GL 3 |
| 97 | #define CHANNEL_GROUP_IDX_5GM 6 |
| 98 | #define CHANNEL_GROUP_IDX_5GH 9 |
| 99 | #define CHANNEL_GROUP_MAX_5G 9 |
| 100 | #define CHANNEL_MAX_NUMBER_2G 14 |
| 101 | #define AVG_THERMAL_NUM 8 |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 102 | #define MAX_TID_COUNT 9 |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 103 | |
| 104 | /* for early mode */ |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 105 | #define FCS_LEN 4 |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 106 | #define EM_HDR_LEN 8 |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 107 | enum intf_type { |
| 108 | INTF_PCI = 0, |
| 109 | INTF_USB = 1, |
| 110 | }; |
| 111 | |
| 112 | enum radio_path { |
| 113 | RF90_PATH_A = 0, |
| 114 | RF90_PATH_B = 1, |
| 115 | RF90_PATH_C = 2, |
| 116 | RF90_PATH_D = 3, |
| 117 | }; |
| 118 | |
| 119 | enum rt_eeprom_type { |
| 120 | EEPROM_93C46, |
| 121 | EEPROM_93C56, |
| 122 | EEPROM_BOOT_EFUSE, |
| 123 | }; |
| 124 | |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 125 | enum ttl_status { |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 126 | RTL_STATUS_INTERFACE_START = 0, |
| 127 | }; |
| 128 | |
| 129 | enum hardware_type { |
| 130 | HARDWARE_TYPE_RTL8192E, |
| 131 | HARDWARE_TYPE_RTL8192U, |
| 132 | HARDWARE_TYPE_RTL8192SE, |
| 133 | HARDWARE_TYPE_RTL8192SU, |
| 134 | HARDWARE_TYPE_RTL8192CE, |
| 135 | HARDWARE_TYPE_RTL8192CU, |
| 136 | HARDWARE_TYPE_RTL8192DE, |
| 137 | HARDWARE_TYPE_RTL8192DU, |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 138 | HARDWARE_TYPE_RTL8723AE, |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 139 | HARDWARE_TYPE_RTL8723U, |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 140 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 141 | /* keep it last */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 142 | HARDWARE_TYPE_NUM |
| 143 | }; |
| 144 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 145 | #define IS_HARDWARE_TYPE_8192SU(rtlhal) \ |
| 146 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SU) |
| 147 | #define IS_HARDWARE_TYPE_8192SE(rtlhal) \ |
| 148 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SE) |
Larry Finger | 62e6397 | 2011-02-11 14:27:46 -0600 | [diff] [blame] | 149 | #define IS_HARDWARE_TYPE_8192CE(rtlhal) \ |
| 150 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8192CE) |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 151 | #define IS_HARDWARE_TYPE_8192CU(rtlhal) \ |
| 152 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8192CU) |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 153 | #define IS_HARDWARE_TYPE_8192DE(rtlhal) \ |
| 154 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8192DE) |
| 155 | #define IS_HARDWARE_TYPE_8192DU(rtlhal) \ |
| 156 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8192DU) |
| 157 | #define IS_HARDWARE_TYPE_8723E(rtlhal) \ |
| 158 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8723E) |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 159 | #define IS_HARDWARE_TYPE_8723U(rtlhal) \ |
| 160 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8723U) |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 161 | #define IS_HARDWARE_TYPE_8192S(rtlhal) \ |
| 162 | (IS_HARDWARE_TYPE_8192SE(rtlhal) || IS_HARDWARE_TYPE_8192SU(rtlhal)) |
| 163 | #define IS_HARDWARE_TYPE_8192C(rtlhal) \ |
| 164 | (IS_HARDWARE_TYPE_8192CE(rtlhal) || IS_HARDWARE_TYPE_8192CU(rtlhal)) |
| 165 | #define IS_HARDWARE_TYPE_8192D(rtlhal) \ |
| 166 | (IS_HARDWARE_TYPE_8192DE(rtlhal) || IS_HARDWARE_TYPE_8192DU(rtlhal)) |
| 167 | #define IS_HARDWARE_TYPE_8723(rtlhal) \ |
| 168 | (IS_HARDWARE_TYPE_8723E(rtlhal) || IS_HARDWARE_TYPE_8723U(rtlhal)) |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 169 | #define IS_HARDWARE_TYPE_8723U(rtlhal) \ |
| 170 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8723U) |
Larry Finger | 62e6397 | 2011-02-11 14:27:46 -0600 | [diff] [blame] | 171 | |
Larry Finger | da3ba88 | 2011-09-19 14:34:10 -0500 | [diff] [blame] | 172 | #define RX_HAL_IS_CCK_RATE(_pdesc)\ |
| 173 | (_pdesc->rxmcs == DESC92_RATE1M || \ |
| 174 | _pdesc->rxmcs == DESC92_RATE2M || \ |
| 175 | _pdesc->rxmcs == DESC92_RATE5_5M || \ |
| 176 | _pdesc->rxmcs == DESC92_RATE11M) |
| 177 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 178 | enum scan_operation_backup_opt { |
| 179 | SCAN_OPT_BACKUP = 0, |
| 180 | SCAN_OPT_RESTORE, |
| 181 | SCAN_OPT_MAX |
| 182 | }; |
| 183 | |
| 184 | /*RF state.*/ |
| 185 | enum rf_pwrstate { |
| 186 | ERFON, |
| 187 | ERFSLEEP, |
| 188 | ERFOFF |
| 189 | }; |
| 190 | |
| 191 | struct bb_reg_def { |
| 192 | u32 rfintfs; |
| 193 | u32 rfintfi; |
| 194 | u32 rfintfo; |
| 195 | u32 rfintfe; |
| 196 | u32 rf3wire_offset; |
| 197 | u32 rflssi_select; |
| 198 | u32 rftxgain_stage; |
| 199 | u32 rfhssi_para1; |
| 200 | u32 rfhssi_para2; |
| 201 | u32 rfswitch_control; |
| 202 | u32 rfagc_control1; |
| 203 | u32 rfagc_control2; |
| 204 | u32 rfrxiq_imbalance; |
| 205 | u32 rfrx_afe; |
| 206 | u32 rftxiq_imbalance; |
| 207 | u32 rftx_afe; |
| 208 | u32 rflssi_readback; |
| 209 | u32 rflssi_readbackpi; |
| 210 | }; |
| 211 | |
| 212 | enum io_type { |
| 213 | IO_CMD_PAUSE_DM_BY_SCAN = 0, |
| 214 | IO_CMD_RESUME_DM_BY_SCAN = 1, |
| 215 | }; |
| 216 | |
| 217 | enum hw_variables { |
| 218 | HW_VAR_ETHER_ADDR, |
| 219 | HW_VAR_MULTICAST_REG, |
| 220 | HW_VAR_BASIC_RATE, |
| 221 | HW_VAR_BSSID, |
| 222 | HW_VAR_MEDIA_STATUS, |
| 223 | HW_VAR_SECURITY_CONF, |
| 224 | HW_VAR_BEACON_INTERVAL, |
| 225 | HW_VAR_ATIM_WINDOW, |
| 226 | HW_VAR_LISTEN_INTERVAL, |
| 227 | HW_VAR_CS_COUNTER, |
| 228 | HW_VAR_DEFAULTKEY0, |
| 229 | HW_VAR_DEFAULTKEY1, |
| 230 | HW_VAR_DEFAULTKEY2, |
| 231 | HW_VAR_DEFAULTKEY3, |
| 232 | HW_VAR_SIFS, |
| 233 | HW_VAR_DIFS, |
| 234 | HW_VAR_EIFS, |
| 235 | HW_VAR_SLOT_TIME, |
| 236 | HW_VAR_ACK_PREAMBLE, |
| 237 | HW_VAR_CW_CONFIG, |
| 238 | HW_VAR_CW_VALUES, |
| 239 | HW_VAR_RATE_FALLBACK_CONTROL, |
| 240 | HW_VAR_CONTENTION_WINDOW, |
| 241 | HW_VAR_RETRY_COUNT, |
| 242 | HW_VAR_TR_SWITCH, |
| 243 | HW_VAR_COMMAND, |
| 244 | HW_VAR_WPA_CONFIG, |
| 245 | HW_VAR_AMPDU_MIN_SPACE, |
| 246 | HW_VAR_SHORTGI_DENSITY, |
| 247 | HW_VAR_AMPDU_FACTOR, |
| 248 | HW_VAR_MCS_RATE_AVAILABLE, |
| 249 | HW_VAR_AC_PARAM, |
| 250 | HW_VAR_ACM_CTRL, |
| 251 | HW_VAR_DIS_Req_Qsize, |
| 252 | HW_VAR_CCX_CHNL_LOAD, |
| 253 | HW_VAR_CCX_NOISE_HISTOGRAM, |
| 254 | HW_VAR_CCX_CLM_NHM, |
| 255 | HW_VAR_TxOPLimit, |
| 256 | HW_VAR_TURBO_MODE, |
| 257 | HW_VAR_RF_STATE, |
| 258 | HW_VAR_RF_OFF_BY_HW, |
| 259 | HW_VAR_BUS_SPEED, |
| 260 | HW_VAR_SET_DEV_POWER, |
| 261 | |
| 262 | HW_VAR_RCR, |
| 263 | HW_VAR_RATR_0, |
| 264 | HW_VAR_RRSR, |
| 265 | HW_VAR_CPU_RST, |
| 266 | HW_VAR_CECHK_BSSID, |
| 267 | HW_VAR_LBK_MODE, |
| 268 | HW_VAR_AES_11N_FIX, |
| 269 | HW_VAR_USB_RX_AGGR, |
| 270 | HW_VAR_USER_CONTROL_TURBO_MODE, |
| 271 | HW_VAR_RETRY_LIMIT, |
| 272 | HW_VAR_INIT_TX_RATE, |
| 273 | HW_VAR_TX_RATE_REG, |
| 274 | HW_VAR_EFUSE_USAGE, |
| 275 | HW_VAR_EFUSE_BYTES, |
| 276 | HW_VAR_AUTOLOAD_STATUS, |
| 277 | HW_VAR_RF_2R_DISABLE, |
| 278 | HW_VAR_SET_RPWM, |
| 279 | HW_VAR_H2C_FW_PWRMODE, |
| 280 | HW_VAR_H2C_FW_JOINBSSRPT, |
| 281 | HW_VAR_FW_PSMODE_STATUS, |
| 282 | HW_VAR_1X1_RECV_COMBINE, |
| 283 | HW_VAR_STOP_SEND_BEACON, |
| 284 | HW_VAR_TSF_TIMER, |
| 285 | HW_VAR_IO_CMD, |
| 286 | |
| 287 | HW_VAR_RF_RECOVERY, |
| 288 | HW_VAR_H2C_FW_UPDATE_GTK, |
| 289 | HW_VAR_WF_MASK, |
| 290 | HW_VAR_WF_CRC, |
| 291 | HW_VAR_WF_IS_MAC_ADDR, |
| 292 | HW_VAR_H2C_FW_OFFLOAD, |
| 293 | HW_VAR_RESET_WFCRC, |
| 294 | |
| 295 | HW_VAR_HANDLE_FW_C2H, |
| 296 | HW_VAR_DL_FW_RSVD_PAGE, |
| 297 | HW_VAR_AID, |
| 298 | HW_VAR_HW_SEQ_ENABLE, |
| 299 | HW_VAR_CORRECT_TSF, |
| 300 | HW_VAR_BCN_VALID, |
| 301 | HW_VAR_FWLPS_RF_ON, |
| 302 | HW_VAR_DUAL_TSF_RST, |
| 303 | HW_VAR_SWITCH_EPHY_WoWLAN, |
| 304 | HW_VAR_INT_MIGRATION, |
| 305 | HW_VAR_INT_AC, |
| 306 | HW_VAR_RF_TIMING, |
| 307 | |
| 308 | HW_VAR_MRC, |
| 309 | |
| 310 | HW_VAR_MGT_FILTER, |
| 311 | HW_VAR_CTRL_FILTER, |
| 312 | HW_VAR_DATA_FILTER, |
| 313 | }; |
| 314 | |
| 315 | enum _RT_MEDIA_STATUS { |
| 316 | RT_MEDIA_DISCONNECT = 0, |
| 317 | RT_MEDIA_CONNECT = 1 |
| 318 | }; |
| 319 | |
| 320 | enum rt_oem_id { |
| 321 | RT_CID_DEFAULT = 0, |
| 322 | RT_CID_8187_ALPHA0 = 1, |
| 323 | RT_CID_8187_SERCOMM_PS = 2, |
| 324 | RT_CID_8187_HW_LED = 3, |
| 325 | RT_CID_8187_NETGEAR = 4, |
| 326 | RT_CID_WHQL = 5, |
| 327 | RT_CID_819x_CAMEO = 6, |
| 328 | RT_CID_819x_RUNTOP = 7, |
| 329 | RT_CID_819x_Senao = 8, |
| 330 | RT_CID_TOSHIBA = 9, |
| 331 | RT_CID_819x_Netcore = 10, |
| 332 | RT_CID_Nettronix = 11, |
| 333 | RT_CID_DLINK = 12, |
| 334 | RT_CID_PRONET = 13, |
| 335 | RT_CID_COREGA = 14, |
| 336 | RT_CID_819x_ALPHA = 15, |
| 337 | RT_CID_819x_Sitecom = 16, |
| 338 | RT_CID_CCX = 17, |
| 339 | RT_CID_819x_Lenovo = 18, |
| 340 | RT_CID_819x_QMI = 19, |
| 341 | RT_CID_819x_Edimax_Belkin = 20, |
| 342 | RT_CID_819x_Sercomm_Belkin = 21, |
| 343 | RT_CID_819x_CAMEO1 = 22, |
| 344 | RT_CID_819x_MSI = 23, |
| 345 | RT_CID_819x_Acer = 24, |
| 346 | RT_CID_819x_HP = 27, |
| 347 | RT_CID_819x_CLEVO = 28, |
| 348 | RT_CID_819x_Arcadyan_Belkin = 29, |
| 349 | RT_CID_819x_SAMSUNG = 30, |
| 350 | RT_CID_819x_WNC_COREGA = 31, |
| 351 | RT_CID_819x_Foxcoon = 32, |
| 352 | RT_CID_819x_DELL = 33, |
| 353 | }; |
| 354 | |
| 355 | enum hw_descs { |
| 356 | HW_DESC_OWN, |
| 357 | HW_DESC_RXOWN, |
| 358 | HW_DESC_TX_NEXTDESC_ADDR, |
| 359 | HW_DESC_TXBUFF_ADDR, |
| 360 | HW_DESC_RXBUFF_ADDR, |
| 361 | HW_DESC_RXPKT_LEN, |
| 362 | HW_DESC_RXERO, |
| 363 | }; |
| 364 | |
| 365 | enum prime_sc { |
| 366 | PRIME_CHNL_OFFSET_DONT_CARE = 0, |
| 367 | PRIME_CHNL_OFFSET_LOWER = 1, |
| 368 | PRIME_CHNL_OFFSET_UPPER = 2, |
| 369 | }; |
| 370 | |
| 371 | enum rf_type { |
| 372 | RF_1T1R = 0, |
| 373 | RF_1T2R = 1, |
| 374 | RF_2T2R = 2, |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 375 | RF_2T2R_GREEN = 3, |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 376 | }; |
| 377 | |
| 378 | enum ht_channel_width { |
| 379 | HT_CHANNEL_WIDTH_20 = 0, |
| 380 | HT_CHANNEL_WIDTH_20_40 = 1, |
| 381 | }; |
| 382 | |
| 383 | /* Ref: 802.11i sepc D10.0 7.3.2.25.1 |
| 384 | Cipher Suites Encryption Algorithms */ |
| 385 | enum rt_enc_alg { |
| 386 | NO_ENCRYPTION = 0, |
| 387 | WEP40_ENCRYPTION = 1, |
| 388 | TKIP_ENCRYPTION = 2, |
| 389 | RSERVED_ENCRYPTION = 3, |
| 390 | AESCCMP_ENCRYPTION = 4, |
| 391 | WEP104_ENCRYPTION = 5, |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 392 | AESCMAC_ENCRYPTION = 6, /*IEEE802.11w */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 393 | }; |
| 394 | |
| 395 | enum rtl_hal_state { |
| 396 | _HAL_STATE_STOP = 0, |
| 397 | _HAL_STATE_START = 1, |
| 398 | }; |
| 399 | |
Larry Finger | 7ad0ce3 | 2011-08-22 16:50:14 -0500 | [diff] [blame] | 400 | enum rtl_desc92_rate { |
| 401 | DESC92_RATE1M = 0x00, |
| 402 | DESC92_RATE2M = 0x01, |
| 403 | DESC92_RATE5_5M = 0x02, |
| 404 | DESC92_RATE11M = 0x03, |
| 405 | |
| 406 | DESC92_RATE6M = 0x04, |
| 407 | DESC92_RATE9M = 0x05, |
| 408 | DESC92_RATE12M = 0x06, |
| 409 | DESC92_RATE18M = 0x07, |
| 410 | DESC92_RATE24M = 0x08, |
| 411 | DESC92_RATE36M = 0x09, |
| 412 | DESC92_RATE48M = 0x0a, |
| 413 | DESC92_RATE54M = 0x0b, |
| 414 | |
| 415 | DESC92_RATEMCS0 = 0x0c, |
| 416 | DESC92_RATEMCS1 = 0x0d, |
| 417 | DESC92_RATEMCS2 = 0x0e, |
| 418 | DESC92_RATEMCS3 = 0x0f, |
| 419 | DESC92_RATEMCS4 = 0x10, |
| 420 | DESC92_RATEMCS5 = 0x11, |
| 421 | DESC92_RATEMCS6 = 0x12, |
| 422 | DESC92_RATEMCS7 = 0x13, |
| 423 | DESC92_RATEMCS8 = 0x14, |
| 424 | DESC92_RATEMCS9 = 0x15, |
| 425 | DESC92_RATEMCS10 = 0x16, |
| 426 | DESC92_RATEMCS11 = 0x17, |
| 427 | DESC92_RATEMCS12 = 0x18, |
| 428 | DESC92_RATEMCS13 = 0x19, |
| 429 | DESC92_RATEMCS14 = 0x1a, |
| 430 | DESC92_RATEMCS15 = 0x1b, |
| 431 | DESC92_RATEMCS15_SG = 0x1c, |
| 432 | DESC92_RATEMCS32 = 0x20, |
| 433 | }; |
| 434 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 435 | enum rtl_var_map { |
| 436 | /*reg map */ |
| 437 | SYS_ISO_CTRL = 0, |
| 438 | SYS_FUNC_EN, |
| 439 | SYS_CLK, |
| 440 | MAC_RCR_AM, |
| 441 | MAC_RCR_AB, |
| 442 | MAC_RCR_ACRC32, |
| 443 | MAC_RCR_ACF, |
| 444 | MAC_RCR_AAP, |
| 445 | |
| 446 | /*efuse map */ |
| 447 | EFUSE_TEST, |
| 448 | EFUSE_CTRL, |
| 449 | EFUSE_CLK, |
| 450 | EFUSE_CLK_CTRL, |
| 451 | EFUSE_PWC_EV12V, |
| 452 | EFUSE_FEN_ELDR, |
| 453 | EFUSE_LOADER_CLK_EN, |
| 454 | EFUSE_ANA8M, |
| 455 | EFUSE_HWSET_MAX_SIZE, |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 456 | EFUSE_MAX_SECTION_MAP, |
| 457 | EFUSE_REAL_CONTENT_SIZE, |
Chaoming Li | 5c079d8 | 2011-10-12 15:59:09 -0500 | [diff] [blame] | 458 | EFUSE_OOB_PROTECT_BYTES_LEN, |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 459 | |
| 460 | /*CAM map */ |
| 461 | RWCAM, |
| 462 | WCAMI, |
| 463 | RCAMO, |
| 464 | CAMDBG, |
| 465 | SECR, |
| 466 | SEC_CAM_NONE, |
| 467 | SEC_CAM_WEP40, |
| 468 | SEC_CAM_TKIP, |
| 469 | SEC_CAM_AES, |
| 470 | SEC_CAM_WEP104, |
| 471 | |
| 472 | /*IMR map */ |
| 473 | RTL_IMR_BCNDMAINT6, /*Beacon DMA Interrupt 6 */ |
| 474 | RTL_IMR_BCNDMAINT5, /*Beacon DMA Interrupt 5 */ |
| 475 | RTL_IMR_BCNDMAINT4, /*Beacon DMA Interrupt 4 */ |
| 476 | RTL_IMR_BCNDMAINT3, /*Beacon DMA Interrupt 3 */ |
| 477 | RTL_IMR_BCNDMAINT2, /*Beacon DMA Interrupt 2 */ |
| 478 | RTL_IMR_BCNDMAINT1, /*Beacon DMA Interrupt 1 */ |
| 479 | RTL_IMR_BCNDOK8, /*Beacon Queue DMA OK Interrup 8 */ |
| 480 | RTL_IMR_BCNDOK7, /*Beacon Queue DMA OK Interrup 7 */ |
| 481 | RTL_IMR_BCNDOK6, /*Beacon Queue DMA OK Interrup 6 */ |
| 482 | RTL_IMR_BCNDOK5, /*Beacon Queue DMA OK Interrup 5 */ |
| 483 | RTL_IMR_BCNDOK4, /*Beacon Queue DMA OK Interrup 4 */ |
| 484 | RTL_IMR_BCNDOK3, /*Beacon Queue DMA OK Interrup 3 */ |
| 485 | RTL_IMR_BCNDOK2, /*Beacon Queue DMA OK Interrup 2 */ |
| 486 | RTL_IMR_BCNDOK1, /*Beacon Queue DMA OK Interrup 1 */ |
| 487 | RTL_IMR_TIMEOUT2, /*Timeout interrupt 2 */ |
| 488 | RTL_IMR_TIMEOUT1, /*Timeout interrupt 1 */ |
| 489 | RTL_IMR_TXFOVW, /*Transmit FIFO Overflow */ |
| 490 | RTL_IMR_PSTIMEOUT, /*Power save time out interrupt */ |
| 491 | RTL_IMR_BcnInt, /*Beacon DMA Interrupt 0 */ |
| 492 | RTL_IMR_RXFOVW, /*Receive FIFO Overflow */ |
| 493 | RTL_IMR_RDU, /*Receive Descriptor Unavailable */ |
| 494 | RTL_IMR_ATIMEND, /*For 92C,ATIM Window End Interrupt */ |
| 495 | RTL_IMR_BDOK, /*Beacon Queue DMA OK Interrup */ |
| 496 | RTL_IMR_HIGHDOK, /*High Queue DMA OK Interrupt */ |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 497 | RTL_IMR_COMDOK, /*Command Queue DMA OK Interrupt*/ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 498 | RTL_IMR_TBDOK, /*Transmit Beacon OK interrup */ |
| 499 | RTL_IMR_MGNTDOK, /*Management Queue DMA OK Interrupt */ |
| 500 | RTL_IMR_TBDER, /*For 92C,Transmit Beacon Error Interrupt */ |
| 501 | RTL_IMR_BKDOK, /*AC_BK DMA OK Interrupt */ |
| 502 | RTL_IMR_BEDOK, /*AC_BE DMA OK Interrupt */ |
| 503 | RTL_IMR_VIDOK, /*AC_VI DMA OK Interrupt */ |
| 504 | RTL_IMR_VODOK, /*AC_VO DMA Interrupt */ |
| 505 | RTL_IMR_ROK, /*Receive DMA OK Interrupt */ |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 506 | RTL_IBSS_INT_MASKS, /*(RTL_IMR_BcnInt | RTL_IMR_TBDOK | |
| 507 | * RTL_IMR_TBDER) */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 508 | |
| 509 | /*CCK Rates, TxHT = 0 */ |
| 510 | RTL_RC_CCK_RATE1M, |
| 511 | RTL_RC_CCK_RATE2M, |
| 512 | RTL_RC_CCK_RATE5_5M, |
| 513 | RTL_RC_CCK_RATE11M, |
| 514 | |
| 515 | /*OFDM Rates, TxHT = 0 */ |
| 516 | RTL_RC_OFDM_RATE6M, |
| 517 | RTL_RC_OFDM_RATE9M, |
| 518 | RTL_RC_OFDM_RATE12M, |
| 519 | RTL_RC_OFDM_RATE18M, |
| 520 | RTL_RC_OFDM_RATE24M, |
| 521 | RTL_RC_OFDM_RATE36M, |
| 522 | RTL_RC_OFDM_RATE48M, |
| 523 | RTL_RC_OFDM_RATE54M, |
| 524 | |
| 525 | RTL_RC_HT_RATEMCS7, |
| 526 | RTL_RC_HT_RATEMCS15, |
| 527 | |
| 528 | /*keep it last */ |
| 529 | RTL_VAR_MAP_MAX, |
| 530 | }; |
| 531 | |
| 532 | /*Firmware PS mode for control LPS.*/ |
| 533 | enum _fw_ps_mode { |
| 534 | FW_PS_ACTIVE_MODE = 0, |
| 535 | FW_PS_MIN_MODE = 1, |
| 536 | FW_PS_MAX_MODE = 2, |
| 537 | FW_PS_DTIM_MODE = 3, |
| 538 | FW_PS_VOIP_MODE = 4, |
| 539 | FW_PS_UAPSD_WMM_MODE = 5, |
| 540 | FW_PS_UAPSD_MODE = 6, |
| 541 | FW_PS_IBSS_MODE = 7, |
| 542 | FW_PS_WWLAN_MODE = 8, |
| 543 | FW_PS_PM_Radio_Off = 9, |
| 544 | FW_PS_PM_Card_Disable = 10, |
| 545 | }; |
| 546 | |
| 547 | enum rt_psmode { |
| 548 | EACTIVE, /*Active/Continuous access. */ |
| 549 | EMAXPS, /*Max power save mode. */ |
| 550 | EFASTPS, /*Fast power save mode. */ |
| 551 | EAUTOPS, /*Auto power save mode. */ |
| 552 | }; |
| 553 | |
| 554 | /*LED related.*/ |
| 555 | enum led_ctl_mode { |
| 556 | LED_CTL_POWER_ON = 1, |
| 557 | LED_CTL_LINK = 2, |
| 558 | LED_CTL_NO_LINK = 3, |
| 559 | LED_CTL_TX = 4, |
| 560 | LED_CTL_RX = 5, |
| 561 | LED_CTL_SITE_SURVEY = 6, |
| 562 | LED_CTL_POWER_OFF = 7, |
| 563 | LED_CTL_START_TO_LINK = 8, |
| 564 | LED_CTL_START_WPS = 9, |
| 565 | LED_CTL_STOP_WPS = 10, |
| 566 | }; |
| 567 | |
| 568 | enum rtl_led_pin { |
| 569 | LED_PIN_GPIO0, |
| 570 | LED_PIN_LED0, |
| 571 | LED_PIN_LED1, |
| 572 | LED_PIN_LED2 |
| 573 | }; |
| 574 | |
| 575 | /*QoS related.*/ |
| 576 | /*acm implementation method.*/ |
| 577 | enum acm_method { |
| 578 | eAcmWay0_SwAndHw = 0, |
| 579 | eAcmWay1_HW = 1, |
| 580 | eAcmWay2_SW = 2, |
| 581 | }; |
| 582 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 583 | enum macphy_mode { |
| 584 | SINGLEMAC_SINGLEPHY = 0, |
| 585 | DUALMAC_DUALPHY, |
| 586 | DUALMAC_SINGLEPHY, |
| 587 | }; |
| 588 | |
| 589 | enum band_type { |
| 590 | BAND_ON_2_4G = 0, |
| 591 | BAND_ON_5G, |
| 592 | BAND_ON_BOTH, |
| 593 | BANDMAX |
| 594 | }; |
| 595 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 596 | /*aci/aifsn Field. |
| 597 | Ref: WMM spec 2.2.2: WME Parameter Element, p.12.*/ |
| 598 | union aci_aifsn { |
| 599 | u8 char_data; |
| 600 | |
| 601 | struct { |
| 602 | u8 aifsn:4; |
| 603 | u8 acm:1; |
| 604 | u8 aci:2; |
| 605 | u8 reserved:1; |
| 606 | } f; /* Field */ |
| 607 | }; |
| 608 | |
| 609 | /*mlme related.*/ |
| 610 | enum wireless_mode { |
| 611 | WIRELESS_MODE_UNKNOWN = 0x00, |
| 612 | WIRELESS_MODE_A = 0x01, |
| 613 | WIRELESS_MODE_B = 0x02, |
| 614 | WIRELESS_MODE_G = 0x04, |
| 615 | WIRELESS_MODE_AUTO = 0x08, |
| 616 | WIRELESS_MODE_N_24G = 0x10, |
| 617 | WIRELESS_MODE_N_5G = 0x20 |
| 618 | }; |
| 619 | |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 620 | #define IS_WIRELESS_MODE_A(wirelessmode) \ |
| 621 | (wirelessmode == WIRELESS_MODE_A) |
| 622 | #define IS_WIRELESS_MODE_B(wirelessmode) \ |
| 623 | (wirelessmode == WIRELESS_MODE_B) |
| 624 | #define IS_WIRELESS_MODE_G(wirelessmode) \ |
| 625 | (wirelessmode == WIRELESS_MODE_G) |
| 626 | #define IS_WIRELESS_MODE_N_24G(wirelessmode) \ |
| 627 | (wirelessmode == WIRELESS_MODE_N_24G) |
| 628 | #define IS_WIRELESS_MODE_N_5G(wirelessmode) \ |
| 629 | (wirelessmode == WIRELESS_MODE_N_5G) |
| 630 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 631 | enum ratr_table_mode { |
| 632 | RATR_INX_WIRELESS_NGB = 0, |
| 633 | RATR_INX_WIRELESS_NG = 1, |
| 634 | RATR_INX_WIRELESS_NB = 2, |
| 635 | RATR_INX_WIRELESS_N = 3, |
| 636 | RATR_INX_WIRELESS_GB = 4, |
| 637 | RATR_INX_WIRELESS_G = 5, |
| 638 | RATR_INX_WIRELESS_B = 6, |
| 639 | RATR_INX_WIRELESS_MC = 7, |
| 640 | RATR_INX_WIRELESS_A = 8, |
| 641 | }; |
| 642 | |
| 643 | enum rtl_link_state { |
| 644 | MAC80211_NOLINK = 0, |
| 645 | MAC80211_LINKING = 1, |
| 646 | MAC80211_LINKED = 2, |
| 647 | MAC80211_LINKED_SCANNING = 3, |
| 648 | }; |
| 649 | |
| 650 | enum act_category { |
| 651 | ACT_CAT_QOS = 1, |
| 652 | ACT_CAT_DLS = 2, |
| 653 | ACT_CAT_BA = 3, |
| 654 | ACT_CAT_HT = 7, |
| 655 | ACT_CAT_WMM = 17, |
| 656 | }; |
| 657 | |
| 658 | enum ba_action { |
| 659 | ACT_ADDBAREQ = 0, |
| 660 | ACT_ADDBARSP = 1, |
| 661 | ACT_DELBA = 2, |
| 662 | }; |
| 663 | |
| 664 | struct octet_string { |
| 665 | u8 *octet; |
| 666 | u16 length; |
| 667 | }; |
| 668 | |
| 669 | struct rtl_hdr_3addr { |
| 670 | __le16 frame_ctl; |
| 671 | __le16 duration_id; |
| 672 | u8 addr1[ETH_ALEN]; |
| 673 | u8 addr2[ETH_ALEN]; |
| 674 | u8 addr3[ETH_ALEN]; |
| 675 | __le16 seq_ctl; |
| 676 | u8 payload[0]; |
John W. Linville | e137478 | 2010-12-16 09:20:16 -0500 | [diff] [blame] | 677 | } __packed; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 678 | |
| 679 | struct rtl_info_element { |
| 680 | u8 id; |
| 681 | u8 len; |
| 682 | u8 data[0]; |
John W. Linville | e137478 | 2010-12-16 09:20:16 -0500 | [diff] [blame] | 683 | } __packed; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 684 | |
| 685 | struct rtl_probe_rsp { |
| 686 | struct rtl_hdr_3addr header; |
| 687 | u32 time_stamp[2]; |
| 688 | __le16 beacon_interval; |
| 689 | __le16 capability; |
| 690 | /*SSID, supported rates, FH params, DS params, |
| 691 | CF params, IBSS params, TIM (if beacon), RSN */ |
| 692 | struct rtl_info_element info_element[0]; |
John W. Linville | e137478 | 2010-12-16 09:20:16 -0500 | [diff] [blame] | 693 | } __packed; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 694 | |
| 695 | /*LED related.*/ |
| 696 | /*ledpin Identify how to implement this SW led.*/ |
| 697 | struct rtl_led { |
| 698 | void *hw; |
| 699 | enum rtl_led_pin ledpin; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 700 | bool ledon; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 701 | }; |
| 702 | |
| 703 | struct rtl_led_ctl { |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 704 | bool led_opendrain; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 705 | struct rtl_led sw_led0; |
| 706 | struct rtl_led sw_led1; |
| 707 | }; |
| 708 | |
| 709 | struct rtl_qos_parameters { |
| 710 | __le16 cw_min; |
| 711 | __le16 cw_max; |
| 712 | u8 aifs; |
| 713 | u8 flag; |
| 714 | __le16 tx_op; |
John W. Linville | e137478 | 2010-12-16 09:20:16 -0500 | [diff] [blame] | 715 | } __packed; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 716 | |
| 717 | struct rt_smooth_data { |
| 718 | u32 elements[100]; /*array to store values */ |
| 719 | u32 index; /*index to current array to store */ |
| 720 | u32 total_num; /*num of valid elements */ |
| 721 | u32 total_val; /*sum of valid elements */ |
| 722 | }; |
| 723 | |
| 724 | struct false_alarm_statistics { |
| 725 | u32 cnt_parity_fail; |
| 726 | u32 cnt_rate_illegal; |
| 727 | u32 cnt_crc8_fail; |
| 728 | u32 cnt_mcs_fail; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 729 | u32 cnt_fast_fsync_fail; |
| 730 | u32 cnt_sb_search_fail; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 731 | u32 cnt_ofdm_fail; |
| 732 | u32 cnt_cck_fail; |
| 733 | u32 cnt_all; |
| 734 | }; |
| 735 | |
| 736 | struct init_gain { |
| 737 | u8 xaagccore1; |
| 738 | u8 xbagccore1; |
| 739 | u8 xcagccore1; |
| 740 | u8 xdagccore1; |
| 741 | u8 cca; |
| 742 | |
| 743 | }; |
| 744 | |
| 745 | struct wireless_stats { |
| 746 | unsigned long txbytesunicast; |
| 747 | unsigned long txbytesmulticast; |
| 748 | unsigned long txbytesbroadcast; |
| 749 | unsigned long rxbytesunicast; |
| 750 | |
| 751 | long rx_snr_db[4]; |
| 752 | /*Correct smoothed ss in Dbm, only used |
| 753 | in driver to report real power now. */ |
| 754 | long recv_signal_power; |
| 755 | long signal_quality; |
| 756 | long last_sigstrength_inpercent; |
| 757 | |
| 758 | u32 rssi_calculate_cnt; |
| 759 | |
| 760 | /*Transformed, in dbm. Beautified signal |
| 761 | strength for UI, not correct. */ |
| 762 | long signal_strength; |
| 763 | |
| 764 | u8 rx_rssi_percentage[4]; |
| 765 | u8 rx_evm_percentage[2]; |
| 766 | |
| 767 | struct rt_smooth_data ui_rssi; |
| 768 | struct rt_smooth_data ui_link_quality; |
| 769 | }; |
| 770 | |
| 771 | struct rate_adaptive { |
| 772 | u8 rate_adaptive_disabled; |
| 773 | u8 ratr_state; |
| 774 | u16 reserve; |
| 775 | |
| 776 | u32 high_rssi_thresh_for_ra; |
| 777 | u32 high2low_rssi_thresh_for_ra; |
| 778 | u8 low2high_rssi_thresh_for_ra40m; |
| 779 | u32 low_rssi_thresh_for_ra40M; |
| 780 | u8 low2high_rssi_thresh_for_ra20m; |
| 781 | u32 low_rssi_thresh_for_ra20M; |
| 782 | u32 upper_rssi_threshold_ratr; |
| 783 | u32 middleupper_rssi_threshold_ratr; |
| 784 | u32 middle_rssi_threshold_ratr; |
| 785 | u32 middlelow_rssi_threshold_ratr; |
| 786 | u32 low_rssi_threshold_ratr; |
| 787 | u32 ultralow_rssi_threshold_ratr; |
| 788 | u32 low_rssi_threshold_ratr_40m; |
| 789 | u32 low_rssi_threshold_ratr_20m; |
| 790 | u8 ping_rssi_enable; |
| 791 | u32 ping_rssi_ratr; |
| 792 | u32 ping_rssi_thresh_for_ra; |
| 793 | u32 last_ratr; |
| 794 | u8 pre_ratr_state; |
| 795 | }; |
| 796 | |
| 797 | struct regd_pair_mapping { |
| 798 | u16 reg_dmnenum; |
| 799 | u16 reg_5ghz_ctl; |
| 800 | u16 reg_2ghz_ctl; |
| 801 | }; |
| 802 | |
| 803 | struct rtl_regulatory { |
| 804 | char alpha2[2]; |
| 805 | u16 country_code; |
| 806 | u16 max_power_level; |
| 807 | u32 tp_scale; |
| 808 | u16 current_rd; |
| 809 | u16 current_rd_ext; |
| 810 | int16_t power_limit; |
| 811 | struct regd_pair_mapping *regpair; |
| 812 | }; |
| 813 | |
| 814 | struct rtl_rfkill { |
| 815 | bool rfkill_state; /*0 is off, 1 is on */ |
| 816 | }; |
| 817 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 818 | #define IQK_MATRIX_REG_NUM 8 |
| 819 | #define IQK_MATRIX_SETTINGS_NUM (1 + 24 + 21) |
| 820 | struct iqk_matrix_regs { |
Larry Finger | 3247328 | 2011-03-27 16:19:57 -0500 | [diff] [blame] | 821 | bool iqk_done; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 822 | long value[1][IQK_MATRIX_REG_NUM]; |
| 823 | }; |
| 824 | |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 825 | struct phy_parameters { |
| 826 | u16 length; |
| 827 | u32 *pdata; |
| 828 | }; |
| 829 | |
| 830 | enum hw_param_tab_index { |
| 831 | PHY_REG_2T, |
| 832 | PHY_REG_1T, |
| 833 | PHY_REG_PG, |
| 834 | RADIOA_2T, |
| 835 | RADIOB_2T, |
| 836 | RADIOA_1T, |
| 837 | RADIOB_1T, |
| 838 | MAC_REG, |
| 839 | AGCTAB_2T, |
| 840 | AGCTAB_1T, |
| 841 | MAX_TAB |
| 842 | }; |
| 843 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 844 | struct rtl_phy { |
| 845 | struct bb_reg_def phyreg_def[4]; /*Radio A/B/C/D */ |
| 846 | struct init_gain initgain_backup; |
| 847 | enum io_type current_io_type; |
| 848 | |
| 849 | u8 rf_mode; |
| 850 | u8 rf_type; |
| 851 | u8 current_chan_bw; |
| 852 | u8 set_bwmode_inprogress; |
| 853 | u8 sw_chnl_inprogress; |
| 854 | u8 sw_chnl_stage; |
| 855 | u8 sw_chnl_step; |
| 856 | u8 current_channel; |
| 857 | u8 h2c_box_num; |
| 858 | u8 set_io_inprogress; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 859 | u8 lck_inprogress; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 860 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 861 | /* record for power tracking */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 862 | s32 reg_e94; |
| 863 | s32 reg_e9c; |
| 864 | s32 reg_ea4; |
| 865 | s32 reg_eac; |
| 866 | s32 reg_eb4; |
| 867 | s32 reg_ebc; |
| 868 | s32 reg_ec4; |
| 869 | s32 reg_ecc; |
| 870 | u8 rfpienable; |
| 871 | u8 reserve_0; |
| 872 | u16 reserve_1; |
| 873 | u32 reg_c04, reg_c08, reg_874; |
| 874 | u32 adda_backup[16]; |
| 875 | u32 iqk_mac_backup[IQK_MAC_REG_NUM]; |
| 876 | u32 iqk_bb_backup[10]; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 877 | bool iqk_initialized; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 878 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 879 | /* Dual mac */ |
| 880 | bool need_iqk; |
| 881 | struct iqk_matrix_regs iqk_matrix_regsetting[IQK_MATRIX_SETTINGS_NUM]; |
| 882 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 883 | bool rfpi_enable; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 884 | |
| 885 | u8 pwrgroup_cnt; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 886 | u8 cck_high_power; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 887 | /* MAX_PG_GROUP groups of pwr diff by rates */ |
| 888 | u32 mcs_txpwrlevel_origoffset[MAX_PG_GROUP][16]; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 889 | u8 default_initialgain[4]; |
| 890 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 891 | /* the current Tx power level */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 892 | u8 cur_cck_txpwridx; |
| 893 | u8 cur_ofdm24g_txpwridx; |
| 894 | |
| 895 | u32 rfreg_chnlval[2]; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 896 | bool apk_done; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 897 | u32 reg_rf3c[2]; /* pathA / pathB */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 898 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 899 | /* bfsync */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 900 | u8 framesync; |
| 901 | u32 framesync_c34; |
| 902 | |
| 903 | u8 num_total_rfpath; |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 904 | struct phy_parameters hwparam_tables[MAX_TAB]; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 905 | u16 rf_pathmap; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 906 | }; |
| 907 | |
| 908 | #define MAX_TID_COUNT 9 |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 909 | #define RTL_AGG_STOP 0 |
| 910 | #define RTL_AGG_PROGRESS 1 |
| 911 | #define RTL_AGG_START 2 |
| 912 | #define RTL_AGG_OPERATIONAL 3 |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 913 | #define RTL_AGG_OFF 0 |
| 914 | #define RTL_AGG_ON 1 |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 915 | #define RTL_RX_AGG_START 1 |
| 916 | #define RTL_RX_AGG_STOP 0 |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 917 | #define RTL_AGG_EMPTYING_HW_QUEUE_ADDBA 2 |
| 918 | #define RTL_AGG_EMPTYING_HW_QUEUE_DELBA 3 |
| 919 | |
| 920 | struct rtl_ht_agg { |
| 921 | u16 txq_id; |
| 922 | u16 wait_for_ba; |
| 923 | u16 start_idx; |
| 924 | u64 bitmap; |
| 925 | u32 rate_n_flags; |
| 926 | u8 agg_state; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 927 | u8 rx_agg_state; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 928 | }; |
| 929 | |
| 930 | struct rtl_tid_data { |
| 931 | u16 seq_number; |
| 932 | struct rtl_ht_agg agg; |
| 933 | }; |
| 934 | |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 935 | struct rssi_sta { |
| 936 | long undecorated_smoothed_pwdb; |
| 937 | }; |
| 938 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 939 | struct rtl_sta_info { |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 940 | struct list_head list; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 941 | u8 ratr_index; |
| 942 | u8 wireless_mode; |
| 943 | u8 mimo_ps; |
| 944 | struct rtl_tid_data tids[MAX_TID_COUNT]; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 945 | |
| 946 | /* just used for ap adhoc or mesh*/ |
| 947 | struct rssi_sta rssi_stat; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 948 | } __packed; |
| 949 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 950 | struct rtl_priv; |
| 951 | struct rtl_io { |
| 952 | struct device *dev; |
Larry Finger | 62e6397 | 2011-02-11 14:27:46 -0600 | [diff] [blame] | 953 | struct mutex bb_mutex; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 954 | |
| 955 | /*PCI MEM map */ |
| 956 | unsigned long pci_mem_end; /*shared mem end */ |
| 957 | unsigned long pci_mem_start; /*shared mem start */ |
| 958 | |
| 959 | /*PCI IO map */ |
| 960 | unsigned long pci_base_addr; /*device I/O address */ |
| 961 | |
| 962 | void (*write8_async) (struct rtl_priv *rtlpriv, u32 addr, u8 val); |
Larry Finger | ff6ff96 | 2011-11-17 12:14:43 -0600 | [diff] [blame] | 963 | void (*write16_async) (struct rtl_priv *rtlpriv, u32 addr, u16 val); |
| 964 | void (*write32_async) (struct rtl_priv *rtlpriv, u32 addr, u32 val); |
| 965 | void (*writeN_sync) (struct rtl_priv *rtlpriv, u32 addr, void *buf, |
| 966 | u16 len); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 967 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 968 | u8(*read8_sync) (struct rtl_priv *rtlpriv, u32 addr); |
| 969 | u16(*read16_sync) (struct rtl_priv *rtlpriv, u32 addr); |
| 970 | u32(*read32_sync) (struct rtl_priv *rtlpriv, u32 addr); |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 971 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 972 | }; |
| 973 | |
| 974 | struct rtl_mac { |
| 975 | u8 mac_addr[ETH_ALEN]; |
| 976 | u8 mac80211_registered; |
| 977 | u8 beacon_enabled; |
| 978 | |
| 979 | u32 tx_ss_num; |
| 980 | u32 rx_ss_num; |
| 981 | |
| 982 | struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS]; |
| 983 | struct ieee80211_hw *hw; |
| 984 | struct ieee80211_vif *vif; |
| 985 | enum nl80211_iftype opmode; |
| 986 | |
| 987 | /*Probe Beacon management */ |
| 988 | struct rtl_tid_data tids[MAX_TID_COUNT]; |
| 989 | enum rtl_link_state link_state; |
| 990 | |
| 991 | int n_channels; |
| 992 | int n_bitrates; |
| 993 | |
Mike McCormack | 9c05044 | 2011-06-20 10:44:58 +0900 | [diff] [blame] | 994 | bool offchan_delay; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 995 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 996 | /*filters */ |
| 997 | u32 rx_conf; |
| 998 | u16 rx_mgt_filter; |
| 999 | u16 rx_ctrl_filter; |
| 1000 | u16 rx_data_filter; |
| 1001 | |
| 1002 | bool act_scanning; |
| 1003 | u8 cnt_after_linked; |
| 1004 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1005 | /* early mode */ |
| 1006 | /* skb wait queue */ |
| 1007 | struct sk_buff_head skb_waitq[MAX_TID_COUNT]; |
| 1008 | u8 earlymode_threshold; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1009 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1010 | /*RDG*/ |
| 1011 | bool rdg_en; |
| 1012 | |
| 1013 | /*AP*/ |
| 1014 | u8 bssid[6]; |
| 1015 | u32 vendor; |
| 1016 | u8 mcs[16]; /* 16 bytes mcs for HT rates. */ |
| 1017 | u32 basic_rates; /* b/g rates */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1018 | u8 ht_enable; |
| 1019 | u8 sgi_40; |
| 1020 | u8 sgi_20; |
| 1021 | u8 bw_40; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1022 | u8 mode; /* wireless mode */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1023 | u8 slot_time; |
| 1024 | u8 short_preamble; |
| 1025 | u8 use_cts_protect; |
| 1026 | u8 cur_40_prime_sc; |
| 1027 | u8 cur_40_prime_sc_bk; |
| 1028 | u64 tsf; |
| 1029 | u8 retry_short; |
| 1030 | u8 retry_long; |
| 1031 | u16 assoc_id; |
| 1032 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1033 | /*IBSS*/ |
| 1034 | int beacon_interval; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1035 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1036 | /*AMPDU*/ |
| 1037 | u8 min_space_cfg; /*For Min spacing configurations */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1038 | u8 max_mss_density; |
| 1039 | u8 current_ampdu_factor; |
| 1040 | u8 current_ampdu_density; |
| 1041 | |
| 1042 | /*QOS & EDCA */ |
| 1043 | struct ieee80211_tx_queue_params edca_param[RTL_MAC80211_NUM_QUEUE]; |
| 1044 | struct rtl_qos_parameters ac[AC_MAX]; |
| 1045 | }; |
| 1046 | |
| 1047 | struct rtl_hal { |
| 1048 | struct ieee80211_hw *hw; |
| 1049 | |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1050 | bool up_first_time; |
| 1051 | bool first_init; |
| 1052 | bool being_init_adapter; |
| 1053 | bool bbrf_ready; |
| 1054 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1055 | enum intf_type interface; |
| 1056 | u16 hw_type; /*92c or 92d or 92s and so on */ |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1057 | u8 ic_class; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1058 | u8 oem_id; |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1059 | u32 version; /*version of chip */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1060 | u8 state; /*stop 0, start 1 */ |
| 1061 | |
| 1062 | /*firmware */ |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1063 | u32 fwsize; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1064 | u8 *pfirmware; |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1065 | u16 fw_version; |
| 1066 | u16 fw_subversion; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1067 | bool h2c_setinprogress; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1068 | u8 last_hmeboxnum; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1069 | bool fw_ready; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1070 | /*Reserve page start offset except beacon in TxQ. */ |
| 1071 | u8 fw_rsvdpage_startoffset; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1072 | u8 h2c_txcmd_seq; |
| 1073 | |
| 1074 | /* FW Cmd IO related */ |
| 1075 | u16 fwcmd_iomap; |
| 1076 | u32 fwcmd_ioparam; |
| 1077 | bool set_fwcmd_inprogress; |
| 1078 | u8 current_fwcmd_io; |
| 1079 | |
| 1080 | /**/ |
| 1081 | bool driver_going2unload; |
| 1082 | |
| 1083 | /*AMPDU init min space*/ |
| 1084 | u8 minspace_cfg; /*For Min spacing configurations */ |
| 1085 | |
| 1086 | /* Dual mac */ |
| 1087 | enum macphy_mode macphymode; |
| 1088 | enum band_type current_bandtype; /* 0:2.4G, 1:5G */ |
| 1089 | enum band_type current_bandtypebackup; |
| 1090 | enum band_type bandset; |
| 1091 | /* dual MAC 0--Mac0 1--Mac1 */ |
| 1092 | u32 interfaceindex; |
| 1093 | /* just for DualMac S3S4 */ |
| 1094 | u8 macphyctl_reg; |
| 1095 | bool earlymode_enable; |
| 1096 | /* Dual mac*/ |
| 1097 | bool during_mac0init_radiob; |
| 1098 | bool during_mac1init_radioa; |
| 1099 | bool reloadtxpowerindex; |
| 1100 | /* True if IMR or IQK have done |
| 1101 | for 2.4G in scan progress */ |
| 1102 | bool load_imrandiqk_setting_for2g; |
| 1103 | |
| 1104 | bool disable_amsdu_8k; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1105 | bool master_of_dmsp; |
| 1106 | bool slave_of_dmsp; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1107 | }; |
| 1108 | |
| 1109 | struct rtl_security { |
| 1110 | /*default 0 */ |
| 1111 | bool use_sw_sec; |
| 1112 | |
| 1113 | bool being_setkey; |
| 1114 | bool use_defaultkey; |
| 1115 | /*Encryption Algorithm for Unicast Packet */ |
| 1116 | enum rt_enc_alg pairwise_enc_algorithm; |
| 1117 | /*Encryption Algorithm for Brocast/Multicast */ |
| 1118 | enum rt_enc_alg group_enc_algorithm; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1119 | /*Cam Entry Bitmap */ |
| 1120 | u32 hwsec_cam_bitmap; |
| 1121 | u8 hwsec_cam_sta_addr[TOTAL_CAM_ENTRY][ETH_ALEN]; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1122 | /*local Key buffer, indx 0 is for |
| 1123 | pairwise key 1-4 is for agoup key. */ |
| 1124 | u8 key_buf[KEY_BUF_SIZE][MAX_KEY_LEN]; |
| 1125 | u8 key_len[KEY_BUF_SIZE]; |
| 1126 | |
| 1127 | /*The pointer of Pairwise Key, |
| 1128 | it always points to KeyBuf[4] */ |
| 1129 | u8 *pairwise_key; |
| 1130 | }; |
| 1131 | |
| 1132 | struct rtl_dm { |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1133 | /*PHY status for Dynamic Management */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1134 | long entry_min_undecoratedsmoothed_pwdb; |
| 1135 | long undecorated_smoothed_pwdb; /*out dm */ |
| 1136 | long entry_max_undecoratedsmoothed_pwdb; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1137 | bool dm_initialgain_enable; |
| 1138 | bool dynamic_txpower_enable; |
| 1139 | bool current_turbo_edca; |
| 1140 | bool is_any_nonbepkts; /*out dm */ |
| 1141 | bool is_cur_rdlstate; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1142 | bool txpower_trackinginit; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1143 | bool disable_framebursting; |
| 1144 | bool cck_inch14; |
| 1145 | bool txpower_tracking; |
| 1146 | bool useramask; |
| 1147 | bool rfpath_rxenable[4]; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1148 | bool inform_fw_driverctrldm; |
| 1149 | bool current_mrc_switch; |
| 1150 | u8 txpowercount; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1151 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1152 | u8 thermalvalue_rxgain; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1153 | u8 thermalvalue_iqk; |
| 1154 | u8 thermalvalue_lck; |
| 1155 | u8 thermalvalue; |
| 1156 | u8 last_dtp_lvl; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1157 | u8 thermalvalue_avg[AVG_THERMAL_NUM]; |
| 1158 | u8 thermalvalue_avg_index; |
| 1159 | bool done_txpower; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1160 | u8 dynamic_txhighpower_lvl; /*Tx high power level */ |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1161 | u8 dm_flag; /*Indicate each dynamic mechanism's status. */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1162 | u8 dm_type; |
| 1163 | u8 txpower_track_control; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1164 | bool interrupt_migration; |
| 1165 | bool disable_tx_int; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1166 | char ofdm_index[2]; |
| 1167 | char cck_index; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1168 | |
| 1169 | /* DMSP */ |
| 1170 | bool supp_phymode_switch; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1171 | }; |
| 1172 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1173 | #define EFUSE_MAX_LOGICAL_SIZE 256 |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1174 | |
| 1175 | struct rtl_efuse { |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1176 | bool autoLoad_ok; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1177 | bool bootfromefuse; |
| 1178 | u16 max_physical_size; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1179 | |
| 1180 | u8 efuse_map[2][EFUSE_MAX_LOGICAL_SIZE]; |
| 1181 | u16 efuse_usedbytes; |
| 1182 | u8 efuse_usedpercentage; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1183 | #ifdef EFUSE_REPG_WORKAROUND |
| 1184 | bool efuse_re_pg_sec1flag; |
| 1185 | u8 efuse_re_pg_data[8]; |
| 1186 | #endif |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1187 | |
| 1188 | u8 autoload_failflag; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1189 | u8 autoload_status; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1190 | |
| 1191 | short epromtype; |
| 1192 | u16 eeprom_vid; |
| 1193 | u16 eeprom_did; |
| 1194 | u16 eeprom_svid; |
| 1195 | u16 eeprom_smid; |
| 1196 | u8 eeprom_oemid; |
| 1197 | u16 eeprom_channelplan; |
| 1198 | u8 eeprom_version; |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1199 | u8 board_type; |
| 1200 | u8 external_pa; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1201 | |
| 1202 | u8 dev_addr[6]; |
| 1203 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1204 | bool txpwr_fromeprom; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1205 | u8 eeprom_crystalcap; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1206 | u8 eeprom_tssi[2]; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1207 | u8 eeprom_tssi_5g[3][2]; /* for 5GL/5GM/5GH band. */ |
| 1208 | u8 eeprom_pwrlimit_ht20[CHANNEL_GROUP_MAX]; |
| 1209 | u8 eeprom_pwrlimit_ht40[CHANNEL_GROUP_MAX]; |
| 1210 | u8 eeprom_chnlarea_txpwr_cck[2][CHANNEL_GROUP_MAX_2G]; |
| 1211 | u8 eeprom_chnlarea_txpwr_ht40_1s[2][CHANNEL_GROUP_MAX]; |
| 1212 | u8 eeprom_chnlarea_txpwr_ht40_2sdiif[2][CHANNEL_GROUP_MAX]; |
| 1213 | u8 txpwrlevel_cck[2][CHANNEL_MAX_NUMBER_2G]; |
| 1214 | u8 txpwrlevel_ht40_1s[2][CHANNEL_MAX_NUMBER]; /*For HT 40MHZ pwr */ |
| 1215 | u8 txpwrlevel_ht40_2s[2][CHANNEL_MAX_NUMBER]; /*For HT 40MHZ pwr */ |
| 1216 | |
| 1217 | u8 internal_pa_5g[2]; /* pathA / pathB */ |
| 1218 | u8 eeprom_c9; |
| 1219 | u8 eeprom_cc; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1220 | |
| 1221 | /*For power group */ |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1222 | u8 eeprom_pwrgroup[2][3]; |
| 1223 | u8 pwrgroup_ht20[2][CHANNEL_MAX_NUMBER]; |
| 1224 | u8 pwrgroup_ht40[2][CHANNEL_MAX_NUMBER]; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1225 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1226 | char txpwr_ht20diff[2][CHANNEL_MAX_NUMBER]; /*HT 20<->40 Pwr diff */ |
| 1227 | /*For HT<->legacy pwr diff*/ |
| 1228 | u8 txpwr_legacyhtdiff[2][CHANNEL_MAX_NUMBER]; |
| 1229 | u8 txpwr_safetyflag; /* Band edge enable flag */ |
| 1230 | u16 eeprom_txpowerdiff; |
| 1231 | u8 legacy_httxpowerdiff; /* Legacy to HT rate power diff */ |
| 1232 | u8 antenna_txpwdiff[3]; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1233 | |
| 1234 | u8 eeprom_regulatory; |
| 1235 | u8 eeprom_thermalmeter; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1236 | u8 thermalmeter[2]; /*ThermalMeter, index 0 for RFIC0, 1 for RFIC1 */ |
| 1237 | u16 tssi_13dbm; |
| 1238 | u8 crystalcap; /* CrystalCap. */ |
| 1239 | u8 delta_iqk; |
| 1240 | u8 delta_lck; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1241 | |
| 1242 | u8 legacy_ht_txpowerdiff; /*Legacy to HT rate power diff */ |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1243 | bool apk_thermalmeterignore; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1244 | |
| 1245 | bool b1x1_recvcombine; |
| 1246 | bool b1ss_support; |
| 1247 | |
| 1248 | /*channel plan */ |
| 1249 | u8 channel_plan; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1250 | }; |
| 1251 | |
| 1252 | struct rtl_ps_ctl { |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1253 | bool pwrdomain_protect; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1254 | bool in_powersavemode; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1255 | bool rfchange_inprogress; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1256 | bool swrf_processing; |
| 1257 | bool hwradiooff; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1258 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1259 | /* |
| 1260 | * just for PCIE ASPM |
| 1261 | * If it supports ASPM, Offset[560h] = 0x40, |
| 1262 | * otherwise Offset[560h] = 0x00. |
| 1263 | * */ |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1264 | bool support_aspm; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1265 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1266 | bool support_backdoor; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1267 | |
| 1268 | /*for LPS */ |
| 1269 | enum rt_psmode dot11_psmode; /*Power save mode configured. */ |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1270 | bool swctrl_lps; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1271 | bool leisure_ps; |
| 1272 | bool fwctrl_lps; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1273 | u8 fwctrl_psmode; |
| 1274 | /*For Fw control LPS mode */ |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1275 | u8 reg_fwctrl_lps; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1276 | /*Record Fw PS mode status. */ |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1277 | bool fw_current_inpsmode; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1278 | u8 reg_max_lps_awakeintvl; |
| 1279 | bool report_linked; |
| 1280 | |
| 1281 | /*for IPS */ |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1282 | bool inactiveps; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1283 | |
| 1284 | u32 rfoff_reason; |
| 1285 | |
| 1286 | /*RF OFF Level */ |
| 1287 | u32 cur_ps_level; |
| 1288 | u32 reg_rfps_level; |
| 1289 | |
| 1290 | /*just for PCIE ASPM */ |
| 1291 | u8 const_amdpci_aspm; |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1292 | bool pwrdown_mode; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1293 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1294 | enum rf_pwrstate inactive_pwrstate; |
| 1295 | enum rf_pwrstate rfpwr_state; /*cur power state */ |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1296 | |
| 1297 | /* for SW LPS*/ |
| 1298 | bool sw_ps_enabled; |
| 1299 | bool state; |
| 1300 | bool state_inap; |
| 1301 | bool multi_buffered; |
| 1302 | u16 nullfunc_seq; |
| 1303 | unsigned int dtim_counter; |
| 1304 | unsigned int sleep_ms; |
| 1305 | unsigned long last_sleep_jiffies; |
| 1306 | unsigned long last_awake_jiffies; |
| 1307 | unsigned long last_delaylps_stamp_jiffies; |
| 1308 | unsigned long last_dtim; |
| 1309 | unsigned long last_beacon; |
| 1310 | unsigned long last_action; |
| 1311 | unsigned long last_slept; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1312 | }; |
| 1313 | |
| 1314 | struct rtl_stats { |
| 1315 | u32 mac_time[2]; |
| 1316 | s8 rssi; |
| 1317 | u8 signal; |
| 1318 | u8 noise; |
| 1319 | u16 rate; /*in 100 kbps */ |
| 1320 | u8 received_channel; |
| 1321 | u8 control; |
| 1322 | u8 mask; |
| 1323 | u8 freq; |
| 1324 | u16 len; |
| 1325 | u64 tsf; |
| 1326 | u32 beacon_time; |
| 1327 | u8 nic_type; |
| 1328 | u16 length; |
| 1329 | u8 signalquality; /*in 0-100 index. */ |
| 1330 | /* |
| 1331 | * Real power in dBm for this packet, |
| 1332 | * no beautification and aggregation. |
| 1333 | * */ |
| 1334 | s32 recvsignalpower; |
| 1335 | s8 rxpower; /*in dBm Translate from PWdB */ |
| 1336 | u8 signalstrength; /*in 0-100 index. */ |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1337 | u16 hwerror:1; |
| 1338 | u16 crc:1; |
| 1339 | u16 icv:1; |
| 1340 | u16 shortpreamble:1; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1341 | u16 antenna:1; |
| 1342 | u16 decrypted:1; |
| 1343 | u16 wakeup:1; |
| 1344 | u32 timestamp_low; |
| 1345 | u32 timestamp_high; |
| 1346 | |
| 1347 | u8 rx_drvinfo_size; |
| 1348 | u8 rx_bufshift; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1349 | bool isampdu; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1350 | bool isfirst_ampdu; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1351 | bool rx_is40Mhzpacket; |
| 1352 | u32 rx_pwdb_all; |
| 1353 | u8 rx_mimo_signalstrength[4]; /*in 0~100 index */ |
| 1354 | s8 rx_mimo_signalquality[2]; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1355 | bool packet_matchbssid; |
| 1356 | bool is_cck; |
Chaoming Li | 5c079d8 | 2011-10-12 15:59:09 -0500 | [diff] [blame] | 1357 | bool is_ht; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1358 | bool packet_toself; |
| 1359 | bool packet_beacon; /*for rssi */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1360 | char cck_adc_pwdb[4]; /*for rx path selection */ |
| 1361 | }; |
| 1362 | |
| 1363 | struct rt_link_detect { |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1364 | /* count for roaming */ |
| 1365 | u32 bcn_rx_inperiod; |
| 1366 | u32 roam_times; |
| 1367 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1368 | u32 num_tx_in4period[4]; |
| 1369 | u32 num_rx_in4period[4]; |
| 1370 | |
| 1371 | u32 num_tx_inperiod; |
| 1372 | u32 num_rx_inperiod; |
| 1373 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1374 | bool busytraffic; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1375 | bool tx_busy_traffic; |
| 1376 | bool rx_busy_traffic; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1377 | bool higher_busytraffic; |
| 1378 | bool higher_busyrxtraffic; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1379 | |
| 1380 | u32 tidtx_in4period[MAX_TID_COUNT][4]; |
| 1381 | u32 tidtx_inperiod[MAX_TID_COUNT]; |
| 1382 | bool higher_busytxtraffic[MAX_TID_COUNT]; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1383 | }; |
| 1384 | |
| 1385 | struct rtl_tcb_desc { |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1386 | u8 packet_bw:1; |
| 1387 | u8 multicast:1; |
| 1388 | u8 broadcast:1; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1389 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1390 | u8 rts_stbc:1; |
| 1391 | u8 rts_enable:1; |
| 1392 | u8 cts_enable:1; |
| 1393 | u8 rts_use_shortpreamble:1; |
| 1394 | u8 rts_use_shortgi:1; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1395 | u8 rts_sc:1; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1396 | u8 rts_bw:1; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1397 | u8 rts_rate; |
| 1398 | |
| 1399 | u8 use_shortgi:1; |
| 1400 | u8 use_shortpreamble:1; |
| 1401 | u8 use_driver_rate:1; |
| 1402 | u8 disable_ratefallback:1; |
| 1403 | |
| 1404 | u8 ratr_index; |
| 1405 | u8 mac_id; |
| 1406 | u8 hw_rate; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1407 | |
| 1408 | u8 last_inipkt:1; |
| 1409 | u8 cmd_or_init:1; |
| 1410 | u8 queue_index; |
| 1411 | |
| 1412 | /* early mode */ |
| 1413 | u8 empkt_num; |
| 1414 | /* The max value by HW */ |
| 1415 | u32 empkt_len[5]; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1416 | }; |
| 1417 | |
| 1418 | struct rtl_hal_ops { |
| 1419 | int (*init_sw_vars) (struct ieee80211_hw *hw); |
| 1420 | void (*deinit_sw_vars) (struct ieee80211_hw *hw); |
Larry Finger | 62e6397 | 2011-02-11 14:27:46 -0600 | [diff] [blame] | 1421 | void (*read_chip_version)(struct ieee80211_hw *hw); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1422 | void (*read_eeprom_info) (struct ieee80211_hw *hw); |
| 1423 | void (*interrupt_recognized) (struct ieee80211_hw *hw, |
| 1424 | u32 *p_inta, u32 *p_intb); |
| 1425 | int (*hw_init) (struct ieee80211_hw *hw); |
| 1426 | void (*hw_disable) (struct ieee80211_hw *hw); |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1427 | void (*hw_suspend) (struct ieee80211_hw *hw); |
| 1428 | void (*hw_resume) (struct ieee80211_hw *hw); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1429 | void (*enable_interrupt) (struct ieee80211_hw *hw); |
| 1430 | void (*disable_interrupt) (struct ieee80211_hw *hw); |
| 1431 | int (*set_network_type) (struct ieee80211_hw *hw, |
| 1432 | enum nl80211_iftype type); |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1433 | void (*set_chk_bssid)(struct ieee80211_hw *hw, |
| 1434 | bool check_bssid); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1435 | void (*set_bw_mode) (struct ieee80211_hw *hw, |
| 1436 | enum nl80211_channel_type ch_type); |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1437 | u8(*switch_channel) (struct ieee80211_hw *hw); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1438 | void (*set_qos) (struct ieee80211_hw *hw, int aci); |
| 1439 | void (*set_bcn_reg) (struct ieee80211_hw *hw); |
| 1440 | void (*set_bcn_intv) (struct ieee80211_hw *hw); |
| 1441 | void (*update_interrupt_mask) (struct ieee80211_hw *hw, |
| 1442 | u32 add_msr, u32 rm_msr); |
| 1443 | void (*get_hw_reg) (struct ieee80211_hw *hw, u8 variable, u8 *val); |
| 1444 | void (*set_hw_reg) (struct ieee80211_hw *hw, u8 variable, u8 *val); |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1445 | void (*update_rate_tbl) (struct ieee80211_hw *hw, |
| 1446 | struct ieee80211_sta *sta, u8 rssi_level); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1447 | void (*update_rate_mask) (struct ieee80211_hw *hw, u8 rssi_level); |
| 1448 | void (*fill_tx_desc) (struct ieee80211_hw *hw, |
| 1449 | struct ieee80211_hdr *hdr, u8 *pdesc_tx, |
| 1450 | struct ieee80211_tx_info *info, |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 1451 | struct ieee80211_sta *sta, |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1452 | struct sk_buff *skb, u8 hw_queue, |
| 1453 | struct rtl_tcb_desc *ptcb_desc); |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1454 | void (*fill_fake_txdesc) (struct ieee80211_hw *hw, u8 *pDesc, |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1455 | u32 buffer_len, bool bIsPsPoll); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1456 | void (*fill_tx_cmddesc) (struct ieee80211_hw *hw, u8 *pdesc, |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1457 | bool firstseg, bool lastseg, |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1458 | struct sk_buff *skb); |
Larry Finger | 62e6397 | 2011-02-11 14:27:46 -0600 | [diff] [blame] | 1459 | bool (*cmd_send_packet)(struct ieee80211_hw *hw, struct sk_buff *skb); |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1460 | bool (*query_rx_desc) (struct ieee80211_hw *hw, |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1461 | struct rtl_stats *stats, |
| 1462 | struct ieee80211_rx_status *rx_status, |
| 1463 | u8 *pdesc, struct sk_buff *skb); |
| 1464 | void (*set_channel_access) (struct ieee80211_hw *hw); |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1465 | bool (*radio_onoff_checking) (struct ieee80211_hw *hw, u8 *valid); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1466 | void (*dm_watchdog) (struct ieee80211_hw *hw); |
| 1467 | void (*scan_operation_backup) (struct ieee80211_hw *hw, u8 operation); |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1468 | bool (*set_rf_power_state) (struct ieee80211_hw *hw, |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1469 | enum rf_pwrstate rfpwr_state); |
| 1470 | void (*led_control) (struct ieee80211_hw *hw, |
| 1471 | enum led_ctl_mode ledaction); |
| 1472 | void (*set_desc) (u8 *pdesc, bool istx, u8 desc_name, u8 *val); |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1473 | u32 (*get_desc) (u8 *pdesc, bool istx, u8 desc_name); |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1474 | void (*tx_polling) (struct ieee80211_hw *hw, u8 hw_queue); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1475 | void (*enable_hw_sec) (struct ieee80211_hw *hw); |
| 1476 | void (*set_key) (struct ieee80211_hw *hw, u32 key_index, |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1477 | u8 *macaddr, bool is_group, u8 enc_algo, |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1478 | bool is_wepkey, bool clear_all); |
| 1479 | void (*init_sw_leds) (struct ieee80211_hw *hw); |
| 1480 | void (*deinit_sw_leds) (struct ieee80211_hw *hw); |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1481 | u32 (*get_bbreg) (struct ieee80211_hw *hw, u32 regaddr, u32 bitmask); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1482 | void (*set_bbreg) (struct ieee80211_hw *hw, u32 regaddr, u32 bitmask, |
| 1483 | u32 data); |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 1484 | u32 (*get_rfreg) (struct ieee80211_hw *hw, enum radio_path rfpath, |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1485 | u32 regaddr, u32 bitmask); |
| 1486 | void (*set_rfreg) (struct ieee80211_hw *hw, enum radio_path rfpath, |
| 1487 | u32 regaddr, u32 bitmask, u32 data); |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1488 | void (*allow_all_destaddr)(struct ieee80211_hw *hw, |
| 1489 | bool allow_all_da, bool write_into_reg); |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1490 | void (*linked_set_reg) (struct ieee80211_hw *hw); |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1491 | void (*check_switch_to_dmdp) (struct ieee80211_hw *hw); |
| 1492 | void (*dualmac_easy_concurrent) (struct ieee80211_hw *hw); |
| 1493 | void (*dualmac_switch_to_dmdp) (struct ieee80211_hw *hw); |
Larry Finger | 1472d3a | 2011-02-23 10:24:58 -0600 | [diff] [blame] | 1494 | bool (*phy_rf6052_config) (struct ieee80211_hw *hw); |
| 1495 | void (*phy_rf6052_set_cck_txpower) (struct ieee80211_hw *hw, |
| 1496 | u8 *powerlevel); |
| 1497 | void (*phy_rf6052_set_ofdm_txpower) (struct ieee80211_hw *hw, |
| 1498 | u8 *ppowerlevel, u8 channel); |
| 1499 | bool (*config_bb_with_headerfile) (struct ieee80211_hw *hw, |
| 1500 | u8 configtype); |
| 1501 | bool (*config_bb_with_pgheaderfile) (struct ieee80211_hw *hw, |
| 1502 | u8 configtype); |
| 1503 | void (*phy_lc_calibrate) (struct ieee80211_hw *hw, bool is2t); |
| 1504 | void (*phy_set_bw_mode_callback) (struct ieee80211_hw *hw); |
| 1505 | void (*dm_dynamic_txpower) (struct ieee80211_hw *hw); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1506 | }; |
| 1507 | |
| 1508 | struct rtl_intf_ops { |
| 1509 | /*com */ |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1510 | void (*read_efuse_byte)(struct ieee80211_hw *hw, u16 _offset, u8 *pbuf); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1511 | int (*adapter_start) (struct ieee80211_hw *hw); |
| 1512 | void (*adapter_stop) (struct ieee80211_hw *hw); |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1513 | bool (*check_buddy_priv)(struct ieee80211_hw *hw, |
| 1514 | struct rtl_priv **buddy_priv); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1515 | |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 1516 | int (*adapter_tx) (struct ieee80211_hw *hw, |
| 1517 | struct ieee80211_sta *sta, |
| 1518 | struct sk_buff *skb, |
| 1519 | struct rtl_tcb_desc *ptcb_desc); |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1520 | void (*flush)(struct ieee80211_hw *hw, bool drop); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1521 | int (*reset_trx_ring) (struct ieee80211_hw *hw); |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 1522 | bool (*waitq_insert) (struct ieee80211_hw *hw, |
| 1523 | struct ieee80211_sta *sta, |
| 1524 | struct sk_buff *skb); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1525 | |
| 1526 | /*pci */ |
| 1527 | void (*disable_aspm) (struct ieee80211_hw *hw); |
| 1528 | void (*enable_aspm) (struct ieee80211_hw *hw); |
| 1529 | |
| 1530 | /*usb */ |
| 1531 | }; |
| 1532 | |
| 1533 | struct rtl_mod_params { |
| 1534 | /* default: 0 = using hardware encryption */ |
Rusty Russell | eb93992 | 2011-12-19 14:08:01 +0000 | [diff] [blame] | 1535 | bool sw_crypto; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1536 | |
Larry Finger | 73a253c | 2011-10-07 11:27:33 -0500 | [diff] [blame] | 1537 | /* default: 0 = DBG_EMERG (0)*/ |
| 1538 | int debug; |
| 1539 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1540 | /* default: 1 = using no linked power save */ |
| 1541 | bool inactiveps; |
| 1542 | |
| 1543 | /* default: 1 = using linked sw power save */ |
| 1544 | bool swctrl_lps; |
| 1545 | |
| 1546 | /* default: 1 = using linked fw power save */ |
| 1547 | bool fwctrl_lps; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1548 | }; |
| 1549 | |
Larry Finger | 62e6397 | 2011-02-11 14:27:46 -0600 | [diff] [blame] | 1550 | struct rtl_hal_usbint_cfg { |
| 1551 | /* data - rx */ |
| 1552 | u32 in_ep_num; |
| 1553 | u32 rx_urb_num; |
| 1554 | u32 rx_max_size; |
| 1555 | |
| 1556 | /* op - rx */ |
| 1557 | void (*usb_rx_hdl)(struct ieee80211_hw *, struct sk_buff *); |
| 1558 | void (*usb_rx_segregate_hdl)(struct ieee80211_hw *, struct sk_buff *, |
| 1559 | struct sk_buff_head *); |
| 1560 | |
| 1561 | /* tx */ |
| 1562 | void (*usb_tx_cleanup)(struct ieee80211_hw *, struct sk_buff *); |
| 1563 | int (*usb_tx_post_hdl)(struct ieee80211_hw *, struct urb *, |
| 1564 | struct sk_buff *); |
| 1565 | struct sk_buff *(*usb_tx_aggregate_hdl)(struct ieee80211_hw *, |
| 1566 | struct sk_buff_head *); |
| 1567 | |
| 1568 | /* endpoint mapping */ |
| 1569 | int (*usb_endpoint_mapping)(struct ieee80211_hw *hw); |
Larry Finger | 17c9ac6 | 2011-02-19 16:29:57 -0600 | [diff] [blame] | 1570 | u16 (*usb_mq_to_hwq)(__le16 fc, u16 mac80211_queue_index); |
Larry Finger | 62e6397 | 2011-02-11 14:27:46 -0600 | [diff] [blame] | 1571 | }; |
| 1572 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1573 | struct rtl_hal_cfg { |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1574 | u8 bar_id; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1575 | bool write_readback; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1576 | char *name; |
| 1577 | char *fw_name; |
| 1578 | struct rtl_hal_ops *ops; |
| 1579 | struct rtl_mod_params *mod_params; |
Larry Finger | 62e6397 | 2011-02-11 14:27:46 -0600 | [diff] [blame] | 1580 | struct rtl_hal_usbint_cfg *usb_interface_cfg; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1581 | |
| 1582 | /*this map used for some registers or vars |
| 1583 | defined int HAL but used in MAIN */ |
| 1584 | u32 maps[RTL_VAR_MAP_MAX]; |
| 1585 | |
| 1586 | }; |
| 1587 | |
| 1588 | struct rtl_locks { |
Larry Finger | d704300 | 2010-12-17 19:36:25 -0600 | [diff] [blame] | 1589 | /* mutex */ |
Larry Finger | 8a09d6d | 2010-12-16 11:13:57 -0600 | [diff] [blame] | 1590 | struct mutex conf_mutex; |
Stanislaw Gruszka | 6539306 | 2011-12-12 12:43:24 +0100 | [diff] [blame] | 1591 | struct mutex ps_mutex; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1592 | |
| 1593 | /*spin lock */ |
Larry Finger | b9116b9a | 2011-12-16 21:17:16 -0600 | [diff] [blame] | 1594 | spinlock_t ips_lock; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1595 | spinlock_t irq_th_lock; |
| 1596 | spinlock_t h2c_lock; |
| 1597 | spinlock_t rf_ps_lock; |
| 1598 | spinlock_t rf_lock; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1599 | spinlock_t lps_lock; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1600 | spinlock_t waitq_lock; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1601 | spinlock_t entry_list_lock; |
Larry Finger | 3ce4d85 | 2012-07-11 14:37:28 -0500 | [diff] [blame] | 1602 | spinlock_t usb_lock; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1603 | |
| 1604 | /*Dual mac*/ |
| 1605 | spinlock_t cck_and_rw_pagea_lock; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1606 | |
| 1607 | /*Easy concurrent*/ |
| 1608 | spinlock_t check_sendpkt_lock; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1609 | }; |
| 1610 | |
| 1611 | struct rtl_works { |
| 1612 | struct ieee80211_hw *hw; |
| 1613 | |
| 1614 | /*timer */ |
| 1615 | struct timer_list watchdog_timer; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1616 | struct timer_list dualmac_easyconcurrent_retrytimer; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1617 | |
| 1618 | /*task */ |
| 1619 | struct tasklet_struct irq_tasklet; |
| 1620 | struct tasklet_struct irq_prepare_bcn_tasklet; |
| 1621 | |
| 1622 | /*work queue */ |
| 1623 | struct workqueue_struct *rtl_wq; |
| 1624 | struct delayed_work watchdog_wq; |
| 1625 | struct delayed_work ips_nic_off_wq; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1626 | |
| 1627 | /* For SW LPS */ |
| 1628 | struct delayed_work ps_work; |
| 1629 | struct delayed_work ps_rfon_wq; |
Stanislaw Gruszka | 41affd5 | 2011-12-12 12:43:23 +0100 | [diff] [blame] | 1630 | |
| 1631 | struct work_struct lps_leave_work; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1632 | }; |
| 1633 | |
| 1634 | struct rtl_debug { |
| 1635 | u32 dbgp_type[DBGP_TYPE_MAX]; |
| 1636 | u32 global_debuglevel; |
| 1637 | u64 global_debugcomponents; |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1638 | |
| 1639 | /* add for proc debug */ |
| 1640 | struct proc_dir_entry *proc_dir; |
| 1641 | char proc_name[20]; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1642 | }; |
| 1643 | |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1644 | #define MIMO_PS_STATIC 0 |
| 1645 | #define MIMO_PS_DYNAMIC 1 |
| 1646 | #define MIMO_PS_NOLIMIT 3 |
| 1647 | |
| 1648 | struct rtl_dualmac_easy_concurrent_ctl { |
| 1649 | enum band_type currentbandtype_backfordmdp; |
| 1650 | bool close_bbandrf_for_dmsp; |
| 1651 | bool change_to_dmdp; |
| 1652 | bool change_to_dmsp; |
| 1653 | bool switch_in_process; |
| 1654 | }; |
| 1655 | |
| 1656 | struct rtl_dmsp_ctl { |
| 1657 | bool activescan_for_slaveofdmsp; |
| 1658 | bool scan_for_anothermac_fordmsp; |
| 1659 | bool scan_for_itself_fordmsp; |
| 1660 | bool writedig_for_anothermacofdmsp; |
| 1661 | u32 curdigvalue_for_anothermacofdmsp; |
| 1662 | bool changecckpdstate_for_anothermacofdmsp; |
| 1663 | u8 curcckpdstate_for_anothermacofdmsp; |
| 1664 | bool changetxhighpowerlvl_for_anothermacofdmsp; |
| 1665 | u8 curtxhighlvl_for_anothermacofdmsp; |
| 1666 | long rssivalmin_for_anothermacofdmsp; |
| 1667 | }; |
| 1668 | |
Larry Finger | df37a0e | 2012-04-19 16:32:39 -0500 | [diff] [blame] | 1669 | struct ps_t { |
| 1670 | u8 pre_ccastate; |
| 1671 | u8 cur_ccasate; |
| 1672 | u8 pre_rfstate; |
| 1673 | u8 cur_rfstate; |
| 1674 | long rssi_val_min; |
| 1675 | }; |
| 1676 | |
| 1677 | struct dig_t { |
| 1678 | u32 rssi_lowthresh; |
| 1679 | u32 rssi_highthresh; |
| 1680 | u32 fa_lowthresh; |
| 1681 | u32 fa_highthresh; |
| 1682 | long last_min_undecorated_pwdb_for_dm; |
| 1683 | long rssi_highpower_lowthresh; |
| 1684 | long rssi_highpower_highthresh; |
| 1685 | u32 recover_cnt; |
| 1686 | u32 pre_igvalue; |
| 1687 | u32 cur_igvalue; |
| 1688 | long rssi_val; |
| 1689 | u8 dig_enable_flag; |
| 1690 | u8 dig_ext_port_stage; |
| 1691 | u8 dig_algorithm; |
| 1692 | u8 dig_twoport_algorithm; |
| 1693 | u8 dig_dbgmode; |
| 1694 | u8 dig_slgorithm_switch; |
Larry Finger | 229bd9d | 2012-08-31 15:38:59 -0500 | [diff] [blame] | 1695 | u8 cursta_connectstate; |
Larry Finger | df37a0e | 2012-04-19 16:32:39 -0500 | [diff] [blame] | 1696 | u8 presta_connectstate; |
| 1697 | u8 curmultista_connectstate; |
| 1698 | char backoff_val; |
| 1699 | char backoff_val_range_max; |
| 1700 | char backoff_val_range_min; |
| 1701 | u8 rx_gain_range_max; |
| 1702 | u8 rx_gain_range_min; |
| 1703 | u8 min_undecorated_pwdb_for_dm; |
| 1704 | u8 rssi_val_min; |
| 1705 | u8 pre_cck_pd_state; |
| 1706 | u8 cur_cck_pd_state; |
| 1707 | u8 pre_cck_fa_state; |
| 1708 | u8 cur_cck_fa_state; |
| 1709 | u8 pre_ccastate; |
| 1710 | u8 cur_ccasate; |
| 1711 | u8 large_fa_hit; |
| 1712 | u8 forbidden_igi; |
| 1713 | u8 dig_state; |
| 1714 | u8 dig_highpwrstate; |
| 1715 | u8 cur_sta_connectstate; |
| 1716 | u8 pre_sta_connectstate; |
| 1717 | u8 cur_ap_connectstate; |
| 1718 | u8 pre_ap_connectstate; |
| 1719 | u8 cur_pd_thstate; |
| 1720 | u8 pre_pd_thstate; |
| 1721 | u8 cur_cs_ratiostate; |
| 1722 | u8 pre_cs_ratiostate; |
| 1723 | u8 backoff_enable_flag; |
| 1724 | char backoffval_range_max; |
| 1725 | char backoffval_range_min; |
| 1726 | }; |
| 1727 | |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1728 | struct rtl_global_var { |
| 1729 | /* from this list we can get |
| 1730 | * other adapter's rtl_priv */ |
| 1731 | struct list_head glb_priv_list; |
| 1732 | spinlock_t glb_list_lock; |
| 1733 | }; |
| 1734 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1735 | struct rtl_priv { |
Larry Finger | b0302ab | 2012-01-30 09:54:49 -0600 | [diff] [blame] | 1736 | struct completion firmware_loading_complete; |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1737 | struct list_head list; |
| 1738 | struct rtl_priv *buddy_priv; |
| 1739 | struct rtl_global_var *glb_var; |
| 1740 | struct rtl_dualmac_easy_concurrent_ctl easy_concurrent_ctl; |
| 1741 | struct rtl_dmsp_ctl dmsp_ctl; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1742 | struct rtl_locks locks; |
| 1743 | struct rtl_works works; |
| 1744 | struct rtl_mac mac80211; |
| 1745 | struct rtl_hal rtlhal; |
| 1746 | struct rtl_regulatory regd; |
| 1747 | struct rtl_rfkill rfkill; |
| 1748 | struct rtl_io io; |
| 1749 | struct rtl_phy phy; |
| 1750 | struct rtl_dm dm; |
| 1751 | struct rtl_security sec; |
| 1752 | struct rtl_efuse efuse; |
| 1753 | |
| 1754 | struct rtl_ps_ctl psc; |
| 1755 | struct rate_adaptive ra; |
| 1756 | struct wireless_stats stats; |
| 1757 | struct rt_link_detect link_info; |
| 1758 | struct false_alarm_statistics falsealm_cnt; |
| 1759 | |
| 1760 | struct rtl_rate_priv *rate_priv; |
| 1761 | |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 1762 | /* sta entry list for ap adhoc or mesh */ |
| 1763 | struct list_head entry_list; |
| 1764 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1765 | struct rtl_debug dbg; |
Larry Finger | b0302ab | 2012-01-30 09:54:49 -0600 | [diff] [blame] | 1766 | int max_fw_size; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1767 | |
| 1768 | /* |
| 1769 | *hal_cfg : for diff cards |
| 1770 | *intf_ops : for diff interrface usb/pcie |
| 1771 | */ |
| 1772 | struct rtl_hal_cfg *cfg; |
| 1773 | struct rtl_intf_ops *intf_ops; |
| 1774 | |
| 1775 | /*this var will be set by set_bit, |
| 1776 | and was used to indicate status of |
| 1777 | interface or hardware */ |
| 1778 | unsigned long status; |
| 1779 | |
Larry Finger | 0985dfb | 2012-04-19 16:32:40 -0500 | [diff] [blame] | 1780 | /* tables for dm */ |
| 1781 | struct dig_t dm_digtable; |
| 1782 | struct ps_t dm_pstable; |
| 1783 | |
Larry Finger | 30899cc | 2012-03-19 15:44:31 -0500 | [diff] [blame] | 1784 | /* data buffer pointer for USB reads */ |
| 1785 | __le32 *usb_data; |
| 1786 | int usb_data_index; |
| 1787 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1788 | /*This must be the last item so |
| 1789 | that it points to the data allocated |
| 1790 | beyond this structure like: |
| 1791 | rtl_pci_priv or rtl_usb_priv */ |
| 1792 | u8 priv[0]; |
| 1793 | }; |
| 1794 | |
| 1795 | #define rtl_priv(hw) (((struct rtl_priv *)(hw)->priv)) |
| 1796 | #define rtl_mac(rtlpriv) (&((rtlpriv)->mac80211)) |
| 1797 | #define rtl_hal(rtlpriv) (&((rtlpriv)->rtlhal)) |
| 1798 | #define rtl_efuse(rtlpriv) (&((rtlpriv)->efuse)) |
| 1799 | #define rtl_psc(rtlpriv) (&((rtlpriv)->psc)) |
| 1800 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1801 | |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1802 | /*************************************** |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1803 | Bluetooth Co-existence Related |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1804 | ****************************************/ |
| 1805 | |
| 1806 | enum bt_ant_num { |
| 1807 | ANT_X2 = 0, |
| 1808 | ANT_X1 = 1, |
| 1809 | }; |
| 1810 | |
| 1811 | enum bt_co_type { |
| 1812 | BT_2WIRE = 0, |
| 1813 | BT_ISSC_3WIRE = 1, |
| 1814 | BT_ACCEL = 2, |
| 1815 | BT_CSR_BC4 = 3, |
| 1816 | BT_CSR_BC8 = 4, |
| 1817 | BT_RTL8756 = 5, |
| 1818 | }; |
| 1819 | |
| 1820 | enum bt_cur_state { |
| 1821 | BT_OFF = 0, |
| 1822 | BT_ON = 1, |
| 1823 | }; |
| 1824 | |
| 1825 | enum bt_service_type { |
| 1826 | BT_SCO = 0, |
| 1827 | BT_A2DP = 1, |
| 1828 | BT_HID = 2, |
| 1829 | BT_HID_IDLE = 3, |
| 1830 | BT_SCAN = 4, |
| 1831 | BT_IDLE = 5, |
| 1832 | BT_OTHER_ACTION = 6, |
| 1833 | BT_BUSY = 7, |
| 1834 | BT_OTHERBUSY = 8, |
| 1835 | BT_PAN = 9, |
| 1836 | }; |
| 1837 | |
| 1838 | enum bt_radio_shared { |
| 1839 | BT_RADIO_SHARED = 0, |
| 1840 | BT_RADIO_INDIVIDUAL = 1, |
| 1841 | }; |
| 1842 | |
| 1843 | struct bt_coexist_info { |
| 1844 | |
| 1845 | /* EEPROM BT info. */ |
| 1846 | u8 eeprom_bt_coexist; |
| 1847 | u8 eeprom_bt_type; |
| 1848 | u8 eeprom_bt_ant_num; |
| 1849 | u8 eeprom_bt_ant_isolation; |
| 1850 | u8 eeprom_bt_radio_shared; |
| 1851 | |
| 1852 | u8 bt_coexistence; |
| 1853 | u8 bt_ant_num; |
| 1854 | u8 bt_coexist_type; |
| 1855 | u8 bt_state; |
| 1856 | u8 bt_cur_state; /* 0:on, 1:off */ |
| 1857 | u8 bt_ant_isolation; /* 0:good, 1:bad */ |
| 1858 | u8 bt_pape_ctrl; /* 0:SW, 1:SW/HW dynamic */ |
| 1859 | u8 bt_service; |
| 1860 | u8 bt_radio_shared_type; |
| 1861 | u8 bt_rfreg_origin_1e; |
| 1862 | u8 bt_rfreg_origin_1f; |
| 1863 | u8 bt_rssi_state; |
| 1864 | u32 ratio_tx; |
| 1865 | u32 ratio_pri; |
| 1866 | u32 bt_edca_ul; |
| 1867 | u32 bt_edca_dl; |
| 1868 | |
Larry Finger | 3247328 | 2011-03-27 16:19:57 -0500 | [diff] [blame] | 1869 | bool init_set; |
| 1870 | bool bt_busy_traffic; |
| 1871 | bool bt_traffic_mode_set; |
| 1872 | bool bt_non_traffic_mode_set; |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1873 | |
Larry Finger | 3247328 | 2011-03-27 16:19:57 -0500 | [diff] [blame] | 1874 | bool fw_coexist_all_off; |
| 1875 | bool sw_coexist_all_off; |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1876 | u32 current_state; |
| 1877 | u32 previous_state; |
| 1878 | u8 bt_pre_rssi_state; |
| 1879 | |
Larry Finger | 3247328 | 2011-03-27 16:19:57 -0500 | [diff] [blame] | 1880 | u8 reg_bt_iso; |
| 1881 | u8 reg_bt_sco; |
George | 18d3006 | 2011-02-19 16:29:02 -0600 | [diff] [blame] | 1882 | |
| 1883 | }; |
| 1884 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 1885 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1886 | /**************************************** |
| 1887 | mem access macro define start |
| 1888 | Call endian free function when |
| 1889 | 1. Read/write packet content. |
| 1890 | 2. Before write integer to IO. |
| 1891 | 3. After read integer from IO. |
| 1892 | ****************************************/ |
Larry Finger | 9e0bc67 | 2011-02-19 16:30:02 -0600 | [diff] [blame] | 1893 | /* Convert little data endian to host ordering */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1894 | #define EF1BYTE(_val) \ |
| 1895 | ((u8)(_val)) |
| 1896 | #define EF2BYTE(_val) \ |
| 1897 | (le16_to_cpu(_val)) |
| 1898 | #define EF4BYTE(_val) \ |
| 1899 | (le32_to_cpu(_val)) |
| 1900 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1901 | /* Read data from memory */ |
| 1902 | #define READEF1BYTE(_ptr) \ |
| 1903 | EF1BYTE(*((u8 *)(_ptr))) |
Larry Finger | 9e0bc67 | 2011-02-19 16:30:02 -0600 | [diff] [blame] | 1904 | /* Read le16 data from memory and convert to host ordering */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1905 | #define READEF2BYTE(_ptr) \ |
Larry Finger | 8e2c406 | 2012-08-31 15:39:00 -0500 | [diff] [blame] | 1906 | EF2BYTE(*(_ptr)) |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1907 | #define READEF4BYTE(_ptr) \ |
Larry Finger | 8e2c406 | 2012-08-31 15:39:00 -0500 | [diff] [blame] | 1908 | EF4BYTE(*(_ptr)) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1909 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1910 | /* Write data to memory */ |
| 1911 | #define WRITEEF1BYTE(_ptr, _val) \ |
| 1912 | (*((u8 *)(_ptr))) = EF1BYTE(_val) |
Larry Finger | 9e0bc67 | 2011-02-19 16:30:02 -0600 | [diff] [blame] | 1913 | /* Write le16 data to memory in host ordering */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1914 | #define WRITEEF2BYTE(_ptr, _val) \ |
| 1915 | (*((u16 *)(_ptr))) = EF2BYTE(_val) |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1916 | #define WRITEEF4BYTE(_ptr, _val) \ |
Larry Finger | 8e2c406 | 2012-08-31 15:39:00 -0500 | [diff] [blame] | 1917 | (*((u32 *)(_ptr))) = EF2BYTE(_val) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1918 | |
Larry Finger | 9e0bc67 | 2011-02-19 16:30:02 -0600 | [diff] [blame] | 1919 | /* Create a bit mask |
| 1920 | * Examples: |
| 1921 | * BIT_LEN_MASK_32(0) => 0x00000000 |
| 1922 | * BIT_LEN_MASK_32(1) => 0x00000001 |
| 1923 | * BIT_LEN_MASK_32(2) => 0x00000003 |
| 1924 | * BIT_LEN_MASK_32(32) => 0xFFFFFFFF |
| 1925 | */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1926 | #define BIT_LEN_MASK_32(__bitlen) \ |
| 1927 | (0xFFFFFFFF >> (32 - (__bitlen))) |
| 1928 | #define BIT_LEN_MASK_16(__bitlen) \ |
| 1929 | (0xFFFF >> (16 - (__bitlen))) |
| 1930 | #define BIT_LEN_MASK_8(__bitlen) \ |
| 1931 | (0xFF >> (8 - (__bitlen))) |
| 1932 | |
Larry Finger | 9e0bc67 | 2011-02-19 16:30:02 -0600 | [diff] [blame] | 1933 | /* Create an offset bit mask |
| 1934 | * Examples: |
| 1935 | * BIT_OFFSET_LEN_MASK_32(0, 2) => 0x00000003 |
| 1936 | * BIT_OFFSET_LEN_MASK_32(16, 2) => 0x00030000 |
| 1937 | */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1938 | #define BIT_OFFSET_LEN_MASK_32(__bitoffset, __bitlen) \ |
| 1939 | (BIT_LEN_MASK_32(__bitlen) << (__bitoffset)) |
| 1940 | #define BIT_OFFSET_LEN_MASK_16(__bitoffset, __bitlen) \ |
| 1941 | (BIT_LEN_MASK_16(__bitlen) << (__bitoffset)) |
| 1942 | #define BIT_OFFSET_LEN_MASK_8(__bitoffset, __bitlen) \ |
| 1943 | (BIT_LEN_MASK_8(__bitlen) << (__bitoffset)) |
| 1944 | |
| 1945 | /*Description: |
Larry Finger | 9e0bc67 | 2011-02-19 16:30:02 -0600 | [diff] [blame] | 1946 | * Return 4-byte value in host byte ordering from |
| 1947 | * 4-byte pointer in little-endian system. |
| 1948 | */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1949 | #define LE_P4BYTE_TO_HOST_4BYTE(__pstart) \ |
Larry Finger | 8e2c406 | 2012-08-31 15:39:00 -0500 | [diff] [blame] | 1950 | (EF4BYTE(*((__le32 *)(__pstart)))) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1951 | #define LE_P2BYTE_TO_HOST_2BYTE(__pstart) \ |
Larry Finger | 8e2c406 | 2012-08-31 15:39:00 -0500 | [diff] [blame] | 1952 | (EF2BYTE(*((__le16 *)(__pstart)))) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1953 | #define LE_P1BYTE_TO_HOST_1BYTE(__pstart) \ |
| 1954 | (EF1BYTE(*((u8 *)(__pstart)))) |
| 1955 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1956 | /*Description: |
| 1957 | Translate subfield (continuous bits in little-endian) of 4-byte |
| 1958 | value to host byte ordering.*/ |
| 1959 | #define LE_BITS_TO_4BYTE(__pstart, __bitoffset, __bitlen) \ |
| 1960 | ( \ |
| 1961 | (LE_P4BYTE_TO_HOST_4BYTE(__pstart) >> (__bitoffset)) & \ |
| 1962 | BIT_LEN_MASK_32(__bitlen) \ |
| 1963 | ) |
| 1964 | #define LE_BITS_TO_2BYTE(__pstart, __bitoffset, __bitlen) \ |
| 1965 | ( \ |
| 1966 | (LE_P2BYTE_TO_HOST_2BYTE(__pstart) >> (__bitoffset)) & \ |
| 1967 | BIT_LEN_MASK_16(__bitlen) \ |
| 1968 | ) |
| 1969 | #define LE_BITS_TO_1BYTE(__pstart, __bitoffset, __bitlen) \ |
| 1970 | ( \ |
| 1971 | (LE_P1BYTE_TO_HOST_1BYTE(__pstart) >> (__bitoffset)) & \ |
| 1972 | BIT_LEN_MASK_8(__bitlen) \ |
| 1973 | ) |
| 1974 | |
Larry Finger | 9e0bc67 | 2011-02-19 16:30:02 -0600 | [diff] [blame] | 1975 | /* Description: |
| 1976 | * Mask subfield (continuous bits in little-endian) of 4-byte value |
| 1977 | * and return the result in 4-byte value in host byte ordering. |
| 1978 | */ |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1979 | #define LE_BITS_CLEARED_TO_4BYTE(__pstart, __bitoffset, __bitlen) \ |
| 1980 | ( \ |
| 1981 | LE_P4BYTE_TO_HOST_4BYTE(__pstart) & \ |
| 1982 | (~BIT_OFFSET_LEN_MASK_32(__bitoffset, __bitlen)) \ |
| 1983 | ) |
| 1984 | #define LE_BITS_CLEARED_TO_2BYTE(__pstart, __bitoffset, __bitlen) \ |
| 1985 | ( \ |
| 1986 | LE_P2BYTE_TO_HOST_2BYTE(__pstart) & \ |
| 1987 | (~BIT_OFFSET_LEN_MASK_16(__bitoffset, __bitlen)) \ |
| 1988 | ) |
| 1989 | #define LE_BITS_CLEARED_TO_1BYTE(__pstart, __bitoffset, __bitlen) \ |
| 1990 | ( \ |
| 1991 | LE_P1BYTE_TO_HOST_1BYTE(__pstart) & \ |
| 1992 | (~BIT_OFFSET_LEN_MASK_8(__bitoffset, __bitlen)) \ |
| 1993 | ) |
| 1994 | |
Larry Finger | 9e0bc67 | 2011-02-19 16:30:02 -0600 | [diff] [blame] | 1995 | /* Description: |
| 1996 | * Set subfield of little-endian 4-byte value to specified value. |
| 1997 | */ |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 1998 | #define SET_BITS_TO_LE_4BYTE(__pstart, __bitoffset, __bitlen, __val) \ |
Larry Finger | 8e2c406 | 2012-08-31 15:39:00 -0500 | [diff] [blame] | 1999 | *((u32 *)(__pstart)) = \ |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2000 | ( \ |
| 2001 | LE_BITS_CLEARED_TO_4BYTE(__pstart, __bitoffset, __bitlen) | \ |
| 2002 | ((((u32)__val) & BIT_LEN_MASK_32(__bitlen)) << (__bitoffset)) \ |
| 2003 | ); |
| 2004 | #define SET_BITS_TO_LE_2BYTE(__pstart, __bitoffset, __bitlen, __val) \ |
Larry Finger | 8e2c406 | 2012-08-31 15:39:00 -0500 | [diff] [blame] | 2005 | *((u16 *)(__pstart)) = \ |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2006 | ( \ |
| 2007 | LE_BITS_CLEARED_TO_2BYTE(__pstart, __bitoffset, __bitlen) | \ |
| 2008 | ((((u16)__val) & BIT_LEN_MASK_16(__bitlen)) << (__bitoffset)) \ |
| 2009 | ); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2010 | #define SET_BITS_TO_LE_1BYTE(__pstart, __bitoffset, __bitlen, __val) \ |
| 2011 | *((u8 *)(__pstart)) = EF1BYTE \ |
| 2012 | ( \ |
| 2013 | LE_BITS_CLEARED_TO_1BYTE(__pstart, __bitoffset, __bitlen) | \ |
| 2014 | ((((u8)__val) & BIT_LEN_MASK_8(__bitlen)) << (__bitoffset)) \ |
| 2015 | ); |
| 2016 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2017 | #define N_BYTE_ALIGMENT(__value, __aligment) ((__aligment == 1) ? \ |
| 2018 | (__value) : (((__value + __aligment - 1) / __aligment) * __aligment)) |
| 2019 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2020 | /**************************************** |
| 2021 | mem access macro define end |
| 2022 | ****************************************/ |
| 2023 | |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 2024 | #define byte(x, n) ((x >> (8 * n)) & 0xff) |
| 2025 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2026 | #define packet_get_type(_packet) (EF1BYTE((_packet).octet[0]) & 0xFC) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2027 | #define RTL_WATCH_DOG_TIME 2000 |
| 2028 | #define MSECS(t) msecs_to_jiffies(t) |
Larry Finger | 17c9ac6 | 2011-02-19 16:29:57 -0600 | [diff] [blame] | 2029 | #define WLAN_FC_GET_VERS(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_VERS) |
| 2030 | #define WLAN_FC_GET_TYPE(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_FTYPE) |
| 2031 | #define WLAN_FC_GET_STYPE(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_STYPE) |
| 2032 | #define WLAN_FC_MORE_DATA(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_MOREDATA) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2033 | #define SEQ_TO_SN(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4) |
| 2034 | #define SN_TO_SEQ(ssn) (((ssn) << 4) & IEEE80211_SCTL_SEQ) |
| 2035 | #define MAX_SN ((IEEE80211_SCTL_SEQ) >> 4) |
| 2036 | |
| 2037 | #define RT_RF_OFF_LEVL_ASPM BIT(0) /*PCI ASPM */ |
| 2038 | #define RT_RF_OFF_LEVL_CLK_REQ BIT(1) /*PCI clock request */ |
| 2039 | #define RT_RF_OFF_LEVL_PCI_D3 BIT(2) /*PCI D3 mode */ |
| 2040 | /*NIC halt, re-initialize hw parameters*/ |
| 2041 | #define RT_RF_OFF_LEVL_HALT_NIC BIT(3) |
| 2042 | #define RT_RF_OFF_LEVL_FREE_FW BIT(4) /*FW free, re-download the FW */ |
| 2043 | #define RT_RF_OFF_LEVL_FW_32K BIT(5) /*FW in 32k */ |
| 2044 | /*Always enable ASPM and Clock Req in initialization.*/ |
| 2045 | #define RT_RF_PS_LEVEL_ALWAYS_ASPM BIT(6) |
Larry Finger | e97b775 | 2011-02-19 16:29:07 -0600 | [diff] [blame] | 2046 | /* no matter RFOFF or SLEEP we set PS_ASPM_LEVL*/ |
| 2047 | #define RT_PS_LEVEL_ASPM BIT(7) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2048 | /*When LPS is on, disable 2R if no packet is received or transmittd.*/ |
| 2049 | #define RT_RF_LPS_DISALBE_2R BIT(30) |
| 2050 | #define RT_RF_LPS_LEVEL_ASPM BIT(31) /*LPS with ASPM */ |
| 2051 | #define RT_IN_PS_LEVEL(ppsc, _ps_flg) \ |
| 2052 | ((ppsc->cur_ps_level & _ps_flg) ? true : false) |
| 2053 | #define RT_CLEAR_PS_LEVEL(ppsc, _ps_flg) \ |
| 2054 | (ppsc->cur_ps_level &= (~(_ps_flg))) |
| 2055 | #define RT_SET_PS_LEVEL(ppsc, _ps_flg) \ |
| 2056 | (ppsc->cur_ps_level |= _ps_flg) |
| 2057 | |
| 2058 | #define container_of_dwork_rtl(x, y, z) \ |
| 2059 | container_of(container_of(x, struct delayed_work, work), y, z) |
| 2060 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2061 | #define FILL_OCTET_STRING(_os, _octet, _len) \ |
| 2062 | (_os).octet = (u8 *)(_octet); \ |
| 2063 | (_os).length = (_len); |
| 2064 | |
| 2065 | #define CP_MACADDR(des, src) \ |
| 2066 | ((des)[0] = (src)[0], (des)[1] = (src)[1],\ |
| 2067 | (des)[2] = (src)[2], (des)[3] = (src)[3],\ |
| 2068 | (des)[4] = (src)[4], (des)[5] = (src)[5]) |
| 2069 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2070 | static inline u8 rtl_read_byte(struct rtl_priv *rtlpriv, u32 addr) |
| 2071 | { |
| 2072 | return rtlpriv->io.read8_sync(rtlpriv, addr); |
| 2073 | } |
| 2074 | |
| 2075 | static inline u16 rtl_read_word(struct rtl_priv *rtlpriv, u32 addr) |
| 2076 | { |
| 2077 | return rtlpriv->io.read16_sync(rtlpriv, addr); |
| 2078 | } |
| 2079 | |
| 2080 | static inline u32 rtl_read_dword(struct rtl_priv *rtlpriv, u32 addr) |
| 2081 | { |
| 2082 | return rtlpriv->io.read32_sync(rtlpriv, addr); |
| 2083 | } |
| 2084 | |
| 2085 | static inline void rtl_write_byte(struct rtl_priv *rtlpriv, u32 addr, u8 val8) |
| 2086 | { |
| 2087 | rtlpriv->io.write8_async(rtlpriv, addr, val8); |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2088 | |
| 2089 | if (rtlpriv->cfg->write_readback) |
| 2090 | rtlpriv->io.read8_sync(rtlpriv, addr); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2091 | } |
| 2092 | |
| 2093 | static inline void rtl_write_word(struct rtl_priv *rtlpriv, u32 addr, u16 val16) |
| 2094 | { |
| 2095 | rtlpriv->io.write16_async(rtlpriv, addr, val16); |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2096 | |
| 2097 | if (rtlpriv->cfg->write_readback) |
| 2098 | rtlpriv->io.read16_sync(rtlpriv, addr); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2099 | } |
| 2100 | |
| 2101 | static inline void rtl_write_dword(struct rtl_priv *rtlpriv, |
| 2102 | u32 addr, u32 val32) |
| 2103 | { |
| 2104 | rtlpriv->io.write32_async(rtlpriv, addr, val32); |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2105 | |
| 2106 | if (rtlpriv->cfg->write_readback) |
| 2107 | rtlpriv->io.read32_sync(rtlpriv, addr); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2108 | } |
| 2109 | |
| 2110 | static inline u32 rtl_get_bbreg(struct ieee80211_hw *hw, |
| 2111 | u32 regaddr, u32 bitmask) |
| 2112 | { |
Joe Perches | d6b6fc14 | 2012-03-17 13:36:30 -0700 | [diff] [blame] | 2113 | struct rtl_priv *rtlpriv = hw->priv; |
| 2114 | |
| 2115 | return rtlpriv->cfg->ops->get_bbreg(hw, regaddr, bitmask); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2116 | } |
| 2117 | |
| 2118 | static inline void rtl_set_bbreg(struct ieee80211_hw *hw, u32 regaddr, |
| 2119 | u32 bitmask, u32 data) |
| 2120 | { |
Joe Perches | d6b6fc14 | 2012-03-17 13:36:30 -0700 | [diff] [blame] | 2121 | struct rtl_priv *rtlpriv = hw->priv; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2122 | |
Joe Perches | d6b6fc14 | 2012-03-17 13:36:30 -0700 | [diff] [blame] | 2123 | rtlpriv->cfg->ops->set_bbreg(hw, regaddr, bitmask, data); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2124 | } |
| 2125 | |
| 2126 | static inline u32 rtl_get_rfreg(struct ieee80211_hw *hw, |
| 2127 | enum radio_path rfpath, u32 regaddr, |
| 2128 | u32 bitmask) |
| 2129 | { |
Joe Perches | d6b6fc14 | 2012-03-17 13:36:30 -0700 | [diff] [blame] | 2130 | struct rtl_priv *rtlpriv = hw->priv; |
| 2131 | |
| 2132 | return rtlpriv->cfg->ops->get_rfreg(hw, rfpath, regaddr, bitmask); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2133 | } |
| 2134 | |
| 2135 | static inline void rtl_set_rfreg(struct ieee80211_hw *hw, |
| 2136 | enum radio_path rfpath, u32 regaddr, |
| 2137 | u32 bitmask, u32 data) |
| 2138 | { |
Joe Perches | d6b6fc14 | 2012-03-17 13:36:30 -0700 | [diff] [blame] | 2139 | struct rtl_priv *rtlpriv = hw->priv; |
| 2140 | |
| 2141 | rtlpriv->cfg->ops->set_rfreg(hw, rfpath, regaddr, bitmask, data); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2142 | } |
| 2143 | |
| 2144 | static inline bool is_hal_stop(struct rtl_hal *rtlhal) |
| 2145 | { |
| 2146 | return (_HAL_STATE_STOP == rtlhal->state); |
| 2147 | } |
| 2148 | |
| 2149 | static inline void set_hal_start(struct rtl_hal *rtlhal) |
| 2150 | { |
| 2151 | rtlhal->state = _HAL_STATE_START; |
| 2152 | } |
| 2153 | |
| 2154 | static inline void set_hal_stop(struct rtl_hal *rtlhal) |
| 2155 | { |
| 2156 | rtlhal->state = _HAL_STATE_STOP; |
| 2157 | } |
| 2158 | |
| 2159 | static inline u8 get_rf_type(struct rtl_phy *rtlphy) |
| 2160 | { |
| 2161 | return rtlphy->rf_type; |
| 2162 | } |
| 2163 | |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2164 | static inline struct ieee80211_hdr *rtl_get_hdr(struct sk_buff *skb) |
| 2165 | { |
| 2166 | return (struct ieee80211_hdr *)(skb->data); |
| 2167 | } |
| 2168 | |
Larry Finger | d3bb142 | 2011-04-25 13:23:20 -0500 | [diff] [blame] | 2169 | static inline __le16 rtl_get_fc(struct sk_buff *skb) |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2170 | { |
Larry Finger | d3bb142 | 2011-04-25 13:23:20 -0500 | [diff] [blame] | 2171 | return rtl_get_hdr(skb)->frame_control; |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2172 | } |
| 2173 | |
| 2174 | static inline u16 rtl_get_tid_h(struct ieee80211_hdr *hdr) |
| 2175 | { |
| 2176 | return (ieee80211_get_qos_ctl(hdr))[0] & IEEE80211_QOS_CTL_TID_MASK; |
| 2177 | } |
| 2178 | |
| 2179 | static inline u16 rtl_get_tid(struct sk_buff *skb) |
| 2180 | { |
| 2181 | return rtl_get_tid_h(rtl_get_hdr(skb)); |
| 2182 | } |
| 2183 | |
| 2184 | static inline struct ieee80211_sta *get_sta(struct ieee80211_hw *hw, |
| 2185 | struct ieee80211_vif *vif, |
Larry Finger | 7101f40 | 2011-06-10 11:05:23 -0500 | [diff] [blame] | 2186 | const u8 *bssid) |
Chaoming_Li | 3dad618 | 2011-04-25 12:52:49 -0500 | [diff] [blame] | 2187 | { |
| 2188 | return ieee80211_find_sta(vif, bssid); |
| 2189 | } |
| 2190 | |
Larry Finger | 2461c7d | 2012-08-31 15:39:01 -0500 | [diff] [blame^] | 2191 | static inline struct ieee80211_sta *rtl_find_sta(struct ieee80211_hw *hw, |
| 2192 | u8 *mac_addr) |
| 2193 | { |
| 2194 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
| 2195 | return ieee80211_find_sta(mac->vif, mac_addr); |
| 2196 | } |
| 2197 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 2198 | #endif |