zd_chip.c 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639
  1. /* ZD1211 USB-WLAN driver for Linux
  2. *
  3. * Copyright (C) 2005-2007 Ulrich Kunitz <kune@deine-taler.de>
  4. * Copyright (C) 2006-2007 Daniel Drake <dsd@gentoo.org>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. /* This file implements all the hardware specific functions for the ZD1211
  21. * and ZD1211B chips. Support for the ZD1211B was possible after Timothy
  22. * Legge sent me a ZD1211B device. Thank you Tim. -- Uli
  23. */
  24. #include <linux/kernel.h>
  25. #include <linux/errno.h>
  26. #include "zd_def.h"
  27. #include "zd_chip.h"
  28. #include "zd_mac.h"
  29. #include "zd_rf.h"
  30. void zd_chip_init(struct zd_chip *chip,
  31. struct ieee80211_hw *hw,
  32. struct usb_interface *intf)
  33. {
  34. memset(chip, 0, sizeof(*chip));
  35. mutex_init(&chip->mutex);
  36. zd_usb_init(&chip->usb, hw, intf);
  37. zd_rf_init(&chip->rf);
  38. }
  39. void zd_chip_clear(struct zd_chip *chip)
  40. {
  41. ZD_ASSERT(!mutex_is_locked(&chip->mutex));
  42. zd_usb_clear(&chip->usb);
  43. zd_rf_clear(&chip->rf);
  44. mutex_destroy(&chip->mutex);
  45. ZD_MEMCLEAR(chip, sizeof(*chip));
  46. }
  47. static int scnprint_mac_oui(struct zd_chip *chip, char *buffer, size_t size)
  48. {
  49. u8 *addr = zd_mac_get_perm_addr(zd_chip_to_mac(chip));
  50. return scnprintf(buffer, size, "%02x-%02x-%02x",
  51. addr[0], addr[1], addr[2]);
  52. }
  53. /* Prints an identifier line, which will support debugging. */
  54. static int scnprint_id(struct zd_chip *chip, char *buffer, size_t size)
  55. {
  56. int i = 0;
  57. i = scnprintf(buffer, size, "zd1211%s chip ",
  58. zd_chip_is_zd1211b(chip) ? "b" : "");
  59. i += zd_usb_scnprint_id(&chip->usb, buffer+i, size-i);
  60. i += scnprintf(buffer+i, size-i, " ");
  61. i += scnprint_mac_oui(chip, buffer+i, size-i);
  62. i += scnprintf(buffer+i, size-i, " ");
  63. i += zd_rf_scnprint_id(&chip->rf, buffer+i, size-i);
  64. i += scnprintf(buffer+i, size-i, " pa%1x %c%c%c%c%c", chip->pa_type,
  65. chip->patch_cck_gain ? 'g' : '-',
  66. chip->patch_cr157 ? '7' : '-',
  67. chip->patch_6m_band_edge ? '6' : '-',
  68. chip->new_phy_layout ? 'N' : '-',
  69. chip->al2230s_bit ? 'S' : '-');
  70. return i;
  71. }
  72. static void print_id(struct zd_chip *chip)
  73. {
  74. char buffer[80];
  75. scnprint_id(chip, buffer, sizeof(buffer));
  76. buffer[sizeof(buffer)-1] = 0;
  77. dev_info(zd_chip_dev(chip), "%s\n", buffer);
  78. }
  79. static zd_addr_t inc_addr(zd_addr_t addr)
  80. {
  81. u16 a = (u16)addr;
  82. /* Control registers use byte addressing, but everything else uses word
  83. * addressing. */
  84. if ((a & 0xf000) == CR_START)
  85. a += 2;
  86. else
  87. a += 1;
  88. return (zd_addr_t)a;
  89. }
  90. /* Read a variable number of 32-bit values. Parameter count is not allowed to
  91. * exceed USB_MAX_IOREAD32_COUNT.
  92. */
  93. int zd_ioread32v_locked(struct zd_chip *chip, u32 *values, const zd_addr_t *addr,
  94. unsigned int count)
  95. {
  96. int r;
  97. int i;
  98. zd_addr_t *a16;
  99. u16 *v16;
  100. unsigned int count16;
  101. if (count > USB_MAX_IOREAD32_COUNT)
  102. return -EINVAL;
  103. /* Allocate a single memory block for values and addresses. */
  104. count16 = 2*count;
  105. a16 = (zd_addr_t *) kmalloc(count16 * (sizeof(zd_addr_t) + sizeof(u16)),
  106. GFP_KERNEL);
  107. if (!a16) {
  108. dev_dbg_f(zd_chip_dev(chip),
  109. "error ENOMEM in allocation of a16\n");
  110. r = -ENOMEM;
  111. goto out;
  112. }
  113. v16 = (u16 *)(a16 + count16);
  114. for (i = 0; i < count; i++) {
  115. int j = 2*i;
  116. /* We read the high word always first. */
  117. a16[j] = inc_addr(addr[i]);
  118. a16[j+1] = addr[i];
  119. }
  120. r = zd_ioread16v_locked(chip, v16, a16, count16);
  121. if (r) {
  122. dev_dbg_f(zd_chip_dev(chip),
  123. "error: zd_ioread16v_locked. Error number %d\n", r);
  124. goto out;
  125. }
  126. for (i = 0; i < count; i++) {
  127. int j = 2*i;
  128. values[i] = (v16[j] << 16) | v16[j+1];
  129. }
  130. out:
  131. kfree((void *)a16);
  132. return r;
  133. }
  134. int _zd_iowrite32v_locked(struct zd_chip *chip, const struct zd_ioreq32 *ioreqs,
  135. unsigned int count)
  136. {
  137. int i, j, r;
  138. struct zd_ioreq16 *ioreqs16;
  139. unsigned int count16;
  140. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  141. if (count == 0)
  142. return 0;
  143. if (count > USB_MAX_IOWRITE32_COUNT)
  144. return -EINVAL;
  145. /* Allocate a single memory block for values and addresses. */
  146. count16 = 2*count;
  147. ioreqs16 = kmalloc(count16 * sizeof(struct zd_ioreq16), GFP_KERNEL);
  148. if (!ioreqs16) {
  149. r = -ENOMEM;
  150. dev_dbg_f(zd_chip_dev(chip),
  151. "error %d in ioreqs16 allocation\n", r);
  152. goto out;
  153. }
  154. for (i = 0; i < count; i++) {
  155. j = 2*i;
  156. /* We write the high word always first. */
  157. ioreqs16[j].value = ioreqs[i].value >> 16;
  158. ioreqs16[j].addr = inc_addr(ioreqs[i].addr);
  159. ioreqs16[j+1].value = ioreqs[i].value;
  160. ioreqs16[j+1].addr = ioreqs[i].addr;
  161. }
  162. r = zd_usb_iowrite16v(&chip->usb, ioreqs16, count16);
  163. #ifdef DEBUG
  164. if (r) {
  165. dev_dbg_f(zd_chip_dev(chip),
  166. "error %d in zd_usb_write16v\n", r);
  167. }
  168. #endif /* DEBUG */
  169. out:
  170. kfree(ioreqs16);
  171. return r;
  172. }
  173. int zd_iowrite16a_locked(struct zd_chip *chip,
  174. const struct zd_ioreq16 *ioreqs, unsigned int count)
  175. {
  176. int r;
  177. unsigned int i, j, t, max;
  178. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  179. for (i = 0; i < count; i += j + t) {
  180. t = 0;
  181. max = count-i;
  182. if (max > USB_MAX_IOWRITE16_COUNT)
  183. max = USB_MAX_IOWRITE16_COUNT;
  184. for (j = 0; j < max; j++) {
  185. if (!ioreqs[i+j].addr) {
  186. t = 1;
  187. break;
  188. }
  189. }
  190. r = zd_usb_iowrite16v(&chip->usb, &ioreqs[i], j);
  191. if (r) {
  192. dev_dbg_f(zd_chip_dev(chip),
  193. "error zd_usb_iowrite16v. Error number %d\n",
  194. r);
  195. return r;
  196. }
  197. }
  198. return 0;
  199. }
  200. /* Writes a variable number of 32 bit registers. The functions will split
  201. * that in several USB requests. A split can be forced by inserting an IO
  202. * request with an zero address field.
  203. */
  204. int zd_iowrite32a_locked(struct zd_chip *chip,
  205. const struct zd_ioreq32 *ioreqs, unsigned int count)
  206. {
  207. int r;
  208. unsigned int i, j, t, max;
  209. for (i = 0; i < count; i += j + t) {
  210. t = 0;
  211. max = count-i;
  212. if (max > USB_MAX_IOWRITE32_COUNT)
  213. max = USB_MAX_IOWRITE32_COUNT;
  214. for (j = 0; j < max; j++) {
  215. if (!ioreqs[i+j].addr) {
  216. t = 1;
  217. break;
  218. }
  219. }
  220. r = _zd_iowrite32v_locked(chip, &ioreqs[i], j);
  221. if (r) {
  222. dev_dbg_f(zd_chip_dev(chip),
  223. "error _zd_iowrite32v_locked."
  224. " Error number %d\n", r);
  225. return r;
  226. }
  227. }
  228. return 0;
  229. }
  230. int zd_ioread16(struct zd_chip *chip, zd_addr_t addr, u16 *value)
  231. {
  232. int r;
  233. mutex_lock(&chip->mutex);
  234. r = zd_ioread16_locked(chip, value, addr);
  235. mutex_unlock(&chip->mutex);
  236. return r;
  237. }
  238. int zd_ioread32(struct zd_chip *chip, zd_addr_t addr, u32 *value)
  239. {
  240. int r;
  241. mutex_lock(&chip->mutex);
  242. r = zd_ioread32_locked(chip, value, addr);
  243. mutex_unlock(&chip->mutex);
  244. return r;
  245. }
  246. int zd_iowrite16(struct zd_chip *chip, zd_addr_t addr, u16 value)
  247. {
  248. int r;
  249. mutex_lock(&chip->mutex);
  250. r = zd_iowrite16_locked(chip, value, addr);
  251. mutex_unlock(&chip->mutex);
  252. return r;
  253. }
  254. int zd_iowrite32(struct zd_chip *chip, zd_addr_t addr, u32 value)
  255. {
  256. int r;
  257. mutex_lock(&chip->mutex);
  258. r = zd_iowrite32_locked(chip, value, addr);
  259. mutex_unlock(&chip->mutex);
  260. return r;
  261. }
  262. int zd_ioread32v(struct zd_chip *chip, const zd_addr_t *addresses,
  263. u32 *values, unsigned int count)
  264. {
  265. int r;
  266. mutex_lock(&chip->mutex);
  267. r = zd_ioread32v_locked(chip, values, addresses, count);
  268. mutex_unlock(&chip->mutex);
  269. return r;
  270. }
  271. int zd_iowrite32a(struct zd_chip *chip, const struct zd_ioreq32 *ioreqs,
  272. unsigned int count)
  273. {
  274. int r;
  275. mutex_lock(&chip->mutex);
  276. r = zd_iowrite32a_locked(chip, ioreqs, count);
  277. mutex_unlock(&chip->mutex);
  278. return r;
  279. }
  280. static int read_pod(struct zd_chip *chip, u8 *rf_type)
  281. {
  282. int r;
  283. u32 value;
  284. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  285. r = zd_ioread32_locked(chip, &value, E2P_POD);
  286. if (r)
  287. goto error;
  288. dev_dbg_f(zd_chip_dev(chip), "E2P_POD %#010x\n", value);
  289. /* FIXME: AL2230 handling (Bit 7 in POD) */
  290. *rf_type = value & 0x0f;
  291. chip->pa_type = (value >> 16) & 0x0f;
  292. chip->patch_cck_gain = (value >> 8) & 0x1;
  293. chip->patch_cr157 = (value >> 13) & 0x1;
  294. chip->patch_6m_band_edge = (value >> 21) & 0x1;
  295. chip->new_phy_layout = (value >> 31) & 0x1;
  296. chip->al2230s_bit = (value >> 7) & 0x1;
  297. chip->link_led = ((value >> 4) & 1) ? LED1 : LED2;
  298. chip->supports_tx_led = 1;
  299. if (value & (1 << 24)) { /* LED scenario */
  300. if (value & (1 << 29))
  301. chip->supports_tx_led = 0;
  302. }
  303. dev_dbg_f(zd_chip_dev(chip),
  304. "RF %s %#01x PA type %#01x patch CCK %d patch CR157 %d "
  305. "patch 6M %d new PHY %d link LED%d tx led %d\n",
  306. zd_rf_name(*rf_type), *rf_type,
  307. chip->pa_type, chip->patch_cck_gain,
  308. chip->patch_cr157, chip->patch_6m_band_edge,
  309. chip->new_phy_layout,
  310. chip->link_led == LED1 ? 1 : 2,
  311. chip->supports_tx_led);
  312. return 0;
  313. error:
  314. *rf_type = 0;
  315. chip->pa_type = 0;
  316. chip->patch_cck_gain = 0;
  317. chip->patch_cr157 = 0;
  318. chip->patch_6m_band_edge = 0;
  319. chip->new_phy_layout = 0;
  320. return r;
  321. }
  322. /* MAC address: if custom mac addresses are to to be used CR_MAC_ADDR_P1 and
  323. * CR_MAC_ADDR_P2 must be overwritten
  324. */
  325. int zd_write_mac_addr(struct zd_chip *chip, const u8 *mac_addr)
  326. {
  327. int r;
  328. struct zd_ioreq32 reqs[2] = {
  329. [0] = { .addr = CR_MAC_ADDR_P1 },
  330. [1] = { .addr = CR_MAC_ADDR_P2 },
  331. };
  332. if (mac_addr) {
  333. reqs[0].value = (mac_addr[3] << 24)
  334. | (mac_addr[2] << 16)
  335. | (mac_addr[1] << 8)
  336. | mac_addr[0];
  337. reqs[1].value = (mac_addr[5] << 8)
  338. | mac_addr[4];
  339. dev_dbg_f(zd_chip_dev(chip), "mac addr %pM\n", mac_addr);
  340. } else {
  341. dev_dbg_f(zd_chip_dev(chip), "set NULL mac\n");
  342. }
  343. mutex_lock(&chip->mutex);
  344. r = zd_iowrite32a_locked(chip, reqs, ARRAY_SIZE(reqs));
  345. mutex_unlock(&chip->mutex);
  346. return r;
  347. }
  348. int zd_read_regdomain(struct zd_chip *chip, u8 *regdomain)
  349. {
  350. int r;
  351. u32 value;
  352. mutex_lock(&chip->mutex);
  353. r = zd_ioread32_locked(chip, &value, E2P_SUBID);
  354. mutex_unlock(&chip->mutex);
  355. if (r)
  356. return r;
  357. *regdomain = value >> 16;
  358. dev_dbg_f(zd_chip_dev(chip), "regdomain: %#04x\n", *regdomain);
  359. return 0;
  360. }
  361. static int read_values(struct zd_chip *chip, u8 *values, size_t count,
  362. zd_addr_t e2p_addr, u32 guard)
  363. {
  364. int r;
  365. int i;
  366. u32 v;
  367. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  368. for (i = 0;;) {
  369. r = zd_ioread32_locked(chip, &v,
  370. (zd_addr_t)((u16)e2p_addr+i/2));
  371. if (r)
  372. return r;
  373. v -= guard;
  374. if (i+4 < count) {
  375. values[i++] = v;
  376. values[i++] = v >> 8;
  377. values[i++] = v >> 16;
  378. values[i++] = v >> 24;
  379. continue;
  380. }
  381. for (;i < count; i++)
  382. values[i] = v >> (8*(i%3));
  383. return 0;
  384. }
  385. }
  386. static int read_pwr_cal_values(struct zd_chip *chip)
  387. {
  388. return read_values(chip, chip->pwr_cal_values,
  389. E2P_CHANNEL_COUNT, E2P_PWR_CAL_VALUE1,
  390. 0);
  391. }
  392. static int read_pwr_int_values(struct zd_chip *chip)
  393. {
  394. return read_values(chip, chip->pwr_int_values,
  395. E2P_CHANNEL_COUNT, E2P_PWR_INT_VALUE1,
  396. E2P_PWR_INT_GUARD);
  397. }
  398. static int read_ofdm_cal_values(struct zd_chip *chip)
  399. {
  400. int r;
  401. int i;
  402. static const zd_addr_t addresses[] = {
  403. E2P_36M_CAL_VALUE1,
  404. E2P_48M_CAL_VALUE1,
  405. E2P_54M_CAL_VALUE1,
  406. };
  407. for (i = 0; i < 3; i++) {
  408. r = read_values(chip, chip->ofdm_cal_values[i],
  409. E2P_CHANNEL_COUNT, addresses[i], 0);
  410. if (r)
  411. return r;
  412. }
  413. return 0;
  414. }
  415. static int read_cal_int_tables(struct zd_chip *chip)
  416. {
  417. int r;
  418. r = read_pwr_cal_values(chip);
  419. if (r)
  420. return r;
  421. r = read_pwr_int_values(chip);
  422. if (r)
  423. return r;
  424. r = read_ofdm_cal_values(chip);
  425. if (r)
  426. return r;
  427. return 0;
  428. }
  429. /* phy means physical registers */
  430. int zd_chip_lock_phy_regs(struct zd_chip *chip)
  431. {
  432. int r;
  433. u32 tmp;
  434. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  435. r = zd_ioread32_locked(chip, &tmp, CR_REG1);
  436. if (r) {
  437. dev_err(zd_chip_dev(chip), "error ioread32(CR_REG1): %d\n", r);
  438. return r;
  439. }
  440. tmp &= ~UNLOCK_PHY_REGS;
  441. r = zd_iowrite32_locked(chip, tmp, CR_REG1);
  442. if (r)
  443. dev_err(zd_chip_dev(chip), "error iowrite32(CR_REG1): %d\n", r);
  444. return r;
  445. }
  446. int zd_chip_unlock_phy_regs(struct zd_chip *chip)
  447. {
  448. int r;
  449. u32 tmp;
  450. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  451. r = zd_ioread32_locked(chip, &tmp, CR_REG1);
  452. if (r) {
  453. dev_err(zd_chip_dev(chip),
  454. "error ioread32(CR_REG1): %d\n", r);
  455. return r;
  456. }
  457. tmp |= UNLOCK_PHY_REGS;
  458. r = zd_iowrite32_locked(chip, tmp, CR_REG1);
  459. if (r)
  460. dev_err(zd_chip_dev(chip), "error iowrite32(CR_REG1): %d\n", r);
  461. return r;
  462. }
  463. /* CR157 can be optionally patched by the EEPROM for original ZD1211 */
  464. static int patch_cr157(struct zd_chip *chip)
  465. {
  466. int r;
  467. u16 value;
  468. if (!chip->patch_cr157)
  469. return 0;
  470. r = zd_ioread16_locked(chip, &value, E2P_PHY_REG);
  471. if (r)
  472. return r;
  473. dev_dbg_f(zd_chip_dev(chip), "patching value %x\n", value >> 8);
  474. return zd_iowrite32_locked(chip, value >> 8, CR157);
  475. }
  476. /*
  477. * 6M band edge can be optionally overwritten for certain RF's
  478. * Vendor driver says: for FCC regulation, enabled per HWFeature 6M band edge
  479. * bit (for AL2230, AL2230S)
  480. */
  481. static int patch_6m_band_edge(struct zd_chip *chip, u8 channel)
  482. {
  483. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  484. if (!chip->patch_6m_band_edge)
  485. return 0;
  486. return zd_rf_patch_6m_band_edge(&chip->rf, channel);
  487. }
  488. /* Generic implementation of 6M band edge patching, used by most RFs via
  489. * zd_rf_generic_patch_6m() */
  490. int zd_chip_generic_patch_6m_band(struct zd_chip *chip, int channel)
  491. {
  492. struct zd_ioreq16 ioreqs[] = {
  493. { CR128, 0x14 }, { CR129, 0x12 }, { CR130, 0x10 },
  494. { CR47, 0x1e },
  495. };
  496. /* FIXME: Channel 11 is not the edge for all regulatory domains. */
  497. if (channel == 1 || channel == 11)
  498. ioreqs[0].value = 0x12;
  499. dev_dbg_f(zd_chip_dev(chip), "patching for channel %d\n", channel);
  500. return zd_iowrite16a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  501. }
  502. static int zd1211_hw_reset_phy(struct zd_chip *chip)
  503. {
  504. static const struct zd_ioreq16 ioreqs[] = {
  505. { CR0, 0x0a }, { CR1, 0x06 }, { CR2, 0x26 },
  506. { CR3, 0x38 }, { CR4, 0x80 }, { CR9, 0xa0 },
  507. { CR10, 0x81 }, { CR11, 0x00 }, { CR12, 0x7f },
  508. { CR13, 0x8c }, { CR14, 0x80 }, { CR15, 0x3d },
  509. { CR16, 0x20 }, { CR17, 0x1e }, { CR18, 0x0a },
  510. { CR19, 0x48 }, { CR20, 0x0c }, { CR21, 0x0c },
  511. { CR22, 0x23 }, { CR23, 0x90 }, { CR24, 0x14 },
  512. { CR25, 0x40 }, { CR26, 0x10 }, { CR27, 0x19 },
  513. { CR28, 0x7f }, { CR29, 0x80 }, { CR30, 0x4b },
  514. { CR31, 0x60 }, { CR32, 0x43 }, { CR33, 0x08 },
  515. { CR34, 0x06 }, { CR35, 0x0a }, { CR36, 0x00 },
  516. { CR37, 0x00 }, { CR38, 0x38 }, { CR39, 0x0c },
  517. { CR40, 0x84 }, { CR41, 0x2a }, { CR42, 0x80 },
  518. { CR43, 0x10 }, { CR44, 0x12 }, { CR46, 0xff },
  519. { CR47, 0x1E }, { CR48, 0x26 }, { CR49, 0x5b },
  520. { CR64, 0xd0 }, { CR65, 0x04 }, { CR66, 0x58 },
  521. { CR67, 0xc9 }, { CR68, 0x88 }, { CR69, 0x41 },
  522. { CR70, 0x23 }, { CR71, 0x10 }, { CR72, 0xff },
  523. { CR73, 0x32 }, { CR74, 0x30 }, { CR75, 0x65 },
  524. { CR76, 0x41 }, { CR77, 0x1b }, { CR78, 0x30 },
  525. { CR79, 0x68 }, { CR80, 0x64 }, { CR81, 0x64 },
  526. { CR82, 0x00 }, { CR83, 0x00 }, { CR84, 0x00 },
  527. { CR85, 0x02 }, { CR86, 0x00 }, { CR87, 0x00 },
  528. { CR88, 0xff }, { CR89, 0xfc }, { CR90, 0x00 },
  529. { CR91, 0x00 }, { CR92, 0x00 }, { CR93, 0x08 },
  530. { CR94, 0x00 }, { CR95, 0x00 }, { CR96, 0xff },
  531. { CR97, 0xe7 }, { CR98, 0x00 }, { CR99, 0x00 },
  532. { CR100, 0x00 }, { CR101, 0xae }, { CR102, 0x02 },
  533. { CR103, 0x00 }, { CR104, 0x03 }, { CR105, 0x65 },
  534. { CR106, 0x04 }, { CR107, 0x00 }, { CR108, 0x0a },
  535. { CR109, 0xaa }, { CR110, 0xaa }, { CR111, 0x25 },
  536. { CR112, 0x25 }, { CR113, 0x00 }, { CR119, 0x1e },
  537. { CR125, 0x90 }, { CR126, 0x00 }, { CR127, 0x00 },
  538. { },
  539. { CR5, 0x00 }, { CR6, 0x00 }, { CR7, 0x00 },
  540. { CR8, 0x00 }, { CR9, 0x20 }, { CR12, 0xf0 },
  541. { CR20, 0x0e }, { CR21, 0x0e }, { CR27, 0x10 },
  542. { CR44, 0x33 }, { CR47, 0x1E }, { CR83, 0x24 },
  543. { CR84, 0x04 }, { CR85, 0x00 }, { CR86, 0x0C },
  544. { CR87, 0x12 }, { CR88, 0x0C }, { CR89, 0x00 },
  545. { CR90, 0x10 }, { CR91, 0x08 }, { CR93, 0x00 },
  546. { CR94, 0x01 }, { CR95, 0x00 }, { CR96, 0x50 },
  547. { CR97, 0x37 }, { CR98, 0x35 }, { CR101, 0x13 },
  548. { CR102, 0x27 }, { CR103, 0x27 }, { CR104, 0x18 },
  549. { CR105, 0x12 }, { CR109, 0x27 }, { CR110, 0x27 },
  550. { CR111, 0x27 }, { CR112, 0x27 }, { CR113, 0x27 },
  551. { CR114, 0x27 }, { CR115, 0x26 }, { CR116, 0x24 },
  552. { CR117, 0xfc }, { CR118, 0xfa }, { CR120, 0x4f },
  553. { CR125, 0xaa }, { CR127, 0x03 }, { CR128, 0x14 },
  554. { CR129, 0x12 }, { CR130, 0x10 }, { CR131, 0x0C },
  555. { CR136, 0xdf }, { CR137, 0x40 }, { CR138, 0xa0 },
  556. { CR139, 0xb0 }, { CR140, 0x99 }, { CR141, 0x82 },
  557. { CR142, 0x54 }, { CR143, 0x1c }, { CR144, 0x6c },
  558. { CR147, 0x07 }, { CR148, 0x4c }, { CR149, 0x50 },
  559. { CR150, 0x0e }, { CR151, 0x18 }, { CR160, 0xfe },
  560. { CR161, 0xee }, { CR162, 0xaa }, { CR163, 0xfa },
  561. { CR164, 0xfa }, { CR165, 0xea }, { CR166, 0xbe },
  562. { CR167, 0xbe }, { CR168, 0x6a }, { CR169, 0xba },
  563. { CR170, 0xba }, { CR171, 0xba },
  564. /* Note: CR204 must lead the CR203 */
  565. { CR204, 0x7d },
  566. { },
  567. { CR203, 0x30 },
  568. };
  569. int r, t;
  570. dev_dbg_f(zd_chip_dev(chip), "\n");
  571. r = zd_chip_lock_phy_regs(chip);
  572. if (r)
  573. goto out;
  574. r = zd_iowrite16a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  575. if (r)
  576. goto unlock;
  577. r = patch_cr157(chip);
  578. unlock:
  579. t = zd_chip_unlock_phy_regs(chip);
  580. if (t && !r)
  581. r = t;
  582. out:
  583. return r;
  584. }
  585. static int zd1211b_hw_reset_phy(struct zd_chip *chip)
  586. {
  587. static const struct zd_ioreq16 ioreqs[] = {
  588. { CR0, 0x14 }, { CR1, 0x06 }, { CR2, 0x26 },
  589. { CR3, 0x38 }, { CR4, 0x80 }, { CR9, 0xe0 },
  590. { CR10, 0x81 },
  591. /* power control { { CR11, 1 << 6 }, */
  592. { CR11, 0x00 },
  593. { CR12, 0xf0 }, { CR13, 0x8c }, { CR14, 0x80 },
  594. { CR15, 0x3d }, { CR16, 0x20 }, { CR17, 0x1e },
  595. { CR18, 0x0a }, { CR19, 0x48 },
  596. { CR20, 0x10 }, /* Org:0x0E, ComTrend:RalLink AP */
  597. { CR21, 0x0e }, { CR22, 0x23 }, { CR23, 0x90 },
  598. { CR24, 0x14 }, { CR25, 0x40 }, { CR26, 0x10 },
  599. { CR27, 0x10 }, { CR28, 0x7f }, { CR29, 0x80 },
  600. { CR30, 0x4b }, /* ASIC/FWT, no jointly decoder */
  601. { CR31, 0x60 }, { CR32, 0x43 }, { CR33, 0x08 },
  602. { CR34, 0x06 }, { CR35, 0x0a }, { CR36, 0x00 },
  603. { CR37, 0x00 }, { CR38, 0x38 }, { CR39, 0x0c },
  604. { CR40, 0x84 }, { CR41, 0x2a }, { CR42, 0x80 },
  605. { CR43, 0x10 }, { CR44, 0x33 }, { CR46, 0xff },
  606. { CR47, 0x1E }, { CR48, 0x26 }, { CR49, 0x5b },
  607. { CR64, 0xd0 }, { CR65, 0x04 }, { CR66, 0x58 },
  608. { CR67, 0xc9 }, { CR68, 0x88 }, { CR69, 0x41 },
  609. { CR70, 0x23 }, { CR71, 0x10 }, { CR72, 0xff },
  610. { CR73, 0x32 }, { CR74, 0x30 }, { CR75, 0x65 },
  611. { CR76, 0x41 }, { CR77, 0x1b }, { CR78, 0x30 },
  612. { CR79, 0xf0 }, { CR80, 0x64 }, { CR81, 0x64 },
  613. { CR82, 0x00 }, { CR83, 0x24 }, { CR84, 0x04 },
  614. { CR85, 0x00 }, { CR86, 0x0c }, { CR87, 0x12 },
  615. { CR88, 0x0c }, { CR89, 0x00 }, { CR90, 0x58 },
  616. { CR91, 0x04 }, { CR92, 0x00 }, { CR93, 0x00 },
  617. { CR94, 0x01 },
  618. { CR95, 0x20 }, /* ZD1211B */
  619. { CR96, 0x50 }, { CR97, 0x37 }, { CR98, 0x35 },
  620. { CR99, 0x00 }, { CR100, 0x01 }, { CR101, 0x13 },
  621. { CR102, 0x27 }, { CR103, 0x27 }, { CR104, 0x18 },
  622. { CR105, 0x12 }, { CR106, 0x04 }, { CR107, 0x00 },
  623. { CR108, 0x0a }, { CR109, 0x27 }, { CR110, 0x27 },
  624. { CR111, 0x27 }, { CR112, 0x27 }, { CR113, 0x27 },
  625. { CR114, 0x27 }, { CR115, 0x26 }, { CR116, 0x24 },
  626. { CR117, 0xfc }, { CR118, 0xfa }, { CR119, 0x1e },
  627. { CR125, 0x90 }, { CR126, 0x00 }, { CR127, 0x00 },
  628. { CR128, 0x14 }, { CR129, 0x12 }, { CR130, 0x10 },
  629. { CR131, 0x0c }, { CR136, 0xdf }, { CR137, 0xa0 },
  630. { CR138, 0xa8 }, { CR139, 0xb4 }, { CR140, 0x98 },
  631. { CR141, 0x82 }, { CR142, 0x53 }, { CR143, 0x1c },
  632. { CR144, 0x6c }, { CR147, 0x07 }, { CR148, 0x40 },
  633. { CR149, 0x40 }, /* Org:0x50 ComTrend:RalLink AP */
  634. { CR150, 0x14 }, /* Org:0x0E ComTrend:RalLink AP */
  635. { CR151, 0x18 }, { CR159, 0x70 }, { CR160, 0xfe },
  636. { CR161, 0xee }, { CR162, 0xaa }, { CR163, 0xfa },
  637. { CR164, 0xfa }, { CR165, 0xea }, { CR166, 0xbe },
  638. { CR167, 0xbe }, { CR168, 0x6a }, { CR169, 0xba },
  639. { CR170, 0xba }, { CR171, 0xba },
  640. /* Note: CR204 must lead the CR203 */
  641. { CR204, 0x7d },
  642. {},
  643. { CR203, 0x30 },
  644. };
  645. int r, t;
  646. dev_dbg_f(zd_chip_dev(chip), "\n");
  647. r = zd_chip_lock_phy_regs(chip);
  648. if (r)
  649. goto out;
  650. r = zd_iowrite16a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  651. t = zd_chip_unlock_phy_regs(chip);
  652. if (t && !r)
  653. r = t;
  654. out:
  655. return r;
  656. }
  657. static int hw_reset_phy(struct zd_chip *chip)
  658. {
  659. return zd_chip_is_zd1211b(chip) ? zd1211b_hw_reset_phy(chip) :
  660. zd1211_hw_reset_phy(chip);
  661. }
  662. static int zd1211_hw_init_hmac(struct zd_chip *chip)
  663. {
  664. static const struct zd_ioreq32 ioreqs[] = {
  665. { CR_ZD1211_RETRY_MAX, 0x2 },
  666. { CR_RX_THRESHOLD, 0x000c0640 },
  667. };
  668. dev_dbg_f(zd_chip_dev(chip), "\n");
  669. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  670. return zd_iowrite32a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  671. }
  672. static int zd1211b_hw_init_hmac(struct zd_chip *chip)
  673. {
  674. static const struct zd_ioreq32 ioreqs[] = {
  675. { CR_ZD1211B_RETRY_MAX, 0x02020202 },
  676. { CR_ZD1211B_CWIN_MAX_MIN_AC0, 0x007f003f },
  677. { CR_ZD1211B_CWIN_MAX_MIN_AC1, 0x007f003f },
  678. { CR_ZD1211B_CWIN_MAX_MIN_AC2, 0x003f001f },
  679. { CR_ZD1211B_CWIN_MAX_MIN_AC3, 0x001f000f },
  680. { CR_ZD1211B_AIFS_CTL1, 0x00280028 },
  681. { CR_ZD1211B_AIFS_CTL2, 0x008C003C },
  682. { CR_ZD1211B_TXOP, 0x01800824 },
  683. { CR_RX_THRESHOLD, 0x000c0eff, },
  684. };
  685. dev_dbg_f(zd_chip_dev(chip), "\n");
  686. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  687. return zd_iowrite32a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  688. }
  689. static int hw_init_hmac(struct zd_chip *chip)
  690. {
  691. int r;
  692. static const struct zd_ioreq32 ioreqs[] = {
  693. { CR_ACK_TIMEOUT_EXT, 0x20 },
  694. { CR_ADDA_MBIAS_WARMTIME, 0x30000808 },
  695. { CR_SNIFFER_ON, 0 },
  696. { CR_RX_FILTER, STA_RX_FILTER },
  697. { CR_GROUP_HASH_P1, 0x00 },
  698. { CR_GROUP_HASH_P2, 0x80000000 },
  699. { CR_REG1, 0xa4 },
  700. { CR_ADDA_PWR_DWN, 0x7f },
  701. { CR_BCN_PLCP_CFG, 0x00f00401 },
  702. { CR_PHY_DELAY, 0x00 },
  703. { CR_ACK_TIMEOUT_EXT, 0x80 },
  704. { CR_ADDA_PWR_DWN, 0x00 },
  705. { CR_ACK_TIME_80211, 0x100 },
  706. { CR_RX_PE_DELAY, 0x70 },
  707. { CR_PS_CTRL, 0x10000000 },
  708. { CR_RTS_CTS_RATE, 0x02030203 },
  709. { CR_AFTER_PNP, 0x1 },
  710. { CR_WEP_PROTECT, 0x114 },
  711. { CR_IFS_VALUE, IFS_VALUE_DEFAULT },
  712. { CR_CAM_MODE, MODE_AP_WDS},
  713. };
  714. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  715. r = zd_iowrite32a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  716. if (r)
  717. return r;
  718. return zd_chip_is_zd1211b(chip) ?
  719. zd1211b_hw_init_hmac(chip) : zd1211_hw_init_hmac(chip);
  720. }
  721. struct aw_pt_bi {
  722. u32 atim_wnd_period;
  723. u32 pre_tbtt;
  724. u32 beacon_interval;
  725. };
  726. static int get_aw_pt_bi(struct zd_chip *chip, struct aw_pt_bi *s)
  727. {
  728. int r;
  729. static const zd_addr_t aw_pt_bi_addr[] =
  730. { CR_ATIM_WND_PERIOD, CR_PRE_TBTT, CR_BCN_INTERVAL };
  731. u32 values[3];
  732. r = zd_ioread32v_locked(chip, values, (const zd_addr_t *)aw_pt_bi_addr,
  733. ARRAY_SIZE(aw_pt_bi_addr));
  734. if (r) {
  735. memset(s, 0, sizeof(*s));
  736. return r;
  737. }
  738. s->atim_wnd_period = values[0];
  739. s->pre_tbtt = values[1];
  740. s->beacon_interval = values[2];
  741. return 0;
  742. }
  743. static int set_aw_pt_bi(struct zd_chip *chip, struct aw_pt_bi *s)
  744. {
  745. struct zd_ioreq32 reqs[3];
  746. if (s->beacon_interval <= 5)
  747. s->beacon_interval = 5;
  748. if (s->pre_tbtt < 4 || s->pre_tbtt >= s->beacon_interval)
  749. s->pre_tbtt = s->beacon_interval - 1;
  750. if (s->atim_wnd_period >= s->pre_tbtt)
  751. s->atim_wnd_period = s->pre_tbtt - 1;
  752. reqs[0].addr = CR_ATIM_WND_PERIOD;
  753. reqs[0].value = s->atim_wnd_period;
  754. reqs[1].addr = CR_PRE_TBTT;
  755. reqs[1].value = s->pre_tbtt;
  756. reqs[2].addr = CR_BCN_INTERVAL;
  757. reqs[2].value = s->beacon_interval;
  758. return zd_iowrite32a_locked(chip, reqs, ARRAY_SIZE(reqs));
  759. }
  760. static int set_beacon_interval(struct zd_chip *chip, u32 interval)
  761. {
  762. int r;
  763. struct aw_pt_bi s;
  764. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  765. r = get_aw_pt_bi(chip, &s);
  766. if (r)
  767. return r;
  768. s.beacon_interval = interval;
  769. return set_aw_pt_bi(chip, &s);
  770. }
  771. int zd_set_beacon_interval(struct zd_chip *chip, u32 interval)
  772. {
  773. int r;
  774. mutex_lock(&chip->mutex);
  775. r = set_beacon_interval(chip, interval);
  776. mutex_unlock(&chip->mutex);
  777. return r;
  778. }
  779. static int hw_init(struct zd_chip *chip)
  780. {
  781. int r;
  782. dev_dbg_f(zd_chip_dev(chip), "\n");
  783. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  784. r = hw_reset_phy(chip);
  785. if (r)
  786. return r;
  787. r = hw_init_hmac(chip);
  788. if (r)
  789. return r;
  790. return set_beacon_interval(chip, 100);
  791. }
  792. static zd_addr_t fw_reg_addr(struct zd_chip *chip, u16 offset)
  793. {
  794. return (zd_addr_t)((u16)chip->fw_regs_base + offset);
  795. }
  796. #ifdef DEBUG
  797. static int dump_cr(struct zd_chip *chip, const zd_addr_t addr,
  798. const char *addr_string)
  799. {
  800. int r;
  801. u32 value;
  802. r = zd_ioread32_locked(chip, &value, addr);
  803. if (r) {
  804. dev_dbg_f(zd_chip_dev(chip),
  805. "error reading %s. Error number %d\n", addr_string, r);
  806. return r;
  807. }
  808. dev_dbg_f(zd_chip_dev(chip), "%s %#010x\n",
  809. addr_string, (unsigned int)value);
  810. return 0;
  811. }
  812. static int test_init(struct zd_chip *chip)
  813. {
  814. int r;
  815. r = dump_cr(chip, CR_AFTER_PNP, "CR_AFTER_PNP");
  816. if (r)
  817. return r;
  818. r = dump_cr(chip, CR_GPI_EN, "CR_GPI_EN");
  819. if (r)
  820. return r;
  821. return dump_cr(chip, CR_INTERRUPT, "CR_INTERRUPT");
  822. }
  823. static void dump_fw_registers(struct zd_chip *chip)
  824. {
  825. const zd_addr_t addr[4] = {
  826. fw_reg_addr(chip, FW_REG_FIRMWARE_VER),
  827. fw_reg_addr(chip, FW_REG_USB_SPEED),
  828. fw_reg_addr(chip, FW_REG_FIX_TX_RATE),
  829. fw_reg_addr(chip, FW_REG_LED_LINK_STATUS),
  830. };
  831. int r;
  832. u16 values[4];
  833. r = zd_ioread16v_locked(chip, values, (const zd_addr_t*)addr,
  834. ARRAY_SIZE(addr));
  835. if (r) {
  836. dev_dbg_f(zd_chip_dev(chip), "error %d zd_ioread16v_locked\n",
  837. r);
  838. return;
  839. }
  840. dev_dbg_f(zd_chip_dev(chip), "FW_FIRMWARE_VER %#06hx\n", values[0]);
  841. dev_dbg_f(zd_chip_dev(chip), "FW_USB_SPEED %#06hx\n", values[1]);
  842. dev_dbg_f(zd_chip_dev(chip), "FW_FIX_TX_RATE %#06hx\n", values[2]);
  843. dev_dbg_f(zd_chip_dev(chip), "FW_LINK_STATUS %#06hx\n", values[3]);
  844. }
  845. #endif /* DEBUG */
  846. static int print_fw_version(struct zd_chip *chip)
  847. {
  848. int r;
  849. u16 version;
  850. r = zd_ioread16_locked(chip, &version,
  851. fw_reg_addr(chip, FW_REG_FIRMWARE_VER));
  852. if (r)
  853. return r;
  854. dev_info(zd_chip_dev(chip),"firmware version %04hx\n", version);
  855. return 0;
  856. }
  857. static int set_mandatory_rates(struct zd_chip *chip, int gmode)
  858. {
  859. u32 rates;
  860. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  861. /* This sets the mandatory rates, which only depend from the standard
  862. * that the device is supporting. Until further notice we should try
  863. * to support 802.11g also for full speed USB.
  864. */
  865. if (!gmode)
  866. rates = CR_RATE_1M|CR_RATE_2M|CR_RATE_5_5M|CR_RATE_11M;
  867. else
  868. rates = CR_RATE_1M|CR_RATE_2M|CR_RATE_5_5M|CR_RATE_11M|
  869. CR_RATE_6M|CR_RATE_12M|CR_RATE_24M;
  870. return zd_iowrite32_locked(chip, rates, CR_MANDATORY_RATE_TBL);
  871. }
  872. int zd_chip_set_rts_cts_rate_locked(struct zd_chip *chip,
  873. int preamble)
  874. {
  875. u32 value = 0;
  876. dev_dbg_f(zd_chip_dev(chip), "preamble=%x\n", preamble);
  877. value |= preamble << RTSCTS_SH_RTS_PMB_TYPE;
  878. value |= preamble << RTSCTS_SH_CTS_PMB_TYPE;
  879. /* We always send 11M RTS/self-CTS messages, like the vendor driver. */
  880. value |= ZD_PURE_RATE(ZD_CCK_RATE_11M) << RTSCTS_SH_RTS_RATE;
  881. value |= ZD_RX_CCK << RTSCTS_SH_RTS_MOD_TYPE;
  882. value |= ZD_PURE_RATE(ZD_CCK_RATE_11M) << RTSCTS_SH_CTS_RATE;
  883. value |= ZD_RX_CCK << RTSCTS_SH_CTS_MOD_TYPE;
  884. return zd_iowrite32_locked(chip, value, CR_RTS_CTS_RATE);
  885. }
  886. int zd_chip_enable_hwint(struct zd_chip *chip)
  887. {
  888. int r;
  889. mutex_lock(&chip->mutex);
  890. r = zd_iowrite32_locked(chip, HWINT_ENABLED, CR_INTERRUPT);
  891. mutex_unlock(&chip->mutex);
  892. return r;
  893. }
  894. static int disable_hwint(struct zd_chip *chip)
  895. {
  896. return zd_iowrite32_locked(chip, HWINT_DISABLED, CR_INTERRUPT);
  897. }
  898. int zd_chip_disable_hwint(struct zd_chip *chip)
  899. {
  900. int r;
  901. mutex_lock(&chip->mutex);
  902. r = disable_hwint(chip);
  903. mutex_unlock(&chip->mutex);
  904. return r;
  905. }
  906. static int read_fw_regs_offset(struct zd_chip *chip)
  907. {
  908. int r;
  909. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  910. r = zd_ioread16_locked(chip, (u16*)&chip->fw_regs_base,
  911. FWRAW_REGS_ADDR);
  912. if (r)
  913. return r;
  914. dev_dbg_f(zd_chip_dev(chip), "fw_regs_base: %#06hx\n",
  915. (u16)chip->fw_regs_base);
  916. return 0;
  917. }
  918. /* Read mac address using pre-firmware interface */
  919. int zd_chip_read_mac_addr_fw(struct zd_chip *chip, u8 *addr)
  920. {
  921. dev_dbg_f(zd_chip_dev(chip), "\n");
  922. return zd_usb_read_fw(&chip->usb, E2P_MAC_ADDR_P1, addr,
  923. ETH_ALEN);
  924. }
  925. int zd_chip_init_hw(struct zd_chip *chip)
  926. {
  927. int r;
  928. u8 rf_type;
  929. dev_dbg_f(zd_chip_dev(chip), "\n");
  930. mutex_lock(&chip->mutex);
  931. #ifdef DEBUG
  932. r = test_init(chip);
  933. if (r)
  934. goto out;
  935. #endif
  936. r = zd_iowrite32_locked(chip, 1, CR_AFTER_PNP);
  937. if (r)
  938. goto out;
  939. r = read_fw_regs_offset(chip);
  940. if (r)
  941. goto out;
  942. /* GPI is always disabled, also in the other driver.
  943. */
  944. r = zd_iowrite32_locked(chip, 0, CR_GPI_EN);
  945. if (r)
  946. goto out;
  947. r = zd_iowrite32_locked(chip, CWIN_SIZE, CR_CWMIN_CWMAX);
  948. if (r)
  949. goto out;
  950. /* Currently we support IEEE 802.11g for full and high speed USB.
  951. * It might be discussed, whether we should suppport pure b mode for
  952. * full speed USB.
  953. */
  954. r = set_mandatory_rates(chip, 1);
  955. if (r)
  956. goto out;
  957. /* Disabling interrupts is certainly a smart thing here.
  958. */
  959. r = disable_hwint(chip);
  960. if (r)
  961. goto out;
  962. r = read_pod(chip, &rf_type);
  963. if (r)
  964. goto out;
  965. r = hw_init(chip);
  966. if (r)
  967. goto out;
  968. r = zd_rf_init_hw(&chip->rf, rf_type);
  969. if (r)
  970. goto out;
  971. r = print_fw_version(chip);
  972. if (r)
  973. goto out;
  974. #ifdef DEBUG
  975. dump_fw_registers(chip);
  976. r = test_init(chip);
  977. if (r)
  978. goto out;
  979. #endif /* DEBUG */
  980. r = read_cal_int_tables(chip);
  981. if (r)
  982. goto out;
  983. print_id(chip);
  984. out:
  985. mutex_unlock(&chip->mutex);
  986. return r;
  987. }
  988. static int update_pwr_int(struct zd_chip *chip, u8 channel)
  989. {
  990. u8 value = chip->pwr_int_values[channel - 1];
  991. return zd_iowrite16_locked(chip, value, CR31);
  992. }
  993. static int update_pwr_cal(struct zd_chip *chip, u8 channel)
  994. {
  995. u8 value = chip->pwr_cal_values[channel-1];
  996. return zd_iowrite16_locked(chip, value, CR68);
  997. }
  998. static int update_ofdm_cal(struct zd_chip *chip, u8 channel)
  999. {
  1000. struct zd_ioreq16 ioreqs[3];
  1001. ioreqs[0].addr = CR67;
  1002. ioreqs[0].value = chip->ofdm_cal_values[OFDM_36M_INDEX][channel-1];
  1003. ioreqs[1].addr = CR66;
  1004. ioreqs[1].value = chip->ofdm_cal_values[OFDM_48M_INDEX][channel-1];
  1005. ioreqs[2].addr = CR65;
  1006. ioreqs[2].value = chip->ofdm_cal_values[OFDM_54M_INDEX][channel-1];
  1007. return zd_iowrite16a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  1008. }
  1009. static int update_channel_integration_and_calibration(struct zd_chip *chip,
  1010. u8 channel)
  1011. {
  1012. int r;
  1013. if (!zd_rf_should_update_pwr_int(&chip->rf))
  1014. return 0;
  1015. r = update_pwr_int(chip, channel);
  1016. if (r)
  1017. return r;
  1018. if (zd_chip_is_zd1211b(chip)) {
  1019. static const struct zd_ioreq16 ioreqs[] = {
  1020. { CR69, 0x28 },
  1021. {},
  1022. { CR69, 0x2a },
  1023. };
  1024. r = update_ofdm_cal(chip, channel);
  1025. if (r)
  1026. return r;
  1027. r = update_pwr_cal(chip, channel);
  1028. if (r)
  1029. return r;
  1030. r = zd_iowrite16a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  1031. if (r)
  1032. return r;
  1033. }
  1034. return 0;
  1035. }
  1036. /* The CCK baseband gain can be optionally patched by the EEPROM */
  1037. static int patch_cck_gain(struct zd_chip *chip)
  1038. {
  1039. int r;
  1040. u32 value;
  1041. if (!chip->patch_cck_gain || !zd_rf_should_patch_cck_gain(&chip->rf))
  1042. return 0;
  1043. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  1044. r = zd_ioread32_locked(chip, &value, E2P_PHY_REG);
  1045. if (r)
  1046. return r;
  1047. dev_dbg_f(zd_chip_dev(chip), "patching value %x\n", value & 0xff);
  1048. return zd_iowrite16_locked(chip, value & 0xff, CR47);
  1049. }
  1050. int zd_chip_set_channel(struct zd_chip *chip, u8 channel)
  1051. {
  1052. int r, t;
  1053. mutex_lock(&chip->mutex);
  1054. r = zd_chip_lock_phy_regs(chip);
  1055. if (r)
  1056. goto out;
  1057. r = zd_rf_set_channel(&chip->rf, channel);
  1058. if (r)
  1059. goto unlock;
  1060. r = update_channel_integration_and_calibration(chip, channel);
  1061. if (r)
  1062. goto unlock;
  1063. r = patch_cck_gain(chip);
  1064. if (r)
  1065. goto unlock;
  1066. r = patch_6m_band_edge(chip, channel);
  1067. if (r)
  1068. goto unlock;
  1069. r = zd_iowrite32_locked(chip, 0, CR_CONFIG_PHILIPS);
  1070. unlock:
  1071. t = zd_chip_unlock_phy_regs(chip);
  1072. if (t && !r)
  1073. r = t;
  1074. out:
  1075. mutex_unlock(&chip->mutex);
  1076. return r;
  1077. }
  1078. u8 zd_chip_get_channel(struct zd_chip *chip)
  1079. {
  1080. u8 channel;
  1081. mutex_lock(&chip->mutex);
  1082. channel = chip->rf.channel;
  1083. mutex_unlock(&chip->mutex);
  1084. return channel;
  1085. }
  1086. int zd_chip_control_leds(struct zd_chip *chip, enum led_status status)
  1087. {
  1088. const zd_addr_t a[] = {
  1089. fw_reg_addr(chip, FW_REG_LED_LINK_STATUS),
  1090. CR_LED,
  1091. };
  1092. int r;
  1093. u16 v[ARRAY_SIZE(a)];
  1094. struct zd_ioreq16 ioreqs[ARRAY_SIZE(a)] = {
  1095. [0] = { fw_reg_addr(chip, FW_REG_LED_LINK_STATUS) },
  1096. [1] = { CR_LED },
  1097. };
  1098. u16 other_led;
  1099. mutex_lock(&chip->mutex);
  1100. r = zd_ioread16v_locked(chip, v, (const zd_addr_t *)a, ARRAY_SIZE(a));
  1101. if (r)
  1102. goto out;
  1103. other_led = chip->link_led == LED1 ? LED2 : LED1;
  1104. switch (status) {
  1105. case LED_OFF:
  1106. ioreqs[0].value = FW_LINK_OFF;
  1107. ioreqs[1].value = v[1] & ~(LED1|LED2);
  1108. break;
  1109. case LED_SCANNING:
  1110. ioreqs[0].value = FW_LINK_OFF;
  1111. ioreqs[1].value = v[1] & ~other_led;
  1112. if (get_seconds() % 3 == 0) {
  1113. ioreqs[1].value &= ~chip->link_led;
  1114. } else {
  1115. ioreqs[1].value |= chip->link_led;
  1116. }
  1117. break;
  1118. case LED_ASSOCIATED:
  1119. ioreqs[0].value = FW_LINK_TX;
  1120. ioreqs[1].value = v[1] & ~other_led;
  1121. ioreqs[1].value |= chip->link_led;
  1122. break;
  1123. default:
  1124. r = -EINVAL;
  1125. goto out;
  1126. }
  1127. if (v[0] != ioreqs[0].value || v[1] != ioreqs[1].value) {
  1128. r = zd_iowrite16a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  1129. if (r)
  1130. goto out;
  1131. }
  1132. r = 0;
  1133. out:
  1134. mutex_unlock(&chip->mutex);
  1135. return r;
  1136. }
  1137. int zd_chip_set_basic_rates(struct zd_chip *chip, u16 cr_rates)
  1138. {
  1139. int r;
  1140. if (cr_rates & ~(CR_RATES_80211B|CR_RATES_80211G))
  1141. return -EINVAL;
  1142. mutex_lock(&chip->mutex);
  1143. r = zd_iowrite32_locked(chip, cr_rates, CR_BASIC_RATE_TBL);
  1144. mutex_unlock(&chip->mutex);
  1145. return r;
  1146. }
  1147. static int ofdm_qual_db(u8 status_quality, u8 zd_rate, unsigned int size)
  1148. {
  1149. static const u16 constants[] = {
  1150. 715, 655, 585, 540, 470, 410, 360, 315,
  1151. 270, 235, 205, 175, 150, 125, 105, 85,
  1152. 65, 50, 40, 25, 15
  1153. };
  1154. int i;
  1155. u32 x;
  1156. /* It seems that their quality parameter is somehow per signal
  1157. * and is now transferred per bit.
  1158. */
  1159. switch (zd_rate) {
  1160. case ZD_OFDM_RATE_6M:
  1161. case ZD_OFDM_RATE_12M:
  1162. case ZD_OFDM_RATE_24M:
  1163. size *= 2;
  1164. break;
  1165. case ZD_OFDM_RATE_9M:
  1166. case ZD_OFDM_RATE_18M:
  1167. case ZD_OFDM_RATE_36M:
  1168. case ZD_OFDM_RATE_54M:
  1169. size *= 4;
  1170. size /= 3;
  1171. break;
  1172. case ZD_OFDM_RATE_48M:
  1173. size *= 3;
  1174. size /= 2;
  1175. break;
  1176. default:
  1177. return -EINVAL;
  1178. }
  1179. x = (10000 * status_quality)/size;
  1180. for (i = 0; i < ARRAY_SIZE(constants); i++) {
  1181. if (x > constants[i])
  1182. break;
  1183. }
  1184. switch (zd_rate) {
  1185. case ZD_OFDM_RATE_6M:
  1186. case ZD_OFDM_RATE_9M:
  1187. i += 3;
  1188. break;
  1189. case ZD_OFDM_RATE_12M:
  1190. case ZD_OFDM_RATE_18M:
  1191. i += 5;
  1192. break;
  1193. case ZD_OFDM_RATE_24M:
  1194. case ZD_OFDM_RATE_36M:
  1195. i += 9;
  1196. break;
  1197. case ZD_OFDM_RATE_48M:
  1198. case ZD_OFDM_RATE_54M:
  1199. i += 15;
  1200. break;
  1201. default:
  1202. return -EINVAL;
  1203. }
  1204. return i;
  1205. }
  1206. static int ofdm_qual_percent(u8 status_quality, u8 zd_rate, unsigned int size)
  1207. {
  1208. int r;
  1209. r = ofdm_qual_db(status_quality, zd_rate, size);
  1210. ZD_ASSERT(r >= 0);
  1211. if (r < 0)
  1212. r = 0;
  1213. r = (r * 100)/29;
  1214. return r <= 100 ? r : 100;
  1215. }
  1216. static unsigned int log10times100(unsigned int x)
  1217. {
  1218. static const u8 log10[] = {
  1219. 0,
  1220. 0, 30, 47, 60, 69, 77, 84, 90, 95, 100,
  1221. 104, 107, 111, 114, 117, 120, 123, 125, 127, 130,
  1222. 132, 134, 136, 138, 139, 141, 143, 144, 146, 147,
  1223. 149, 150, 151, 153, 154, 155, 156, 157, 159, 160,
  1224. 161, 162, 163, 164, 165, 166, 167, 168, 169, 169,
  1225. 170, 171, 172, 173, 174, 174, 175, 176, 177, 177,
  1226. 178, 179, 179, 180, 181, 181, 182, 183, 183, 184,
  1227. 185, 185, 186, 186, 187, 188, 188, 189, 189, 190,
  1228. 190, 191, 191, 192, 192, 193, 193, 194, 194, 195,
  1229. 195, 196, 196, 197, 197, 198, 198, 199, 199, 200,
  1230. 200, 200, 201, 201, 202, 202, 202, 203, 203, 204,
  1231. 204, 204, 205, 205, 206, 206, 206, 207, 207, 207,
  1232. 208, 208, 208, 209, 209, 210, 210, 210, 211, 211,
  1233. 211, 212, 212, 212, 213, 213, 213, 213, 214, 214,
  1234. 214, 215, 215, 215, 216, 216, 216, 217, 217, 217,
  1235. 217, 218, 218, 218, 219, 219, 219, 219, 220, 220,
  1236. 220, 220, 221, 221, 221, 222, 222, 222, 222, 223,
  1237. 223, 223, 223, 224, 224, 224, 224,
  1238. };
  1239. return x < ARRAY_SIZE(log10) ? log10[x] : 225;
  1240. }
  1241. enum {
  1242. MAX_CCK_EVM_DB = 45,
  1243. };
  1244. static int cck_evm_db(u8 status_quality)
  1245. {
  1246. return (20 * log10times100(status_quality)) / 100;
  1247. }
  1248. static int cck_snr_db(u8 status_quality)
  1249. {
  1250. int r = MAX_CCK_EVM_DB - cck_evm_db(status_quality);
  1251. ZD_ASSERT(r >= 0);
  1252. return r;
  1253. }
  1254. static int cck_qual_percent(u8 status_quality)
  1255. {
  1256. int r;
  1257. r = cck_snr_db(status_quality);
  1258. r = (100*r)/17;
  1259. return r <= 100 ? r : 100;
  1260. }
  1261. static inline u8 zd_rate_from_ofdm_plcp_header(const void *rx_frame)
  1262. {
  1263. return ZD_OFDM | zd_ofdm_plcp_header_rate(rx_frame);
  1264. }
  1265. u8 zd_rx_qual_percent(const void *rx_frame, unsigned int size,
  1266. const struct rx_status *status)
  1267. {
  1268. return (status->frame_status&ZD_RX_OFDM) ?
  1269. ofdm_qual_percent(status->signal_quality_ofdm,
  1270. zd_rate_from_ofdm_plcp_header(rx_frame),
  1271. size) :
  1272. cck_qual_percent(status->signal_quality_cck);
  1273. }
  1274. /**
  1275. * zd_rx_rate - report zd-rate
  1276. * @rx_frame - received frame
  1277. * @rx_status - rx_status as given by the device
  1278. *
  1279. * This function converts the rate as encoded in the received packet to the
  1280. * zd-rate, we are using on other places in the driver.
  1281. */
  1282. u8 zd_rx_rate(const void *rx_frame, const struct rx_status *status)
  1283. {
  1284. u8 zd_rate;
  1285. if (status->frame_status & ZD_RX_OFDM) {
  1286. zd_rate = zd_rate_from_ofdm_plcp_header(rx_frame);
  1287. } else {
  1288. switch (zd_cck_plcp_header_signal(rx_frame)) {
  1289. case ZD_CCK_PLCP_SIGNAL_1M:
  1290. zd_rate = ZD_CCK_RATE_1M;
  1291. break;
  1292. case ZD_CCK_PLCP_SIGNAL_2M:
  1293. zd_rate = ZD_CCK_RATE_2M;
  1294. break;
  1295. case ZD_CCK_PLCP_SIGNAL_5M5:
  1296. zd_rate = ZD_CCK_RATE_5_5M;
  1297. break;
  1298. case ZD_CCK_PLCP_SIGNAL_11M:
  1299. zd_rate = ZD_CCK_RATE_11M;
  1300. break;
  1301. default:
  1302. zd_rate = 0;
  1303. }
  1304. }
  1305. return zd_rate;
  1306. }
  1307. int zd_chip_switch_radio_on(struct zd_chip *chip)
  1308. {
  1309. int r;
  1310. mutex_lock(&chip->mutex);
  1311. r = zd_switch_radio_on(&chip->rf);
  1312. mutex_unlock(&chip->mutex);
  1313. return r;
  1314. }
  1315. int zd_chip_switch_radio_off(struct zd_chip *chip)
  1316. {
  1317. int r;
  1318. mutex_lock(&chip->mutex);
  1319. r = zd_switch_radio_off(&chip->rf);
  1320. mutex_unlock(&chip->mutex);
  1321. return r;
  1322. }
  1323. int zd_chip_enable_int(struct zd_chip *chip)
  1324. {
  1325. int r;
  1326. mutex_lock(&chip->mutex);
  1327. r = zd_usb_enable_int(&chip->usb);
  1328. mutex_unlock(&chip->mutex);
  1329. return r;
  1330. }
  1331. void zd_chip_disable_int(struct zd_chip *chip)
  1332. {
  1333. mutex_lock(&chip->mutex);
  1334. zd_usb_disable_int(&chip->usb);
  1335. mutex_unlock(&chip->mutex);
  1336. }
  1337. int zd_chip_enable_rxtx(struct zd_chip *chip)
  1338. {
  1339. int r;
  1340. mutex_lock(&chip->mutex);
  1341. zd_usb_enable_tx(&chip->usb);
  1342. r = zd_usb_enable_rx(&chip->usb);
  1343. mutex_unlock(&chip->mutex);
  1344. return r;
  1345. }
  1346. void zd_chip_disable_rxtx(struct zd_chip *chip)
  1347. {
  1348. mutex_lock(&chip->mutex);
  1349. zd_usb_disable_rx(&chip->usb);
  1350. zd_usb_disable_tx(&chip->usb);
  1351. mutex_unlock(&chip->mutex);
  1352. }
  1353. int zd_rfwritev_locked(struct zd_chip *chip,
  1354. const u32* values, unsigned int count, u8 bits)
  1355. {
  1356. int r;
  1357. unsigned int i;
  1358. for (i = 0; i < count; i++) {
  1359. r = zd_rfwrite_locked(chip, values[i], bits);
  1360. if (r)
  1361. return r;
  1362. }
  1363. return 0;
  1364. }
  1365. /*
  1366. * We can optionally program the RF directly through CR regs, if supported by
  1367. * the hardware. This is much faster than the older method.
  1368. */
  1369. int zd_rfwrite_cr_locked(struct zd_chip *chip, u32 value)
  1370. {
  1371. struct zd_ioreq16 ioreqs[] = {
  1372. { CR244, (value >> 16) & 0xff },
  1373. { CR243, (value >> 8) & 0xff },
  1374. { CR242, value & 0xff },
  1375. };
  1376. ZD_ASSERT(mutex_is_locked(&chip->mutex));
  1377. return zd_iowrite16a_locked(chip, ioreqs, ARRAY_SIZE(ioreqs));
  1378. }
  1379. int zd_rfwritev_cr_locked(struct zd_chip *chip,
  1380. const u32 *values, unsigned int count)
  1381. {
  1382. int r;
  1383. unsigned int i;
  1384. for (i = 0; i < count; i++) {
  1385. r = zd_rfwrite_cr_locked(chip, values[i]);
  1386. if (r)
  1387. return r;
  1388. }
  1389. return 0;
  1390. }
  1391. int zd_chip_set_multicast_hash(struct zd_chip *chip,
  1392. struct zd_mc_hash *hash)
  1393. {
  1394. struct zd_ioreq32 ioreqs[] = {
  1395. { CR_GROUP_HASH_P1, hash->low },
  1396. { CR_GROUP_HASH_P2, hash->high },
  1397. };
  1398. return zd_iowrite32a(chip, ioreqs, ARRAY_SIZE(ioreqs));
  1399. }
  1400. u64 zd_chip_get_tsf(struct zd_chip *chip)
  1401. {
  1402. int r;
  1403. static const zd_addr_t aw_pt_bi_addr[] =
  1404. { CR_TSF_LOW_PART, CR_TSF_HIGH_PART };
  1405. u32 values[2];
  1406. u64 tsf;
  1407. mutex_lock(&chip->mutex);
  1408. r = zd_ioread32v_locked(chip, values, (const zd_addr_t *)aw_pt_bi_addr,
  1409. ARRAY_SIZE(aw_pt_bi_addr));
  1410. mutex_unlock(&chip->mutex);
  1411. if (r)
  1412. return 0;
  1413. tsf = values[1];
  1414. tsf = (tsf << 32) | values[0];
  1415. return tsf;
  1416. }