diff options
author | George <george0505@realtek.com> | 2011-02-19 17:29:02 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-02-21 15:39:57 -0500 |
commit | 18d30067d3b0c7e1362b7a866a9873e03a6d7d62 (patch) | |
tree | 9e8cecdf40832eb6260f6c03d04c5217be6ff042 /drivers/net | |
parent | 7ea4724036ed17ec811cb8082af7760f04484ef7 (diff) |
rtlwifi: Add headers for rtl8187cu
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: George <george0505@realtek.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/def.h | 62 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/dm.h | 32 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/fw.h | 30 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/hw.h | 107 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/led.h | 37 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/mac.h | 180 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/phy.h | 34 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/reg.h | 30 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/rf.h | 30 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/sw.h | 35 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/table.h | 71 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/trx.h | 430 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/wifi.h | 138 |
13 files changed, 1212 insertions, 4 deletions
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/def.h b/drivers/net/wireless/rtlwifi/rtl8192cu/def.h new file mode 100644 index 000000000000..c54940ea72fe --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/def.h | |||
@@ -0,0 +1,62 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. | ||
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 | #include "../rtl8192ce/def.h" | ||
31 | |||
32 | /*------------------------------------------------------------------------- | ||
33 | * Chip specific | ||
34 | *-------------------------------------------------------------------------*/ | ||
35 | #define CHIP_8723 BIT(2) /* RTL8723 With BT feature */ | ||
36 | #define CHIP_8723_DRV_REV BIT(3) /* RTL8723 Driver Revised */ | ||
37 | #define NORMAL_CHIP BIT(4) | ||
38 | #define CHIP_VENDOR_UMC BIT(5) | ||
39 | #define CHIP_VENDOR_UMC_B_CUT BIT(6) | ||
40 | |||
41 | #define IS_NORMAL_CHIP(version) \ | ||
42 | (((version) & NORMAL_CHIP) ? true : false) | ||
43 | |||
44 | #define IS_8723_SERIES(version) \ | ||
45 | (((version) & CHIP_8723) ? true : false) | ||
46 | |||
47 | #define IS_92C_1T2R(version) \ | ||
48 | (((version) & CHIP_92C) && ((version) & CHIP_92C_1T2R)) | ||
49 | |||
50 | #define IS_VENDOR_UMC(version) \ | ||
51 | (((version) & CHIP_VENDOR_UMC) ? true : false) | ||
52 | |||
53 | #define IS_VENDOR_UMC_A_CUT(version) \ | ||
54 | (((version) & CHIP_VENDOR_UMC) ? (((version) & (BIT(6) | BIT(7))) ? \ | ||
55 | false : true) : false) | ||
56 | |||
57 | #define IS_VENDOR_8723_A_CUT(version) \ | ||
58 | (((version) & CHIP_VENDOR_UMC) ? (((version) & (BIT(6))) ? \ | ||
59 | false : true) : false) | ||
60 | |||
61 | #define CHIP_BONDING_92C_1T2R 0x1 | ||
62 | #define CHIP_BONDING_IDENTIFIER(_value) (((_value) >> 22) & 0x3) | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/dm.h b/drivers/net/wireless/rtlwifi/rtl8192cu/dm.h new file mode 100644 index 000000000000..5e7fbfc2851b --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/dm.h | |||
@@ -0,0 +1,32 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. | ||
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 | #include "../rtl8192ce/dm.h" | ||
31 | |||
32 | void rtl92c_dm_dynamic_txpower(struct ieee80211_hw *hw); | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/fw.h b/drivers/net/wireless/rtlwifi/rtl8192cu/fw.h new file mode 100644 index 000000000000..a3bbac811d08 --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/fw.h | |||
@@ -0,0 +1,30 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. | ||
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 | #include "../rtl8192ce/fw.h" | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/hw.h b/drivers/net/wireless/rtlwifi/rtl8192cu/hw.h new file mode 100644 index 000000000000..3c0ea5ea6db5 --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/hw.h | |||
@@ -0,0 +1,107 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. | ||
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 __RTL92CU_HW_H__ | ||
31 | #define __RTL92CU_HW_H__ | ||
32 | |||
33 | #define LLT_POLLING_LLT_THRESHOLD 20 | ||
34 | #define LLT_POLLING_READY_TIMEOUT_COUNT 100 | ||
35 | #define LLT_LAST_ENTRY_OF_TX_PKT_BUFFER 255 | ||
36 | |||
37 | #define RX_PAGE_SIZE_REG_VALUE PBP_128 | ||
38 | /* Note: We will divide number of page equally for each queue | ||
39 | * other than public queue! */ | ||
40 | #define TX_TOTAL_PAGE_NUMBER 0xF8 | ||
41 | #define TX_PAGE_BOUNDARY (TX_TOTAL_PAGE_NUMBER + 1) | ||
42 | |||
43 | |||
44 | #define CHIP_B_PAGE_NUM_PUBQ 0xE7 | ||
45 | |||
46 | /* For Test Chip Setting | ||
47 | * (HPQ + LPQ + PUBQ) shall be TX_TOTAL_PAGE_NUMBER */ | ||
48 | #define CHIP_A_PAGE_NUM_PUBQ 0x7E | ||
49 | |||
50 | |||
51 | /* For Chip A Setting */ | ||
52 | #define WMM_CHIP_A_TX_TOTAL_PAGE_NUMBER 0xF5 | ||
53 | #define WMM_CHIP_A_TX_PAGE_BOUNDARY \ | ||
54 | (WMM_CHIP_A_TX_TOTAL_PAGE_NUMBER + 1) /* F6 */ | ||
55 | |||
56 | #define WMM_CHIP_A_PAGE_NUM_PUBQ 0xA3 | ||
57 | #define WMM_CHIP_A_PAGE_NUM_HPQ 0x29 | ||
58 | #define WMM_CHIP_A_PAGE_NUM_LPQ 0x29 | ||
59 | |||
60 | |||
61 | |||
62 | /* Note: For Chip B Setting ,modify later */ | ||
63 | #define WMM_CHIP_B_TX_TOTAL_PAGE_NUMBER 0xF5 | ||
64 | #define WMM_CHIP_B_TX_PAGE_BOUNDARY \ | ||
65 | (WMM_CHIP_B_TX_TOTAL_PAGE_NUMBER + 1) /* F6 */ | ||
66 | |||
67 | #define WMM_CHIP_B_PAGE_NUM_PUBQ 0xB0 | ||
68 | #define WMM_CHIP_B_PAGE_NUM_HPQ 0x29 | ||
69 | #define WMM_CHIP_B_PAGE_NUM_LPQ 0x1C | ||
70 | #define WMM_CHIP_B_PAGE_NUM_NPQ 0x1C | ||
71 | |||
72 | #define BOARD_TYPE_NORMAL_MASK 0xE0 | ||
73 | #define BOARD_TYPE_TEST_MASK 0x0F | ||
74 | |||
75 | /* should be renamed and moved to another file */ | ||
76 | enum _BOARD_TYPE_8192CUSB { | ||
77 | BOARD_USB_DONGLE = 0, /* USB dongle */ | ||
78 | BOARD_USB_High_PA = 1, /* USB dongle - high power PA */ | ||
79 | BOARD_MINICARD = 2, /* Minicard */ | ||
80 | BOARD_USB_SOLO = 3, /* USB solo-Slim module */ | ||
81 | BOARD_USB_COMBO = 4, /* USB Combo-Slim module */ | ||
82 | }; | ||
83 | |||
84 | #define IS_HIGHT_PA(boardtype) \ | ||
85 | ((boardtype == BOARD_USB_High_PA) ? true : false) | ||
86 | |||
87 | #define RTL92C_DRIVER_INFO_SIZE 4 | ||
88 | void rtl92cu_read_eeprom_info(struct ieee80211_hw *hw); | ||
89 | void rtl92cu_enable_hw_security_config(struct ieee80211_hw *hw); | ||
90 | int rtl92cu_hw_init(struct ieee80211_hw *hw); | ||
91 | void rtl92cu_card_disable(struct ieee80211_hw *hw); | ||
92 | int rtl92cu_set_network_type(struct ieee80211_hw *hw, enum nl80211_iftype type); | ||
93 | void rtl92cu_set_beacon_related_registers(struct ieee80211_hw *hw); | ||
94 | void rtl92cu_set_beacon_interval(struct ieee80211_hw *hw); | ||
95 | void rtl92cu_update_interrupt_mask(struct ieee80211_hw *hw, | ||
96 | u32 add_msr, u32 rm_msr); | ||
97 | void rtl92cu_get_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val); | ||
98 | void rtl92cu_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val); | ||
99 | void rtl92cu_update_hal_rate_table(struct ieee80211_hw *hw); | ||
100 | void rtl92cu_update_hal_rate_mask(struct ieee80211_hw *hw, u8 rssi_level); | ||
101 | |||
102 | void rtl92cu_update_channel_access_setting(struct ieee80211_hw *hw); | ||
103 | bool rtl92cu_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 * valid); | ||
104 | void rtl92cu_set_check_bssid(struct ieee80211_hw *hw, bool check_bssid); | ||
105 | u8 _rtl92c_get_chnl_group(u8 chnl); | ||
106 | |||
107 | #endif | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/led.h b/drivers/net/wireless/rtlwifi/rtl8192cu/led.h new file mode 100644 index 000000000000..decaee4d1eb1 --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/led.h | |||
@@ -0,0 +1,37 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. All rights reserved. | ||
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 | *****************************************************************************/ | ||
27 | |||
28 | #ifndef __RTL92CU_LED_H__ | ||
29 | #define __RTL92CU_LED_H__ | ||
30 | |||
31 | void rtl92cu_init_sw_leds(struct ieee80211_hw *hw); | ||
32 | void rtl92cu_deinit_sw_leds(struct ieee80211_hw *hw); | ||
33 | void rtl92cu_sw_led_on(struct ieee80211_hw *hw, struct rtl_led *pled); | ||
34 | void rtl92cu_sw_led_off(struct ieee80211_hw *hw, struct rtl_led *pled); | ||
35 | void rtl92cu_led_control(struct ieee80211_hw *hw, enum led_ctl_mode ledaction); | ||
36 | |||
37 | #endif | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/mac.h b/drivers/net/wireless/rtlwifi/rtl8192cu/mac.h new file mode 100644 index 000000000000..298fdb724aa5 --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/mac.h | |||
@@ -0,0 +1,180 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. All rights reserved. | ||
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 __RTL92C_MAC_H__ | ||
31 | #define __RTL92C_MAC_H__ | ||
32 | |||
33 | #define LLT_LAST_ENTRY_OF_TX_PKT_BUFFER 255 | ||
34 | #define DRIVER_EARLY_INT_TIME 0x05 | ||
35 | #define BCN_DMA_ATIME_INT_TIME 0x02 | ||
36 | |||
37 | void rtl92c_read_chip_version(struct ieee80211_hw *hw); | ||
38 | bool rtl92c_llt_write(struct ieee80211_hw *hw, u32 address, u32 data); | ||
39 | bool rtl92c_init_llt_table(struct ieee80211_hw *hw, u32 boundary); | ||
40 | void rtl92c_set_key(struct ieee80211_hw *hw, u32 key_index, | ||
41 | u8 *p_macaddr, bool is_group, u8 enc_algo, | ||
42 | bool is_wepkey, bool clear_all); | ||
43 | void rtl92c_enable_interrupt(struct ieee80211_hw *hw); | ||
44 | void rtl92c_disable_interrupt(struct ieee80211_hw *hw); | ||
45 | void rtl92c_set_qos(struct ieee80211_hw *hw, int aci); | ||
46 | |||
47 | |||
48 | /*--------------------------------------------------------------- | ||
49 | * Hardware init functions | ||
50 | *---------------------------------------------------------------*/ | ||
51 | void rtl92c_set_mac_addr(struct ieee80211_hw *hw, const u8 *addr); | ||
52 | void rtl92c_init_interrupt(struct ieee80211_hw *hw); | ||
53 | void rtl92c_init_driver_info_size(struct ieee80211_hw *hw, u8 size); | ||
54 | |||
55 | int rtl92c_set_network_type(struct ieee80211_hw *hw, enum nl80211_iftype type); | ||
56 | void rtl92c_init_network_type(struct ieee80211_hw *hw); | ||
57 | void rtl92c_init_adaptive_ctrl(struct ieee80211_hw *hw); | ||
58 | void rtl92c_init_rate_fallback(struct ieee80211_hw *hw); | ||
59 | |||
60 | void rtl92c_init_edca_param(struct ieee80211_hw *hw, | ||
61 | u16 queue, | ||
62 | u16 txop, | ||
63 | u8 ecwmax, | ||
64 | u8 ecwmin, | ||
65 | u8 aifs); | ||
66 | |||
67 | void rtl92c_init_edca(struct ieee80211_hw *hw); | ||
68 | void rtl92c_init_ampdu_aggregation(struct ieee80211_hw *hw); | ||
69 | void rtl92c_init_beacon_max_error(struct ieee80211_hw *hw, bool infra_mode); | ||
70 | void rtl92c_init_rdg_setting(struct ieee80211_hw *hw); | ||
71 | void rtl92c_init_retry_function(struct ieee80211_hw *hw); | ||
72 | |||
73 | void rtl92c_init_beacon_parameters(struct ieee80211_hw *hw, | ||
74 | enum version_8192c version); | ||
75 | |||
76 | void rtl92c_disable_fast_edca(struct ieee80211_hw *hw); | ||
77 | void rtl92c_set_min_space(struct ieee80211_hw *hw, bool is2T); | ||
78 | |||
79 | /* For filter */ | ||
80 | u16 rtl92c_get_mgt_filter(struct ieee80211_hw *hw); | ||
81 | void rtl92c_set_mgt_filter(struct ieee80211_hw *hw, u16 filter); | ||
82 | u16 rtl92c_get_ctrl_filter(struct ieee80211_hw *hw); | ||
83 | void rtl92c_set_ctrl_filter(struct ieee80211_hw *hw, u16 filter); | ||
84 | u16 rtl92c_get_data_filter(struct ieee80211_hw *hw); | ||
85 | void rtl92c_set_data_filter(struct ieee80211_hw *hw, u16 filter); | ||
86 | |||
87 | |||
88 | u32 rtl92c_get_txdma_status(struct ieee80211_hw *hw); | ||
89 | |||
90 | #define RX_HAL_IS_CCK_RATE(_pdesc)\ | ||
91 | (GET_RX_DESC_RX_MCS(_pdesc) == DESC92C_RATE1M ||\ | ||
92 | GET_RX_DESC_RX_MCS(_pdesc) == DESC92C_RATE2M ||\ | ||
93 | GET_RX_DESC_RX_MCS(_pdesc) == DESC92C_RATE5_5M ||\ | ||
94 | GET_RX_DESC_RX_MCS(_pdesc) == DESC92C_RATE11M) | ||
95 | |||
96 | struct rx_fwinfo_92c { | ||
97 | u8 gain_trsw[4]; | ||
98 | u8 pwdb_all; | ||
99 | u8 cfosho[4]; | ||
100 | u8 cfotail[4]; | ||
101 | char rxevm[2]; | ||
102 | char rxsnr[4]; | ||
103 | u8 pdsnr[2]; | ||
104 | u8 csi_current[2]; | ||
105 | u8 csi_target[2]; | ||
106 | u8 sigevm; | ||
107 | u8 max_ex_pwr; | ||
108 | u8 ex_intf_flag:1; | ||
109 | u8 sgi_en:1; | ||
110 | u8 rxsc:2; | ||
111 | u8 reserve:4; | ||
112 | } __packed; | ||
113 | |||
114 | struct rx_desc_92c { | ||
115 | u32 length:14; | ||
116 | u32 crc32:1; | ||
117 | u32 icverror:1; | ||
118 | u32 drv_infosize:4; | ||
119 | u32 security:3; | ||
120 | u32 qos:1; | ||
121 | u32 shift:2; | ||
122 | u32 phystatus:1; | ||
123 | u32 swdec:1; | ||
124 | u32 lastseg:1; | ||
125 | u32 firstseg:1; | ||
126 | u32 eor:1; | ||
127 | u32 own:1; | ||
128 | u32 macid:5; /* word 1 */ | ||
129 | u32 tid:4; | ||
130 | u32 hwrsvd:5; | ||
131 | u32 paggr:1; | ||
132 | u32 faggr:1; | ||
133 | u32 a1_fit:4; | ||
134 | u32 a2_fit:4; | ||
135 | u32 pam:1; | ||
136 | u32 pwr:1; | ||
137 | u32 moredata:1; | ||
138 | u32 morefrag:1; | ||
139 | u32 type:2; | ||
140 | u32 mc:1; | ||
141 | u32 bc:1; | ||
142 | u32 seq:12; /* word 2 */ | ||
143 | u32 frag:4; | ||
144 | u32 nextpktlen:14; | ||
145 | u32 nextind:1; | ||
146 | u32 rsvd:1; | ||
147 | u32 rxmcs:6; /* word 3 */ | ||
148 | u32 rxht:1; | ||
149 | u32 amsdu:1; | ||
150 | u32 splcp:1; | ||
151 | u32 bandwidth:1; | ||
152 | u32 htc:1; | ||
153 | u32 tcpchk_rpt:1; | ||
154 | u32 ipcchk_rpt:1; | ||
155 | u32 tcpchk_valid:1; | ||
156 | u32 hwpcerr:1; | ||
157 | u32 hwpcind:1; | ||
158 | u32 iv0:16; | ||
159 | u32 iv1; /* word 4 */ | ||
160 | u32 tsfl; /* word 5 */ | ||
161 | u32 bufferaddress; /* word 6 */ | ||
162 | u32 bufferaddress64; /* word 7 */ | ||
163 | } __packed; | ||
164 | |||
165 | enum rtl_desc_qsel rtl92c_map_hwqueue_to_fwqueue(u16 fc, | ||
166 | unsigned int | ||
167 | skb_queue); | ||
168 | void rtl92c_translate_rx_signal_stuff(struct ieee80211_hw *hw, | ||
169 | struct sk_buff *skb, | ||
170 | struct rtl_stats *pstats, | ||
171 | struct rx_desc_92c *pdesc, | ||
172 | struct rx_fwinfo_92c *p_drvinfo); | ||
173 | |||
174 | /*--------------------------------------------------------------- | ||
175 | * Card disable functions | ||
176 | *---------------------------------------------------------------*/ | ||
177 | |||
178 | |||
179 | |||
180 | #endif | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/phy.h b/drivers/net/wireless/rtlwifi/rtl8192cu/phy.h new file mode 100644 index 000000000000..c456c15afbf1 --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/phy.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. | ||
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 | #include "../rtl8192ce/phy.h" | ||
31 | |||
32 | void rtl92c_bb_block_on(struct ieee80211_hw *hw); | ||
33 | bool rtl8192_phy_check_is_legal_rfpath(struct ieee80211_hw *hw, u32 rfpath); | ||
34 | void rtl92c_phy_set_io(struct ieee80211_hw *hw); | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/reg.h b/drivers/net/wireless/rtlwifi/rtl8192cu/reg.h new file mode 100644 index 000000000000..7f1be614c998 --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/reg.h | |||
@@ -0,0 +1,30 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. | ||
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 | #include "../rtl8192ce/reg.h" | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/rf.h b/drivers/net/wireless/rtlwifi/rtl8192cu/rf.h new file mode 100644 index 000000000000..c4ed125ef4dc --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/rf.h | |||
@@ -0,0 +1,30 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. | ||
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 | #include "../rtl8192ce/rf.h" | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/sw.h b/drivers/net/wireless/rtlwifi/rtl8192cu/sw.h new file mode 100644 index 000000000000..3b2c66339554 --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/sw.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. All rights reserved. | ||
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 __RTL92CU_SW_H__ | ||
31 | #define __RTL92CU_SW_H__ | ||
32 | |||
33 | #define EFUSE_MAX_SECTION 16 | ||
34 | |||
35 | #endif | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/table.h b/drivers/net/wireless/rtlwifi/rtl8192cu/table.h new file mode 100644 index 000000000000..c3d5cd826cfa --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/table.h | |||
@@ -0,0 +1,71 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. All rights reserved. | ||
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 __RTL92CU_TABLE__H_ | ||
31 | #define __RTL92CU_TABLE__H_ | ||
32 | |||
33 | #include <linux/types.h> | ||
34 | |||
35 | #define RTL8192CUPHY_REG_2TARRAY_LENGTH 374 | ||
36 | extern u32 RTL8192CUPHY_REG_2TARRAY[RTL8192CUPHY_REG_2TARRAY_LENGTH]; | ||
37 | #define RTL8192CUPHY_REG_1TARRAY_LENGTH 374 | ||
38 | extern u32 RTL8192CUPHY_REG_1TARRAY[RTL8192CUPHY_REG_1TARRAY_LENGTH]; | ||
39 | |||
40 | #define RTL8192CUPHY_REG_ARRAY_PGLENGTH 336 | ||
41 | extern u32 RTL8192CUPHY_REG_ARRAY_PG[RTL8192CUPHY_REG_ARRAY_PGLENGTH]; | ||
42 | |||
43 | #define RTL8192CURADIOA_2TARRAYLENGTH 282 | ||
44 | extern u32 RTL8192CURADIOA_2TARRAY[RTL8192CURADIOA_2TARRAYLENGTH]; | ||
45 | #define RTL8192CURADIOB_2TARRAYLENGTH 78 | ||
46 | extern u32 RTL8192CU_RADIOB_2TARRAY[RTL8192CURADIOB_2TARRAYLENGTH]; | ||
47 | #define RTL8192CURADIOA_1TARRAYLENGTH 282 | ||
48 | extern u32 RTL8192CU_RADIOA_1TARRAY[RTL8192CURADIOA_1TARRAYLENGTH]; | ||
49 | #define RTL8192CURADIOB_1TARRAYLENGTH 1 | ||
50 | extern u32 RTL8192CU_RADIOB_1TARRAY[RTL8192CURADIOB_1TARRAYLENGTH]; | ||
51 | |||
52 | #define RTL8192CUMAC_2T_ARRAYLENGTH 172 | ||
53 | extern u32 RTL8192CUMAC_2T_ARRAY[RTL8192CUMAC_2T_ARRAYLENGTH]; | ||
54 | |||
55 | #define RTL8192CUAGCTAB_2TARRAYLENGTH 320 | ||
56 | extern u32 RTL8192CUAGCTAB_2TARRAY[RTL8192CUAGCTAB_2TARRAYLENGTH]; | ||
57 | #define RTL8192CUAGCTAB_1TARRAYLENGTH 320 | ||
58 | extern u32 RTL8192CUAGCTAB_1TARRAY[RTL8192CUAGCTAB_1TARRAYLENGTH]; | ||
59 | |||
60 | #define RTL8192CUPHY_REG_1T_HPArrayLength 378 | ||
61 | extern u32 RTL8192CUPHY_REG_1T_HPArray[RTL8192CUPHY_REG_1T_HPArrayLength]; | ||
62 | |||
63 | #define RTL8192CUPHY_REG_Array_PG_HPLength 336 | ||
64 | extern u32 RTL8192CUPHY_REG_Array_PG_HP[RTL8192CUPHY_REG_Array_PG_HPLength]; | ||
65 | |||
66 | #define RTL8192CURadioA_1T_HPArrayLength 282 | ||
67 | extern u32 RTL8192CURadioA_1T_HPArray[RTL8192CURadioA_1T_HPArrayLength]; | ||
68 | #define RTL8192CUAGCTAB_1T_HPArrayLength 320 | ||
69 | extern u32 Rtl8192CUAGCTAB_1T_HPArray[RTL8192CUAGCTAB_1T_HPArrayLength]; | ||
70 | |||
71 | #endif | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/trx.h b/drivers/net/wireless/rtlwifi/rtl8192cu/trx.h new file mode 100644 index 000000000000..b396d46edbb7 --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/trx.h | |||
@@ -0,0 +1,430 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2009-2010 Realtek Corporation. All rights reserved. | ||
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 __RTL92CU_TRX_H__ | ||
31 | #define __RTL92CU_TRX_H__ | ||
32 | |||
33 | #define RTL92C_USB_BULK_IN_NUM 1 | ||
34 | #define RTL92C_NUM_RX_URBS 8 | ||
35 | #define RTL92C_NUM_TX_URBS 32 | ||
36 | |||
37 | #define RTL92C_SIZE_MAX_RX_BUFFER 15360 /* 8192 */ | ||
38 | #define RX_DRV_INFO_SIZE_UNIT 8 | ||
39 | |||
40 | enum usb_rx_agg_mode { | ||
41 | USB_RX_AGG_DISABLE, | ||
42 | USB_RX_AGG_DMA, | ||
43 | USB_RX_AGG_USB, | ||
44 | USB_RX_AGG_DMA_USB | ||
45 | }; | ||
46 | |||
47 | #define TX_SELE_HQ BIT(0) /* High Queue */ | ||
48 | #define TX_SELE_LQ BIT(1) /* Low Queue */ | ||
49 | #define TX_SELE_NQ BIT(2) /* Normal Queue */ | ||
50 | |||
51 | #define RTL_USB_TX_AGG_NUM_DESC 5 | ||
52 | |||
53 | #define RTL_USB_RX_AGG_PAGE_NUM 4 | ||
54 | #define RTL_USB_RX_AGG_PAGE_TIMEOUT 3 | ||
55 | |||
56 | #define RTL_USB_RX_AGG_BLOCK_NUM 5 | ||
57 | #define RTL_USB_RX_AGG_BLOCK_TIMEOUT 3 | ||
58 | |||
59 | /*======================== rx status =========================================*/ | ||
60 | |||
61 | struct rx_drv_info_92c { | ||
62 | /* | ||
63 | * Driver info contain PHY status and other variabel size info | ||
64 | * PHY Status content as below | ||
65 | */ | ||
66 | |||
67 | /* DWORD 0 */ | ||
68 | u8 gain_trsw[4]; | ||
69 | |||
70 | /* DWORD 1 */ | ||
71 | u8 pwdb_all; | ||
72 | u8 cfosho[4]; | ||
73 | |||
74 | /* DWORD 2 */ | ||
75 | u8 cfotail[4]; | ||
76 | |||
77 | /* DWORD 3 */ | ||
78 | s8 rxevm[2]; | ||
79 | s8 rxsnr[4]; | ||
80 | |||
81 | /* DWORD 4 */ | ||
82 | u8 pdsnr[2]; | ||
83 | |||
84 | /* DWORD 5 */ | ||
85 | u8 csi_current[2]; | ||
86 | u8 csi_target[2]; | ||
87 | |||
88 | /* DWORD 6 */ | ||
89 | u8 sigevm; | ||
90 | u8 max_ex_pwr; | ||
91 | u8 ex_intf_flag:1; | ||
92 | u8 sgi_en:1; | ||
93 | u8 rxsc:2; | ||
94 | u8 reserve:4; | ||
95 | } __packed; | ||
96 | |||
97 | /* Define a macro that takes a le32 word, converts it to host ordering, | ||
98 | * right shifts by a specified count, creates a mask of the specified | ||
99 | * bit count, and extracts that number of bits. | ||
100 | */ | ||
101 | |||
102 | #define SHIFT_AND_MASK_LE(__pdesc, __shift, __bits) \ | ||
103 | ((le32_to_cpu(*(((__le32 *)(__pdesc)))) >> (__shift)) & \ | ||
104 | BIT_LEN_MASK_32(__bits)) | ||
105 | |||
106 | /* Define a macro that clears a bit field in an le32 word and | ||
107 | * sets the specified value into that bit field. The resulting | ||
108 | * value remains in le32 ordering; however, it is properly converted | ||
109 | * to host ordering for the clear and set operations before conversion | ||
110 | * back to le32. | ||
111 | */ | ||
112 | |||
113 | #define SET_BITS_OFFSET_LE(__pdesc, __shift, __len, __val) \ | ||
114 | (*(__le32 *)(__pdesc) = \ | ||
115 | (cpu_to_le32((le32_to_cpu(*((__le32 *)(__pdesc))) & \ | ||
116 | (~(BIT_OFFSET_LEN_MASK_32((__shift), __len)))) | \ | ||
117 | (((u32)(__val) & BIT_LEN_MASK_32(__len)) << (__shift))))); | ||
118 | |||
119 | /* macros to read various fields in RX descriptor */ | ||
120 | |||
121 | /* DWORD 0 */ | ||
122 | #define GET_RX_DESC_PKT_LEN(__rxdesc) \ | ||
123 | SHIFT_AND_MASK_LE((__rxdesc), 0, 14) | ||
124 | #define GET_RX_DESC_CRC32(__rxdesc) \ | ||
125 | SHIFT_AND_MASK_LE(__rxdesc, 14, 1) | ||
126 | #define GET_RX_DESC_ICV(__rxdesc) \ | ||
127 | SHIFT_AND_MASK_LE(__rxdesc, 15, 1) | ||
128 | #define GET_RX_DESC_DRVINFO_SIZE(__rxdesc) \ | ||
129 | SHIFT_AND_MASK_LE(__rxdesc, 16, 4) | ||
130 | #define GET_RX_DESC_SECURITY(__rxdesc) \ | ||
131 | SHIFT_AND_MASK_LE(__rxdesc, 20, 3) | ||
132 | #define GET_RX_DESC_QOS(__rxdesc) \ | ||
133 | SHIFT_AND_MASK_LE(__rxdesc, 23, 1) | ||
134 | #define GET_RX_DESC_SHIFT(__rxdesc) \ | ||
135 | SHIFT_AND_MASK_LE(__rxdesc, 24, 2) | ||
136 | #define GET_RX_DESC_PHY_STATUS(__rxdesc) \ | ||
137 | SHIFT_AND_MASK_LE(__rxdesc, 26, 1) | ||
138 | #define GET_RX_DESC_SWDEC(__rxdesc) \ | ||
139 | SHIFT_AND_MASK_LE(__rxdesc, 27, 1) | ||
140 | #define GET_RX_DESC_LAST_SEG(__rxdesc) \ | ||
141 | SHIFT_AND_MASK_LE(__rxdesc, 28, 1) | ||
142 | #define GET_RX_DESC_FIRST_SEG(__rxdesc) \ | ||
143 | SHIFT_AND_MASK_LE(__rxdesc, 29, 1) | ||
144 | #define GET_RX_DESC_EOR(__rxdesc) \ | ||
145 | SHIFT_AND_MASK_LE(__rxdesc, 30, 1) | ||
146 | #define GET_RX_DESC_OWN(__rxdesc) \ | ||
147 | SHIFT_AND_MASK_LE(__rxdesc, 31, 1) | ||
148 | |||
149 | /* DWORD 1 */ | ||
150 | #define GET_RX_DESC_MACID(__rxdesc) \ | ||
151 | SHIFT_AND_MASK_LE(__rxdesc+4, 0, 5) | ||
152 | #define GET_RX_DESC_TID(__rxdesc) \ | ||
153 | SHIFT_AND_MASK_LE(__rxdesc+4, 5, 4) | ||
154 | #define GET_RX_DESC_PAGGR(__rxdesc) \ | ||
155 | SHIFT_AND_MASK_LE(__rxdesc+4, 14, 1) | ||
156 | #define GET_RX_DESC_FAGGR(__rxdesc) \ | ||
157 | SHIFT_AND_MASK_LE(__rxdesc+4, 15, 1) | ||
158 | #define GET_RX_DESC_A1_FIT(__rxdesc) \ | ||
159 | SHIFT_AND_MASK_LE(__rxdesc+4, 16, 4) | ||
160 | #define GET_RX_DESC_A2_FIT(__rxdesc) \ | ||
161 | SHIFT_AND_MASK_LE(__rxdesc+4, 20, 4) | ||
162 | #define GET_RX_DESC_PAM(__rxdesc) \ | ||
163 | SHIFT_AND_MASK_LE(__rxdesc+4, 24, 1) | ||
164 | #define GET_RX_DESC_PWR(__rxdesc) \ | ||
165 | SHIFT_AND_MASK_LE(__rxdesc+4, 25, 1) | ||
166 | #define GET_RX_DESC_MORE_DATA(__rxdesc) \ | ||
167 | SHIFT_AND_MASK_LE(__rxdesc+4, 26, 1) | ||
168 | #define GET_RX_DESC_MORE_FRAG(__rxdesc) \ | ||
169 | SHIFT_AND_MASK_LE(__rxdesc+4, 27, 1) | ||
170 | #define GET_RX_DESC_TYPE(__rxdesc) \ | ||
171 | SHIFT_AND_MASK_LE(__rxdesc+4, 28, 2) | ||
172 | #define GET_RX_DESC_MC(__rxdesc) \ | ||
173 | SHIFT_AND_MASK_LE(__rxdesc+4, 30, 1) | ||
174 | #define GET_RX_DESC_BC(__rxdesc) \ | ||
175 | SHIFT_AND_MASK_LE(__rxdesc+4, 31, 1) | ||
176 | |||
177 | /* DWORD 2 */ | ||
178 | #define GET_RX_DESC_SEQ(__rxdesc) \ | ||
179 | SHIFT_AND_MASK_LE(__rxdesc+8, 0, 12) | ||
180 | #define GET_RX_DESC_FRAG(__rxdesc) \ | ||
181 | SHIFT_AND_MASK_LE(__rxdesc+8, 12, 4) | ||
182 | #define GET_RX_DESC_USB_AGG_PKTNUM(__rxdesc) \ | ||
183 | SHIFT_AND_MASK_LE(__rxdesc+8, 16, 8) | ||
184 | #define GET_RX_DESC_NEXT_IND(__rxdesc) \ | ||
185 | SHIFT_AND_MASK_LE(__rxdesc+8, 30, 1) | ||
186 | |||
187 | /* DWORD 3 */ | ||
188 | #define GET_RX_DESC_RX_MCS(__rxdesc) \ | ||
189 | SHIFT_AND_MASK_LE(__rxdesc+12, 0, 6) | ||
190 | #define GET_RX_DESC_RX_HT(__rxdesc) \ | ||
191 | SHIFT_AND_MASK_LE(__rxdesc+12, 6, 1) | ||
192 | #define GET_RX_DESC_AMSDU(__rxdesc) \ | ||
193 | SHIFT_AND_MASK_LE(__rxdesc+12, 7, 1) | ||
194 | #define GET_RX_DESC_SPLCP(__rxdesc) \ | ||
195 | SHIFT_AND_MASK_LE(__rxdesc+12, 8, 1) | ||
196 | #define GET_RX_DESC_BW(__rxdesc) \ | ||
197 | SHIFT_AND_MASK_LE(__rxdesc+12, 9, 1) | ||
198 | #define GET_RX_DESC_HTC(__rxdesc) \ | ||
199 | SHIFT_AND_MASK_LE(__rxdesc+12, 10, 1) | ||
200 | #define GET_RX_DESC_TCP_CHK_RPT(__rxdesc) \ | ||
201 | SHIFT_AND_MASK_LE(__rxdesc+12, 11, 1) | ||
202 | #define GET_RX_DESC_IP_CHK_RPT(__rxdesc) \ | ||
203 | SHIFT_AND_MASK_LE(__rxdesc+12, 12, 1) | ||
204 | #define GET_RX_DESC_TCP_CHK_VALID(__rxdesc) \ | ||
205 | SHIFT_AND_MASK_LE(__rxdesc+12, 13, 1) | ||
206 | #define GET_RX_DESC_HWPC_ERR(__rxdesc) \ | ||
207 | SHIFT_AND_MASK_LE(__rxdesc+12, 14, 1) | ||
208 | #define GET_RX_DESC_HWPC_IND(__rxdesc) \ | ||
209 | SHIFT_AND_MASK_LE(__rxdesc+12, 15, 1) | ||
210 | #define GET_RX_DESC_IV0(__rxdesc) \ | ||
211 | SHIFT_AND_MASK_LE(__rxdesc+12, 16, 16) | ||
212 | |||
213 | /* DWORD 4 */ | ||
214 | #define GET_RX_DESC_IV1(__rxdesc) \ | ||
215 | SHIFT_AND_MASK_LE(__rxdesc+16, 0, 32) | ||
216 | |||
217 | /* DWORD 5 */ | ||
218 | #define GET_RX_DESC_TSFL(__rxdesc) \ | ||
219 | SHIFT_AND_MASK_LE(__rxdesc+20, 0, 32) | ||
220 | |||
221 | /*======================= tx desc ============================================*/ | ||
222 | |||
223 | /* macros to set various fields in TX descriptor */ | ||
224 | |||
225 | /* Dword 0 */ | ||
226 | #define SET_TX_DESC_PKT_SIZE(__txdesc, __value) \ | ||
227 | SET_BITS_OFFSET_LE(__txdesc, 0, 16, __value) | ||
228 | #define SET_TX_DESC_OFFSET(__txdesc, __value) \ | ||
229 | SET_BITS_OFFSET_LE(__txdesc, 16, 8, __value) | ||
230 | #define SET_TX_DESC_BMC(__txdesc, __value) \ | ||
231 | SET_BITS_OFFSET_LE(__txdesc, 24, 1, __value) | ||
232 | #define SET_TX_DESC_HTC(__txdesc, __value) \ | ||
233 | SET_BITS_OFFSET_LE(__txdesc, 25, 1, __value) | ||
234 | #define SET_TX_DESC_LAST_SEG(__txdesc, __value) \ | ||
235 | SET_BITS_OFFSET_LE(__txdesc, 26, 1, __value) | ||
236 | #define SET_TX_DESC_FIRST_SEG(__txdesc, __value) \ | ||
237 | SET_BITS_OFFSET_LE(__txdesc, 27, 1, __value) | ||
238 | #define SET_TX_DESC_LINIP(__txdesc, __value) \ | ||
239 | SET_BITS_OFFSET_LE(__txdesc, 28, 1, __value) | ||
240 | #define SET_TX_DESC_NO_ACM(__txdesc, __value) \ | ||
241 | SET_BITS_OFFSET_LE(__txdesc, 29, 1, __value) | ||
242 | #define SET_TX_DESC_GF(__txdesc, __value) \ | ||
243 | SET_BITS_OFFSET_LE(__txdesc, 30, 1, __value) | ||
244 | #define SET_TX_DESC_OWN(__txdesc, __value) \ | ||
245 | SET_BITS_OFFSET_LE(__txdesc, 31, 1, __value) | ||
246 | |||
247 | |||
248 | /* Dword 1 */ | ||
249 | #define SET_TX_DESC_MACID(__txdesc, __value) \ | ||
250 | SET_BITS_OFFSET_LE(__txdesc+4, 0, 5, __value) | ||
251 | #define SET_TX_DESC_AGG_ENABLE(__txdesc, __value) \ | ||
252 | SET_BITS_OFFSET_LE(__txdesc+4, 5, 1, __value) | ||
253 | #define SET_TX_DESC_AGG_BREAK(__txdesc, __value) \ | ||
254 | SET_BITS_OFFSET_LE(__txdesc+4, 6, 1, __value) | ||
255 | #define SET_TX_DESC_RDG_ENABLE(__txdesc, __value) \ | ||
256 | SET_BITS_OFFSET_LE(__txdesc+4, 7, 1, __value) | ||
257 | #define SET_TX_DESC_QUEUE_SEL(__txdesc, __value) \ | ||
258 | SET_BITS_OFFSET_LE(__txdesc+4, 8, 5, __value) | ||
259 | #define SET_TX_DESC_RDG_NAV_EXT(__txdesc, __value) \ | ||
260 | SET_BITS_OFFSET_LE(__txdesc+4, 13, 1, __value) | ||
261 | #define SET_TX_DESC_LSIG_TXOP_EN(__txdesc, __value) \ | ||
262 | SET_BITS_OFFSET_LE(__txdesc+4, 14, 1, __value) | ||
263 | #define SET_TX_DESC_PIFS(__txdesc, __value) \ | ||
264 | SET_BITS_OFFSET_LE(__txdesc+4, 15, 1, __value) | ||
265 | #define SET_TX_DESC_RATE_ID(__txdesc, __value) \ | ||
266 | SET_BITS_OFFSET_LE(__txdesc+4, 16, 4, __value) | ||
267 | #define SET_TX_DESC_RA_BRSR_ID(__txdesc, __value) \ | ||
268 | SET_BITS_OFFSET_LE(__txdesc+4, 16, 4, __value) | ||
269 | #define SET_TX_DESC_NAV_USE_HDR(__txdesc, __value) \ | ||
270 | SET_BITS_OFFSET_LE(__txdesc+4, 20, 1, __value) | ||
271 | #define SET_TX_DESC_EN_DESC_ID(__txdesc, __value) \ | ||
272 | SET_BITS_OFFSET_LE(__txdesc+4, 21, 1, __value) | ||
273 | #define SET_TX_DESC_SEC_TYPE(__txdesc, __value) \ | ||
274 | SET_BITS_OFFSET_LE(__txdesc+4, 22, 2, __value) | ||
275 | #define SET_TX_DESC_PKT_OFFSET(__txdesc, __value) \ | ||
276 | SET_BITS_OFFSET_LE(__txdesc+4, 26, 5, __value) | ||
277 | |||
278 | /* Dword 2 */ | ||
279 | #define SET_TX_DESC_RTS_RC(__txdesc, __value) \ | ||
280 | SET_BITS_OFFSET_LE(__txdesc+8, 0, 6, __value) | ||
281 | #define SET_TX_DESC_DATA_RC(__txdesc, __value) \ | ||
282 | SET_BITS_OFFSET_LE(__txdesc+8, 6, 6, __value) | ||
283 | #define SET_TX_DESC_BAR_RTY_TH(__txdesc, __value) \ | ||
284 | SET_BITS_OFFSET_LE(__txdesc+8, 14, 2, __value) | ||
285 | #define SET_TX_DESC_MORE_FRAG(__txdesc, __value) \ | ||
286 | SET_BITS_OFFSET_LE(__txdesc+8, 17, 1, __value) | ||
287 | #define SET_TX_DESC_RAW(__txdesc, __value) \ | ||
288 | SET_BITS_OFFSET_LE(__txdesc+8, 18, 1, __value) | ||
289 | #define SET_TX_DESC_CCX(__txdesc, __value) \ | ||
290 | SET_BITS_OFFSET_LE(__txdesc+8, 19, 1, __value) | ||
291 | #define SET_TX_DESC_AMPDU_DENSITY(__txdesc, __value) \ | ||
292 | SET_BITS_OFFSET_LE(__txdesc+8, 20, 3, __value) | ||
293 | #define SET_TX_DESC_ANTSEL_A(__txdesc, __value) \ | ||
294 | SET_BITS_OFFSET_LE(__txdesc+8, 24, 1, __value) | ||
295 | #define SET_TX_DESC_ANTSEL_B(__txdesc, __value) \ | ||
296 | SET_BITS_OFFSET_LE(__txdesc+8, 25, 1, __value) | ||
297 | #define SET_TX_DESC_TX_ANT_CCK(__txdesc, __value) \ | ||
298 | SET_BITS_OFFSET_LE(__txdesc+8, 26, 2, __value) | ||
299 | #define SET_TX_DESC_TX_ANTL(__txdesc, __value) \ | ||
300 | SET_BITS_OFFSET_LE(__txdesc+8, 28, 2, __value) | ||
301 | #define SET_TX_DESC_TX_ANT_HT(__txdesc, __value) \ | ||
302 | SET_BITS_OFFSET_LE(__txdesc+8, 30, 2, __value) | ||
303 | |||
304 | /* Dword 3 */ | ||
305 | #define SET_TX_DESC_NEXT_HEAP_PAGE(__txdesc, __value) \ | ||
306 | SET_BITS_OFFSET_LE(__txdesc+12, 0, 8, __value) | ||
307 | #define SET_TX_DESC_TAIL_PAGE(__txdesc, __value) \ | ||
308 | SET_BITS_OFFSET_LE(__txdesc+12, 8, 8, __value) | ||
309 | #define SET_TX_DESC_SEQ(__txdesc, __value) \ | ||
310 | SET_BITS_OFFSET_LE(__txdesc+12, 16, 12, __value) | ||
311 | #define SET_TX_DESC_PKT_ID(__txdesc, __value) \ | ||
312 | SET_BITS_OFFSET_LE(__txdesc+12, 28, 4, __value) | ||
313 | |||
314 | /* Dword 4 */ | ||
315 | #define SET_TX_DESC_RTS_RATE(__txdesc, __value) \ | ||
316 | SET_BITS_OFFSET_LE(__txdesc+16, 0, 5, __value) | ||
317 | #define SET_TX_DESC_AP_DCFE(__txdesc, __value) \ | ||
318 | SET_BITS_OFFSET_LE(__txdesc+16, 5, 1, __value) | ||
319 | #define SET_TX_DESC_QOS(__txdesc, __value) \ | ||
320 | SET_BITS_OFFSET_LE(__txdesc+16, 6, 1, __value) | ||
321 | #define SET_TX_DESC_HWSEQ_EN(__txdesc, __value) \ | ||
322 | SET_BITS_OFFSET_LE(__txdesc+16, 7, 1, __value) | ||
323 | #define SET_TX_DESC_USE_RATE(__txdesc, __value) \ | ||
324 | SET_BITS_OFFSET_LE(__txdesc+16, 8, 1, __value) | ||
325 | #define SET_TX_DESC_DISABLE_RTS_FB(__txdesc, __value) \ | ||
326 | SET_BITS_OFFSET_LE(__txdesc+16, 9, 1, __value) | ||
327 | #define SET_TX_DESC_DISABLE_FB(__txdesc, __value) \ | ||
328 | SET_BITS_OFFSET_LE(__txdesc+16, 10, 1, __value) | ||
329 | #define SET_TX_DESC_CTS2SELF(__txdesc, __value) \ | ||
330 | SET_BITS_OFFSET_LE(__txdesc+16, 11, 1, __value) | ||
331 | #define SET_TX_DESC_RTS_ENABLE(__txdesc, __value) \ | ||
332 | SET_BITS_OFFSET_LE(__txdesc+16, 12, 1, __value) | ||
333 | #define SET_TX_DESC_HW_RTS_ENABLE(__txdesc, __value) \ | ||
334 | SET_BITS_OFFSET_LE(__txdesc+16, 13, 1, __value) | ||
335 | #define SET_TX_DESC_WAIT_DCTS(__txdesc, __value) \ | ||
336 | SET_BITS_OFFSET_LE(__txdesc+16, 18, 1, __value) | ||
337 | #define SET_TX_DESC_CTS2AP_EN(__txdesc, __value) \ | ||
338 | SET_BITS_OFFSET_LE(__txdesc+16, 19, 1, __value) | ||
339 | #define SET_TX_DESC_DATA_SC(__txdesc, __value) \ | ||
340 | SET_BITS_OFFSET_LE(__txdesc+16, 20, 2, __value) | ||
341 | #define SET_TX_DESC_DATA_STBC(__txdesc, __value) \ | ||
342 | SET_BITS_OFFSET_LE(__txdesc+16, 22, 2, __value) | ||
343 | #define SET_TX_DESC_DATA_SHORT(__txdesc, __value) \ | ||
344 | SET_BITS_OFFSET_LE(__txdesc+16, 24, 1, __value) | ||
345 | #define SET_TX_DESC_DATA_BW(__txdesc, __value) \ | ||
346 | SET_BITS_OFFSET_LE(__txdesc+16, 25, 1, __value) | ||
347 | #define SET_TX_DESC_RTS_SHORT(__txdesc, __value) \ | ||
348 | SET_BITS_OFFSET_LE(__txdesc+16, 26, 1, __value) | ||
349 | #define SET_TX_DESC_RTS_BW(__txdesc, __value) \ | ||
350 | SET_BITS_OFFSET_LE(__txdesc+16, 27, 1, __value) | ||
351 | #define SET_TX_DESC_RTS_SC(__txdesc, __value) \ | ||
352 | SET_BITS_OFFSET_LE(__txdesc+16, 28, 2, __value) | ||
353 | #define SET_TX_DESC_RTS_STBC(__txdesc, __value) \ | ||
354 | SET_BITS_OFFSET_LE(__txdesc+16, 30, 2, __value) | ||
355 | |||
356 | /* Dword 5 */ | ||
357 | #define SET_TX_DESC_TX_RATE(__pdesc, __val) \ | ||
358 | SET_BITS_OFFSET_LE(__pdesc+20, 0, 6, __val) | ||
359 | #define SET_TX_DESC_DATA_SHORTGI(__pdesc, __val) \ | ||
360 | SET_BITS_OFFSET_LE(__pdesc+20, 6, 1, __val) | ||
361 | #define SET_TX_DESC_CCX_TAG(__pdesc, __val) \ | ||
362 | SET_BITS_OFFSET_LE(__pdesc+20, 7, 1, __val) | ||
363 | #define SET_TX_DESC_DATA_RATE_FB_LIMIT(__txdesc, __value) \ | ||
364 | SET_BITS_OFFSET_LE(__txdesc+20, 8, 5, __value) | ||
365 | #define SET_TX_DESC_RTS_RATE_FB_LIMIT(__txdesc, __value) \ | ||
366 | SET_BITS_OFFSET_LE(__txdesc+20, 13, 4, __value) | ||
367 | #define SET_TX_DESC_RETRY_LIMIT_ENABLE(__txdesc, __value) \ | ||
368 | SET_BITS_OFFSET_LE(__txdesc+20, 17, 1, __value) | ||
369 | #define SET_TX_DESC_DATA_RETRY_LIMIT(__txdesc, __value) \ | ||
370 | SET_BITS_OFFSET_LE(__txdesc+20, 18, 6, __value) | ||
371 | #define SET_TX_DESC_USB_TXAGG_NUM(__txdesc, __value) \ | ||
372 | SET_BITS_OFFSET_LE(__txdesc+20, 24, 8, __value) | ||
373 | |||
374 | /* Dword 6 */ | ||
375 | #define SET_TX_DESC_TXAGC_A(__txdesc, __value) \ | ||
376 | SET_BITS_OFFSET_LE(__txdesc+24, 0, 5, __value) | ||
377 | #define SET_TX_DESC_TXAGC_B(__txdesc, __value) \ | ||
378 | SET_BITS_OFFSET_LE(__txdesc+24, 5, 5, __value) | ||
379 | #define SET_TX_DESC_USB_MAX_LEN(__txdesc, __value) \ | ||
380 | SET_BITS_OFFSET_LE(__txdesc+24, 10, 1, __value) | ||
381 | #define SET_TX_DESC_MAX_AGG_NUM(__txdesc, __value) \ | ||
382 | SET_BITS_OFFSET_LE(__txdesc+24, 11, 5, __value) | ||
383 | #define SET_TX_DESC_MCSG1_MAX_LEN(__txdesc, __value) \ | ||
384 | SET_BITS_OFFSET_LE(__txdesc+24, 16, 4, __value) | ||
385 | #define SET_TX_DESC_MCSG2_MAX_LEN(__txdesc, __value) \ | ||
386 | SET_BITS_OFFSET_LE(__txdesc+24, 20, 4, __value) | ||
387 | #define SET_TX_DESC_MCSG3_MAX_LEN(__txdesc, __value) \ | ||
388 | SET_BITS_OFFSET_LE(__txdesc+24, 24, 4, __value) | ||
389 | #define SET_TX_DESC_MCSG7_MAX_LEN(__txdesc, __value) \ | ||
390 | SET_BITS_OFFSET_LE(__txdesc+24, 28, 4, __value) | ||
391 | |||
392 | /* Dword 7 */ | ||
393 | #define SET_TX_DESC_TX_DESC_CHECKSUM(__txdesc, __value) \ | ||
394 | SET_BITS_OFFSET_LE(__txdesc+28, 0, 16, __value) | ||
395 | #define SET_TX_DESC_MCSG4_MAX_LEN(__txdesc, __value) \ | ||
396 | SET_BITS_OFFSET_LE(__txdesc+28, 16, 4, __value) | ||
397 | #define SET_TX_DESC_MCSG5_MAX_LEN(__txdesc, __value) \ | ||
398 | SET_BITS_OFFSET_LE(__txdesc+28, 20, 4, __value) | ||
399 | #define SET_TX_DESC_MCSG6_MAX_LEN(__txdesc, __value) \ | ||
400 | SET_BITS_OFFSET_LE(__txdesc+28, 24, 4, __value) | ||
401 | #define SET_TX_DESC_MCSG15_MAX_LEN(__txdesc, __value) \ | ||
402 | SET_BITS_OFFSET_LE(__txdesc+28, 28, 4, __value) | ||
403 | |||
404 | |||
405 | int rtl8192cu_endpoint_mapping(struct ieee80211_hw *hw); | ||
406 | u16 rtl8192cu_mq_to_hwq(__le16 fc, u16 mac80211_queue_index); | ||
407 | bool rtl92cu_rx_query_desc(struct ieee80211_hw *hw, | ||
408 | struct rtl_stats *stats, | ||
409 | struct ieee80211_rx_status *rx_status, | ||
410 | u8 *p_desc, struct sk_buff *skb); | ||
411 | void rtl8192cu_rx_hdl(struct ieee80211_hw *hw, struct sk_buff * skb); | ||
412 | void rtl8192c_rx_segregate_hdl(struct ieee80211_hw *, struct sk_buff *, | ||
413 | struct sk_buff_head *); | ||
414 | void rtl8192c_tx_cleanup(struct ieee80211_hw *hw, struct sk_buff *skb); | ||
415 | int rtl8192c_tx_post_hdl(struct ieee80211_hw *hw, struct urb *urb, | ||
416 | struct sk_buff *skb); | ||
417 | struct sk_buff *rtl8192c_tx_aggregate_hdl(struct ieee80211_hw *, | ||
418 | struct sk_buff_head *); | ||
419 | void rtl92cu_tx_fill_desc(struct ieee80211_hw *hw, | ||
420 | struct ieee80211_hdr *hdr, u8 *pdesc_tx, | ||
421 | struct ieee80211_tx_info *info, struct sk_buff *skb, | ||
422 | unsigned int queue_index); | ||
423 | void rtl92cu_fill_fake_txdesc(struct ieee80211_hw *hw, u8 * pDesc, | ||
424 | u32 buffer_len, bool bIsPsPoll); | ||
425 | void rtl92cu_tx_fill_cmddesc(struct ieee80211_hw *hw, | ||
426 | u8 *pdesc, bool b_firstseg, | ||
427 | bool b_lastseg, struct sk_buff *skb); | ||
428 | bool rtl92cu_cmd_send_packet(struct ieee80211_hw *hw, struct sk_buff *skb); | ||
429 | |||
430 | #endif | ||
diff --git a/drivers/net/wireless/rtlwifi/wifi.h b/drivers/net/wireless/rtlwifi/wifi.h index 35e13eef9583..328fb40ad901 100644 --- a/drivers/net/wireless/rtlwifi/wifi.h +++ b/drivers/net/wireless/rtlwifi/wifi.h | |||
@@ -114,6 +114,7 @@ enum hardware_type { | |||
114 | HARDWARE_TYPE_RTL8192CU, | 114 | HARDWARE_TYPE_RTL8192CU, |
115 | HARDWARE_TYPE_RTL8192DE, | 115 | HARDWARE_TYPE_RTL8192DE, |
116 | HARDWARE_TYPE_RTL8192DU, | 116 | HARDWARE_TYPE_RTL8192DU, |
117 | HARDWARE_TYPE_RTL8723U, | ||
117 | 118 | ||
118 | /*keep it last*/ | 119 | /*keep it last*/ |
119 | HARDWARE_TYPE_NUM | 120 | HARDWARE_TYPE_NUM |
@@ -121,6 +122,10 @@ enum hardware_type { | |||
121 | 122 | ||
122 | #define IS_HARDWARE_TYPE_8192CE(rtlhal) \ | 123 | #define IS_HARDWARE_TYPE_8192CE(rtlhal) \ |
123 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8192CE) | 124 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8192CE) |
125 | #define IS_HARDWARE_TYPE_8192CU(rtlhal) \ | ||
126 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8192CU) | ||
127 | #define IS_HARDWARE_TYPE_8723U(rtlhal) \ | ||
128 | (rtlhal->hw_type == HARDWARE_TYPE_RTL8723U) | ||
124 | 129 | ||
125 | enum scan_operation_backup_opt { | 130 | enum scan_operation_backup_opt { |
126 | SCAN_OPT_BACKUP = 0, | 131 | SCAN_OPT_BACKUP = 0, |
@@ -363,6 +368,8 @@ enum rtl_var_map { | |||
363 | EFUSE_LOADER_CLK_EN, | 368 | EFUSE_LOADER_CLK_EN, |
364 | EFUSE_ANA8M, | 369 | EFUSE_ANA8M, |
365 | EFUSE_HWSET_MAX_SIZE, | 370 | EFUSE_HWSET_MAX_SIZE, |
371 | EFUSE_MAX_SECTION_MAP, | ||
372 | EFUSE_REAL_CONTENT_SIZE, | ||
366 | 373 | ||
367 | /*CAM map */ | 374 | /*CAM map */ |
368 | RWCAM, | 375 | RWCAM, |
@@ -509,6 +516,17 @@ enum wireless_mode { | |||
509 | WIRELESS_MODE_N_5G = 0x20 | 516 | WIRELESS_MODE_N_5G = 0x20 |
510 | }; | 517 | }; |
511 | 518 | ||
519 | #define IS_WIRELESS_MODE_A(wirelessmode) \ | ||
520 | (wirelessmode == WIRELESS_MODE_A) | ||
521 | #define IS_WIRELESS_MODE_B(wirelessmode) \ | ||
522 | (wirelessmode == WIRELESS_MODE_B) | ||
523 | #define IS_WIRELESS_MODE_G(wirelessmode) \ | ||
524 | (wirelessmode == WIRELESS_MODE_G) | ||
525 | #define IS_WIRELESS_MODE_N_24G(wirelessmode) \ | ||
526 | (wirelessmode == WIRELESS_MODE_N_24G) | ||
527 | #define IS_WIRELESS_MODE_N_5G(wirelessmode) \ | ||
528 | (wirelessmode == WIRELESS_MODE_N_5G) | ||
529 | |||
512 | enum ratr_table_mode { | 530 | enum ratr_table_mode { |
513 | RATR_INX_WIRELESS_NGB = 0, | 531 | RATR_INX_WIRELESS_NGB = 0, |
514 | RATR_INX_WIRELESS_NG = 1, | 532 | RATR_INX_WIRELESS_NG = 1, |
@@ -694,6 +712,25 @@ struct rtl_rfkill { | |||
694 | bool rfkill_state; /*0 is off, 1 is on */ | 712 | bool rfkill_state; /*0 is off, 1 is on */ |
695 | }; | 713 | }; |
696 | 714 | ||
715 | struct phy_parameters { | ||
716 | u16 length; | ||
717 | u32 *pdata; | ||
718 | }; | ||
719 | |||
720 | enum hw_param_tab_index { | ||
721 | PHY_REG_2T, | ||
722 | PHY_REG_1T, | ||
723 | PHY_REG_PG, | ||
724 | RADIOA_2T, | ||
725 | RADIOB_2T, | ||
726 | RADIOA_1T, | ||
727 | RADIOB_1T, | ||
728 | MAC_REG, | ||
729 | AGCTAB_2T, | ||
730 | AGCTAB_1T, | ||
731 | MAX_TAB | ||
732 | }; | ||
733 | |||
697 | struct rtl_phy { | 734 | struct rtl_phy { |
698 | struct bb_reg_def phyreg_def[4]; /*Radio A/B/C/D */ | 735 | struct bb_reg_def phyreg_def[4]; /*Radio A/B/C/D */ |
699 | struct init_gain initgain_backup; | 736 | struct init_gain initgain_backup; |
@@ -747,6 +784,7 @@ struct rtl_phy { | |||
747 | u32 framesync_c34; | 784 | u32 framesync_c34; |
748 | 785 | ||
749 | u8 num_total_rfpath; | 786 | u8 num_total_rfpath; |
787 | struct phy_parameters hwparam_tables[MAX_TAB]; | ||
750 | }; | 788 | }; |
751 | 789 | ||
752 | #define MAX_TID_COUNT 9 | 790 | #define MAX_TID_COUNT 9 |
@@ -862,11 +900,13 @@ struct rtl_hal { | |||
862 | enum intf_type interface; | 900 | enum intf_type interface; |
863 | u16 hw_type; /*92c or 92d or 92s and so on */ | 901 | u16 hw_type; /*92c or 92d or 92s and so on */ |
864 | u8 oem_id; | 902 | u8 oem_id; |
865 | u8 version; /*version of chip */ | 903 | u32 version; /*version of chip */ |
866 | u8 state; /*stop 0, start 1 */ | 904 | u8 state; /*stop 0, start 1 */ |
867 | 905 | ||
868 | /*firmware */ | 906 | /*firmware */ |
869 | u8 *pfirmware; | 907 | u8 *pfirmware; |
908 | u16 fw_version; | ||
909 | u16 fw_subversion; | ||
870 | bool h2c_setinprogress; | 910 | bool h2c_setinprogress; |
871 | u8 last_hmeboxnum; | 911 | u8 last_hmeboxnum; |
872 | bool fw_ready; | 912 | bool fw_ready; |
@@ -925,10 +965,10 @@ struct rtl_dm { | |||
925 | char cck_index; | 965 | char cck_index; |
926 | }; | 966 | }; |
927 | 967 | ||
928 | #define EFUSE_MAX_LOGICAL_SIZE 128 | 968 | #define EFUSE_MAX_LOGICAL_SIZE 256 |
929 | 969 | ||
930 | struct rtl_efuse { | 970 | struct rtl_efuse { |
931 | bool autoLoad_ok; | 971 | bool autoload_ok; |
932 | bool bootfromefuse; | 972 | bool bootfromefuse; |
933 | u16 max_physical_size; | 973 | u16 max_physical_size; |
934 | u8 contents[EFUSE_MAX_LOGICAL_SIZE]; | 974 | u8 contents[EFUSE_MAX_LOGICAL_SIZE]; |
@@ -947,6 +987,8 @@ struct rtl_efuse { | |||
947 | u8 eeprom_oemid; | 987 | u8 eeprom_oemid; |
948 | u16 eeprom_channelplan; | 988 | u16 eeprom_channelplan; |
949 | u8 eeprom_version; | 989 | u8 eeprom_version; |
990 | u8 board_type; | ||
991 | u8 external_pa; | ||
950 | 992 | ||
951 | u8 dev_addr[6]; | 993 | u8 dev_addr[6]; |
952 | 994 | ||
@@ -1020,6 +1062,7 @@ struct rtl_ps_ctl { | |||
1020 | /*just for PCIE ASPM */ | 1062 | /*just for PCIE ASPM */ |
1021 | u8 const_amdpci_aspm; | 1063 | u8 const_amdpci_aspm; |
1022 | 1064 | ||
1065 | bool pwrdown_mode; | ||
1023 | enum rf_pwrstate inactive_pwrstate; | 1066 | enum rf_pwrstate inactive_pwrstate; |
1024 | enum rf_pwrstate rfpwr_state; /*cur power state */ | 1067 | enum rf_pwrstate rfpwr_state; /*cur power state */ |
1025 | }; | 1068 | }; |
@@ -1120,9 +1163,11 @@ struct rtl_hal_ops { | |||
1120 | void (*disable_interrupt) (struct ieee80211_hw *hw); | 1163 | void (*disable_interrupt) (struct ieee80211_hw *hw); |
1121 | int (*set_network_type) (struct ieee80211_hw *hw, | 1164 | int (*set_network_type) (struct ieee80211_hw *hw, |
1122 | enum nl80211_iftype type); | 1165 | enum nl80211_iftype type); |
1166 | void (*set_chk_bssid)(struct ieee80211_hw *hw, | ||
1167 | bool check_bssid); | ||
1123 | void (*set_bw_mode) (struct ieee80211_hw *hw, | 1168 | void (*set_bw_mode) (struct ieee80211_hw *hw, |
1124 | enum nl80211_channel_type ch_type); | 1169 | enum nl80211_channel_type ch_type); |
1125 | u8(*switch_channel) (struct ieee80211_hw *hw); | 1170 | u8 (*switch_channel) (struct ieee80211_hw *hw); |
1126 | void (*set_qos) (struct ieee80211_hw *hw, int aci); | 1171 | void (*set_qos) (struct ieee80211_hw *hw, int aci); |
1127 | void (*set_bcn_reg) (struct ieee80211_hw *hw); | 1172 | void (*set_bcn_reg) (struct ieee80211_hw *hw); |
1128 | void (*set_bcn_intv) (struct ieee80211_hw *hw); | 1173 | void (*set_bcn_intv) (struct ieee80211_hw *hw); |
@@ -1136,6 +1181,8 @@ struct rtl_hal_ops { | |||
1136 | struct ieee80211_hdr *hdr, u8 *pdesc_tx, | 1181 | struct ieee80211_hdr *hdr, u8 *pdesc_tx, |
1137 | struct ieee80211_tx_info *info, | 1182 | struct ieee80211_tx_info *info, |
1138 | struct sk_buff *skb, unsigned int queue_index); | 1183 | struct sk_buff *skb, unsigned int queue_index); |
1184 | void (*fill_fake_txdesc) (struct ieee80211_hw *hw, u8 * pDesc, | ||
1185 | u32 buffer_len, bool bIsPsPoll); | ||
1139 | void (*fill_tx_cmddesc) (struct ieee80211_hw *hw, u8 *pdesc, | 1186 | void (*fill_tx_cmddesc) (struct ieee80211_hw *hw, u8 *pdesc, |
1140 | bool firstseg, bool lastseg, | 1187 | bool firstseg, bool lastseg, |
1141 | struct sk_buff *skb); | 1188 | struct sk_buff *skb); |
@@ -1311,6 +1358,89 @@ struct rtl_priv { | |||
1311 | #define rtl_efuse(rtlpriv) (&((rtlpriv)->efuse)) | 1358 | #define rtl_efuse(rtlpriv) (&((rtlpriv)->efuse)) |
1312 | #define rtl_psc(rtlpriv) (&((rtlpriv)->psc)) | 1359 | #define rtl_psc(rtlpriv) (&((rtlpriv)->psc)) |
1313 | 1360 | ||
1361 | /*************************************** | ||
1362 | Bluetooth Co-existance Related | ||
1363 | ****************************************/ | ||
1364 | |||
1365 | enum bt_ant_num { | ||
1366 | ANT_X2 = 0, | ||
1367 | ANT_X1 = 1, | ||
1368 | }; | ||
1369 | |||
1370 | enum bt_co_type { | ||
1371 | BT_2WIRE = 0, | ||
1372 | BT_ISSC_3WIRE = 1, | ||
1373 | BT_ACCEL = 2, | ||
1374 | BT_CSR_BC4 = 3, | ||
1375 | BT_CSR_BC8 = 4, | ||
1376 | BT_RTL8756 = 5, | ||
1377 | }; | ||
1378 | |||
1379 | enum bt_cur_state { | ||
1380 | BT_OFF = 0, | ||
1381 | BT_ON = 1, | ||
1382 | }; | ||
1383 | |||
1384 | enum bt_service_type { | ||
1385 | BT_SCO = 0, | ||
1386 | BT_A2DP = 1, | ||
1387 | BT_HID = 2, | ||
1388 | BT_HID_IDLE = 3, | ||
1389 | BT_SCAN = 4, | ||
1390 | BT_IDLE = 5, | ||
1391 | BT_OTHER_ACTION = 6, | ||
1392 | BT_BUSY = 7, | ||
1393 | BT_OTHERBUSY = 8, | ||
1394 | BT_PAN = 9, | ||
1395 | }; | ||
1396 | |||
1397 | enum bt_radio_shared { | ||
1398 | BT_RADIO_SHARED = 0, | ||
1399 | BT_RADIO_INDIVIDUAL = 1, | ||
1400 | }; | ||
1401 | |||
1402 | struct bt_coexist_info { | ||
1403 | |||
1404 | /* EEPROM BT info. */ | ||
1405 | u8 eeprom_bt_coexist; | ||
1406 | u8 eeprom_bt_type; | ||
1407 | u8 eeprom_bt_ant_num; | ||
1408 | u8 eeprom_bt_ant_isolation; | ||
1409 | u8 eeprom_bt_radio_shared; | ||
1410 | |||
1411 | u8 bt_coexistence; | ||
1412 | u8 bt_ant_num; | ||
1413 | u8 bt_coexist_type; | ||
1414 | u8 bt_state; | ||
1415 | u8 bt_cur_state; /* 0:on, 1:off */ | ||
1416 | u8 bt_ant_isolation; /* 0:good, 1:bad */ | ||
1417 | u8 bt_pape_ctrl; /* 0:SW, 1:SW/HW dynamic */ | ||
1418 | u8 bt_service; | ||
1419 | u8 bt_radio_shared_type; | ||
1420 | u8 bt_rfreg_origin_1e; | ||
1421 | u8 bt_rfreg_origin_1f; | ||
1422 | u8 bt_rssi_state; | ||
1423 | u32 ratio_tx; | ||
1424 | u32 ratio_pri; | ||
1425 | u32 bt_edca_ul; | ||
1426 | u32 bt_edca_dl; | ||
1427 | |||
1428 | bool b_init_set; | ||
1429 | bool b_bt_busy_traffic; | ||
1430 | bool b_bt_traffic_mode_set; | ||
1431 | bool b_bt_non_traffic_mode_set; | ||
1432 | |||
1433 | bool b_fw_coexist_all_off; | ||
1434 | bool b_sw_coexist_all_off; | ||
1435 | u32 current_state; | ||
1436 | u32 previous_state; | ||
1437 | u8 bt_pre_rssi_state; | ||
1438 | |||
1439 | u8 b_reg_bt_iso; | ||
1440 | u8 b_reg_bt_sco; | ||
1441 | |||
1442 | }; | ||
1443 | |||
1314 | /**************************************** | 1444 | /**************************************** |
1315 | mem access macro define start | 1445 | mem access macro define start |
1316 | Call endian free function when | 1446 | Call endian free function when |