rt2800usb.c 34 KB

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