| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806 |
- /******************************************************************************
- *
- * Copyright(c) 2007 - 2017 Realtek Corporation.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of version 2 of the GNU General Public License as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * The full GNU General Public License is included in this distribution in the
- * file called LICENSE.
- *
- * Contact Information:
- * wlanfae <wlanfae@realtek.com>
- * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
- * Hsinchu 300, Taiwan.
- *
- * Larry Finger <Larry.Finger@lwfinger.net>
- *
- *****************************************************************************/
- /* ************************************************************
- * include files
- * ************************************************************
- */
- #include "mp_precomp.h"
- #include "phydm_precomp.h"
- #if (RTL8822B_SUPPORT == 1 || RTL8821C_SUPPORT == 1 ||\
- RTL8195B_SUPPORT == 1 || RTL8198F_SUPPORT == 1)
- void _iqk_page_switch(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- if (dm->support_ic_type == ODM_RTL8821C)
- odm_write_4byte(dm, 0x1b00, 0xf8000008);
- else
- odm_write_4byte(dm, 0x1b00, 0xf800000a);
- }
- u32 halrf_psd_log2base(u32 val)
- {
- u8 j;
- u32 tmp, tmp2, val_integerd_b = 0, tindex, shiftcount = 0;
- u32 result, val_fractiond_b = 0;
- u32 table_fraction[21] = {
- 0, 432, 332, 274, 232, 200, 174, 151, 132, 115,
- 100, 86, 74, 62, 51, 42, 32, 23, 15, 7, 0};
- if (val == 0)
- return 0;
- tmp = val;
- while (1) {
- if (tmp == 1)
- break;
- tmp = (tmp >> 1);
- shiftcount++;
- }
- val_integerd_b = shiftcount + 1;
- tmp2 = 1;
- for (j = 1; j <= val_integerd_b; j++)
- tmp2 = tmp2 * 2;
- tmp = (val * 100) / tmp2;
- tindex = tmp / 5;
- if (tindex > 20)
- tindex = 20;
- val_fractiond_b = table_fraction[tindex];
- result = val_integerd_b * 100 - val_fractiond_b;
- return result;
- }
- void phydm_get_iqk_cfir(void *dm_void, u8 idx, u8 path, boolean debug)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- u8 i, ch;
- u32 tmp;
- u32 bit_mask_20_16 = BIT(20) | BIT(19) | BIT(18) | BIT(17) | BIT(16);
- if (debug)
- ch = 2;
- else
- ch = 0;
- odm_set_bb_reg(dm, R_0x1b00, MASKDWORD, 0xf8000008 | path << 1);
- if (idx == 0)
- odm_set_bb_reg(dm, R_0x1b0c, BIT(13) | BIT(12), 0x3);
- else
- odm_set_bb_reg(dm, R_0x1b0c, BIT(13) | BIT(12), 0x1);
- odm_set_bb_reg(dm, R_0x1bd4, bit_mask_20_16, 0x10);
- for (i = 0; i < 8; i++) {
- odm_set_bb_reg(dm, R_0x1bd8, MASKDWORD, 0xe0000001 + (i * 4));
- tmp = odm_get_bb_reg(dm, R_0x1bfc, MASKDWORD);
- iqk_info->iqk_cfir_real[ch][path][idx][i] =
- (tmp & 0x0fff0000) >> 16;
- iqk_info->iqk_cfir_imag[ch][path][idx][i] = tmp & 0xfff;
- }
- odm_set_bb_reg(dm, R_0x1bd8, MASKDWORD, 0x0);
- odm_set_bb_reg(dm, R_0x1b0c, BIT(13) | BIT(12), 0x0);
- }
- void halrf_iqk_xym_enable(struct dm_struct *dm, u8 xym_enable)
- {
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- if (xym_enable == 0)
- iqk_info->xym_read = false;
- else
- iqk_info->xym_read = true;
- RF_DBG(dm, DBG_RF_IQK, "[IQK]%-20s %s\n", "xym_read = ",
- (iqk_info->xym_read ? "true" : "false"));
- }
- /*xym_type => 0: rx_sym; 1: tx_xym; 2:gs1_xym; 3:gs2_sym; 4: rxk1_xym*/
- void halrf_iqk_xym_read(void *dm_void, u8 path, u8 xym_type)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- u8 i, start, num;
- u32 tmp1, tmp2;
- if (!iqk_info->xym_read)
- return;
- if (*dm->band_width == 0) {
- start = 3;
- num = 4;
- } else if (*dm->band_width == 1) {
- start = 2;
- num = 6;
- } else {
- start = 0;
- num = 10;
- }
- odm_write_4byte(dm, 0x1b00, 0xf8000008);
- tmp1 = odm_read_4byte(dm, 0x1b1c);
- odm_write_4byte(dm, 0x1b1c, 0xa2193c32);
- odm_write_4byte(dm, 0x1b00, 0xf800000a);
- tmp2 = odm_read_4byte(dm, 0x1b1c);
- odm_write_4byte(dm, 0x1b1c, 0xa2193c32);
- for (path = 0; path < 2; path++) {
- odm_write_4byte(dm, 0x1b00, 0xf8000008 | path << 1);
- switch (xym_type) {
- case 0:
- for (i = 0; i < num; i++) {
- odm_write_4byte(dm, 0x1b14, 0xe6 + start + i);
- odm_write_4byte(dm, 0x1b14, 0x0);
- iqk_info->rx_xym[path][i] =
- odm_read_4byte(dm, 0x1b38);
- }
- break;
- case 1:
- for (i = 0; i < num; i++) {
- odm_write_4byte(dm, 0x1b14, 0xe6 + start + i);
- odm_write_4byte(dm, 0x1b14, 0x0);
- iqk_info->tx_xym[path][i] =
- odm_read_4byte(dm, 0x1b38);
- }
- break;
- case 2:
- for (i = 0; i < 6; i++) {
- odm_write_4byte(dm, 0x1b14, 0xe0 + i);
- odm_write_4byte(dm, 0x1b14, 0x0);
- iqk_info->gs1_xym[path][i] =
- odm_read_4byte(dm, 0x1b38);
- }
- break;
- case 3:
- for (i = 0; i < 6; i++) {
- odm_write_4byte(dm, 0x1b14, 0xe0 + i);
- odm_write_4byte(dm, 0x1b14, 0x0);
- iqk_info->gs2_xym[path][i] =
- odm_read_4byte(dm, 0x1b38);
- }
- break;
- case 4:
- for (i = 0; i < 6; i++) {
- odm_write_4byte(dm, 0x1b14, 0xe0 + i);
- odm_write_4byte(dm, 0x1b14, 0x0);
- iqk_info->rxk1_xym[path][i] =
- odm_read_4byte(dm, 0x1b38);
- }
- break;
- }
- odm_write_4byte(dm, 0x1b38, 0x20000000);
- odm_write_4byte(dm, 0x1b00, 0xf8000008);
- odm_write_4byte(dm, 0x1b1c, tmp1);
- odm_write_4byte(dm, 0x1b00, 0xf800000a);
- odm_write_4byte(dm, 0x1b1c, tmp2);
- _iqk_page_switch(dm);
- }
- }
- /*xym_type => 0: rx_sym; 1: tx_xym; 2:gs1_xym; 3:gs2_sym; 4: rxk1_xym*/
- void halrf_iqk_xym_show(struct dm_struct *dm, u8 xym_type)
- {
- u8 num, path, path_num, i;
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- if (dm->rf_type == RF_1T1R)
- path_num = 0x1;
- else if (dm->rf_type == RF_2T2R)
- path_num = 0x2;
- else
- path_num = 0x4;
- if (*dm->band_width == CHANNEL_WIDTH_20)
- num = 4;
- else if (*dm->band_width == CHANNEL_WIDTH_40)
- num = 6;
- else
- num = 10;
- for (path = 0; path < path_num; path++) {
- switch (xym_type) {
- case 0:
- for (i = 0; i < num; i++)
- RF_DBG(dm, DBG_RF_IQK,
- "[IQK]%-20s %-2d: 0x%x\n",
- (path == 0) ? "PATH A RX-XYM " :
- "PATH B RX-XYM", i,
- iqk_info->rx_xym[path][i]);
- break;
- case 1:
- for (i = 0; i < num; i++)
- RF_DBG(dm, DBG_RF_IQK,
- "[IQK]%-20s %-2d: 0x%x\n",
- (path == 0) ? "PATH A TX-XYM " :
- "PATH B TX-XYM", i,
- iqk_info->tx_xym[path][i]);
- break;
- case 2:
- for (i = 0; i < 6; i++)
- RF_DBG(dm, DBG_RF_IQK,
- "[IQK]%-20s %-2d: 0x%x\n",
- (path == 0) ? "PATH A GS1-XYM " :
- "PATH B GS1-XYM", i,
- iqk_info->gs1_xym[path][i]);
- break;
- case 3:
- for (i = 0; i < 6; i++)
- RF_DBG(dm, DBG_RF_IQK,
- "[IQK]%-20s %-2d: 0x%x\n",
- (path == 0) ? "PATH A GS2-XYM " :
- "PATH B GS2-XYM", i,
- iqk_info->gs2_xym[path][i]);
- break;
- case 4:
- for (i = 0; i < 6; i++)
- RF_DBG(dm, DBG_RF_IQK,
- "[IQK]%-20s %-2d: 0x%x\n",
- (path == 0) ? "PATH A RXK1-XYM " :
- "PATH B RXK1-XYM", i,
- iqk_info->rxk1_xym[path][i]);
- break;
- }
- }
- }
- void halrf_iqk_xym_dump(void *dm_void)
- {
- u32 tmp1, tmp2;
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- odm_write_4byte(dm, 0x1b00, 0xf8000008);
- tmp1 = odm_read_4byte(dm, 0x1b1c);
- odm_write_4byte(dm, 0x1b00, 0xf800000a);
- tmp2 = odm_read_4byte(dm, 0x1b1c);
- #if 0
- /*halrf_iqk_xym_read(dm, xym_type);*/
- #endif
- odm_write_4byte(dm, 0x1b00, 0xf8000008);
- odm_write_4byte(dm, 0x1b1c, tmp1);
- odm_write_4byte(dm, 0x1b00, 0xf800000a);
- odm_write_4byte(dm, 0x1b1c, tmp2);
- _iqk_page_switch(dm);
- }
- void halrf_iqk_info_dump(void *dm_void, u32 *_used, char *output, u32 *_out_len)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- u32 used = *_used;
- u32 out_len = *_out_len;
- u8 rf_path, j, reload_iqk = 0;
- u32 tmp;
- /*two channel, PATH, TX/RX, 0:pass 1 :fail*/
- boolean iqk_result[2][NUM][2];
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- if (!(dm->support_ic_type & (ODM_RTL8822B | ODM_RTL8821C)))
- return;
- /* IQK INFO */
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s\n",
- "% IQK Info %");
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s\n",
- (dm->fw_offload_ability & PHYDM_RF_IQK_OFFLOAD) ? "FW-IQK" :
- "Driver-IQK");
- reload_iqk = (u8)odm_get_bb_reg(dm, R_0x1bf0, BIT(16));
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s: %s\n",
- "reload", (reload_iqk) ? "True" : "False");
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s: %s\n",
- "rfk_forbidden", (iqk_info->rfk_forbidden) ? "True" : "False");
- #if (RTL8814A_SUPPORT == 1 || RTL8822B_SUPPORT == 1 || \
- RTL8821C_SUPPORT == 1 || RTL8195B_SUPPORT == 1)
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s: %s\n",
- "segment_iqk", (iqk_info->segment_iqk) ? "True" : "False");
- #endif
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s:%d %d\n",
- "iqk count / fail count", dm->n_iqk_cnt, dm->n_iqk_fail_cnt);
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s: %d\n",
- "channel", *dm->channel);
- if (*dm->band_width == CHANNEL_WIDTH_20)
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "%-20s: %s\n", "bandwidth", "BW_20");
- else if (*dm->band_width == CHANNEL_WIDTH_40)
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "%-20s: %s\n", "bandwidth", "BW_40");
- else if (*dm->band_width == CHANNEL_WIDTH_80)
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "%-20s: %s\n", "bandwidth", "BW_80");
- else if (*dm->band_width == CHANNEL_WIDTH_160)
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "%-20s: %s\n", "bandwidth", "BW_160");
- else
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "%-20s: %s\n", "bandwidth", "BW_UNKNOWN");
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "%-20s: %llu %s\n", "progressing_time",
- dm->rf_calibrate_info.iqk_total_progressing_time, "(ms)");
- tmp = odm_read_4byte(dm, 0x1bf0);
- for (rf_path = RF_PATH_A; rf_path <= RF_PATH_B; rf_path++)
- for (j = 0; j < 2; j++)
- iqk_result[0][rf_path][j] = (boolean)
- (tmp & (BIT(rf_path + (j * 4)) >> (rf_path + (j * 4))));
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "%-20s: 0x%08x\n", "Reg0x1bf0", tmp);
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s: %s\n",
- "PATH_A-Tx result",
- (iqk_result[0][RF_PATH_A][0]) ? "Fail" : "Pass");
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s: %s\n",
- "PATH_A-Rx result",
- (iqk_result[0][RF_PATH_A][1]) ? "Fail" : "Pass");
- #if (RTL8822B_SUPPORT == 1)
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s: %s\n",
- "PATH_B-Tx result",
- (iqk_result[0][RF_PATH_B][0]) ? "Fail" : "Pass");
- PDM_SNPF(out_len, used, output + used, out_len - used, "%-20s: %s\n",
- "PATH_B-Rx result",
- (iqk_result[0][RF_PATH_B][1]) ? "Fail" : "Pass");
- #endif
- *_used = used;
- *_out_len = out_len;
- }
- void halrf_get_fw_version(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- rf->fw_ver = (dm->fw_version << 16) | dm->fw_sub_version;
- }
- void halrf_iqk_dbg(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- u8 rf_path, j;
- u32 tmp;
- /*two channel, PATH, TX/RX, 0:pass 1 :fail*/
- boolean iqk_result[2][NUM][2];
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- struct _hal_rf_ *rf = &dm->rf_table;
- /* IQK INFO */
- RF_DBG(dm, DBG_RF_IQK, "%-20s\n", "====== IQK Info ======");
- RF_DBG(dm, DBG_RF_IQK, "%-20s\n",
- (dm->fw_offload_ability & PHYDM_RF_IQK_OFFLOAD) ? "FW-IQK" :
- "Driver-IQK");
- if (dm->fw_offload_ability & PHYDM_RF_IQK_OFFLOAD) {
- halrf_get_fw_version(dm);
- RF_DBG(dm, DBG_RF_IQK, "%-20s: 0x%x\n", "FW_VER", rf->fw_ver);
- } else {
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "IQK_VER", HALRF_IQK_VER);
- }
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "reload",
- (iqk_info->is_reload) ? "True" : "False");
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %d %d\n", "iqk count / fail count",
- dm->n_iqk_cnt, dm->n_iqk_fail_cnt);
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %d\n", "channel", *dm->channel);
- if (*dm->band_width == CHANNEL_WIDTH_20)
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "bandwidth", "BW_20");
- else if (*dm->band_width == CHANNEL_WIDTH_40)
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "bandwidth", "BW_40");
- else if (*dm->band_width == CHANNEL_WIDTH_80)
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "bandwidth", "BW_80");
- else if (*dm->band_width == CHANNEL_WIDTH_160)
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "bandwidth", "BW_160");
- else
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "bandwidth",
- "BW_UNKNOWN");
- #if 0
- /*
- * RF_DBG(dm, DBG_RF_IQK, "%-20s: %llu %s\n",
- * "progressing_time",
- * dm->rf_calibrate_info.iqk_total_progressing_time, "(ms)");
- */
- #endif
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "rfk_forbidden",
- (iqk_info->rfk_forbidden) ? "True" : "False");
- #if (RTL8814A_SUPPORT == 1 || RTL8822B_SUPPORT == 1 || \
- RTL8821C_SUPPORT == 1 || RTL8195B_SUPPORT == 1)
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "segment_iqk",
- (iqk_info->segment_iqk) ? "True" : "False");
- #endif
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %llu %s\n", "progressing_time",
- dm->rf_calibrate_info.iqk_progressing_time, "(ms)");
- tmp = odm_read_4byte(dm, 0x1bf0);
- for (rf_path = RF_PATH_A; rf_path <= RF_PATH_B; rf_path++)
- for (j = 0; j < 2; j++)
- iqk_result[0][rf_path][j] = (boolean)
- (tmp & (BIT(rf_path + (j * 4)) >> (rf_path + (j * 4))));
- RF_DBG(dm, DBG_RF_IQK, "%-20s: 0x%08x\n", "Reg0x1bf0", tmp);
- RF_DBG(dm, DBG_RF_IQK, "%-20s: 0x%08x\n", "Reg0x1be8",
- odm_read_4byte(dm, 0x1be8));
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "PATH_A-Tx result",
- (iqk_result[0][RF_PATH_A][0]) ? "Fail" : "Pass");
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "PATH_A-Rx result",
- (iqk_result[0][RF_PATH_A][1]) ? "Fail" : "Pass");
- #if (RTL8822B_SUPPORT == 1)
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "PATH_B-Tx result",
- (iqk_result[0][RF_PATH_B][0]) ? "Fail" : "Pass");
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %s\n", "PATH_B-Rx result",
- (iqk_result[0][RF_PATH_B][1]) ? "Fail" : "Pass");
- #endif
- }
- void halrf_lck_dbg(struct dm_struct *dm)
- {
- RF_DBG(dm, DBG_RF_IQK, "%-20s\n", "====== LCK Info ======");
- #if 0
- /*RF_DBG(dm, DBG_RF_IQK, "%-20s\n",
- * (dm->fw_offload_ability & PHYDM_RF_IQK_OFFLOAD) ? "LCK" : "RTK"));
- */
- #endif
- RF_DBG(dm, DBG_RF_IQK, "%-20s: %llu %s\n", "progressing_time",
- dm->rf_calibrate_info.lck_progressing_time, "(ms)");
- }
- void halrf_iqk_dbg_cfir_backup(struct dm_struct *dm)
- {
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- u8 path, idx, i;
- RF_DBG(dm, DBG_RF_IQK, "[IQK]%-20s\n", "backup TX/RX CFIR");
- for (path = 0; path < 2; path++)
- for (idx = 0; idx < 2; idx++)
- phydm_get_iqk_cfir(dm, idx, path, true);
- for (path = 0; path < 2; path++) {
- for (idx = 0; idx < 2; idx++) {
- for (i = 0; i < 8; i++) {
- RF_DBG(dm, DBG_RF_IQK,
- "[IQK]%-7s %-3s CFIR_real: %-2d: 0x%x\n",
- (path == 0) ? "PATH A" : "PATH B",
- (idx == 0) ? "TX" : "RX", i,
- iqk_info->iqk_cfir_real[2][path][idx][i])
- ;
- }
- for (i = 0; i < 8; i++) {
- RF_DBG(dm, DBG_RF_IQK,
- "[IQK]%-7s %-3s CFIR_img:%-2d: 0x%x\n",
- (path == 0) ? "PATH A" : "PATH B",
- (idx == 0) ? "TX" : "RX", i,
- iqk_info->iqk_cfir_imag[2][path][idx][i])
- ;
- }
- }
- }
- }
- void halrf_iqk_dbg_cfir_backup_update(struct dm_struct *dm)
- {
- struct dm_iqk_info *iqk = &dm->IQK_info;
- u8 i, path, idx;
- u32 bmask13_12 = BIT(13) | BIT(12);
- u32 bmask20_16 = BIT(20) | BIT(19) | BIT(18) | BIT(17) | BIT(16);
- u32 data;
- if (iqk->iqk_cfir_real[2][0][0][0] == 0) {
- RF_DBG(dm, DBG_RF_IQK, "[IQK]%-20s\n", "CFIR is invalid");
- return;
- }
- for (path = 0; path < 2; path++) {
- for (idx = 0; idx < 2; idx++) {
- odm_set_bb_reg(dm, R_0x1b00, MASKDWORD,
- 0xf8000008 | path << 1);
- odm_set_bb_reg(dm, R_0x1b2c, MASKDWORD, 0x7);
- odm_set_bb_reg(dm, R_0x1b38, MASKDWORD, 0x20000000);
- odm_set_bb_reg(dm, R_0x1b3c, MASKDWORD, 0x20000000);
- odm_set_bb_reg(dm, R_0x1bcc, MASKDWORD, 0x00000000);
- if (idx == 0)
- odm_set_bb_reg(dm, R_0x1b0c, bmask13_12, 0x3);
- else
- odm_set_bb_reg(dm, R_0x1b0c, bmask13_12, 0x1);
- odm_set_bb_reg(dm, R_0x1bd4, bmask20_16, 0x10);
- for (i = 0; i < 8; i++) {
- data = ((0xc0000000 >> idx) + 0x3) + (i * 4) +
- (iqk->iqk_cfir_real[2][path][idx][i]
- << 9);
- odm_write_4byte(dm, 0x1bd8, data);
- data = ((0xc0000000 >> idx) + 0x1) + (i * 4) +
- (iqk->iqk_cfir_imag[2][path][idx][i]
- << 9);
- odm_write_4byte(dm, 0x1bd8, data);
- #if 0
- /*odm_write_4byte(dm, 0x1bd8, iqk->iqk_cfir_real[2][path][idx][i]);*/
- /*odm_write_4byte(dm, 0x1bd8, iqk->iqk_cfir_imag[2][path][idx][i]);*/
- #endif
- }
- }
- odm_set_bb_reg(dm, R_0x1bd8, MASKDWORD, 0x0);
- odm_set_bb_reg(dm, R_0x1b0c, bmask13_12, 0x0);
- }
- RF_DBG(dm, DBG_RF_IQK, "[IQK]%-20s\n", "update new CFIR");
- }
- void halrf_iqk_dbg_cfir_reload(struct dm_struct *dm)
- {
- struct dm_iqk_info *iqk = &dm->IQK_info;
- u8 i, path, idx;
- u32 bmask13_12 = BIT(13) | BIT(12);
- u32 bmask20_16 = BIT(20) | BIT(19) | BIT(18) | BIT(17) | BIT(16);
- u32 data;
- if (iqk->iqk_cfir_real[0][0][0][0] == 0) {
- RF_DBG(dm, DBG_RF_IQK, "[IQK]%-20s\n", "CFIR is invalid");
- return;
- }
- for (path = 0; path < 2; path++) {
- for (idx = 0; idx < 2; idx++) {
- odm_set_bb_reg(dm, R_0x1b00, MASKDWORD,
- 0xf8000008 | path << 1);
- odm_set_bb_reg(dm, R_0x1b2c, MASKDWORD, 0x7);
- odm_set_bb_reg(dm, R_0x1b38, MASKDWORD, 0x20000000);
- odm_set_bb_reg(dm, R_0x1b3c, MASKDWORD, 0x20000000);
- odm_set_bb_reg(dm, R_0x1bcc, MASKDWORD, 0x00000000);
- if (idx == 0)
- odm_set_bb_reg(dm, R_0x1b0c, bmask13_12, 0x3);
- else
- odm_set_bb_reg(dm, R_0x1b0c, bmask13_12, 0x1);
- odm_set_bb_reg(dm, R_0x1bd4, bmask20_16, 0x10);
- for (i = 0; i < 8; i++) {
- #if 0
- /*odm_write_4byte(dm, 0x1bd8, iqk->iqk_cfir_real[0][path][idx][i]);*/
- /*odm_write_4byte(dm, 0x1bd8, iqk->iqk_cfir_imag[0][path][idx][i]);*/
- #endif
- data = ((0xc0000000 >> idx) + 0x3) + (i * 4) +
- (iqk->iqk_cfir_real[0][path][idx][i]
- << 9);
- odm_write_4byte(dm, 0x1bd8, data);
- data = ((0xc0000000 >> idx) + 0x1) + (i * 4) +
- (iqk->iqk_cfir_imag[0][path][idx][i]
- << 9);
- odm_write_4byte(dm, 0x1bd8, data);
- }
- }
- odm_set_bb_reg(dm, R_0x1bd8, MASKDWORD, 0x0);
- odm_set_bb_reg(dm, R_0x1b0c, bmask13_12, 0x0);
- }
- RF_DBG(dm, DBG_RF_IQK, "[IQK]%-20s\n", "write CFIR with default value");
- }
- void halrf_iqk_dbg_cfir_write(struct dm_struct *dm, u8 type, u32 path, u32 idx,
- u32 i, u32 data)
- {
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- if (type == 0)
- iqk_info->iqk_cfir_real[2][path][idx][i] = data;
- else
- iqk_info->iqk_cfir_imag[2][path][idx][i] = data;
- }
- void halrf_iqk_dbg_cfir_backup_show(struct dm_struct *dm)
- {
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- u8 path, idx, i;
- RF_DBG(dm, DBG_RF_IQK, "[IQK]%-20s\n", "backup TX/RX CFIR");
- for (path = 0; path < 2; path++) {
- for (idx = 0; idx < 2; idx++) {
- for (i = 0; i < 8; i++) {
- RF_DBG(dm, DBG_RF_IQK,
- "[IQK]%-10s %-3s CFIR_real:%-2d: 0x%x\n",
- (path == 0) ? "PATH A" : "PATH B",
- (idx == 0) ? "TX" : "RX", i,
- iqk_info->iqk_cfir_real[2][path][idx][i])
- ;
- }
- for (i = 0; i < 8; i++) {
- RF_DBG(dm, DBG_RF_IQK,
- "[IQK]%-10s %-3s CFIR_img:%-2d: 0x%x\n",
- (path == 0) ? "PATH A" : "PATH B",
- (idx == 0) ? "TX" : "RX", i,
- iqk_info->iqk_cfir_imag[2][path][idx][i])
- ;
- }
- }
- }
- }
- void halrf_do_imr_test(void *dm_void, u8 flag_imr_test)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- if (flag_imr_test != 0x0)
- switch (dm->support_ic_type) {
- #if (RTL8822B_SUPPORT == 1)
- case ODM_RTL8822B:
- do_imr_test_8822b(dm);
- break;
- #endif
- #if (RTL8821C_SUPPORT == 1)
- case ODM_RTL8821C:
- do_imr_test_8821c(dm);
- break;
- #endif
- default:
- break;
- }
- }
- void halrf_iqk_debug(void *dm_void, u32 *const dm_value, u32 *_used,
- char *output, u32 *_out_len)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- #if 0
- /*dm_value[0]=0x0: backup from SRAM & show*/
- /*dm_value[0]=0x1: write backup CFIR to SRAM*/
- /*dm_value[0]=0x2: reload default CFIR to SRAM*/
- /*dm_value[0]=0x3: show backup*/
- /*dm_value[0]=0x10: write backup CFIR real part*/
- /*--> dm_value[1]:path, dm_value[2]:tx/rx, dm_value[3]:index, dm_value[4]:data*/
- /*dm_value[0]=0x11: write backup CFIR imag*/
- /*--> dm_value[1]:path, dm_value[2]:tx/rx, dm_value[3]:index, dm_value[4]:data*/
- /*dm_value[0]=0x20 :xym_read enable*/
- /*--> dm_value[1]:0:disable, 1:enable*/
- /*if dm_value[0]=0x20 = enable, */
- /*0x1:show rx_sym; 0x2: tx_xym; 0x3:gs1_xym; 0x4:gs2_sym; 0x5:rxk1_xym*/
- #endif
- if (dm_value[0] == 0x0)
- halrf_iqk_dbg_cfir_backup(dm);
- else if (dm_value[0] == 0x1)
- halrf_iqk_dbg_cfir_backup_update(dm);
- else if (dm_value[0] == 0x2)
- halrf_iqk_dbg_cfir_reload(dm);
- else if (dm_value[0] == 0x3)
- halrf_iqk_dbg_cfir_backup_show(dm);
- else if (dm_value[0] == 0x10)
- halrf_iqk_dbg_cfir_write(dm, 0, dm_value[1], dm_value[2],
- dm_value[3], dm_value[4]);
- else if (dm_value[0] == 0x11)
- halrf_iqk_dbg_cfir_write(dm, 1, dm_value[1], dm_value[2],
- dm_value[3], dm_value[4]);
- else if (dm_value[0] == 0x20)
- halrf_iqk_xym_enable(dm, (u8)dm_value[1]);
- else if (dm_value[0] == 0x21)
- halrf_iqk_xym_show(dm, (u8)dm_value[1]);
- else if (dm_value[0] == 0x30)
- halrf_do_imr_test(dm, (u8)dm_value[1]);
- }
- void halrf_iqk_hwtx_check(void *dm_void, boolean is_check)
- {
- #if 0
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- u32 tmp_b04;
- if (is_check) {
- iqk_info->is_hwtx = (boolean)odm_get_bb_reg(dm, R_0xb00, BIT(8));
- } else {
- if (iqk_info->is_hwtx) {
- tmp_b04 = odm_read_4byte(dm, 0xb04);
- odm_set_bb_reg(dm, R_0xb04, BIT(3) | BIT(2), 0x0);
- odm_write_4byte(dm, 0xb04, tmp_b04);
- }
- }
- #endif
- }
- void halrf_segment_iqk_trigger(void *dm_void, boolean clear,
- boolean segment_iqk)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- struct _hal_rf_ *rf = &dm->rf_table;
- u64 start_time;
- #if (DM_ODM_SUPPORT_TYPE & (ODM_WIN))
- if (odm_check_power_status(dm) == false)
- return;
- #endif
- if (dm->mp_mode &&
- rf->is_con_tx &&
- rf->is_single_tone &&
- rf->is_carrier_suppresion)
- if (*dm->mp_mode &&
- ((*rf->is_con_tx ||
- *rf->is_single_tone ||
- *rf->is_carrier_suppresion)))
- return;
- #if (DM_ODM_SUPPORT_TYPE == ODM_CE)
- if (!(rf->rf_supportability & HAL_RF_IQK))
- return;
- #endif
- #if DISABLE_BB_RF
- return;
- #endif
- if (iqk_info->rfk_forbidden)
- return;
- if (!dm->rf_calibrate_info.is_iqk_in_progress) {
- odm_acquire_spin_lock(dm, RT_IQK_SPINLOCK);
- dm->rf_calibrate_info.is_iqk_in_progress = true;
- odm_release_spin_lock(dm, RT_IQK_SPINLOCK);
- start_time = odm_get_current_time(dm);
- dm->IQK_info.segment_iqk = segment_iqk;
- switch (dm->support_ic_type) {
- #if (RTL8822B_SUPPORT == 1)
- case ODM_RTL8822B:
- phy_iq_calibrate_8822b(dm, clear, segment_iqk);
- break;
- #endif
- #if (RTL8821C_SUPPORT == 1)
- case ODM_RTL8821C:
- phy_iq_calibrate_8821c(dm, clear, segment_iqk);
- break;
- #endif
- #if (RTL8814B_SUPPORT == 1)
- case ODM_RTL8814B:
- break;
- #endif
- #if (RTL8195B_SUPPORT == 1)
- case ODM_RTL8195B:
- phy_iq_calibrate_8195b(dm, clear, segment_iqk);
- break;
- #endif
- #if (RTL8198F_SUPPORT == 1)
- case ODM_RTL8198F:
- phy_iq_calibrate_8198f(dm, clear, segment_iqk);
- break;
- #endif
- default:
- break;
- }
- dm->rf_calibrate_info.iqk_progressing_time =
- odm_get_progressing_time(dm, start_time);
- RF_DBG(dm, DBG_RF_IQK, "[IQK]IQK progressing_time = %lld ms\n",
- dm->rf_calibrate_info.iqk_progressing_time);
- odm_acquire_spin_lock(dm, RT_IQK_SPINLOCK);
- dm->rf_calibrate_info.is_iqk_in_progress = false;
- odm_release_spin_lock(dm, RT_IQK_SPINLOCK);
- } else {
- RF_DBG(dm, DBG_RF_IQK,
- "== Return the IQK CMD, because RFKs in Progress ==\n");
- }
- }
- #endif
- u8 halrf_match_iqk_version(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- u32 iqk_version = 0;
- char temp[10] = {0};
- odm_move_memory(dm, temp, HALRF_IQK_VER, sizeof(temp));
- PHYDM_SSCANF(temp + 2, DCMD_HEX, &iqk_version);
- if (dm->support_ic_type == ODM_RTL8822B) {
- if (iqk_version >= 0x24 && (odm_get_hw_img_version(dm) >= 72))
- return 1;
- else if ((iqk_version <= 0x23) &&
- (odm_get_hw_img_version(dm) <= 71))
- return 1;
- else
- return 0;
- }
- if (dm->support_ic_type == ODM_RTL8821C) {
- if (iqk_version >= 0x18 && (odm_get_hw_img_version(dm) >= 37))
- return 1;
- else
- return 0;
- }
- return 1;
- }
- void halrf_rf_lna_setting(void *dm_void, enum halrf_lna_set type)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- switch (dm->support_ic_type) {
- #if (RTL8188E_SUPPORT == 1)
- case ODM_RTL8188E:
- halrf_rf_lna_setting_8188e(dm, type);
- break;
- #endif
- #if (RTL8192E_SUPPORT == 1)
- case ODM_RTL8192E:
- halrf_rf_lna_setting_8192e(dm, type);
- break;
- #endif
- #if (RTL8192F_SUPPORT == 1)
- case ODM_RTL8192F:
- halrf_rf_lna_setting_8192f(dm, type);
- break;
- #endif
- #if (RTL8723B_SUPPORT == 1)
- case ODM_RTL8723B:
- halrf_rf_lna_setting_8723b(dm, type);
- break;
- #endif
- #if (RTL8812A_SUPPORT == 1)
- case ODM_RTL8812:
- halrf_rf_lna_setting_8812a(dm, type);
- break;
- #endif
- #if ((RTL8821A_SUPPORT == 1) || (RTL8881A_SUPPORT == 1))
- case ODM_RTL8881A:
- case ODM_RTL8821:
- halrf_rf_lna_setting_8821a(dm, type);
- break;
- #endif
- #if (RTL8822B_SUPPORT == 1)
- case ODM_RTL8822B:
- halrf_rf_lna_setting_8822b(dm_void, type);
- break;
- #endif
- #if (RTL8821C_SUPPORT == 1)
- case ODM_RTL8821C:
- halrf_rf_lna_setting_8821c(dm_void, type);
- break;
- #endif
- default:
- break;
- }
- }
- void halrf_support_ability_debug(void *dm_void, char input[][16], u32 *_used,
- char *output, u32 *_out_len)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- u32 dm_value[10] = {0};
- u32 used = *_used;
- u32 out_len = *_out_len;
- u8 i;
- for (i = 0; i < 5; i++)
- if (input[i + 1])
- PHYDM_SSCANF(input[i + 2], DCMD_DECIMAL, &dm_value[i]);
- if (dm_value[0] == 100) {
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "\n[RF Supportability]\n");
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "00. (( %s ))Power Tracking\n",
- ((rf->rf_supportability & HAL_RF_TX_PWR_TRACK) ?
- ("V") : (".")));
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "01. (( %s ))IQK\n",
- ((rf->rf_supportability & HAL_RF_IQK) ? ("V") :
- (".")));
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "02. (( %s ))LCK\n",
- ((rf->rf_supportability & HAL_RF_LCK) ? ("V") :
- (".")));
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "03. (( %s ))DPK\n",
- ((rf->rf_supportability & HAL_RF_DPK) ? ("V") :
- (".")));
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "04. (( %s ))HAL_RF_TXGAPK\n",
- ((rf->rf_supportability & HAL_RF_TXGAPK) ? ("V") :
- (".")));
- } else {
- if (dm_value[1] == 1) /* enable */
- rf->rf_supportability |= BIT(dm_value[0]);
- else if (dm_value[1] == 2) /* disable */
- rf->rf_supportability &= ~(BIT(dm_value[0]));
- else
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "[Warning!!!] 1:enable, 2:disable\n");
- }
- PDM_SNPF(out_len, used, output + used, out_len - used,
- "\nCurr-RF_supportability = 0x%x\n\n", rf->rf_supportability);
- *_used = used;
- *_out_len = out_len;
- }
- void halrf_cmn_info_init(void *dm_void, enum halrf_cmninfo_init cmn_info,
- u32 value)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- switch (cmn_info) {
- case HALRF_CMNINFO_EEPROM_THERMAL_VALUE:
- rf->eeprom_thermal = (u8)value;
- break;
- case HALRF_CMNINFO_PWT_TYPE:
- rf->pwt_type = (u8)value;
- break;
- default:
- break;
- }
- }
- void halrf_cmn_info_hook(void *dm_void, enum halrf_cmninfo_hook cmn_info,
- void *value)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- switch (cmn_info) {
- case HALRF_CMNINFO_CON_TX:
- rf->is_con_tx = (boolean *)value;
- break;
- case HALRF_CMNINFO_SINGLE_TONE:
- rf->is_single_tone = (boolean *)value;
- break;
- case HALRF_CMNINFO_CARRIER_SUPPRESSION:
- rf->is_carrier_suppresion = (boolean *)value;
- break;
- case HALRF_CMNINFO_MP_RATE_INDEX:
- rf->mp_rate_index = (u8 *)value;
- break;
- default:
- /*do nothing*/
- break;
- }
- }
- void halrf_cmn_info_set(void *dm_void, u32 cmn_info, u64 value)
- {
- /* This init variable may be changed in run time. */
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- switch (cmn_info) {
- case HALRF_CMNINFO_ABILITY:
- rf->rf_supportability = (u32)value;
- break;
- case HALRF_CMNINFO_DPK_EN:
- rf->dpk_en = (u8)value;
- break;
- case HALRF_CMNINFO_RFK_FORBIDDEN:
- dm->IQK_info.rfk_forbidden = (boolean)value;
- break;
- #if (RTL8814A_SUPPORT == 1 || RTL8822B_SUPPORT == 1 || \
- RTL8821C_SUPPORT == 1 || RTL8195B_SUPPORT == 1)
- case HALRF_CMNINFO_IQK_SEGMENT:
- dm->IQK_info.segment_iqk = (boolean)value;
- break;
- #endif
- case HALRF_CMNINFO_RATE_INDEX:
- rf->p_rate_index = (u32)value;
- break;
- #if (DM_ODM_SUPPORT_TYPE & ODM_WIN)
- case HALRF_CMNINFO_MP_PSD_POINT:
- rf->halrf_psd_data.point = (u32)value;
- break;
- case HALRF_CMNINFO_MP_PSD_START_POINT:
- rf->halrf_psd_data.start_point = (u32)value;
- break;
- case HALRF_CMNINFO_MP_PSD_STOP_POINT:
- rf->halrf_psd_data.stop_point = (u32)value;
- break;
- case HALRF_CMNINFO_MP_PSD_AVERAGE:
- rf->halrf_psd_data.average = (u32)value;
- break;
- #endif
- default:
- /* do nothing */
- break;
- }
- }
- u64 halrf_cmn_info_get(void *dm_void, u32 cmn_info)
- {
- /* This init variable may be changed in run time. */
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- u64 return_value = 0;
- switch (cmn_info) {
- case HALRF_CMNINFO_ABILITY:
- return_value = (u32)rf->rf_supportability;
- break;
- case HALRF_CMNINFO_RFK_FORBIDDEN:
- return_value = dm->IQK_info.rfk_forbidden;
- break;
- #if (RTL8814A_SUPPORT == 1 || RTL8822B_SUPPORT == 1 || \
- RTL8821C_SUPPORT == 1 || RTL8195B_SUPPORT == 1)
- case HALRF_CMNINFO_IQK_SEGMENT:
- return_value = dm->IQK_info.segment_iqk;
- break;
- #endif
- default:
- /* do nothing */
- break;
- }
- return return_value;
- }
- void halrf_supportability_init_mp(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- switch (dm->support_ic_type) {
- case ODM_RTL8814B:
- #if (RTL8814B_SUPPORT == 1)
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- /*HAL_RF_DPK |*/
- 0;
- #endif
- break;
- #if (RTL8822B_SUPPORT == 1)
- case ODM_RTL8822B:
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- /*HAL_RF_DPK |*/
- 0;
- break;
- #endif
- #if (RTL8821C_SUPPORT == 1)
- case ODM_RTL8821C:
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- /*HAL_RF_DPK |*/
- /*HAL_RF_TXGAPK |*/
- 0;
- break;
- #endif
- #if (RTL8195B_SUPPORT == 1)
- case ODM_RTL8195B:
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- HAL_RF_DPK |
- HAL_RF_TXGAPK |
- 0;
- break;
- #endif
- default:
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- /*HAL_RF_DPK |*/
- /*HAL_RF_TXGAPK |*/
- 0;
- break;
- }
- RF_DBG(dm, DBG_RF_INIT,
- "IC = ((0x%x)), RF_Supportability Init MP = ((0x%x))\n",
- dm->support_ic_type, rf->rf_supportability);
- }
- void halrf_supportability_init(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- switch (dm->support_ic_type) {
- case ODM_RTL8814B:
- #if (RTL8814B_SUPPORT == 1)
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- /*HAL_RF_DPK |*/
- 0;
- #endif
- break;
- #if (RTL8822B_SUPPORT == 1)
- case ODM_RTL8822B:
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- /*HAL_RF_DPK |*/
- 0;
- break;
- #endif
- #if (RTL8821C_SUPPORT == 1)
- case ODM_RTL8821C:
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- /*HAL_RF_DPK |*/
- /*HAL_RF_TXGAPK |*/
- 0;
- break;
- #endif
- #if (RTL8195B_SUPPORT == 1)
- case ODM_RTL8195B:
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- HAL_RF_DPK |
- HAL_RF_TXGAPK |
- 0;
- break;
- #endif
- default:
- rf->rf_supportability =
- HAL_RF_TX_PWR_TRACK |
- HAL_RF_IQK |
- HAL_RF_LCK |
- /*HAL_RF_DPK |*/
- 0;
- break;
- }
- RF_DBG(dm, DBG_RF_INIT,
- "IC = ((0x%x)), RF_Supportability Init = ((0x%x))\n",
- dm->support_ic_type, rf->rf_supportability);
- }
- void halrf_watchdog(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- #if 0
- /*RF_DBG(dm, DBG_RF_TMP, "%s\n", __func__);*/
- #endif
- phydm_rf_watchdog(dm);
- }
- #if 0
- void
- halrf_iqk_init(
- void *dm_void
- )
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- switch (dm->support_ic_type) {
- #if (RTL8814B_SUPPORT == 1)
- case ODM_RTL8814B:
- break;
- #endif
- #if (RTL8822B_SUPPORT == 1)
- case ODM_RTL8822B:
- _iq_calibrate_8822b_init(dm);
- break;
- #endif
- #if (RTL8821C_SUPPORT == 1)
- case ODM_RTL8821C:
- break;
- #endif
- default:
- break;
- }
- }
- #endif
- void halrf_iqk_trigger(void *dm_void, boolean is_recovery)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- struct dm_dpk_info *dpk_info = &dm->dpk_info;
- struct _hal_rf_ *rf = &dm->rf_table;
- u64 start_time;
- #if (DM_ODM_SUPPORT_TYPE & (ODM_WIN))
- if (odm_check_power_status(dm) == false)
- return;
- #endif
- if (dm->mp_mode &&
- rf->is_con_tx &&
- rf->is_single_tone &&
- rf->is_carrier_suppresion)
- if (*dm->mp_mode &&
- ((*rf->is_con_tx ||
- *rf->is_single_tone ||
- *rf->is_carrier_suppresion)))
- return;
- #if (DM_ODM_SUPPORT_TYPE == ODM_CE)
- if (!(rf->rf_supportability & HAL_RF_IQK))
- return;
- #endif
- #if DISABLE_BB_RF
- return;
- #endif
- if (iqk_info->rfk_forbidden)
- return;
- if (!dm->rf_calibrate_info.is_iqk_in_progress) {
- odm_acquire_spin_lock(dm, RT_IQK_SPINLOCK);
- dm->rf_calibrate_info.is_iqk_in_progress = true;
- odm_release_spin_lock(dm, RT_IQK_SPINLOCK);
- start_time = odm_get_current_time(dm);
- switch (dm->support_ic_type) {
- #if (RTL8188E_SUPPORT == 1)
- case ODM_RTL8188E:
- phy_iq_calibrate_8188e(dm, is_recovery);
- break;
- #endif
- #if (RTL8188F_SUPPORT == 1)
- case ODM_RTL8188F:
- phy_iq_calibrate_8188f(dm, is_recovery);
- break;
- #endif
- #if (RTL8192E_SUPPORT == 1)
- case ODM_RTL8192E:
- phy_iq_calibrate_8192e(dm, is_recovery);
- break;
- #endif
- #if (RTL8197F_SUPPORT == 1)
- case ODM_RTL8197F:
- phy_iq_calibrate_8197f(dm, is_recovery);
- break;
- #endif
- #if (RTL8192F_SUPPORT == 1)
- case ODM_RTL8192F:
- phy_iq_calibrate_8192f(dm, is_recovery);
- break;
- #endif
- #if (RTL8703B_SUPPORT == 1)
- case ODM_RTL8703B:
- phy_iq_calibrate_8703b(dm, is_recovery);
- break;
- #endif
- #if (RTL8710B_SUPPORT == 1)
- case ODM_RTL8710B:
- phy_iq_calibrate_8710b(dm, is_recovery);
- break;
- #endif
- #if (RTL8723B_SUPPORT == 1)
- case ODM_RTL8723B:
- phy_iq_calibrate_8723b(dm, is_recovery);
- break;
- #endif
- #if (RTL8723D_SUPPORT == 1)
- case ODM_RTL8723D:
- phy_iq_calibrate_8723d(dm, is_recovery);
- break;
- #endif
- #if (RTL8812A_SUPPORT == 1)
- case ODM_RTL8812:
- phy_iq_calibrate_8812a(dm, is_recovery);
- break;
- #endif
- #if (RTL8821A_SUPPORT == 1)
- case ODM_RTL8821:
- phy_iq_calibrate_8821a(dm, is_recovery);
- break;
- #endif
- #if (RTL8814A_SUPPORT == 1)
- case ODM_RTL8814A:
- phy_iq_calibrate_8814a(dm, is_recovery);
- break;
- #endif
- #if (RTL8822B_SUPPORT == 1)
- case ODM_RTL8822B:
- phy_iq_calibrate_8822b(dm, false, false);
- break;
- #endif
- #if (RTL8821C_SUPPORT == 1)
- case ODM_RTL8821C:
- phy_iq_calibrate_8821c(dm, false, false);
- break;
- #endif
- #if (RTL8814B_SUPPORT == 1)
- case ODM_RTL8814B:
- break;
- #endif
- #if (RTL8195B_SUPPORT == 1)
- case ODM_RTL8195B:
- phy_iq_calibrate_8195b(dm, false, false);
- break;
- #endif
- #if (RTL8198F_SUPPORT == 1)
- case ODM_RTL8198F:
- phy_iq_calibrate_8198f(dm, false, false);
- break;
- #endif
- default:
- break;
- }
- dm->rf_calibrate_info.iqk_progressing_time =
- odm_get_progressing_time(dm, start_time);
- RF_DBG(dm, DBG_RF_IQK, "[IQK]IQK progressing_time = %lld ms\n",
- dm->rf_calibrate_info.iqk_progressing_time);
- odm_acquire_spin_lock(dm, RT_IQK_SPINLOCK);
- dm->rf_calibrate_info.is_iqk_in_progress = false;
- odm_release_spin_lock(dm, RT_IQK_SPINLOCK);
- } else {
- RF_DBG(dm, DBG_RF_IQK,
- "== Return the IQK CMD, because RFKs in Progress ==\n");
- }
- }
- void halrf_lck_trigger(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct dm_iqk_info *iqk_info = &dm->IQK_info;
- struct _hal_rf_ *rf = &dm->rf_table;
- u64 start_time;
- #if (DM_ODM_SUPPORT_TYPE & (ODM_WIN))
- if (odm_check_power_status(dm) == false)
- return;
- #endif
- if (dm->mp_mode &&
- rf->is_con_tx &&
- rf->is_single_tone &&
- rf->is_carrier_suppresion)
- if (*dm->mp_mode &&
- ((*rf->is_con_tx ||
- *rf->is_single_tone ||
- *rf->is_carrier_suppresion)))
- return;
- #if (DM_ODM_SUPPORT_TYPE == ODM_CE)
- if (!(rf->rf_supportability & HAL_RF_LCK))
- return;
- #endif
- #if DISABLE_BB_RF
- return;
- #endif
- if (iqk_info->rfk_forbidden)
- return;
- while (*dm->is_scan_in_process) {
- RF_DBG(dm, DBG_RF_IQK, "[LCK]scan is in process, bypass LCK\n");
- return;
- }
- if (!dm->rf_calibrate_info.is_lck_in_progress) {
- odm_acquire_spin_lock(dm, RT_IQK_SPINLOCK);
- dm->rf_calibrate_info.is_lck_in_progress = true;
- odm_release_spin_lock(dm, RT_IQK_SPINLOCK);
- start_time = odm_get_current_time(dm);
- switch (dm->support_ic_type) {
- #if (RTL8188E_SUPPORT == 1)
- case ODM_RTL8188E:
- phy_lc_calibrate_8188e(dm);
- break;
- #endif
- #if (RTL8188F_SUPPORT == 1)
- case ODM_RTL8188F:
- phy_lc_calibrate_8188f(dm);
- break;
- #endif
- #if (RTL8192E_SUPPORT == 1)
- case ODM_RTL8192E:
- phy_lc_calibrate_8192e(dm);
- break;
- #endif
- #if (RTL8197F_SUPPORT == 1)
- case ODM_RTL8197F:
- phy_lc_calibrate_8197f(dm);
- break;
- #endif
- #if (RTL8192F_SUPPORT == 1)
- case ODM_RTL8192F:
- phy_lc_calibrate_8192f(dm);
- break;
- #endif
- #if (RTL8703B_SUPPORT == 1)
- case ODM_RTL8703B:
- phy_lc_calibrate_8703b(dm);
- break;
- #endif
- #if (RTL8710B_SUPPORT == 1)
- case ODM_RTL8710B:
- phy_lc_calibrate_8710b(dm);
- break;
- #endif
- #if (RTL8723B_SUPPORT == 1)
- case ODM_RTL8723B:
- phy_lc_calibrate_8723b(dm);
- break;
- #endif
- #if (RTL8723D_SUPPORT == 1)
- case ODM_RTL8723D:
- phy_lc_calibrate_8723d(dm);
- break;
- #endif
- #if (RTL8812A_SUPPORT == 1)
- case ODM_RTL8812:
- phy_lc_calibrate_8812a(dm);
- break;
- #endif
- #if (RTL8821A_SUPPORT == 1)
- case ODM_RTL8821:
- phy_lc_calibrate_8821a(dm);
- break;
- #endif
- #if (RTL8814A_SUPPORT == 1)
- case ODM_RTL8814A:
- phy_lc_calibrate_8814a(dm);
- break;
- #endif
- #if (RTL8822B_SUPPORT == 1)
- case ODM_RTL8822B:
- phy_lc_calibrate_8822b(dm);
- break;
- #endif
- #if (RTL8821C_SUPPORT == 1)
- case ODM_RTL8821C:
- phy_lc_calibrate_8821c(dm);
- break;
- #endif
- #if (RTL8814B_SUPPORT == 1)
- case ODM_RTL8814B:
- break;
- #endif
- default:
- break;
- }
- dm->rf_calibrate_info.lck_progressing_time =
- odm_get_progressing_time(dm, start_time);
- RF_DBG(dm, DBG_RF_IQK, "[IQK]LCK progressing_time = %lld ms\n",
- dm->rf_calibrate_info.lck_progressing_time);
- #if (RTL8822B_SUPPORT == 1 || RTL8821C_SUPPORT == 1)
- halrf_lck_dbg(dm);
- #endif
- odm_acquire_spin_lock(dm, RT_IQK_SPINLOCK);
- dm->rf_calibrate_info.is_lck_in_progress = false;
- odm_release_spin_lock(dm, RT_IQK_SPINLOCK);
- } else {
- RF_DBG(dm, DBG_RF_IQK,
- "= Return the LCK CMD, because RFK is in Progress =\n");
- }
- }
- void halrf_aac_check(struct dm_struct *dm)
- {
- switch (dm->support_ic_type) {
- #if (RTL8821C_SUPPORT == 1)
- case ODM_RTL8821C:
- #if 0
- aac_check_8821c(dm);
- #endif
- break;
- #endif
- #if (RTL8822B_SUPPORT == 1)
- case ODM_RTL8822B:
- #if 1
- aac_check_8822b(dm);
- #endif
- break;
- #endif
- default:
- break;
- }
- }
- void halrf_init(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- RF_DBG(dm, DBG_RF_INIT, "HALRF_Init\n");
- rf->aac_checked = false;
- halrf_init_debug_setting(dm);
- if (*dm->mp_mode)
- halrf_supportability_init_mp(dm);
- else
- halrf_supportability_init(dm);
- /*Init all RF funciton*/
- halrf_aac_check(dm);
- }
- void halrf_dpk_trigger(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct _hal_rf_ *rf = &dm->rf_table;
- u64 start_time;
- start_time = odm_get_current_time(dm);
- switch (dm->support_ic_type) {
- #if (DM_ODM_SUPPORT_TYPE & (ODM_AP))
- #if (RTL8197F_SUPPORT == 1)
- case ODM_RTL8197F:
- do_dpk_8197f(dm);
- break;
- #endif
- #if (RTL8192F_SUPPORT == 1)
- case ODM_RTL8192F:
- do_dpk_8192f(dm);
- break;
- #endif
- #if (RTL8198F_SUPPORT == 1)
- case ODM_RTL8198F:
- do_dpk_8198f(dm);
- break;
- #endif
- #endif
- #if (DM_ODM_SUPPORT_TYPE & (ODM_IOT))
- #if (RTL8195B_SUPPORT == 1)
- case ODM_RTL8195B:
- do_dpk_8195b(dm, false);
- break;
- #endif
- #endif
- default:
- break;
- }
- rf->dpk_progressing_time = odm_get_progressing_time(dm, start_time);
- RF_DBG(dm, DBG_RF_DPK, "[DPK]DPK progressing_time = %lld ms\n",
- rf->dpk_progressing_time);
- }
- u8 halrf_dpk_result_check(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct dm_dpk_info *dpk_info = &dm->dpk_info;
- u8 result = 0;
- switch (dm->support_ic_type) {
- #if (DM_ODM_SUPPORT_TYPE & (ODM_AP))
- #if (RTL8197F_SUPPORT == 1)
- case ODM_RTL8197F:
- if (dpk_info->dpk_path_ok == 0x3)
- result = 1;
- else
- result = 0;
- break;
- #endif
- #if (RTL8192F_SUPPORT == 1)
- case ODM_RTL8192F:
- if (dpk_info->dpk_path_ok == 0x3)
- result = 1;
- else
- result = 0;
- break;
- #endif
- #if (RTL8198F_SUPPORT == 1)
- case ODM_RTL8198F:
- if (dpk_info->dpk_path_ok == 0xf)
- result = 1;
- else
- result = 0;
- break;
- #endif
- #endif
- default:
- break;
- }
- return result;
- }
- void halrf_dpk_sram_read(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- u8 path, group;
- switch (dm->support_ic_type) {
- #if (DM_ODM_SUPPORT_TYPE & (ODM_AP))
- #if (RTL8197F_SUPPORT == 1)
- case ODM_RTL8197F:
- dpk_sram_read_8197f(dm);
- break;
- #endif
- #if (RTL8192F_SUPPORT == 1)
- case ODM_RTL8192F:
- dpk_sram_read_8192f(dm);
- break;
- #endif
- #if (RTL8198F_SUPPORT == 1)
- case ODM_RTL8198F:
- dpk_sram_read_8198f(dm);
- break;
- #endif
- #endif
- default:
- break;
- }
- }
- void halrf_dpk_enable_disable(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- switch (dm->support_ic_type) {
- #if (DM_ODM_SUPPORT_TYPE & (ODM_AP))
- #if (RTL8197F_SUPPORT == 1)
- case ODM_RTL8197F:
- phy_dpk_enable_disable_8197f(dm);
- break;
- #endif
- #if (RTL8192F_SUPPORT == 1)
- case ODM_RTL8192F:
- phy_dpk_enable_disable_8192f(dm);
- break;
- #endif
- #if (RTL8198F_SUPPORT == 1)
- case ODM_RTL8198F:
- dpk_enable_disable_8198f(dm);
- break;
- #endif
- #endif
- default:
- break;
- }
- }
- void halrf_dpk_track(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct dm_dpk_info *dpk_info = &dm->dpk_info;
- switch (dm->support_ic_type) {
- #if (DM_ODM_SUPPORT_TYPE & (ODM_AP))
- #if (RTL8197F_SUPPORT == 1)
- case ODM_RTL8197F:
- phy_dpk_track_8197f(dm);
- break;
- #endif
- #if (RTL8192F_SUPPORT == 1)
- case ODM_RTL8192F:
- phy_dpk_track_8192f(dm);
- break;
- #endif
- #if (RTL8198F_SUPPORT == 1)
- case ODM_RTL8198F:
- dpk_track_8198f(dm);
- break;
- #endif
- #endif
- default:
- break;
- }
- }
- void halrf_dpk_reload(void *dm_void)
- {
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- struct dm_dpk_info *dpk_info = &dm->dpk_info;
- switch (dm->support_ic_type) {
- #if (DM_ODM_SUPPORT_TYPE & (ODM_AP))
- #if (RTL8197F_SUPPORT == 1)
- case ODM_RTL8197F:
- if (dpk_info->dpk_path_ok > 0)
- dpk_reload_8197f(dm);
- break;
- #endif
- #if (RTL8192F_SUPPORT == 1)
- case ODM_RTL8192F:
- if (dpk_info->dpk_path_ok > 0)
- dpk_reload_8192f(dm);
- break;
- #endif
- #if (RTL8198F_SUPPORT == 1)
- case ODM_RTL8198F:
- if (dpk_info->dpk_path_ok > 0)
- dpk_reload_8198f(dm);
- break;
- #endif
- #endif
- default:
- break;
- }
- }
- enum hal_status
- halrf_config_rfk_with_header_file(void *dm_void, u32 config_type)
- {
- #if (RTL8198F_SUPPORT == 1)
- struct dm_struct *dm = (struct dm_struct *)dm_void;
- #endif
- enum hal_status result = HAL_STATUS_SUCCESS;
- #if 0
- #if (RTL8822B_SUPPORT == 1)
- if (dm->support_ic_type == ODM_RTL8822B) {
- if (config_type == CONFIG_BB_RF_CAL_INIT)
- odm_read_and_config_mp_8822b_cal_init(dm);
- }
- #endif
- #endif
- #if 1
- #if (RTL8198F_SUPPORT == 1)
- if (dm->support_ic_type == ODM_RTL8198F) {
- if (config_type == CONFIG_BB_RF_CAL_INIT)
- odm_read_and_config_mp_8198f_cal_init(dm);
- }
- #endif
- #endif
- return result;
- }
|