| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 1 | /****************************************************************************** | 
|  | 2 | * | 
| Larry Finger | a8d7606 | 2012-01-07 20:46:42 -0600 | [diff] [blame] | 3 | * Copyright(c) 2009-2012  Realtek Corporation. All rights reserved. | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -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 | *****************************************************************************/ | 
| Joe Perches | 292b119 | 2011-07-20 08:51:35 -0700 | [diff] [blame] | 27 |  | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 28 | #include "wifi.h" | 
| Larry Finger | d273bb2 | 2012-01-27 13:59:25 -0600 | [diff] [blame] | 29 | #include "core.h" | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 30 | #include "usb.h" | 
|  | 31 | #include "base.h" | 
|  | 32 | #include "ps.h" | 
| George | 040a727 | 2011-11-17 12:14:42 -0600 | [diff] [blame] | 33 | #include "rtl8192c/fw_common.h" | 
| Larry Finger | d273bb2 | 2012-01-27 13:59:25 -0600 | [diff] [blame] | 34 | #include <linux/export.h> | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 35 |  | 
|  | 36 | #define	REALTEK_USB_VENQT_READ			0xC0 | 
|  | 37 | #define	REALTEK_USB_VENQT_WRITE			0x40 | 
|  | 38 | #define REALTEK_USB_VENQT_CMD_REQ		0x05 | 
|  | 39 | #define	REALTEK_USB_VENQT_CMD_IDX		0x00 | 
|  | 40 |  | 
| George | 040a727 | 2011-11-17 12:14:42 -0600 | [diff] [blame] | 41 | #define MAX_USBCTRL_VENDORREQ_TIMES		10 | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 42 |  | 
|  | 43 | static void usbctrl_async_callback(struct urb *urb) | 
|  | 44 | { | 
|  | 45 | if (urb) | 
|  | 46 | kfree(urb->context); | 
|  | 47 | } | 
|  | 48 |  | 
|  | 49 | static int _usbctrl_vendorreq_async_write(struct usb_device *udev, u8 request, | 
|  | 50 | u16 value, u16 index, void *pdata, | 
|  | 51 | u16 len) | 
|  | 52 | { | 
|  | 53 | int rc; | 
|  | 54 | unsigned int pipe; | 
|  | 55 | u8 reqtype; | 
|  | 56 | struct usb_ctrlrequest *dr; | 
|  | 57 | struct urb *urb; | 
|  | 58 | struct rtl819x_async_write_data { | 
|  | 59 | u8 data[REALTEK_USB_VENQT_MAX_BUF_SIZE]; | 
|  | 60 | struct usb_ctrlrequest dr; | 
|  | 61 | } *buf; | 
|  | 62 |  | 
|  | 63 | pipe = usb_sndctrlpipe(udev, 0); /* write_out */ | 
|  | 64 | reqtype =  REALTEK_USB_VENQT_WRITE; | 
|  | 65 |  | 
|  | 66 | buf = kmalloc(sizeof(*buf), GFP_ATOMIC); | 
|  | 67 | if (!buf) | 
|  | 68 | return -ENOMEM; | 
|  | 69 |  | 
|  | 70 | urb = usb_alloc_urb(0, GFP_ATOMIC); | 
|  | 71 | if (!urb) { | 
|  | 72 | kfree(buf); | 
|  | 73 | return -ENOMEM; | 
|  | 74 | } | 
|  | 75 |  | 
|  | 76 | dr = &buf->dr; | 
|  | 77 |  | 
|  | 78 | dr->bRequestType = reqtype; | 
|  | 79 | dr->bRequest = request; | 
|  | 80 | dr->wValue = cpu_to_le16(value); | 
|  | 81 | dr->wIndex = cpu_to_le16(index); | 
|  | 82 | dr->wLength = cpu_to_le16(len); | 
| Larry Finger | abfabc9 | 2011-11-17 12:14:44 -0600 | [diff] [blame] | 83 | /* data are already in little-endian order */ | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 84 | memcpy(buf, pdata, len); | 
|  | 85 | usb_fill_control_urb(urb, udev, pipe, | 
|  | 86 | (unsigned char *)dr, buf, len, | 
|  | 87 | usbctrl_async_callback, buf); | 
|  | 88 | rc = usb_submit_urb(urb, GFP_ATOMIC); | 
|  | 89 | if (rc < 0) | 
|  | 90 | kfree(buf); | 
|  | 91 | usb_free_urb(urb); | 
|  | 92 | return rc; | 
|  | 93 | } | 
|  | 94 |  | 
|  | 95 | static int _usbctrl_vendorreq_sync_read(struct usb_device *udev, u8 request, | 
|  | 96 | u16 value, u16 index, void *pdata, | 
|  | 97 | u16 len) | 
|  | 98 | { | 
|  | 99 | unsigned int pipe; | 
|  | 100 | int status; | 
|  | 101 | u8 reqtype; | 
| George | 040a727 | 2011-11-17 12:14:42 -0600 | [diff] [blame] | 102 | int vendorreq_times = 0; | 
| Larry Finger | abfabc9 | 2011-11-17 12:14:44 -0600 | [diff] [blame] | 103 | static int count; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 104 |  | 
|  | 105 | pipe = usb_rcvctrlpipe(udev, 0); /* read_in */ | 
|  | 106 | reqtype =  REALTEK_USB_VENQT_READ; | 
|  | 107 |  | 
| John W. Linville | eb1852b | 2011-11-21 16:37:26 -0500 | [diff] [blame] | 108 | do { | 
| George | 040a727 | 2011-11-17 12:14:42 -0600 | [diff] [blame] | 109 | status = usb_control_msg(udev, pipe, request, reqtype, value, | 
|  | 110 | index, pdata, len, 0); /*max. timeout*/ | 
|  | 111 | if (status < 0) { | 
|  | 112 | /* firmware download is checksumed, don't retry */ | 
|  | 113 | if ((value >= FW_8192C_START_ADDRESS && | 
|  | 114 | value <= FW_8192C_END_ADDRESS)) | 
|  | 115 | break; | 
|  | 116 | } else { | 
|  | 117 | break; | 
|  | 118 | } | 
| John W. Linville | eb1852b | 2011-11-21 16:37:26 -0500 | [diff] [blame] | 119 | } while (++vendorreq_times < MAX_USBCTRL_VENDORREQ_TIMES); | 
|  | 120 |  | 
| Larry Finger | abfabc9 | 2011-11-17 12:14:44 -0600 | [diff] [blame] | 121 | if (status < 0 && count++ < 4) | 
| Joe Perches | 292b119 | 2011-07-20 08:51:35 -0700 | [diff] [blame] | 122 | pr_err("reg 0x%x, usbctrl_vendorreq TimeOut! status:0x%x value=0x%x\n", | 
| Larry Finger | abfabc9 | 2011-11-17 12:14:44 -0600 | [diff] [blame] | 123 | value, status, le32_to_cpu(*(u32 *)pdata)); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 124 | return status; | 
|  | 125 | } | 
|  | 126 |  | 
|  | 127 | static u32 _usb_read_sync(struct usb_device *udev, u32 addr, u16 len) | 
|  | 128 | { | 
|  | 129 | u8 request; | 
|  | 130 | u16 wvalue; | 
|  | 131 | u16 index; | 
|  | 132 | u32 *data; | 
|  | 133 | u32 ret; | 
|  | 134 |  | 
|  | 135 | data = kmalloc(sizeof(u32), GFP_KERNEL); | 
|  | 136 | if (!data) | 
|  | 137 | return -ENOMEM; | 
|  | 138 | request = REALTEK_USB_VENQT_CMD_REQ; | 
|  | 139 | index = REALTEK_USB_VENQT_CMD_IDX; /* n/a */ | 
|  | 140 |  | 
|  | 141 | wvalue = (u16)addr; | 
|  | 142 | _usbctrl_vendorreq_sync_read(udev, request, wvalue, index, data, len); | 
| Larry Finger | abfabc9 | 2011-11-17 12:14:44 -0600 | [diff] [blame] | 143 | ret = le32_to_cpu(*data); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 144 | kfree(data); | 
|  | 145 | return ret; | 
|  | 146 | } | 
|  | 147 |  | 
|  | 148 | static u8 _usb_read8_sync(struct rtl_priv *rtlpriv, u32 addr) | 
|  | 149 | { | 
|  | 150 | struct device *dev = rtlpriv->io.dev; | 
|  | 151 |  | 
|  | 152 | return (u8)_usb_read_sync(to_usb_device(dev), addr, 1); | 
|  | 153 | } | 
|  | 154 |  | 
|  | 155 | static u16 _usb_read16_sync(struct rtl_priv *rtlpriv, u32 addr) | 
|  | 156 | { | 
|  | 157 | struct device *dev = rtlpriv->io.dev; | 
|  | 158 |  | 
|  | 159 | return (u16)_usb_read_sync(to_usb_device(dev), addr, 2); | 
|  | 160 | } | 
|  | 161 |  | 
|  | 162 | static u32 _usb_read32_sync(struct rtl_priv *rtlpriv, u32 addr) | 
|  | 163 | { | 
|  | 164 | struct device *dev = rtlpriv->io.dev; | 
|  | 165 |  | 
|  | 166 | return _usb_read_sync(to_usb_device(dev), addr, 4); | 
|  | 167 | } | 
|  | 168 |  | 
|  | 169 | static void _usb_write_async(struct usb_device *udev, u32 addr, u32 val, | 
|  | 170 | u16 len) | 
|  | 171 | { | 
|  | 172 | u8 request; | 
|  | 173 | u16 wvalue; | 
|  | 174 | u16 index; | 
| Larry Finger | abfabc9 | 2011-11-17 12:14:44 -0600 | [diff] [blame] | 175 | __le32 data; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 176 |  | 
|  | 177 | request = REALTEK_USB_VENQT_CMD_REQ; | 
|  | 178 | index = REALTEK_USB_VENQT_CMD_IDX; /* n/a */ | 
|  | 179 | wvalue = (u16)(addr&0x0000ffff); | 
| Larry Finger | abfabc9 | 2011-11-17 12:14:44 -0600 | [diff] [blame] | 180 | data = cpu_to_le32(val); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 181 | _usbctrl_vendorreq_async_write(udev, request, wvalue, index, &data, | 
|  | 182 | len); | 
|  | 183 | } | 
|  | 184 |  | 
|  | 185 | static void _usb_write8_async(struct rtl_priv *rtlpriv, u32 addr, u8 val) | 
|  | 186 | { | 
|  | 187 | struct device *dev = rtlpriv->io.dev; | 
|  | 188 |  | 
|  | 189 | _usb_write_async(to_usb_device(dev), addr, val, 1); | 
|  | 190 | } | 
|  | 191 |  | 
|  | 192 | static void _usb_write16_async(struct rtl_priv *rtlpriv, u32 addr, u16 val) | 
|  | 193 | { | 
|  | 194 | struct device *dev = rtlpriv->io.dev; | 
|  | 195 |  | 
|  | 196 | _usb_write_async(to_usb_device(dev), addr, val, 2); | 
|  | 197 | } | 
|  | 198 |  | 
|  | 199 | static void _usb_write32_async(struct rtl_priv *rtlpriv, u32 addr, u32 val) | 
|  | 200 | { | 
|  | 201 | struct device *dev = rtlpriv->io.dev; | 
|  | 202 |  | 
|  | 203 | _usb_write_async(to_usb_device(dev), addr, val, 4); | 
|  | 204 | } | 
|  | 205 |  | 
| Larry Finger | ff6ff96 | 2011-11-17 12:14:43 -0600 | [diff] [blame] | 206 | static void _usb_writeN_sync(struct rtl_priv *rtlpriv, u32 addr, void *data, | 
|  | 207 | u16 len) | 
|  | 208 | { | 
|  | 209 | struct device *dev = rtlpriv->io.dev; | 
|  | 210 | struct usb_device *udev = to_usb_device(dev); | 
|  | 211 | u8 request = REALTEK_USB_VENQT_CMD_REQ; | 
|  | 212 | u8 reqtype =  REALTEK_USB_VENQT_WRITE; | 
|  | 213 | u16 wvalue; | 
|  | 214 | u16 index = REALTEK_USB_VENQT_CMD_IDX; | 
|  | 215 | int pipe = usb_sndctrlpipe(udev, 0); /* write_out */ | 
|  | 216 | u8 *buffer; | 
|  | 217 | dma_addr_t dma_addr; | 
|  | 218 |  | 
|  | 219 | wvalue = (u16)(addr&0x0000ffff); | 
|  | 220 | buffer = usb_alloc_coherent(udev, (size_t)len, GFP_ATOMIC, &dma_addr); | 
|  | 221 | if (!buffer) | 
|  | 222 | return; | 
|  | 223 | memcpy(buffer, data, len); | 
|  | 224 | usb_control_msg(udev, pipe, request, reqtype, wvalue, | 
|  | 225 | index, buffer, len, 50); | 
|  | 226 |  | 
|  | 227 | usb_free_coherent(udev, (size_t)len, buffer, dma_addr); | 
|  | 228 | } | 
|  | 229 |  | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 230 | static void _rtl_usb_io_handler_init(struct device *dev, | 
|  | 231 | struct ieee80211_hw *hw) | 
|  | 232 | { | 
|  | 233 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 234 |  | 
|  | 235 | rtlpriv->io.dev = dev; | 
|  | 236 | mutex_init(&rtlpriv->io.bb_mutex); | 
|  | 237 | rtlpriv->io.write8_async	= _usb_write8_async; | 
|  | 238 | rtlpriv->io.write16_async	= _usb_write16_async; | 
|  | 239 | rtlpriv->io.write32_async	= _usb_write32_async; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 240 | rtlpriv->io.read8_sync		= _usb_read8_sync; | 
|  | 241 | rtlpriv->io.read16_sync		= _usb_read16_sync; | 
|  | 242 | rtlpriv->io.read32_sync		= _usb_read32_sync; | 
| Larry Finger | ff6ff96 | 2011-11-17 12:14:43 -0600 | [diff] [blame] | 243 | rtlpriv->io.writeN_sync		= _usb_writeN_sync; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 244 | } | 
|  | 245 |  | 
|  | 246 | static void _rtl_usb_io_handler_release(struct ieee80211_hw *hw) | 
|  | 247 | { | 
| Larry Finger | 2e3e66e | 2011-04-02 18:10:22 -0500 | [diff] [blame] | 248 | struct rtl_priv __maybe_unused *rtlpriv = rtl_priv(hw); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 249 |  | 
|  | 250 | mutex_destroy(&rtlpriv->io.bb_mutex); | 
|  | 251 | } | 
|  | 252 |  | 
|  | 253 | /** | 
|  | 254 | * | 
|  | 255 | *	Default aggregation handler. Do nothing and just return the oldest skb. | 
|  | 256 | */ | 
|  | 257 | static struct sk_buff *_none_usb_tx_aggregate_hdl(struct ieee80211_hw *hw, | 
|  | 258 | struct sk_buff_head *list) | 
|  | 259 | { | 
|  | 260 | return skb_dequeue(list); | 
|  | 261 | } | 
|  | 262 |  | 
|  | 263 | #define IS_HIGH_SPEED_USB(udev) \ | 
|  | 264 | ((USB_SPEED_HIGH == (udev)->speed) ? true : false) | 
|  | 265 |  | 
|  | 266 | static int _rtl_usb_init_tx(struct ieee80211_hw *hw) | 
|  | 267 | { | 
|  | 268 | u32 i; | 
|  | 269 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 270 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 271 |  | 
|  | 272 | rtlusb->max_bulk_out_size = IS_HIGH_SPEED_USB(rtlusb->udev) | 
|  | 273 | ? USB_HIGH_SPEED_BULK_SIZE | 
|  | 274 | : USB_FULL_SPEED_BULK_SIZE; | 
|  | 275 |  | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 276 | RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "USB Max Bulk-out Size=%d\n", | 
|  | 277 | rtlusb->max_bulk_out_size); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 278 |  | 
|  | 279 | for (i = 0; i < __RTL_TXQ_NUM; i++) { | 
|  | 280 | u32 ep_num = rtlusb->ep_map.ep_mapping[i]; | 
|  | 281 | if (!ep_num) { | 
|  | 282 | RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 283 | "Invalid endpoint map setting!\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 284 | return -EINVAL; | 
|  | 285 | } | 
|  | 286 | } | 
|  | 287 |  | 
|  | 288 | rtlusb->usb_tx_post_hdl = | 
|  | 289 | rtlpriv->cfg->usb_interface_cfg->usb_tx_post_hdl; | 
|  | 290 | rtlusb->usb_tx_cleanup	= | 
|  | 291 | rtlpriv->cfg->usb_interface_cfg->usb_tx_cleanup; | 
|  | 292 | rtlusb->usb_tx_aggregate_hdl = | 
|  | 293 | (rtlpriv->cfg->usb_interface_cfg->usb_tx_aggregate_hdl) | 
|  | 294 | ? rtlpriv->cfg->usb_interface_cfg->usb_tx_aggregate_hdl | 
|  | 295 | : &_none_usb_tx_aggregate_hdl; | 
|  | 296 |  | 
|  | 297 | init_usb_anchor(&rtlusb->tx_submitted); | 
|  | 298 | for (i = 0; i < RTL_USB_MAX_EP_NUM; i++) { | 
|  | 299 | skb_queue_head_init(&rtlusb->tx_skb_queue[i]); | 
|  | 300 | init_usb_anchor(&rtlusb->tx_pending[i]); | 
|  | 301 | } | 
|  | 302 | return 0; | 
|  | 303 | } | 
|  | 304 |  | 
|  | 305 | static int _rtl_usb_init_rx(struct ieee80211_hw *hw) | 
|  | 306 | { | 
|  | 307 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 308 | struct rtl_usb_priv *usb_priv = rtl_usbpriv(hw); | 
|  | 309 | struct rtl_usb *rtlusb = rtl_usbdev(usb_priv); | 
|  | 310 |  | 
|  | 311 | rtlusb->rx_max_size = rtlpriv->cfg->usb_interface_cfg->rx_max_size; | 
|  | 312 | rtlusb->rx_urb_num = rtlpriv->cfg->usb_interface_cfg->rx_urb_num; | 
|  | 313 | rtlusb->in_ep = rtlpriv->cfg->usb_interface_cfg->in_ep_num; | 
|  | 314 | rtlusb->usb_rx_hdl = rtlpriv->cfg->usb_interface_cfg->usb_rx_hdl; | 
|  | 315 | rtlusb->usb_rx_segregate_hdl = | 
|  | 316 | rtlpriv->cfg->usb_interface_cfg->usb_rx_segregate_hdl; | 
|  | 317 |  | 
| Joe Perches | 292b119 | 2011-07-20 08:51:35 -0700 | [diff] [blame] | 318 | pr_info("rx_max_size %d, rx_urb_num %d, in_ep %d\n", | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 319 | rtlusb->rx_max_size, rtlusb->rx_urb_num, rtlusb->in_ep); | 
|  | 320 | init_usb_anchor(&rtlusb->rx_submitted); | 
|  | 321 | return 0; | 
|  | 322 | } | 
|  | 323 |  | 
|  | 324 | static int _rtl_usb_init(struct ieee80211_hw *hw) | 
|  | 325 | { | 
|  | 326 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 327 | struct rtl_usb_priv *usb_priv = rtl_usbpriv(hw); | 
|  | 328 | struct rtl_usb *rtlusb = rtl_usbdev(usb_priv); | 
|  | 329 | int err; | 
|  | 330 | u8 epidx; | 
|  | 331 | struct usb_interface	*usb_intf = rtlusb->intf; | 
|  | 332 | u8 epnums = usb_intf->cur_altsetting->desc.bNumEndpoints; | 
|  | 333 |  | 
|  | 334 | rtlusb->out_ep_nums = rtlusb->in_ep_nums = 0; | 
|  | 335 | for (epidx = 0; epidx < epnums; epidx++) { | 
|  | 336 | struct usb_endpoint_descriptor *pep_desc; | 
|  | 337 | pep_desc = &usb_intf->cur_altsetting->endpoint[epidx].desc; | 
|  | 338 |  | 
|  | 339 | if (usb_endpoint_dir_in(pep_desc)) | 
|  | 340 | rtlusb->in_ep_nums++; | 
|  | 341 | else if (usb_endpoint_dir_out(pep_desc)) | 
|  | 342 | rtlusb->out_ep_nums++; | 
|  | 343 |  | 
|  | 344 | RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 345 | "USB EP(0x%02x), MaxPacketSize=%d, Interval=%d\n", | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 346 | pep_desc->bEndpointAddress, pep_desc->wMaxPacketSize, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 347 | pep_desc->bInterval); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 348 | } | 
|  | 349 | if (rtlusb->in_ep_nums <  rtlpriv->cfg->usb_interface_cfg->in_ep_num) | 
|  | 350 | return -EINVAL ; | 
|  | 351 |  | 
|  | 352 | /* usb endpoint mapping */ | 
|  | 353 | err = rtlpriv->cfg->usb_interface_cfg->usb_endpoint_mapping(hw); | 
|  | 354 | rtlusb->usb_mq_to_hwq =  rtlpriv->cfg->usb_interface_cfg->usb_mq_to_hwq; | 
|  | 355 | _rtl_usb_init_tx(hw); | 
|  | 356 | _rtl_usb_init_rx(hw); | 
|  | 357 | return err; | 
|  | 358 | } | 
|  | 359 |  | 
|  | 360 | static int _rtl_usb_init_sw(struct ieee80211_hw *hw) | 
|  | 361 | { | 
|  | 362 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); | 
|  | 363 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
|  | 364 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); | 
|  | 365 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 366 |  | 
|  | 367 | rtlhal->hw = hw; | 
| Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 368 | ppsc->inactiveps = false; | 
|  | 369 | ppsc->leisure_ps = false; | 
|  | 370 | ppsc->fwctrl_lps = false; | 
|  | 371 | ppsc->reg_fwctrl_lps = 3; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 372 | ppsc->reg_max_lps_awakeintvl = 5; | 
|  | 373 | ppsc->fwctrl_psmode = FW_PS_DTIM_MODE; | 
|  | 374 |  | 
|  | 375 | /* IBSS */ | 
|  | 376 | mac->beacon_interval = 100; | 
|  | 377 |  | 
|  | 378 | /* AMPDU */ | 
|  | 379 | mac->min_space_cfg = 0; | 
|  | 380 | mac->max_mss_density = 0; | 
|  | 381 |  | 
|  | 382 | /* set sane AMPDU defaults */ | 
|  | 383 | mac->current_ampdu_density = 7; | 
|  | 384 | mac->current_ampdu_factor = 3; | 
|  | 385 |  | 
|  | 386 | /* QOS */ | 
|  | 387 | rtlusb->acm_method = eAcmWay2_SW; | 
|  | 388 |  | 
|  | 389 | /* IRQ */ | 
|  | 390 | /* HIMR - turn all on */ | 
|  | 391 | rtlusb->irq_mask[0] = 0xFFFFFFFF; | 
|  | 392 | /* HIMR_EX - turn all on */ | 
|  | 393 | rtlusb->irq_mask[1] = 0xFFFFFFFF; | 
|  | 394 | rtlusb->disableHWSM =  true; | 
|  | 395 | return 0; | 
|  | 396 | } | 
|  | 397 |  | 
|  | 398 | #define __RADIO_TAP_SIZE_RSV	32 | 
|  | 399 |  | 
|  | 400 | static void _rtl_rx_completed(struct urb *urb); | 
|  | 401 |  | 
|  | 402 | static struct sk_buff *_rtl_prep_rx_urb(struct ieee80211_hw *hw, | 
|  | 403 | struct rtl_usb *rtlusb, | 
|  | 404 | struct urb *urb, | 
|  | 405 | gfp_t gfp_mask) | 
|  | 406 | { | 
|  | 407 | struct sk_buff *skb; | 
|  | 408 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 409 |  | 
|  | 410 | skb = __dev_alloc_skb((rtlusb->rx_max_size + __RADIO_TAP_SIZE_RSV), | 
|  | 411 | gfp_mask); | 
|  | 412 | if (!skb) { | 
|  | 413 | RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 414 | "Failed to __dev_alloc_skb!!\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 415 | return ERR_PTR(-ENOMEM); | 
|  | 416 | } | 
|  | 417 |  | 
|  | 418 | /* reserve some space for mac80211's radiotap */ | 
|  | 419 | skb_reserve(skb, __RADIO_TAP_SIZE_RSV); | 
|  | 420 | usb_fill_bulk_urb(urb, rtlusb->udev, | 
|  | 421 | usb_rcvbulkpipe(rtlusb->udev, rtlusb->in_ep), | 
|  | 422 | skb->data, min(skb_tailroom(skb), | 
|  | 423 | (int)rtlusb->rx_max_size), | 
|  | 424 | _rtl_rx_completed, skb); | 
|  | 425 |  | 
|  | 426 | _rtl_install_trx_info(rtlusb, skb, rtlusb->in_ep); | 
|  | 427 | return skb; | 
|  | 428 | } | 
|  | 429 |  | 
|  | 430 | #undef __RADIO_TAP_SIZE_RSV | 
|  | 431 |  | 
|  | 432 | static void _rtl_usb_rx_process_agg(struct ieee80211_hw *hw, | 
|  | 433 | struct sk_buff *skb) | 
|  | 434 | { | 
|  | 435 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 436 | u8 *rxdesc = skb->data; | 
|  | 437 | struct ieee80211_hdr *hdr; | 
|  | 438 | bool unicast = false; | 
| Larry Finger | 17c9ac6 | 2011-02-19 16:29:57 -0600 | [diff] [blame] | 439 | __le16 fc; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 440 | struct ieee80211_rx_status rx_status = {0}; | 
|  | 441 | struct rtl_stats stats = { | 
|  | 442 | .signal = 0, | 
|  | 443 | .noise = -98, | 
|  | 444 | .rate = 0, | 
|  | 445 | }; | 
|  | 446 |  | 
|  | 447 | skb_pull(skb, RTL_RX_DESC_SIZE); | 
|  | 448 | rtlpriv->cfg->ops->query_rx_desc(hw, &stats, &rx_status, rxdesc, skb); | 
|  | 449 | skb_pull(skb, (stats.rx_drvinfo_size + stats.rx_bufshift)); | 
|  | 450 | hdr = (struct ieee80211_hdr *)(skb->data); | 
| Larry Finger | 17c9ac6 | 2011-02-19 16:29:57 -0600 | [diff] [blame] | 451 | fc = hdr->frame_control; | 
| Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 452 | if (!stats.crc) { | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 453 | memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status)); | 
|  | 454 |  | 
|  | 455 | if (is_broadcast_ether_addr(hdr->addr1)) { | 
|  | 456 | /*TODO*/; | 
|  | 457 | } else if (is_multicast_ether_addr(hdr->addr1)) { | 
|  | 458 | /*TODO*/ | 
|  | 459 | } else { | 
|  | 460 | unicast = true; | 
|  | 461 | rtlpriv->stats.rxbytesunicast +=  skb->len; | 
|  | 462 | } | 
|  | 463 |  | 
|  | 464 | rtl_is_special_data(hw, skb, false); | 
|  | 465 |  | 
|  | 466 | if (ieee80211_is_data(fc)) { | 
|  | 467 | rtlpriv->cfg->ops->led_control(hw, LED_CTL_RX); | 
|  | 468 |  | 
|  | 469 | if (unicast) | 
|  | 470 | rtlpriv->link_info.num_rx_inperiod++; | 
|  | 471 | } | 
|  | 472 | } | 
|  | 473 | } | 
|  | 474 |  | 
|  | 475 | static void _rtl_usb_rx_process_noagg(struct ieee80211_hw *hw, | 
|  | 476 | struct sk_buff *skb) | 
|  | 477 | { | 
|  | 478 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 479 | u8 *rxdesc = skb->data; | 
|  | 480 | struct ieee80211_hdr *hdr; | 
|  | 481 | bool unicast = false; | 
| Larry Finger | 17c9ac6 | 2011-02-19 16:29:57 -0600 | [diff] [blame] | 482 | __le16 fc; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 483 | struct ieee80211_rx_status rx_status = {0}; | 
|  | 484 | struct rtl_stats stats = { | 
|  | 485 | .signal = 0, | 
|  | 486 | .noise = -98, | 
|  | 487 | .rate = 0, | 
|  | 488 | }; | 
|  | 489 |  | 
|  | 490 | skb_pull(skb, RTL_RX_DESC_SIZE); | 
|  | 491 | rtlpriv->cfg->ops->query_rx_desc(hw, &stats, &rx_status, rxdesc, skb); | 
|  | 492 | skb_pull(skb, (stats.rx_drvinfo_size + stats.rx_bufshift)); | 
|  | 493 | hdr = (struct ieee80211_hdr *)(skb->data); | 
| Larry Finger | 17c9ac6 | 2011-02-19 16:29:57 -0600 | [diff] [blame] | 494 | fc = hdr->frame_control; | 
| Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 495 | if (!stats.crc) { | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 496 | memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status)); | 
|  | 497 |  | 
|  | 498 | if (is_broadcast_ether_addr(hdr->addr1)) { | 
|  | 499 | /*TODO*/; | 
|  | 500 | } else if (is_multicast_ether_addr(hdr->addr1)) { | 
|  | 501 | /*TODO*/ | 
|  | 502 | } else { | 
|  | 503 | unicast = true; | 
|  | 504 | rtlpriv->stats.rxbytesunicast +=  skb->len; | 
|  | 505 | } | 
|  | 506 |  | 
|  | 507 | rtl_is_special_data(hw, skb, false); | 
|  | 508 |  | 
|  | 509 | if (ieee80211_is_data(fc)) { | 
|  | 510 | rtlpriv->cfg->ops->led_control(hw, LED_CTL_RX); | 
|  | 511 |  | 
|  | 512 | if (unicast) | 
|  | 513 | rtlpriv->link_info.num_rx_inperiod++; | 
|  | 514 | } | 
|  | 515 | if (likely(rtl_action_proc(hw, skb, false))) { | 
|  | 516 | struct sk_buff *uskb = NULL; | 
|  | 517 | u8 *pdata; | 
|  | 518 |  | 
|  | 519 | uskb = dev_alloc_skb(skb->len + 128); | 
| Larry Finger | 76a92be | 2012-01-07 20:46:40 -0600 | [diff] [blame] | 520 | if (uskb) {	/* drop packet on allocation failure */ | 
|  | 521 | memcpy(IEEE80211_SKB_RXCB(uskb), &rx_status, | 
|  | 522 | sizeof(rx_status)); | 
|  | 523 | pdata = (u8 *)skb_put(uskb, skb->len); | 
|  | 524 | memcpy(pdata, skb->data, skb->len); | 
|  | 525 | ieee80211_rx_irqsafe(hw, uskb); | 
|  | 526 | } | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 527 | dev_kfree_skb_any(skb); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 528 | } else { | 
|  | 529 | dev_kfree_skb_any(skb); | 
|  | 530 | } | 
|  | 531 | } | 
|  | 532 | } | 
|  | 533 |  | 
|  | 534 | static void _rtl_rx_pre_process(struct ieee80211_hw *hw, struct sk_buff *skb) | 
|  | 535 | { | 
|  | 536 | struct sk_buff *_skb; | 
|  | 537 | struct sk_buff_head rx_queue; | 
|  | 538 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 539 |  | 
|  | 540 | skb_queue_head_init(&rx_queue); | 
|  | 541 | if (rtlusb->usb_rx_segregate_hdl) | 
|  | 542 | rtlusb->usb_rx_segregate_hdl(hw, skb, &rx_queue); | 
|  | 543 | WARN_ON(skb_queue_empty(&rx_queue)); | 
|  | 544 | while (!skb_queue_empty(&rx_queue)) { | 
|  | 545 | _skb = skb_dequeue(&rx_queue); | 
|  | 546 | _rtl_usb_rx_process_agg(hw, skb); | 
|  | 547 | ieee80211_rx_irqsafe(hw, skb); | 
|  | 548 | } | 
|  | 549 | } | 
|  | 550 |  | 
|  | 551 | static void _rtl_rx_completed(struct urb *_urb) | 
|  | 552 | { | 
|  | 553 | struct sk_buff *skb = (struct sk_buff *)_urb->context; | 
|  | 554 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); | 
|  | 555 | struct rtl_usb *rtlusb = (struct rtl_usb *)info->rate_driver_data[0]; | 
|  | 556 | struct ieee80211_hw *hw = usb_get_intfdata(rtlusb->intf); | 
|  | 557 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 558 | int err = 0; | 
|  | 559 |  | 
|  | 560 | if (unlikely(IS_USB_STOP(rtlusb))) | 
|  | 561 | goto free; | 
|  | 562 |  | 
|  | 563 | if (likely(0 == _urb->status)) { | 
|  | 564 | /* If this code were moved to work queue, would CPU | 
|  | 565 | * utilization be improved?  NOTE: We shall allocate another skb | 
|  | 566 | * and reuse the original one. | 
|  | 567 | */ | 
|  | 568 | skb_put(skb, _urb->actual_length); | 
|  | 569 |  | 
|  | 570 | if (likely(!rtlusb->usb_rx_segregate_hdl)) { | 
|  | 571 | struct sk_buff *_skb; | 
|  | 572 | _rtl_usb_rx_process_noagg(hw, skb); | 
|  | 573 | _skb = _rtl_prep_rx_urb(hw, rtlusb, _urb, GFP_ATOMIC); | 
|  | 574 | if (IS_ERR(_skb)) { | 
|  | 575 | err = PTR_ERR(_skb); | 
|  | 576 | RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 577 | "Can't allocate skb for bulk IN!\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 578 | return; | 
|  | 579 | } | 
|  | 580 | skb = _skb; | 
|  | 581 | } else{ | 
|  | 582 | /* TO DO */ | 
|  | 583 | _rtl_rx_pre_process(hw, skb); | 
| Joe Perches | 292b119 | 2011-07-20 08:51:35 -0700 | [diff] [blame] | 584 | pr_err("rx agg not supported\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 585 | } | 
|  | 586 | goto resubmit; | 
|  | 587 | } | 
|  | 588 |  | 
|  | 589 | switch (_urb->status) { | 
|  | 590 | /* disconnect */ | 
|  | 591 | case -ENOENT: | 
|  | 592 | case -ECONNRESET: | 
|  | 593 | case -ENODEV: | 
|  | 594 | case -ESHUTDOWN: | 
|  | 595 | goto free; | 
|  | 596 | default: | 
|  | 597 | break; | 
|  | 598 | } | 
|  | 599 |  | 
|  | 600 | resubmit: | 
|  | 601 | skb_reset_tail_pointer(skb); | 
|  | 602 | skb_trim(skb, 0); | 
|  | 603 |  | 
|  | 604 | usb_anchor_urb(_urb, &rtlusb->rx_submitted); | 
|  | 605 | err = usb_submit_urb(_urb, GFP_ATOMIC); | 
|  | 606 | if (unlikely(err)) { | 
|  | 607 | usb_unanchor_urb(_urb); | 
|  | 608 | goto free; | 
|  | 609 | } | 
|  | 610 | return; | 
|  | 611 |  | 
|  | 612 | free: | 
|  | 613 | dev_kfree_skb_irq(skb); | 
|  | 614 | } | 
|  | 615 |  | 
|  | 616 | static int _rtl_usb_receive(struct ieee80211_hw *hw) | 
|  | 617 | { | 
|  | 618 | struct urb *urb; | 
|  | 619 | struct sk_buff *skb; | 
|  | 620 | int err; | 
|  | 621 | int i; | 
|  | 622 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 623 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 624 |  | 
|  | 625 | WARN_ON(0 == rtlusb->rx_urb_num); | 
|  | 626 | /* 1600 == 1514 + max WLAN header + rtk info */ | 
|  | 627 | WARN_ON(rtlusb->rx_max_size < 1600); | 
|  | 628 |  | 
|  | 629 | for (i = 0; i < rtlusb->rx_urb_num; i++) { | 
|  | 630 | err = -ENOMEM; | 
|  | 631 | urb = usb_alloc_urb(0, GFP_KERNEL); | 
|  | 632 | if (!urb) { | 
|  | 633 | RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 634 | "Failed to alloc URB!!\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 635 | goto err_out; | 
|  | 636 | } | 
|  | 637 |  | 
|  | 638 | skb = _rtl_prep_rx_urb(hw, rtlusb, urb, GFP_KERNEL); | 
|  | 639 | if (IS_ERR(skb)) { | 
|  | 640 | RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 641 | "Failed to prep_rx_urb!!\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 642 | err = PTR_ERR(skb); | 
|  | 643 | goto err_out; | 
|  | 644 | } | 
|  | 645 |  | 
|  | 646 | usb_anchor_urb(urb, &rtlusb->rx_submitted); | 
|  | 647 | err = usb_submit_urb(urb, GFP_KERNEL); | 
|  | 648 | if (err) | 
|  | 649 | goto err_out; | 
|  | 650 | usb_free_urb(urb); | 
|  | 651 | } | 
|  | 652 | return 0; | 
|  | 653 |  | 
|  | 654 | err_out: | 
|  | 655 | usb_kill_anchored_urbs(&rtlusb->rx_submitted); | 
|  | 656 | return err; | 
|  | 657 | } | 
|  | 658 |  | 
|  | 659 | static int rtl_usb_start(struct ieee80211_hw *hw) | 
|  | 660 | { | 
|  | 661 | int err; | 
|  | 662 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 663 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
|  | 664 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 665 |  | 
|  | 666 | err = rtlpriv->cfg->ops->hw_init(hw); | 
| Larry Finger | b0302ab | 2012-01-30 09:54:49 -0600 | [diff] [blame] | 667 | if (!err) { | 
|  | 668 | rtl_init_rx_config(hw); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 669 |  | 
| Larry Finger | b0302ab | 2012-01-30 09:54:49 -0600 | [diff] [blame] | 670 | /* Enable software */ | 
|  | 671 | SET_USB_START(rtlusb); | 
|  | 672 | /* should after adapter start and interrupt enable. */ | 
|  | 673 | set_hal_start(rtlhal); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 674 |  | 
| Larry Finger | b0302ab | 2012-01-30 09:54:49 -0600 | [diff] [blame] | 675 | /* Start bulk IN */ | 
|  | 676 | _rtl_usb_receive(hw); | 
|  | 677 | } | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 678 |  | 
|  | 679 | return err; | 
|  | 680 | } | 
|  | 681 | /** | 
|  | 682 | * | 
|  | 683 | * | 
|  | 684 | */ | 
|  | 685 |  | 
|  | 686 | /*=======================  tx =========================================*/ | 
|  | 687 | static void rtl_usb_cleanup(struct ieee80211_hw *hw) | 
|  | 688 | { | 
|  | 689 | u32 i; | 
|  | 690 | struct sk_buff *_skb; | 
|  | 691 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 692 | struct ieee80211_tx_info *txinfo; | 
|  | 693 |  | 
|  | 694 | SET_USB_STOP(rtlusb); | 
|  | 695 |  | 
|  | 696 | /* clean up rx stuff. */ | 
|  | 697 | usb_kill_anchored_urbs(&rtlusb->rx_submitted); | 
|  | 698 |  | 
|  | 699 | /* clean up tx stuff */ | 
|  | 700 | for (i = 0; i < RTL_USB_MAX_EP_NUM; i++) { | 
|  | 701 | while ((_skb = skb_dequeue(&rtlusb->tx_skb_queue[i]))) { | 
|  | 702 | rtlusb->usb_tx_cleanup(hw, _skb); | 
|  | 703 | txinfo = IEEE80211_SKB_CB(_skb); | 
|  | 704 | ieee80211_tx_info_clear_status(txinfo); | 
|  | 705 | txinfo->flags |= IEEE80211_TX_STAT_ACK; | 
|  | 706 | ieee80211_tx_status_irqsafe(hw, _skb); | 
|  | 707 | } | 
|  | 708 | usb_kill_anchored_urbs(&rtlusb->tx_pending[i]); | 
|  | 709 | } | 
|  | 710 | usb_kill_anchored_urbs(&rtlusb->tx_submitted); | 
|  | 711 | } | 
|  | 712 |  | 
|  | 713 | /** | 
|  | 714 | * | 
|  | 715 | * We may add some struct into struct rtl_usb later. Do deinit here. | 
|  | 716 | * | 
|  | 717 | */ | 
|  | 718 | static void rtl_usb_deinit(struct ieee80211_hw *hw) | 
|  | 719 | { | 
|  | 720 | rtl_usb_cleanup(hw); | 
|  | 721 | } | 
|  | 722 |  | 
|  | 723 | static void rtl_usb_stop(struct ieee80211_hw *hw) | 
|  | 724 | { | 
|  | 725 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 726 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
|  | 727 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 728 |  | 
|  | 729 | /* should after adapter start and interrupt enable. */ | 
|  | 730 | set_hal_stop(rtlhal); | 
|  | 731 | /* Enable software */ | 
|  | 732 | SET_USB_STOP(rtlusb); | 
|  | 733 | rtl_usb_deinit(hw); | 
|  | 734 | rtlpriv->cfg->ops->hw_disable(hw); | 
|  | 735 | } | 
|  | 736 |  | 
|  | 737 | static void _rtl_submit_tx_urb(struct ieee80211_hw *hw, struct urb *_urb) | 
|  | 738 | { | 
|  | 739 | int err; | 
|  | 740 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 741 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 742 |  | 
|  | 743 | usb_anchor_urb(_urb, &rtlusb->tx_submitted); | 
|  | 744 | err = usb_submit_urb(_urb, GFP_ATOMIC); | 
|  | 745 | if (err < 0) { | 
|  | 746 | struct sk_buff *skb; | 
|  | 747 |  | 
|  | 748 | RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 749 | "Failed to submit urb\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 750 | usb_unanchor_urb(_urb); | 
|  | 751 | skb = (struct sk_buff *)_urb->context; | 
|  | 752 | kfree_skb(skb); | 
|  | 753 | } | 
|  | 754 | usb_free_urb(_urb); | 
|  | 755 | } | 
|  | 756 |  | 
|  | 757 | static int _usb_tx_post(struct ieee80211_hw *hw, struct urb *urb, | 
|  | 758 | struct sk_buff *skb) | 
|  | 759 | { | 
|  | 760 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 761 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 762 | struct ieee80211_tx_info *txinfo; | 
|  | 763 |  | 
|  | 764 | rtlusb->usb_tx_post_hdl(hw, urb, skb); | 
|  | 765 | skb_pull(skb, RTL_TX_HEADER_SIZE); | 
|  | 766 | txinfo = IEEE80211_SKB_CB(skb); | 
|  | 767 | ieee80211_tx_info_clear_status(txinfo); | 
|  | 768 | txinfo->flags |= IEEE80211_TX_STAT_ACK; | 
|  | 769 |  | 
|  | 770 | if (urb->status) { | 
|  | 771 | RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 772 | "Urb has error status 0x%X\n", urb->status); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 773 | goto out; | 
|  | 774 | } | 
|  | 775 | /*  TODO:	statistics */ | 
|  | 776 | out: | 
|  | 777 | ieee80211_tx_status_irqsafe(hw, skb); | 
|  | 778 | return urb->status; | 
|  | 779 | } | 
|  | 780 |  | 
|  | 781 | static void _rtl_tx_complete(struct urb *urb) | 
|  | 782 | { | 
|  | 783 | struct sk_buff *skb = (struct sk_buff *)urb->context; | 
|  | 784 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); | 
|  | 785 | struct rtl_usb *rtlusb = (struct rtl_usb *)info->rate_driver_data[0]; | 
|  | 786 | struct ieee80211_hw *hw = usb_get_intfdata(rtlusb->intf); | 
|  | 787 | int err; | 
|  | 788 |  | 
|  | 789 | if (unlikely(IS_USB_STOP(rtlusb))) | 
|  | 790 | return; | 
|  | 791 | err = _usb_tx_post(hw, urb, skb); | 
|  | 792 | if (err) { | 
|  | 793 | /* Ignore error and keep issuiing other urbs */ | 
|  | 794 | return; | 
|  | 795 | } | 
|  | 796 | } | 
|  | 797 |  | 
|  | 798 | static struct urb *_rtl_usb_tx_urb_setup(struct ieee80211_hw *hw, | 
|  | 799 | struct sk_buff *skb, u32 ep_num) | 
|  | 800 | { | 
|  | 801 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 802 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 803 | struct urb *_urb; | 
|  | 804 |  | 
|  | 805 | WARN_ON(NULL == skb); | 
|  | 806 | _urb = usb_alloc_urb(0, GFP_ATOMIC); | 
|  | 807 | if (!_urb) { | 
|  | 808 | RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 809 | "Can't allocate URB for bulk out!\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 810 | kfree_skb(skb); | 
|  | 811 | return NULL; | 
|  | 812 | } | 
|  | 813 | _rtl_install_trx_info(rtlusb, skb, ep_num); | 
|  | 814 | usb_fill_bulk_urb(_urb, rtlusb->udev, usb_sndbulkpipe(rtlusb->udev, | 
|  | 815 | ep_num), skb->data, skb->len, _rtl_tx_complete, skb); | 
|  | 816 | _urb->transfer_flags |= URB_ZERO_PACKET; | 
|  | 817 | return _urb; | 
|  | 818 | } | 
|  | 819 |  | 
|  | 820 | static void _rtl_usb_transmit(struct ieee80211_hw *hw, struct sk_buff *skb, | 
|  | 821 | enum rtl_txq qnum) | 
|  | 822 | { | 
|  | 823 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 824 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 825 | u32 ep_num; | 
|  | 826 | struct urb *_urb = NULL; | 
|  | 827 | struct sk_buff *_skb = NULL; | 
|  | 828 | struct sk_buff_head *skb_list; | 
|  | 829 | struct usb_anchor *urb_list; | 
|  | 830 |  | 
|  | 831 | WARN_ON(NULL == rtlusb->usb_tx_aggregate_hdl); | 
|  | 832 | if (unlikely(IS_USB_STOP(rtlusb))) { | 
|  | 833 | RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 834 | "USB device is stopping...\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 835 | kfree_skb(skb); | 
|  | 836 | return; | 
|  | 837 | } | 
|  | 838 | ep_num = rtlusb->ep_map.ep_mapping[qnum]; | 
|  | 839 | skb_list = &rtlusb->tx_skb_queue[ep_num]; | 
|  | 840 | _skb = skb; | 
|  | 841 | _urb = _rtl_usb_tx_urb_setup(hw, _skb, ep_num); | 
|  | 842 | if (unlikely(!_urb)) { | 
|  | 843 | RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 844 | "Can't allocate urb. Drop skb!\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 845 | return; | 
|  | 846 | } | 
|  | 847 | urb_list = &rtlusb->tx_pending[ep_num]; | 
|  | 848 | _rtl_submit_tx_urb(hw, _urb); | 
|  | 849 | } | 
|  | 850 |  | 
|  | 851 | static void _rtl_usb_tx_preprocess(struct ieee80211_hw *hw, struct sk_buff *skb, | 
|  | 852 | u16 hw_queue) | 
|  | 853 | { | 
|  | 854 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 855 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); | 
|  | 856 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); | 
|  | 857 | struct rtl_tx_desc *pdesc = NULL; | 
| Chaoming_Li | d93cdee | 2011-04-25 12:53:29 -0500 | [diff] [blame] | 858 | struct rtl_tcb_desc tcb_desc; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 859 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)(skb->data); | 
| Larry Finger | 17c9ac6 | 2011-02-19 16:29:57 -0600 | [diff] [blame] | 860 | __le16 fc = hdr->frame_control; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 861 | u8 *pda_addr = hdr->addr1; | 
|  | 862 | /* ssn */ | 
|  | 863 | u8 *qc = NULL; | 
|  | 864 | u8 tid = 0; | 
|  | 865 | u16 seq_number = 0; | 
|  | 866 |  | 
| Larry Finger | 831d854 | 2011-09-22 22:59:02 -0500 | [diff] [blame] | 867 | memset(&tcb_desc, 0, sizeof(struct rtl_tcb_desc)); | 
| Chaoming_Li | d93cdee | 2011-04-25 12:53:29 -0500 | [diff] [blame] | 868 | if (ieee80211_is_auth(fc)) { | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 869 | RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG, "MAC80211_LINKING\n"); | 
| Chaoming_Li | d93cdee | 2011-04-25 12:53:29 -0500 | [diff] [blame] | 870 | rtl_ips_nic_on(hw); | 
|  | 871 | } | 
|  | 872 |  | 
|  | 873 | if (rtlpriv->psc.sw_ps_enabled) { | 
|  | 874 | if (ieee80211_is_data(fc) && !ieee80211_is_nullfunc(fc) && | 
|  | 875 | !ieee80211_has_pm(fc)) | 
|  | 876 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM); | 
|  | 877 | } | 
|  | 878 |  | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 879 | rtl_action_proc(hw, skb, true); | 
|  | 880 | if (is_multicast_ether_addr(pda_addr)) | 
|  | 881 | rtlpriv->stats.txbytesmulticast += skb->len; | 
|  | 882 | else if (is_broadcast_ether_addr(pda_addr)) | 
|  | 883 | rtlpriv->stats.txbytesbroadcast += skb->len; | 
|  | 884 | else | 
|  | 885 | rtlpriv->stats.txbytesunicast += skb->len; | 
|  | 886 | if (ieee80211_is_data_qos(fc)) { | 
|  | 887 | qc = ieee80211_get_qos_ctl(hdr); | 
|  | 888 | tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; | 
|  | 889 | seq_number = (le16_to_cpu(hdr->seq_ctrl) & | 
|  | 890 | IEEE80211_SCTL_SEQ) >> 4; | 
|  | 891 | seq_number += 1; | 
|  | 892 | seq_number <<= 4; | 
|  | 893 | } | 
|  | 894 | rtlpriv->cfg->ops->fill_tx_desc(hw, hdr, (u8 *)pdesc, info, skb, | 
| Chaoming_Li | d93cdee | 2011-04-25 12:53:29 -0500 | [diff] [blame] | 895 | hw_queue, &tcb_desc); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 896 | if (!ieee80211_has_morefrags(hdr->frame_control)) { | 
|  | 897 | if (qc) | 
|  | 898 | mac->tids[tid].seq_number = seq_number; | 
|  | 899 | } | 
|  | 900 | if (ieee80211_is_data(fc)) | 
|  | 901 | rtlpriv->cfg->ops->led_control(hw, LED_CTL_TX); | 
|  | 902 | } | 
|  | 903 |  | 
| Chaoming_Li | 0baa0fd | 2011-04-25 13:23:10 -0500 | [diff] [blame] | 904 | static int rtl_usb_tx(struct ieee80211_hw *hw, struct sk_buff *skb, | 
|  | 905 | struct rtl_tcb_desc *dummy) | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 906 | { | 
|  | 907 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 908 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
|  | 909 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)(skb->data); | 
| Larry Finger | 17c9ac6 | 2011-02-19 16:29:57 -0600 | [diff] [blame] | 910 | __le16 fc = hdr->frame_control; | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 911 | u16 hw_queue; | 
|  | 912 |  | 
|  | 913 | if (unlikely(is_hal_stop(rtlhal))) | 
|  | 914 | goto err_free; | 
|  | 915 | hw_queue = rtlusb->usb_mq_to_hwq(fc, skb_get_queue_mapping(skb)); | 
|  | 916 | _rtl_usb_tx_preprocess(hw, skb, hw_queue); | 
|  | 917 | _rtl_usb_transmit(hw, skb, hw_queue); | 
|  | 918 | return NETDEV_TX_OK; | 
|  | 919 |  | 
|  | 920 | err_free: | 
|  | 921 | dev_kfree_skb_any(skb); | 
|  | 922 | return NETDEV_TX_OK; | 
|  | 923 | } | 
|  | 924 |  | 
|  | 925 | static bool rtl_usb_tx_chk_waitq_insert(struct ieee80211_hw *hw, | 
|  | 926 | struct sk_buff *skb) | 
|  | 927 | { | 
|  | 928 | return false; | 
|  | 929 | } | 
|  | 930 |  | 
|  | 931 | static struct rtl_intf_ops rtl_usb_ops = { | 
|  | 932 | .adapter_start = rtl_usb_start, | 
|  | 933 | .adapter_stop = rtl_usb_stop, | 
|  | 934 | .adapter_tx = rtl_usb_tx, | 
|  | 935 | .waitq_insert = rtl_usb_tx_chk_waitq_insert, | 
|  | 936 | }; | 
|  | 937 |  | 
|  | 938 | int __devinit rtl_usb_probe(struct usb_interface *intf, | 
|  | 939 | const struct usb_device_id *id) | 
|  | 940 | { | 
|  | 941 | int err; | 
|  | 942 | struct ieee80211_hw *hw = NULL; | 
|  | 943 | struct rtl_priv *rtlpriv = NULL; | 
|  | 944 | struct usb_device	*udev; | 
|  | 945 | struct rtl_usb_priv *usb_priv; | 
|  | 946 |  | 
|  | 947 | hw = ieee80211_alloc_hw(sizeof(struct rtl_priv) + | 
|  | 948 | sizeof(struct rtl_usb_priv), &rtl_ops); | 
|  | 949 | if (!hw) { | 
| Joe Perches | 9d833ed | 2012-01-04 19:40:43 -0800 | [diff] [blame] | 950 | RT_ASSERT(false, "ieee80211 alloc failed\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 951 | return -ENOMEM; | 
|  | 952 | } | 
|  | 953 | rtlpriv = hw->priv; | 
| Larry Finger | b0302ab | 2012-01-30 09:54:49 -0600 | [diff] [blame] | 954 | init_completion(&rtlpriv->firmware_loading_complete); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 955 | SET_IEEE80211_DEV(hw, &intf->dev); | 
|  | 956 | udev = interface_to_usbdev(intf); | 
|  | 957 | usb_get_dev(udev); | 
|  | 958 | usb_priv = rtl_usbpriv(hw); | 
|  | 959 | memset(usb_priv, 0, sizeof(*usb_priv)); | 
|  | 960 | usb_priv->dev.intf = intf; | 
|  | 961 | usb_priv->dev.udev = udev; | 
|  | 962 | usb_set_intfdata(intf, hw); | 
|  | 963 | /* init cfg & intf_ops */ | 
|  | 964 | rtlpriv->rtlhal.interface = INTF_USB; | 
|  | 965 | rtlpriv->cfg = (struct rtl_hal_cfg *)(id->driver_info); | 
|  | 966 | rtlpriv->intf_ops = &rtl_usb_ops; | 
|  | 967 | rtl_dbgp_flag_init(hw); | 
|  | 968 | /* Init IO handler */ | 
|  | 969 | _rtl_usb_io_handler_init(&udev->dev, hw); | 
|  | 970 | rtlpriv->cfg->ops->read_chip_version(hw); | 
|  | 971 | /*like read eeprom and so on */ | 
|  | 972 | rtlpriv->cfg->ops->read_eeprom_info(hw); | 
|  | 973 | if (rtlpriv->cfg->ops->init_sw_vars(hw)) { | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 974 | RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "Can't init_sw_vars\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 975 | goto error_out; | 
|  | 976 | } | 
|  | 977 | rtlpriv->cfg->ops->init_sw_leds(hw); | 
|  | 978 | err = _rtl_usb_init(hw); | 
|  | 979 | err = _rtl_usb_init_sw(hw); | 
|  | 980 | /* Init mac80211 sw */ | 
|  | 981 | err = rtl_init_core(hw); | 
|  | 982 | if (err) { | 
|  | 983 | RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, | 
| Joe Perches | f30d750 | 2012-01-04 19:40:41 -0800 | [diff] [blame] | 984 | "Can't allocate sw for mac80211\n"); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 985 | goto error_out; | 
|  | 986 | } | 
|  | 987 |  | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 988 | return 0; | 
|  | 989 | error_out: | 
|  | 990 | rtl_deinit_core(hw); | 
|  | 991 | _rtl_usb_io_handler_release(hw); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 992 | usb_put_dev(udev); | 
| Larry Finger | b0302ab | 2012-01-30 09:54:49 -0600 | [diff] [blame] | 993 | complete(&rtlpriv->firmware_loading_complete); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 994 | return -ENODEV; | 
|  | 995 | } | 
|  | 996 | EXPORT_SYMBOL(rtl_usb_probe); | 
|  | 997 |  | 
|  | 998 | void rtl_usb_disconnect(struct usb_interface *intf) | 
|  | 999 | { | 
|  | 1000 | struct ieee80211_hw *hw = usb_get_intfdata(intf); | 
|  | 1001 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 
|  | 1002 | struct rtl_mac *rtlmac = rtl_mac(rtl_priv(hw)); | 
|  | 1003 | struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw)); | 
|  | 1004 |  | 
|  | 1005 | if (unlikely(!rtlpriv)) | 
|  | 1006 | return; | 
| Larry Finger | b0302ab | 2012-01-30 09:54:49 -0600 | [diff] [blame] | 1007 |  | 
|  | 1008 | /* just in case driver is removed before firmware callback */ | 
|  | 1009 | wait_for_completion(&rtlpriv->firmware_loading_complete); | 
| George | 2ca20f7 | 2011-02-11 14:27:49 -0600 | [diff] [blame] | 1010 | /*ieee80211_unregister_hw will call ops_stop */ | 
|  | 1011 | if (rtlmac->mac80211_registered == 1) { | 
|  | 1012 | ieee80211_unregister_hw(hw); | 
|  | 1013 | rtlmac->mac80211_registered = 0; | 
|  | 1014 | } else { | 
|  | 1015 | rtl_deinit_deferred_work(hw); | 
|  | 1016 | rtlpriv->intf_ops->adapter_stop(hw); | 
|  | 1017 | } | 
|  | 1018 | /*deinit rfkill */ | 
|  | 1019 | /* rtl_deinit_rfkill(hw); */ | 
|  | 1020 | rtl_usb_deinit(hw); | 
|  | 1021 | rtl_deinit_core(hw); | 
|  | 1022 | rtlpriv->cfg->ops->deinit_sw_leds(hw); | 
|  | 1023 | rtlpriv->cfg->ops->deinit_sw_vars(hw); | 
|  | 1024 | _rtl_usb_io_handler_release(hw); | 
|  | 1025 | usb_put_dev(rtlusb->udev); | 
|  | 1026 | usb_set_intfdata(intf, NULL); | 
|  | 1027 | ieee80211_free_hw(hw); | 
|  | 1028 | } | 
|  | 1029 | EXPORT_SYMBOL(rtl_usb_disconnect); | 
|  | 1030 |  | 
|  | 1031 | int rtl_usb_suspend(struct usb_interface *pusb_intf, pm_message_t message) | 
|  | 1032 | { | 
|  | 1033 | return 0; | 
|  | 1034 | } | 
|  | 1035 | EXPORT_SYMBOL(rtl_usb_suspend); | 
|  | 1036 |  | 
|  | 1037 | int rtl_usb_resume(struct usb_interface *pusb_intf) | 
|  | 1038 | { | 
|  | 1039 | return 0; | 
|  | 1040 | } | 
|  | 1041 | EXPORT_SYMBOL(rtl_usb_resume); |