rt61pci.c 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850
  1. /*
  2. Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
  3. <http://rt2x00.serialmonkey.com>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the
  14. Free Software Foundation, Inc.,
  15. 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  16. */
  17. /*
  18. Module: rt61pci
  19. Abstract: rt61pci device specific routines.
  20. Supported chipsets: RT2561, RT2561s, RT2661.
  21. */
  22. #include <linux/crc-itu-t.h>
  23. #include <linux/delay.h>
  24. #include <linux/etherdevice.h>
  25. #include <linux/init.h>
  26. #include <linux/kernel.h>
  27. #include <linux/module.h>
  28. #include <linux/pci.h>
  29. #include <linux/eeprom_93cx6.h>
  30. #include "rt2x00.h"
  31. #include "rt2x00pci.h"
  32. #include "rt61pci.h"
  33. /*
  34. * Allow hardware encryption to be disabled.
  35. */
  36. static int modparam_nohwcrypt = 0;
  37. module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
  38. MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
  39. /*
  40. * Register access.
  41. * BBP and RF register require indirect register access,
  42. * and use the CSR registers PHY_CSR3 and PHY_CSR4 to achieve this.
  43. * These indirect registers work with busy bits,
  44. * and we will try maximal REGISTER_BUSY_COUNT times to access
  45. * the register while taking a REGISTER_BUSY_DELAY us delay
  46. * between each attempt. When the busy bit is still set at that time,
  47. * the access attempt is considered to have failed,
  48. * and we will print an error.
  49. */
  50. #define WAIT_FOR_BBP(__dev, __reg) \
  51. rt2x00pci_regbusy_read((__dev), PHY_CSR3, PHY_CSR3_BUSY, (__reg))
  52. #define WAIT_FOR_RF(__dev, __reg) \
  53. rt2x00pci_regbusy_read((__dev), PHY_CSR4, PHY_CSR4_BUSY, (__reg))
  54. #define WAIT_FOR_MCU(__dev, __reg) \
  55. rt2x00pci_regbusy_read((__dev), H2M_MAILBOX_CSR, \
  56. H2M_MAILBOX_CSR_OWNER, (__reg))
  57. static void rt61pci_bbp_write(struct rt2x00_dev *rt2x00dev,
  58. const unsigned int word, const u8 value)
  59. {
  60. u32 reg;
  61. mutex_lock(&rt2x00dev->csr_mutex);
  62. /*
  63. * Wait until the BBP becomes available, afterwards we
  64. * can safely write the new data into the register.
  65. */
  66. if (WAIT_FOR_BBP(rt2x00dev, &reg)) {
  67. reg = 0;
  68. rt2x00_set_field32(&reg, PHY_CSR3_VALUE, value);
  69. rt2x00_set_field32(&reg, PHY_CSR3_REGNUM, word);
  70. rt2x00_set_field32(&reg, PHY_CSR3_BUSY, 1);
  71. rt2x00_set_field32(&reg, PHY_CSR3_READ_CONTROL, 0);
  72. rt2x00pci_register_write(rt2x00dev, PHY_CSR3, reg);
  73. }
  74. mutex_unlock(&rt2x00dev->csr_mutex);
  75. }
  76. static void rt61pci_bbp_read(struct rt2x00_dev *rt2x00dev,
  77. const unsigned int word, u8 *value)
  78. {
  79. u32 reg;
  80. mutex_lock(&rt2x00dev->csr_mutex);
  81. /*
  82. * Wait until the BBP becomes available, afterwards we
  83. * can safely write the read request into the register.
  84. * After the data has been written, we wait until hardware
  85. * returns the correct value, if at any time the register
  86. * doesn't become available in time, reg will be 0xffffffff
  87. * which means we return 0xff to the caller.
  88. */
  89. if (WAIT_FOR_BBP(rt2x00dev, &reg)) {
  90. reg = 0;
  91. rt2x00_set_field32(&reg, PHY_CSR3_REGNUM, word);
  92. rt2x00_set_field32(&reg, PHY_CSR3_BUSY, 1);
  93. rt2x00_set_field32(&reg, PHY_CSR3_READ_CONTROL, 1);
  94. rt2x00pci_register_write(rt2x00dev, PHY_CSR3, reg);
  95. WAIT_FOR_BBP(rt2x00dev, &reg);
  96. }
  97. *value = rt2x00_get_field32(reg, PHY_CSR3_VALUE);
  98. mutex_unlock(&rt2x00dev->csr_mutex);
  99. }
  100. static void rt61pci_rf_write(struct rt2x00_dev *rt2x00dev,
  101. const unsigned int word, const u32 value)
  102. {
  103. u32 reg;
  104. mutex_lock(&rt2x00dev->csr_mutex);
  105. /*
  106. * Wait until the RF becomes available, afterwards we
  107. * can safely write the new data into the register.
  108. */
  109. if (WAIT_FOR_RF(rt2x00dev, &reg)) {
  110. reg = 0;
  111. rt2x00_set_field32(&reg, PHY_CSR4_VALUE, value);
  112. rt2x00_set_field32(&reg, PHY_CSR4_NUMBER_OF_BITS, 21);
  113. rt2x00_set_field32(&reg, PHY_CSR4_IF_SELECT, 0);
  114. rt2x00_set_field32(&reg, PHY_CSR4_BUSY, 1);
  115. rt2x00pci_register_write(rt2x00dev, PHY_CSR4, reg);
  116. rt2x00_rf_write(rt2x00dev, word, value);
  117. }
  118. mutex_unlock(&rt2x00dev->csr_mutex);
  119. }
  120. static void rt61pci_mcu_request(struct rt2x00_dev *rt2x00dev,
  121. const u8 command, const u8 token,
  122. const u8 arg0, const u8 arg1)
  123. {
  124. u32 reg;
  125. mutex_lock(&rt2x00dev->csr_mutex);
  126. /*
  127. * Wait until the MCU becomes available, afterwards we
  128. * can safely write the new data into the register.
  129. */
  130. if (WAIT_FOR_MCU(rt2x00dev, &reg)) {
  131. rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_OWNER, 1);
  132. rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_CMD_TOKEN, token);
  133. rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_ARG0, arg0);
  134. rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_ARG1, arg1);
  135. rt2x00pci_register_write(rt2x00dev, H2M_MAILBOX_CSR, reg);
  136. rt2x00pci_register_read(rt2x00dev, HOST_CMD_CSR, &reg);
  137. rt2x00_set_field32(&reg, HOST_CMD_CSR_HOST_COMMAND, command);
  138. rt2x00_set_field32(&reg, HOST_CMD_CSR_INTERRUPT_MCU, 1);
  139. rt2x00pci_register_write(rt2x00dev, HOST_CMD_CSR, reg);
  140. }
  141. mutex_unlock(&rt2x00dev->csr_mutex);
  142. }
  143. static void rt61pci_eepromregister_read(struct eeprom_93cx6 *eeprom)
  144. {
  145. struct rt2x00_dev *rt2x00dev = eeprom->data;
  146. u32 reg;
  147. rt2x00pci_register_read(rt2x00dev, E2PROM_CSR, &reg);
  148. eeprom->reg_data_in = !!rt2x00_get_field32(reg, E2PROM_CSR_DATA_IN);
  149. eeprom->reg_data_out = !!rt2x00_get_field32(reg, E2PROM_CSR_DATA_OUT);
  150. eeprom->reg_data_clock =
  151. !!rt2x00_get_field32(reg, E2PROM_CSR_DATA_CLOCK);
  152. eeprom->reg_chip_select =
  153. !!rt2x00_get_field32(reg, E2PROM_CSR_CHIP_SELECT);
  154. }
  155. static void rt61pci_eepromregister_write(struct eeprom_93cx6 *eeprom)
  156. {
  157. struct rt2x00_dev *rt2x00dev = eeprom->data;
  158. u32 reg = 0;
  159. rt2x00_set_field32(&reg, E2PROM_CSR_DATA_IN, !!eeprom->reg_data_in);
  160. rt2x00_set_field32(&reg, E2PROM_CSR_DATA_OUT, !!eeprom->reg_data_out);
  161. rt2x00_set_field32(&reg, E2PROM_CSR_DATA_CLOCK,
  162. !!eeprom->reg_data_clock);
  163. rt2x00_set_field32(&reg, E2PROM_CSR_CHIP_SELECT,
  164. !!eeprom->reg_chip_select);
  165. rt2x00pci_register_write(rt2x00dev, E2PROM_CSR, reg);
  166. }
  167. #ifdef CONFIG_RT2X00_LIB_DEBUGFS
  168. static const struct rt2x00debug rt61pci_rt2x00debug = {
  169. .owner = THIS_MODULE,
  170. .csr = {
  171. .read = rt2x00pci_register_read,
  172. .write = rt2x00pci_register_write,
  173. .flags = RT2X00DEBUGFS_OFFSET,
  174. .word_base = CSR_REG_BASE,
  175. .word_size = sizeof(u32),
  176. .word_count = CSR_REG_SIZE / sizeof(u32),
  177. },
  178. .eeprom = {
  179. .read = rt2x00_eeprom_read,
  180. .write = rt2x00_eeprom_write,
  181. .word_base = EEPROM_BASE,
  182. .word_size = sizeof(u16),
  183. .word_count = EEPROM_SIZE / sizeof(u16),
  184. },
  185. .bbp = {
  186. .read = rt61pci_bbp_read,
  187. .write = rt61pci_bbp_write,
  188. .word_base = BBP_BASE,
  189. .word_size = sizeof(u8),
  190. .word_count = BBP_SIZE / sizeof(u8),
  191. },
  192. .rf = {
  193. .read = rt2x00_rf_read,
  194. .write = rt61pci_rf_write,
  195. .word_base = RF_BASE,
  196. .word_size = sizeof(u32),
  197. .word_count = RF_SIZE / sizeof(u32),
  198. },
  199. };
  200. #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
  201. static int rt61pci_rfkill_poll(struct rt2x00_dev *rt2x00dev)
  202. {
  203. u32 reg;
  204. rt2x00pci_register_read(rt2x00dev, MAC_CSR13, &reg);
  205. return rt2x00_get_field32(reg, MAC_CSR13_BIT5);
  206. }
  207. #ifdef CONFIG_RT2X00_LIB_LEDS
  208. static void rt61pci_brightness_set(struct led_classdev *led_cdev,
  209. enum led_brightness brightness)
  210. {
  211. struct rt2x00_led *led =
  212. container_of(led_cdev, struct rt2x00_led, led_dev);
  213. unsigned int enabled = brightness != LED_OFF;
  214. unsigned int a_mode =
  215. (enabled && led->rt2x00dev->curr_band == IEEE80211_BAND_5GHZ);
  216. unsigned int bg_mode =
  217. (enabled && led->rt2x00dev->curr_band == IEEE80211_BAND_2GHZ);
  218. if (led->type == LED_TYPE_RADIO) {
  219. rt2x00_set_field16(&led->rt2x00dev->led_mcu_reg,
  220. MCU_LEDCS_RADIO_STATUS, enabled);
  221. rt61pci_mcu_request(led->rt2x00dev, MCU_LED, 0xff,
  222. (led->rt2x00dev->led_mcu_reg & 0xff),
  223. ((led->rt2x00dev->led_mcu_reg >> 8)));
  224. } else if (led->type == LED_TYPE_ASSOC) {
  225. rt2x00_set_field16(&led->rt2x00dev->led_mcu_reg,
  226. MCU_LEDCS_LINK_BG_STATUS, bg_mode);
  227. rt2x00_set_field16(&led->rt2x00dev->led_mcu_reg,
  228. MCU_LEDCS_LINK_A_STATUS, a_mode);
  229. rt61pci_mcu_request(led->rt2x00dev, MCU_LED, 0xff,
  230. (led->rt2x00dev->led_mcu_reg & 0xff),
  231. ((led->rt2x00dev->led_mcu_reg >> 8)));
  232. } else if (led->type == LED_TYPE_QUALITY) {
  233. /*
  234. * The brightness is divided into 6 levels (0 - 5),
  235. * this means we need to convert the brightness
  236. * argument into the matching level within that range.
  237. */
  238. rt61pci_mcu_request(led->rt2x00dev, MCU_LED_STRENGTH, 0xff,
  239. brightness / (LED_FULL / 6), 0);
  240. }
  241. }
  242. static int rt61pci_blink_set(struct led_classdev *led_cdev,
  243. unsigned long *delay_on,
  244. unsigned long *delay_off)
  245. {
  246. struct rt2x00_led *led =
  247. container_of(led_cdev, struct rt2x00_led, led_dev);
  248. u32 reg;
  249. rt2x00pci_register_read(led->rt2x00dev, MAC_CSR14, &reg);
  250. rt2x00_set_field32(&reg, MAC_CSR14_ON_PERIOD, *delay_on);
  251. rt2x00_set_field32(&reg, MAC_CSR14_OFF_PERIOD, *delay_off);
  252. rt2x00pci_register_write(led->rt2x00dev, MAC_CSR14, reg);
  253. return 0;
  254. }
  255. static void rt61pci_init_led(struct rt2x00_dev *rt2x00dev,
  256. struct rt2x00_led *led,
  257. enum led_type type)
  258. {
  259. led->rt2x00dev = rt2x00dev;
  260. led->type = type;
  261. led->led_dev.brightness_set = rt61pci_brightness_set;
  262. led->led_dev.blink_set = rt61pci_blink_set;
  263. led->flags = LED_INITIALIZED;
  264. }
  265. #endif /* CONFIG_RT2X00_LIB_LEDS */
  266. /*
  267. * Configuration handlers.
  268. */
  269. static int rt61pci_config_shared_key(struct rt2x00_dev *rt2x00dev,
  270. struct rt2x00lib_crypto *crypto,
  271. struct ieee80211_key_conf *key)
  272. {
  273. struct hw_key_entry key_entry;
  274. struct rt2x00_field32 field;
  275. u32 mask;
  276. u32 reg;
  277. if (crypto->cmd == SET_KEY) {
  278. /*
  279. * rt2x00lib can't determine the correct free
  280. * key_idx for shared keys. We have 1 register
  281. * with key valid bits. The goal is simple, read
  282. * the register, if that is full we have no slots
  283. * left.
  284. * Note that each BSS is allowed to have up to 4
  285. * shared keys, so put a mask over the allowed
  286. * entries.
  287. */
  288. mask = (0xf << crypto->bssidx);
  289. rt2x00pci_register_read(rt2x00dev, SEC_CSR0, &reg);
  290. reg &= mask;
  291. if (reg && reg == mask)
  292. return -ENOSPC;
  293. key->hw_key_idx += reg ? ffz(reg) : 0;
  294. /*
  295. * Upload key to hardware
  296. */
  297. memcpy(key_entry.key, crypto->key,
  298. sizeof(key_entry.key));
  299. memcpy(key_entry.tx_mic, crypto->tx_mic,
  300. sizeof(key_entry.tx_mic));
  301. memcpy(key_entry.rx_mic, crypto->rx_mic,
  302. sizeof(key_entry.rx_mic));
  303. reg = SHARED_KEY_ENTRY(key->hw_key_idx);
  304. rt2x00pci_register_multiwrite(rt2x00dev, reg,
  305. &key_entry, sizeof(key_entry));
  306. /*
  307. * The cipher types are stored over 2 registers.
  308. * bssidx 0 and 1 keys are stored in SEC_CSR1 and
  309. * bssidx 1 and 2 keys are stored in SEC_CSR5.
  310. * Using the correct defines correctly will cause overhead,
  311. * so just calculate the correct offset.
  312. */
  313. if (key->hw_key_idx < 8) {
  314. field.bit_offset = (3 * key->hw_key_idx);
  315. field.bit_mask = 0x7 << field.bit_offset;
  316. rt2x00pci_register_read(rt2x00dev, SEC_CSR1, &reg);
  317. rt2x00_set_field32(&reg, field, crypto->cipher);
  318. rt2x00pci_register_write(rt2x00dev, SEC_CSR1, reg);
  319. } else {
  320. field.bit_offset = (3 * (key->hw_key_idx - 8));
  321. field.bit_mask = 0x7 << field.bit_offset;
  322. rt2x00pci_register_read(rt2x00dev, SEC_CSR5, &reg);
  323. rt2x00_set_field32(&reg, field, crypto->cipher);
  324. rt2x00pci_register_write(rt2x00dev, SEC_CSR5, reg);
  325. }
  326. /*
  327. * The driver does not support the IV/EIV generation
  328. * in hardware. However it doesn't support the IV/EIV
  329. * inside the ieee80211 frame either, but requires it
  330. * to be provided separately for the descriptor.
  331. * rt2x00lib will cut the IV/EIV data out of all frames
  332. * given to us by mac80211, but we must tell mac80211
  333. * to generate the IV/EIV data.
  334. */
  335. key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
  336. }
  337. /*
  338. * SEC_CSR0 contains only single-bit fields to indicate
  339. * a particular key is valid. Because using the FIELD32()
  340. * defines directly will cause a lot of overhead, we use
  341. * a calculation to determine the correct bit directly.
  342. */
  343. mask = 1 << key->hw_key_idx;
  344. rt2x00pci_register_read(rt2x00dev, SEC_CSR0, &reg);
  345. if (crypto->cmd == SET_KEY)
  346. reg |= mask;
  347. else if (crypto->cmd == DISABLE_KEY)
  348. reg &= ~mask;
  349. rt2x00pci_register_write(rt2x00dev, SEC_CSR0, reg);
  350. return 0;
  351. }
  352. static int rt61pci_config_pairwise_key(struct rt2x00_dev *rt2x00dev,
  353. struct rt2x00lib_crypto *crypto,
  354. struct ieee80211_key_conf *key)
  355. {
  356. struct hw_pairwise_ta_entry addr_entry;
  357. struct hw_key_entry key_entry;
  358. u32 mask;
  359. u32 reg;
  360. if (crypto->cmd == SET_KEY) {
  361. /*
  362. * rt2x00lib can't determine the correct free
  363. * key_idx for pairwise keys. We have 2 registers
  364. * with key valid bits. The goal is simple: read
  365. * the first register. If that is full, move to
  366. * the next register.
  367. * When both registers are full, we drop the key.
  368. * Otherwise, we use the first invalid entry.
  369. */
  370. rt2x00pci_register_read(rt2x00dev, SEC_CSR2, &reg);
  371. if (reg && reg == ~0) {
  372. key->hw_key_idx = 32;
  373. rt2x00pci_register_read(rt2x00dev, SEC_CSR3, &reg);
  374. if (reg && reg == ~0)
  375. return -ENOSPC;
  376. }
  377. key->hw_key_idx += reg ? ffz(reg) : 0;
  378. /*
  379. * Upload key to hardware
  380. */
  381. memcpy(key_entry.key, crypto->key,
  382. sizeof(key_entry.key));
  383. memcpy(key_entry.tx_mic, crypto->tx_mic,
  384. sizeof(key_entry.tx_mic));
  385. memcpy(key_entry.rx_mic, crypto->rx_mic,
  386. sizeof(key_entry.rx_mic));
  387. memset(&addr_entry, 0, sizeof(addr_entry));
  388. memcpy(&addr_entry, crypto->address, ETH_ALEN);
  389. addr_entry.cipher = crypto->cipher;
  390. reg = PAIRWISE_KEY_ENTRY(key->hw_key_idx);
  391. rt2x00pci_register_multiwrite(rt2x00dev, reg,
  392. &key_entry, sizeof(key_entry));
  393. reg = PAIRWISE_TA_ENTRY(key->hw_key_idx);
  394. rt2x00pci_register_multiwrite(rt2x00dev, reg,
  395. &addr_entry, sizeof(addr_entry));
  396. /*
  397. * Enable pairwise lookup table for given BSS idx.
  398. * Without this, received frames will not be decrypted
  399. * by the hardware.
  400. */
  401. rt2x00pci_register_read(rt2x00dev, SEC_CSR4, &reg);
  402. reg |= (1 << crypto->bssidx);
  403. rt2x00pci_register_write(rt2x00dev, SEC_CSR4, reg);
  404. /*
  405. * The driver does not support the IV/EIV generation
  406. * in hardware. However it doesn't support the IV/EIV
  407. * inside the ieee80211 frame either, but requires it
  408. * to be provided seperately for the descriptor.
  409. * rt2x00lib will cut the IV/EIV data out of all frames
  410. * given to us by mac80211, but we must tell mac80211
  411. * to generate the IV/EIV data.
  412. */
  413. key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
  414. }
  415. /*
  416. * SEC_CSR2 and SEC_CSR3 contain only single-bit fields to indicate
  417. * a particular key is valid. Because using the FIELD32()
  418. * defines directly will cause a lot of overhead, we use
  419. * a calculation to determine the correct bit directly.
  420. */
  421. if (key->hw_key_idx < 32) {
  422. mask = 1 << key->hw_key_idx;
  423. rt2x00pci_register_read(rt2x00dev, SEC_CSR2, &reg);
  424. if (crypto->cmd == SET_KEY)
  425. reg |= mask;
  426. else if (crypto->cmd == DISABLE_KEY)
  427. reg &= ~mask;
  428. rt2x00pci_register_write(rt2x00dev, SEC_CSR2, reg);
  429. } else {
  430. mask = 1 << (key->hw_key_idx - 32);
  431. rt2x00pci_register_read(rt2x00dev, SEC_CSR3, &reg);
  432. if (crypto->cmd == SET_KEY)
  433. reg |= mask;
  434. else if (crypto->cmd == DISABLE_KEY)
  435. reg &= ~mask;
  436. rt2x00pci_register_write(rt2x00dev, SEC_CSR3, reg);
  437. }
  438. return 0;
  439. }
  440. static void rt61pci_config_filter(struct rt2x00_dev *rt2x00dev,
  441. const unsigned int filter_flags)
  442. {
  443. u32 reg;
  444. /*
  445. * Start configuration steps.
  446. * Note that the version error will always be dropped
  447. * and broadcast frames will always be accepted since
  448. * there is no filter for it at this time.
  449. */
  450. rt2x00pci_register_read(rt2x00dev, TXRX_CSR0, &reg);
  451. rt2x00_set_field32(&reg, TXRX_CSR0_DROP_CRC,
  452. !(filter_flags & FIF_FCSFAIL));
  453. rt2x00_set_field32(&reg, TXRX_CSR0_DROP_PHYSICAL,
  454. !(filter_flags & FIF_PLCPFAIL));
  455. rt2x00_set_field32(&reg, TXRX_CSR0_DROP_CONTROL,
  456. !(filter_flags & (FIF_CONTROL | FIF_PSPOLL)));
  457. rt2x00_set_field32(&reg, TXRX_CSR0_DROP_NOT_TO_ME,
  458. !(filter_flags & FIF_PROMISC_IN_BSS));
  459. rt2x00_set_field32(&reg, TXRX_CSR0_DROP_TO_DS,
  460. !(filter_flags & FIF_PROMISC_IN_BSS) &&
  461. !rt2x00dev->intf_ap_count);
  462. rt2x00_set_field32(&reg, TXRX_CSR0_DROP_VERSION_ERROR, 1);
  463. rt2x00_set_field32(&reg, TXRX_CSR0_DROP_MULTICAST,
  464. !(filter_flags & FIF_ALLMULTI));
  465. rt2x00_set_field32(&reg, TXRX_CSR0_DROP_BROADCAST, 0);
  466. rt2x00_set_field32(&reg, TXRX_CSR0_DROP_ACK_CTS,
  467. !(filter_flags & FIF_CONTROL));
  468. rt2x00pci_register_write(rt2x00dev, TXRX_CSR0, reg);
  469. }
  470. static void rt61pci_config_intf(struct rt2x00_dev *rt2x00dev,
  471. struct rt2x00_intf *intf,
  472. struct rt2x00intf_conf *conf,
  473. const unsigned int flags)
  474. {
  475. unsigned int beacon_base;
  476. u32 reg;
  477. if (flags & CONFIG_UPDATE_TYPE) {
  478. /*
  479. * Clear current synchronisation setup.
  480. * For the Beacon base registers, we only need to clear
  481. * the first byte since that byte contains the VALID and OWNER
  482. * bits which (when set to 0) will invalidate the entire beacon.
  483. */
  484. beacon_base = HW_BEACON_OFFSET(intf->beacon->entry_idx);
  485. rt2x00pci_register_write(rt2x00dev, beacon_base, 0);
  486. /*
  487. * Enable synchronisation.
  488. */
  489. rt2x00pci_register_read(rt2x00dev, TXRX_CSR9, &reg);
  490. rt2x00_set_field32(&reg, TXRX_CSR9_TSF_TICKING, 1);
  491. rt2x00_set_field32(&reg, TXRX_CSR9_TSF_SYNC, conf->sync);
  492. rt2x00_set_field32(&reg, TXRX_CSR9_TBTT_ENABLE, 1);
  493. rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, reg);
  494. }
  495. if (flags & CONFIG_UPDATE_MAC) {
  496. reg = le32_to_cpu(conf->mac[1]);
  497. rt2x00_set_field32(&reg, MAC_CSR3_UNICAST_TO_ME_MASK, 0xff);
  498. conf->mac[1] = cpu_to_le32(reg);
  499. rt2x00pci_register_multiwrite(rt2x00dev, MAC_CSR2,
  500. conf->mac, sizeof(conf->mac));
  501. }
  502. if (flags & CONFIG_UPDATE_BSSID) {
  503. reg = le32_to_cpu(conf->bssid[1]);
  504. rt2x00_set_field32(&reg, MAC_CSR5_BSS_ID_MASK, 3);
  505. conf->bssid[1] = cpu_to_le32(reg);
  506. rt2x00pci_register_multiwrite(rt2x00dev, MAC_CSR4,
  507. conf->bssid, sizeof(conf->bssid));
  508. }
  509. }
  510. static void rt61pci_config_erp(struct rt2x00_dev *rt2x00dev,
  511. struct rt2x00lib_erp *erp)
  512. {
  513. u32 reg;
  514. rt2x00pci_register_read(rt2x00dev, TXRX_CSR0, &reg);
  515. rt2x00_set_field32(&reg, TXRX_CSR0_RX_ACK_TIMEOUT, 0x32);
  516. rt2x00_set_field32(&reg, TXRX_CSR0_TSF_OFFSET, IEEE80211_HEADER);
  517. rt2x00pci_register_write(rt2x00dev, TXRX_CSR0, reg);
  518. rt2x00pci_register_read(rt2x00dev, TXRX_CSR4, &reg);
  519. rt2x00_set_field32(&reg, TXRX_CSR4_AUTORESPOND_ENABLE, 1);
  520. rt2x00_set_field32(&reg, TXRX_CSR4_AUTORESPOND_PREAMBLE,
  521. !!erp->short_preamble);
  522. rt2x00pci_register_write(rt2x00dev, TXRX_CSR4, reg);
  523. rt2x00pci_register_write(rt2x00dev, TXRX_CSR5, erp->basic_rates);
  524. rt2x00pci_register_read(rt2x00dev, TXRX_CSR9, &reg);
  525. rt2x00_set_field32(&reg, TXRX_CSR9_BEACON_INTERVAL,
  526. erp->beacon_int * 16);
  527. rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, reg);
  528. rt2x00pci_register_read(rt2x00dev, MAC_CSR9, &reg);
  529. rt2x00_set_field32(&reg, MAC_CSR9_SLOT_TIME, erp->slot_time);
  530. rt2x00pci_register_write(rt2x00dev, MAC_CSR9, reg);
  531. rt2x00pci_register_read(rt2x00dev, MAC_CSR8, &reg);
  532. rt2x00_set_field32(&reg, MAC_CSR8_SIFS, erp->sifs);
  533. rt2x00_set_field32(&reg, MAC_CSR8_SIFS_AFTER_RX_OFDM, 3);
  534. rt2x00_set_field32(&reg, MAC_CSR8_EIFS, erp->eifs);
  535. rt2x00pci_register_write(rt2x00dev, MAC_CSR8, reg);
  536. }
  537. static void rt61pci_config_antenna_5x(struct rt2x00_dev *rt2x00dev,
  538. struct antenna_setup *ant)
  539. {
  540. u8 r3;
  541. u8 r4;
  542. u8 r77;
  543. rt61pci_bbp_read(rt2x00dev, 3, &r3);
  544. rt61pci_bbp_read(rt2x00dev, 4, &r4);
  545. rt61pci_bbp_read(rt2x00dev, 77, &r77);
  546. rt2x00_set_field8(&r3, BBP_R3_SMART_MODE, rt2x00_rf(rt2x00dev, RF5325));
  547. /*
  548. * Configure the RX antenna.
  549. */
  550. switch (ant->rx) {
  551. case ANTENNA_HW_DIVERSITY:
  552. rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 2);
  553. rt2x00_set_field8(&r4, BBP_R4_RX_FRAME_END,
  554. (rt2x00dev->curr_band != IEEE80211_BAND_5GHZ));
  555. break;
  556. case ANTENNA_A:
  557. rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
  558. rt2x00_set_field8(&r4, BBP_R4_RX_FRAME_END, 0);
  559. if (rt2x00dev->curr_band == IEEE80211_BAND_5GHZ)
  560. rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 0);
  561. else
  562. rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 3);
  563. break;
  564. case ANTENNA_B:
  565. default:
  566. rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
  567. rt2x00_set_field8(&r4, BBP_R4_RX_FRAME_END, 0);
  568. if (rt2x00dev->curr_band == IEEE80211_BAND_5GHZ)
  569. rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 3);
  570. else
  571. rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 0);
  572. break;
  573. }
  574. rt61pci_bbp_write(rt2x00dev, 77, r77);
  575. rt61pci_bbp_write(rt2x00dev, 3, r3);
  576. rt61pci_bbp_write(rt2x00dev, 4, r4);
  577. }
  578. static void rt61pci_config_antenna_2x(struct rt2x00_dev *rt2x00dev,
  579. struct antenna_setup *ant)
  580. {
  581. u8 r3;
  582. u8 r4;
  583. u8 r77;
  584. rt61pci_bbp_read(rt2x00dev, 3, &r3);
  585. rt61pci_bbp_read(rt2x00dev, 4, &r4);
  586. rt61pci_bbp_read(rt2x00dev, 77, &r77);
  587. rt2x00_set_field8(&r3, BBP_R3_SMART_MODE, rt2x00_rf(rt2x00dev, RF2529));
  588. rt2x00_set_field8(&r4, BBP_R4_RX_FRAME_END,
  589. !test_bit(CONFIG_FRAME_TYPE, &rt2x00dev->flags));
  590. /*
  591. * Configure the RX antenna.
  592. */
  593. switch (ant->rx) {
  594. case ANTENNA_HW_DIVERSITY:
  595. rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 2);
  596. break;
  597. case ANTENNA_A:
  598. rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
  599. rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 3);
  600. break;
  601. case ANTENNA_B:
  602. default:
  603. rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
  604. rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 0);
  605. break;
  606. }
  607. rt61pci_bbp_write(rt2x00dev, 77, r77);
  608. rt61pci_bbp_write(rt2x00dev, 3, r3);
  609. rt61pci_bbp_write(rt2x00dev, 4, r4);
  610. }
  611. static void rt61pci_config_antenna_2529_rx(struct rt2x00_dev *rt2x00dev,
  612. const int p1, const int p2)
  613. {
  614. u32 reg;
  615. rt2x00pci_register_read(rt2x00dev, MAC_CSR13, &reg);
  616. rt2x00_set_field32(&reg, MAC_CSR13_BIT4, p1);
  617. rt2x00_set_field32(&reg, MAC_CSR13_BIT12, 0);
  618. rt2x00_set_field32(&reg, MAC_CSR13_BIT3, !p2);
  619. rt2x00_set_field32(&reg, MAC_CSR13_BIT11, 0);
  620. rt2x00pci_register_write(rt2x00dev, MAC_CSR13, reg);
  621. }
  622. static void rt61pci_config_antenna_2529(struct rt2x00_dev *rt2x00dev,
  623. struct antenna_setup *ant)
  624. {
  625. u8 r3;
  626. u8 r4;
  627. u8 r77;
  628. rt61pci_bbp_read(rt2x00dev, 3, &r3);
  629. rt61pci_bbp_read(rt2x00dev, 4, &r4);
  630. rt61pci_bbp_read(rt2x00dev, 77, &r77);
  631. /*
  632. * Configure the RX antenna.
  633. */
  634. switch (ant->rx) {
  635. case ANTENNA_A:
  636. rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
  637. rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 0);
  638. rt61pci_config_antenna_2529_rx(rt2x00dev, 0, 0);
  639. break;
  640. case ANTENNA_HW_DIVERSITY:
  641. /*
  642. * FIXME: Antenna selection for the rf 2529 is very confusing
  643. * in the legacy driver. Just default to antenna B until the
  644. * legacy code can be properly translated into rt2x00 code.
  645. */
  646. case ANTENNA_B:
  647. default:
  648. rt2x00_set_field8(&r4, BBP_R4_RX_ANTENNA_CONTROL, 1);
  649. rt2x00_set_field8(&r77, BBP_R77_RX_ANTENNA, 3);
  650. rt61pci_config_antenna_2529_rx(rt2x00dev, 1, 1);
  651. break;
  652. }
  653. rt61pci_bbp_write(rt2x00dev, 77, r77);
  654. rt61pci_bbp_write(rt2x00dev, 3, r3);
  655. rt61pci_bbp_write(rt2x00dev, 4, r4);
  656. }
  657. struct antenna_sel {
  658. u8 word;
  659. /*
  660. * value[0] -> non-LNA
  661. * value[1] -> LNA
  662. */
  663. u8 value[2];
  664. };
  665. static const struct antenna_sel antenna_sel_a[] = {
  666. { 96, { 0x58, 0x78 } },
  667. { 104, { 0x38, 0x48 } },
  668. { 75, { 0xfe, 0x80 } },
  669. { 86, { 0xfe, 0x80 } },
  670. { 88, { 0xfe, 0x80 } },
  671. { 35, { 0x60, 0x60 } },
  672. { 97, { 0x58, 0x58 } },
  673. { 98, { 0x58, 0x58 } },
  674. };
  675. static const struct antenna_sel antenna_sel_bg[] = {
  676. { 96, { 0x48, 0x68 } },
  677. { 104, { 0x2c, 0x3c } },
  678. { 75, { 0xfe, 0x80 } },
  679. { 86, { 0xfe, 0x80 } },
  680. { 88, { 0xfe, 0x80 } },
  681. { 35, { 0x50, 0x50 } },
  682. { 97, { 0x48, 0x48 } },
  683. { 98, { 0x48, 0x48 } },
  684. };
  685. static void rt61pci_config_ant(struct rt2x00_dev *rt2x00dev,
  686. struct antenna_setup *ant)
  687. {
  688. const struct antenna_sel *sel;
  689. unsigned int lna;
  690. unsigned int i;
  691. u32 reg;
  692. /*
  693. * We should never come here because rt2x00lib is supposed
  694. * to catch this and send us the correct antenna explicitely.
  695. */
  696. BUG_ON(ant->rx == ANTENNA_SW_DIVERSITY ||
  697. ant->tx == ANTENNA_SW_DIVERSITY);
  698. if (rt2x00dev->curr_band == IEEE80211_BAND_5GHZ) {
  699. sel = antenna_sel_a;
  700. lna = test_bit(CONFIG_EXTERNAL_LNA_A, &rt2x00dev->flags);
  701. } else {
  702. sel = antenna_sel_bg;
  703. lna = test_bit(CONFIG_EXTERNAL_LNA_BG, &rt2x00dev->flags);
  704. }
  705. for (i = 0; i < ARRAY_SIZE(antenna_sel_a); i++)
  706. rt61pci_bbp_write(rt2x00dev, sel[i].word, sel[i].value[lna]);
  707. rt2x00pci_register_read(rt2x00dev, PHY_CSR0, &reg);
  708. rt2x00_set_field32(&reg, PHY_CSR0_PA_PE_BG,
  709. rt2x00dev->curr_band == IEEE80211_BAND_2GHZ);
  710. rt2x00_set_field32(&reg, PHY_CSR0_PA_PE_A,
  711. rt2x00dev->curr_band == IEEE80211_BAND_5GHZ);
  712. rt2x00pci_register_write(rt2x00dev, PHY_CSR0, reg);
  713. if (rt2x00_rf(rt2x00dev, RF5225) || rt2x00_rf(rt2x00dev, RF5325))
  714. rt61pci_config_antenna_5x(rt2x00dev, ant);
  715. else if (rt2x00_rf(rt2x00dev, RF2527))
  716. rt61pci_config_antenna_2x(rt2x00dev, ant);
  717. else if (rt2x00_rf(rt2x00dev, RF2529)) {
  718. if (test_bit(CONFIG_DOUBLE_ANTENNA, &rt2x00dev->flags))
  719. rt61pci_config_antenna_2x(rt2x00dev, ant);
  720. else
  721. rt61pci_config_antenna_2529(rt2x00dev, ant);
  722. }
  723. }
  724. static void rt61pci_config_lna_gain(struct rt2x00_dev *rt2x00dev,
  725. struct rt2x00lib_conf *libconf)
  726. {
  727. u16 eeprom;
  728. short lna_gain = 0;
  729. if (libconf->conf->channel->band == IEEE80211_BAND_2GHZ) {
  730. if (test_bit(CONFIG_EXTERNAL_LNA_BG, &rt2x00dev->flags))
  731. lna_gain += 14;
  732. rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_OFFSET_BG, &eeprom);
  733. lna_gain -= rt2x00_get_field16(eeprom, EEPROM_RSSI_OFFSET_BG_1);
  734. } else {
  735. if (test_bit(CONFIG_EXTERNAL_LNA_A, &rt2x00dev->flags))
  736. lna_gain += 14;
  737. rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_OFFSET_A, &eeprom);
  738. lna_gain -= rt2x00_get_field16(eeprom, EEPROM_RSSI_OFFSET_A_1);
  739. }
  740. rt2x00dev->lna_gain = lna_gain;
  741. }
  742. static void rt61pci_config_channel(struct rt2x00_dev *rt2x00dev,
  743. struct rf_channel *rf, const int txpower)
  744. {
  745. u8 r3;
  746. u8 r94;
  747. u8 smart;
  748. rt2x00_set_field32(&rf->rf3, RF3_TXPOWER, TXPOWER_TO_DEV(txpower));
  749. rt2x00_set_field32(&rf->rf4, RF4_FREQ_OFFSET, rt2x00dev->freq_offset);
  750. smart = !(rt2x00_rf(rt2x00dev, RF5225) || rt2x00_rf(rt2x00dev, RF2527));
  751. rt61pci_bbp_read(rt2x00dev, 3, &r3);
  752. rt2x00_set_field8(&r3, BBP_R3_SMART_MODE, smart);
  753. rt61pci_bbp_write(rt2x00dev, 3, r3);
  754. r94 = 6;
  755. if (txpower > MAX_TXPOWER && txpower <= (MAX_TXPOWER + r94))
  756. r94 += txpower - MAX_TXPOWER;
  757. else if (txpower < MIN_TXPOWER && txpower >= (MIN_TXPOWER - r94))
  758. r94 += txpower;
  759. rt61pci_bbp_write(rt2x00dev, 94, r94);
  760. rt61pci_rf_write(rt2x00dev, 1, rf->rf1);
  761. rt61pci_rf_write(rt2x00dev, 2, rf->rf2);
  762. rt61pci_rf_write(rt2x00dev, 3, rf->rf3 & ~0x00000004);
  763. rt61pci_rf_write(rt2x00dev, 4, rf->rf4);
  764. udelay(200);
  765. rt61pci_rf_write(rt2x00dev, 1, rf->rf1);
  766. rt61pci_rf_write(rt2x00dev, 2, rf->rf2);
  767. rt61pci_rf_write(rt2x00dev, 3, rf->rf3 | 0x00000004);
  768. rt61pci_rf_write(rt2x00dev, 4, rf->rf4);
  769. udelay(200);
  770. rt61pci_rf_write(rt2x00dev, 1, rf->rf1);
  771. rt61pci_rf_write(rt2x00dev, 2, rf->rf2);
  772. rt61pci_rf_write(rt2x00dev, 3, rf->rf3 & ~0x00000004);
  773. rt61pci_rf_write(rt2x00dev, 4, rf->rf4);
  774. msleep(1);
  775. }
  776. static void rt61pci_config_txpower(struct rt2x00_dev *rt2x00dev,
  777. const int txpower)
  778. {
  779. struct rf_channel rf;
  780. rt2x00_rf_read(rt2x00dev, 1, &rf.rf1);
  781. rt2x00_rf_read(rt2x00dev, 2, &rf.rf2);
  782. rt2x00_rf_read(rt2x00dev, 3, &rf.rf3);
  783. rt2x00_rf_read(rt2x00dev, 4, &rf.rf4);
  784. rt61pci_config_channel(rt2x00dev, &rf, txpower);
  785. }
  786. static void rt61pci_config_retry_limit(struct rt2x00_dev *rt2x00dev,
  787. struct rt2x00lib_conf *libconf)
  788. {
  789. u32 reg;
  790. rt2x00pci_register_read(rt2x00dev, TXRX_CSR4, &reg);
  791. rt2x00_set_field32(&reg, TXRX_CSR4_LONG_RETRY_LIMIT,
  792. libconf->conf->long_frame_max_tx_count);
  793. rt2x00_set_field32(&reg, TXRX_CSR4_SHORT_RETRY_LIMIT,
  794. libconf->conf->short_frame_max_tx_count);
  795. rt2x00pci_register_write(rt2x00dev, TXRX_CSR4, reg);
  796. }
  797. static void rt61pci_config_ps(struct rt2x00_dev *rt2x00dev,
  798. struct rt2x00lib_conf *libconf)
  799. {
  800. enum dev_state state =
  801. (libconf->conf->flags & IEEE80211_CONF_PS) ?
  802. STATE_SLEEP : STATE_AWAKE;
  803. u32 reg;
  804. if (state == STATE_SLEEP) {
  805. rt2x00pci_register_read(rt2x00dev, MAC_CSR11, &reg);
  806. rt2x00_set_field32(&reg, MAC_CSR11_DELAY_AFTER_TBCN,
  807. rt2x00dev->beacon_int - 10);
  808. rt2x00_set_field32(&reg, MAC_CSR11_TBCN_BEFORE_WAKEUP,
  809. libconf->conf->listen_interval - 1);
  810. rt2x00_set_field32(&reg, MAC_CSR11_WAKEUP_LATENCY, 5);
  811. /* We must first disable autowake before it can be enabled */
  812. rt2x00_set_field32(&reg, MAC_CSR11_AUTOWAKE, 0);
  813. rt2x00pci_register_write(rt2x00dev, MAC_CSR11, reg);
  814. rt2x00_set_field32(&reg, MAC_CSR11_AUTOWAKE, 1);
  815. rt2x00pci_register_write(rt2x00dev, MAC_CSR11, reg);
  816. rt2x00pci_register_write(rt2x00dev, SOFT_RESET_CSR, 0x00000005);
  817. rt2x00pci_register_write(rt2x00dev, IO_CNTL_CSR, 0x0000001c);
  818. rt2x00pci_register_write(rt2x00dev, PCI_USEC_CSR, 0x00000060);
  819. rt61pci_mcu_request(rt2x00dev, MCU_SLEEP, 0xff, 0, 0);
  820. } else {
  821. rt2x00pci_register_read(rt2x00dev, MAC_CSR11, &reg);
  822. rt2x00_set_field32(&reg, MAC_CSR11_DELAY_AFTER_TBCN, 0);
  823. rt2x00_set_field32(&reg, MAC_CSR11_TBCN_BEFORE_WAKEUP, 0);
  824. rt2x00_set_field32(&reg, MAC_CSR11_AUTOWAKE, 0);
  825. rt2x00_set_field32(&reg, MAC_CSR11_WAKEUP_LATENCY, 0);
  826. rt2x00pci_register_write(rt2x00dev, MAC_CSR11, reg);
  827. rt2x00pci_register_write(rt2x00dev, SOFT_RESET_CSR, 0x00000007);
  828. rt2x00pci_register_write(rt2x00dev, IO_CNTL_CSR, 0x00000018);
  829. rt2x00pci_register_write(rt2x00dev, PCI_USEC_CSR, 0x00000020);
  830. rt61pci_mcu_request(rt2x00dev, MCU_WAKEUP, 0xff, 0, 0);
  831. }
  832. }
  833. static void rt61pci_config(struct rt2x00_dev *rt2x00dev,
  834. struct rt2x00lib_conf *libconf,
  835. const unsigned int flags)
  836. {
  837. /* Always recalculate LNA gain before changing configuration */
  838. rt61pci_config_lna_gain(rt2x00dev, libconf);
  839. if (flags & IEEE80211_CONF_CHANGE_CHANNEL)
  840. rt61pci_config_channel(rt2x00dev, &libconf->rf,
  841. libconf->conf->power_level);
  842. if ((flags & IEEE80211_CONF_CHANGE_POWER) &&
  843. !(flags & IEEE80211_CONF_CHANGE_CHANNEL))
  844. rt61pci_config_txpower(rt2x00dev, libconf->conf->power_level);
  845. if (flags & IEEE80211_CONF_CHANGE_RETRY_LIMITS)
  846. rt61pci_config_retry_limit(rt2x00dev, libconf);
  847. if (flags & IEEE80211_CONF_CHANGE_PS)
  848. rt61pci_config_ps(rt2x00dev, libconf);
  849. }
  850. /*
  851. * Link tuning
  852. */
  853. static void rt61pci_link_stats(struct rt2x00_dev *rt2x00dev,
  854. struct link_qual *qual)
  855. {
  856. u32 reg;
  857. /*
  858. * Update FCS error count from register.
  859. */
  860. rt2x00pci_register_read(rt2x00dev, STA_CSR0, &reg);
  861. qual->rx_failed = rt2x00_get_field32(reg, STA_CSR0_FCS_ERROR);
  862. /*
  863. * Update False CCA count from register.
  864. */
  865. rt2x00pci_register_read(rt2x00dev, STA_CSR1, &reg);
  866. qual->false_cca = rt2x00_get_field32(reg, STA_CSR1_FALSE_CCA_ERROR);
  867. }
  868. static inline void rt61pci_set_vgc(struct rt2x00_dev *rt2x00dev,
  869. struct link_qual *qual, u8 vgc_level)
  870. {
  871. if (qual->vgc_level != vgc_level) {
  872. rt61pci_bbp_write(rt2x00dev, 17, vgc_level);
  873. qual->vgc_level = vgc_level;
  874. qual->vgc_level_reg = vgc_level;
  875. }
  876. }
  877. static void rt61pci_reset_tuner(struct rt2x00_dev *rt2x00dev,
  878. struct link_qual *qual)
  879. {
  880. rt61pci_set_vgc(rt2x00dev, qual, 0x20);
  881. }
  882. static void rt61pci_link_tuner(struct rt2x00_dev *rt2x00dev,
  883. struct link_qual *qual, const u32 count)
  884. {
  885. u8 up_bound;
  886. u8 low_bound;
  887. /*
  888. * Determine r17 bounds.
  889. */
  890. if (rt2x00dev->rx_status.band == IEEE80211_BAND_5GHZ) {
  891. low_bound = 0x28;
  892. up_bound = 0x48;
  893. if (test_bit(CONFIG_EXTERNAL_LNA_A, &rt2x00dev->flags)) {
  894. low_bound += 0x10;
  895. up_bound += 0x10;
  896. }
  897. } else {
  898. low_bound = 0x20;
  899. up_bound = 0x40;
  900. if (test_bit(CONFIG_EXTERNAL_LNA_BG, &rt2x00dev->flags)) {
  901. low_bound += 0x10;
  902. up_bound += 0x10;
  903. }
  904. }
  905. /*
  906. * If we are not associated, we should go straight to the
  907. * dynamic CCA tuning.
  908. */
  909. if (!rt2x00dev->intf_associated)
  910. goto dynamic_cca_tune;
  911. /*
  912. * Special big-R17 for very short distance
  913. */
  914. if (qual->rssi >= -35) {
  915. rt61pci_set_vgc(rt2x00dev, qual, 0x60);
  916. return;
  917. }
  918. /*
  919. * Special big-R17 for short distance
  920. */
  921. if (qual->rssi >= -58) {
  922. rt61pci_set_vgc(rt2x00dev, qual, up_bound);
  923. return;
  924. }
  925. /*
  926. * Special big-R17 for middle-short distance
  927. */
  928. if (qual->rssi >= -66) {
  929. rt61pci_set_vgc(rt2x00dev, qual, low_bound + 0x10);
  930. return;
  931. }
  932. /*
  933. * Special mid-R17 for middle distance
  934. */
  935. if (qual->rssi >= -74) {
  936. rt61pci_set_vgc(rt2x00dev, qual, low_bound + 0x08);
  937. return;
  938. }
  939. /*
  940. * Special case: Change up_bound based on the rssi.
  941. * Lower up_bound when rssi is weaker then -74 dBm.
  942. */
  943. up_bound -= 2 * (-74 - qual->rssi);
  944. if (low_bound > up_bound)
  945. up_bound = low_bound;
  946. if (qual->vgc_level > up_bound) {
  947. rt61pci_set_vgc(rt2x00dev, qual, up_bound);
  948. return;
  949. }
  950. dynamic_cca_tune:
  951. /*
  952. * r17 does not yet exceed upper limit, continue and base
  953. * the r17 tuning on the false CCA count.
  954. */
  955. if ((qual->false_cca > 512) && (qual->vgc_level < up_bound))
  956. rt61pci_set_vgc(rt2x00dev, qual, ++qual->vgc_level);
  957. else if ((qual->false_cca < 100) && (qual->vgc_level > low_bound))
  958. rt61pci_set_vgc(rt2x00dev, qual, --qual->vgc_level);
  959. }
  960. /*
  961. * Firmware functions
  962. */
  963. static char *rt61pci_get_firmware_name(struct rt2x00_dev *rt2x00dev)
  964. {
  965. char *fw_name;
  966. switch (rt2x00dev->chip.rt) {
  967. case RT2561:
  968. fw_name = FIRMWARE_RT2561;
  969. break;
  970. case RT2561s:
  971. fw_name = FIRMWARE_RT2561s;
  972. break;
  973. case RT2661:
  974. fw_name = FIRMWARE_RT2661;
  975. break;
  976. default:
  977. fw_name = NULL;
  978. break;
  979. }
  980. return fw_name;
  981. }
  982. static int rt61pci_check_firmware(struct rt2x00_dev *rt2x00dev,
  983. const u8 *data, const size_t len)
  984. {
  985. u16 fw_crc;
  986. u16 crc;
  987. /*
  988. * Only support 8kb firmware files.
  989. */
  990. if (len != 8192)
  991. return FW_BAD_LENGTH;
  992. /*
  993. * The last 2 bytes in the firmware array are the crc checksum itself.
  994. * This means that we should never pass those 2 bytes to the crc
  995. * algorithm.
  996. */
  997. fw_crc = (data[len - 2] << 8 | data[len - 1]);
  998. /*
  999. * Use the crc itu-t algorithm.
  1000. */
  1001. crc = crc_itu_t(0, data, len - 2);
  1002. crc = crc_itu_t_byte(crc, 0);
  1003. crc = crc_itu_t_byte(crc, 0);
  1004. return (fw_crc == crc) ? FW_OK : FW_BAD_CRC;
  1005. }
  1006. static int rt61pci_load_firmware(struct rt2x00_dev *rt2x00dev,
  1007. const u8 *data, const size_t len)
  1008. {
  1009. int i;
  1010. u32 reg;
  1011. /*
  1012. * Wait for stable hardware.
  1013. */
  1014. for (i = 0; i < 100; i++) {
  1015. rt2x00pci_register_read(rt2x00dev, MAC_CSR0, &reg);
  1016. if (reg)
  1017. break;
  1018. msleep(1);
  1019. }
  1020. if (!reg) {
  1021. ERROR(rt2x00dev, "Unstable hardware.\n");
  1022. return -EBUSY;
  1023. }
  1024. /*
  1025. * Prepare MCU and mailbox for firmware loading.
  1026. */
  1027. reg = 0;
  1028. rt2x00_set_field32(&reg, MCU_CNTL_CSR_RESET, 1);
  1029. rt2x00pci_register_write(rt2x00dev, MCU_CNTL_CSR, reg);
  1030. rt2x00pci_register_write(rt2x00dev, M2H_CMD_DONE_CSR, 0xffffffff);
  1031. rt2x00pci_register_write(rt2x00dev, H2M_MAILBOX_CSR, 0);
  1032. rt2x00pci_register_write(rt2x00dev, HOST_CMD_CSR, 0);
  1033. /*
  1034. * Write firmware to device.
  1035. */
  1036. reg = 0;
  1037. rt2x00_set_field32(&reg, MCU_CNTL_CSR_RESET, 1);
  1038. rt2x00_set_field32(&reg, MCU_CNTL_CSR_SELECT_BANK, 1);
  1039. rt2x00pci_register_write(rt2x00dev, MCU_CNTL_CSR, reg);
  1040. rt2x00pci_register_multiwrite(rt2x00dev, FIRMWARE_IMAGE_BASE,
  1041. data, len);
  1042. rt2x00_set_field32(&reg, MCU_CNTL_CSR_SELECT_BANK, 0);
  1043. rt2x00pci_register_write(rt2x00dev, MCU_CNTL_CSR, reg);
  1044. rt2x00_set_field32(&reg, MCU_CNTL_CSR_RESET, 0);
  1045. rt2x00pci_register_write(rt2x00dev, MCU_CNTL_CSR, reg);
  1046. for (i = 0; i < 100; i++) {
  1047. rt2x00pci_register_read(rt2x00dev, MCU_CNTL_CSR, &reg);
  1048. if (rt2x00_get_field32(reg, MCU_CNTL_CSR_READY))
  1049. break;
  1050. msleep(1);
  1051. }
  1052. if (i == 100) {
  1053. ERROR(rt2x00dev, "MCU Control register not ready.\n");
  1054. return -EBUSY;
  1055. }
  1056. /*
  1057. * Hardware needs another millisecond before it is ready.
  1058. */
  1059. msleep(1);
  1060. /*
  1061. * Reset MAC and BBP registers.
  1062. */
  1063. reg = 0;
  1064. rt2x00_set_field32(&reg, MAC_CSR1_SOFT_RESET, 1);
  1065. rt2x00_set_field32(&reg, MAC_CSR1_BBP_RESET, 1);
  1066. rt2x00pci_register_write(rt2x00dev, MAC_CSR1, reg);
  1067. rt2x00pci_register_read(rt2x00dev, MAC_CSR1, &reg);
  1068. rt2x00_set_field32(&reg, MAC_CSR1_SOFT_RESET, 0);
  1069. rt2x00_set_field32(&reg, MAC_CSR1_BBP_RESET, 0);
  1070. rt2x00pci_register_write(rt2x00dev, MAC_CSR1, reg);
  1071. rt2x00pci_register_read(rt2x00dev, MAC_CSR1, &reg);
  1072. rt2x00_set_field32(&reg, MAC_CSR1_HOST_READY, 1);
  1073. rt2x00pci_register_write(rt2x00dev, MAC_CSR1, reg);
  1074. return 0;
  1075. }
  1076. /*
  1077. * Initialization functions.
  1078. */
  1079. static bool rt61pci_get_entry_state(struct queue_entry *entry)
  1080. {
  1081. struct queue_entry_priv_pci *entry_priv = entry->priv_data;
  1082. u32 word;
  1083. if (entry->queue->qid == QID_RX) {
  1084. rt2x00_desc_read(entry_priv->desc, 0, &word);
  1085. return rt2x00_get_field32(word, RXD_W0_OWNER_NIC);
  1086. } else {
  1087. rt2x00_desc_read(entry_priv->desc, 0, &word);
  1088. return (rt2x00_get_field32(word, TXD_W0_OWNER_NIC) ||
  1089. rt2x00_get_field32(word, TXD_W0_VALID));
  1090. }
  1091. }
  1092. static void rt61pci_clear_entry(struct queue_entry *entry)
  1093. {
  1094. struct queue_entry_priv_pci *entry_priv = entry->priv_data;
  1095. struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
  1096. u32 word;
  1097. if (entry->queue->qid == QID_RX) {
  1098. rt2x00_desc_read(entry_priv->desc, 5, &word);
  1099. rt2x00_set_field32(&word, RXD_W5_BUFFER_PHYSICAL_ADDRESS,
  1100. skbdesc->skb_dma);
  1101. rt2x00_desc_write(entry_priv->desc, 5, word);
  1102. rt2x00_desc_read(entry_priv->desc, 0, &word);
  1103. rt2x00_set_field32(&word, RXD_W0_OWNER_NIC, 1);
  1104. rt2x00_desc_write(entry_priv->desc, 0, word);
  1105. } else {
  1106. rt2x00_desc_read(entry_priv->desc, 0, &word);
  1107. rt2x00_set_field32(&word, TXD_W0_VALID, 0);
  1108. rt2x00_set_field32(&word, TXD_W0_OWNER_NIC, 0);
  1109. rt2x00_desc_write(entry_priv->desc, 0, word);
  1110. }
  1111. }
  1112. static int rt61pci_init_queues(struct rt2x00_dev *rt2x00dev)
  1113. {
  1114. struct queue_entry_priv_pci *entry_priv;
  1115. u32 reg;
  1116. /*
  1117. * Initialize registers.
  1118. */
  1119. rt2x00pci_register_read(rt2x00dev, TX_RING_CSR0, &reg);
  1120. rt2x00_set_field32(&reg, TX_RING_CSR0_AC0_RING_SIZE,
  1121. rt2x00dev->tx[0].limit);
  1122. rt2x00_set_field32(&reg, TX_RING_CSR0_AC1_RING_SIZE,
  1123. rt2x00dev->tx[1].limit);
  1124. rt2x00_set_field32(&reg, TX_RING_CSR0_AC2_RING_SIZE,
  1125. rt2x00dev->tx[2].limit);
  1126. rt2x00_set_field32(&reg, TX_RING_CSR0_AC3_RING_SIZE,
  1127. rt2x00dev->tx[3].limit);
  1128. rt2x00pci_register_write(rt2x00dev, TX_RING_CSR0, reg);
  1129. rt2x00pci_register_read(rt2x00dev, TX_RING_CSR1, &reg);
  1130. rt2x00_set_field32(&reg, TX_RING_CSR1_TXD_SIZE,
  1131. rt2x00dev->tx[0].desc_size / 4);
  1132. rt2x00pci_register_write(rt2x00dev, TX_RING_CSR1, reg);
  1133. entry_priv = rt2x00dev->tx[0].entries[0].priv_data;
  1134. rt2x00pci_register_read(rt2x00dev, AC0_BASE_CSR, &reg);
  1135. rt2x00_set_field32(&reg, AC0_BASE_CSR_RING_REGISTER,
  1136. entry_priv->desc_dma);
  1137. rt2x00pci_register_write(rt2x00dev, AC0_BASE_CSR, reg);
  1138. entry_priv = rt2x00dev->tx[1].entries[0].priv_data;
  1139. rt2x00pci_register_read(rt2x00dev, AC1_BASE_CSR, &reg);
  1140. rt2x00_set_field32(&reg, AC1_BASE_CSR_RING_REGISTER,
  1141. entry_priv->desc_dma);
  1142. rt2x00pci_register_write(rt2x00dev, AC1_BASE_CSR, reg);
  1143. entry_priv = rt2x00dev->tx[2].entries[0].priv_data;
  1144. rt2x00pci_register_read(rt2x00dev, AC2_BASE_CSR, &reg);
  1145. rt2x00_set_field32(&reg, AC2_BASE_CSR_RING_REGISTER,
  1146. entry_priv->desc_dma);
  1147. rt2x00pci_register_write(rt2x00dev, AC2_BASE_CSR, reg);
  1148. entry_priv = rt2x00dev->tx[3].entries[0].priv_data;
  1149. rt2x00pci_register_read(rt2x00dev, AC3_BASE_CSR, &reg);
  1150. rt2x00_set_field32(&reg, AC3_BASE_CSR_RING_REGISTER,
  1151. entry_priv->desc_dma);
  1152. rt2x00pci_register_write(rt2x00dev, AC3_BASE_CSR, reg);
  1153. rt2x00pci_register_read(rt2x00dev, RX_RING_CSR, &reg);
  1154. rt2x00_set_field32(&reg, RX_RING_CSR_RING_SIZE, rt2x00dev->rx->limit);
  1155. rt2x00_set_field32(&reg, RX_RING_CSR_RXD_SIZE,
  1156. rt2x00dev->rx->desc_size / 4);
  1157. rt2x00_set_field32(&reg, RX_RING_CSR_RXD_WRITEBACK_SIZE, 4);
  1158. rt2x00pci_register_write(rt2x00dev, RX_RING_CSR, reg);
  1159. entry_priv = rt2x00dev->rx->entries[0].priv_data;
  1160. rt2x00pci_register_read(rt2x00dev, RX_BASE_CSR, &reg);
  1161. rt2x00_set_field32(&reg, RX_BASE_CSR_RING_REGISTER,
  1162. entry_priv->desc_dma);
  1163. rt2x00pci_register_write(rt2x00dev, RX_BASE_CSR, reg);
  1164. rt2x00pci_register_read(rt2x00dev, TX_DMA_DST_CSR, &reg);
  1165. rt2x00_set_field32(&reg, TX_DMA_DST_CSR_DEST_AC0, 2);
  1166. rt2x00_set_field32(&reg, TX_DMA_DST_CSR_DEST_AC1, 2);
  1167. rt2x00_set_field32(&reg, TX_DMA_DST_CSR_DEST_AC2, 2);
  1168. rt2x00_set_field32(&reg, TX_DMA_DST_CSR_DEST_AC3, 2);
  1169. rt2x00pci_register_write(rt2x00dev, TX_DMA_DST_CSR, reg);
  1170. rt2x00pci_register_read(rt2x00dev, LOAD_TX_RING_CSR, &reg);
  1171. rt2x00_set_field32(&reg, LOAD_TX_RING_CSR_LOAD_TXD_AC0, 1);
  1172. rt2x00_set_field32(&reg, LOAD_TX_RING_CSR_LOAD_TXD_AC1, 1);
  1173. rt2x00_set_field32(&reg, LOAD_TX_RING_CSR_LOAD_TXD_AC2, 1);
  1174. rt2x00_set_field32(&reg, LOAD_TX_RING_CSR_LOAD_TXD_AC3, 1);
  1175. rt2x00pci_register_write(rt2x00dev, LOAD_TX_RING_CSR, reg);
  1176. rt2x00pci_register_read(rt2x00dev, RX_CNTL_CSR, &reg);
  1177. rt2x00_set_field32(&reg, RX_CNTL_CSR_LOAD_RXD, 1);
  1178. rt2x00pci_register_write(rt2x00dev, RX_CNTL_CSR, reg);
  1179. return 0;
  1180. }
  1181. static int rt61pci_init_registers(struct rt2x00_dev *rt2x00dev)
  1182. {
  1183. u32 reg;
  1184. rt2x00pci_register_read(rt2x00dev, TXRX_CSR0, &reg);
  1185. rt2x00_set_field32(&reg, TXRX_CSR0_AUTO_TX_SEQ, 1);
  1186. rt2x00_set_field32(&reg, TXRX_CSR0_DISABLE_RX, 0);
  1187. rt2x00_set_field32(&reg, TXRX_CSR0_TX_WITHOUT_WAITING, 0);
  1188. rt2x00pci_register_write(rt2x00dev, TXRX_CSR0, reg);
  1189. rt2x00pci_register_read(rt2x00dev, TXRX_CSR1, &reg);
  1190. rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID0, 47); /* CCK Signal */
  1191. rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID0_VALID, 1);
  1192. rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID1, 30); /* Rssi */
  1193. rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID1_VALID, 1);
  1194. rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID2, 42); /* OFDM Rate */
  1195. rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID2_VALID, 1);
  1196. rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID3, 30); /* Rssi */
  1197. rt2x00_set_field32(&reg, TXRX_CSR1_BBP_ID3_VALID, 1);
  1198. rt2x00pci_register_write(rt2x00dev, TXRX_CSR1, reg);
  1199. /*
  1200. * CCK TXD BBP registers
  1201. */
  1202. rt2x00pci_register_read(rt2x00dev, TXRX_CSR2, &reg);
  1203. rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID0, 13);
  1204. rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID0_VALID, 1);
  1205. rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID1, 12);
  1206. rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID1_VALID, 1);
  1207. rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID2, 11);
  1208. rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID2_VALID, 1);
  1209. rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID3, 10);
  1210. rt2x00_set_field32(&reg, TXRX_CSR2_BBP_ID3_VALID, 1);
  1211. rt2x00pci_register_write(rt2x00dev, TXRX_CSR2, reg);
  1212. /*
  1213. * OFDM TXD BBP registers
  1214. */
  1215. rt2x00pci_register_read(rt2x00dev, TXRX_CSR3, &reg);
  1216. rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID0, 7);
  1217. rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID0_VALID, 1);
  1218. rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID1, 6);
  1219. rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID1_VALID, 1);
  1220. rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID2, 5);
  1221. rt2x00_set_field32(&reg, TXRX_CSR3_BBP_ID2_VALID, 1);
  1222. rt2x00pci_register_write(rt2x00dev, TXRX_CSR3, reg);
  1223. rt2x00pci_register_read(rt2x00dev, TXRX_CSR7, &reg);
  1224. rt2x00_set_field32(&reg, TXRX_CSR7_ACK_CTS_6MBS, 59);
  1225. rt2x00_set_field32(&reg, TXRX_CSR7_ACK_CTS_9MBS, 53);
  1226. rt2x00_set_field32(&reg, TXRX_CSR7_ACK_CTS_12MBS, 49);
  1227. rt2x00_set_field32(&reg, TXRX_CSR7_ACK_CTS_18MBS, 46);
  1228. rt2x00pci_register_write(rt2x00dev, TXRX_CSR7, reg);
  1229. rt2x00pci_register_read(rt2x00dev, TXRX_CSR8, &reg);
  1230. rt2x00_set_field32(&reg, TXRX_CSR8_ACK_CTS_24MBS, 44);
  1231. rt2x00_set_field32(&reg, TXRX_CSR8_ACK_CTS_36MBS, 42);
  1232. rt2x00_set_field32(&reg, TXRX_CSR8_ACK_CTS_48MBS, 42);
  1233. rt2x00_set_field32(&reg, TXRX_CSR8_ACK_CTS_54MBS, 42);
  1234. rt2x00pci_register_write(rt2x00dev, TXRX_CSR8, reg);
  1235. rt2x00pci_register_read(rt2x00dev, TXRX_CSR9, &reg);
  1236. rt2x00_set_field32(&reg, TXRX_CSR9_BEACON_INTERVAL, 0);
  1237. rt2x00_set_field32(&reg, TXRX_CSR9_TSF_TICKING, 0);
  1238. rt2x00_set_field32(&reg, TXRX_CSR9_TSF_SYNC, 0);
  1239. rt2x00_set_field32(&reg, TXRX_CSR9_TBTT_ENABLE, 0);
  1240. rt2x00_set_field32(&reg, TXRX_CSR9_BEACON_GEN, 0);
  1241. rt2x00_set_field32(&reg, TXRX_CSR9_TIMESTAMP_COMPENSATE, 0);
  1242. rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, reg);
  1243. rt2x00pci_register_write(rt2x00dev, TXRX_CSR15, 0x0000000f);
  1244. rt2x00pci_register_write(rt2x00dev, MAC_CSR6, 0x00000fff);
  1245. rt2x00pci_register_read(rt2x00dev, MAC_CSR9, &reg);
  1246. rt2x00_set_field32(&reg, MAC_CSR9_CW_SELECT, 0);
  1247. rt2x00pci_register_write(rt2x00dev, MAC_CSR9, reg);
  1248. rt2x00pci_register_write(rt2x00dev, MAC_CSR10, 0x0000071c);
  1249. if (rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_AWAKE))
  1250. return -EBUSY;
  1251. rt2x00pci_register_write(rt2x00dev, MAC_CSR13, 0x0000e000);
  1252. /*
  1253. * Invalidate all Shared Keys (SEC_CSR0),
  1254. * and clear the Shared key Cipher algorithms (SEC_CSR1 & SEC_CSR5)
  1255. */
  1256. rt2x00pci_register_write(rt2x00dev, SEC_CSR0, 0x00000000);
  1257. rt2x00pci_register_write(rt2x00dev, SEC_CSR1, 0x00000000);
  1258. rt2x00pci_register_write(rt2x00dev, SEC_CSR5, 0x00000000);
  1259. rt2x00pci_register_write(rt2x00dev, PHY_CSR1, 0x000023b0);
  1260. rt2x00pci_register_write(rt2x00dev, PHY_CSR5, 0x060a100c);
  1261. rt2x00pci_register_write(rt2x00dev, PHY_CSR6, 0x00080606);
  1262. rt2x00pci_register_write(rt2x00dev, PHY_CSR7, 0x00000a08);
  1263. rt2x00pci_register_write(rt2x00dev, PCI_CFG_CSR, 0x28ca4404);
  1264. rt2x00pci_register_write(rt2x00dev, TEST_MODE_CSR, 0x00000200);
  1265. rt2x00pci_register_write(rt2x00dev, M2H_CMD_DONE_CSR, 0xffffffff);
  1266. /*
  1267. * Clear all beacons
  1268. * For the Beacon base registers we only need to clear
  1269. * the first byte since that byte contains the VALID and OWNER
  1270. * bits which (when set to 0) will invalidate the entire beacon.
  1271. */
  1272. rt2x00pci_register_write(rt2x00dev, HW_BEACON_BASE0, 0);
  1273. rt2x00pci_register_write(rt2x00dev, HW_BEACON_BASE1, 0);
  1274. rt2x00pci_register_write(rt2x00dev, HW_BEACON_BASE2, 0);
  1275. rt2x00pci_register_write(rt2x00dev, HW_BEACON_BASE3, 0);
  1276. /*
  1277. * We must clear the error counters.
  1278. * These registers are cleared on read,
  1279. * so we may pass a useless variable to store the value.
  1280. */
  1281. rt2x00pci_register_read(rt2x00dev, STA_CSR0, &reg);
  1282. rt2x00pci_register_read(rt2x00dev, STA_CSR1, &reg);
  1283. rt2x00pci_register_read(rt2x00dev, STA_CSR2, &reg);
  1284. /*
  1285. * Reset MAC and BBP registers.
  1286. */
  1287. rt2x00pci_register_read(rt2x00dev, MAC_CSR1, &reg);
  1288. rt2x00_set_field32(&reg, MAC_CSR1_SOFT_RESET, 1);
  1289. rt2x00_set_field32(&reg, MAC_CSR1_BBP_RESET, 1);
  1290. rt2x00pci_register_write(rt2x00dev, MAC_CSR1, reg);
  1291. rt2x00pci_register_read(rt2x00dev, MAC_CSR1, &reg);
  1292. rt2x00_set_field32(&reg, MAC_CSR1_SOFT_RESET, 0);
  1293. rt2x00_set_field32(&reg, MAC_CSR1_BBP_RESET, 0);
  1294. rt2x00pci_register_write(rt2x00dev, MAC_CSR1, reg);
  1295. rt2x00pci_register_read(rt2x00dev, MAC_CSR1, &reg);
  1296. rt2x00_set_field32(&reg, MAC_CSR1_HOST_READY, 1);
  1297. rt2x00pci_register_write(rt2x00dev, MAC_CSR1, reg);
  1298. return 0;
  1299. }
  1300. static int rt61pci_wait_bbp_ready(struct rt2x00_dev *rt2x00dev)
  1301. {
  1302. unsigned int i;
  1303. u8 value;
  1304. for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
  1305. rt61pci_bbp_read(rt2x00dev, 0, &value);
  1306. if ((value != 0xff) && (value != 0x00))
  1307. return 0;
  1308. udelay(REGISTER_BUSY_DELAY);
  1309. }
  1310. ERROR(rt2x00dev, "BBP register access failed, aborting.\n");
  1311. return -EACCES;
  1312. }
  1313. static int rt61pci_init_bbp(struct rt2x00_dev *rt2x00dev)
  1314. {
  1315. unsigned int i;
  1316. u16 eeprom;
  1317. u8 reg_id;
  1318. u8 value;
  1319. if (unlikely(rt61pci_wait_bbp_ready(rt2x00dev)))
  1320. return -EACCES;
  1321. rt61pci_bbp_write(rt2x00dev, 3, 0x00);
  1322. rt61pci_bbp_write(rt2x00dev, 15, 0x30);
  1323. rt61pci_bbp_write(rt2x00dev, 21, 0xc8);
  1324. rt61pci_bbp_write(rt2x00dev, 22, 0x38);
  1325. rt61pci_bbp_write(rt2x00dev, 23, 0x06);
  1326. rt61pci_bbp_write(rt2x00dev, 24, 0xfe);
  1327. rt61pci_bbp_write(rt2x00dev, 25, 0x0a);
  1328. rt61pci_bbp_write(rt2x00dev, 26, 0x0d);
  1329. rt61pci_bbp_write(rt2x00dev, 34, 0x12);
  1330. rt61pci_bbp_write(rt2x00dev, 37, 0x07);
  1331. rt61pci_bbp_write(rt2x00dev, 39, 0xf8);
  1332. rt61pci_bbp_write(rt2x00dev, 41, 0x60);
  1333. rt61pci_bbp_write(rt2x00dev, 53, 0x10);
  1334. rt61pci_bbp_write(rt2x00dev, 54, 0x18);
  1335. rt61pci_bbp_write(rt2x00dev, 60, 0x10);
  1336. rt61pci_bbp_write(rt2x00dev, 61, 0x04);
  1337. rt61pci_bbp_write(rt2x00dev, 62, 0x04);
  1338. rt61pci_bbp_write(rt2x00dev, 75, 0xfe);
  1339. rt61pci_bbp_write(rt2x00dev, 86, 0xfe);
  1340. rt61pci_bbp_write(rt2x00dev, 88, 0xfe);
  1341. rt61pci_bbp_write(rt2x00dev, 90, 0x0f);
  1342. rt61pci_bbp_write(rt2x00dev, 99, 0x00);
  1343. rt61pci_bbp_write(rt2x00dev, 102, 0x16);
  1344. rt61pci_bbp_write(rt2x00dev, 107, 0x04);
  1345. for (i = 0; i < EEPROM_BBP_SIZE; i++) {
  1346. rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
  1347. if (eeprom != 0xffff && eeprom != 0x0000) {
  1348. reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
  1349. value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
  1350. rt61pci_bbp_write(rt2x00dev, reg_id, value);
  1351. }
  1352. }
  1353. return 0;
  1354. }
  1355. /*
  1356. * Device state switch handlers.
  1357. */
  1358. static void rt61pci_toggle_rx(struct rt2x00_dev *rt2x00dev,
  1359. enum dev_state state)
  1360. {
  1361. u32 reg;
  1362. rt2x00pci_register_read(rt2x00dev, TXRX_CSR0, &reg);
  1363. rt2x00_set_field32(&reg, TXRX_CSR0_DISABLE_RX,
  1364. (state == STATE_RADIO_RX_OFF) ||
  1365. (state == STATE_RADIO_RX_OFF_LINK));
  1366. rt2x00pci_register_write(rt2x00dev, TXRX_CSR0, reg);
  1367. }
  1368. static void rt61pci_toggle_irq(struct rt2x00_dev *rt2x00dev,
  1369. enum dev_state state)
  1370. {
  1371. int mask = (state == STATE_RADIO_IRQ_OFF);
  1372. u32 reg;
  1373. /*
  1374. * When interrupts are being enabled, the interrupt registers
  1375. * should clear the register to assure a clean state.
  1376. */
  1377. if (state == STATE_RADIO_IRQ_ON) {
  1378. rt2x00pci_register_read(rt2x00dev, INT_SOURCE_CSR, &reg);
  1379. rt2x00pci_register_write(rt2x00dev, INT_SOURCE_CSR, reg);
  1380. rt2x00pci_register_read(rt2x00dev, MCU_INT_SOURCE_CSR, &reg);
  1381. rt2x00pci_register_write(rt2x00dev, MCU_INT_SOURCE_CSR, reg);
  1382. }
  1383. /*
  1384. * Only toggle the interrupts bits we are going to use.
  1385. * Non-checked interrupt bits are disabled by default.
  1386. */
  1387. rt2x00pci_register_read(rt2x00dev, INT_MASK_CSR, &reg);
  1388. rt2x00_set_field32(&reg, INT_MASK_CSR_TXDONE, mask);
  1389. rt2x00_set_field32(&reg, INT_MASK_CSR_RXDONE, mask);
  1390. rt2x00_set_field32(&reg, INT_MASK_CSR_ENABLE_MITIGATION, mask);
  1391. rt2x00_set_field32(&reg, INT_MASK_CSR_MITIGATION_PERIOD, 0xff);
  1392. rt2x00pci_register_write(rt2x00dev, INT_MASK_CSR, reg);
  1393. rt2x00pci_register_read(rt2x00dev, MCU_INT_MASK_CSR, &reg);
  1394. rt2x00_set_field32(&reg, MCU_INT_MASK_CSR_0, mask);
  1395. rt2x00_set_field32(&reg, MCU_INT_MASK_CSR_1, mask);
  1396. rt2x00_set_field32(&reg, MCU_INT_MASK_CSR_2, mask);
  1397. rt2x00_set_field32(&reg, MCU_INT_MASK_CSR_3, mask);
  1398. rt2x00_set_field32(&reg, MCU_INT_MASK_CSR_4, mask);
  1399. rt2x00_set_field32(&reg, MCU_INT_MASK_CSR_5, mask);
  1400. rt2x00_set_field32(&reg, MCU_INT_MASK_CSR_6, mask);
  1401. rt2x00_set_field32(&reg, MCU_INT_MASK_CSR_7, mask);
  1402. rt2x00pci_register_write(rt2x00dev, MCU_INT_MASK_CSR, reg);
  1403. }
  1404. static int rt61pci_enable_radio(struct rt2x00_dev *rt2x00dev)
  1405. {
  1406. u32 reg;
  1407. /*
  1408. * Initialize all registers.
  1409. */
  1410. if (unlikely(rt61pci_init_queues(rt2x00dev) ||
  1411. rt61pci_init_registers(rt2x00dev) ||
  1412. rt61pci_init_bbp(rt2x00dev)))
  1413. return -EIO;
  1414. /*
  1415. * Enable RX.
  1416. */
  1417. rt2x00pci_register_read(rt2x00dev, RX_CNTL_CSR, &reg);
  1418. rt2x00_set_field32(&reg, RX_CNTL_CSR_ENABLE_RX_DMA, 1);
  1419. rt2x00pci_register_write(rt2x00dev, RX_CNTL_CSR, reg);
  1420. return 0;
  1421. }
  1422. static void rt61pci_disable_radio(struct rt2x00_dev *rt2x00dev)
  1423. {
  1424. /*
  1425. * Disable power
  1426. */
  1427. rt2x00pci_register_write(rt2x00dev, MAC_CSR10, 0x00001818);
  1428. }
  1429. static int rt61pci_set_state(struct rt2x00_dev *rt2x00dev, enum dev_state state)
  1430. {
  1431. u32 reg;
  1432. unsigned int i;
  1433. char put_to_sleep;
  1434. put_to_sleep = (state != STATE_AWAKE);
  1435. rt2x00pci_register_read(rt2x00dev, MAC_CSR12, &reg);
  1436. rt2x00_set_field32(&reg, MAC_CSR12_FORCE_WAKEUP, !put_to_sleep);
  1437. rt2x00_set_field32(&reg, MAC_CSR12_PUT_TO_SLEEP, put_to_sleep);
  1438. rt2x00pci_register_write(rt2x00dev, MAC_CSR12, reg);
  1439. /*
  1440. * Device is not guaranteed to be in the requested state yet.
  1441. * We must wait until the register indicates that the
  1442. * device has entered the correct state.
  1443. */
  1444. for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
  1445. rt2x00pci_register_read(rt2x00dev, MAC_CSR12, &reg);
  1446. state = rt2x00_get_field32(reg, MAC_CSR12_BBP_CURRENT_STATE);
  1447. if (state == !put_to_sleep)
  1448. return 0;
  1449. msleep(10);
  1450. }
  1451. return -EBUSY;
  1452. }
  1453. static int rt61pci_set_device_state(struct rt2x00_dev *rt2x00dev,
  1454. enum dev_state state)
  1455. {
  1456. int retval = 0;
  1457. switch (state) {
  1458. case STATE_RADIO_ON:
  1459. retval = rt61pci_enable_radio(rt2x00dev);
  1460. break;
  1461. case STATE_RADIO_OFF:
  1462. rt61pci_disable_radio(rt2x00dev);
  1463. break;
  1464. case STATE_RADIO_RX_ON:
  1465. case STATE_RADIO_RX_ON_LINK:
  1466. case STATE_RADIO_RX_OFF:
  1467. case STATE_RADIO_RX_OFF_LINK:
  1468. rt61pci_toggle_rx(rt2x00dev, state);
  1469. break;
  1470. case STATE_RADIO_IRQ_ON:
  1471. case STATE_RADIO_IRQ_OFF:
  1472. rt61pci_toggle_irq(rt2x00dev, state);
  1473. break;
  1474. case STATE_DEEP_SLEEP:
  1475. case STATE_SLEEP:
  1476. case STATE_STANDBY:
  1477. case STATE_AWAKE:
  1478. retval = rt61pci_set_state(rt2x00dev, state);
  1479. break;
  1480. default:
  1481. retval = -ENOTSUPP;
  1482. break;
  1483. }
  1484. if (unlikely(retval))
  1485. ERROR(rt2x00dev, "Device failed to enter state %d (%d).\n",
  1486. state, retval);
  1487. return retval;
  1488. }
  1489. /*
  1490. * TX descriptor initialization
  1491. */
  1492. static void rt61pci_write_tx_desc(struct rt2x00_dev *rt2x00dev,
  1493. struct sk_buff *skb,
  1494. struct txentry_desc *txdesc)
  1495. {
  1496. struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
  1497. __le32 *txd = skbdesc->desc;
  1498. u32 word;
  1499. /*
  1500. * Start writing the descriptor words.
  1501. */
  1502. rt2x00_desc_read(txd, 1, &word);
  1503. rt2x00_set_field32(&word, TXD_W1_HOST_Q_ID, txdesc->queue);
  1504. rt2x00_set_field32(&word, TXD_W1_AIFSN, txdesc->aifs);
  1505. rt2x00_set_field32(&word, TXD_W1_CWMIN, txdesc->cw_min);
  1506. rt2x00_set_field32(&word, TXD_W1_CWMAX, txdesc->cw_max);
  1507. rt2x00_set_field32(&word, TXD_W1_IV_OFFSET, txdesc->iv_offset);
  1508. rt2x00_set_field32(&word, TXD_W1_HW_SEQUENCE,
  1509. test_bit(ENTRY_TXD_GENERATE_SEQ, &txdesc->flags));
  1510. rt2x00_set_field32(&word, TXD_W1_BUFFER_COUNT, 1);
  1511. rt2x00_desc_write(txd, 1, word);
  1512. rt2x00_desc_read(txd, 2, &word);
  1513. rt2x00_set_field32(&word, TXD_W2_PLCP_SIGNAL, txdesc->signal);
  1514. rt2x00_set_field32(&word, TXD_W2_PLCP_SERVICE, txdesc->service);
  1515. rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_LOW, txdesc->length_low);
  1516. rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_HIGH, txdesc->length_high);
  1517. rt2x00_desc_write(txd, 2, word);
  1518. if (test_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags)) {
  1519. _rt2x00_desc_write(txd, 3, skbdesc->iv[0]);
  1520. _rt2x00_desc_write(txd, 4, skbdesc->iv[1]);
  1521. }
  1522. rt2x00_desc_read(txd, 5, &word);
  1523. rt2x00_set_field32(&word, TXD_W5_PID_TYPE, skbdesc->entry->queue->qid);
  1524. rt2x00_set_field32(&word, TXD_W5_PID_SUBTYPE,
  1525. skbdesc->entry->entry_idx);
  1526. rt2x00_set_field32(&word, TXD_W5_TX_POWER,
  1527. TXPOWER_TO_DEV(rt2x00dev->tx_power));
  1528. rt2x00_set_field32(&word, TXD_W5_WAITING_DMA_DONE_INT, 1);
  1529. rt2x00_desc_write(txd, 5, word);
  1530. rt2x00_desc_read(txd, 6, &word);
  1531. rt2x00_set_field32(&word, TXD_W6_BUFFER_PHYSICAL_ADDRESS,
  1532. skbdesc->skb_dma);
  1533. rt2x00_desc_write(txd, 6, word);
  1534. if (skbdesc->desc_len > TXINFO_SIZE) {
  1535. rt2x00_desc_read(txd, 11, &word);
  1536. rt2x00_set_field32(&word, TXD_W11_BUFFER_LENGTH0, skb->len);
  1537. rt2x00_desc_write(txd, 11, word);
  1538. }
  1539. rt2x00_desc_read(txd, 0, &word);
  1540. rt2x00_set_field32(&word, TXD_W0_OWNER_NIC, 1);
  1541. rt2x00_set_field32(&word, TXD_W0_VALID, 1);
  1542. rt2x00_set_field32(&word, TXD_W0_MORE_FRAG,
  1543. test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
  1544. rt2x00_set_field32(&word, TXD_W0_ACK,
  1545. test_bit(ENTRY_TXD_ACK, &txdesc->flags));
  1546. rt2x00_set_field32(&word, TXD_W0_TIMESTAMP,
  1547. test_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags));
  1548. rt2x00_set_field32(&word, TXD_W0_OFDM,
  1549. (txdesc->rate_mode == RATE_MODE_OFDM));
  1550. rt2x00_set_field32(&word, TXD_W0_IFS, txdesc->ifs);
  1551. rt2x00_set_field32(&word, TXD_W0_RETRY_MODE,
  1552. test_bit(ENTRY_TXD_RETRY_MODE, &txdesc->flags));
  1553. rt2x00_set_field32(&word, TXD_W0_TKIP_MIC,
  1554. test_bit(ENTRY_TXD_ENCRYPT_MMIC, &txdesc->flags));
  1555. rt2x00_set_field32(&word, TXD_W0_KEY_TABLE,
  1556. test_bit(ENTRY_TXD_ENCRYPT_PAIRWISE, &txdesc->flags));
  1557. rt2x00_set_field32(&word, TXD_W0_KEY_INDEX, txdesc->key_idx);
  1558. rt2x00_set_field32(&word, TXD_W0_DATABYTE_COUNT, skb->len);
  1559. rt2x00_set_field32(&word, TXD_W0_BURST,
  1560. test_bit(ENTRY_TXD_BURST, &txdesc->flags));
  1561. rt2x00_set_field32(&word, TXD_W0_CIPHER_ALG, txdesc->cipher);
  1562. rt2x00_desc_write(txd, 0, word);
  1563. }
  1564. /*
  1565. * TX data initialization
  1566. */
  1567. static void rt61pci_write_beacon(struct queue_entry *entry)
  1568. {
  1569. struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
  1570. struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
  1571. unsigned int beacon_base;
  1572. u32 reg;
  1573. /*
  1574. * Disable beaconing while we are reloading the beacon data,
  1575. * otherwise we might be sending out invalid data.
  1576. */
  1577. rt2x00pci_register_read(rt2x00dev, TXRX_CSR9, &reg);
  1578. rt2x00_set_field32(&reg, TXRX_CSR9_BEACON_GEN, 0);
  1579. rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, reg);
  1580. /*
  1581. * Write entire beacon with descriptor to register.
  1582. */
  1583. beacon_base = HW_BEACON_OFFSET(entry->entry_idx);
  1584. rt2x00pci_register_multiwrite(rt2x00dev,
  1585. beacon_base,
  1586. skbdesc->desc, skbdesc->desc_len);
  1587. rt2x00pci_register_multiwrite(rt2x00dev,
  1588. beacon_base + skbdesc->desc_len,
  1589. entry->skb->data, entry->skb->len);
  1590. /*
  1591. * Clean up beacon skb.
  1592. */
  1593. dev_kfree_skb_any(entry->skb);
  1594. entry->skb = NULL;
  1595. }
  1596. static void rt61pci_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
  1597. const enum data_queue_qid queue)
  1598. {
  1599. u32 reg;
  1600. if (queue == QID_BEACON) {
  1601. /*
  1602. * For Wi-Fi faily generated beacons between participating
  1603. * stations. Set TBTT phase adaptive adjustment step to 8us.
  1604. */
  1605. rt2x00pci_register_write(rt2x00dev, TXRX_CSR10, 0x00001008);
  1606. rt2x00pci_register_read(rt2x00dev, TXRX_CSR9, &reg);
  1607. if (!rt2x00_get_field32(reg, TXRX_CSR9_BEACON_GEN)) {
  1608. rt2x00_set_field32(&reg, TXRX_CSR9_TSF_TICKING, 1);
  1609. rt2x00_set_field32(&reg, TXRX_CSR9_TBTT_ENABLE, 1);
  1610. rt2x00_set_field32(&reg, TXRX_CSR9_BEACON_GEN, 1);
  1611. rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, reg);
  1612. }
  1613. return;
  1614. }
  1615. rt2x00pci_register_read(rt2x00dev, TX_CNTL_CSR, &reg);
  1616. rt2x00_set_field32(&reg, TX_CNTL_CSR_KICK_TX_AC0, (queue == QID_AC_BE));
  1617. rt2x00_set_field32(&reg, TX_CNTL_CSR_KICK_TX_AC1, (queue == QID_AC_BK));
  1618. rt2x00_set_field32(&reg, TX_CNTL_CSR_KICK_TX_AC2, (queue == QID_AC_VI));
  1619. rt2x00_set_field32(&reg, TX_CNTL_CSR_KICK_TX_AC3, (queue == QID_AC_VO));
  1620. rt2x00pci_register_write(rt2x00dev, TX_CNTL_CSR, reg);
  1621. }
  1622. static void rt61pci_kill_tx_queue(struct rt2x00_dev *rt2x00dev,
  1623. const enum data_queue_qid qid)
  1624. {
  1625. u32 reg;
  1626. if (qid == QID_BEACON) {
  1627. rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, 0);
  1628. return;
  1629. }
  1630. rt2x00pci_register_read(rt2x00dev, TX_CNTL_CSR, &reg);
  1631. rt2x00_set_field32(&reg, TX_CNTL_CSR_ABORT_TX_AC0, (qid == QID_AC_BE));
  1632. rt2x00_set_field32(&reg, TX_CNTL_CSR_ABORT_TX_AC1, (qid == QID_AC_BK));
  1633. rt2x00_set_field32(&reg, TX_CNTL_CSR_ABORT_TX_AC2, (qid == QID_AC_VI));
  1634. rt2x00_set_field32(&reg, TX_CNTL_CSR_ABORT_TX_AC3, (qid == QID_AC_VO));
  1635. rt2x00pci_register_write(rt2x00dev, TX_CNTL_CSR, reg);
  1636. }
  1637. /*
  1638. * RX control handlers
  1639. */
  1640. static int rt61pci_agc_to_rssi(struct rt2x00_dev *rt2x00dev, int rxd_w1)
  1641. {
  1642. u8 offset = rt2x00dev->lna_gain;
  1643. u8 lna;
  1644. lna = rt2x00_get_field32(rxd_w1, RXD_W1_RSSI_LNA);
  1645. switch (lna) {
  1646. case 3:
  1647. offset += 90;
  1648. break;
  1649. case 2:
  1650. offset += 74;
  1651. break;
  1652. case 1:
  1653. offset += 64;
  1654. break;
  1655. default:
  1656. return 0;
  1657. }
  1658. if (rt2x00dev->rx_status.band == IEEE80211_BAND_5GHZ) {
  1659. if (lna == 3 || lna == 2)
  1660. offset += 10;
  1661. }
  1662. return rt2x00_get_field32(rxd_w1, RXD_W1_RSSI_AGC) * 2 - offset;
  1663. }
  1664. static void rt61pci_fill_rxdone(struct queue_entry *entry,
  1665. struct rxdone_entry_desc *rxdesc)
  1666. {
  1667. struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
  1668. struct queue_entry_priv_pci *entry_priv = entry->priv_data;
  1669. u32 word0;
  1670. u32 word1;
  1671. rt2x00_desc_read(entry_priv->desc, 0, &word0);
  1672. rt2x00_desc_read(entry_priv->desc, 1, &word1);
  1673. if (rt2x00_get_field32(word0, RXD_W0_CRC_ERROR))
  1674. rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC;
  1675. if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags)) {
  1676. rxdesc->cipher =
  1677. rt2x00_get_field32(word0, RXD_W0_CIPHER_ALG);
  1678. rxdesc->cipher_status =
  1679. rt2x00_get_field32(word0, RXD_W0_CIPHER_ERROR);
  1680. }
  1681. if (rxdesc->cipher != CIPHER_NONE) {
  1682. _rt2x00_desc_read(entry_priv->desc, 2, &rxdesc->iv[0]);
  1683. _rt2x00_desc_read(entry_priv->desc, 3, &rxdesc->iv[1]);
  1684. rxdesc->dev_flags |= RXDONE_CRYPTO_IV;
  1685. _rt2x00_desc_read(entry_priv->desc, 4, &rxdesc->icv);
  1686. rxdesc->dev_flags |= RXDONE_CRYPTO_ICV;
  1687. /*
  1688. * Hardware has stripped IV/EIV data from 802.11 frame during
  1689. * decryption. It has provided the data separately but rt2x00lib
  1690. * should decide if it should be reinserted.
  1691. */
  1692. rxdesc->flags |= RX_FLAG_IV_STRIPPED;
  1693. /*
  1694. * FIXME: Legacy driver indicates that the frame does
  1695. * contain the Michael Mic. Unfortunately, in rt2x00
  1696. * the MIC seems to be missing completely...
  1697. */
  1698. rxdesc->flags |= RX_FLAG_MMIC_STRIPPED;
  1699. if (rxdesc->cipher_status == RX_CRYPTO_SUCCESS)
  1700. rxdesc->flags |= RX_FLAG_DECRYPTED;
  1701. else if (rxdesc->cipher_status == RX_CRYPTO_FAIL_MIC)
  1702. rxdesc->flags |= RX_FLAG_MMIC_ERROR;
  1703. }
  1704. /*
  1705. * Obtain the status about this packet.
  1706. * When frame was received with an OFDM bitrate,
  1707. * the signal is the PLCP value. If it was received with
  1708. * a CCK bitrate the signal is the rate in 100kbit/s.
  1709. */
  1710. rxdesc->signal = rt2x00_get_field32(word1, RXD_W1_SIGNAL);
  1711. rxdesc->rssi = rt61pci_agc_to_rssi(rt2x00dev, word1);
  1712. rxdesc->size = rt2x00_get_field32(word0, RXD_W0_DATABYTE_COUNT);
  1713. if (rt2x00_get_field32(word0, RXD_W0_OFDM))
  1714. rxdesc->dev_flags |= RXDONE_SIGNAL_PLCP;
  1715. else
  1716. rxdesc->dev_flags |= RXDONE_SIGNAL_BITRATE;
  1717. if (rt2x00_get_field32(word0, RXD_W0_MY_BSS))
  1718. rxdesc->dev_flags |= RXDONE_MY_BSS;
  1719. }
  1720. /*
  1721. * Interrupt functions.
  1722. */
  1723. static void rt61pci_txdone(struct rt2x00_dev *rt2x00dev)
  1724. {
  1725. struct data_queue *queue;
  1726. struct queue_entry *entry;
  1727. struct queue_entry *entry_done;
  1728. struct queue_entry_priv_pci *entry_priv;
  1729. struct txdone_entry_desc txdesc;
  1730. u32 word;
  1731. u32 reg;
  1732. u32 old_reg;
  1733. int type;
  1734. int index;
  1735. /*
  1736. * During each loop we will compare the freshly read
  1737. * STA_CSR4 register value with the value read from
  1738. * the previous loop. If the 2 values are equal then
  1739. * we should stop processing because the chance is
  1740. * quite big that the device has been unplugged and
  1741. * we risk going into an endless loop.
  1742. */
  1743. old_reg = 0;
  1744. while (1) {
  1745. rt2x00pci_register_read(rt2x00dev, STA_CSR4, &reg);
  1746. if (!rt2x00_get_field32(reg, STA_CSR4_VALID))
  1747. break;
  1748. if (old_reg == reg)
  1749. break;
  1750. old_reg = reg;
  1751. /*
  1752. * Skip this entry when it contains an invalid
  1753. * queue identication number.
  1754. */
  1755. type = rt2x00_get_field32(reg, STA_CSR4_PID_TYPE);
  1756. queue = rt2x00queue_get_queue(rt2x00dev, type);
  1757. if (unlikely(!queue))
  1758. continue;
  1759. /*
  1760. * Skip this entry when it contains an invalid
  1761. * index number.
  1762. */
  1763. index = rt2x00_get_field32(reg, STA_CSR4_PID_SUBTYPE);
  1764. if (unlikely(index >= queue->limit))
  1765. continue;
  1766. entry = &queue->entries[index];
  1767. entry_priv = entry->priv_data;
  1768. rt2x00_desc_read(entry_priv->desc, 0, &word);
  1769. if (rt2x00_get_field32(word, TXD_W0_OWNER_NIC) ||
  1770. !rt2x00_get_field32(word, TXD_W0_VALID))
  1771. return;
  1772. entry_done = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
  1773. while (entry != entry_done) {
  1774. /* Catch up.
  1775. * Just report any entries we missed as failed.
  1776. */
  1777. WARNING(rt2x00dev,
  1778. "TX status report missed for entry %d\n",
  1779. entry_done->entry_idx);
  1780. txdesc.flags = 0;
  1781. __set_bit(TXDONE_UNKNOWN, &txdesc.flags);
  1782. txdesc.retry = 0;
  1783. rt2x00lib_txdone(entry_done, &txdesc);
  1784. entry_done = rt2x00queue_get_entry(queue, Q_INDEX_DONE);
  1785. }
  1786. /*
  1787. * Obtain the status about this packet.
  1788. */
  1789. txdesc.flags = 0;
  1790. switch (rt2x00_get_field32(reg, STA_CSR4_TX_RESULT)) {
  1791. case 0: /* Success, maybe with retry */
  1792. __set_bit(TXDONE_SUCCESS, &txdesc.flags);
  1793. break;
  1794. case 6: /* Failure, excessive retries */
  1795. __set_bit(TXDONE_EXCESSIVE_RETRY, &txdesc.flags);
  1796. /* Don't break, this is a failed frame! */
  1797. default: /* Failure */
  1798. __set_bit(TXDONE_FAILURE, &txdesc.flags);
  1799. }
  1800. txdesc.retry = rt2x00_get_field32(reg, STA_CSR4_RETRY_COUNT);
  1801. rt2x00lib_txdone(entry, &txdesc);
  1802. }
  1803. }
  1804. static irqreturn_t rt61pci_interrupt(int irq, void *dev_instance)
  1805. {
  1806. struct rt2x00_dev *rt2x00dev = dev_instance;
  1807. u32 reg_mcu;
  1808. u32 reg;
  1809. /*
  1810. * Get the interrupt sources & saved to local variable.
  1811. * Write register value back to clear pending interrupts.
  1812. */
  1813. rt2x00pci_register_read(rt2x00dev, MCU_INT_SOURCE_CSR, &reg_mcu);
  1814. rt2x00pci_register_write(rt2x00dev, MCU_INT_SOURCE_CSR, reg_mcu);
  1815. rt2x00pci_register_read(rt2x00dev, INT_SOURCE_CSR, &reg);
  1816. rt2x00pci_register_write(rt2x00dev, INT_SOURCE_CSR, reg);
  1817. if (!reg && !reg_mcu)
  1818. return IRQ_NONE;
  1819. if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
  1820. return IRQ_HANDLED;
  1821. /*
  1822. * Handle interrupts, walk through all bits
  1823. * and run the tasks, the bits are checked in order of
  1824. * priority.
  1825. */
  1826. /*
  1827. * 1 - Rx ring done interrupt.
  1828. */
  1829. if (rt2x00_get_field32(reg, INT_SOURCE_CSR_RXDONE))
  1830. rt2x00pci_rxdone(rt2x00dev);
  1831. /*
  1832. * 2 - Tx ring done interrupt.
  1833. */
  1834. if (rt2x00_get_field32(reg, INT_SOURCE_CSR_TXDONE))
  1835. rt61pci_txdone(rt2x00dev);
  1836. /*
  1837. * 3 - Handle MCU command done.
  1838. */
  1839. if (reg_mcu)
  1840. rt2x00pci_register_write(rt2x00dev,
  1841. M2H_CMD_DONE_CSR, 0xffffffff);
  1842. return IRQ_HANDLED;
  1843. }
  1844. /*
  1845. * Device probe functions.
  1846. */
  1847. static int rt61pci_validate_eeprom(struct rt2x00_dev *rt2x00dev)
  1848. {
  1849. struct eeprom_93cx6 eeprom;
  1850. u32 reg;
  1851. u16 word;
  1852. u8 *mac;
  1853. s8 value;
  1854. rt2x00pci_register_read(rt2x00dev, E2PROM_CSR, &reg);
  1855. eeprom.data = rt2x00dev;
  1856. eeprom.register_read = rt61pci_eepromregister_read;
  1857. eeprom.register_write = rt61pci_eepromregister_write;
  1858. eeprom.width = rt2x00_get_field32(reg, E2PROM_CSR_TYPE_93C46) ?
  1859. PCI_EEPROM_WIDTH_93C46 : PCI_EEPROM_WIDTH_93C66;
  1860. eeprom.reg_data_in = 0;
  1861. eeprom.reg_data_out = 0;
  1862. eeprom.reg_data_clock = 0;
  1863. eeprom.reg_chip_select = 0;
  1864. eeprom_93cx6_multiread(&eeprom, EEPROM_BASE, rt2x00dev->eeprom,
  1865. EEPROM_SIZE / sizeof(u16));
  1866. /*
  1867. * Start validation of the data that has been read.
  1868. */
  1869. mac = rt2x00_eeprom_addr(rt2x00dev, EEPROM_MAC_ADDR_0);
  1870. if (!is_valid_ether_addr(mac)) {
  1871. random_ether_addr(mac);
  1872. EEPROM(rt2x00dev, "MAC: %pM\n", mac);
  1873. }
  1874. rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &word);
  1875. if (word == 0xffff) {
  1876. rt2x00_set_field16(&word, EEPROM_ANTENNA_NUM, 2);
  1877. rt2x00_set_field16(&word, EEPROM_ANTENNA_TX_DEFAULT,
  1878. ANTENNA_B);
  1879. rt2x00_set_field16(&word, EEPROM_ANTENNA_RX_DEFAULT,
  1880. ANTENNA_B);
  1881. rt2x00_set_field16(&word, EEPROM_ANTENNA_FRAME_TYPE, 0);
  1882. rt2x00_set_field16(&word, EEPROM_ANTENNA_DYN_TXAGC, 0);
  1883. rt2x00_set_field16(&word, EEPROM_ANTENNA_HARDWARE_RADIO, 0);
  1884. rt2x00_set_field16(&word, EEPROM_ANTENNA_RF_TYPE, RF5225);
  1885. rt2x00_eeprom_write(rt2x00dev, EEPROM_ANTENNA, word);
  1886. EEPROM(rt2x00dev, "Antenna: 0x%04x\n", word);
  1887. }
  1888. rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC, &word);
  1889. if (word == 0xffff) {
  1890. rt2x00_set_field16(&word, EEPROM_NIC_ENABLE_DIVERSITY, 0);
  1891. rt2x00_set_field16(&word, EEPROM_NIC_TX_DIVERSITY, 0);
  1892. rt2x00_set_field16(&word, EEPROM_NIC_RX_FIXED, 0);
  1893. rt2x00_set_field16(&word, EEPROM_NIC_TX_FIXED, 0);
  1894. rt2x00_set_field16(&word, EEPROM_NIC_EXTERNAL_LNA_BG, 0);
  1895. rt2x00_set_field16(&word, EEPROM_NIC_CARDBUS_ACCEL, 0);
  1896. rt2x00_set_field16(&word, EEPROM_NIC_EXTERNAL_LNA_A, 0);
  1897. rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC, word);
  1898. EEPROM(rt2x00dev, "NIC: 0x%04x\n", word);
  1899. }
  1900. rt2x00_eeprom_read(rt2x00dev, EEPROM_LED, &word);
  1901. if (word == 0xffff) {
  1902. rt2x00_set_field16(&word, EEPROM_LED_LED_MODE,
  1903. LED_MODE_DEFAULT);
  1904. rt2x00_eeprom_write(rt2x00dev, EEPROM_LED, word);
  1905. EEPROM(rt2x00dev, "Led: 0x%04x\n", word);
  1906. }
  1907. rt2x00_eeprom_read(rt2x00dev, EEPROM_FREQ, &word);
  1908. if (word == 0xffff) {
  1909. rt2x00_set_field16(&word, EEPROM_FREQ_OFFSET, 0);
  1910. rt2x00_set_field16(&word, EEPROM_FREQ_SEQ, 0);
  1911. rt2x00_eeprom_write(rt2x00dev, EEPROM_FREQ, word);
  1912. EEPROM(rt2x00dev, "Freq: 0x%04x\n", word);
  1913. }
  1914. rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_OFFSET_BG, &word);
  1915. if (word == 0xffff) {
  1916. rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_BG_1, 0);
  1917. rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_BG_2, 0);
  1918. rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_OFFSET_BG, word);
  1919. EEPROM(rt2x00dev, "RSSI OFFSET BG: 0x%04x\n", word);
  1920. } else {
  1921. value = rt2x00_get_field16(word, EEPROM_RSSI_OFFSET_BG_1);
  1922. if (value < -10 || value > 10)
  1923. rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_BG_1, 0);
  1924. value = rt2x00_get_field16(word, EEPROM_RSSI_OFFSET_BG_2);
  1925. if (value < -10 || value > 10)
  1926. rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_BG_2, 0);
  1927. rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_OFFSET_BG, word);
  1928. }
  1929. rt2x00_eeprom_read(rt2x00dev, EEPROM_RSSI_OFFSET_A, &word);
  1930. if (word == 0xffff) {
  1931. rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_A_1, 0);
  1932. rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_A_2, 0);
  1933. rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_OFFSET_A, word);
  1934. EEPROM(rt2x00dev, "RSSI OFFSET A: 0x%04x\n", word);
  1935. } else {
  1936. value = rt2x00_get_field16(word, EEPROM_RSSI_OFFSET_A_1);
  1937. if (value < -10 || value > 10)
  1938. rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_A_1, 0);
  1939. value = rt2x00_get_field16(word, EEPROM_RSSI_OFFSET_A_2);
  1940. if (value < -10 || value > 10)
  1941. rt2x00_set_field16(&word, EEPROM_RSSI_OFFSET_A_2, 0);
  1942. rt2x00_eeprom_write(rt2x00dev, EEPROM_RSSI_OFFSET_A, word);
  1943. }
  1944. return 0;
  1945. }
  1946. static int rt61pci_init_eeprom(struct rt2x00_dev *rt2x00dev)
  1947. {
  1948. u32 reg;
  1949. u16 value;
  1950. u16 eeprom;
  1951. /*
  1952. * Read EEPROM word for configuration.
  1953. */
  1954. rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom);
  1955. /*
  1956. * Identify RF chipset.
  1957. */
  1958. value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE);
  1959. rt2x00pci_register_read(rt2x00dev, MAC_CSR0, &reg);
  1960. rt2x00_set_chip_rf(rt2x00dev, value, reg);
  1961. rt2x00_print_chip(rt2x00dev);
  1962. if (!rt2x00_rf(rt2x00dev, RF5225) &&
  1963. !rt2x00_rf(rt2x00dev, RF5325) &&
  1964. !rt2x00_rf(rt2x00dev, RF2527) &&
  1965. !rt2x00_rf(rt2x00dev, RF2529)) {
  1966. ERROR(rt2x00dev, "Invalid RF chipset detected.\n");
  1967. return -ENODEV;
  1968. }
  1969. /*
  1970. * Determine number of antennas.
  1971. */
  1972. if (rt2x00_get_field16(eeprom, EEPROM_ANTENNA_NUM) == 2)
  1973. __set_bit(CONFIG_DOUBLE_ANTENNA, &rt2x00dev->flags);
  1974. /*
  1975. * Identify default antenna configuration.
  1976. */
  1977. rt2x00dev->default_ant.tx =
  1978. rt2x00_get_field16(eeprom, EEPROM_ANTENNA_TX_DEFAULT);
  1979. rt2x00dev->default_ant.rx =
  1980. rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RX_DEFAULT);
  1981. /*
  1982. * Read the Frame type.
  1983. */
  1984. if (rt2x00_get_field16(eeprom, EEPROM_ANTENNA_FRAME_TYPE))
  1985. __set_bit(CONFIG_FRAME_TYPE, &rt2x00dev->flags);
  1986. /*
  1987. * Detect if this device has a hardware controlled radio.
  1988. */
  1989. if (rt2x00_get_field16(eeprom, EEPROM_ANTENNA_HARDWARE_RADIO))
  1990. __set_bit(CONFIG_SUPPORT_HW_BUTTON, &rt2x00dev->flags);
  1991. /*
  1992. * Read frequency offset and RF programming sequence.
  1993. */
  1994. rt2x00_eeprom_read(rt2x00dev, EEPROM_FREQ, &eeprom);
  1995. if (rt2x00_get_field16(eeprom, EEPROM_FREQ_SEQ))
  1996. __set_bit(CONFIG_RF_SEQUENCE, &rt2x00dev->flags);
  1997. rt2x00dev->freq_offset = rt2x00_get_field16(eeprom, EEPROM_FREQ_OFFSET);
  1998. /*
  1999. * Read external LNA informations.
  2000. */
  2001. rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC, &eeprom);
  2002. if (rt2x00_get_field16(eeprom, EEPROM_NIC_EXTERNAL_LNA_A))
  2003. __set_bit(CONFIG_EXTERNAL_LNA_A, &rt2x00dev->flags);
  2004. if (rt2x00_get_field16(eeprom, EEPROM_NIC_EXTERNAL_LNA_BG))
  2005. __set_bit(CONFIG_EXTERNAL_LNA_BG, &rt2x00dev->flags);
  2006. /*
  2007. * When working with a RF2529 chip without double antenna,
  2008. * the antenna settings should be gathered from the NIC
  2009. * eeprom word.
  2010. */
  2011. if (rt2x00_rf(rt2x00dev, RF2529) &&
  2012. !test_bit(CONFIG_DOUBLE_ANTENNA, &rt2x00dev->flags)) {
  2013. rt2x00dev->default_ant.rx =
  2014. ANTENNA_A + rt2x00_get_field16(eeprom, EEPROM_NIC_RX_FIXED);
  2015. rt2x00dev->default_ant.tx =
  2016. ANTENNA_B - rt2x00_get_field16(eeprom, EEPROM_NIC_TX_FIXED);
  2017. if (rt2x00_get_field16(eeprom, EEPROM_NIC_TX_DIVERSITY))
  2018. rt2x00dev->default_ant.tx = ANTENNA_SW_DIVERSITY;
  2019. if (rt2x00_get_field16(eeprom, EEPROM_NIC_ENABLE_DIVERSITY))
  2020. rt2x00dev->default_ant.rx = ANTENNA_SW_DIVERSITY;
  2021. }
  2022. /*
  2023. * Store led settings, for correct led behaviour.
  2024. * If the eeprom value is invalid,
  2025. * switch to default led mode.
  2026. */
  2027. #ifdef CONFIG_RT2X00_LIB_LEDS
  2028. rt2x00_eeprom_read(rt2x00dev, EEPROM_LED, &eeprom);
  2029. value = rt2x00_get_field16(eeprom, EEPROM_LED_LED_MODE);
  2030. rt61pci_init_led(rt2x00dev, &rt2x00dev->led_radio, LED_TYPE_RADIO);
  2031. rt61pci_init_led(rt2x00dev, &rt2x00dev->led_assoc, LED_TYPE_ASSOC);
  2032. if (value == LED_MODE_SIGNAL_STRENGTH)
  2033. rt61pci_init_led(rt2x00dev, &rt2x00dev->led_qual,
  2034. LED_TYPE_QUALITY);
  2035. rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_LED_MODE, value);
  2036. rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_0,
  2037. rt2x00_get_field16(eeprom,
  2038. EEPROM_LED_POLARITY_GPIO_0));
  2039. rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_1,
  2040. rt2x00_get_field16(eeprom,
  2041. EEPROM_LED_POLARITY_GPIO_1));
  2042. rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_2,
  2043. rt2x00_get_field16(eeprom,
  2044. EEPROM_LED_POLARITY_GPIO_2));
  2045. rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_3,
  2046. rt2x00_get_field16(eeprom,
  2047. EEPROM_LED_POLARITY_GPIO_3));
  2048. rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_GPIO_4,
  2049. rt2x00_get_field16(eeprom,
  2050. EEPROM_LED_POLARITY_GPIO_4));
  2051. rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_ACT,
  2052. rt2x00_get_field16(eeprom, EEPROM_LED_POLARITY_ACT));
  2053. rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_READY_BG,
  2054. rt2x00_get_field16(eeprom,
  2055. EEPROM_LED_POLARITY_RDY_G));
  2056. rt2x00_set_field16(&rt2x00dev->led_mcu_reg, MCU_LEDCS_POLARITY_READY_A,
  2057. rt2x00_get_field16(eeprom,
  2058. EEPROM_LED_POLARITY_RDY_A));
  2059. #endif /* CONFIG_RT2X00_LIB_LEDS */
  2060. return 0;
  2061. }
  2062. /*
  2063. * RF value list for RF5225 & RF5325
  2064. * Supports: 2.4 GHz & 5.2 GHz, rf_sequence disabled
  2065. */
  2066. static const struct rf_channel rf_vals_noseq[] = {
  2067. { 1, 0x00002ccc, 0x00004786, 0x00068455, 0x000ffa0b },
  2068. { 2, 0x00002ccc, 0x00004786, 0x00068455, 0x000ffa1f },
  2069. { 3, 0x00002ccc, 0x0000478a, 0x00068455, 0x000ffa0b },
  2070. { 4, 0x00002ccc, 0x0000478a, 0x00068455, 0x000ffa1f },
  2071. { 5, 0x00002ccc, 0x0000478e, 0x00068455, 0x000ffa0b },
  2072. { 6, 0x00002ccc, 0x0000478e, 0x00068455, 0x000ffa1f },
  2073. { 7, 0x00002ccc, 0x00004792, 0x00068455, 0x000ffa0b },
  2074. { 8, 0x00002ccc, 0x00004792, 0x00068455, 0x000ffa1f },
  2075. { 9, 0x00002ccc, 0x00004796, 0x00068455, 0x000ffa0b },
  2076. { 10, 0x00002ccc, 0x00004796, 0x00068455, 0x000ffa1f },
  2077. { 11, 0x00002ccc, 0x0000479a, 0x00068455, 0x000ffa0b },
  2078. { 12, 0x00002ccc, 0x0000479a, 0x00068455, 0x000ffa1f },
  2079. { 13, 0x00002ccc, 0x0000479e, 0x00068455, 0x000ffa0b },
  2080. { 14, 0x00002ccc, 0x000047a2, 0x00068455, 0x000ffa13 },
  2081. /* 802.11 UNI / HyperLan 2 */
  2082. { 36, 0x00002ccc, 0x0000499a, 0x0009be55, 0x000ffa23 },
  2083. { 40, 0x00002ccc, 0x000049a2, 0x0009be55, 0x000ffa03 },
  2084. { 44, 0x00002ccc, 0x000049a6, 0x0009be55, 0x000ffa0b },
  2085. { 48, 0x00002ccc, 0x000049aa, 0x0009be55, 0x000ffa13 },
  2086. { 52, 0x00002ccc, 0x000049ae, 0x0009ae55, 0x000ffa1b },
  2087. { 56, 0x00002ccc, 0x000049b2, 0x0009ae55, 0x000ffa23 },
  2088. { 60, 0x00002ccc, 0x000049ba, 0x0009ae55, 0x000ffa03 },
  2089. { 64, 0x00002ccc, 0x000049be, 0x0009ae55, 0x000ffa0b },
  2090. /* 802.11 HyperLan 2 */
  2091. { 100, 0x00002ccc, 0x00004a2a, 0x000bae55, 0x000ffa03 },
  2092. { 104, 0x00002ccc, 0x00004a2e, 0x000bae55, 0x000ffa0b },
  2093. { 108, 0x00002ccc, 0x00004a32, 0x000bae55, 0x000ffa13 },
  2094. { 112, 0x00002ccc, 0x00004a36, 0x000bae55, 0x000ffa1b },
  2095. { 116, 0x00002ccc, 0x00004a3a, 0x000bbe55, 0x000ffa23 },
  2096. { 120, 0x00002ccc, 0x00004a82, 0x000bbe55, 0x000ffa03 },
  2097. { 124, 0x00002ccc, 0x00004a86, 0x000bbe55, 0x000ffa0b },
  2098. { 128, 0x00002ccc, 0x00004a8a, 0x000bbe55, 0x000ffa13 },
  2099. { 132, 0x00002ccc, 0x00004a8e, 0x000bbe55, 0x000ffa1b },
  2100. { 136, 0x00002ccc, 0x00004a92, 0x000bbe55, 0x000ffa23 },
  2101. /* 802.11 UNII */
  2102. { 140, 0x00002ccc, 0x00004a9a, 0x000bbe55, 0x000ffa03 },
  2103. { 149, 0x00002ccc, 0x00004aa2, 0x000bbe55, 0x000ffa1f },
  2104. { 153, 0x00002ccc, 0x00004aa6, 0x000bbe55, 0x000ffa27 },
  2105. { 157, 0x00002ccc, 0x00004aae, 0x000bbe55, 0x000ffa07 },
  2106. { 161, 0x00002ccc, 0x00004ab2, 0x000bbe55, 0x000ffa0f },
  2107. { 165, 0x00002ccc, 0x00004ab6, 0x000bbe55, 0x000ffa17 },
  2108. /* MMAC(Japan)J52 ch 34,38,42,46 */
  2109. { 34, 0x00002ccc, 0x0000499a, 0x0009be55, 0x000ffa0b },
  2110. { 38, 0x00002ccc, 0x0000499e, 0x0009be55, 0x000ffa13 },
  2111. { 42, 0x00002ccc, 0x000049a2, 0x0009be55, 0x000ffa1b },
  2112. { 46, 0x00002ccc, 0x000049a6, 0x0009be55, 0x000ffa23 },
  2113. };
  2114. /*
  2115. * RF value list for RF5225 & RF5325
  2116. * Supports: 2.4 GHz & 5.2 GHz, rf_sequence enabled
  2117. */
  2118. static const struct rf_channel rf_vals_seq[] = {
  2119. { 1, 0x00002ccc, 0x00004786, 0x00068455, 0x000ffa0b },
  2120. { 2, 0x00002ccc, 0x00004786, 0x00068455, 0x000ffa1f },
  2121. { 3, 0x00002ccc, 0x0000478a, 0x00068455, 0x000ffa0b },
  2122. { 4, 0x00002ccc, 0x0000478a, 0x00068455, 0x000ffa1f },
  2123. { 5, 0x00002ccc, 0x0000478e, 0x00068455, 0x000ffa0b },
  2124. { 6, 0x00002ccc, 0x0000478e, 0x00068455, 0x000ffa1f },
  2125. { 7, 0x00002ccc, 0x00004792, 0x00068455, 0x000ffa0b },
  2126. { 8, 0x00002ccc, 0x00004792, 0x00068455, 0x000ffa1f },
  2127. { 9, 0x00002ccc, 0x00004796, 0x00068455, 0x000ffa0b },
  2128. { 10, 0x00002ccc, 0x00004796, 0x00068455, 0x000ffa1f },
  2129. { 11, 0x00002ccc, 0x0000479a, 0x00068455, 0x000ffa0b },
  2130. { 12, 0x00002ccc, 0x0000479a, 0x00068455, 0x000ffa1f },
  2131. { 13, 0x00002ccc, 0x0000479e, 0x00068455, 0x000ffa0b },
  2132. { 14, 0x00002ccc, 0x000047a2, 0x00068455, 0x000ffa13 },
  2133. /* 802.11 UNI / HyperLan 2 */
  2134. { 36, 0x00002cd4, 0x0004481a, 0x00098455, 0x000c0a03 },
  2135. { 40, 0x00002cd0, 0x00044682, 0x00098455, 0x000c0a03 },
  2136. { 44, 0x00002cd0, 0x00044686, 0x00098455, 0x000c0a1b },
  2137. { 48, 0x00002cd0, 0x0004468e, 0x00098655, 0x000c0a0b },
  2138. { 52, 0x00002cd0, 0x00044692, 0x00098855, 0x000c0a23 },
  2139. { 56, 0x00002cd0, 0x0004469a, 0x00098c55, 0x000c0a13 },
  2140. { 60, 0x00002cd0, 0x000446a2, 0x00098e55, 0x000c0a03 },
  2141. { 64, 0x00002cd0, 0x000446a6, 0x00099255, 0x000c0a1b },
  2142. /* 802.11 HyperLan 2 */
  2143. { 100, 0x00002cd4, 0x0004489a, 0x000b9855, 0x000c0a03 },
  2144. { 104, 0x00002cd4, 0x000448a2, 0x000b9855, 0x000c0a03 },
  2145. { 108, 0x00002cd4, 0x000448aa, 0x000b9855, 0x000c0a03 },
  2146. { 112, 0x00002cd4, 0x000448b2, 0x000b9a55, 0x000c0a03 },
  2147. { 116, 0x00002cd4, 0x000448ba, 0x000b9a55, 0x000c0a03 },
  2148. { 120, 0x00002cd0, 0x00044702, 0x000b9a55, 0x000c0a03 },
  2149. { 124, 0x00002cd0, 0x00044706, 0x000b9a55, 0x000c0a1b },
  2150. { 128, 0x00002cd0, 0x0004470e, 0x000b9c55, 0x000c0a0b },
  2151. { 132, 0x00002cd0, 0x00044712, 0x000b9c55, 0x000c0a23 },
  2152. { 136, 0x00002cd0, 0x0004471a, 0x000b9e55, 0x000c0a13 },
  2153. /* 802.11 UNII */
  2154. { 140, 0x00002cd0, 0x00044722, 0x000b9e55, 0x000c0a03 },
  2155. { 149, 0x00002cd0, 0x0004472e, 0x000ba255, 0x000c0a1b },
  2156. { 153, 0x00002cd0, 0x00044736, 0x000ba255, 0x000c0a0b },
  2157. { 157, 0x00002cd4, 0x0004490a, 0x000ba255, 0x000c0a17 },
  2158. { 161, 0x00002cd4, 0x00044912, 0x000ba255, 0x000c0a17 },
  2159. { 165, 0x00002cd4, 0x0004491a, 0x000ba255, 0x000c0a17 },
  2160. /* MMAC(Japan)J52 ch 34,38,42,46 */
  2161. { 34, 0x00002ccc, 0x0000499a, 0x0009be55, 0x000c0a0b },
  2162. { 38, 0x00002ccc, 0x0000499e, 0x0009be55, 0x000c0a13 },
  2163. { 42, 0x00002ccc, 0x000049a2, 0x0009be55, 0x000c0a1b },
  2164. { 46, 0x00002ccc, 0x000049a6, 0x0009be55, 0x000c0a23 },
  2165. };
  2166. static int rt61pci_probe_hw_mode(struct rt2x00_dev *rt2x00dev)
  2167. {
  2168. struct hw_mode_spec *spec = &rt2x00dev->spec;
  2169. struct channel_info *info;
  2170. char *tx_power;
  2171. unsigned int i;
  2172. /*
  2173. * Disable powersaving as default.
  2174. */
  2175. rt2x00dev->hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
  2176. /*
  2177. * Initialize all hw fields.
  2178. */
  2179. rt2x00dev->hw->flags =
  2180. IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
  2181. IEEE80211_HW_SIGNAL_DBM |
  2182. IEEE80211_HW_SUPPORTS_PS |
  2183. IEEE80211_HW_PS_NULLFUNC_STACK;
  2184. SET_IEEE80211_DEV(rt2x00dev->hw, rt2x00dev->dev);
  2185. SET_IEEE80211_PERM_ADDR(rt2x00dev->hw,
  2186. rt2x00_eeprom_addr(rt2x00dev,
  2187. EEPROM_MAC_ADDR_0));
  2188. /*
  2189. * Initialize hw_mode information.
  2190. */
  2191. spec->supported_bands = SUPPORT_BAND_2GHZ;
  2192. spec->supported_rates = SUPPORT_RATE_CCK | SUPPORT_RATE_OFDM;
  2193. if (!test_bit(CONFIG_RF_SEQUENCE, &rt2x00dev->flags)) {
  2194. spec->num_channels = 14;
  2195. spec->channels = rf_vals_noseq;
  2196. } else {
  2197. spec->num_channels = 14;
  2198. spec->channels = rf_vals_seq;
  2199. }
  2200. if (rt2x00_rf(rt2x00dev, RF5225) || rt2x00_rf(rt2x00dev, RF5325)) {
  2201. spec->supported_bands |= SUPPORT_BAND_5GHZ;
  2202. spec->num_channels = ARRAY_SIZE(rf_vals_seq);
  2203. }
  2204. /*
  2205. * Create channel information array
  2206. */
  2207. info = kzalloc(spec->num_channels * sizeof(*info), GFP_KERNEL);
  2208. if (!info)
  2209. return -ENOMEM;
  2210. spec->channels_info = info;
  2211. tx_power = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_G_START);
  2212. for (i = 0; i < 14; i++)
  2213. info[i].tx_power1 = TXPOWER_FROM_DEV(tx_power[i]);
  2214. if (spec->num_channels > 14) {
  2215. tx_power = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_A_START);
  2216. for (i = 14; i < spec->num_channels; i++)
  2217. info[i].tx_power1 = TXPOWER_FROM_DEV(tx_power[i]);
  2218. }
  2219. return 0;
  2220. }
  2221. static int rt61pci_probe_hw(struct rt2x00_dev *rt2x00dev)
  2222. {
  2223. int retval;
  2224. /*
  2225. * Disable power saving.
  2226. */
  2227. rt2x00pci_register_write(rt2x00dev, SOFT_RESET_CSR, 0x00000007);
  2228. /*
  2229. * Allocate eeprom data.
  2230. */
  2231. retval = rt61pci_validate_eeprom(rt2x00dev);
  2232. if (retval)
  2233. return retval;
  2234. retval = rt61pci_init_eeprom(rt2x00dev);
  2235. if (retval)
  2236. return retval;
  2237. /*
  2238. * Initialize hw specifications.
  2239. */
  2240. retval = rt61pci_probe_hw_mode(rt2x00dev);
  2241. if (retval)
  2242. return retval;
  2243. /*
  2244. * This device has multiple filters for control frames,
  2245. * but has no a separate filter for PS Poll frames.
  2246. */
  2247. __set_bit(DRIVER_SUPPORT_CONTROL_FILTERS, &rt2x00dev->flags);
  2248. /*
  2249. * This device requires firmware and DMA mapped skbs.
  2250. */
  2251. __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags);
  2252. __set_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags);
  2253. if (!modparam_nohwcrypt)
  2254. __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags);
  2255. /*
  2256. * Set the rssi offset.
  2257. */
  2258. rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET;
  2259. return 0;
  2260. }
  2261. /*
  2262. * IEEE80211 stack callback functions.
  2263. */
  2264. static int rt61pci_conf_tx(struct ieee80211_hw *hw, u16 queue_idx,
  2265. const struct ieee80211_tx_queue_params *params)
  2266. {
  2267. struct rt2x00_dev *rt2x00dev = hw->priv;
  2268. struct data_queue *queue;
  2269. struct rt2x00_field32 field;
  2270. int retval;
  2271. u32 reg;
  2272. u32 offset;
  2273. /*
  2274. * First pass the configuration through rt2x00lib, that will
  2275. * update the queue settings and validate the input. After that
  2276. * we are free to update the registers based on the value
  2277. * in the queue parameter.
  2278. */
  2279. retval = rt2x00mac_conf_tx(hw, queue_idx, params);
  2280. if (retval)
  2281. return retval;
  2282. /*
  2283. * We only need to perform additional register initialization
  2284. * for WMM queues.
  2285. */
  2286. if (queue_idx >= 4)
  2287. return 0;
  2288. queue = rt2x00queue_get_queue(rt2x00dev, queue_idx);
  2289. /* Update WMM TXOP register */
  2290. offset = AC_TXOP_CSR0 + (sizeof(u32) * (!!(queue_idx & 2)));
  2291. field.bit_offset = (queue_idx & 1) * 16;
  2292. field.bit_mask = 0xffff << field.bit_offset;
  2293. rt2x00pci_register_read(rt2x00dev, offset, &reg);
  2294. rt2x00_set_field32(&reg, field, queue->txop);
  2295. rt2x00pci_register_write(rt2x00dev, offset, reg);
  2296. /* Update WMM registers */
  2297. field.bit_offset = queue_idx * 4;
  2298. field.bit_mask = 0xf << field.bit_offset;
  2299. rt2x00pci_register_read(rt2x00dev, AIFSN_CSR, &reg);
  2300. rt2x00_set_field32(&reg, field, queue->aifs);
  2301. rt2x00pci_register_write(rt2x00dev, AIFSN_CSR, reg);
  2302. rt2x00pci_register_read(rt2x00dev, CWMIN_CSR, &reg);
  2303. rt2x00_set_field32(&reg, field, queue->cw_min);
  2304. rt2x00pci_register_write(rt2x00dev, CWMIN_CSR, reg);
  2305. rt2x00pci_register_read(rt2x00dev, CWMAX_CSR, &reg);
  2306. rt2x00_set_field32(&reg, field, queue->cw_max);
  2307. rt2x00pci_register_write(rt2x00dev, CWMAX_CSR, reg);
  2308. return 0;
  2309. }
  2310. static u64 rt61pci_get_tsf(struct ieee80211_hw *hw)
  2311. {
  2312. struct rt2x00_dev *rt2x00dev = hw->priv;
  2313. u64 tsf;
  2314. u32 reg;
  2315. rt2x00pci_register_read(rt2x00dev, TXRX_CSR13, &reg);
  2316. tsf = (u64) rt2x00_get_field32(reg, TXRX_CSR13_HIGH_TSFTIMER) << 32;
  2317. rt2x00pci_register_read(rt2x00dev, TXRX_CSR12, &reg);
  2318. tsf |= rt2x00_get_field32(reg, TXRX_CSR12_LOW_TSFTIMER);
  2319. return tsf;
  2320. }
  2321. static const struct ieee80211_ops rt61pci_mac80211_ops = {
  2322. .tx = rt2x00mac_tx,
  2323. .start = rt2x00mac_start,
  2324. .stop = rt2x00mac_stop,
  2325. .add_interface = rt2x00mac_add_interface,
  2326. .remove_interface = rt2x00mac_remove_interface,
  2327. .config = rt2x00mac_config,
  2328. .configure_filter = rt2x00mac_configure_filter,
  2329. .set_tim = rt2x00mac_set_tim,
  2330. .set_key = rt2x00mac_set_key,
  2331. .get_stats = rt2x00mac_get_stats,
  2332. .bss_info_changed = rt2x00mac_bss_info_changed,
  2333. .conf_tx = rt61pci_conf_tx,
  2334. .get_tsf = rt61pci_get_tsf,
  2335. .rfkill_poll = rt2x00mac_rfkill_poll,
  2336. };
  2337. static const struct rt2x00lib_ops rt61pci_rt2x00_ops = {
  2338. .irq_handler = rt61pci_interrupt,
  2339. .probe_hw = rt61pci_probe_hw,
  2340. .get_firmware_name = rt61pci_get_firmware_name,
  2341. .check_firmware = rt61pci_check_firmware,
  2342. .load_firmware = rt61pci_load_firmware,
  2343. .initialize = rt2x00pci_initialize,
  2344. .uninitialize = rt2x00pci_uninitialize,
  2345. .get_entry_state = rt61pci_get_entry_state,
  2346. .clear_entry = rt61pci_clear_entry,
  2347. .set_device_state = rt61pci_set_device_state,
  2348. .rfkill_poll = rt61pci_rfkill_poll,
  2349. .link_stats = rt61pci_link_stats,
  2350. .reset_tuner = rt61pci_reset_tuner,
  2351. .link_tuner = rt61pci_link_tuner,
  2352. .write_tx_desc = rt61pci_write_tx_desc,
  2353. .write_tx_data = rt2x00pci_write_tx_data,
  2354. .write_beacon = rt61pci_write_beacon,
  2355. .kick_tx_queue = rt61pci_kick_tx_queue,
  2356. .kill_tx_queue = rt61pci_kill_tx_queue,
  2357. .fill_rxdone = rt61pci_fill_rxdone,
  2358. .config_shared_key = rt61pci_config_shared_key,
  2359. .config_pairwise_key = rt61pci_config_pairwise_key,
  2360. .config_filter = rt61pci_config_filter,
  2361. .config_intf = rt61pci_config_intf,
  2362. .config_erp = rt61pci_config_erp,
  2363. .config_ant = rt61pci_config_ant,
  2364. .config = rt61pci_config,
  2365. };
  2366. static const struct data_queue_desc rt61pci_queue_rx = {
  2367. .entry_num = RX_ENTRIES,
  2368. .data_size = DATA_FRAME_SIZE,
  2369. .desc_size = RXD_DESC_SIZE,
  2370. .priv_size = sizeof(struct queue_entry_priv_pci),
  2371. };
  2372. static const struct data_queue_desc rt61pci_queue_tx = {
  2373. .entry_num = TX_ENTRIES,
  2374. .data_size = DATA_FRAME_SIZE,
  2375. .desc_size = TXD_DESC_SIZE,
  2376. .priv_size = sizeof(struct queue_entry_priv_pci),
  2377. };
  2378. static const struct data_queue_desc rt61pci_queue_bcn = {
  2379. .entry_num = 4 * BEACON_ENTRIES,
  2380. .data_size = 0, /* No DMA required for beacons */
  2381. .desc_size = TXINFO_SIZE,
  2382. .priv_size = sizeof(struct queue_entry_priv_pci),
  2383. };
  2384. static const struct rt2x00_ops rt61pci_ops = {
  2385. .name = KBUILD_MODNAME,
  2386. .max_sta_intf = 1,
  2387. .max_ap_intf = 4,
  2388. .eeprom_size = EEPROM_SIZE,
  2389. .rf_size = RF_SIZE,
  2390. .tx_queues = NUM_TX_QUEUES,
  2391. .extra_tx_headroom = 0,
  2392. .rx = &rt61pci_queue_rx,
  2393. .tx = &rt61pci_queue_tx,
  2394. .bcn = &rt61pci_queue_bcn,
  2395. .lib = &rt61pci_rt2x00_ops,
  2396. .hw = &rt61pci_mac80211_ops,
  2397. #ifdef CONFIG_RT2X00_LIB_DEBUGFS
  2398. .debugfs = &rt61pci_rt2x00debug,
  2399. #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
  2400. };
  2401. /*
  2402. * RT61pci module information.
  2403. */
  2404. static DEFINE_PCI_DEVICE_TABLE(rt61pci_device_table) = {
  2405. /* RT2561s */
  2406. { PCI_DEVICE(0x1814, 0x0301), PCI_DEVICE_DATA(&rt61pci_ops) },
  2407. /* RT2561 v2 */
  2408. { PCI_DEVICE(0x1814, 0x0302), PCI_DEVICE_DATA(&rt61pci_ops) },
  2409. /* RT2661 */
  2410. { PCI_DEVICE(0x1814, 0x0401), PCI_DEVICE_DATA(&rt61pci_ops) },
  2411. { 0, }
  2412. };
  2413. MODULE_AUTHOR(DRV_PROJECT);
  2414. MODULE_VERSION(DRV_VERSION);
  2415. MODULE_DESCRIPTION("Ralink RT61 PCI & PCMCIA Wireless LAN driver.");
  2416. MODULE_SUPPORTED_DEVICE("Ralink RT2561, RT2561s & RT2661 "
  2417. "PCI & PCMCIA chipset based cards");
  2418. MODULE_DEVICE_TABLE(pci, rt61pci_device_table);
  2419. MODULE_FIRMWARE(FIRMWARE_RT2561);
  2420. MODULE_FIRMWARE(FIRMWARE_RT2561s);
  2421. MODULE_FIRMWARE(FIRMWARE_RT2661);
  2422. MODULE_LICENSE("GPL");
  2423. static struct pci_driver rt61pci_driver = {
  2424. .name = KBUILD_MODNAME,
  2425. .id_table = rt61pci_device_table,
  2426. .probe = rt2x00pci_probe,
  2427. .remove = __devexit_p(rt2x00pci_remove),
  2428. .suspend = rt2x00pci_suspend,
  2429. .resume = rt2x00pci_resume,
  2430. };
  2431. static int __init rt61pci_init(void)
  2432. {
  2433. return pci_register_driver(&rt61pci_driver);
  2434. }
  2435. static void __exit rt61pci_exit(void)
  2436. {
  2437. pci_unregister_driver(&rt61pci_driver);
  2438. }
  2439. module_init(rt61pci_init);
  2440. module_exit(rt61pci_exit);