rtl8192cu: Remove dead code never selected
[deliverable/linux.git] / drivers / net / wireless / rtlwifi / pci.c
CommitLineData
0c817338
LF
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
ee40fa06 30#include <linux/export.h>
0c817338
LF
31#include "core.h"
32#include "wifi.h"
33#include "pci.h"
34#include "base.h"
35#include "ps.h"
c7cfe38e 36#include "efuse.h"
0c817338
LF
37
38static const u16 pcibridge_vendors[PCI_BRIDGE_VENDOR_MAX] = {
f01dce94
JM
39 PCI_VENDOR_ID_INTEL,
40 PCI_VENDOR_ID_ATI,
41 PCI_VENDOR_ID_AMD,
42 PCI_VENDOR_ID_SI
0c817338
LF
43};
44
c7cfe38e
C
45static const u8 ac_to_hwq[] = {
46 VO_QUEUE,
47 VI_QUEUE,
48 BE_QUEUE,
49 BK_QUEUE
50};
51
d3bb1429 52static u8 _rtl_mac_to_hwqueue(struct ieee80211_hw *hw,
c7cfe38e
C
53 struct sk_buff *skb)
54{
55 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
d3bb1429 56 __le16 fc = rtl_get_fc(skb);
c7cfe38e
C
57 u8 queue_index = skb_get_queue_mapping(skb);
58
59 if (unlikely(ieee80211_is_beacon(fc)))
60 return BEACON_QUEUE;
61 if (ieee80211_is_mgmt(fc))
62 return MGNT_QUEUE;
63 if (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SE)
64 if (ieee80211_is_nullfunc(fc))
65 return HIGH_QUEUE;
66
67 return ac_to_hwq[queue_index];
68}
69
0c817338
LF
70/* Update PCI dependent default settings*/
71static void _rtl_pci_update_default_setting(struct ieee80211_hw *hw)
72{
73 struct rtl_priv *rtlpriv = rtl_priv(hw);
74 struct rtl_pci_priv *pcipriv = rtl_pcipriv(hw);
75 struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
76 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
77 u8 pcibridge_vendor = pcipriv->ndis_adapter.pcibridge_vendor;
c7cfe38e 78 u8 init_aspm;
0c817338
LF
79
80 ppsc->reg_rfps_level = 0;
3db1cd5c 81 ppsc->support_aspm = false;
0c817338
LF
82
83 /*Update PCI ASPM setting */
84 ppsc->const_amdpci_aspm = rtlpci->const_amdpci_aspm;
85 switch (rtlpci->const_pci_aspm) {
86 case 0:
87 /*No ASPM */
88 break;
89
90 case 1:
91 /*ASPM dynamically enabled/disable. */
92 ppsc->reg_rfps_level |= RT_RF_LPS_LEVEL_ASPM;
93 break;
94
95 case 2:
96 /*ASPM with Clock Req dynamically enabled/disable. */
97 ppsc->reg_rfps_level |= (RT_RF_LPS_LEVEL_ASPM |
98 RT_RF_OFF_LEVL_CLK_REQ);
99 break;
100
101 case 3:
102 /*
103 * Always enable ASPM and Clock Req
104 * from initialization to halt.
105 * */
106 ppsc->reg_rfps_level &= ~(RT_RF_LPS_LEVEL_ASPM);
107 ppsc->reg_rfps_level |= (RT_RF_PS_LEVEL_ALWAYS_ASPM |
108 RT_RF_OFF_LEVL_CLK_REQ);
109 break;
110
111 case 4:
112 /*
113 * Always enable ASPM without Clock Req
114 * from initialization to halt.
115 * */
116 ppsc->reg_rfps_level &= ~(RT_RF_LPS_LEVEL_ASPM |
117 RT_RF_OFF_LEVL_CLK_REQ);
118 ppsc->reg_rfps_level |= RT_RF_PS_LEVEL_ALWAYS_ASPM;
119 break;
120 }
121
122 ppsc->reg_rfps_level |= RT_RF_OFF_LEVL_HALT_NIC;
123
124 /*Update Radio OFF setting */
125 switch (rtlpci->const_hwsw_rfoff_d3) {
126 case 1:
127 if (ppsc->reg_rfps_level & RT_RF_LPS_LEVEL_ASPM)
128 ppsc->reg_rfps_level |= RT_RF_OFF_LEVL_ASPM;
129 break;
130
131 case 2:
132 if (ppsc->reg_rfps_level & RT_RF_LPS_LEVEL_ASPM)
133 ppsc->reg_rfps_level |= RT_RF_OFF_LEVL_ASPM;
134 ppsc->reg_rfps_level |= RT_RF_OFF_LEVL_HALT_NIC;
135 break;
136
137 case 3:
138 ppsc->reg_rfps_level |= RT_RF_OFF_LEVL_PCI_D3;
139 break;
140 }
141
142 /*Set HW definition to determine if it supports ASPM. */
143 switch (rtlpci->const_support_pciaspm) {
c7cfe38e
C
144 case 0:{
145 /*Not support ASPM. */
146 bool support_aspm = false;
147 ppsc->support_aspm = support_aspm;
148 break;
149 }
150 case 1:{
151 /*Support ASPM. */
152 bool support_aspm = true;
153 bool support_backdoor = true;
154 ppsc->support_aspm = support_aspm;
155
156 /*if (priv->oem_id == RT_CID_TOSHIBA &&
157 !priv->ndis_adapter.amd_l1_patch)
158 support_backdoor = false; */
159
160 ppsc->support_backdoor = support_backdoor;
161
162 break;
163 }
0c817338
LF
164 case 2:
165 /*ASPM value set by chipset. */
c7cfe38e
C
166 if (pcibridge_vendor == PCI_BRIDGE_VENDOR_INTEL) {
167 bool support_aspm = true;
168 ppsc->support_aspm = support_aspm;
169 }
0c817338
LF
170 break;
171 default:
172 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
f30d7507 173 "switch case not processed\n");
0c817338
LF
174 break;
175 }
c7cfe38e
C
176
177 /* toshiba aspm issue, toshiba will set aspm selfly
178 * so we should not set aspm in driver */
179 pci_read_config_byte(rtlpci->pdev, 0x80, &init_aspm);
180 if (rtlpriv->rtlhal.hw_type == HARDWARE_TYPE_RTL8192SE &&
181 init_aspm == 0x43)
182 ppsc->support_aspm = false;
183}
184
0c817338
LF
185static bool _rtl_pci_platform_switch_device_pci_aspm(
186 struct ieee80211_hw *hw,
187 u8 value)
188{
189 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
c7cfe38e
C
190 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
191
192 if (rtlhal->hw_type != HARDWARE_TYPE_RTL8192SE)
193 value |= 0x40;
0c817338 194
0c817338
LF
195 pci_write_config_byte(rtlpci->pdev, 0x80, value);
196
32473284 197 return false;
0c817338
LF
198}
199
200/*When we set 0x01 to enable clk request. Set 0x0 to disable clk req.*/
201static bool _rtl_pci_switch_clk_req(struct ieee80211_hw *hw, u8 value)
202{
203 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
c7cfe38e 204 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
0c817338 205
0c817338 206 pci_write_config_byte(rtlpci->pdev, 0x81, value);
0c817338 207
c7cfe38e
C
208 if (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SE)
209 udelay(100);
210
32473284 211 return true;
0c817338
LF
212}
213
214/*Disable RTL8192SE ASPM & Disable Pci Bridge ASPM*/
215static void rtl_pci_disable_aspm(struct ieee80211_hw *hw)
216{
217 struct rtl_priv *rtlpriv = rtl_priv(hw);
218 struct rtl_pci_priv *pcipriv = rtl_pcipriv(hw);
219 struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
220 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
221 u8 pcibridge_vendor = pcipriv->ndis_adapter.pcibridge_vendor;
0c817338
LF
222 u8 num4bytes = pcipriv->ndis_adapter.num4bytes;
223 /*Retrieve original configuration settings. */
224 u8 linkctrl_reg = pcipriv->ndis_adapter.linkctrl_reg;
225 u16 pcibridge_linkctrlreg = pcipriv->ndis_adapter.
226 pcibridge_linkctrlreg;
227 u16 aspmlevel = 0;
32473284 228 u8 tmp_u1b = 0;
0c817338 229
c7cfe38e
C
230 if (!ppsc->support_aspm)
231 return;
232
0c817338
LF
233 if (pcibridge_vendor == PCI_BRIDGE_VENDOR_UNKNOWN) {
234 RT_TRACE(rtlpriv, COMP_POWER, DBG_TRACE,
f30d7507 235 "PCI(Bridge) UNKNOWN\n");
0c817338
LF
236
237 return;
238 }
239
240 if (ppsc->reg_rfps_level & RT_RF_OFF_LEVL_CLK_REQ) {
241 RT_CLEAR_PS_LEVEL(ppsc, RT_RF_OFF_LEVL_CLK_REQ);
242 _rtl_pci_switch_clk_req(hw, 0x0);
243 }
244
32473284
LF
245 /*for promising device will in L0 state after an I/O. */
246 pci_read_config_byte(rtlpci->pdev, 0x80, &tmp_u1b);
0c817338
LF
247
248 /*Set corresponding value. */
249 aspmlevel |= BIT(0) | BIT(1);
250 linkctrl_reg &= ~aspmlevel;
251 pcibridge_linkctrlreg &= ~(BIT(0) | BIT(1));
252
253 _rtl_pci_platform_switch_device_pci_aspm(hw, linkctrl_reg);
254 udelay(50);
255
256 /*4 Disable Pci Bridge ASPM */
886e14b6
LF
257 pci_write_config_byte(rtlpci->pdev, (num4bytes << 2),
258 pcibridge_linkctrlreg);
0c817338
LF
259
260 udelay(50);
0c817338
LF
261}
262
263/*
264 *Enable RTL8192SE ASPM & Enable Pci Bridge ASPM for
265 *power saving We should follow the sequence to enable
266 *RTL8192SE first then enable Pci Bridge ASPM
267 *or the system will show bluescreen.
268 */
269static void rtl_pci_enable_aspm(struct ieee80211_hw *hw)
270{
271 struct rtl_priv *rtlpriv = rtl_priv(hw);
272 struct rtl_pci_priv *pcipriv = rtl_pcipriv(hw);
273 struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
274 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
275 u8 pcibridge_busnum = pcipriv->ndis_adapter.pcibridge_busnum;
276 u8 pcibridge_devnum = pcipriv->ndis_adapter.pcibridge_devnum;
277 u8 pcibridge_funcnum = pcipriv->ndis_adapter.pcibridge_funcnum;
278 u8 pcibridge_vendor = pcipriv->ndis_adapter.pcibridge_vendor;
0c817338
LF
279 u8 num4bytes = pcipriv->ndis_adapter.num4bytes;
280 u16 aspmlevel;
281 u8 u_pcibridge_aspmsetting;
282 u8 u_device_aspmsetting;
283
c7cfe38e
C
284 if (!ppsc->support_aspm)
285 return;
286
0c817338
LF
287 if (pcibridge_vendor == PCI_BRIDGE_VENDOR_UNKNOWN) {
288 RT_TRACE(rtlpriv, COMP_POWER, DBG_TRACE,
f30d7507 289 "PCI(Bridge) UNKNOWN\n");
0c817338
LF
290 return;
291 }
292
293 /*4 Enable Pci Bridge ASPM */
0c817338
LF
294
295 u_pcibridge_aspmsetting =
296 pcipriv->ndis_adapter.pcibridge_linkctrlreg |
297 rtlpci->const_hostpci_aspm_setting;
298
299 if (pcibridge_vendor == PCI_BRIDGE_VENDOR_INTEL)
300 u_pcibridge_aspmsetting &= ~BIT(0);
301
886e14b6
LF
302 pci_write_config_byte(rtlpci->pdev, (num4bytes << 2),
303 u_pcibridge_aspmsetting);
0c817338
LF
304
305 RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
f30d7507
JP
306 "PlatformEnableASPM():PciBridge busnumber[%x], DevNumbe[%x], funcnumber[%x], Write reg[%x] = %x\n",
307 pcibridge_busnum, pcibridge_devnum, pcibridge_funcnum,
308 (pcipriv->ndis_adapter.pcibridge_pciehdr_offset + 0x10),
309 u_pcibridge_aspmsetting);
0c817338
LF
310
311 udelay(50);
312
313 /*Get ASPM level (with/without Clock Req) */
314 aspmlevel = rtlpci->const_devicepci_aspm_setting;
315 u_device_aspmsetting = pcipriv->ndis_adapter.linkctrl_reg;
316
317 /*_rtl_pci_platform_switch_device_pci_aspm(dev,*/
318 /*(priv->ndis_adapter.linkctrl_reg | ASPMLevel)); */
319
320 u_device_aspmsetting |= aspmlevel;
321
322 _rtl_pci_platform_switch_device_pci_aspm(hw, u_device_aspmsetting);
323
324 if (ppsc->reg_rfps_level & RT_RF_OFF_LEVL_CLK_REQ) {
325 _rtl_pci_switch_clk_req(hw, (ppsc->reg_rfps_level &
326 RT_RF_OFF_LEVL_CLK_REQ) ? 1 : 0);
327 RT_SET_PS_LEVEL(ppsc, RT_RF_OFF_LEVL_CLK_REQ);
328 }
c7cfe38e 329 udelay(100);
0c817338
LF
330}
331
332static bool rtl_pci_get_amd_l1_patch(struct ieee80211_hw *hw)
333{
886e14b6 334 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
0c817338
LF
335
336 bool status = false;
337 u8 offset_e0;
338 unsigned offset_e4;
339
886e14b6 340 pci_write_config_byte(rtlpci->pdev, 0xe0, 0xa0);
0c817338 341
886e14b6 342 pci_read_config_byte(rtlpci->pdev, 0xe0, &offset_e0);
0c817338
LF
343
344 if (offset_e0 == 0xA0) {
886e14b6 345 pci_read_config_dword(rtlpci->pdev, 0xe4, &offset_e4);
0c817338
LF
346 if (offset_e4 & BIT(23))
347 status = true;
348 }
349
350 return status;
351}
352
d3bb1429 353static void rtl_pci_get_linkcontrol_field(struct ieee80211_hw *hw)
0c817338
LF
354{
355 struct rtl_pci_priv *pcipriv = rtl_pcipriv(hw);
886e14b6 356 struct rtl_pci *rtlpci = rtl_pcidev(pcipriv);
0c817338 357 u8 capabilityoffset = pcipriv->ndis_adapter.pcibridge_pciehdr_offset;
0c817338 358 u8 linkctrl_reg;
c7cfe38e 359 u8 num4bbytes;
0c817338 360
c7cfe38e 361 num4bbytes = (capabilityoffset + 0x10) / 4;
0c817338
LF
362
363 /*Read Link Control Register */
886e14b6 364 pci_read_config_byte(rtlpci->pdev, (num4bbytes << 2), &linkctrl_reg);
0c817338
LF
365
366 pcipriv->ndis_adapter.pcibridge_linkctrlreg = linkctrl_reg;
367}
368
369static void rtl_pci_parse_configuration(struct pci_dev *pdev,
370 struct ieee80211_hw *hw)
371{
372 struct rtl_priv *rtlpriv = rtl_priv(hw);
373 struct rtl_pci_priv *pcipriv = rtl_pcipriv(hw);
374
375 u8 tmp;
376 int pos;
377 u8 linkctrl_reg;
378
379 /*Link Control Register */
6a4ecc29 380 pos = pci_pcie_cap(pdev);
0c817338
LF
381 pci_read_config_byte(pdev, pos + PCI_EXP_LNKCTL, &linkctrl_reg);
382 pcipriv->ndis_adapter.linkctrl_reg = linkctrl_reg;
383
f30d7507
JP
384 RT_TRACE(rtlpriv, COMP_INIT, DBG_TRACE, "Link Control Register =%x\n",
385 pcipriv->ndis_adapter.linkctrl_reg);
0c817338
LF
386
387 pci_read_config_byte(pdev, 0x98, &tmp);
388 tmp |= BIT(4);
389 pci_write_config_byte(pdev, 0x98, tmp);
390
391 tmp = 0x17;
392 pci_write_config_byte(pdev, 0x70f, tmp);
393}
394
c7cfe38e 395static void rtl_pci_init_aspm(struct ieee80211_hw *hw)
0c817338
LF
396{
397 struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
398
399 _rtl_pci_update_default_setting(hw);
400
401 if (ppsc->reg_rfps_level & RT_RF_PS_LEVEL_ALWAYS_ASPM) {
402 /*Always enable ASPM & Clock Req. */
403 rtl_pci_enable_aspm(hw);
404 RT_SET_PS_LEVEL(ppsc, RT_RF_PS_LEVEL_ALWAYS_ASPM);
405 }
406
407}
408
0c817338
LF
409static void _rtl_pci_io_handler_init(struct device *dev,
410 struct ieee80211_hw *hw)
411{
412 struct rtl_priv *rtlpriv = rtl_priv(hw);
413
414 rtlpriv->io.dev = dev;
415
416 rtlpriv->io.write8_async = pci_write8_async;
417 rtlpriv->io.write16_async = pci_write16_async;
418 rtlpriv->io.write32_async = pci_write32_async;
419
420 rtlpriv->io.read8_sync = pci_read8_sync;
421 rtlpriv->io.read16_sync = pci_read16_sync;
422 rtlpriv->io.read32_sync = pci_read32_sync;
423
424}
425
426static void _rtl_pci_io_handler_release(struct ieee80211_hw *hw)
427{
428}
429
c7cfe38e
C
430static bool _rtl_update_earlymode_info(struct ieee80211_hw *hw,
431 struct sk_buff *skb, struct rtl_tcb_desc *tcb_desc, u8 tid)
432{
433 struct rtl_priv *rtlpriv = rtl_priv(hw);
434 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
435 u8 additionlen = FCS_LEN;
436 struct sk_buff *next_skb;
437
438 /* here open is 4, wep/tkip is 8, aes is 12*/
439 if (info->control.hw_key)
440 additionlen += info->control.hw_key->icv_len;
441
442 /* The most skb num is 6 */
443 tcb_desc->empkt_num = 0;
444 spin_lock_bh(&rtlpriv->locks.waitq_lock);
445 skb_queue_walk(&rtlpriv->mac80211.skb_waitq[tid], next_skb) {
446 struct ieee80211_tx_info *next_info;
447
448 next_info = IEEE80211_SKB_CB(next_skb);
449 if (next_info->flags & IEEE80211_TX_CTL_AMPDU) {
450 tcb_desc->empkt_len[tcb_desc->empkt_num] =
451 next_skb->len + additionlen;
452 tcb_desc->empkt_num++;
453 } else {
454 break;
455 }
456
457 if (skb_queue_is_last(&rtlpriv->mac80211.skb_waitq[tid],
458 next_skb))
459 break;
460
461 if (tcb_desc->empkt_num >= 5)
462 break;
463 }
464 spin_unlock_bh(&rtlpriv->locks.waitq_lock);
465
466 return true;
467}
468
469/* just for early mode now */
470static void _rtl_pci_tx_chk_waitq(struct ieee80211_hw *hw)
471{
472 struct rtl_priv *rtlpriv = rtl_priv(hw);
473 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
474 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
475 struct sk_buff *skb = NULL;
476 struct ieee80211_tx_info *info = NULL;
fb914ebf 477 int tid;
c7cfe38e
C
478
479 if (!rtlpriv->rtlhal.earlymode_enable)
480 return;
481
482 /* we juse use em for BE/BK/VI/VO */
483 for (tid = 7; tid >= 0; tid--) {
484 u8 hw_queue = ac_to_hwq[rtl_tid_to_ac(hw, tid)];
485 struct rtl8192_tx_ring *ring = &rtlpci->tx_ring[hw_queue];
486 while (!mac->act_scanning &&
487 rtlpriv->psc.rfpwr_state == ERFON) {
488 struct rtl_tcb_desc tcb_desc;
489 memset(&tcb_desc, 0, sizeof(struct rtl_tcb_desc));
490
491 spin_lock_bh(&rtlpriv->locks.waitq_lock);
492 if (!skb_queue_empty(&mac->skb_waitq[tid]) &&
493 (ring->entries - skb_queue_len(&ring->queue) > 5)) {
494 skb = skb_dequeue(&mac->skb_waitq[tid]);
495 } else {
496 spin_unlock_bh(&rtlpriv->locks.waitq_lock);
497 break;
498 }
499 spin_unlock_bh(&rtlpriv->locks.waitq_lock);
500
501 /* Some macaddr can't do early mode. like
502 * multicast/broadcast/no_qos data */
503 info = IEEE80211_SKB_CB(skb);
504 if (info->flags & IEEE80211_TX_CTL_AMPDU)
505 _rtl_update_earlymode_info(hw, skb,
506 &tcb_desc, tid);
507
c7cfe38e 508 rtlpriv->intf_ops->adapter_tx(hw, skb, &tcb_desc);
c7cfe38e
C
509 }
510 }
511}
512
513
0c817338
LF
514static void _rtl_pci_tx_isr(struct ieee80211_hw *hw, int prio)
515{
516 struct rtl_priv *rtlpriv = rtl_priv(hw);
517 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
518
519 struct rtl8192_tx_ring *ring = &rtlpci->tx_ring[prio];
520
521 while (skb_queue_len(&ring->queue)) {
522 struct rtl_tx_desc *entry = &ring->desc[ring->idx];
523 struct sk_buff *skb;
524 struct ieee80211_tx_info *info;
c7cfe38e
C
525 __le16 fc;
526 u8 tid;
0c817338
LF
527
528 u8 own = (u8) rtlpriv->cfg->ops->get_desc((u8 *) entry, true,
529 HW_DESC_OWN);
530
531 /*
532 *beacon packet will only use the first
533 *descriptor defautly,and the own may not
534 *be cleared by the hardware
535 */
536 if (own)
537 return;
538 ring->idx = (ring->idx + 1) % ring->entries;
539
540 skb = __skb_dequeue(&ring->queue);
541 pci_unmap_single(rtlpci->pdev,
d3bb1429 542 rtlpriv->cfg->ops->
0c817338 543 get_desc((u8 *) entry, true,
d3bb1429 544 HW_DESC_TXBUFF_ADDR),
0c817338
LF
545 skb->len, PCI_DMA_TODEVICE);
546
c7cfe38e
C
547 /* remove early mode header */
548 if (rtlpriv->rtlhal.earlymode_enable)
549 skb_pull(skb, EM_HDR_LEN);
550
0c817338 551 RT_TRACE(rtlpriv, (COMP_INTR | COMP_SEND), DBG_TRACE,
f30d7507
JP
552 "new ring->idx:%d, free: skb_queue_len:%d, free: seq:%x\n",
553 ring->idx,
554 skb_queue_len(&ring->queue),
555 *(u16 *) (skb->data + 22));
0c817338 556
c7cfe38e
C
557 if (prio == TXCMD_QUEUE) {
558 dev_kfree_skb(skb);
559 goto tx_status_ok;
560
561 }
562
563 /* for sw LPS, just after NULL skb send out, we can
564 * sure AP kown we are sleeped, our we should not let
565 * rf to sleep*/
566 fc = rtl_get_fc(skb);
567 if (ieee80211_is_nullfunc(fc)) {
568 if (ieee80211_has_pm(fc)) {
9c050440 569 rtlpriv->mac80211.offchan_delay = true;
3db1cd5c 570 rtlpriv->psc.state_inap = true;
c7cfe38e 571 } else {
3db1cd5c 572 rtlpriv->psc.state_inap = false;
c7cfe38e
C
573 }
574 }
575
576 /* update tid tx pkt num */
577 tid = rtl_get_tid(skb);
578 if (tid <= 7)
579 rtlpriv->link_info.tidtx_inperiod[tid]++;
580
0c817338
LF
581 info = IEEE80211_SKB_CB(skb);
582 ieee80211_tx_info_clear_status(info);
583
584 info->flags |= IEEE80211_TX_STAT_ACK;
585 /*info->status.rates[0].count = 1; */
586
587 ieee80211_tx_status_irqsafe(hw, skb);
588
589 if ((ring->entries - skb_queue_len(&ring->queue))
590 == 2) {
591
592 RT_TRACE(rtlpriv, COMP_ERR, DBG_LOUD,
f30d7507
JP
593 "more desc left, wake skb_queue@%d, ring->idx = %d, skb_queue_len = 0x%d\n",
594 prio, ring->idx,
595 skb_queue_len(&ring->queue));
0c817338
LF
596
597 ieee80211_wake_queue(hw,
598 skb_get_queue_mapping
599 (skb));
600 }
c7cfe38e 601tx_status_ok:
0c817338
LF
602 skb = NULL;
603 }
604
605 if (((rtlpriv->link_info.num_rx_inperiod +
606 rtlpriv->link_info.num_tx_inperiod) > 8) ||
607 (rtlpriv->link_info.num_rx_inperiod > 2)) {
41affd52 608 schedule_work(&rtlpriv->works.lps_leave_work);
0c817338
LF
609 }
610}
611
fd854772
MM
612static void _rtl_receive_one(struct ieee80211_hw *hw, struct sk_buff *skb,
613 struct ieee80211_rx_status rx_status)
614{
615 struct rtl_priv *rtlpriv = rtl_priv(hw);
616 struct ieee80211_hdr *hdr = rtl_get_hdr(skb);
617 __le16 fc = rtl_get_fc(skb);
618 bool unicast = false;
619 struct sk_buff *uskb = NULL;
620 u8 *pdata;
621
622
623 memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
624
625 if (is_broadcast_ether_addr(hdr->addr1)) {
626 ;/*TODO*/
627 } else if (is_multicast_ether_addr(hdr->addr1)) {
628 ;/*TODO*/
629 } else {
630 unicast = true;
631 rtlpriv->stats.rxbytesunicast += skb->len;
632 }
633
634 rtl_is_special_data(hw, skb, false);
635
636 if (ieee80211_is_data(fc)) {
637 rtlpriv->cfg->ops->led_control(hw, LED_CTL_RX);
638
639 if (unicast)
640 rtlpriv->link_info.num_rx_inperiod++;
641 }
642
643 /* for sw lps */
644 rtl_swlps_beacon(hw, (void *)skb->data, skb->len);
645 rtl_recognize_peer(hw, (void *)skb->data, skb->len);
646 if ((rtlpriv->mac80211.opmode == NL80211_IFTYPE_AP) &&
647 (rtlpriv->rtlhal.current_bandtype == BAND_ON_2_4G) &&
648 (ieee80211_is_beacon(fc) || ieee80211_is_probe_resp(fc)))
649 return;
650
651 if (unlikely(!rtl_action_proc(hw, skb, false)))
652 return;
653
654 uskb = dev_alloc_skb(skb->len + 128);
76a92be5
LF
655 if (!uskb)
656 return; /* exit if allocation failed */
fd854772
MM
657 memcpy(IEEE80211_SKB_RXCB(uskb), &rx_status, sizeof(rx_status));
658 pdata = (u8 *)skb_put(uskb, skb->len);
659 memcpy(pdata, skb->data, skb->len);
660
661 ieee80211_rx_irqsafe(hw, uskb);
662}
663
0c817338
LF
664static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
665{
666 struct rtl_priv *rtlpriv = rtl_priv(hw);
667 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
668 int rx_queue_idx = RTL_PCI_RX_MPDU_QUEUE;
669
670 struct ieee80211_rx_status rx_status = { 0 };
671 unsigned int count = rtlpci->rxringcount;
672 u8 own;
673 u8 tmp_one;
674 u32 bufferaddress;
0c817338
LF
675
676 struct rtl_stats stats = {
677 .signal = 0,
678 .noise = -98,
679 .rate = 0,
680 };
34ddb207 681 int index = rtlpci->rx_ring[rx_queue_idx].idx;
0c817338
LF
682
683 /*RX NORMAL PKT */
684 while (count--) {
685 /*rx descriptor */
686 struct rtl_rx_desc *pdesc = &rtlpci->rx_ring[rx_queue_idx].desc[
34ddb207 687 index];
0c817338
LF
688 /*rx pkt */
689 struct sk_buff *skb = rtlpci->rx_ring[rx_queue_idx].rx_buf[
34ddb207 690 index];
2c333366 691 struct sk_buff *new_skb = NULL;
0c817338
LF
692
693 own = (u8) rtlpriv->cfg->ops->get_desc((u8 *) pdesc,
694 false, HW_DESC_OWN);
695
2c333366
MM
696 /*wait data to be filled by hardware */
697 if (own)
34ddb207 698 break;
6633d649 699
2c333366
MM
700 rtlpriv->cfg->ops->query_rx_desc(hw, &stats,
701 &rx_status,
702 (u8 *) pdesc, skb);
703
8db8ddf1
MM
704 if (stats.crc || stats.hwerror)
705 goto done;
706
2c333366
MM
707 new_skb = dev_alloc_skb(rtlpci->rxbuffersize);
708 if (unlikely(!new_skb)) {
f30d7507
JP
709 RT_TRACE(rtlpriv, (COMP_INTR | COMP_RECV), DBG_DMESG,
710 "can't alloc skb for rx\n");
2c333366
MM
711 goto done;
712 }
713
714 pci_unmap_single(rtlpci->pdev,
715 *((dma_addr_t *) skb->cb),
716 rtlpci->rxbuffersize,
717 PCI_DMA_FROMDEVICE);
718
719 skb_put(skb, rtlpriv->cfg->ops->get_desc((u8 *) pdesc, false,
720 HW_DESC_RXPKT_LEN));
721 skb_reserve(skb, stats.rx_drvinfo_size + stats.rx_bufshift);
722
723 /*
724 * NOTICE This can not be use for mac80211,
725 * this is done in mac80211 code,
726 * if you done here sec DHCP will fail
727 * skb_trim(skb, skb->len - 4);
728 */
729
fd854772 730 _rtl_receive_one(hw, skb, rx_status);
0c817338 731
2c333366
MM
732 if (((rtlpriv->link_info.num_rx_inperiod +
733 rtlpriv->link_info.num_tx_inperiod) > 8) ||
734 (rtlpriv->link_info.num_rx_inperiod > 2)) {
41affd52 735 schedule_work(&rtlpriv->works.lps_leave_work);
2c333366 736 }
0c817338 737
14058add 738 dev_kfree_skb_any(skb);
2c333366 739 skb = new_skb;
0c817338 740
2c333366
MM
741 rtlpci->rx_ring[rx_queue_idx].rx_buf[index] = skb;
742 *((dma_addr_t *) skb->cb) =
0c817338
LF
743 pci_map_single(rtlpci->pdev, skb_tail_pointer(skb),
744 rtlpci->rxbuffersize,
745 PCI_DMA_FROMDEVICE);
746
0c817338 747done:
d3bb1429 748 bufferaddress = (*((dma_addr_t *)skb->cb));
0c817338
LF
749 tmp_one = 1;
750 rtlpriv->cfg->ops->set_desc((u8 *) pdesc, false,
751 HW_DESC_RXBUFF_ADDR,
752 (u8 *)&bufferaddress);
0c817338
LF
753 rtlpriv->cfg->ops->set_desc((u8 *)pdesc, false,
754 HW_DESC_RXPKT_LEN,
755 (u8 *)&rtlpci->rxbuffersize);
756
34ddb207 757 if (index == rtlpci->rxringcount - 1)
0c817338
LF
758 rtlpriv->cfg->ops->set_desc((u8 *)pdesc, false,
759 HW_DESC_RXERO,
760 (u8 *)&tmp_one);
761
febc9fe5
MM
762 rtlpriv->cfg->ops->set_desc((u8 *)pdesc, false, HW_DESC_RXOWN,
763 (u8 *)&tmp_one);
764
34ddb207 765 index = (index + 1) % rtlpci->rxringcount;
0c817338
LF
766 }
767
34ddb207 768 rtlpci->rx_ring[rx_queue_idx].idx = index;
0c817338
LF
769}
770
0c817338
LF
771static irqreturn_t _rtl_pci_interrupt(int irq, void *dev_id)
772{
773 struct ieee80211_hw *hw = dev_id;
774 struct rtl_priv *rtlpriv = rtl_priv(hw);
c7cfe38e 775 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
0c817338
LF
776 unsigned long flags;
777 u32 inta = 0;
778 u32 intb = 0;
de2e56ce 779 irqreturn_t ret = IRQ_HANDLED;
0c817338 780
0c817338
LF
781 spin_lock_irqsave(&rtlpriv->locks.irq_th_lock, flags);
782
783 /*read ISR: 4/8bytes */
784 rtlpriv->cfg->ops->interrupt_recognized(hw, &inta, &intb);
785
786 /*Shared IRQ or HW disappared */
de2e56ce
LF
787 if (!inta || inta == 0xffff) {
788 ret = IRQ_NONE;
0c817338 789 goto done;
de2e56ce 790 }
0c817338
LF
791
792 /*<1> beacon related */
793 if (inta & rtlpriv->cfg->maps[RTL_IMR_TBDOK]) {
794 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 795 "beacon ok interrupt!\n");
0c817338
LF
796 }
797
798 if (unlikely(inta & rtlpriv->cfg->maps[RTL_IMR_TBDER])) {
799 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 800 "beacon err interrupt!\n");
0c817338
LF
801 }
802
803 if (inta & rtlpriv->cfg->maps[RTL_IMR_BDOK]) {
f30d7507 804 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE, "beacon interrupt!\n");
0c817338
LF
805 }
806
807 if (inta & rtlpriv->cfg->maps[RTL_IMR_BcnInt]) {
808 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 809 "prepare beacon for interrupt!\n");
0c817338
LF
810 tasklet_schedule(&rtlpriv->works.irq_prepare_bcn_tasklet);
811 }
812
813 /*<3> Tx related */
814 if (unlikely(inta & rtlpriv->cfg->maps[RTL_IMR_TXFOVW]))
f30d7507 815 RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING, "IMR_TXFOVW!\n");
0c817338
LF
816
817 if (inta & rtlpriv->cfg->maps[RTL_IMR_MGNTDOK]) {
818 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 819 "Manage ok interrupt!\n");
0c817338
LF
820 _rtl_pci_tx_isr(hw, MGNT_QUEUE);
821 }
822
823 if (inta & rtlpriv->cfg->maps[RTL_IMR_HIGHDOK]) {
824 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 825 "HIGH_QUEUE ok interrupt!\n");
0c817338
LF
826 _rtl_pci_tx_isr(hw, HIGH_QUEUE);
827 }
828
829 if (inta & rtlpriv->cfg->maps[RTL_IMR_BKDOK]) {
830 rtlpriv->link_info.num_tx_inperiod++;
831
832 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 833 "BK Tx OK interrupt!\n");
0c817338
LF
834 _rtl_pci_tx_isr(hw, BK_QUEUE);
835 }
836
837 if (inta & rtlpriv->cfg->maps[RTL_IMR_BEDOK]) {
838 rtlpriv->link_info.num_tx_inperiod++;
839
840 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 841 "BE TX OK interrupt!\n");
0c817338
LF
842 _rtl_pci_tx_isr(hw, BE_QUEUE);
843 }
844
845 if (inta & rtlpriv->cfg->maps[RTL_IMR_VIDOK]) {
846 rtlpriv->link_info.num_tx_inperiod++;
847
848 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 849 "VI TX OK interrupt!\n");
0c817338
LF
850 _rtl_pci_tx_isr(hw, VI_QUEUE);
851 }
852
853 if (inta & rtlpriv->cfg->maps[RTL_IMR_VODOK]) {
854 rtlpriv->link_info.num_tx_inperiod++;
855
856 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 857 "Vo TX OK interrupt!\n");
0c817338
LF
858 _rtl_pci_tx_isr(hw, VO_QUEUE);
859 }
860
c7cfe38e
C
861 if (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SE) {
862 if (inta & rtlpriv->cfg->maps[RTL_IMR_COMDOK]) {
863 rtlpriv->link_info.num_tx_inperiod++;
864
865 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE,
f30d7507 866 "CMD TX OK interrupt!\n");
c7cfe38e
C
867 _rtl_pci_tx_isr(hw, TXCMD_QUEUE);
868 }
869 }
870
0c817338
LF
871 /*<2> Rx related */
872 if (inta & rtlpriv->cfg->maps[RTL_IMR_ROK]) {
f30d7507 873 RT_TRACE(rtlpriv, COMP_INTR, DBG_TRACE, "Rx ok interrupt!\n");
c7cfe38e 874 _rtl_pci_rx_interrupt(hw);
0c817338
LF
875 }
876
877 if (unlikely(inta & rtlpriv->cfg->maps[RTL_IMR_RDU])) {
878 RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
f30d7507 879 "rx descriptor unavailable!\n");
c7cfe38e 880 _rtl_pci_rx_interrupt(hw);
0c817338
LF
881 }
882
883 if (unlikely(inta & rtlpriv->cfg->maps[RTL_IMR_RXFOVW])) {
f30d7507 884 RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING, "rx overflow !\n");
c7cfe38e 885 _rtl_pci_rx_interrupt(hw);
0c817338
LF
886 }
887
c7cfe38e
C
888 if (rtlpriv->rtlhal.earlymode_enable)
889 tasklet_schedule(&rtlpriv->works.irq_tasklet);
890
0c817338
LF
891done:
892 spin_unlock_irqrestore(&rtlpriv->locks.irq_th_lock, flags);
de2e56ce 893 return ret;
0c817338
LF
894}
895
896static void _rtl_pci_irq_tasklet(struct ieee80211_hw *hw)
897{
c7cfe38e 898 _rtl_pci_tx_chk_waitq(hw);
0c817338
LF
899}
900
901static void _rtl_pci_prepare_bcn_tasklet(struct ieee80211_hw *hw)
902{
903 struct rtl_priv *rtlpriv = rtl_priv(hw);
904 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
905 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
c7cfe38e 906 struct rtl8192_tx_ring *ring = NULL;
0c817338
LF
907 struct ieee80211_hdr *hdr = NULL;
908 struct ieee80211_tx_info *info = NULL;
909 struct sk_buff *pskb = NULL;
910 struct rtl_tx_desc *pdesc = NULL;
c7cfe38e 911 struct rtl_tcb_desc tcb_desc;
0c817338
LF
912 u8 temp_one = 1;
913
c7cfe38e 914 memset(&tcb_desc, 0, sizeof(struct rtl_tcb_desc));
0c817338
LF
915 ring = &rtlpci->tx_ring[BEACON_QUEUE];
916 pskb = __skb_dequeue(&ring->queue);
917 if (pskb)
918 kfree_skb(pskb);
919
920 /*NB: the beacon data buffer must be 32-bit aligned. */
921 pskb = ieee80211_beacon_get(hw, mac->vif);
922 if (pskb == NULL)
923 return;
c7cfe38e 924 hdr = rtl_get_hdr(pskb);
0c817338 925 info = IEEE80211_SKB_CB(pskb);
0c817338
LF
926 pdesc = &ring->desc[0];
927 rtlpriv->cfg->ops->fill_tx_desc(hw, hdr, (u8 *) pdesc,
c7cfe38e 928 info, pskb, BEACON_QUEUE, &tcb_desc);
0c817338
LF
929
930 __skb_queue_tail(&ring->queue, pskb);
931
932 rtlpriv->cfg->ops->set_desc((u8 *) pdesc, true, HW_DESC_OWN,
933 (u8 *)&temp_one);
934
935 return;
936}
937
41affd52
SG
938static void rtl_lps_leave_work_callback(struct work_struct *work)
939{
940 struct rtl_works *rtlworks =
941 container_of(work, struct rtl_works, lps_leave_work);
942 struct ieee80211_hw *hw = rtlworks->hw;
943
944 rtl_lps_leave(hw);
945}
946
0c817338
LF
947static void _rtl_pci_init_trx_var(struct ieee80211_hw *hw)
948{
949 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
950 u8 i;
951
952 for (i = 0; i < RTL_PCI_MAX_TX_QUEUE_COUNT; i++)
953 rtlpci->txringcount[i] = RT_TXDESC_NUM;
954
955 /*
956 *we just alloc 2 desc for beacon queue,
957 *because we just need first desc in hw beacon.
958 */
959 rtlpci->txringcount[BEACON_QUEUE] = 2;
960
961 /*
962 *BE queue need more descriptor for performance
963 *consideration or, No more tx desc will happen,
964 *and may cause mac80211 mem leakage.
965 */
966 rtlpci->txringcount[BE_QUEUE] = RT_TXDESC_NUM_BE_QUEUE;
967
968 rtlpci->rxbuffersize = 9100; /*2048/1024; */
969 rtlpci->rxringcount = RTL_PCI_MAX_RX_COUNT; /*64; */
970}
971
972static void _rtl_pci_init_struct(struct ieee80211_hw *hw,
973 struct pci_dev *pdev)
974{
975 struct rtl_priv *rtlpriv = rtl_priv(hw);
976 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
977 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
978 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
0c817338
LF
979
980 rtlpci->up_first_time = true;
981 rtlpci->being_init_adapter = false;
982
983 rtlhal->hw = hw;
984 rtlpci->pdev = pdev;
985
0c817338
LF
986 /*Tx/Rx related var */
987 _rtl_pci_init_trx_var(hw);
988
c7cfe38e 989 /*IBSS*/ mac->beacon_interval = 100;
0c817338 990
c7cfe38e
C
991 /*AMPDU*/
992 mac->min_space_cfg = 0;
0c817338
LF
993 mac->max_mss_density = 0;
994 /*set sane AMPDU defaults */
995 mac->current_ampdu_density = 7;
996 mac->current_ampdu_factor = 3;
997
c7cfe38e
C
998 /*QOS*/
999 rtlpci->acm_method = eAcmWay2_SW;
0c817338
LF
1000
1001 /*task */
1002 tasklet_init(&rtlpriv->works.irq_tasklet,
1003 (void (*)(unsigned long))_rtl_pci_irq_tasklet,
1004 (unsigned long)hw);
1005 tasklet_init(&rtlpriv->works.irq_prepare_bcn_tasklet,
1006 (void (*)(unsigned long))_rtl_pci_prepare_bcn_tasklet,
1007 (unsigned long)hw);
41affd52 1008 INIT_WORK(&rtlpriv->works.lps_leave_work, rtl_lps_leave_work_callback);
0c817338
LF
1009}
1010
1011static int _rtl_pci_init_tx_ring(struct ieee80211_hw *hw,
1012 unsigned int prio, unsigned int entries)
1013{
1014 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1015 struct rtl_priv *rtlpriv = rtl_priv(hw);
1016 struct rtl_tx_desc *ring;
1017 dma_addr_t dma;
1018 u32 nextdescaddress;
1019 int i;
1020
1021 ring = pci_alloc_consistent(rtlpci->pdev,
1022 sizeof(*ring) * entries, &dma);
1023
1024 if (!ring || (unsigned long)ring & 0xFF) {
1025 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
f30d7507 1026 "Cannot allocate TX ring (prio = %d)\n", prio);
0c817338
LF
1027 return -ENOMEM;
1028 }
1029
1030 memset(ring, 0, sizeof(*ring) * entries);
1031 rtlpci->tx_ring[prio].desc = ring;
1032 rtlpci->tx_ring[prio].dma = dma;
1033 rtlpci->tx_ring[prio].idx = 0;
1034 rtlpci->tx_ring[prio].entries = entries;
1035 skb_queue_head_init(&rtlpci->tx_ring[prio].queue);
1036
f30d7507
JP
1037 RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, "queue:%d, ring_addr:%p\n",
1038 prio, ring);
0c817338
LF
1039
1040 for (i = 0; i < entries; i++) {
d3bb1429 1041 nextdescaddress = (u32) dma +
982d96bb 1042 ((i + 1) % entries) *
d3bb1429 1043 sizeof(*ring);
0c817338
LF
1044
1045 rtlpriv->cfg->ops->set_desc((u8 *)&(ring[i]),
1046 true, HW_DESC_TX_NEXTDESC_ADDR,
1047 (u8 *)&nextdescaddress);
1048 }
1049
1050 return 0;
1051}
1052
1053static int _rtl_pci_init_rx_ring(struct ieee80211_hw *hw)
1054{
1055 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1056 struct rtl_priv *rtlpriv = rtl_priv(hw);
1057 struct rtl_rx_desc *entry = NULL;
1058 int i, rx_queue_idx;
1059 u8 tmp_one = 1;
1060
1061 /*
1062 *rx_queue_idx 0:RX_MPDU_QUEUE
1063 *rx_queue_idx 1:RX_CMD_QUEUE
1064 */
1065 for (rx_queue_idx = 0; rx_queue_idx < RTL_PCI_MAX_RX_QUEUE;
1066 rx_queue_idx++) {
1067 rtlpci->rx_ring[rx_queue_idx].desc =
1068 pci_alloc_consistent(rtlpci->pdev,
1069 sizeof(*rtlpci->rx_ring[rx_queue_idx].
1070 desc) * rtlpci->rxringcount,
1071 &rtlpci->rx_ring[rx_queue_idx].dma);
1072
1073 if (!rtlpci->rx_ring[rx_queue_idx].desc ||
1074 (unsigned long)rtlpci->rx_ring[rx_queue_idx].desc & 0xFF) {
1075 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
f30d7507 1076 "Cannot allocate RX ring\n");
0c817338
LF
1077 return -ENOMEM;
1078 }
1079
1080 memset(rtlpci->rx_ring[rx_queue_idx].desc, 0,
1081 sizeof(*rtlpci->rx_ring[rx_queue_idx].desc) *
1082 rtlpci->rxringcount);
1083
1084 rtlpci->rx_ring[rx_queue_idx].idx = 0;
1085
0019a2c9
LF
1086 /* If amsdu_8k is disabled, set buffersize to 4096. This
1087 * change will reduce memory fragmentation.
1088 */
1089 if (rtlpci->rxbuffersize > 4096 &&
1090 rtlpriv->rtlhal.disable_amsdu_8k)
1091 rtlpci->rxbuffersize = 4096;
1092
0c817338
LF
1093 for (i = 0; i < rtlpci->rxringcount; i++) {
1094 struct sk_buff *skb =
1095 dev_alloc_skb(rtlpci->rxbuffersize);
1096 u32 bufferaddress;
0c817338
LF
1097 if (!skb)
1098 return 0;
bdc4bf65 1099 entry = &rtlpci->rx_ring[rx_queue_idx].desc[i];
0c817338
LF
1100
1101 /*skb->dev = dev; */
1102
1103 rtlpci->rx_ring[rx_queue_idx].rx_buf[i] = skb;
1104
1105 /*
1106 *just set skb->cb to mapping addr
1107 *for pci_unmap_single use
1108 */
1109 *((dma_addr_t *) skb->cb) =
1110 pci_map_single(rtlpci->pdev, skb_tail_pointer(skb),
1111 rtlpci->rxbuffersize,
1112 PCI_DMA_FROMDEVICE);
1113
d3bb1429 1114 bufferaddress = (*((dma_addr_t *)skb->cb));
0c817338
LF
1115 rtlpriv->cfg->ops->set_desc((u8 *)entry, false,
1116 HW_DESC_RXBUFF_ADDR,
1117 (u8 *)&bufferaddress);
1118 rtlpriv->cfg->ops->set_desc((u8 *)entry, false,
1119 HW_DESC_RXPKT_LEN,
1120 (u8 *)&rtlpci->
1121 rxbuffersize);
1122 rtlpriv->cfg->ops->set_desc((u8 *) entry, false,
1123 HW_DESC_RXOWN,
1124 (u8 *)&tmp_one);
1125 }
1126
1127 rtlpriv->cfg->ops->set_desc((u8 *) entry, false,
1128 HW_DESC_RXERO, (u8 *)&tmp_one);
1129 }
1130 return 0;
1131}
1132
1133static void _rtl_pci_free_tx_ring(struct ieee80211_hw *hw,
1134 unsigned int prio)
1135{
1136 struct rtl_priv *rtlpriv = rtl_priv(hw);
1137 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1138 struct rtl8192_tx_ring *ring = &rtlpci->tx_ring[prio];
1139
1140 while (skb_queue_len(&ring->queue)) {
1141 struct rtl_tx_desc *entry = &ring->desc[ring->idx];
1142 struct sk_buff *skb = __skb_dequeue(&ring->queue);
1143
1144 pci_unmap_single(rtlpci->pdev,
d3bb1429 1145 rtlpriv->cfg->
0c817338 1146 ops->get_desc((u8 *) entry, true,
d3bb1429 1147 HW_DESC_TXBUFF_ADDR),
0c817338
LF
1148 skb->len, PCI_DMA_TODEVICE);
1149 kfree_skb(skb);
1150 ring->idx = (ring->idx + 1) % ring->entries;
1151 }
1152
1153 pci_free_consistent(rtlpci->pdev,
1154 sizeof(*ring->desc) * ring->entries,
1155 ring->desc, ring->dma);
1156 ring->desc = NULL;
1157}
1158
1159static void _rtl_pci_free_rx_ring(struct rtl_pci *rtlpci)
1160{
1161 int i, rx_queue_idx;
1162
1163 /*rx_queue_idx 0:RX_MPDU_QUEUE */
1164 /*rx_queue_idx 1:RX_CMD_QUEUE */
1165 for (rx_queue_idx = 0; rx_queue_idx < RTL_PCI_MAX_RX_QUEUE;
1166 rx_queue_idx++) {
1167 for (i = 0; i < rtlpci->rxringcount; i++) {
1168 struct sk_buff *skb =
1169 rtlpci->rx_ring[rx_queue_idx].rx_buf[i];
1170 if (!skb)
1171 continue;
1172
1173 pci_unmap_single(rtlpci->pdev,
1174 *((dma_addr_t *) skb->cb),
1175 rtlpci->rxbuffersize,
1176 PCI_DMA_FROMDEVICE);
1177 kfree_skb(skb);
1178 }
1179
1180 pci_free_consistent(rtlpci->pdev,
1181 sizeof(*rtlpci->rx_ring[rx_queue_idx].
1182 desc) * rtlpci->rxringcount,
1183 rtlpci->rx_ring[rx_queue_idx].desc,
1184 rtlpci->rx_ring[rx_queue_idx].dma);
1185 rtlpci->rx_ring[rx_queue_idx].desc = NULL;
1186 }
1187}
1188
1189static int _rtl_pci_init_trx_ring(struct ieee80211_hw *hw)
1190{
1191 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1192 int ret;
1193 int i;
1194
1195 ret = _rtl_pci_init_rx_ring(hw);
1196 if (ret)
1197 return ret;
1198
1199 for (i = 0; i < RTL_PCI_MAX_TX_QUEUE_COUNT; i++) {
1200 ret = _rtl_pci_init_tx_ring(hw, i,
1201 rtlpci->txringcount[i]);
1202 if (ret)
1203 goto err_free_rings;
1204 }
1205
1206 return 0;
1207
1208err_free_rings:
1209 _rtl_pci_free_rx_ring(rtlpci);
1210
1211 for (i = 0; i < RTL_PCI_MAX_TX_QUEUE_COUNT; i++)
1212 if (rtlpci->tx_ring[i].desc)
1213 _rtl_pci_free_tx_ring(hw, i);
1214
1215 return 1;
1216}
1217
1218static int _rtl_pci_deinit_trx_ring(struct ieee80211_hw *hw)
1219{
1220 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1221 u32 i;
1222
1223 /*free rx rings */
1224 _rtl_pci_free_rx_ring(rtlpci);
1225
1226 /*free tx rings */
1227 for (i = 0; i < RTL_PCI_MAX_TX_QUEUE_COUNT; i++)
1228 _rtl_pci_free_tx_ring(hw, i);
1229
1230 return 0;
1231}
1232
1233int rtl_pci_reset_trx_ring(struct ieee80211_hw *hw)
1234{
1235 struct rtl_priv *rtlpriv = rtl_priv(hw);
1236 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1237 int i, rx_queue_idx;
1238 unsigned long flags;
1239 u8 tmp_one = 1;
1240
1241 /*rx_queue_idx 0:RX_MPDU_QUEUE */
1242 /*rx_queue_idx 1:RX_CMD_QUEUE */
1243 for (rx_queue_idx = 0; rx_queue_idx < RTL_PCI_MAX_RX_QUEUE;
1244 rx_queue_idx++) {
1245 /*
1246 *force the rx_ring[RX_MPDU_QUEUE/
1247 *RX_CMD_QUEUE].idx to the first one
1248 */
1249 if (rtlpci->rx_ring[rx_queue_idx].desc) {
1250 struct rtl_rx_desc *entry = NULL;
1251
1252 for (i = 0; i < rtlpci->rxringcount; i++) {
1253 entry = &rtlpci->rx_ring[rx_queue_idx].desc[i];
1254 rtlpriv->cfg->ops->set_desc((u8 *) entry,
1255 false,
1256 HW_DESC_RXOWN,
1257 (u8 *)&tmp_one);
1258 }
1259 rtlpci->rx_ring[rx_queue_idx].idx = 0;
1260 }
1261 }
1262
1263 /*
1264 *after reset, release previous pending packet,
1265 *and force the tx idx to the first one
1266 */
1267 spin_lock_irqsave(&rtlpriv->locks.irq_th_lock, flags);
1268 for (i = 0; i < RTL_PCI_MAX_TX_QUEUE_COUNT; i++) {
1269 if (rtlpci->tx_ring[i].desc) {
1270 struct rtl8192_tx_ring *ring = &rtlpci->tx_ring[i];
1271
1272 while (skb_queue_len(&ring->queue)) {
1273 struct rtl_tx_desc *entry =
1274 &ring->desc[ring->idx];
1275 struct sk_buff *skb =
1276 __skb_dequeue(&ring->queue);
1277
1278 pci_unmap_single(rtlpci->pdev,
d3bb1429 1279 rtlpriv->cfg->ops->
0c817338
LF
1280 get_desc((u8 *)
1281 entry,
1282 true,
d3bb1429 1283 HW_DESC_TXBUFF_ADDR),
0c817338
LF
1284 skb->len, PCI_DMA_TODEVICE);
1285 kfree_skb(skb);
1286 ring->idx = (ring->idx + 1) % ring->entries;
1287 }
1288 ring->idx = 0;
1289 }
1290 }
1291
1292 spin_unlock_irqrestore(&rtlpriv->locks.irq_th_lock, flags);
1293
1294 return 0;
1295}
1296
c7cfe38e
C
1297static bool rtl_pci_tx_chk_waitq_insert(struct ieee80211_hw *hw,
1298 struct sk_buff *skb)
0c817338 1299{
c7cfe38e
C
1300 struct rtl_priv *rtlpriv = rtl_priv(hw);
1301 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1302 struct ieee80211_sta *sta = info->control.sta;
1303 struct rtl_sta_info *sta_entry = NULL;
1304 u8 tid = rtl_get_tid(skb);
1305
1306 if (!sta)
1307 return false;
1308 sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1309
1310 if (!rtlpriv->rtlhal.earlymode_enable)
1311 return false;
1312 if (sta_entry->tids[tid].agg.agg_state != RTL_AGG_OPERATIONAL)
1313 return false;
1314 if (_rtl_mac_to_hwqueue(hw, skb) > VO_QUEUE)
1315 return false;
1316 if (tid > 7)
1317 return false;
1318
1319 /* maybe every tid should be checked */
1320 if (!rtlpriv->link_info.higher_busytxtraffic[tid])
1321 return false;
1322
1323 spin_lock_bh(&rtlpriv->locks.waitq_lock);
1324 skb_queue_tail(&rtlpriv->mac80211.skb_waitq[tid], skb);
1325 spin_unlock_bh(&rtlpriv->locks.waitq_lock);
0c817338 1326
c7cfe38e 1327 return true;
0c817338
LF
1328}
1329
d3bb1429 1330static int rtl_pci_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
c7cfe38e 1331 struct rtl_tcb_desc *ptcb_desc)
0c817338
LF
1332{
1333 struct rtl_priv *rtlpriv = rtl_priv(hw);
c7cfe38e 1334 struct rtl_sta_info *sta_entry = NULL;
0c817338 1335 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
c7cfe38e 1336 struct ieee80211_sta *sta = info->control.sta;
0c817338
LF
1337 struct rtl8192_tx_ring *ring;
1338 struct rtl_tx_desc *pdesc;
1339 u8 idx;
c7cfe38e 1340 u8 hw_queue = _rtl_mac_to_hwqueue(hw, skb);
0c817338 1341 unsigned long flags;
c7cfe38e
C
1342 struct ieee80211_hdr *hdr = rtl_get_hdr(skb);
1343 __le16 fc = rtl_get_fc(skb);
0c817338
LF
1344 u8 *pda_addr = hdr->addr1;
1345 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1346 /*ssn */
0c817338
LF
1347 u8 tid = 0;
1348 u16 seq_number = 0;
1349 u8 own;
1350 u8 temp_one = 1;
1351
c7cfe38e 1352 if (ieee80211_is_auth(fc)) {
f30d7507 1353 RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG, "MAC80211_LINKING\n");
c7cfe38e
C
1354 rtl_ips_nic_on(hw);
1355 }
1356
1357 if (rtlpriv->psc.sw_ps_enabled) {
1358 if (ieee80211_is_data(fc) && !ieee80211_is_nullfunc(fc) &&
1359 !ieee80211_has_pm(fc))
1360 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
1361 }
0c817338 1362
c7cfe38e 1363 rtl_action_proc(hw, skb, true);
0c817338
LF
1364
1365 if (is_multicast_ether_addr(pda_addr))
1366 rtlpriv->stats.txbytesmulticast += skb->len;
1367 else if (is_broadcast_ether_addr(pda_addr))
1368 rtlpriv->stats.txbytesbroadcast += skb->len;
1369 else
1370 rtlpriv->stats.txbytesunicast += skb->len;
1371
1372 spin_lock_irqsave(&rtlpriv->locks.irq_th_lock, flags);
0c817338
LF
1373 ring = &rtlpci->tx_ring[hw_queue];
1374 if (hw_queue != BEACON_QUEUE)
1375 idx = (ring->idx + skb_queue_len(&ring->queue)) %
1376 ring->entries;
1377 else
1378 idx = 0;
1379
1380 pdesc = &ring->desc[idx];
1381 own = (u8) rtlpriv->cfg->ops->get_desc((u8 *) pdesc,
1382 true, HW_DESC_OWN);
1383
1384 if ((own == 1) && (hw_queue != BEACON_QUEUE)) {
1385 RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
f30d7507
JP
1386 "No more TX desc@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%d\n",
1387 hw_queue, ring->idx, idx,
1388 skb_queue_len(&ring->queue));
0c817338
LF
1389
1390 spin_unlock_irqrestore(&rtlpriv->locks.irq_th_lock, flags);
1391 return skb->len;
1392 }
1393
0c817338 1394 if (ieee80211_is_data_qos(fc)) {
c7cfe38e
C
1395 tid = rtl_get_tid(skb);
1396 if (sta) {
1397 sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1398 seq_number = (le16_to_cpu(hdr->seq_ctrl) &
1399 IEEE80211_SCTL_SEQ) >> 4;
1400 seq_number += 1;
1401
1402 if (!ieee80211_has_morefrags(hdr->frame_control))
1403 sta_entry->tids[tid].seq_number = seq_number;
1404 }
0c817338
LF
1405 }
1406
1407 if (ieee80211_is_data(fc))
1408 rtlpriv->cfg->ops->led_control(hw, LED_CTL_TX);
1409
c7cfe38e
C
1410 rtlpriv->cfg->ops->fill_tx_desc(hw, hdr, (u8 *)pdesc,
1411 info, skb, hw_queue, ptcb_desc);
0c817338
LF
1412
1413 __skb_queue_tail(&ring->queue, skb);
1414
c7cfe38e 1415 rtlpriv->cfg->ops->set_desc((u8 *)pdesc, true,
0c817338
LF
1416 HW_DESC_OWN, (u8 *)&temp_one);
1417
0c817338
LF
1418
1419 if ((ring->entries - skb_queue_len(&ring->queue)) < 2 &&
1420 hw_queue != BEACON_QUEUE) {
1421
1422 RT_TRACE(rtlpriv, COMP_ERR, DBG_LOUD,
f30d7507
JP
1423 "less desc left, stop skb_queue@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%d\n",
1424 hw_queue, ring->idx, idx,
1425 skb_queue_len(&ring->queue));
0c817338
LF
1426
1427 ieee80211_stop_queue(hw, skb_get_queue_mapping(skb));
1428 }
1429
1430 spin_unlock_irqrestore(&rtlpriv->locks.irq_th_lock, flags);
1431
1432 rtlpriv->cfg->ops->tx_polling(hw, hw_queue);
1433
1434 return 0;
1435}
1436
c7cfe38e
C
1437static void rtl_pci_flush(struct ieee80211_hw *hw, bool drop)
1438{
1439 struct rtl_priv *rtlpriv = rtl_priv(hw);
1440 struct rtl_pci_priv *pcipriv = rtl_pcipriv(hw);
1441 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
1442 u16 i = 0;
1443 int queue_id;
1444 struct rtl8192_tx_ring *ring;
1445
1446 for (queue_id = RTL_PCI_MAX_TX_QUEUE_COUNT - 1; queue_id >= 0;) {
1447 u32 queue_len;
1448 ring = &pcipriv->dev.tx_ring[queue_id];
1449 queue_len = skb_queue_len(&ring->queue);
1450 if (queue_len == 0 || queue_id == BEACON_QUEUE ||
1451 queue_id == TXCMD_QUEUE) {
1452 queue_id--;
1453 continue;
1454 } else {
1455 msleep(20);
1456 i++;
1457 }
1458
1459 /* we just wait 1s for all queues */
1460 if (rtlpriv->psc.rfpwr_state == ERFOFF ||
1461 is_hal_stop(rtlhal) || i >= 200)
1462 return;
1463 }
1464}
1465
d3bb1429 1466static void rtl_pci_deinit(struct ieee80211_hw *hw)
0c817338
LF
1467{
1468 struct rtl_priv *rtlpriv = rtl_priv(hw);
1469 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1470
1471 _rtl_pci_deinit_trx_ring(hw);
1472
1473 synchronize_irq(rtlpci->pdev->irq);
1474 tasklet_kill(&rtlpriv->works.irq_tasklet);
41affd52 1475 cancel_work_sync(&rtlpriv->works.lps_leave_work);
0c817338
LF
1476
1477 flush_workqueue(rtlpriv->works.rtl_wq);
1478 destroy_workqueue(rtlpriv->works.rtl_wq);
1479
1480}
1481
d3bb1429 1482static int rtl_pci_init(struct ieee80211_hw *hw, struct pci_dev *pdev)
0c817338
LF
1483{
1484 struct rtl_priv *rtlpriv = rtl_priv(hw);
1485 int err;
1486
1487 _rtl_pci_init_struct(hw, pdev);
1488
1489 err = _rtl_pci_init_trx_ring(hw);
1490 if (err) {
1491 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
f30d7507 1492 "tx ring initialization failed\n");
0c817338
LF
1493 return err;
1494 }
1495
1496 return 1;
1497}
1498
d3bb1429 1499static int rtl_pci_start(struct ieee80211_hw *hw)
0c817338
LF
1500{
1501 struct rtl_priv *rtlpriv = rtl_priv(hw);
1502 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
1503 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1504 struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
1505
1506 int err;
1507
1508 rtl_pci_reset_trx_ring(hw);
1509
1510 rtlpci->driver_is_goingto_unload = false;
1511 err = rtlpriv->cfg->ops->hw_init(hw);
1512 if (err) {
1513 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507 1514 "Failed to config hardware!\n");
0c817338
LF
1515 return err;
1516 }
1517
1518 rtlpriv->cfg->ops->enable_interrupt(hw);
f30d7507 1519 RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, "enable_interrupt OK\n");
0c817338
LF
1520
1521 rtl_init_rx_config(hw);
1522
fb914ebf 1523 /*should be after adapter start and interrupt enable. */
0c817338
LF
1524 set_hal_start(rtlhal);
1525
1526 RT_CLEAR_PS_LEVEL(ppsc, RT_RF_OFF_LEVL_HALT_NIC);
1527
1528 rtlpci->up_first_time = false;
1529
f30d7507 1530 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "OK\n");
0c817338
LF
1531 return 0;
1532}
1533
d3bb1429 1534static void rtl_pci_stop(struct ieee80211_hw *hw)
0c817338
LF
1535{
1536 struct rtl_priv *rtlpriv = rtl_priv(hw);
1537 struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
1538 struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
1539 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
1540 unsigned long flags;
1541 u8 RFInProgressTimeOut = 0;
1542
1543 /*
fb914ebf 1544 *should be before disable interrupt&adapter
0c817338
LF
1545 *and will do it immediately.
1546 */
1547 set_hal_stop(rtlhal);
1548
1549 rtlpriv->cfg->ops->disable_interrupt(hw);
41affd52 1550 cancel_work_sync(&rtlpriv->works.lps_leave_work);
0c817338
LF
1551
1552 spin_lock_irqsave(&rtlpriv->locks.rf_ps_lock, flags);
1553 while (ppsc->rfchange_inprogress) {
1554 spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, flags);
1555 if (RFInProgressTimeOut > 100) {
1556 spin_lock_irqsave(&rtlpriv->locks.rf_ps_lock, flags);
1557 break;
1558 }
1559 mdelay(1);
1560 RFInProgressTimeOut++;
1561 spin_lock_irqsave(&rtlpriv->locks.rf_ps_lock, flags);
1562 }
1563 ppsc->rfchange_inprogress = true;
1564 spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, flags);
1565
1566 rtlpci->driver_is_goingto_unload = true;
1567 rtlpriv->cfg->ops->hw_disable(hw);
1568 rtlpriv->cfg->ops->led_control(hw, LED_CTL_POWER_OFF);
1569
1570 spin_lock_irqsave(&rtlpriv->locks.rf_ps_lock, flags);
1571 ppsc->rfchange_inprogress = false;
1572 spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, flags);
1573
1574 rtl_pci_enable_aspm(hw);
1575}
1576
1577static bool _rtl_pci_find_adapter(struct pci_dev *pdev,
1578 struct ieee80211_hw *hw)
1579{
1580 struct rtl_priv *rtlpriv = rtl_priv(hw);
1581 struct rtl_pci_priv *pcipriv = rtl_pcipriv(hw);
1582 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
1583 struct pci_dev *bridge_pdev = pdev->bus->self;
1584 u16 venderid;
1585 u16 deviceid;
c7cfe38e 1586 u8 revisionid;
0c817338
LF
1587 u16 irqline;
1588 u8 tmp;
1589
fc7707a4 1590 pcipriv->ndis_adapter.pcibridge_vendor = PCI_BRIDGE_VENDOR_UNKNOWN;
0c817338
LF
1591 venderid = pdev->vendor;
1592 deviceid = pdev->device;
c7cfe38e 1593 pci_read_config_byte(pdev, 0x8, &revisionid);
0c817338
LF
1594 pci_read_config_word(pdev, 0x3C, &irqline);
1595
fa7ccfb1
LF
1596 /* PCI ID 0x10ec:0x8192 occurs for both RTL8192E, which uses
1597 * r8192e_pci, and RTL8192SE, which uses this driver. If the
1598 * revision ID is RTL_PCI_REVISION_ID_8192PCIE (0x01), then
1599 * the correct driver is r8192e_pci, thus this routine should
1600 * return false.
1601 */
1602 if (deviceid == RTL_PCI_8192SE_DID &&
1603 revisionid == RTL_PCI_REVISION_ID_8192PCIE)
1604 return false;
1605
0c817338
LF
1606 if (deviceid == RTL_PCI_8192_DID ||
1607 deviceid == RTL_PCI_0044_DID ||
1608 deviceid == RTL_PCI_0047_DID ||
1609 deviceid == RTL_PCI_8192SE_DID ||
1610 deviceid == RTL_PCI_8174_DID ||
1611 deviceid == RTL_PCI_8173_DID ||
1612 deviceid == RTL_PCI_8172_DID ||
1613 deviceid == RTL_PCI_8171_DID) {
c7cfe38e 1614 switch (revisionid) {
0c817338
LF
1615 case RTL_PCI_REVISION_ID_8192PCIE:
1616 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507
JP
1617 "8192 PCI-E is found - vid/did=%x/%x\n",
1618 venderid, deviceid);
0c817338
LF
1619 rtlhal->hw_type = HARDWARE_TYPE_RTL8192E;
1620 break;
1621 case RTL_PCI_REVISION_ID_8192SE:
1622 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507
JP
1623 "8192SE is found - vid/did=%x/%x\n",
1624 venderid, deviceid);
0c817338
LF
1625 rtlhal->hw_type = HARDWARE_TYPE_RTL8192SE;
1626 break;
1627 default:
1628 RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
f30d7507
JP
1629 "Err: Unknown device - vid/did=%x/%x\n",
1630 venderid, deviceid);
0c817338
LF
1631 rtlhal->hw_type = HARDWARE_TYPE_RTL8192SE;
1632 break;
1633
1634 }
1635 } else if (deviceid == RTL_PCI_8192CET_DID ||
1636 deviceid == RTL_PCI_8192CE_DID ||
1637 deviceid == RTL_PCI_8191CE_DID ||
1638 deviceid == RTL_PCI_8188CE_DID) {
1639 rtlhal->hw_type = HARDWARE_TYPE_RTL8192CE;
1640 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507
JP
1641 "8192C PCI-E is found - vid/did=%x/%x\n",
1642 venderid, deviceid);
c7cfe38e
C
1643 } else if (deviceid == RTL_PCI_8192DE_DID ||
1644 deviceid == RTL_PCI_8192DE_DID2) {
1645 rtlhal->hw_type = HARDWARE_TYPE_RTL8192DE;
1646 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507
JP
1647 "8192D PCI-E is found - vid/did=%x/%x\n",
1648 venderid, deviceid);
0c817338
LF
1649 } else {
1650 RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
f30d7507
JP
1651 "Err: Unknown device - vid/did=%x/%x\n",
1652 venderid, deviceid);
0c817338
LF
1653
1654 rtlhal->hw_type = RTL_DEFAULT_HARDWARE_TYPE;
1655 }
1656
c7cfe38e
C
1657 if (rtlhal->hw_type == HARDWARE_TYPE_RTL8192DE) {
1658 if (revisionid == 0 || revisionid == 1) {
1659 if (revisionid == 0) {
f30d7507
JP
1660 RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
1661 "Find 92DE MAC0\n");
c7cfe38e
C
1662 rtlhal->interfaceindex = 0;
1663 } else if (revisionid == 1) {
1664 RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
f30d7507 1665 "Find 92DE MAC1\n");
c7cfe38e
C
1666 rtlhal->interfaceindex = 1;
1667 }
1668 } else {
1669 RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
f30d7507
JP
1670 "Unknown device - VendorID/DeviceID=%x/%x, Revision=%x\n",
1671 venderid, deviceid, revisionid);
c7cfe38e
C
1672 rtlhal->interfaceindex = 0;
1673 }
1674 }
0c817338
LF
1675 /*find bus info */
1676 pcipriv->ndis_adapter.busnumber = pdev->bus->number;
1677 pcipriv->ndis_adapter.devnumber = PCI_SLOT(pdev->devfn);
1678 pcipriv->ndis_adapter.funcnumber = PCI_FUNC(pdev->devfn);
1679
b6b67df3
LF
1680 if (bridge_pdev) {
1681 /*find bridge info if available */
1682 pcipriv->ndis_adapter.pcibridge_vendorid = bridge_pdev->vendor;
1683 for (tmp = 0; tmp < PCI_BRIDGE_VENDOR_MAX; tmp++) {
1684 if (bridge_pdev->vendor == pcibridge_vendors[tmp]) {
1685 pcipriv->ndis_adapter.pcibridge_vendor = tmp;
1686 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507
JP
1687 "Pci Bridge Vendor is found index: %d\n",
1688 tmp);
b6b67df3
LF
1689 break;
1690 }
0c817338
LF
1691 }
1692 }
1693
1694 if (pcipriv->ndis_adapter.pcibridge_vendor !=
1695 PCI_BRIDGE_VENDOR_UNKNOWN) {
1696 pcipriv->ndis_adapter.pcibridge_busnum =
1697 bridge_pdev->bus->number;
1698 pcipriv->ndis_adapter.pcibridge_devnum =
1699 PCI_SLOT(bridge_pdev->devfn);
1700 pcipriv->ndis_adapter.pcibridge_funcnum =
1701 PCI_FUNC(bridge_pdev->devfn);
c7cfe38e
C
1702 pcipriv->ndis_adapter.pcibridge_pciehdr_offset =
1703 pci_pcie_cap(bridge_pdev);
0c817338
LF
1704 pcipriv->ndis_adapter.num4bytes =
1705 (pcipriv->ndis_adapter.pcibridge_pciehdr_offset + 0x10) / 4;
1706
1707 rtl_pci_get_linkcontrol_field(hw);
1708
1709 if (pcipriv->ndis_adapter.pcibridge_vendor ==
1710 PCI_BRIDGE_VENDOR_AMD) {
1711 pcipriv->ndis_adapter.amd_l1_patch =
1712 rtl_pci_get_amd_l1_patch(hw);
1713 }
1714 }
1715
1716 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507
JP
1717 "pcidev busnumber:devnumber:funcnumber:vendor:link_ctl %d:%d:%d:%x:%x\n",
1718 pcipriv->ndis_adapter.busnumber,
1719 pcipriv->ndis_adapter.devnumber,
1720 pcipriv->ndis_adapter.funcnumber,
1721 pdev->vendor, pcipriv->ndis_adapter.linkctrl_reg);
0c817338
LF
1722
1723 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507
JP
1724 "pci_bridge busnumber:devnumber:funcnumber:vendor:pcie_cap:link_ctl_reg:amd %d:%d:%d:%x:%x:%x:%x\n",
1725 pcipriv->ndis_adapter.pcibridge_busnum,
1726 pcipriv->ndis_adapter.pcibridge_devnum,
1727 pcipriv->ndis_adapter.pcibridge_funcnum,
1728 pcibridge_vendors[pcipriv->ndis_adapter.pcibridge_vendor],
1729 pcipriv->ndis_adapter.pcibridge_pciehdr_offset,
1730 pcipriv->ndis_adapter.pcibridge_linkctrlreg,
1731 pcipriv->ndis_adapter.amd_l1_patch);
0c817338
LF
1732
1733 rtl_pci_parse_configuration(pdev, hw);
1734
1735 return true;
1736}
1737
1738int __devinit rtl_pci_probe(struct pci_dev *pdev,
1739 const struct pci_device_id *id)
1740{
1741 struct ieee80211_hw *hw = NULL;
1742
1743 struct rtl_priv *rtlpriv = NULL;
1744 struct rtl_pci_priv *pcipriv = NULL;
1745 struct rtl_pci *rtlpci;
1746 unsigned long pmem_start, pmem_len, pmem_flags;
1747 int err;
1748
1749 err = pci_enable_device(pdev);
1750 if (err) {
9d833ed7
JP
1751 RT_ASSERT(false, "%s : Cannot enable new PCI device\n",
1752 pci_name(pdev));
0c817338
LF
1753 return err;
1754 }
1755
1756 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) {
1757 if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) {
9d833ed7
JP
1758 RT_ASSERT(false,
1759 "Unable to obtain 32bit DMA for consistent allocations\n");
0c817338
LF
1760 pci_disable_device(pdev);
1761 return -ENOMEM;
1762 }
1763 }
1764
1765 pci_set_master(pdev);
1766
1767 hw = ieee80211_alloc_hw(sizeof(struct rtl_pci_priv) +
1768 sizeof(struct rtl_priv), &rtl_ops);
1769 if (!hw) {
1770 RT_ASSERT(false,
9d833ed7 1771 "%s : ieee80211 alloc failed\n", pci_name(pdev));
0c817338
LF
1772 err = -ENOMEM;
1773 goto fail1;
1774 }
1775
1776 SET_IEEE80211_DEV(hw, &pdev->dev);
1777 pci_set_drvdata(pdev, hw);
1778
1779 rtlpriv = hw->priv;
1780 pcipriv = (void *)rtlpriv->priv;
1781 pcipriv->dev.pdev = pdev;
1782
c7cfe38e
C
1783 /* init cfg & intf_ops */
1784 rtlpriv->rtlhal.interface = INTF_PCI;
1785 rtlpriv->cfg = (struct rtl_hal_cfg *)(id->driver_data);
1786 rtlpriv->intf_ops = &rtl_pci_ops;
1787
0c817338
LF
1788 /*
1789 *init dbgp flags before all
1790 *other functions, because we will
1791 *use it in other funtions like
1792 *RT_TRACE/RT_PRINT/RTL_PRINT_DATA
1793 *you can not use these macro
1794 *before this
1795 */
1796 rtl_dbgp_flag_init(hw);
1797
1798 /* MEM map */
1799 err = pci_request_regions(pdev, KBUILD_MODNAME);
1800 if (err) {
9d833ed7 1801 RT_ASSERT(false, "Can't obtain PCI resources\n");
0c817338
LF
1802 return err;
1803 }
1804
c7cfe38e
C
1805 pmem_start = pci_resource_start(pdev, rtlpriv->cfg->bar_id);
1806 pmem_len = pci_resource_len(pdev, rtlpriv->cfg->bar_id);
1807 pmem_flags = pci_resource_flags(pdev, rtlpriv->cfg->bar_id);
0c817338
LF
1808
1809 /*shared mem start */
1810 rtlpriv->io.pci_mem_start =
c7cfe38e
C
1811 (unsigned long)pci_iomap(pdev,
1812 rtlpriv->cfg->bar_id, pmem_len);
0c817338 1813 if (rtlpriv->io.pci_mem_start == 0) {
9d833ed7 1814 RT_ASSERT(false, "Can't map PCI mem\n");
0c817338
LF
1815 goto fail2;
1816 }
1817
1818 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507
JP
1819 "mem mapped space: start: 0x%08lx len:%08lx flags:%08lx, after map:0x%08lx\n",
1820 pmem_start, pmem_len, pmem_flags,
1821 rtlpriv->io.pci_mem_start);
0c817338
LF
1822
1823 /* Disable Clk Request */
1824 pci_write_config_byte(pdev, 0x81, 0);
1825 /* leave D3 mode */
1826 pci_write_config_byte(pdev, 0x44, 0);
1827 pci_write_config_byte(pdev, 0x04, 0x06);
1828 pci_write_config_byte(pdev, 0x04, 0x07);
1829
0c817338 1830 /* find adapter */
fa7ccfb1
LF
1831 if (!_rtl_pci_find_adapter(pdev, hw))
1832 goto fail3;
0c817338
LF
1833
1834 /* Init IO handler */
1835 _rtl_pci_io_handler_init(&pdev->dev, hw);
1836
1837 /*like read eeprom and so on */
1838 rtlpriv->cfg->ops->read_eeprom_info(hw);
1839
1840 if (rtlpriv->cfg->ops->init_sw_vars(hw)) {
f30d7507 1841 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "Can't init_sw_vars\n");
0c817338
LF
1842 goto fail3;
1843 }
1844
1845 rtlpriv->cfg->ops->init_sw_leds(hw);
1846
1847 /*aspm */
1848 rtl_pci_init_aspm(hw);
1849
1850 /* Init mac80211 sw */
1851 err = rtl_init_core(hw);
1852 if (err) {
1853 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
f30d7507 1854 "Can't allocate sw for mac80211\n");
0c817338
LF
1855 goto fail3;
1856 }
1857
1858 /* Init PCI sw */
1859 err = !rtl_pci_init(hw, pdev);
1860 if (err) {
f30d7507 1861 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "Failed to init PCI\n");
0c817338
LF
1862 goto fail3;
1863 }
1864
1865 err = ieee80211_register_hw(hw);
1866 if (err) {
1867 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
f30d7507 1868 "Can't register mac80211 hw\n");
0c817338
LF
1869 goto fail3;
1870 } else {
1871 rtlpriv->mac80211.mac80211_registered = 1;
1872 }
1873
1874 err = sysfs_create_group(&pdev->dev.kobj, &rtl_attribute_group);
1875 if (err) {
1876 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
f30d7507 1877 "failed to create sysfs device attributes\n");
0c817338
LF
1878 goto fail3;
1879 }
1880
1881 /*init rfkill */
1882 rtl_init_rfkill(hw);
1883
1884 rtlpci = rtl_pcidev(pcipriv);
1885 err = request_irq(rtlpci->pdev->irq, &_rtl_pci_interrupt,
1886 IRQF_SHARED, KBUILD_MODNAME, hw);
1887 if (err) {
1888 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
f30d7507
JP
1889 "%s: failed to register IRQ handler\n",
1890 wiphy_name(hw->wiphy));
0c817338
LF
1891 goto fail3;
1892 } else {
1893 rtlpci->irq_alloc = 1;
1894 }
1895
1896 set_bit(RTL_STATUS_INTERFACE_START, &rtlpriv->status);
1897 return 0;
1898
1899fail3:
1900 pci_set_drvdata(pdev, NULL);
1901 rtl_deinit_core(hw);
1902 _rtl_pci_io_handler_release(hw);
1903 ieee80211_free_hw(hw);
1904
1905 if (rtlpriv->io.pci_mem_start != 0)
62e63975 1906 pci_iounmap(pdev, (void __iomem *)rtlpriv->io.pci_mem_start);
0c817338
LF
1907
1908fail2:
1909 pci_release_regions(pdev);
1910
1911fail1:
1912
1913 pci_disable_device(pdev);
1914
1915 return -ENODEV;
1916
1917}
1918EXPORT_SYMBOL(rtl_pci_probe);
1919
1920void rtl_pci_disconnect(struct pci_dev *pdev)
1921{
1922 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
1923 struct rtl_pci_priv *pcipriv = rtl_pcipriv(hw);
1924 struct rtl_priv *rtlpriv = rtl_priv(hw);
1925 struct rtl_pci *rtlpci = rtl_pcidev(pcipriv);
1926 struct rtl_mac *rtlmac = rtl_mac(rtlpriv);
1927
1928 clear_bit(RTL_STATUS_INTERFACE_START, &rtlpriv->status);
1929
1930 sysfs_remove_group(&pdev->dev.kobj, &rtl_attribute_group);
1931
1932 /*ieee80211_unregister_hw will call ops_stop */
1933 if (rtlmac->mac80211_registered == 1) {
1934 ieee80211_unregister_hw(hw);
1935 rtlmac->mac80211_registered = 0;
1936 } else {
1937 rtl_deinit_deferred_work(hw);
1938 rtlpriv->intf_ops->adapter_stop(hw);
1939 }
1940
1941 /*deinit rfkill */
1942 rtl_deinit_rfkill(hw);
1943
1944 rtl_pci_deinit(hw);
1945 rtl_deinit_core(hw);
0c817338
LF
1946 _rtl_pci_io_handler_release(hw);
1947 rtlpriv->cfg->ops->deinit_sw_vars(hw);
1948
1949 if (rtlpci->irq_alloc) {
1950 free_irq(rtlpci->pdev->irq, hw);
1951 rtlpci->irq_alloc = 0;
1952 }
1953
1954 if (rtlpriv->io.pci_mem_start != 0) {
62e63975 1955 pci_iounmap(pdev, (void __iomem *)rtlpriv->io.pci_mem_start);
0c817338
LF
1956 pci_release_regions(pdev);
1957 }
1958
1959 pci_disable_device(pdev);
c7cfe38e
C
1960
1961 rtl_pci_disable_aspm(hw);
1962
0c817338
LF
1963 pci_set_drvdata(pdev, NULL);
1964
1965 ieee80211_free_hw(hw);
1966}
1967EXPORT_SYMBOL(rtl_pci_disconnect);
1968
1969/***************************************
1970kernel pci power state define:
1971PCI_D0 ((pci_power_t __force) 0)
1972PCI_D1 ((pci_power_t __force) 1)
1973PCI_D2 ((pci_power_t __force) 2)
1974PCI_D3hot ((pci_power_t __force) 3)
1975PCI_D3cold ((pci_power_t __force) 4)
1976PCI_UNKNOWN ((pci_power_t __force) 5)
1977
1978This function is called when system
1979goes into suspend state mac80211 will
1980call rtl_mac_stop() from the mac80211
1981suspend function first, So there is
1982no need to call hw_disable here.
1983****************************************/
603be388 1984int rtl_pci_suspend(struct device *dev)
0c817338 1985{
603be388 1986 struct pci_dev *pdev = to_pci_dev(dev);
c7cfe38e
C
1987 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
1988 struct rtl_priv *rtlpriv = rtl_priv(hw);
1989
1990 rtlpriv->cfg->ops->hw_suspend(hw);
1991 rtl_deinit_rfkill(hw);
1992
0c817338
LF
1993 return 0;
1994}
1995EXPORT_SYMBOL(rtl_pci_suspend);
1996
603be388 1997int rtl_pci_resume(struct device *dev)
0c817338 1998{
603be388 1999 struct pci_dev *pdev = to_pci_dev(dev);
c7cfe38e
C
2000 struct ieee80211_hw *hw = pci_get_drvdata(pdev);
2001 struct rtl_priv *rtlpriv = rtl_priv(hw);
0c817338 2002
c7cfe38e
C
2003 rtlpriv->cfg->ops->hw_resume(hw);
2004 rtl_init_rfkill(hw);
0c817338
LF
2005 return 0;
2006}
2007EXPORT_SYMBOL(rtl_pci_resume);
2008
2009struct rtl_intf_ops rtl_pci_ops = {
c7cfe38e 2010 .read_efuse_byte = read_efuse_byte,
0c817338
LF
2011 .adapter_start = rtl_pci_start,
2012 .adapter_stop = rtl_pci_stop,
2013 .adapter_tx = rtl_pci_tx,
c7cfe38e 2014 .flush = rtl_pci_flush,
0c817338 2015 .reset_trx_ring = rtl_pci_reset_trx_ring,
c7cfe38e 2016 .waitq_insert = rtl_pci_tx_chk_waitq_insert,
0c817338
LF
2017
2018 .disable_aspm = rtl_pci_disable_aspm,
2019 .enable_aspm = rtl_pci_enable_aspm,
2020};
This page took 0.252798 seconds and 5 git commands to generate.