rt2800usb.c 32 KB

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