reset.c 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291
  1. /*
  2. * Copyright (c) 2004-2008 Reyk Floeter <reyk@openbsd.org>
  3. * Copyright (c) 2006-2008 Nick Kossifidis <mickflemm@gmail.com>
  4. * Copyright (c) 2007-2008 Luis Rodriguez <mcgrof@winlab.rutgers.edu>
  5. * Copyright (c) 2007-2008 Pavel Roskin <proski@gnu.org>
  6. * Copyright (c) 2007-2008 Jiri Slaby <jirislaby@gmail.com>
  7. *
  8. * Permission to use, copy, modify, and distribute this software for any
  9. * purpose with or without fee is hereby granted, provided that the above
  10. * copyright notice and this permission notice appear in all copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  13. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  14. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  15. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  16. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  17. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  18. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19. *
  20. */
  21. /*****************************\
  22. Reset functions and helpers
  23. \*****************************/
  24. #include <asm/unaligned.h>
  25. #include <linux/pci.h> /* To determine if a card is pci-e */
  26. #include <linux/log2.h>
  27. #include <linux/platform_device.h>
  28. #include "ath5k.h"
  29. #include "reg.h"
  30. #include "base.h"
  31. #include "debug.h"
  32. /******************\
  33. * Helper functions *
  34. \******************/
  35. /*
  36. * Check if a register write has been completed
  37. */
  38. int ath5k_hw_register_timeout(struct ath5k_hw *ah, u32 reg, u32 flag, u32 val,
  39. bool is_set)
  40. {
  41. int i;
  42. u32 data;
  43. for (i = AR5K_TUNE_REGISTER_TIMEOUT; i > 0; i--) {
  44. data = ath5k_hw_reg_read(ah, reg);
  45. if (is_set && (data & flag))
  46. break;
  47. else if ((data & flag) == val)
  48. break;
  49. udelay(15);
  50. }
  51. return (i <= 0) ? -EAGAIN : 0;
  52. }
  53. /*************************\
  54. * Clock related functions *
  55. \*************************/
  56. /**
  57. * ath5k_hw_htoclock - Translate usec to hw clock units
  58. *
  59. * @ah: The &struct ath5k_hw
  60. * @usec: value in microseconds
  61. */
  62. unsigned int ath5k_hw_htoclock(struct ath5k_hw *ah, unsigned int usec)
  63. {
  64. struct ath_common *common = ath5k_hw_common(ah);
  65. return usec * common->clockrate;
  66. }
  67. /**
  68. * ath5k_hw_clocktoh - Translate hw clock units to usec
  69. * @clock: value in hw clock units
  70. */
  71. unsigned int ath5k_hw_clocktoh(struct ath5k_hw *ah, unsigned int clock)
  72. {
  73. struct ath_common *common = ath5k_hw_common(ah);
  74. return clock / common->clockrate;
  75. }
  76. /**
  77. * ath5k_hw_init_core_clock - Initialize core clock
  78. *
  79. * @ah The &struct ath5k_hw
  80. *
  81. * Initialize core clock parameters (usec, usec32, latencies etc).
  82. */
  83. static void ath5k_hw_init_core_clock(struct ath5k_hw *ah)
  84. {
  85. struct ieee80211_channel *channel = ah->ah_current_channel;
  86. struct ath_common *common = ath5k_hw_common(ah);
  87. u32 usec_reg, txlat, rxlat, usec, clock, sclock, txf2txs;
  88. /*
  89. * Set core clock frequency
  90. */
  91. if (channel->hw_value & CHANNEL_5GHZ)
  92. clock = 40; /* 802.11a */
  93. else if (channel->hw_value & CHANNEL_CCK)
  94. clock = 22; /* 802.11b */
  95. else
  96. clock = 44; /* 802.11g */
  97. /* Use clock multiplier for non-default
  98. * bwmode */
  99. switch (ah->ah_bwmode) {
  100. case AR5K_BWMODE_40MHZ:
  101. clock *= 2;
  102. break;
  103. case AR5K_BWMODE_10MHZ:
  104. clock /= 2;
  105. break;
  106. case AR5K_BWMODE_5MHZ:
  107. clock /= 4;
  108. break;
  109. default:
  110. break;
  111. }
  112. common->clockrate = clock;
  113. /*
  114. * Set USEC parameters
  115. */
  116. /* Set USEC counter on PCU*/
  117. usec = clock - 1;
  118. usec = AR5K_REG_SM(usec, AR5K_USEC_1);
  119. /* Set usec duration on DCU */
  120. if (ah->ah_version != AR5K_AR5210)
  121. AR5K_REG_WRITE_BITS(ah, AR5K_DCU_GBL_IFS_MISC,
  122. AR5K_DCU_GBL_IFS_MISC_USEC_DUR,
  123. clock);
  124. /* Set 32MHz USEC counter */
  125. if ((ah->ah_radio == AR5K_RF5112) ||
  126. (ah->ah_radio == AR5K_RF5413) ||
  127. (ah->ah_radio == AR5K_RF2316) ||
  128. (ah->ah_radio == AR5K_RF2317))
  129. /* Remain on 40MHz clock ? */
  130. sclock = 40 - 1;
  131. else
  132. sclock = 32 - 1;
  133. sclock = AR5K_REG_SM(sclock, AR5K_USEC_32);
  134. /*
  135. * Set tx/rx latencies
  136. */
  137. usec_reg = ath5k_hw_reg_read(ah, AR5K_USEC_5211);
  138. txlat = AR5K_REG_MS(usec_reg, AR5K_USEC_TX_LATENCY_5211);
  139. rxlat = AR5K_REG_MS(usec_reg, AR5K_USEC_RX_LATENCY_5211);
  140. /*
  141. * Set default Tx frame to Tx data start delay
  142. */
  143. txf2txs = AR5K_INIT_TXF2TXD_START_DEFAULT;
  144. /*
  145. * 5210 initvals don't include usec settings
  146. * so we need to use magic values here for
  147. * tx/rx latencies
  148. */
  149. if (ah->ah_version == AR5K_AR5210) {
  150. /* same for turbo */
  151. txlat = AR5K_INIT_TX_LATENCY_5210;
  152. rxlat = AR5K_INIT_RX_LATENCY_5210;
  153. }
  154. if (ah->ah_mac_srev < AR5K_SREV_AR5211) {
  155. /* 5311 has different tx/rx latency masks
  156. * from 5211, since we deal 5311 the same
  157. * as 5211 when setting initvals, shift
  158. * values here to their proper locations
  159. *
  160. * Note: Initvals indicate tx/rx/ latencies
  161. * are the same for turbo mode */
  162. txlat = AR5K_REG_SM(txlat, AR5K_USEC_TX_LATENCY_5210);
  163. rxlat = AR5K_REG_SM(rxlat, AR5K_USEC_RX_LATENCY_5210);
  164. } else
  165. switch (ah->ah_bwmode) {
  166. case AR5K_BWMODE_10MHZ:
  167. txlat = AR5K_REG_SM(txlat * 2,
  168. AR5K_USEC_TX_LATENCY_5211);
  169. rxlat = AR5K_REG_SM(AR5K_INIT_RX_LAT_MAX,
  170. AR5K_USEC_RX_LATENCY_5211);
  171. txf2txs = AR5K_INIT_TXF2TXD_START_DELAY_10MHZ;
  172. break;
  173. case AR5K_BWMODE_5MHZ:
  174. txlat = AR5K_REG_SM(txlat * 4,
  175. AR5K_USEC_TX_LATENCY_5211);
  176. rxlat = AR5K_REG_SM(AR5K_INIT_RX_LAT_MAX,
  177. AR5K_USEC_RX_LATENCY_5211);
  178. txf2txs = AR5K_INIT_TXF2TXD_START_DELAY_5MHZ;
  179. break;
  180. case AR5K_BWMODE_40MHZ:
  181. txlat = AR5K_INIT_TX_LAT_MIN;
  182. rxlat = AR5K_REG_SM(rxlat / 2,
  183. AR5K_USEC_RX_LATENCY_5211);
  184. txf2txs = AR5K_INIT_TXF2TXD_START_DEFAULT;
  185. break;
  186. default:
  187. break;
  188. }
  189. usec_reg = (usec | sclock | txlat | rxlat);
  190. ath5k_hw_reg_write(ah, usec_reg, AR5K_USEC);
  191. /* On 5112 set tx frane to tx data start delay */
  192. if (ah->ah_radio == AR5K_RF5112) {
  193. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RF_CTL2,
  194. AR5K_PHY_RF_CTL2_TXF2TXD_START,
  195. txf2txs);
  196. }
  197. }
  198. /*
  199. * If there is an external 32KHz crystal available, use it
  200. * as ref. clock instead of 32/40MHz clock and baseband clocks
  201. * to save power during sleep or restore normal 32/40MHz
  202. * operation.
  203. *
  204. * XXX: When operating on 32KHz certain PHY registers (27 - 31,
  205. * 123 - 127) require delay on access.
  206. */
  207. static void ath5k_hw_set_sleep_clock(struct ath5k_hw *ah, bool enable)
  208. {
  209. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  210. u32 scal, spending;
  211. /* Only set 32KHz settings if we have an external
  212. * 32KHz crystal present */
  213. if ((AR5K_EEPROM_HAS32KHZCRYSTAL(ee->ee_misc1) ||
  214. AR5K_EEPROM_HAS32KHZCRYSTAL_OLD(ee->ee_misc1)) &&
  215. enable) {
  216. /* 1 usec/cycle */
  217. AR5K_REG_WRITE_BITS(ah, AR5K_USEC_5211, AR5K_USEC_32, 1);
  218. /* Set up tsf increment on each cycle */
  219. AR5K_REG_WRITE_BITS(ah, AR5K_TSF_PARM, AR5K_TSF_PARM_INC, 61);
  220. /* Set baseband sleep control registers
  221. * and sleep control rate */
  222. ath5k_hw_reg_write(ah, 0x1f, AR5K_PHY_SCR);
  223. if ((ah->ah_radio == AR5K_RF5112) ||
  224. (ah->ah_radio == AR5K_RF5413) ||
  225. (ah->ah_radio == AR5K_RF2316) ||
  226. (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4)))
  227. spending = 0x14;
  228. else
  229. spending = 0x18;
  230. ath5k_hw_reg_write(ah, spending, AR5K_PHY_SPENDING);
  231. if ((ah->ah_radio == AR5K_RF5112) ||
  232. (ah->ah_radio == AR5K_RF5413) ||
  233. (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))) {
  234. ath5k_hw_reg_write(ah, 0x26, AR5K_PHY_SLMT);
  235. ath5k_hw_reg_write(ah, 0x0d, AR5K_PHY_SCAL);
  236. ath5k_hw_reg_write(ah, 0x07, AR5K_PHY_SCLOCK);
  237. ath5k_hw_reg_write(ah, 0x3f, AR5K_PHY_SDELAY);
  238. AR5K_REG_WRITE_BITS(ah, AR5K_PCICFG,
  239. AR5K_PCICFG_SLEEP_CLOCK_RATE, 0x02);
  240. } else {
  241. ath5k_hw_reg_write(ah, 0x0a, AR5K_PHY_SLMT);
  242. ath5k_hw_reg_write(ah, 0x0c, AR5K_PHY_SCAL);
  243. ath5k_hw_reg_write(ah, 0x03, AR5K_PHY_SCLOCK);
  244. ath5k_hw_reg_write(ah, 0x20, AR5K_PHY_SDELAY);
  245. AR5K_REG_WRITE_BITS(ah, AR5K_PCICFG,
  246. AR5K_PCICFG_SLEEP_CLOCK_RATE, 0x03);
  247. }
  248. /* Enable sleep clock operation */
  249. AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG,
  250. AR5K_PCICFG_SLEEP_CLOCK_EN);
  251. } else {
  252. /* Disable sleep clock operation and
  253. * restore default parameters */
  254. AR5K_REG_DISABLE_BITS(ah, AR5K_PCICFG,
  255. AR5K_PCICFG_SLEEP_CLOCK_EN);
  256. AR5K_REG_WRITE_BITS(ah, AR5K_PCICFG,
  257. AR5K_PCICFG_SLEEP_CLOCK_RATE, 0);
  258. /* Set DAC/ADC delays */
  259. ath5k_hw_reg_write(ah, 0x1f, AR5K_PHY_SCR);
  260. ath5k_hw_reg_write(ah, AR5K_PHY_SLMT_32MHZ, AR5K_PHY_SLMT);
  261. if (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))
  262. scal = AR5K_PHY_SCAL_32MHZ_2417;
  263. else if (ee->ee_is_hb63)
  264. scal = AR5K_PHY_SCAL_32MHZ_HB63;
  265. else
  266. scal = AR5K_PHY_SCAL_32MHZ;
  267. ath5k_hw_reg_write(ah, scal, AR5K_PHY_SCAL);
  268. ath5k_hw_reg_write(ah, AR5K_PHY_SCLOCK_32MHZ, AR5K_PHY_SCLOCK);
  269. ath5k_hw_reg_write(ah, AR5K_PHY_SDELAY_32MHZ, AR5K_PHY_SDELAY);
  270. if ((ah->ah_radio == AR5K_RF5112) ||
  271. (ah->ah_radio == AR5K_RF5413) ||
  272. (ah->ah_radio == AR5K_RF2316) ||
  273. (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4)))
  274. spending = 0x14;
  275. else
  276. spending = 0x18;
  277. ath5k_hw_reg_write(ah, spending, AR5K_PHY_SPENDING);
  278. /* Set up tsf increment on each cycle */
  279. AR5K_REG_WRITE_BITS(ah, AR5K_TSF_PARM, AR5K_TSF_PARM_INC, 1);
  280. }
  281. }
  282. /*********************\
  283. * Reset/Sleep control *
  284. \*********************/
  285. /*
  286. * Reset chipset
  287. */
  288. static int ath5k_hw_nic_reset(struct ath5k_hw *ah, u32 val)
  289. {
  290. int ret;
  291. u32 mask = val ? val : ~0U;
  292. /* Read-and-clear RX Descriptor Pointer*/
  293. ath5k_hw_reg_read(ah, AR5K_RXDP);
  294. /*
  295. * Reset the device and wait until success
  296. */
  297. ath5k_hw_reg_write(ah, val, AR5K_RESET_CTL);
  298. /* Wait at least 128 PCI clocks */
  299. udelay(15);
  300. if (ah->ah_version == AR5K_AR5210) {
  301. val &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_DMA
  302. | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_PHY;
  303. mask &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_DMA
  304. | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_PHY;
  305. } else {
  306. val &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_BASEBAND;
  307. mask &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_BASEBAND;
  308. }
  309. ret = ath5k_hw_register_timeout(ah, AR5K_RESET_CTL, mask, val, false);
  310. /*
  311. * Reset configuration register (for hw byte-swap). Note that this
  312. * is only set for big endian. We do the necessary magic in
  313. * AR5K_INIT_CFG.
  314. */
  315. if ((val & AR5K_RESET_CTL_PCU) == 0)
  316. ath5k_hw_reg_write(ah, AR5K_INIT_CFG, AR5K_CFG);
  317. return ret;
  318. }
  319. /*
  320. * Reset AHB chipset
  321. * AR5K_RESET_CTL_PCU flag resets WMAC
  322. * AR5K_RESET_CTL_BASEBAND flag resets WBB
  323. */
  324. static int ath5k_hw_wisoc_reset(struct ath5k_hw *ah, u32 flags)
  325. {
  326. u32 mask = flags ? flags : ~0U;
  327. volatile u32 *reg;
  328. u32 regval;
  329. u32 val = 0;
  330. /* ah->ah_mac_srev is not available at this point yet */
  331. if (ah->ah_sc->devid >= AR5K_SREV_AR2315_R6) {
  332. reg = (u32 *) AR5K_AR2315_RESET;
  333. if (mask & AR5K_RESET_CTL_PCU)
  334. val |= AR5K_AR2315_RESET_WMAC;
  335. if (mask & AR5K_RESET_CTL_BASEBAND)
  336. val |= AR5K_AR2315_RESET_BB_WARM;
  337. } else {
  338. reg = (u32 *) AR5K_AR5312_RESET;
  339. if (to_platform_device(ah->ah_sc->dev)->id == 0) {
  340. if (mask & AR5K_RESET_CTL_PCU)
  341. val |= AR5K_AR5312_RESET_WMAC0;
  342. if (mask & AR5K_RESET_CTL_BASEBAND)
  343. val |= AR5K_AR5312_RESET_BB0_COLD |
  344. AR5K_AR5312_RESET_BB0_WARM;
  345. } else {
  346. if (mask & AR5K_RESET_CTL_PCU)
  347. val |= AR5K_AR5312_RESET_WMAC1;
  348. if (mask & AR5K_RESET_CTL_BASEBAND)
  349. val |= AR5K_AR5312_RESET_BB1_COLD |
  350. AR5K_AR5312_RESET_BB1_WARM;
  351. }
  352. }
  353. /* Put BB/MAC into reset */
  354. regval = __raw_readl(reg);
  355. __raw_writel(regval | val, reg);
  356. regval = __raw_readl(reg);
  357. udelay(100);
  358. /* Bring BB/MAC out of reset */
  359. __raw_writel(regval & ~val, reg);
  360. regval = __raw_readl(reg);
  361. /*
  362. * Reset configuration register (for hw byte-swap). Note that this
  363. * is only set for big endian. We do the necessary magic in
  364. * AR5K_INIT_CFG.
  365. */
  366. if ((flags & AR5K_RESET_CTL_PCU) == 0)
  367. ath5k_hw_reg_write(ah, AR5K_INIT_CFG, AR5K_CFG);
  368. return 0;
  369. }
  370. /*
  371. * Sleep control
  372. */
  373. static int ath5k_hw_set_power(struct ath5k_hw *ah, enum ath5k_power_mode mode,
  374. bool set_chip, u16 sleep_duration)
  375. {
  376. unsigned int i;
  377. u32 staid, data;
  378. staid = ath5k_hw_reg_read(ah, AR5K_STA_ID1);
  379. switch (mode) {
  380. case AR5K_PM_AUTO:
  381. staid &= ~AR5K_STA_ID1_DEFAULT_ANTENNA;
  382. /* fallthrough */
  383. case AR5K_PM_NETWORK_SLEEP:
  384. if (set_chip)
  385. ath5k_hw_reg_write(ah,
  386. AR5K_SLEEP_CTL_SLE_ALLOW |
  387. sleep_duration,
  388. AR5K_SLEEP_CTL);
  389. staid |= AR5K_STA_ID1_PWR_SV;
  390. break;
  391. case AR5K_PM_FULL_SLEEP:
  392. if (set_chip)
  393. ath5k_hw_reg_write(ah, AR5K_SLEEP_CTL_SLE_SLP,
  394. AR5K_SLEEP_CTL);
  395. staid |= AR5K_STA_ID1_PWR_SV;
  396. break;
  397. case AR5K_PM_AWAKE:
  398. staid &= ~AR5K_STA_ID1_PWR_SV;
  399. if (!set_chip)
  400. goto commit;
  401. data = ath5k_hw_reg_read(ah, AR5K_SLEEP_CTL);
  402. /* If card is down we 'll get 0xffff... so we
  403. * need to clean this up before we write the register
  404. */
  405. if (data & 0xffc00000)
  406. data = 0;
  407. else
  408. /* Preserve sleep duration etc */
  409. data = data & ~AR5K_SLEEP_CTL_SLE;
  410. ath5k_hw_reg_write(ah, data | AR5K_SLEEP_CTL_SLE_WAKE,
  411. AR5K_SLEEP_CTL);
  412. udelay(15);
  413. for (i = 200; i > 0; i--) {
  414. /* Check if the chip did wake up */
  415. if ((ath5k_hw_reg_read(ah, AR5K_PCICFG) &
  416. AR5K_PCICFG_SPWR_DN) == 0)
  417. break;
  418. /* Wait a bit and retry */
  419. udelay(50);
  420. ath5k_hw_reg_write(ah, data | AR5K_SLEEP_CTL_SLE_WAKE,
  421. AR5K_SLEEP_CTL);
  422. }
  423. /* Fail if the chip didn't wake up */
  424. if (i == 0)
  425. return -EIO;
  426. break;
  427. default:
  428. return -EINVAL;
  429. }
  430. commit:
  431. ath5k_hw_reg_write(ah, staid, AR5K_STA_ID1);
  432. return 0;
  433. }
  434. /*
  435. * Put device on hold
  436. *
  437. * Put MAC and Baseband on warm reset and
  438. * keep that state (don't clean sleep control
  439. * register). After this MAC and Baseband are
  440. * disabled and a full reset is needed to come
  441. * back. This way we save as much power as possible
  442. * without putting the card on full sleep.
  443. */
  444. int ath5k_hw_on_hold(struct ath5k_hw *ah)
  445. {
  446. struct pci_dev *pdev = ah->ah_sc->pdev;
  447. u32 bus_flags;
  448. int ret;
  449. if (ath5k_get_bus_type(ah) == ATH_AHB)
  450. return 0;
  451. /* Make sure device is awake */
  452. ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0);
  453. if (ret) {
  454. ATH5K_ERR(ah->ah_sc, "failed to wakeup the MAC Chip\n");
  455. return ret;
  456. }
  457. /*
  458. * Put chipset on warm reset...
  459. *
  460. * Note: putting PCI core on warm reset on PCI-E cards
  461. * results card to hang and always return 0xffff... so
  462. * we ingore that flag for PCI-E cards. On PCI cards
  463. * this flag gets cleared after 64 PCI clocks.
  464. */
  465. bus_flags = (pdev && pci_is_pcie(pdev)) ? 0 : AR5K_RESET_CTL_PCI;
  466. if (ah->ah_version == AR5K_AR5210) {
  467. ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
  468. AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA |
  469. AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI);
  470. mdelay(2);
  471. } else {
  472. ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
  473. AR5K_RESET_CTL_BASEBAND | bus_flags);
  474. }
  475. if (ret) {
  476. ATH5K_ERR(ah->ah_sc, "failed to put device on warm reset\n");
  477. return -EIO;
  478. }
  479. /* ...wakeup again!*/
  480. ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0);
  481. if (ret) {
  482. ATH5K_ERR(ah->ah_sc, "failed to put device on hold\n");
  483. return ret;
  484. }
  485. return ret;
  486. }
  487. /*
  488. * Bring up MAC + PHY Chips and program PLL
  489. */
  490. int ath5k_hw_nic_wakeup(struct ath5k_hw *ah, int flags, bool initial)
  491. {
  492. struct pci_dev *pdev = ah->ah_sc->pdev;
  493. u32 turbo, mode, clock, bus_flags;
  494. int ret;
  495. turbo = 0;
  496. mode = 0;
  497. clock = 0;
  498. if ((ath5k_get_bus_type(ah) != ATH_AHB) || !initial) {
  499. /* Wakeup the device */
  500. ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0);
  501. if (ret) {
  502. ATH5K_ERR(ah->ah_sc, "failed to wakeup the MAC Chip\n");
  503. return ret;
  504. }
  505. }
  506. /*
  507. * Put chipset on warm reset...
  508. *
  509. * Note: putting PCI core on warm reset on PCI-E cards
  510. * results card to hang and always return 0xffff... so
  511. * we ingore that flag for PCI-E cards. On PCI cards
  512. * this flag gets cleared after 64 PCI clocks.
  513. */
  514. bus_flags = (pdev && pci_is_pcie(pdev)) ? 0 : AR5K_RESET_CTL_PCI;
  515. if (ah->ah_version == AR5K_AR5210) {
  516. ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
  517. AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA |
  518. AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI);
  519. mdelay(2);
  520. } else {
  521. if (ath5k_get_bus_type(ah) == ATH_AHB)
  522. ret = ath5k_hw_wisoc_reset(ah, AR5K_RESET_CTL_PCU |
  523. AR5K_RESET_CTL_BASEBAND);
  524. else
  525. ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
  526. AR5K_RESET_CTL_BASEBAND | bus_flags);
  527. }
  528. if (ret) {
  529. ATH5K_ERR(ah->ah_sc, "failed to reset the MAC Chip\n");
  530. return -EIO;
  531. }
  532. /* ...wakeup again!...*/
  533. ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0);
  534. if (ret) {
  535. ATH5K_ERR(ah->ah_sc, "failed to resume the MAC Chip\n");
  536. return ret;
  537. }
  538. /* ...reset configuration regiter on Wisoc ...
  539. * ...clear reset control register and pull device out of
  540. * warm reset on others */
  541. if (ath5k_get_bus_type(ah) == ATH_AHB)
  542. ret = ath5k_hw_wisoc_reset(ah, 0);
  543. else
  544. ret = ath5k_hw_nic_reset(ah, 0);
  545. if (ret) {
  546. ATH5K_ERR(ah->ah_sc, "failed to warm reset the MAC Chip\n");
  547. return -EIO;
  548. }
  549. /* On initialization skip PLL programming since we don't have
  550. * a channel / mode set yet */
  551. if (initial)
  552. return 0;
  553. if (ah->ah_version != AR5K_AR5210) {
  554. /*
  555. * Get channel mode flags
  556. */
  557. if (ah->ah_radio >= AR5K_RF5112) {
  558. mode = AR5K_PHY_MODE_RAD_RF5112;
  559. clock = AR5K_PHY_PLL_RF5112;
  560. } else {
  561. mode = AR5K_PHY_MODE_RAD_RF5111; /*Zero*/
  562. clock = AR5K_PHY_PLL_RF5111; /*Zero*/
  563. }
  564. if (flags & CHANNEL_2GHZ) {
  565. mode |= AR5K_PHY_MODE_FREQ_2GHZ;
  566. clock |= AR5K_PHY_PLL_44MHZ;
  567. if (flags & CHANNEL_CCK) {
  568. mode |= AR5K_PHY_MODE_MOD_CCK;
  569. } else if (flags & CHANNEL_OFDM) {
  570. /* XXX Dynamic OFDM/CCK is not supported by the
  571. * AR5211 so we set MOD_OFDM for plain g (no
  572. * CCK headers) operation. We need to test
  573. * this, 5211 might support ofdm-only g after
  574. * all, there are also initial register values
  575. * in the code for g mode (see initvals.c).
  576. */
  577. if (ah->ah_version == AR5K_AR5211)
  578. mode |= AR5K_PHY_MODE_MOD_OFDM;
  579. else
  580. mode |= AR5K_PHY_MODE_MOD_DYN;
  581. } else {
  582. ATH5K_ERR(ah->ah_sc,
  583. "invalid radio modulation mode\n");
  584. return -EINVAL;
  585. }
  586. } else if (flags & CHANNEL_5GHZ) {
  587. mode |= AR5K_PHY_MODE_FREQ_5GHZ;
  588. /* Different PLL setting for 5413 */
  589. if (ah->ah_radio == AR5K_RF5413)
  590. clock = AR5K_PHY_PLL_40MHZ_5413;
  591. else
  592. clock |= AR5K_PHY_PLL_40MHZ;
  593. if (flags & CHANNEL_OFDM)
  594. mode |= AR5K_PHY_MODE_MOD_OFDM;
  595. else {
  596. ATH5K_ERR(ah->ah_sc,
  597. "invalid radio modulation mode\n");
  598. return -EINVAL;
  599. }
  600. } else {
  601. ATH5K_ERR(ah->ah_sc, "invalid radio frequency mode\n");
  602. return -EINVAL;
  603. }
  604. /*XXX: Can bwmode be used with dynamic mode ?
  605. * (I don't think it supports 44MHz) */
  606. /* On 2425 initvals TURBO_SHORT is not pressent */
  607. if (ah->ah_bwmode == AR5K_BWMODE_40MHZ) {
  608. turbo = AR5K_PHY_TURBO_MODE |
  609. (ah->ah_radio == AR5K_RF2425) ? 0 :
  610. AR5K_PHY_TURBO_SHORT;
  611. } else if (ah->ah_bwmode != AR5K_BWMODE_DEFAULT) {
  612. if (ah->ah_radio == AR5K_RF5413) {
  613. mode |= (ah->ah_bwmode == AR5K_BWMODE_10MHZ) ?
  614. AR5K_PHY_MODE_HALF_RATE :
  615. AR5K_PHY_MODE_QUARTER_RATE;
  616. } else if (ah->ah_version == AR5K_AR5212) {
  617. clock |= (ah->ah_bwmode == AR5K_BWMODE_10MHZ) ?
  618. AR5K_PHY_PLL_HALF_RATE :
  619. AR5K_PHY_PLL_QUARTER_RATE;
  620. }
  621. }
  622. } else { /* Reset the device */
  623. /* ...enable Atheros turbo mode if requested */
  624. if (ah->ah_bwmode == AR5K_BWMODE_40MHZ)
  625. ath5k_hw_reg_write(ah, AR5K_PHY_TURBO_MODE,
  626. AR5K_PHY_TURBO);
  627. }
  628. if (ah->ah_version != AR5K_AR5210) {
  629. /* ...update PLL if needed */
  630. if (ath5k_hw_reg_read(ah, AR5K_PHY_PLL) != clock) {
  631. ath5k_hw_reg_write(ah, clock, AR5K_PHY_PLL);
  632. udelay(300);
  633. }
  634. /* ...set the PHY operating mode */
  635. ath5k_hw_reg_write(ah, mode, AR5K_PHY_MODE);
  636. ath5k_hw_reg_write(ah, turbo, AR5K_PHY_TURBO);
  637. }
  638. return 0;
  639. }
  640. /**************************************\
  641. * Post-initvals register modifications *
  642. \**************************************/
  643. /* TODO: Half/Quarter rate */
  644. static void ath5k_hw_tweak_initval_settings(struct ath5k_hw *ah,
  645. struct ieee80211_channel *channel)
  646. {
  647. if (ah->ah_version == AR5K_AR5212 &&
  648. ah->ah_phy_revision >= AR5K_SREV_PHY_5212A) {
  649. /* Setup ADC control */
  650. ath5k_hw_reg_write(ah,
  651. (AR5K_REG_SM(2,
  652. AR5K_PHY_ADC_CTL_INBUFGAIN_OFF) |
  653. AR5K_REG_SM(2,
  654. AR5K_PHY_ADC_CTL_INBUFGAIN_ON) |
  655. AR5K_PHY_ADC_CTL_PWD_DAC_OFF |
  656. AR5K_PHY_ADC_CTL_PWD_ADC_OFF),
  657. AR5K_PHY_ADC_CTL);
  658. /* Disable barker RSSI threshold */
  659. AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_DAG_CCK_CTL,
  660. AR5K_PHY_DAG_CCK_CTL_EN_RSSI_THR);
  661. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DAG_CCK_CTL,
  662. AR5K_PHY_DAG_CCK_CTL_RSSI_THR, 2);
  663. /* Set the mute mask */
  664. ath5k_hw_reg_write(ah, 0x0000000f, AR5K_SEQ_MASK);
  665. }
  666. /* Clear PHY_BLUETOOTH to allow RX_CLEAR line debug */
  667. if (ah->ah_phy_revision >= AR5K_SREV_PHY_5212B)
  668. ath5k_hw_reg_write(ah, 0, AR5K_PHY_BLUETOOTH);
  669. /* Enable DCU double buffering */
  670. if (ah->ah_phy_revision > AR5K_SREV_PHY_5212B)
  671. AR5K_REG_DISABLE_BITS(ah, AR5K_TXCFG,
  672. AR5K_TXCFG_DCU_DBL_BUF_DIS);
  673. /* Set fast ADC */
  674. if ((ah->ah_radio == AR5K_RF5413) ||
  675. (ah->ah_radio == AR5K_RF2317) ||
  676. (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))) {
  677. u32 fast_adc = true;
  678. if (channel->center_freq == 2462 ||
  679. channel->center_freq == 2467)
  680. fast_adc = 0;
  681. /* Only update if needed */
  682. if (ath5k_hw_reg_read(ah, AR5K_PHY_FAST_ADC) != fast_adc)
  683. ath5k_hw_reg_write(ah, fast_adc,
  684. AR5K_PHY_FAST_ADC);
  685. }
  686. /* Fix for first revision of the RF5112 RF chipset */
  687. if (ah->ah_radio == AR5K_RF5112 &&
  688. ah->ah_radio_5ghz_revision <
  689. AR5K_SREV_RAD_5112A) {
  690. u32 data;
  691. ath5k_hw_reg_write(ah, AR5K_PHY_CCKTXCTL_WORLD,
  692. AR5K_PHY_CCKTXCTL);
  693. if (channel->hw_value & CHANNEL_5GHZ)
  694. data = 0xffb81020;
  695. else
  696. data = 0xffb80d20;
  697. ath5k_hw_reg_write(ah, data, AR5K_PHY_FRAME_CTL);
  698. }
  699. if (ah->ah_mac_srev < AR5K_SREV_AR5211) {
  700. /* Clear QCU/DCU clock gating register */
  701. ath5k_hw_reg_write(ah, 0, AR5K_QCUDCU_CLKGT);
  702. /* Set DAC/ADC delays */
  703. ath5k_hw_reg_write(ah, AR5K_PHY_SCAL_32MHZ_5311,
  704. AR5K_PHY_SCAL);
  705. /* Enable PCU FIFO corruption ECO */
  706. AR5K_REG_ENABLE_BITS(ah, AR5K_DIAG_SW_5211,
  707. AR5K_DIAG_SW_ECO_ENABLE);
  708. }
  709. if (ah->ah_bwmode) {
  710. /* Increase PHY switch and AGC settling time
  711. * on turbo mode (ath5k_hw_commit_eeprom_settings
  712. * will override settling time if available) */
  713. if (ah->ah_bwmode == AR5K_BWMODE_40MHZ) {
  714. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING,
  715. AR5K_PHY_SETTLING_AGC,
  716. AR5K_AGC_SETTLING_TURBO);
  717. /* XXX: Initvals indicate we only increase
  718. * switch time on AR5212, 5211 and 5210
  719. * only change agc time (bug?) */
  720. if (ah->ah_version == AR5K_AR5212)
  721. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING,
  722. AR5K_PHY_SETTLING_SWITCH,
  723. AR5K_SWITCH_SETTLING_TURBO);
  724. if (ah->ah_version == AR5K_AR5210) {
  725. /* Set Frame Control Register */
  726. ath5k_hw_reg_write(ah,
  727. (AR5K_PHY_FRAME_CTL_INI |
  728. AR5K_PHY_TURBO_MODE |
  729. AR5K_PHY_TURBO_SHORT | 0x2020),
  730. AR5K_PHY_FRAME_CTL_5210);
  731. }
  732. /* On 5413 PHY force window length for half/quarter rate*/
  733. } else if ((ah->ah_mac_srev >= AR5K_SREV_AR5424) &&
  734. (ah->ah_mac_srev <= AR5K_SREV_AR5414)) {
  735. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_FRAME_CTL_5211,
  736. AR5K_PHY_FRAME_CTL_WIN_LEN,
  737. 3);
  738. }
  739. } else if (ah->ah_version == AR5K_AR5210) {
  740. /* Set Frame Control Register for normal operation */
  741. ath5k_hw_reg_write(ah, (AR5K_PHY_FRAME_CTL_INI | 0x1020),
  742. AR5K_PHY_FRAME_CTL_5210);
  743. }
  744. }
  745. static void ath5k_hw_commit_eeprom_settings(struct ath5k_hw *ah,
  746. struct ieee80211_channel *channel)
  747. {
  748. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  749. s16 cck_ofdm_pwr_delta;
  750. u8 ee_mode;
  751. /* TODO: Add support for AR5210 EEPROM */
  752. if (ah->ah_version == AR5K_AR5210)
  753. return;
  754. ee_mode = ath5k_eeprom_mode_from_channel(channel);
  755. /* Adjust power delta for channel 14 */
  756. if (channel->center_freq == 2484)
  757. cck_ofdm_pwr_delta =
  758. ((ee->ee_cck_ofdm_power_delta -
  759. ee->ee_scaled_cck_delta) * 2) / 10;
  760. else
  761. cck_ofdm_pwr_delta =
  762. (ee->ee_cck_ofdm_power_delta * 2) / 10;
  763. /* Set CCK to OFDM power delta on tx power
  764. * adjustment register */
  765. if (ah->ah_phy_revision >= AR5K_SREV_PHY_5212A) {
  766. if (channel->hw_value == CHANNEL_G)
  767. ath5k_hw_reg_write(ah,
  768. AR5K_REG_SM((ee->ee_cck_ofdm_gain_delta * -1),
  769. AR5K_PHY_TX_PWR_ADJ_CCK_GAIN_DELTA) |
  770. AR5K_REG_SM((cck_ofdm_pwr_delta * -1),
  771. AR5K_PHY_TX_PWR_ADJ_CCK_PCDAC_INDEX),
  772. AR5K_PHY_TX_PWR_ADJ);
  773. else
  774. ath5k_hw_reg_write(ah, 0, AR5K_PHY_TX_PWR_ADJ);
  775. } else {
  776. /* For older revs we scale power on sw during tx power
  777. * setup */
  778. ah->ah_txpower.txp_cck_ofdm_pwr_delta = cck_ofdm_pwr_delta;
  779. ah->ah_txpower.txp_cck_ofdm_gainf_delta =
  780. ee->ee_cck_ofdm_gain_delta;
  781. }
  782. /* XXX: necessary here? is called from ath5k_hw_set_antenna_mode()
  783. * too */
  784. ath5k_hw_set_antenna_switch(ah, ee_mode);
  785. /* Noise floor threshold */
  786. ath5k_hw_reg_write(ah,
  787. AR5K_PHY_NF_SVAL(ee->ee_noise_floor_thr[ee_mode]),
  788. AR5K_PHY_NFTHRES);
  789. if ((ah->ah_bwmode == AR5K_BWMODE_40MHZ) &&
  790. (ah->ah_ee_version >= AR5K_EEPROM_VERSION_5_0)) {
  791. /* Switch settling time (Turbo) */
  792. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING,
  793. AR5K_PHY_SETTLING_SWITCH,
  794. ee->ee_switch_settling_turbo[ee_mode]);
  795. /* Tx/Rx attenuation (Turbo) */
  796. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN,
  797. AR5K_PHY_GAIN_TXRX_ATTEN,
  798. ee->ee_atn_tx_rx_turbo[ee_mode]);
  799. /* ADC/PGA desired size (Turbo) */
  800. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE,
  801. AR5K_PHY_DESIRED_SIZE_ADC,
  802. ee->ee_adc_desired_size_turbo[ee_mode]);
  803. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE,
  804. AR5K_PHY_DESIRED_SIZE_PGA,
  805. ee->ee_pga_desired_size_turbo[ee_mode]);
  806. /* Tx/Rx margin (Turbo) */
  807. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN_2GHZ,
  808. AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX,
  809. ee->ee_margin_tx_rx_turbo[ee_mode]);
  810. } else {
  811. /* Switch settling time */
  812. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING,
  813. AR5K_PHY_SETTLING_SWITCH,
  814. ee->ee_switch_settling[ee_mode]);
  815. /* Tx/Rx attenuation */
  816. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN,
  817. AR5K_PHY_GAIN_TXRX_ATTEN,
  818. ee->ee_atn_tx_rx[ee_mode]);
  819. /* ADC/PGA desired size */
  820. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE,
  821. AR5K_PHY_DESIRED_SIZE_ADC,
  822. ee->ee_adc_desired_size[ee_mode]);
  823. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE,
  824. AR5K_PHY_DESIRED_SIZE_PGA,
  825. ee->ee_pga_desired_size[ee_mode]);
  826. /* Tx/Rx margin */
  827. if (ah->ah_ee_version >= AR5K_EEPROM_VERSION_4_1)
  828. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN_2GHZ,
  829. AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX,
  830. ee->ee_margin_tx_rx[ee_mode]);
  831. }
  832. /* XPA delays */
  833. ath5k_hw_reg_write(ah,
  834. (ee->ee_tx_end2xpa_disable[ee_mode] << 24) |
  835. (ee->ee_tx_end2xpa_disable[ee_mode] << 16) |
  836. (ee->ee_tx_frm2xpa_enable[ee_mode] << 8) |
  837. (ee->ee_tx_frm2xpa_enable[ee_mode]), AR5K_PHY_RF_CTL4);
  838. /* XLNA delay */
  839. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RF_CTL3,
  840. AR5K_PHY_RF_CTL3_TXE2XLNA_ON,
  841. ee->ee_tx_end2xlna_enable[ee_mode]);
  842. /* Thresh64 (ANI) */
  843. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_NF,
  844. AR5K_PHY_NF_THRESH62,
  845. ee->ee_thr_62[ee_mode]);
  846. /* False detect backoff for channels
  847. * that have spur noise. Write the new
  848. * cyclic power RSSI threshold. */
  849. if (ath5k_hw_chan_has_spur_noise(ah, channel))
  850. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_OFDM_SELFCORR,
  851. AR5K_PHY_OFDM_SELFCORR_CYPWR_THR1,
  852. AR5K_INIT_CYCRSSI_THR1 +
  853. ee->ee_false_detect[ee_mode]);
  854. else
  855. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_OFDM_SELFCORR,
  856. AR5K_PHY_OFDM_SELFCORR_CYPWR_THR1,
  857. AR5K_INIT_CYCRSSI_THR1);
  858. /* I/Q correction (set enable bit last to match HAL sources) */
  859. /* TODO: Per channel i/q infos ? */
  860. if (ah->ah_ee_version >= AR5K_EEPROM_VERSION_4_0) {
  861. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_Q_I_COFF,
  862. ee->ee_i_cal[ee_mode]);
  863. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_Q_Q_COFF,
  864. ee->ee_q_cal[ee_mode]);
  865. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_ENABLE);
  866. }
  867. /* Heavy clipping -disable for now */
  868. if (ah->ah_ee_version >= AR5K_EEPROM_VERSION_5_1)
  869. ath5k_hw_reg_write(ah, 0, AR5K_PHY_HEAVY_CLIP_ENABLE);
  870. }
  871. /*********************\
  872. * Main reset function *
  873. \*********************/
  874. int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode,
  875. struct ieee80211_channel *channel, bool fast, bool skip_pcu)
  876. {
  877. u32 s_seq[10], s_led[3], tsf_up, tsf_lo;
  878. u8 mode;
  879. int i, ret;
  880. tsf_up = 0;
  881. tsf_lo = 0;
  882. mode = 0;
  883. /*
  884. * Sanity check for fast flag
  885. * Fast channel change only available
  886. * on AR2413/AR5413.
  887. */
  888. if (fast && (ah->ah_radio != AR5K_RF2413) &&
  889. (ah->ah_radio != AR5K_RF5413))
  890. fast = 0;
  891. /* Disable sleep clock operation
  892. * to avoid register access delay on certain
  893. * PHY registers */
  894. if (ah->ah_version == AR5K_AR5212)
  895. ath5k_hw_set_sleep_clock(ah, false);
  896. /*
  897. * Stop PCU
  898. */
  899. ath5k_hw_stop_rx_pcu(ah);
  900. /*
  901. * Stop DMA
  902. *
  903. * Note: If DMA didn't stop continue
  904. * since only a reset will fix it.
  905. */
  906. ret = ath5k_hw_dma_stop(ah);
  907. /* RF Bus grant won't work if we have pending
  908. * frames */
  909. if (ret && fast) {
  910. ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_RESET,
  911. "DMA didn't stop, falling back to normal reset\n");
  912. fast = 0;
  913. /* Non fatal, just continue with
  914. * normal reset */
  915. ret = 0;
  916. }
  917. switch (channel->hw_value & CHANNEL_MODES) {
  918. case CHANNEL_A:
  919. mode = AR5K_MODE_11A;
  920. break;
  921. case CHANNEL_G:
  922. if (ah->ah_version <= AR5K_AR5211) {
  923. ATH5K_ERR(ah->ah_sc,
  924. "G mode not available on 5210/5211");
  925. return -EINVAL;
  926. }
  927. mode = AR5K_MODE_11G;
  928. break;
  929. case CHANNEL_B:
  930. if (ah->ah_version < AR5K_AR5211) {
  931. ATH5K_ERR(ah->ah_sc,
  932. "B mode not available on 5210");
  933. return -EINVAL;
  934. }
  935. mode = AR5K_MODE_11B;
  936. break;
  937. case CHANNEL_XR:
  938. if (ah->ah_version == AR5K_AR5211) {
  939. ATH5K_ERR(ah->ah_sc,
  940. "XR mode not available on 5211");
  941. return -EINVAL;
  942. }
  943. mode = AR5K_MODE_XR;
  944. break;
  945. default:
  946. ATH5K_ERR(ah->ah_sc,
  947. "invalid channel: %d\n", channel->center_freq);
  948. return -EINVAL;
  949. }
  950. /*
  951. * If driver requested fast channel change and DMA has stopped
  952. * go on. If it fails continue with a normal reset.
  953. */
  954. if (fast) {
  955. ret = ath5k_hw_phy_init(ah, channel, mode, true);
  956. if (ret) {
  957. ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_RESET,
  958. "fast chan change failed, falling back to normal reset\n");
  959. /* Non fatal, can happen eg.
  960. * on mode change */
  961. ret = 0;
  962. } else
  963. return 0;
  964. }
  965. /*
  966. * Save some registers before a reset
  967. */
  968. if (ah->ah_version != AR5K_AR5210) {
  969. /*
  970. * Save frame sequence count
  971. * For revs. after Oahu, only save
  972. * seq num for DCU 0 (Global seq num)
  973. */
  974. if (ah->ah_mac_srev < AR5K_SREV_AR5211) {
  975. for (i = 0; i < 10; i++)
  976. s_seq[i] = ath5k_hw_reg_read(ah,
  977. AR5K_QUEUE_DCU_SEQNUM(i));
  978. } else {
  979. s_seq[0] = ath5k_hw_reg_read(ah,
  980. AR5K_QUEUE_DCU_SEQNUM(0));
  981. }
  982. /* TSF accelerates on AR5211 during reset
  983. * As a workaround save it here and restore
  984. * it later so that it's back in time after
  985. * reset. This way it'll get re-synced on the
  986. * next beacon without breaking ad-hoc.
  987. *
  988. * On AR5212 TSF is almost preserved across a
  989. * reset so it stays back in time anyway and
  990. * we don't have to save/restore it.
  991. *
  992. * XXX: Since this breaks power saving we have
  993. * to disable power saving until we receive the
  994. * next beacon, so we can resync beacon timers */
  995. if (ah->ah_version == AR5K_AR5211) {
  996. tsf_up = ath5k_hw_reg_read(ah, AR5K_TSF_U32);
  997. tsf_lo = ath5k_hw_reg_read(ah, AR5K_TSF_L32);
  998. }
  999. }
  1000. /*GPIOs*/
  1001. s_led[0] = ath5k_hw_reg_read(ah, AR5K_PCICFG) &
  1002. AR5K_PCICFG_LEDSTATE;
  1003. s_led[1] = ath5k_hw_reg_read(ah, AR5K_GPIOCR);
  1004. s_led[2] = ath5k_hw_reg_read(ah, AR5K_GPIODO);
  1005. /*
  1006. * Since we are going to write rf buffer
  1007. * check if we have any pending gain_F
  1008. * optimization settings
  1009. */
  1010. if (ah->ah_version == AR5K_AR5212 &&
  1011. (ah->ah_radio <= AR5K_RF5112)) {
  1012. if (!fast && ah->ah_rf_banks != NULL)
  1013. ath5k_hw_gainf_calibrate(ah);
  1014. }
  1015. /* Wakeup the device */
  1016. ret = ath5k_hw_nic_wakeup(ah, channel->hw_value, false);
  1017. if (ret)
  1018. return ret;
  1019. /* PHY access enable */
  1020. if (ah->ah_mac_srev >= AR5K_SREV_AR5211)
  1021. ath5k_hw_reg_write(ah, AR5K_PHY_SHIFT_5GHZ, AR5K_PHY(0));
  1022. else
  1023. ath5k_hw_reg_write(ah, AR5K_PHY_SHIFT_5GHZ | 0x40,
  1024. AR5K_PHY(0));
  1025. /* Write initial settings */
  1026. ret = ath5k_hw_write_initvals(ah, mode, skip_pcu);
  1027. if (ret)
  1028. return ret;
  1029. /* Initialize core clock settings */
  1030. ath5k_hw_init_core_clock(ah);
  1031. /*
  1032. * Tweak initval settings for revised
  1033. * chipsets and add some more config
  1034. * bits
  1035. */
  1036. ath5k_hw_tweak_initval_settings(ah, channel);
  1037. /* Commit values from EEPROM */
  1038. ath5k_hw_commit_eeprom_settings(ah, channel);
  1039. /*
  1040. * Restore saved values
  1041. */
  1042. /* Seqnum, TSF */
  1043. if (ah->ah_version != AR5K_AR5210) {
  1044. if (ah->ah_mac_srev < AR5K_SREV_AR5211) {
  1045. for (i = 0; i < 10; i++)
  1046. ath5k_hw_reg_write(ah, s_seq[i],
  1047. AR5K_QUEUE_DCU_SEQNUM(i));
  1048. } else {
  1049. ath5k_hw_reg_write(ah, s_seq[0],
  1050. AR5K_QUEUE_DCU_SEQNUM(0));
  1051. }
  1052. if (ah->ah_version == AR5K_AR5211) {
  1053. ath5k_hw_reg_write(ah, tsf_up, AR5K_TSF_U32);
  1054. ath5k_hw_reg_write(ah, tsf_lo, AR5K_TSF_L32);
  1055. }
  1056. }
  1057. /* Ledstate */
  1058. AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG, s_led[0]);
  1059. /* Gpio settings */
  1060. ath5k_hw_reg_write(ah, s_led[1], AR5K_GPIOCR);
  1061. ath5k_hw_reg_write(ah, s_led[2], AR5K_GPIODO);
  1062. /*
  1063. * Initialize PCU
  1064. */
  1065. ath5k_hw_pcu_init(ah, op_mode, mode);
  1066. /*
  1067. * Initialize PHY
  1068. */
  1069. ret = ath5k_hw_phy_init(ah, channel, mode, false);
  1070. if (ret) {
  1071. ATH5K_ERR(ah->ah_sc,
  1072. "failed to initialize PHY (%i) !\n", ret);
  1073. return ret;
  1074. }
  1075. /*
  1076. * Configure QCUs/DCUs
  1077. */
  1078. ret = ath5k_hw_init_queues(ah);
  1079. if (ret)
  1080. return ret;
  1081. /*
  1082. * Initialize DMA/Interrupts
  1083. */
  1084. ath5k_hw_dma_init(ah);
  1085. /* Enable 32KHz clock function for AR5212+ chips
  1086. * Set clocks to 32KHz operation and use an
  1087. * external 32KHz crystal when sleeping if one
  1088. * exists */
  1089. if (ah->ah_version == AR5K_AR5212 &&
  1090. op_mode != NL80211_IFTYPE_AP)
  1091. ath5k_hw_set_sleep_clock(ah, true);
  1092. /*
  1093. * Disable beacons and reset the TSF
  1094. */
  1095. AR5K_REG_DISABLE_BITS(ah, AR5K_BEACON, AR5K_BEACON_ENABLE);
  1096. ath5k_hw_reset_tsf(ah);
  1097. return 0;
  1098. }