rt2800usb.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928
  1. /*
  2. Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
  3. Copyright (C) 2009 - 2010 Ivo van Doorn <IvDoorn@gmail.com>
  4. Copyright (C) 2009 Mattias Nissler <mattias.nissler@gmx.de>
  5. Copyright (C) 2009 Felix Fietkau <nbd@openwrt.org>
  6. Copyright (C) 2009 Xose Vazquez Perez <xose.vazquez@gmail.com>
  7. Copyright (C) 2009 Axel Kollhofer <rain_maker@root-forum.org>
  8. <http://rt2x00.serialmonkey.com>
  9. This program is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation; either version 2 of the License, or
  12. (at your option) any later version.
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. GNU General Public License for more details.
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the
  19. Free Software Foundation, Inc.,
  20. 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. /*
  23. Module: rt2800usb
  24. Abstract: rt2800usb device specific routines.
  25. Supported chipsets: RT2800U.
  26. */
  27. #include <linux/delay.h>
  28. #include <linux/etherdevice.h>
  29. #include <linux/init.h>
  30. #include <linux/kernel.h>
  31. #include <linux/module.h>
  32. #include <linux/usb.h>
  33. #include "rt2x00.h"
  34. #include "rt2x00usb.h"
  35. #include "rt2800lib.h"
  36. #include "rt2800.h"
  37. #include "rt2800usb.h"
  38. /*
  39. * Allow hardware encryption to be disabled.
  40. */
  41. static int modparam_nohwcrypt = 0;
  42. module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
  43. MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
  44. /*
  45. * Firmware functions
  46. */
  47. static char *rt2800usb_get_firmware_name(struct rt2x00_dev *rt2x00dev)
  48. {
  49. return FIRMWARE_RT2870;
  50. }
  51. static int rt2800usb_write_firmware(struct rt2x00_dev *rt2x00dev,
  52. const u8 *data, const size_t len)
  53. {
  54. int status;
  55. u32 offset;
  56. u32 length;
  57. /*
  58. * Check which section of the firmware we need.
  59. */
  60. if (rt2x00_rt(rt2x00dev, RT2860) ||
  61. rt2x00_rt(rt2x00dev, RT2872) ||
  62. rt2x00_rt(rt2x00dev, RT3070)) {
  63. offset = 0;
  64. length = 4096;
  65. } else {
  66. offset = 4096;
  67. length = 4096;
  68. }
  69. /*
  70. * Write firmware to device.
  71. */
  72. rt2800_register_multiwrite(rt2x00dev, FIRMWARE_IMAGE_BASE,
  73. data + offset, length);
  74. rt2800_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0);
  75. rt2800_register_write(rt2x00dev, H2M_MAILBOX_STATUS, ~0);
  76. /*
  77. * Send firmware request to device to load firmware,
  78. * we need to specify a long timeout time.
  79. */
  80. status = rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE,
  81. 0, USB_MODE_FIRMWARE,
  82. REGISTER_TIMEOUT_FIRMWARE);
  83. if (status < 0) {
  84. ERROR(rt2x00dev, "Failed to write Firmware to device.\n");
  85. return status;
  86. }
  87. msleep(10);
  88. rt2800_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
  89. return 0;
  90. }
  91. /*
  92. * Device state switch handlers.
  93. */
  94. static void rt2800usb_toggle_rx(struct rt2x00_dev *rt2x00dev,
  95. enum dev_state state)
  96. {
  97. u32 reg;
  98. rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
  99. rt2x00_set_field32(&reg, MAC_SYS_CTRL_ENABLE_RX,
  100. (state == STATE_RADIO_RX_ON) ||
  101. (state == STATE_RADIO_RX_ON_LINK));
  102. rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
  103. }
  104. static int rt2800usb_init_registers(struct rt2x00_dev *rt2x00dev)
  105. {
  106. u32 reg;
  107. /*
  108. * Wait until BBP and RF are ready.
  109. */
  110. if (rt2800_wait_csr_ready(rt2x00dev))
  111. return -EBUSY;
  112. rt2800_register_read(rt2x00dev, PBF_SYS_CTRL, &reg);
  113. rt2800_register_write(rt2x00dev, PBF_SYS_CTRL, reg & ~0x00002000);
  114. rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0x00000003);
  115. rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, &reg);
  116. rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_CSR, 1);
  117. rt2x00_set_field32(&reg, MAC_SYS_CTRL_RESET_BBP, 1);
  118. rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg);
  119. rt2800_register_write(rt2x00dev, USB_DMA_CFG, 0x00000000);
  120. rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE, 0,
  121. USB_MODE_RESET, REGISTER_TIMEOUT);
  122. rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000);
  123. return 0;
  124. }
  125. static int rt2800usb_enable_radio(struct rt2x00_dev *rt2x00dev)
  126. {
  127. u32 reg;
  128. if (unlikely(rt2800_wait_wpdma_ready(rt2x00dev)))
  129. return -EIO;
  130. rt2800_register_read(rt2x00dev, USB_DMA_CFG, &reg);
  131. rt2x00_set_field32(&reg, USB_DMA_CFG_PHY_CLEAR, 0);
  132. rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_EN, 0);
  133. rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_TIMEOUT, 128);
  134. /*
  135. * Total room for RX frames in kilobytes, PBF might still exceed
  136. * this limit so reduce the number to prevent errors.
  137. */
  138. rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_AGG_LIMIT,
  139. ((rt2x00dev->ops->rx->entry_num * DATA_FRAME_SIZE)
  140. / 1024) - 3);
  141. rt2x00_set_field32(&reg, USB_DMA_CFG_RX_BULK_EN, 1);
  142. rt2x00_set_field32(&reg, USB_DMA_CFG_TX_BULK_EN, 1);
  143. rt2800_register_write(rt2x00dev, USB_DMA_CFG, reg);
  144. return rt2800_enable_radio(rt2x00dev);
  145. }
  146. static void rt2800usb_disable_radio(struct rt2x00_dev *rt2x00dev)
  147. {
  148. rt2800_disable_radio(rt2x00dev);
  149. rt2x00usb_disable_radio(rt2x00dev);
  150. }
  151. static int rt2800usb_set_state(struct rt2x00_dev *rt2x00dev,
  152. enum dev_state state)
  153. {
  154. if (state == STATE_AWAKE)
  155. rt2800_mcu_request(rt2x00dev, MCU_WAKEUP, 0xff, 0, 0);
  156. else
  157. rt2800_mcu_request(rt2x00dev, MCU_SLEEP, 0xff, 0, 2);
  158. return 0;
  159. }
  160. static int rt2800usb_set_device_state(struct rt2x00_dev *rt2x00dev,
  161. enum dev_state state)
  162. {
  163. int retval = 0;
  164. switch (state) {
  165. case STATE_RADIO_ON:
  166. /*
  167. * Before the radio can be enabled, the device first has
  168. * to be woken up. After that it needs a bit of time
  169. * to be fully awake and then the radio can be enabled.
  170. */
  171. rt2800usb_set_state(rt2x00dev, STATE_AWAKE);
  172. msleep(1);
  173. retval = rt2800usb_enable_radio(rt2x00dev);
  174. break;
  175. case STATE_RADIO_OFF:
  176. /*
  177. * After the radio has been disabled, the device should
  178. * be put to sleep for powersaving.
  179. */
  180. rt2800usb_disable_radio(rt2x00dev);
  181. rt2800usb_set_state(rt2x00dev, STATE_SLEEP);
  182. break;
  183. case STATE_RADIO_RX_ON:
  184. case STATE_RADIO_RX_ON_LINK:
  185. case STATE_RADIO_RX_OFF:
  186. case STATE_RADIO_RX_OFF_LINK:
  187. rt2800usb_toggle_rx(rt2x00dev, state);
  188. break;
  189. case STATE_RADIO_IRQ_ON:
  190. case STATE_RADIO_IRQ_ON_ISR:
  191. case STATE_RADIO_IRQ_OFF:
  192. case STATE_RADIO_IRQ_OFF_ISR:
  193. /* No support, but no error either */
  194. break;
  195. case STATE_DEEP_SLEEP:
  196. case STATE_SLEEP:
  197. case STATE_STANDBY:
  198. case STATE_AWAKE:
  199. retval = rt2800usb_set_state(rt2x00dev, state);
  200. break;
  201. default:
  202. retval = -ENOTSUPP;
  203. break;
  204. }
  205. if (unlikely(retval))
  206. ERROR(rt2x00dev, "Device failed to enter state %d (%d).\n",
  207. state, retval);
  208. return retval;
  209. }
  210. /*
  211. * TX descriptor initialization
  212. */
  213. static __le32 *rt2800usb_get_txwi(struct queue_entry *entry)
  214. {
  215. if (entry->queue->qid == QID_BEACON)
  216. return (__le32 *) (entry->skb->data);
  217. else
  218. return (__le32 *) (entry->skb->data + TXINFO_DESC_SIZE);
  219. }
  220. static void rt2800usb_write_tx_desc(struct queue_entry *entry,
  221. struct txentry_desc *txdesc)
  222. {
  223. struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
  224. __le32 *txi = (__le32 *) entry->skb->data;
  225. u32 word;
  226. /*
  227. * Initialize TXINFO descriptor
  228. */
  229. rt2x00_desc_read(txi, 0, &word);
  230. rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_PKT_LEN,
  231. entry->skb->len - TXINFO_DESC_SIZE);
  232. rt2x00_set_field32(&word, TXINFO_W0_WIV,
  233. !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags));
  234. rt2x00_set_field32(&word, TXINFO_W0_QSEL, 2);
  235. rt2x00_set_field32(&word, TXINFO_W0_SW_USE_LAST_ROUND, 0);
  236. rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_NEXT_VALID, 0);
  237. rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_BURST,
  238. test_bit(ENTRY_TXD_BURST, &txdesc->flags));
  239. rt2x00_desc_write(txi, 0, word);
  240. /*
  241. * Register descriptor details in skb frame descriptor.
  242. */
  243. skbdesc->flags |= SKBDESC_DESC_IN_SKB;
  244. skbdesc->desc = txi;
  245. skbdesc->desc_len = TXINFO_DESC_SIZE + TXWI_DESC_SIZE;
  246. }
  247. /*
  248. * TX data initialization
  249. */
  250. static int rt2800usb_get_tx_data_len(struct queue_entry *entry)
  251. {
  252. int length;
  253. /*
  254. * The length _must_ include 4 bytes padding,
  255. * it should always be multiple of 4,
  256. * but it must _not_ be a multiple of the USB packet size.
  257. */
  258. length = roundup(entry->skb->len + 4, 4);
  259. length += (4 * !(length % entry->queue->usb_maxpacket));
  260. return length;
  261. }
  262. /*
  263. * TX control handlers
  264. */
  265. static void rt2800usb_work_txdone(struct work_struct *work)
  266. {
  267. struct rt2x00_dev *rt2x00dev =
  268. container_of(work, struct rt2x00_dev, txdone_work);
  269. struct data_queue *queue;
  270. struct queue_entry *entry;
  271. rt2800_txdone(rt2x00dev);
  272. /*
  273. * Process any trailing TX status reports for IO failures,
  274. * we loop until we find the first non-IO error entry. This
  275. * can either be a frame which is free, is being uploaded,
  276. * or has completed the upload but didn't have an entry
  277. * in the TX_STAT_FIFO register yet.
  278. */
  279. tx_queue_for_each(rt2x00dev, queue) {
  280. while (!rt2x00queue_empty(queue)) {
  281. entry = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
  282. if (test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags) ||
  283. !test_bit(ENTRY_DATA_IO_FAILED, &entry->flags))
  284. break;
  285. rt2x00lib_txdone_noinfo(entry, TXDONE_FAILURE);
  286. }
  287. }
  288. }
  289. static void rt2800usb_kill_tx_queue(struct data_queue *queue)
  290. {
  291. if (queue->qid == QID_BEACON)
  292. rt2x00usb_register_write(queue->rt2x00dev, BCN_TIME_CFG, 0);
  293. rt2x00usb_kill_tx_queue(queue);
  294. }
  295. /*
  296. * RX control handlers
  297. */
  298. static void rt2800usb_fill_rxdone(struct queue_entry *entry,
  299. struct rxdone_entry_desc *rxdesc)
  300. {
  301. struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
  302. __le32 *rxi = (__le32 *)entry->skb->data;
  303. __le32 *rxd;
  304. u32 word;
  305. int rx_pkt_len;
  306. /*
  307. * Copy descriptor to the skbdesc->desc buffer, making it safe from
  308. * moving of frame data in rt2x00usb.
  309. */
  310. memcpy(skbdesc->desc, rxi, skbdesc->desc_len);
  311. /*
  312. * RX frame format is :
  313. * | RXINFO | RXWI | header | L2 pad | payload | pad | RXD | USB pad |
  314. * |<------------ rx_pkt_len -------------->|
  315. */
  316. rt2x00_desc_read(rxi, 0, &word);
  317. rx_pkt_len = rt2x00_get_field32(word, RXINFO_W0_USB_DMA_RX_PKT_LEN);
  318. /*
  319. * Remove the RXINFO structure from the sbk.
  320. */
  321. skb_pull(entry->skb, RXINFO_DESC_SIZE);
  322. /*
  323. * FIXME: we need to check for rx_pkt_len validity
  324. */
  325. rxd = (__le32 *)(entry->skb->data + rx_pkt_len);
  326. /*
  327. * It is now safe to read the descriptor on all architectures.
  328. */
  329. rt2x00_desc_read(rxd, 0, &word);
  330. if (rt2x00_get_field32(word, RXD_W0_CRC_ERROR))
  331. rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC;
  332. rxdesc->cipher_status = rt2x00_get_field32(word, RXD_W0_CIPHER_ERROR);
  333. if (rt2x00_get_field32(word, RXD_W0_DECRYPTED)) {
  334. /*
  335. * Hardware has stripped IV/EIV data from 802.11 frame during
  336. * decryption. Unfortunately the descriptor doesn't contain
  337. * any fields with the EIV/IV data either, so they can't
  338. * be restored by rt2x00lib.
  339. */
  340. rxdesc->flags |= RX_FLAG_IV_STRIPPED;
  341. if (rxdesc->cipher_status == RX_CRYPTO_SUCCESS)
  342. rxdesc->flags |= RX_FLAG_DECRYPTED;
  343. else if (rxdesc->cipher_status == RX_CRYPTO_FAIL_MIC)
  344. rxdesc->flags |= RX_FLAG_MMIC_ERROR;
  345. }
  346. if (rt2x00_get_field32(word, RXD_W0_MY_BSS))
  347. rxdesc->dev_flags |= RXDONE_MY_BSS;
  348. if (rt2x00_get_field32(word, RXD_W0_L2PAD))
  349. rxdesc->dev_flags |= RXDONE_L2PAD;
  350. /*
  351. * Remove RXD descriptor from end of buffer.
  352. */
  353. skb_trim(entry->skb, rx_pkt_len);
  354. /*
  355. * Process the RXWI structure.
  356. */
  357. rt2800_process_rxwi(entry, rxdesc);
  358. }
  359. /*
  360. * Device probe functions.
  361. */
  362. static int rt2800usb_validate_eeprom(struct rt2x00_dev *rt2x00dev)
  363. {
  364. if (rt2800_efuse_detect(rt2x00dev))
  365. rt2800_read_eeprom_efuse(rt2x00dev);
  366. else
  367. rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom,
  368. EEPROM_SIZE);
  369. return rt2800_validate_eeprom(rt2x00dev);
  370. }
  371. static int rt2800usb_probe_hw(struct rt2x00_dev *rt2x00dev)
  372. {
  373. int retval;
  374. /*
  375. * Allocate eeprom data.
  376. */
  377. retval = rt2800usb_validate_eeprom(rt2x00dev);
  378. if (retval)
  379. return retval;
  380. retval = rt2800_init_eeprom(rt2x00dev);
  381. if (retval)
  382. return retval;
  383. /*
  384. * Initialize hw specifications.
  385. */
  386. retval = rt2800_probe_hw_mode(rt2x00dev);
  387. if (retval)
  388. return retval;
  389. /*
  390. * This device has multiple filters for control frames
  391. * and has a separate filter for PS Poll frames.
  392. */
  393. __set_bit(DRIVER_SUPPORT_CONTROL_FILTERS, &rt2x00dev->flags);
  394. __set_bit(DRIVER_SUPPORT_CONTROL_FILTER_PSPOLL, &rt2x00dev->flags);
  395. /*
  396. * This device requires firmware.
  397. */
  398. __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags);
  399. __set_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags);
  400. if (!modparam_nohwcrypt)
  401. __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags);
  402. __set_bit(DRIVER_SUPPORT_LINK_TUNING, &rt2x00dev->flags);
  403. __set_bit(DRIVER_SUPPORT_WATCHDOG, &rt2x00dev->flags);
  404. /*
  405. * Set the rssi offset.
  406. */
  407. rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
  408. /*
  409. * Overwrite TX done handler
  410. */
  411. PREPARE_WORK(&rt2x00dev->txdone_work, rt2800usb_work_txdone);
  412. return 0;
  413. }
  414. static const struct ieee80211_ops rt2800usb_mac80211_ops = {
  415. .tx = rt2x00mac_tx,
  416. .start = rt2x00mac_start,
  417. .stop = rt2x00mac_stop,
  418. .add_interface = rt2x00mac_add_interface,
  419. .remove_interface = rt2x00mac_remove_interface,
  420. .config = rt2x00mac_config,
  421. .configure_filter = rt2x00mac_configure_filter,
  422. .set_tim = rt2x00mac_set_tim,
  423. .set_key = rt2x00mac_set_key,
  424. .sw_scan_start = rt2x00mac_sw_scan_start,
  425. .sw_scan_complete = rt2x00mac_sw_scan_complete,
  426. .get_stats = rt2x00mac_get_stats,
  427. .get_tkip_seq = rt2800_get_tkip_seq,
  428. .set_rts_threshold = rt2800_set_rts_threshold,
  429. .bss_info_changed = rt2x00mac_bss_info_changed,
  430. .conf_tx = rt2800_conf_tx,
  431. .get_tsf = rt2800_get_tsf,
  432. .rfkill_poll = rt2x00mac_rfkill_poll,
  433. .ampdu_action = rt2800_ampdu_action,
  434. .flush = rt2x00mac_flush,
  435. };
  436. static const struct rt2800_ops rt2800usb_rt2800_ops = {
  437. .register_read = rt2x00usb_register_read,
  438. .register_read_lock = rt2x00usb_register_read_lock,
  439. .register_write = rt2x00usb_register_write,
  440. .register_write_lock = rt2x00usb_register_write_lock,
  441. .register_multiread = rt2x00usb_register_multiread,
  442. .register_multiwrite = rt2x00usb_register_multiwrite,
  443. .regbusy_read = rt2x00usb_regbusy_read,
  444. .drv_write_firmware = rt2800usb_write_firmware,
  445. .drv_init_registers = rt2800usb_init_registers,
  446. .drv_get_txwi = rt2800usb_get_txwi,
  447. };
  448. static const struct rt2x00lib_ops rt2800usb_rt2x00_ops = {
  449. .probe_hw = rt2800usb_probe_hw,
  450. .get_firmware_name = rt2800usb_get_firmware_name,
  451. .check_firmware = rt2800_check_firmware,
  452. .load_firmware = rt2800_load_firmware,
  453. .initialize = rt2x00usb_initialize,
  454. .uninitialize = rt2x00usb_uninitialize,
  455. .clear_entry = rt2x00usb_clear_entry,
  456. .set_device_state = rt2800usb_set_device_state,
  457. .rfkill_poll = rt2800_rfkill_poll,
  458. .link_stats = rt2800_link_stats,
  459. .reset_tuner = rt2800_reset_tuner,
  460. .link_tuner = rt2800_link_tuner,
  461. .watchdog = rt2x00usb_watchdog,
  462. .write_tx_desc = rt2800usb_write_tx_desc,
  463. .write_tx_data = rt2800_write_tx_data,
  464. .write_beacon = rt2800_write_beacon,
  465. .get_tx_data_len = rt2800usb_get_tx_data_len,
  466. .kick_tx_queue = rt2x00usb_kick_tx_queue,
  467. .kill_tx_queue = rt2800usb_kill_tx_queue,
  468. .fill_rxdone = rt2800usb_fill_rxdone,
  469. .config_shared_key = rt2800_config_shared_key,
  470. .config_pairwise_key = rt2800_config_pairwise_key,
  471. .config_filter = rt2800_config_filter,
  472. .config_intf = rt2800_config_intf,
  473. .config_erp = rt2800_config_erp,
  474. .config_ant = rt2800_config_ant,
  475. .config = rt2800_config,
  476. };
  477. static const struct data_queue_desc rt2800usb_queue_rx = {
  478. .entry_num = 128,
  479. .data_size = AGGREGATION_SIZE,
  480. .desc_size = RXINFO_DESC_SIZE + RXWI_DESC_SIZE,
  481. .priv_size = sizeof(struct queue_entry_priv_usb),
  482. };
  483. static const struct data_queue_desc rt2800usb_queue_tx = {
  484. .entry_num = 64,
  485. .data_size = AGGREGATION_SIZE,
  486. .desc_size = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
  487. .priv_size = sizeof(struct queue_entry_priv_usb),
  488. };
  489. static const struct data_queue_desc rt2800usb_queue_bcn = {
  490. .entry_num = 8,
  491. .data_size = MGMT_FRAME_SIZE,
  492. .desc_size = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
  493. .priv_size = sizeof(struct queue_entry_priv_usb),
  494. };
  495. static const struct rt2x00_ops rt2800usb_ops = {
  496. .name = KBUILD_MODNAME,
  497. .max_sta_intf = 1,
  498. .max_ap_intf = 8,
  499. .eeprom_size = EEPROM_SIZE,
  500. .rf_size = RF_SIZE,
  501. .tx_queues = NUM_TX_QUEUES,
  502. .extra_tx_headroom = TXINFO_DESC_SIZE + TXWI_DESC_SIZE,
  503. .rx = &rt2800usb_queue_rx,
  504. .tx = &rt2800usb_queue_tx,
  505. .bcn = &rt2800usb_queue_bcn,
  506. .lib = &rt2800usb_rt2x00_ops,
  507. .drv = &rt2800usb_rt2800_ops,
  508. .hw = &rt2800usb_mac80211_ops,
  509. #ifdef CONFIG_RT2X00_LIB_DEBUGFS
  510. .debugfs = &rt2800_rt2x00debug,
  511. #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
  512. };
  513. /*
  514. * rt2800usb module information.
  515. */
  516. static struct usb_device_id rt2800usb_device_table[] = {
  517. /* Abocom */
  518. { USB_DEVICE(0x07b8, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
  519. { USB_DEVICE(0x07b8, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
  520. { USB_DEVICE(0x1482, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
  521. /* Allwin */
  522. { USB_DEVICE(0x8516, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops) },
  523. { USB_DEVICE(0x8516, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
  524. { USB_DEVICE(0x8516, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
  525. /* Amit */
  526. { USB_DEVICE(0x15c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
  527. /* Askey */
  528. { USB_DEVICE(0x1690, 0x0740), USB_DEVICE_DATA(&rt2800usb_ops) },
  529. /* ASUS */
  530. { USB_DEVICE(0x0b05, 0x1731), USB_DEVICE_DATA(&rt2800usb_ops) },
  531. { USB_DEVICE(0x0b05, 0x1732), USB_DEVICE_DATA(&rt2800usb_ops) },
  532. { USB_DEVICE(0x0b05, 0x1742), USB_DEVICE_DATA(&rt2800usb_ops) },
  533. /* AzureWave */
  534. { USB_DEVICE(0x13d3, 0x3247), USB_DEVICE_DATA(&rt2800usb_ops) },
  535. /* Belkin */
  536. { USB_DEVICE(0x050d, 0x8053), USB_DEVICE_DATA(&rt2800usb_ops) },
  537. { USB_DEVICE(0x050d, 0x805c), USB_DEVICE_DATA(&rt2800usb_ops) },
  538. { USB_DEVICE(0x050d, 0x815c), USB_DEVICE_DATA(&rt2800usb_ops) },
  539. /* Buffalo */
  540. { USB_DEVICE(0x0411, 0x00e8), USB_DEVICE_DATA(&rt2800usb_ops) },
  541. /* Conceptronic */
  542. { USB_DEVICE(0x14b2, 0x3c06), USB_DEVICE_DATA(&rt2800usb_ops) },
  543. { USB_DEVICE(0x14b2, 0x3c07), USB_DEVICE_DATA(&rt2800usb_ops) },
  544. { USB_DEVICE(0x14b2, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
  545. { USB_DEVICE(0x14b2, 0x3c23), USB_DEVICE_DATA(&rt2800usb_ops) },
  546. { USB_DEVICE(0x14b2, 0x3c25), USB_DEVICE_DATA(&rt2800usb_ops) },
  547. { USB_DEVICE(0x14b2, 0x3c27), USB_DEVICE_DATA(&rt2800usb_ops) },
  548. { USB_DEVICE(0x14b2, 0x3c28), USB_DEVICE_DATA(&rt2800usb_ops) },
  549. /* Corega */
  550. { USB_DEVICE(0x07aa, 0x002f), USB_DEVICE_DATA(&rt2800usb_ops) },
  551. { USB_DEVICE(0x07aa, 0x003c), USB_DEVICE_DATA(&rt2800usb_ops) },
  552. { USB_DEVICE(0x07aa, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
  553. /* D-Link */
  554. { USB_DEVICE(0x07d1, 0x3c09), USB_DEVICE_DATA(&rt2800usb_ops) },
  555. { USB_DEVICE(0x07d1, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
  556. /* Edimax */
  557. { USB_DEVICE(0x7392, 0x7717), USB_DEVICE_DATA(&rt2800usb_ops) },
  558. { USB_DEVICE(0x7392, 0x7718), USB_DEVICE_DATA(&rt2800usb_ops) },
  559. /* EnGenius */
  560. { USB_DEVICE(0x1740, 0x9701), USB_DEVICE_DATA(&rt2800usb_ops) },
  561. { USB_DEVICE(0x1740, 0x9702), USB_DEVICE_DATA(&rt2800usb_ops) },
  562. /* Gigabyte */
  563. { USB_DEVICE(0x1044, 0x800b), USB_DEVICE_DATA(&rt2800usb_ops) },
  564. /* Hawking */
  565. { USB_DEVICE(0x0e66, 0x0001), USB_DEVICE_DATA(&rt2800usb_ops) },
  566. { USB_DEVICE(0x0e66, 0x0003), USB_DEVICE_DATA(&rt2800usb_ops) },
  567. { USB_DEVICE(0x0e66, 0x0009), USB_DEVICE_DATA(&rt2800usb_ops) },
  568. { USB_DEVICE(0x0e66, 0x000b), USB_DEVICE_DATA(&rt2800usb_ops) },
  569. { USB_DEVICE(0x0e66, 0x0013), USB_DEVICE_DATA(&rt2800usb_ops) },
  570. { USB_DEVICE(0x0e66, 0x0017), USB_DEVICE_DATA(&rt2800usb_ops) },
  571. { USB_DEVICE(0x0e66, 0x0018), USB_DEVICE_DATA(&rt2800usb_ops) },
  572. /* Linksys */
  573. { USB_DEVICE(0x1737, 0x0070), USB_DEVICE_DATA(&rt2800usb_ops) },
  574. { USB_DEVICE(0x1737, 0x0071), USB_DEVICE_DATA(&rt2800usb_ops) },
  575. /* Logitec */
  576. { USB_DEVICE(0x0789, 0x0162), USB_DEVICE_DATA(&rt2800usb_ops) },
  577. { USB_DEVICE(0x0789, 0x0163), USB_DEVICE_DATA(&rt2800usb_ops) },
  578. { USB_DEVICE(0x0789, 0x0164), USB_DEVICE_DATA(&rt2800usb_ops) },
  579. /* Motorola */
  580. { USB_DEVICE(0x100d, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
  581. /* MSI */
  582. { USB_DEVICE(0x0db0, 0x6899), USB_DEVICE_DATA(&rt2800usb_ops) },
  583. /* Philips */
  584. { USB_DEVICE(0x0471, 0x200f), USB_DEVICE_DATA(&rt2800usb_ops) },
  585. /* Planex */
  586. { USB_DEVICE(0x2019, 0xed06), USB_DEVICE_DATA(&rt2800usb_ops) },
  587. /* Ralink */
  588. { USB_DEVICE(0x148f, 0x2770), USB_DEVICE_DATA(&rt2800usb_ops) },
  589. { USB_DEVICE(0x148f, 0x2870), USB_DEVICE_DATA(&rt2800usb_ops) },
  590. /* Samsung */
  591. { USB_DEVICE(0x04e8, 0x2018), USB_DEVICE_DATA(&rt2800usb_ops) },
  592. /* Siemens */
  593. { USB_DEVICE(0x129b, 0x1828), USB_DEVICE_DATA(&rt2800usb_ops) },
  594. /* Sitecom */
  595. { USB_DEVICE(0x0df6, 0x0017), USB_DEVICE_DATA(&rt2800usb_ops) },
  596. { USB_DEVICE(0x0df6, 0x002b), USB_DEVICE_DATA(&rt2800usb_ops) },
  597. { USB_DEVICE(0x0df6, 0x002c), USB_DEVICE_DATA(&rt2800usb_ops) },
  598. { USB_DEVICE(0x0df6, 0x002d), USB_DEVICE_DATA(&rt2800usb_ops) },
  599. { USB_DEVICE(0x0df6, 0x0039), USB_DEVICE_DATA(&rt2800usb_ops) },
  600. { USB_DEVICE(0x0df6, 0x003b), USB_DEVICE_DATA(&rt2800usb_ops) },
  601. { USB_DEVICE(0x0df6, 0x003d), USB_DEVICE_DATA(&rt2800usb_ops) },
  602. { USB_DEVICE(0x0df6, 0x003f), USB_DEVICE_DATA(&rt2800usb_ops) },
  603. /* SMC */
  604. { USB_DEVICE(0x083a, 0x6618), USB_DEVICE_DATA(&rt2800usb_ops) },
  605. { USB_DEVICE(0x083a, 0x7512), USB_DEVICE_DATA(&rt2800usb_ops) },
  606. { USB_DEVICE(0x083a, 0x7522), USB_DEVICE_DATA(&rt2800usb_ops) },
  607. { USB_DEVICE(0x083a, 0x8522), USB_DEVICE_DATA(&rt2800usb_ops) },
  608. { USB_DEVICE(0x083a, 0xa618), USB_DEVICE_DATA(&rt2800usb_ops) },
  609. { USB_DEVICE(0x083a, 0xb522), USB_DEVICE_DATA(&rt2800usb_ops) },
  610. /* Sparklan */
  611. { USB_DEVICE(0x15a9, 0x0006), USB_DEVICE_DATA(&rt2800usb_ops) },
  612. /* Sweex */
  613. { USB_DEVICE(0x177f, 0x0302), USB_DEVICE_DATA(&rt2800usb_ops) },
  614. /* U-Media*/
  615. { USB_DEVICE(0x157e, 0x300e), USB_DEVICE_DATA(&rt2800usb_ops) },
  616. /* ZCOM */
  617. { USB_DEVICE(0x0cde, 0x0022), USB_DEVICE_DATA(&rt2800usb_ops) },
  618. { USB_DEVICE(0x0cde, 0x0025), USB_DEVICE_DATA(&rt2800usb_ops) },
  619. /* Zinwell */
  620. { USB_DEVICE(0x5a57, 0x0280), USB_DEVICE_DATA(&rt2800usb_ops) },
  621. { USB_DEVICE(0x5a57, 0x0282), USB_DEVICE_DATA(&rt2800usb_ops) },
  622. /* Zyxel */
  623. { USB_DEVICE(0x0586, 0x3416), USB_DEVICE_DATA(&rt2800usb_ops) },
  624. #ifdef CONFIG_RT2800USB_RT30XX
  625. /* Abocom */
  626. { USB_DEVICE(0x07b8, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
  627. { USB_DEVICE(0x07b8, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
  628. { USB_DEVICE(0x07b8, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
  629. /* AirTies */
  630. { USB_DEVICE(0x1eda, 0x2310), USB_DEVICE_DATA(&rt2800usb_ops) },
  631. /* Allwin */
  632. { USB_DEVICE(0x8516, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
  633. { USB_DEVICE(0x8516, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
  634. { USB_DEVICE(0x8516, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
  635. /* ASUS */
  636. { USB_DEVICE(0x0b05, 0x1784), USB_DEVICE_DATA(&rt2800usb_ops) },
  637. /* AzureWave */
  638. { USB_DEVICE(0x13d3, 0x3273), USB_DEVICE_DATA(&rt2800usb_ops) },
  639. { USB_DEVICE(0x13d3, 0x3305), USB_DEVICE_DATA(&rt2800usb_ops) },
  640. { USB_DEVICE(0x13d3, 0x3307), USB_DEVICE_DATA(&rt2800usb_ops) },
  641. { USB_DEVICE(0x13d3, 0x3321), USB_DEVICE_DATA(&rt2800usb_ops) },
  642. /* Conceptronic */
  643. { USB_DEVICE(0x14b2, 0x3c12), USB_DEVICE_DATA(&rt2800usb_ops) },
  644. /* Corega */
  645. { USB_DEVICE(0x18c5, 0x0012), USB_DEVICE_DATA(&rt2800usb_ops) },
  646. /* D-Link */
  647. { USB_DEVICE(0x07d1, 0x3c0a), USB_DEVICE_DATA(&rt2800usb_ops) },
  648. { USB_DEVICE(0x07d1, 0x3c0d), USB_DEVICE_DATA(&rt2800usb_ops) },
  649. { USB_DEVICE(0x07d1, 0x3c0e), USB_DEVICE_DATA(&rt2800usb_ops) },
  650. { USB_DEVICE(0x07d1, 0x3c0f), USB_DEVICE_DATA(&rt2800usb_ops) },
  651. { USB_DEVICE(0x07d1, 0x3c16), USB_DEVICE_DATA(&rt2800usb_ops) },
  652. /* Draytek */
  653. { USB_DEVICE(0x07fa, 0x7712), USB_DEVICE_DATA(&rt2800usb_ops) },
  654. /* Edimax */
  655. { USB_DEVICE(0x7392, 0x7711), USB_DEVICE_DATA(&rt2800usb_ops) },
  656. /* Encore */
  657. { USB_DEVICE(0x203d, 0x1480), USB_DEVICE_DATA(&rt2800usb_ops) },
  658. { USB_DEVICE(0x203d, 0x14a9), USB_DEVICE_DATA(&rt2800usb_ops) },
  659. /* EnGenius */
  660. { USB_DEVICE(0x1740, 0x9703), USB_DEVICE_DATA(&rt2800usb_ops) },
  661. { USB_DEVICE(0x1740, 0x9705), USB_DEVICE_DATA(&rt2800usb_ops) },
  662. { USB_DEVICE(0x1740, 0x9706), USB_DEVICE_DATA(&rt2800usb_ops) },
  663. { USB_DEVICE(0x1740, 0x9707), USB_DEVICE_DATA(&rt2800usb_ops) },
  664. { USB_DEVICE(0x1740, 0x9708), USB_DEVICE_DATA(&rt2800usb_ops) },
  665. { USB_DEVICE(0x1740, 0x9709), USB_DEVICE_DATA(&rt2800usb_ops) },
  666. /* Gigabyte */
  667. { USB_DEVICE(0x1044, 0x800d), USB_DEVICE_DATA(&rt2800usb_ops) },
  668. /* I-O DATA */
  669. { USB_DEVICE(0x04bb, 0x0945), USB_DEVICE_DATA(&rt2800usb_ops) },
  670. { USB_DEVICE(0x04bb, 0x0947), USB_DEVICE_DATA(&rt2800usb_ops) },
  671. { USB_DEVICE(0x04bb, 0x0948), USB_DEVICE_DATA(&rt2800usb_ops) },
  672. /* Logitec */
  673. { USB_DEVICE(0x0789, 0x0166), USB_DEVICE_DATA(&rt2800usb_ops) },
  674. /* MSI */
  675. { USB_DEVICE(0x0db0, 0x3820), USB_DEVICE_DATA(&rt2800usb_ops) },
  676. { USB_DEVICE(0x0db0, 0x3821), USB_DEVICE_DATA(&rt2800usb_ops) },
  677. { USB_DEVICE(0x0db0, 0x3822), USB_DEVICE_DATA(&rt2800usb_ops) },
  678. { USB_DEVICE(0x0db0, 0x3870), USB_DEVICE_DATA(&rt2800usb_ops) },
  679. { USB_DEVICE(0x0db0, 0x3871), USB_DEVICE_DATA(&rt2800usb_ops) },
  680. { USB_DEVICE(0x0db0, 0x821a), USB_DEVICE_DATA(&rt2800usb_ops) },
  681. { USB_DEVICE(0x0db0, 0x822a), USB_DEVICE_DATA(&rt2800usb_ops) },
  682. { USB_DEVICE(0x0db0, 0x822b), USB_DEVICE_DATA(&rt2800usb_ops) },
  683. { USB_DEVICE(0x0db0, 0x822c), USB_DEVICE_DATA(&rt2800usb_ops) },
  684. { USB_DEVICE(0x0db0, 0x870a), USB_DEVICE_DATA(&rt2800usb_ops) },
  685. { USB_DEVICE(0x0db0, 0x871a), USB_DEVICE_DATA(&rt2800usb_ops) },
  686. { USB_DEVICE(0x0db0, 0x871b), USB_DEVICE_DATA(&rt2800usb_ops) },
  687. { USB_DEVICE(0x0db0, 0x871c), USB_DEVICE_DATA(&rt2800usb_ops) },
  688. { USB_DEVICE(0x0db0, 0x899a), USB_DEVICE_DATA(&rt2800usb_ops) },
  689. /* Para */
  690. { USB_DEVICE(0x20b8, 0x8888), USB_DEVICE_DATA(&rt2800usb_ops) },
  691. /* Pegatron */
  692. { USB_DEVICE(0x1d4d, 0x000c), USB_DEVICE_DATA(&rt2800usb_ops) },
  693. { USB_DEVICE(0x1d4d, 0x000e), USB_DEVICE_DATA(&rt2800usb_ops) },
  694. /* Planex */
  695. { USB_DEVICE(0x2019, 0xab25), USB_DEVICE_DATA(&rt2800usb_ops) },
  696. /* Quanta */
  697. { USB_DEVICE(0x1a32, 0x0304), USB_DEVICE_DATA(&rt2800usb_ops) },
  698. /* Ralink */
  699. { USB_DEVICE(0x148f, 0x2070), USB_DEVICE_DATA(&rt2800usb_ops) },
  700. { USB_DEVICE(0x148f, 0x3070), USB_DEVICE_DATA(&rt2800usb_ops) },
  701. { USB_DEVICE(0x148f, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
  702. { USB_DEVICE(0x148f, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
  703. /* Sitecom */
  704. { USB_DEVICE(0x0df6, 0x003e), USB_DEVICE_DATA(&rt2800usb_ops) },
  705. { USB_DEVICE(0x0df6, 0x0040), USB_DEVICE_DATA(&rt2800usb_ops) },
  706. { USB_DEVICE(0x0df6, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops) },
  707. { USB_DEVICE(0x0df6, 0x0047), USB_DEVICE_DATA(&rt2800usb_ops) },
  708. { USB_DEVICE(0x0df6, 0x0048), USB_DEVICE_DATA(&rt2800usb_ops) },
  709. /* SMC */
  710. { USB_DEVICE(0x083a, 0x7511), USB_DEVICE_DATA(&rt2800usb_ops) },
  711. { USB_DEVICE(0x083a, 0xa701), USB_DEVICE_DATA(&rt2800usb_ops) },
  712. { USB_DEVICE(0x083a, 0xa702), USB_DEVICE_DATA(&rt2800usb_ops) },
  713. { USB_DEVICE(0x083a, 0xa703), USB_DEVICE_DATA(&rt2800usb_ops) },
  714. /* Zinwell */
  715. { USB_DEVICE(0x5a57, 0x0283), USB_DEVICE_DATA(&rt2800usb_ops) },
  716. { USB_DEVICE(0x5a57, 0x5257), USB_DEVICE_DATA(&rt2800usb_ops) },
  717. #endif
  718. #ifdef CONFIG_RT2800USB_RT35XX
  719. /* Allwin */
  720. { USB_DEVICE(0x8516, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops) },
  721. /* Askey */
  722. { USB_DEVICE(0x1690, 0x0744), USB_DEVICE_DATA(&rt2800usb_ops) },
  723. /* Cisco */
  724. { USB_DEVICE(0x167b, 0x4001), USB_DEVICE_DATA(&rt2800usb_ops) },
  725. /* EnGenius */
  726. { USB_DEVICE(0x1740, 0x9801), USB_DEVICE_DATA(&rt2800usb_ops) },
  727. /* I-O DATA */
  728. { USB_DEVICE(0x04bb, 0x0944), USB_DEVICE_DATA(&rt2800usb_ops) },
  729. /* Ralink */
  730. { USB_DEVICE(0x148f, 0x3370), USB_DEVICE_DATA(&rt2800usb_ops) },
  731. { USB_DEVICE(0x148f, 0x3572), USB_DEVICE_DATA(&rt2800usb_ops) },
  732. { USB_DEVICE(0x148f, 0x8070), USB_DEVICE_DATA(&rt2800usb_ops) },
  733. /* Sitecom */
  734. { USB_DEVICE(0x0df6, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops) },
  735. { USB_DEVICE(0x0df6, 0x0050), USB_DEVICE_DATA(&rt2800usb_ops) },
  736. /* Zinwell */
  737. { USB_DEVICE(0x5a57, 0x0284), USB_DEVICE_DATA(&rt2800usb_ops) },
  738. #endif
  739. #ifdef CONFIG_RT2800USB_UNKNOWN
  740. /*
  741. * Unclear what kind of devices these are (they aren't supported by the
  742. * vendor linux driver).
  743. */
  744. /* Amigo */
  745. { USB_DEVICE(0x0e0b, 0x9031), USB_DEVICE_DATA(&rt2800usb_ops) },
  746. { USB_DEVICE(0x0e0b, 0x9041), USB_DEVICE_DATA(&rt2800usb_ops) },
  747. /* ASUS */
  748. { USB_DEVICE(0x0b05, 0x1760), USB_DEVICE_DATA(&rt2800usb_ops) },
  749. { USB_DEVICE(0x0b05, 0x1761), USB_DEVICE_DATA(&rt2800usb_ops) },
  750. { USB_DEVICE(0x0b05, 0x1790), USB_DEVICE_DATA(&rt2800usb_ops) },
  751. { USB_DEVICE(0x1761, 0x0b05), USB_DEVICE_DATA(&rt2800usb_ops) },
  752. /* AzureWave */
  753. { USB_DEVICE(0x13d3, 0x3262), USB_DEVICE_DATA(&rt2800usb_ops) },
  754. { USB_DEVICE(0x13d3, 0x3284), USB_DEVICE_DATA(&rt2800usb_ops) },
  755. { USB_DEVICE(0x13d3, 0x3322), USB_DEVICE_DATA(&rt2800usb_ops) },
  756. /* Belkin */
  757. { USB_DEVICE(0x050d, 0x825a), USB_DEVICE_DATA(&rt2800usb_ops) },
  758. /* Buffalo */
  759. { USB_DEVICE(0x0411, 0x012e), USB_DEVICE_DATA(&rt2800usb_ops) },
  760. { USB_DEVICE(0x0411, 0x0148), USB_DEVICE_DATA(&rt2800usb_ops) },
  761. { USB_DEVICE(0x0411, 0x0150), USB_DEVICE_DATA(&rt2800usb_ops) },
  762. { USB_DEVICE(0x0411, 0x015d), USB_DEVICE_DATA(&rt2800usb_ops) },
  763. /* Conceptronic */
  764. { USB_DEVICE(0x14b2, 0x3c08), USB_DEVICE_DATA(&rt2800usb_ops) },
  765. { USB_DEVICE(0x14b2, 0x3c11), USB_DEVICE_DATA(&rt2800usb_ops) },
  766. /* Corega */
  767. { USB_DEVICE(0x07aa, 0x0041), USB_DEVICE_DATA(&rt2800usb_ops) },
  768. { USB_DEVICE(0x07aa, 0x0042), USB_DEVICE_DATA(&rt2800usb_ops) },
  769. { USB_DEVICE(0x18c5, 0x0008), USB_DEVICE_DATA(&rt2800usb_ops) },
  770. /* D-Link */
  771. { USB_DEVICE(0x07d1, 0x3c0b), USB_DEVICE_DATA(&rt2800usb_ops) },
  772. { USB_DEVICE(0x07d1, 0x3c13), USB_DEVICE_DATA(&rt2800usb_ops) },
  773. { USB_DEVICE(0x07d1, 0x3c15), USB_DEVICE_DATA(&rt2800usb_ops) },
  774. { USB_DEVICE(0x07d1, 0x3c17), USB_DEVICE_DATA(&rt2800usb_ops) },
  775. /* Encore */
  776. { USB_DEVICE(0x203d, 0x14a1), USB_DEVICE_DATA(&rt2800usb_ops) },
  777. /* Gemtek */
  778. { USB_DEVICE(0x15a9, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops) },
  779. /* Gigabyte */
  780. { USB_DEVICE(0x1044, 0x800c), USB_DEVICE_DATA(&rt2800usb_ops) },
  781. /* LevelOne */
  782. { USB_DEVICE(0x1740, 0x0605), USB_DEVICE_DATA(&rt2800usb_ops) },
  783. { USB_DEVICE(0x1740, 0x0615), USB_DEVICE_DATA(&rt2800usb_ops) },
  784. /* Linksys */
  785. { USB_DEVICE(0x1737, 0x0077), USB_DEVICE_DATA(&rt2800usb_ops) },
  786. { USB_DEVICE(0x1737, 0x0078), USB_DEVICE_DATA(&rt2800usb_ops) },
  787. { USB_DEVICE(0x1737, 0x0079), USB_DEVICE_DATA(&rt2800usb_ops) },
  788. /* Motorola */
  789. { USB_DEVICE(0x100d, 0x9032), USB_DEVICE_DATA(&rt2800usb_ops) },
  790. /* Ovislink */
  791. { USB_DEVICE(0x1b75, 0x3071), USB_DEVICE_DATA(&rt2800usb_ops) },
  792. { USB_DEVICE(0x1b75, 0x3072), USB_DEVICE_DATA(&rt2800usb_ops) },
  793. /* Pegatron */
  794. { USB_DEVICE(0x05a6, 0x0101), USB_DEVICE_DATA(&rt2800usb_ops) },
  795. { USB_DEVICE(0x1d4d, 0x0002), USB_DEVICE_DATA(&rt2800usb_ops) },
  796. { USB_DEVICE(0x1d4d, 0x0010), USB_DEVICE_DATA(&rt2800usb_ops) },
  797. { USB_DEVICE(0x1d4d, 0x0011), USB_DEVICE_DATA(&rt2800usb_ops) },
  798. /* Planex */
  799. { USB_DEVICE(0x2019, 0xab24), USB_DEVICE_DATA(&rt2800usb_ops) },
  800. /* Qcom */
  801. { USB_DEVICE(0x18e8, 0x6259), USB_DEVICE_DATA(&rt2800usb_ops) },
  802. /* SMC */
  803. { USB_DEVICE(0x083a, 0xa512), USB_DEVICE_DATA(&rt2800usb_ops) },
  804. { USB_DEVICE(0x083a, 0xc522), USB_DEVICE_DATA(&rt2800usb_ops) },
  805. { USB_DEVICE(0x083a, 0xd522), USB_DEVICE_DATA(&rt2800usb_ops) },
  806. { USB_DEVICE(0x083a, 0xf511), USB_DEVICE_DATA(&rt2800usb_ops) },
  807. /* Sweex */
  808. { USB_DEVICE(0x177f, 0x0153), USB_DEVICE_DATA(&rt2800usb_ops) },
  809. { USB_DEVICE(0x177f, 0x0313), USB_DEVICE_DATA(&rt2800usb_ops) },
  810. /* Zyxel */
  811. { USB_DEVICE(0x0586, 0x341a), USB_DEVICE_DATA(&rt2800usb_ops) },
  812. #endif
  813. { 0, }
  814. };
  815. MODULE_AUTHOR(DRV_PROJECT);
  816. MODULE_VERSION(DRV_VERSION);
  817. MODULE_DESCRIPTION("Ralink RT2800 USB Wireless LAN driver.");
  818. MODULE_SUPPORTED_DEVICE("Ralink RT2870 USB chipset based cards");
  819. MODULE_DEVICE_TABLE(usb, rt2800usb_device_table);
  820. MODULE_FIRMWARE(FIRMWARE_RT2870);
  821. MODULE_LICENSE("GPL");
  822. static struct usb_driver rt2800usb_driver = {
  823. .name = KBUILD_MODNAME,
  824. .id_table = rt2800usb_device_table,
  825. .probe = rt2x00usb_probe,
  826. .disconnect = rt2x00usb_disconnect,
  827. .suspend = rt2x00usb_suspend,
  828. .resume = rt2x00usb_resume,
  829. };
  830. static int __init rt2800usb_init(void)
  831. {
  832. return usb_register(&rt2800usb_driver);
  833. }
  834. static void __exit rt2800usb_exit(void)
  835. {
  836. usb_deregister(&rt2800usb_driver);
  837. }
  838. module_init(rt2800usb_init);
  839. module_exit(rt2800usb_exit);