diff options
author | Chaoming Li <chaoming_li@realsil.com.cn> | 2011-05-03 10:49:06 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-05-05 14:59:12 -0400 |
commit | 5a183eec6247d3d992afbd3a1a9658571d9c4970 (patch) | |
tree | b3098238024fd05a92cce1e6e1266f02466c9795 /drivers/net/wireless | |
parent | e5e8cd76511cb62391a5b64fa4ffdf88b09b6826 (diff) |
rtlwifi: rtl8192se: Merge main (sw) routines
Merge routines sw.c and sw.h for RTL8192SE.
Signed-off-by: Chaoming_Li <chaoming_li@realsil.com.cn>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192se/sw.c | 421 | ||||
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192se/sw.h | 36 |
2 files changed, 457 insertions, 0 deletions
diff --git a/drivers/net/wireless/rtlwifi/rtl8192se/sw.c b/drivers/net/wireless/rtlwifi/rtl8192se/sw.c new file mode 100644 index 000000000000..c5351b65b339 --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192se/sw.c | |||
@@ -0,0 +1,421 @@ | |||
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 <linux/vmalloc.h> | ||
31 | |||
32 | #include "../wifi.h" | ||
33 | #include "../core.h" | ||
34 | #include "../pci.h" | ||
35 | #include "reg.h" | ||
36 | #include "def.h" | ||
37 | #include "phy.h" | ||
38 | #include "dm.h" | ||
39 | #include "fw.h" | ||
40 | #include "hw.h" | ||
41 | #include "sw.h" | ||
42 | #include "trx.h" | ||
43 | #include "led.h" | ||
44 | |||
45 | static void rtl92s_init_aspm_vars(struct ieee80211_hw *hw) | ||
46 | { | ||
47 | struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); | ||
48 | |||
49 | /*close ASPM for AMD defaultly */ | ||
50 | rtlpci->const_amdpci_aspm = 0; | ||
51 | |||
52 | /* | ||
53 | * ASPM PS mode. | ||
54 | * 0 - Disable ASPM, | ||
55 | * 1 - Enable ASPM without Clock Req, | ||
56 | * 2 - Enable ASPM with Clock Req, | ||
57 | * 3 - Alwyas Enable ASPM with Clock Req, | ||
58 | * 4 - Always Enable ASPM without Clock Req. | ||
59 | * set defult to RTL8192CE:3 RTL8192E:2 | ||
60 | * */ | ||
61 | rtlpci->const_pci_aspm = 2; | ||
62 | |||
63 | /*Setting for PCI-E device */ | ||
64 | rtlpci->const_devicepci_aspm_setting = 0x03; | ||
65 | |||
66 | /*Setting for PCI-E bridge */ | ||
67 | rtlpci->const_hostpci_aspm_setting = 0x02; | ||
68 | |||
69 | /* | ||
70 | * In Hw/Sw Radio Off situation. | ||
71 | * 0 - Default, | ||
72 | * 1 - From ASPM setting without low Mac Pwr, | ||
73 | * 2 - From ASPM setting with low Mac Pwr, | ||
74 | * 3 - Bus D3 | ||
75 | * set default to RTL8192CE:0 RTL8192SE:2 | ||
76 | */ | ||
77 | rtlpci->const_hwsw_rfoff_d3 = 2; | ||
78 | |||
79 | /* | ||
80 | * This setting works for those device with | ||
81 | * backdoor ASPM setting such as EPHY setting. | ||
82 | * 0 - Not support ASPM, | ||
83 | * 1 - Support ASPM, | ||
84 | * 2 - According to chipset. | ||
85 | */ | ||
86 | rtlpci->const_support_pciaspm = 2; | ||
87 | } | ||
88 | |||
89 | static int rtl92s_init_sw_vars(struct ieee80211_hw *hw) | ||
90 | { | ||
91 | struct rtl_priv *rtlpriv = rtl_priv(hw); | ||
92 | struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); | ||
93 | const struct firmware *firmware; | ||
94 | struct rt_firmware *pfirmware = NULL; | ||
95 | int err = 0; | ||
96 | u16 earlyrxthreshold = 7; | ||
97 | |||
98 | rtlpriv->dm.dm_initialgain_enable = 1; | ||
99 | rtlpriv->dm.dm_flag = 0; | ||
100 | rtlpriv->dm.disable_framebursting = 0; | ||
101 | rtlpriv->dm.thermalvalue = 0; | ||
102 | rtlpriv->dm.useramask = true; | ||
103 | |||
104 | /* compatible 5G band 91se just 2.4G band & smsp */ | ||
105 | rtlpriv->rtlhal.current_bandtype = BAND_ON_2_4G; | ||
106 | rtlpriv->rtlhal.bandset = BAND_ON_2_4G; | ||
107 | rtlpriv->rtlhal.macphymode = SINGLEMAC_SINGLEPHY; | ||
108 | |||
109 | rtlpci->transmit_config = 0; | ||
110 | |||
111 | rtlpci->receive_config = | ||
112 | RCR_APPFCS | | ||
113 | RCR_APWRMGT | | ||
114 | /*RCR_ADD3 |*/ | ||
115 | RCR_AMF | | ||
116 | RCR_ADF | | ||
117 | RCR_APP_MIC | | ||
118 | RCR_APP_ICV | | ||
119 | RCR_AICV | | ||
120 | /* Accept ICV error, CRC32 Error */ | ||
121 | RCR_ACRC32 | | ||
122 | RCR_AB | | ||
123 | /* Accept Broadcast, Multicast */ | ||
124 | RCR_AM | | ||
125 | /* Accept Physical match */ | ||
126 | RCR_APM | | ||
127 | /* Accept Destination Address packets */ | ||
128 | /*RCR_AAP |*/ | ||
129 | RCR_APP_PHYST_STAFF | | ||
130 | /* Accept PHY status */ | ||
131 | RCR_APP_PHYST_RXFF | | ||
132 | (earlyrxthreshold << RCR_FIFO_OFFSET); | ||
133 | |||
134 | rtlpci->irq_mask[0] = (u32) | ||
135 | (IMR_ROK | | ||
136 | IMR_VODOK | | ||
137 | IMR_VIDOK | | ||
138 | IMR_BEDOK | | ||
139 | IMR_BKDOK | | ||
140 | IMR_HCCADOK | | ||
141 | IMR_MGNTDOK | | ||
142 | IMR_COMDOK | | ||
143 | IMR_HIGHDOK | | ||
144 | IMR_BDOK | | ||
145 | IMR_RXCMDOK | | ||
146 | /*IMR_TIMEOUT0 |*/ | ||
147 | IMR_RDU | | ||
148 | IMR_RXFOVW | | ||
149 | IMR_BCNINT | ||
150 | /*| IMR_TXFOVW*/ | ||
151 | /*| IMR_TBDOK | | ||
152 | IMR_TBDER*/); | ||
153 | |||
154 | rtlpci->irq_mask[1] = (u32) 0; | ||
155 | |||
156 | rtlpci->shortretry_limit = 0x30; | ||
157 | rtlpci->longretry_limit = 0x30; | ||
158 | |||
159 | rtlpci->first_init = true; | ||
160 | |||
161 | /* for LPS & IPS */ | ||
162 | rtlpriv->psc.inactiveps = rtlpriv->cfg->mod_params->inactiveps; | ||
163 | rtlpriv->psc.swctrl_lps = rtlpriv->cfg->mod_params->swctrl_lps; | ||
164 | rtlpriv->psc.fwctrl_lps = rtlpriv->cfg->mod_params->fwctrl_lps; | ||
165 | rtlpriv->psc.reg_fwctrl_lps = 3; | ||
166 | rtlpriv->psc.reg_max_lps_awakeintvl = 5; | ||
167 | /* for ASPM, you can close aspm through | ||
168 | * set const_support_pciaspm = 0 */ | ||
169 | rtl92s_init_aspm_vars(hw); | ||
170 | |||
171 | if (rtlpriv->psc.reg_fwctrl_lps == 1) | ||
172 | rtlpriv->psc.fwctrl_psmode = FW_PS_MIN_MODE; | ||
173 | else if (rtlpriv->psc.reg_fwctrl_lps == 2) | ||
174 | rtlpriv->psc.fwctrl_psmode = FW_PS_MAX_MODE; | ||
175 | else if (rtlpriv->psc.reg_fwctrl_lps == 3) | ||
176 | rtlpriv->psc.fwctrl_psmode = FW_PS_DTIM_MODE; | ||
177 | |||
178 | /* for firmware buf */ | ||
179 | rtlpriv->rtlhal.pfirmware = vzalloc(sizeof(struct rt_firmware)); | ||
180 | if (!rtlpriv->rtlhal.pfirmware) { | ||
181 | RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, | ||
182 | ("Can't alloc buffer for fw.\n")); | ||
183 | return 1; | ||
184 | } | ||
185 | |||
186 | /* request fw */ | ||
187 | err = request_firmware(&firmware, rtlpriv->cfg->fw_name, | ||
188 | rtlpriv->io.dev); | ||
189 | if (err) { | ||
190 | RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, | ||
191 | ("Failed to request firmware!\n")); | ||
192 | return 1; | ||
193 | } | ||
194 | if (firmware->size > sizeof(struct rt_firmware)) { | ||
195 | RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, | ||
196 | ("Firmware is too big!\n")); | ||
197 | release_firmware(firmware); | ||
198 | return 1; | ||
199 | } | ||
200 | |||
201 | pfirmware = (struct rt_firmware *)rtlpriv->rtlhal.pfirmware; | ||
202 | memcpy(pfirmware->sz_fw_tmpbuffer, firmware->data, firmware->size); | ||
203 | pfirmware->sz_fw_tmpbufferlen = firmware->size; | ||
204 | release_firmware(firmware); | ||
205 | |||
206 | return err; | ||
207 | } | ||
208 | |||
209 | static void rtl92s_deinit_sw_vars(struct ieee80211_hw *hw) | ||
210 | { | ||
211 | struct rtl_priv *rtlpriv = rtl_priv(hw); | ||
212 | |||
213 | if (rtlpriv->rtlhal.pfirmware) { | ||
214 | vfree(rtlpriv->rtlhal.pfirmware); | ||
215 | rtlpriv->rtlhal.pfirmware = NULL; | ||
216 | } | ||
217 | } | ||
218 | |||
219 | static struct rtl_hal_ops rtl8192se_hal_ops = { | ||
220 | .init_sw_vars = rtl92s_init_sw_vars, | ||
221 | .deinit_sw_vars = rtl92s_deinit_sw_vars, | ||
222 | .read_eeprom_info = rtl92se_read_eeprom_info, | ||
223 | .interrupt_recognized = rtl92se_interrupt_recognized, | ||
224 | .hw_init = rtl92se_hw_init, | ||
225 | .hw_disable = rtl92se_card_disable, | ||
226 | .hw_suspend = rtl92se_suspend, | ||
227 | .hw_resume = rtl92se_resume, | ||
228 | .enable_interrupt = rtl92se_enable_interrupt, | ||
229 | .disable_interrupt = rtl92se_disable_interrupt, | ||
230 | .set_network_type = rtl92se_set_network_type, | ||
231 | .set_chk_bssid = rtl92se_set_check_bssid, | ||
232 | .set_qos = rtl92se_set_qos, | ||
233 | .set_bcn_reg = rtl92se_set_beacon_related_registers, | ||
234 | .set_bcn_intv = rtl92se_set_beacon_interval, | ||
235 | .update_interrupt_mask = rtl92se_update_interrupt_mask, | ||
236 | .get_hw_reg = rtl92se_get_hw_reg, | ||
237 | .set_hw_reg = rtl92se_set_hw_reg, | ||
238 | .update_rate_tbl = rtl92se_update_hal_rate_tbl, | ||
239 | .fill_tx_desc = rtl92se_tx_fill_desc, | ||
240 | .fill_tx_cmddesc = rtl92se_tx_fill_cmddesc, | ||
241 | .query_rx_desc = rtl92se_rx_query_desc, | ||
242 | .set_channel_access = rtl92se_update_channel_access_setting, | ||
243 | .radio_onoff_checking = rtl92se_gpio_radio_on_off_checking, | ||
244 | .set_bw_mode = rtl92s_phy_set_bw_mode, | ||
245 | .switch_channel = rtl92s_phy_sw_chnl, | ||
246 | .dm_watchdog = rtl92s_dm_watchdog, | ||
247 | .scan_operation_backup = rtl92s_phy_scan_operation_backup, | ||
248 | .set_rf_power_state = rtl92s_phy_set_rf_power_state, | ||
249 | .led_control = rtl92se_led_control, | ||
250 | .set_desc = rtl92se_set_desc, | ||
251 | .get_desc = rtl92se_get_desc, | ||
252 | .tx_polling = rtl92se_tx_polling, | ||
253 | .enable_hw_sec = rtl92se_enable_hw_security_config, | ||
254 | .set_key = rtl92se_set_key, | ||
255 | .init_sw_leds = rtl92se_init_sw_leds, | ||
256 | .get_bbreg = rtl92s_phy_query_bb_reg, | ||
257 | .set_bbreg = rtl92s_phy_set_bb_reg, | ||
258 | .get_rfreg = rtl92s_phy_query_rf_reg, | ||
259 | .set_rfreg = rtl92s_phy_set_rf_reg, | ||
260 | }; | ||
261 | |||
262 | static struct rtl_mod_params rtl92se_mod_params = { | ||
263 | .sw_crypto = false, | ||
264 | .inactiveps = true, | ||
265 | .swctrl_lps = true, | ||
266 | .fwctrl_lps = false, | ||
267 | }; | ||
268 | |||
269 | /* Because memory R/W bursting will cause system hang/crash | ||
270 | * for 92se, so we don't read back after every write action */ | ||
271 | static struct rtl_hal_cfg rtl92se_hal_cfg = { | ||
272 | .bar_id = 1, | ||
273 | .write_readback = false, | ||
274 | .name = "rtl92s_pci", | ||
275 | .fw_name = "rtlwifi/rtl8192sefw.bin", | ||
276 | .ops = &rtl8192se_hal_ops, | ||
277 | .mod_params = &rtl92se_mod_params, | ||
278 | |||
279 | .maps[SYS_ISO_CTRL] = REG_SYS_ISO_CTRL, | ||
280 | .maps[SYS_FUNC_EN] = REG_SYS_FUNC_EN, | ||
281 | .maps[SYS_CLK] = SYS_CLKR, | ||
282 | .maps[MAC_RCR_AM] = RCR_AM, | ||
283 | .maps[MAC_RCR_AB] = RCR_AB, | ||
284 | .maps[MAC_RCR_ACRC32] = RCR_ACRC32, | ||
285 | .maps[MAC_RCR_ACF] = RCR_ACF, | ||
286 | .maps[MAC_RCR_AAP] = RCR_AAP, | ||
287 | |||
288 | .maps[EFUSE_TEST] = REG_EFUSE_TEST, | ||
289 | .maps[EFUSE_CTRL] = REG_EFUSE_CTRL, | ||
290 | .maps[EFUSE_CLK] = REG_EFUSE_CLK, | ||
291 | .maps[EFUSE_CLK_CTRL] = REG_EFUSE_CTRL, | ||
292 | .maps[EFUSE_PWC_EV12V] = 0, /* nouse for 8192se */ | ||
293 | .maps[EFUSE_FEN_ELDR] = 0, /* nouse for 8192se */ | ||
294 | .maps[EFUSE_LOADER_CLK_EN] = 0,/* nouse for 8192se */ | ||
295 | .maps[EFUSE_ANA8M] = EFUSE_ANA8M, | ||
296 | .maps[EFUSE_HWSET_MAX_SIZE] = HWSET_MAX_SIZE_92S, | ||
297 | .maps[EFUSE_MAX_SECTION_MAP] = EFUSE_MAX_SECTION, | ||
298 | .maps[EFUSE_REAL_CONTENT_SIZE] = EFUSE_REAL_CONTENT_LEN, | ||
299 | |||
300 | .maps[RWCAM] = REG_RWCAM, | ||
301 | .maps[WCAMI] = REG_WCAMI, | ||
302 | .maps[RCAMO] = REG_RCAMO, | ||
303 | .maps[CAMDBG] = REG_CAMDBG, | ||
304 | .maps[SECR] = REG_SECR, | ||
305 | .maps[SEC_CAM_NONE] = CAM_NONE, | ||
306 | .maps[SEC_CAM_WEP40] = CAM_WEP40, | ||
307 | .maps[SEC_CAM_TKIP] = CAM_TKIP, | ||
308 | .maps[SEC_CAM_AES] = CAM_AES, | ||
309 | .maps[SEC_CAM_WEP104] = CAM_WEP104, | ||
310 | |||
311 | .maps[RTL_IMR_BCNDMAINT6] = IMR_BCNDMAINT6, | ||
312 | .maps[RTL_IMR_BCNDMAINT5] = IMR_BCNDMAINT5, | ||
313 | .maps[RTL_IMR_BCNDMAINT4] = IMR_BCNDMAINT4, | ||
314 | .maps[RTL_IMR_BCNDMAINT3] = IMR_BCNDMAINT3, | ||
315 | .maps[RTL_IMR_BCNDMAINT2] = IMR_BCNDMAINT2, | ||
316 | .maps[RTL_IMR_BCNDMAINT1] = IMR_BCNDMAINT1, | ||
317 | .maps[RTL_IMR_BCNDOK8] = IMR_BCNDOK8, | ||
318 | .maps[RTL_IMR_BCNDOK7] = IMR_BCNDOK7, | ||
319 | .maps[RTL_IMR_BCNDOK6] = IMR_BCNDOK6, | ||
320 | .maps[RTL_IMR_BCNDOK5] = IMR_BCNDOK5, | ||
321 | .maps[RTL_IMR_BCNDOK4] = IMR_BCNDOK4, | ||
322 | .maps[RTL_IMR_BCNDOK3] = IMR_BCNDOK3, | ||
323 | .maps[RTL_IMR_BCNDOK2] = IMR_BCNDOK2, | ||
324 | .maps[RTL_IMR_BCNDOK1] = IMR_BCNDOK1, | ||
325 | .maps[RTL_IMR_TIMEOUT2] = IMR_TIMEOUT2, | ||
326 | .maps[RTL_IMR_TIMEOUT1] = IMR_TIMEOUT1, | ||
327 | |||
328 | .maps[RTL_IMR_TXFOVW] = IMR_TXFOVW, | ||
329 | .maps[RTL_IMR_PSTIMEOUT] = IMR_PSTIMEOUT, | ||
330 | .maps[RTL_IMR_BcnInt] = IMR_BCNINT, | ||
331 | .maps[RTL_IMR_RXFOVW] = IMR_RXFOVW, | ||
332 | .maps[RTL_IMR_RDU] = IMR_RDU, | ||
333 | .maps[RTL_IMR_ATIMEND] = IMR_ATIMEND, | ||
334 | .maps[RTL_IMR_BDOK] = IMR_BDOK, | ||
335 | .maps[RTL_IMR_MGNTDOK] = IMR_MGNTDOK, | ||
336 | .maps[RTL_IMR_TBDER] = IMR_TBDER, | ||
337 | .maps[RTL_IMR_HIGHDOK] = IMR_HIGHDOK, | ||
338 | .maps[RTL_IMR_COMDOK] = IMR_COMDOK, | ||
339 | .maps[RTL_IMR_TBDOK] = IMR_TBDOK, | ||
340 | .maps[RTL_IMR_BKDOK] = IMR_BKDOK, | ||
341 | .maps[RTL_IMR_BEDOK] = IMR_BEDOK, | ||
342 | .maps[RTL_IMR_VIDOK] = IMR_VIDOK, | ||
343 | .maps[RTL_IMR_VODOK] = IMR_VODOK, | ||
344 | .maps[RTL_IMR_ROK] = IMR_ROK, | ||
345 | .maps[RTL_IBSS_INT_MASKS] = (IMR_BCNINT | IMR_TBDOK | IMR_TBDER), | ||
346 | |||
347 | .maps[RTL_RC_CCK_RATE1M] = DESC92S_RATE1M, | ||
348 | .maps[RTL_RC_CCK_RATE2M] = DESC92S_RATE2M, | ||
349 | .maps[RTL_RC_CCK_RATE5_5M] = DESC92S_RATE5_5M, | ||
350 | .maps[RTL_RC_CCK_RATE11M] = DESC92S_RATE11M, | ||
351 | .maps[RTL_RC_OFDM_RATE6M] = DESC92S_RATE6M, | ||
352 | .maps[RTL_RC_OFDM_RATE9M] = DESC92S_RATE9M, | ||
353 | .maps[RTL_RC_OFDM_RATE12M] = DESC92S_RATE12M, | ||
354 | .maps[RTL_RC_OFDM_RATE18M] = DESC92S_RATE18M, | ||
355 | .maps[RTL_RC_OFDM_RATE24M] = DESC92S_RATE24M, | ||
356 | .maps[RTL_RC_OFDM_RATE36M] = DESC92S_RATE36M, | ||
357 | .maps[RTL_RC_OFDM_RATE48M] = DESC92S_RATE48M, | ||
358 | .maps[RTL_RC_OFDM_RATE54M] = DESC92S_RATE54M, | ||
359 | |||
360 | .maps[RTL_RC_HT_RATEMCS7] = DESC92S_RATEMCS7, | ||
361 | .maps[RTL_RC_HT_RATEMCS15] = DESC92S_RATEMCS15, | ||
362 | }; | ||
363 | |||
364 | static struct pci_device_id rtl92se_pci_ids[] __devinitdata = { | ||
365 | {RTL_PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8192, rtl92se_hal_cfg)}, | ||
366 | {RTL_PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8171, rtl92se_hal_cfg)}, | ||
367 | {RTL_PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8172, rtl92se_hal_cfg)}, | ||
368 | {RTL_PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8173, rtl92se_hal_cfg)}, | ||
369 | {RTL_PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8174, rtl92se_hal_cfg)}, | ||
370 | {}, | ||
371 | }; | ||
372 | |||
373 | MODULE_DEVICE_TABLE(pci, rtl92se_pci_ids); | ||
374 | |||
375 | MODULE_AUTHOR("lizhaoming <chaoming_li@realsil.com.cn>"); | ||
376 | MODULE_AUTHOR("Realtek WlanFAE <wlanfae@realtek.com>"); | ||
377 | MODULE_LICENSE("GPL"); | ||
378 | MODULE_DESCRIPTION("Realtek 8192S/8191S 802.11n PCI wireless"); | ||
379 | MODULE_FIRMWARE("rtlwifi/rtl8192sefw.bin"); | ||
380 | |||
381 | module_param_named(swenc, rtl92se_mod_params.sw_crypto, bool, 0444); | ||
382 | module_param_named(ips, rtl92se_mod_params.inactiveps, bool, 0444); | ||
383 | module_param_named(swlps, rtl92se_mod_params.swctrl_lps, bool, 0444); | ||
384 | module_param_named(fwlps, rtl92se_mod_params.fwctrl_lps, bool, 0444); | ||
385 | MODULE_PARM_DESC(swenc, "using hardware crypto (default 0 [hardware])\n"); | ||
386 | MODULE_PARM_DESC(ips, "using no link power save (default 1 is open)\n"); | ||
387 | MODULE_PARM_DESC(swlps, "using linked sw control power save (default 1 is " | ||
388 | "open)\n"); | ||
389 | |||
390 | |||
391 | static struct pci_driver rtl92se_driver = { | ||
392 | .name = KBUILD_MODNAME, | ||
393 | .id_table = rtl92se_pci_ids, | ||
394 | .probe = rtl_pci_probe, | ||
395 | .remove = rtl_pci_disconnect, | ||
396 | |||
397 | #ifdef CONFIG_PM | ||
398 | .suspend = rtl_pci_suspend, | ||
399 | .resume = rtl_pci_resume, | ||
400 | #endif | ||
401 | |||
402 | }; | ||
403 | |||
404 | static int __init rtl92se_module_init(void) | ||
405 | { | ||
406 | int ret = 0; | ||
407 | |||
408 | ret = pci_register_driver(&rtl92se_driver); | ||
409 | if (ret) | ||
410 | RT_ASSERT(false, (": No device found\n")); | ||
411 | |||
412 | return ret; | ||
413 | } | ||
414 | |||
415 | static void __exit rtl92se_module_exit(void) | ||
416 | { | ||
417 | pci_unregister_driver(&rtl92se_driver); | ||
418 | } | ||
419 | |||
420 | module_init(rtl92se_module_init); | ||
421 | module_exit(rtl92se_module_exit); | ||
diff --git a/drivers/net/wireless/rtlwifi/rtl8192se/sw.h b/drivers/net/wireless/rtlwifi/rtl8192se/sw.h new file mode 100644 index 000000000000..fc4eb285a0ac --- /dev/null +++ b/drivers/net/wireless/rtlwifi/rtl8192se/sw.h | |||
@@ -0,0 +1,36 @@ | |||
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 | *****************************************************************************/ | ||
27 | #ifndef __REALTEK_PCI92SE_SW_H__ | ||
28 | #define __REALTEK_PCI92SE_SW_H__ | ||
29 | |||
30 | #define EFUSE_MAX_SECTION 16 | ||
31 | |||
32 | int rtl92se_init_sw(struct ieee80211_hw *hw); | ||
33 | void rtl92se_deinit_sw(struct ieee80211_hw *hw); | ||
34 | void rtl92se_init_var_map(struct ieee80211_hw *hw); | ||
35 | |||
36 | #endif | ||