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