rf.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2009-2012 Realtek Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * The full GNU General Public License is included in this distribution in the
  15. * file called LICENSE.
  16. *
  17. * Contact Information:
  18. * wlanfae <wlanfae@realtek.com>
  19. * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
  20. * Hsinchu 300, Taiwan.
  21. *
  22. * Larry Finger <Larry.Finger@lwfinger.net>
  23. *
  24. *****************************************************************************/
  25. #include "../wifi.h"
  26. #include "reg.h"
  27. #include "def.h"
  28. #include "phy.h"
  29. #include "rf.h"
  30. #include "dm.h"
  31. static bool _rtl92ce_phy_rf6052_config_parafile(struct ieee80211_hw *hw);
  32. void rtl92ce_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth)
  33. {
  34. struct rtl_priv *rtlpriv = rtl_priv(hw);
  35. struct rtl_phy *rtlphy = &(rtlpriv->phy);
  36. switch (bandwidth) {
  37. case HT_CHANNEL_WIDTH_20:
  38. rtlphy->rfreg_chnlval[0] = ((rtlphy->rfreg_chnlval[0] &
  39. 0xfffff3ff) | 0x0400);
  40. rtl_set_rfreg(hw, RF90_PATH_A, RF_CHNLBW, RFREG_OFFSET_MASK,
  41. rtlphy->rfreg_chnlval[0]);
  42. break;
  43. case HT_CHANNEL_WIDTH_20_40:
  44. rtlphy->rfreg_chnlval[0] = ((rtlphy->rfreg_chnlval[0] &
  45. 0xfffff3ff));
  46. rtl_set_rfreg(hw, RF90_PATH_A, RF_CHNLBW, RFREG_OFFSET_MASK,
  47. rtlphy->rfreg_chnlval[0]);
  48. break;
  49. default:
  50. RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
  51. "unknown bandwidth: %#X\n", bandwidth);
  52. break;
  53. }
  54. }
  55. void rtl92ce_phy_rf6052_set_cck_txpower(struct ieee80211_hw *hw,
  56. u8 *ppowerlevel)
  57. {
  58. struct rtl_priv *rtlpriv = rtl_priv(hw);
  59. struct rtl_phy *rtlphy = &(rtlpriv->phy);
  60. struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
  61. struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
  62. u32 tx_agc[2] = {0, 0}, tmpval;
  63. bool turbo_scanoff = false;
  64. u8 idx1, idx2;
  65. u8 *ptr;
  66. if (rtlefuse->eeprom_regulatory != 0)
  67. turbo_scanoff = true;
  68. if (mac->act_scanning) {
  69. tx_agc[RF90_PATH_A] = 0x3f3f3f3f;
  70. tx_agc[RF90_PATH_B] = 0x3f3f3f3f;
  71. if (turbo_scanoff) {
  72. for (idx1 = RF90_PATH_A; idx1 <= RF90_PATH_B; idx1++) {
  73. tx_agc[idx1] = ppowerlevel[idx1] |
  74. (ppowerlevel[idx1] << 8) |
  75. (ppowerlevel[idx1] << 16) |
  76. (ppowerlevel[idx1] << 24);
  77. }
  78. }
  79. } else {
  80. for (idx1 = RF90_PATH_A; idx1 <= RF90_PATH_B; idx1++) {
  81. tx_agc[idx1] = ppowerlevel[idx1] |
  82. (ppowerlevel[idx1] << 8) |
  83. (ppowerlevel[idx1] << 16) |
  84. (ppowerlevel[idx1] << 24);
  85. }
  86. if (rtlefuse->eeprom_regulatory == 0) {
  87. tmpval = (rtlphy->mcs_offset[0][6]) +
  88. (rtlphy->mcs_offset[0][7] << 8);
  89. tx_agc[RF90_PATH_A] += tmpval;
  90. tmpval = (rtlphy->mcs_offset[0][14]) +
  91. (rtlphy->mcs_offset[0][15] << 24);
  92. tx_agc[RF90_PATH_B] += tmpval;
  93. }
  94. }
  95. for (idx1 = RF90_PATH_A; idx1 <= RF90_PATH_B; idx1++) {
  96. ptr = (u8 *) (&(tx_agc[idx1]));
  97. for (idx2 = 0; idx2 < 4; idx2++) {
  98. if (*ptr > RF6052_MAX_TX_PWR)
  99. *ptr = RF6052_MAX_TX_PWR;
  100. ptr++;
  101. }
  102. }
  103. tmpval = tx_agc[RF90_PATH_A] & 0xff;
  104. rtl_set_bbreg(hw, RTXAGC_A_CCK1_MCS32, MASKBYTE1, tmpval);
  105. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  106. "CCK PWR 1M (rf-A) = 0x%x (reg 0x%x)\n",
  107. tmpval, RTXAGC_A_CCK1_MCS32);
  108. tmpval = tx_agc[RF90_PATH_A] >> 8;
  109. tmpval = tmpval & 0xff00ffff;
  110. rtl_set_bbreg(hw, RTXAGC_B_CCK11_A_CCK2_11, 0xffffff00, tmpval);
  111. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  112. "CCK PWR 2~11M (rf-A) = 0x%x (reg 0x%x)\n",
  113. tmpval, RTXAGC_B_CCK11_A_CCK2_11);
  114. tmpval = tx_agc[RF90_PATH_B] >> 24;
  115. rtl_set_bbreg(hw, RTXAGC_B_CCK11_A_CCK2_11, MASKBYTE0, tmpval);
  116. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  117. "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n",
  118. tmpval, RTXAGC_B_CCK11_A_CCK2_11);
  119. tmpval = tx_agc[RF90_PATH_B] & 0x00ffffff;
  120. rtl_set_bbreg(hw, RTXAGC_B_CCK1_55_MCS32, 0xffffff00, tmpval);
  121. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  122. "CCK PWR 1~5.5M (rf-B) = 0x%x (reg 0x%x)\n",
  123. tmpval, RTXAGC_B_CCK1_55_MCS32);
  124. }
  125. static void rtl92c_phy_get_power_base(struct ieee80211_hw *hw,
  126. u8 *ppowerlevel, u8 channel,
  127. u32 *ofdmbase, u32 *mcsbase)
  128. {
  129. struct rtl_priv *rtlpriv = rtl_priv(hw);
  130. struct rtl_phy *rtlphy = &(rtlpriv->phy);
  131. struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
  132. u32 powerBase0, powerBase1;
  133. u8 legacy_pwrdiff, ht20_pwrdiff;
  134. u8 i, powerlevel[2];
  135. for (i = 0; i < 2; i++) {
  136. powerlevel[i] = ppowerlevel[i];
  137. legacy_pwrdiff = rtlefuse->txpwr_legacyhtdiff[i][channel - 1];
  138. powerBase0 = powerlevel[i] + legacy_pwrdiff;
  139. powerBase0 = (powerBase0 << 24) | (powerBase0 << 16) |
  140. (powerBase0 << 8) | powerBase0;
  141. *(ofdmbase + i) = powerBase0;
  142. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  143. " [OFDM power base index rf(%c) = 0x%x]\n",
  144. i == 0 ? 'A' : 'B', *(ofdmbase + i));
  145. }
  146. for (i = 0; i < 2; i++) {
  147. if (rtlphy->current_chan_bw == HT_CHANNEL_WIDTH_20) {
  148. ht20_pwrdiff = rtlefuse->txpwr_ht20diff[i][channel - 1];
  149. powerlevel[i] += ht20_pwrdiff;
  150. }
  151. powerBase1 = powerlevel[i];
  152. powerBase1 = (powerBase1 << 24) |
  153. (powerBase1 << 16) | (powerBase1 << 8) | powerBase1;
  154. *(mcsbase + i) = powerBase1;
  155. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  156. " [MCS power base index rf(%c) = 0x%x]\n",
  157. i == 0 ? 'A' : 'B', *(mcsbase + i));
  158. }
  159. }
  160. static void _rtl92c_get_txpower_writeval_by_regulatory(struct ieee80211_hw *hw,
  161. u8 channel, u8 index,
  162. u32 *powerBase0,
  163. u32 *powerBase1,
  164. u32 *p_outwriteval)
  165. {
  166. struct rtl_priv *rtlpriv = rtl_priv(hw);
  167. struct rtl_phy *rtlphy = &(rtlpriv->phy);
  168. struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
  169. u8 i, chnlgroup = 0, pwr_diff_limit[4];
  170. u32 writeVal, customer_limit, rf;
  171. for (rf = 0; rf < 2; rf++) {
  172. switch (rtlefuse->eeprom_regulatory) {
  173. case 0:
  174. chnlgroup = 0;
  175. writeVal = rtlphy->mcs_offset[chnlgroup][index +
  176. (rf ? 8 : 0)]
  177. + ((index < 2) ? powerBase0[rf] : powerBase1[rf]);
  178. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  179. "RTK better performance, writeVal(%c) = 0x%x\n",
  180. rf == 0 ? 'A' : 'B', writeVal);
  181. break;
  182. case 1:
  183. if (rtlphy->current_chan_bw == HT_CHANNEL_WIDTH_20_40) {
  184. writeVal = ((index < 2) ? powerBase0[rf] :
  185. powerBase1[rf]);
  186. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  187. "Realtek regulatory, 40MHz, writeVal(%c) = 0x%x\n",
  188. rf == 0 ? 'A' : 'B', writeVal);
  189. } else {
  190. if (rtlphy->pwrgroup_cnt == 1)
  191. chnlgroup = 0;
  192. if (rtlphy->pwrgroup_cnt >= 3) {
  193. if (channel <= 3)
  194. chnlgroup = 0;
  195. else if (channel >= 4 && channel <= 9)
  196. chnlgroup = 1;
  197. else if (channel > 9)
  198. chnlgroup = 2;
  199. if (rtlphy->pwrgroup_cnt == 4)
  200. chnlgroup++;
  201. }
  202. writeVal = rtlphy->mcs_offset[chnlgroup]
  203. [index + (rf ? 8 : 0)] + ((index < 2) ?
  204. powerBase0[rf] :
  205. powerBase1[rf]);
  206. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  207. "Realtek regulatory, 20MHz, writeVal(%c) = 0x%x\n",
  208. rf == 0 ? 'A' : 'B', writeVal);
  209. }
  210. break;
  211. case 2:
  212. writeVal =
  213. ((index < 2) ? powerBase0[rf] : powerBase1[rf]);
  214. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  215. "Better regulatory, writeVal(%c) = 0x%x\n",
  216. rf == 0 ? 'A' : 'B', writeVal);
  217. break;
  218. case 3:
  219. chnlgroup = 0;
  220. if (rtlphy->current_chan_bw == HT_CHANNEL_WIDTH_20_40) {
  221. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  222. "customer's limit, 40MHz rf(%c) = 0x%x\n",
  223. rf == 0 ? 'A' : 'B',
  224. rtlefuse->pwrgroup_ht40[rf][channel -
  225. 1]);
  226. } else {
  227. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  228. "customer's limit, 20MHz rf(%c) = 0x%x\n",
  229. rf == 0 ? 'A' : 'B',
  230. rtlefuse->pwrgroup_ht20[rf][channel -
  231. 1]);
  232. }
  233. for (i = 0; i < 4; i++) {
  234. pwr_diff_limit[i] = (u8) ((rtlphy->mcs_offset
  235. [chnlgroup][index +
  236. (rf ? 8 : 0)] & (0x7f << (i * 8))) >>
  237. (i * 8));
  238. if (rtlphy->current_chan_bw ==
  239. HT_CHANNEL_WIDTH_20_40) {
  240. if (pwr_diff_limit[i] >
  241. rtlefuse->
  242. pwrgroup_ht40[rf][channel - 1])
  243. pwr_diff_limit[i] =
  244. rtlefuse->pwrgroup_ht40[rf]
  245. [channel - 1];
  246. } else {
  247. if (pwr_diff_limit[i] >
  248. rtlefuse->
  249. pwrgroup_ht20[rf][channel - 1])
  250. pwr_diff_limit[i] =
  251. rtlefuse->pwrgroup_ht20[rf]
  252. [channel - 1];
  253. }
  254. }
  255. customer_limit = (pwr_diff_limit[3] << 24) |
  256. (pwr_diff_limit[2] << 16) |
  257. (pwr_diff_limit[1] << 8) | (pwr_diff_limit[0]);
  258. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  259. "Customer's limit rf(%c) = 0x%x\n",
  260. rf == 0 ? 'A' : 'B', customer_limit);
  261. writeVal = customer_limit +
  262. ((index < 2) ? powerBase0[rf] : powerBase1[rf]);
  263. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  264. "Customer, writeVal rf(%c)= 0x%x\n",
  265. rf == 0 ? 'A' : 'B', writeVal);
  266. break;
  267. default:
  268. chnlgroup = 0;
  269. writeVal = rtlphy->mcs_offset[chnlgroup]
  270. [index + (rf ? 8 : 0)]
  271. + ((index < 2) ? powerBase0[rf] : powerBase1[rf]);
  272. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  273. "RTK better performance, writeVal rf(%c) = 0x%x\n",
  274. rf == 0 ? 'A' : 'B', writeVal);
  275. break;
  276. }
  277. if (rtlpriv->dm.dynamic_txhighpower_lvl == TXHIGHPWRLEVEL_BT1)
  278. writeVal = writeVal - 0x06060606;
  279. else if (rtlpriv->dm.dynamic_txhighpower_lvl ==
  280. TXHIGHPWRLEVEL_BT2)
  281. writeVal = writeVal - 0x0c0c0c0c;
  282. *(p_outwriteval + rf) = writeVal;
  283. }
  284. }
  285. static void _rtl92c_write_ofdm_power_reg(struct ieee80211_hw *hw,
  286. u8 index, u32 *pValue)
  287. {
  288. struct rtl_priv *rtlpriv = rtl_priv(hw);
  289. struct rtl_phy *rtlphy = &(rtlpriv->phy);
  290. u16 regoffset_a[6] = {
  291. RTXAGC_A_RATE18_06, RTXAGC_A_RATE54_24,
  292. RTXAGC_A_MCS03_MCS00, RTXAGC_A_MCS07_MCS04,
  293. RTXAGC_A_MCS11_MCS08, RTXAGC_A_MCS15_MCS12
  294. };
  295. u16 regoffset_b[6] = {
  296. RTXAGC_B_RATE18_06, RTXAGC_B_RATE54_24,
  297. RTXAGC_B_MCS03_MCS00, RTXAGC_B_MCS07_MCS04,
  298. RTXAGC_B_MCS11_MCS08, RTXAGC_B_MCS15_MCS12
  299. };
  300. u8 i, rf, pwr_val[4];
  301. u32 writeVal;
  302. u16 regoffset;
  303. for (rf = 0; rf < 2; rf++) {
  304. writeVal = pValue[rf];
  305. for (i = 0; i < 4; i++) {
  306. pwr_val[i] = (u8) ((writeVal & (0x7f <<
  307. (i * 8))) >> (i * 8));
  308. if (pwr_val[i] > RF6052_MAX_TX_PWR)
  309. pwr_val[i] = RF6052_MAX_TX_PWR;
  310. }
  311. writeVal = (pwr_val[3] << 24) | (pwr_val[2] << 16) |
  312. (pwr_val[1] << 8) | pwr_val[0];
  313. if (rf == 0)
  314. regoffset = regoffset_a[index];
  315. else
  316. regoffset = regoffset_b[index];
  317. rtl_set_bbreg(hw, regoffset, MASKDWORD, writeVal);
  318. RTPRINT(rtlpriv, FPHY, PHY_TXPWR,
  319. "Set 0x%x = %08x\n", regoffset, writeVal);
  320. if (((get_rf_type(rtlphy) == RF_2T2R) &&
  321. (regoffset == RTXAGC_A_MCS15_MCS12 ||
  322. regoffset == RTXAGC_B_MCS15_MCS12)) ||
  323. ((get_rf_type(rtlphy) != RF_2T2R) &&
  324. (regoffset == RTXAGC_A_MCS07_MCS04 ||
  325. regoffset == RTXAGC_B_MCS07_MCS04))) {
  326. writeVal = pwr_val[3];
  327. if (regoffset == RTXAGC_A_MCS15_MCS12 ||
  328. regoffset == RTXAGC_A_MCS07_MCS04)
  329. regoffset = 0xc90;
  330. if (regoffset == RTXAGC_B_MCS15_MCS12 ||
  331. regoffset == RTXAGC_B_MCS07_MCS04)
  332. regoffset = 0xc98;
  333. for (i = 0; i < 3; i++) {
  334. writeVal = (writeVal > 6) ? (writeVal - 6) : 0;
  335. rtl_write_byte(rtlpriv, (u32) (regoffset + i),
  336. (u8) writeVal);
  337. }
  338. }
  339. }
  340. }
  341. void rtl92ce_phy_rf6052_set_ofdm_txpower(struct ieee80211_hw *hw,
  342. u8 *ppowerlevel, u8 channel)
  343. {
  344. u32 writeVal[2], powerBase0[2], powerBase1[2];
  345. u8 index;
  346. rtl92c_phy_get_power_base(hw, ppowerlevel,
  347. channel, &powerBase0[0], &powerBase1[0]);
  348. for (index = 0; index < 6; index++) {
  349. _rtl92c_get_txpower_writeval_by_regulatory(hw,
  350. channel, index,
  351. &powerBase0[0],
  352. &powerBase1[0],
  353. &writeVal[0]);
  354. _rtl92c_write_ofdm_power_reg(hw, index, &writeVal[0]);
  355. }
  356. }
  357. bool rtl92ce_phy_rf6052_config(struct ieee80211_hw *hw)
  358. {
  359. struct rtl_priv *rtlpriv = rtl_priv(hw);
  360. struct rtl_phy *rtlphy = &(rtlpriv->phy);
  361. if (rtlphy->rf_type == RF_1T1R)
  362. rtlphy->num_total_rfpath = 1;
  363. else
  364. rtlphy->num_total_rfpath = 2;
  365. return _rtl92ce_phy_rf6052_config_parafile(hw);
  366. }
  367. static bool _rtl92ce_phy_rf6052_config_parafile(struct ieee80211_hw *hw)
  368. {
  369. struct rtl_priv *rtlpriv = rtl_priv(hw);
  370. struct rtl_phy *rtlphy = &(rtlpriv->phy);
  371. u32 u4_regvalue = 0;
  372. u8 rfpath;
  373. bool rtstatus = true;
  374. struct bb_reg_def *pphyreg;
  375. for (rfpath = 0; rfpath < rtlphy->num_total_rfpath; rfpath++) {
  376. pphyreg = &rtlphy->phyreg_def[rfpath];
  377. switch (rfpath) {
  378. case RF90_PATH_A:
  379. case RF90_PATH_C:
  380. u4_regvalue = rtl_get_bbreg(hw, pphyreg->rfintfs,
  381. BRFSI_RFENV);
  382. break;
  383. case RF90_PATH_B:
  384. case RF90_PATH_D:
  385. u4_regvalue = rtl_get_bbreg(hw, pphyreg->rfintfs,
  386. BRFSI_RFENV << 16);
  387. break;
  388. }
  389. rtl_set_bbreg(hw, pphyreg->rfintfe, BRFSI_RFENV << 16, 0x1);
  390. udelay(1);
  391. rtl_set_bbreg(hw, pphyreg->rfintfo, BRFSI_RFENV, 0x1);
  392. udelay(1);
  393. rtl_set_bbreg(hw, pphyreg->rfhssi_para2,
  394. B3WIREADDREAALENGTH, 0x0);
  395. udelay(1);
  396. rtl_set_bbreg(hw, pphyreg->rfhssi_para2, B3WIREDATALENGTH, 0x0);
  397. udelay(1);
  398. switch (rfpath) {
  399. case RF90_PATH_A:
  400. rtstatus = rtl92c_phy_config_rf_with_headerfile(hw,
  401. (enum radio_path)rfpath);
  402. break;
  403. case RF90_PATH_B:
  404. rtstatus = rtl92c_phy_config_rf_with_headerfile(hw,
  405. (enum radio_path)rfpath);
  406. break;
  407. case RF90_PATH_C:
  408. break;
  409. case RF90_PATH_D:
  410. break;
  411. }
  412. switch (rfpath) {
  413. case RF90_PATH_A:
  414. case RF90_PATH_C:
  415. rtl_set_bbreg(hw, pphyreg->rfintfs,
  416. BRFSI_RFENV, u4_regvalue);
  417. break;
  418. case RF90_PATH_B:
  419. case RF90_PATH_D:
  420. rtl_set_bbreg(hw, pphyreg->rfintfs,
  421. BRFSI_RFENV << 16, u4_regvalue);
  422. break;
  423. }
  424. if (!rtstatus) {
  425. RT_TRACE(rtlpriv, COMP_INIT, DBG_TRACE,
  426. "Radio[%d] Fail!!\n", rfpath);
  427. return false;
  428. }
  429. }
  430. RT_TRACE(rtlpriv, COMP_INIT, DBG_TRACE, "<---\n");
  431. return rtstatus;
  432. }