1 // SPDX-License-Identifier: GPL-2.0
4 #include "r819xU_phy.h"
5 #include "r819xU_phyreg.h"
6 #include "r8190_rtl8256.h"
8 #include "r819xU_firmware_img.h"
10 #include "ieee80211/dot11d.h"
11 #include <linux/bitops.h>
13 static u32 RF_CHANNEL_TABLE_ZEBRA[] = {
31 #define rtl819XMACPHY_Array Rtl8192UsbMACPHY_Array
33 /******************************************************************************
34 * function: This function checks different RF type to execute legal judgement.
35 * If RF Path is illegal, we will return false.
36 * input: net_device *dev
39 * return: 0(illegal, false), 1(legal, true)
40 *****************************************************************************/
41 u8 rtl8192_phy_CheckIsLegalRFPath(struct net_device *dev, u32 e_rfpath)
44 struct r8192_priv *priv = ieee80211_priv(dev);
46 if (priv->rf_type == RF_2T4R) {
48 } else if (priv->rf_type == RF_1T2R) {
49 if (e_rfpath == RF90_PATH_A || e_rfpath == RF90_PATH_B)
51 else if (e_rfpath == RF90_PATH_C || e_rfpath == RF90_PATH_D)
57 /******************************************************************************
58 * function: This function sets specific bits to BB register
59 * input: net_device *dev
60 * u32 reg_addr //target addr to be modified
61 * u32 bitmask //taget bit pos to be modified
62 * u32 data //value to be write
66 ******************************************************************************/
67 void rtl8192_setBBreg(struct net_device *dev, u32 reg_addr, u32 bitmask,
72 if (bitmask != bMaskDWord) {
73 read_nic_dword(dev, reg_addr, ®);
74 bitshift = ffs(bitmask) - 1;
76 reg |= data << bitshift;
77 write_nic_dword(dev, reg_addr, reg);
79 write_nic_dword(dev, reg_addr, data);
83 /******************************************************************************
84 * function: This function reads specific bits from BB register
85 * input: net_device *dev
86 * u32 reg_addr //target addr to be readback
87 * u32 bitmask //taget bit pos to be readback
89 * return: u32 data //the readback register value
91 ******************************************************************************/
92 u32 rtl8192_QueryBBReg(struct net_device *dev, u32 reg_addr, u32 bitmask)
96 read_nic_dword(dev, reg_addr, ®);
97 bitshift = ffs(bitmask) - 1;
99 return (reg & bitmask) >> bitshift;
102 static u32 phy_FwRFSerialRead(struct net_device *dev,
103 enum rf90_radio_path_e e_rfpath,
106 static void phy_FwRFSerialWrite(struct net_device *dev,
107 enum rf90_radio_path_e e_rfpath,
111 /******************************************************************************
112 * function: This function reads register from RF chip
113 * input: net_device *dev
114 * rf90_radio_path_e e_rfpath //radio path of A/B/C/D
115 * u32 offset //target address to be read
117 * return: u32 readback value
118 * notice: There are three types of serial operations:
119 * (1) Software serial write.
120 * (2)Hardware LSSI-Low Speed Serial Interface.
121 * (3)Hardware HSSI-High speed serial write.
122 * Driver here need to implement (1) and (2)
123 * ---need more spec for this information.
124 ******************************************************************************/
125 static u32 rtl8192_phy_RFSerialRead(struct net_device *dev,
126 enum rf90_radio_path_e e_rfpath, u32 offset)
128 struct r8192_priv *priv = ieee80211_priv(dev);
131 BB_REGISTER_DEFINITION_T *pPhyReg = &priv->PHYRegDef[e_rfpath];
133 rtl8192_setBBreg(dev, pPhyReg->rfLSSIReadBack, bLSSIReadBackData, 0);
134 /* Make sure RF register offset is correct */
137 /* Switch page for 8256 RF IC */
138 if (priv->rf_chip == RF_8256) {
140 priv->RfReg0Value[e_rfpath] |= 0x140;
141 /* Switch to Reg_Mode2 for Reg 31-45 */
142 rtl8192_setBBreg(dev, pPhyReg->rf3wireOffset,
144 priv->RfReg0Value[e_rfpath]<<16);
146 new_offset = offset - 30;
147 } else if (offset >= 16) {
148 priv->RfReg0Value[e_rfpath] |= 0x100;
149 priv->RfReg0Value[e_rfpath] &= (~0x40);
150 /* Switch to Reg_Mode1 for Reg16-30 */
151 rtl8192_setBBreg(dev, pPhyReg->rf3wireOffset,
153 priv->RfReg0Value[e_rfpath]<<16);
155 new_offset = offset - 15;
160 RT_TRACE((COMP_PHY|COMP_ERR),
161 "check RF type here, need to be 8256\n");
164 /* Put desired read addr to LSSI control Register */
165 rtl8192_setBBreg(dev, pPhyReg->rfHSSIPara2, bLSSIReadAddress,
167 /* Issue a posedge trigger */
168 rtl8192_setBBreg(dev, pPhyReg->rfHSSIPara2, bLSSIReadEdge, 0x0);
169 rtl8192_setBBreg(dev, pPhyReg->rfHSSIPara2, bLSSIReadEdge, 0x1);
171 /* TODO: we should not delay such a long time. Ask for help from SD3 */
172 usleep_range(1000, 1000);
174 ret = rtl8192_QueryBBReg(dev, pPhyReg->rfLSSIReadBack,
177 /* Switch back to Reg_Mode0 */
178 if (priv->rf_chip == RF_8256) {
179 priv->RfReg0Value[e_rfpath] &= 0xebf;
181 rtl8192_setBBreg(dev, pPhyReg->rf3wireOffset, bMaskDWord,
182 priv->RfReg0Value[e_rfpath] << 16);
188 /******************************************************************************
189 * function: This function writes data to RF register
190 * input: net_device *dev
191 * rf90_radio_path_e e_rfpath //radio path of A/B/C/D
192 * u32 offset //target address to be written
193 * u32 data //the new register data to be written
196 * notice: For RF8256 only.
197 * ===========================================================================
198 * Reg Mode RegCTL[1] RegCTL[0] Note
199 * (Reg00[12]) (Reg00[10])
200 * ===========================================================================
201 * Reg_Mode0 0 x Reg 0 ~ 15(0x0 ~ 0xf)
202 * ---------------------------------------------------------------------------
203 * Reg_Mode1 1 0 Reg 16 ~ 30(0x1 ~ 0xf)
204 * ---------------------------------------------------------------------------
205 * Reg_Mode2 1 1 Reg 31 ~ 45(0x1 ~ 0xf)
206 * ---------------------------------------------------------------------------
207 *****************************************************************************/
208 static void rtl8192_phy_RFSerialWrite(struct net_device *dev,
209 enum rf90_radio_path_e e_rfpath,
213 struct r8192_priv *priv = ieee80211_priv(dev);
214 u32 DataAndAddr = 0, new_offset = 0;
215 BB_REGISTER_DEFINITION_T *pPhyReg = &priv->PHYRegDef[e_rfpath];
218 if (priv->rf_chip == RF_8256) {
220 priv->RfReg0Value[e_rfpath] |= 0x140;
221 rtl8192_setBBreg(dev, pPhyReg->rf3wireOffset,
223 priv->RfReg0Value[e_rfpath] << 16);
224 new_offset = offset - 30;
225 } else if (offset >= 16) {
226 priv->RfReg0Value[e_rfpath] |= 0x100;
227 priv->RfReg0Value[e_rfpath] &= (~0x40);
228 rtl8192_setBBreg(dev, pPhyReg->rf3wireOffset,
230 priv->RfReg0Value[e_rfpath]<<16);
231 new_offset = offset - 15;
236 RT_TRACE((COMP_PHY|COMP_ERR),
237 "check RF type here, need to be 8256\n");
241 /* Put write addr in [5:0] and write data in [31:16] */
242 DataAndAddr = (data<<16) | (new_offset&0x3f);
244 /* Write operation */
245 rtl8192_setBBreg(dev, pPhyReg->rf3wireOffset, bMaskDWord, DataAndAddr);
248 priv->RfReg0Value[e_rfpath] = data;
250 /* Switch back to Reg_Mode0 */
251 if (priv->rf_chip == RF_8256) {
253 priv->RfReg0Value[e_rfpath] &= 0xebf;
254 rtl8192_setBBreg(dev, pPhyReg->rf3wireOffset,
256 priv->RfReg0Value[e_rfpath] << 16);
261 /******************************************************************************
262 * function: This function set specific bits to RF register
263 * input: net_device dev
264 * rf90_radio_path_e e_rfpath //radio path of A/B/C/D
265 * u32 reg_addr //target addr to be modified
266 * u32 bitmask //taget bit pos to be modified
267 * u32 data //value to be written
271 *****************************************************************************/
272 void rtl8192_phy_SetRFReg(struct net_device *dev,
273 enum rf90_radio_path_e e_rfpath,
274 u32 reg_addr, u32 bitmask, u32 data)
276 struct r8192_priv *priv = ieee80211_priv(dev);
279 if (!rtl8192_phy_CheckIsLegalRFPath(dev, e_rfpath))
282 if (priv->Rf_Mode == RF_OP_By_FW) {
283 if (bitmask != bMask12Bits) {
284 /* RF data is 12 bits only */
285 reg = phy_FwRFSerialRead(dev, e_rfpath, reg_addr);
286 bitshift = ffs(bitmask) - 1;
288 reg |= data << bitshift;
290 phy_FwRFSerialWrite(dev, e_rfpath, reg_addr, reg);
292 phy_FwRFSerialWrite(dev, e_rfpath, reg_addr, data);
298 if (bitmask != bMask12Bits) {
299 /* RF data is 12 bits only */
300 reg = rtl8192_phy_RFSerialRead(dev, e_rfpath, reg_addr);
301 bitshift = ffs(bitmask) - 1;
303 reg |= data << bitshift;
305 rtl8192_phy_RFSerialWrite(dev, e_rfpath, reg_addr, reg);
307 rtl8192_phy_RFSerialWrite(dev, e_rfpath, reg_addr, data);
312 /******************************************************************************
313 * function: This function reads specific bits from RF register
314 * input: net_device *dev
315 * u32 reg_addr //target addr to be readback
316 * u32 bitmask //taget bit pos to be readback
318 * return: u32 data //the readback register value
320 *****************************************************************************/
321 u32 rtl8192_phy_QueryRFReg(struct net_device *dev,
322 enum rf90_radio_path_e e_rfpath,
323 u32 reg_addr, u32 bitmask)
326 struct r8192_priv *priv = ieee80211_priv(dev);
328 if (!rtl8192_phy_CheckIsLegalRFPath(dev, e_rfpath))
330 if (priv->Rf_Mode == RF_OP_By_FW) {
331 reg = phy_FwRFSerialRead(dev, e_rfpath, reg_addr);
334 reg = rtl8192_phy_RFSerialRead(dev, e_rfpath, reg_addr);
336 bitshift = ffs(bitmask) - 1;
337 reg = (reg & bitmask) >> bitshift;
341 /******************************************************************************
342 * function: We support firmware to execute RF-R/W.
343 * input: net_device *dev
344 * rf90_radio_path_e e_rfpath
349 ****************************************************************************/
350 static u32 phy_FwRFSerialRead(struct net_device *dev,
351 enum rf90_radio_path_e e_rfpath,
359 /* Firmware RF Write control.
360 * We can not execute the scheme in the initial step.
361 * Otherwise, RF-R/W will waste much time.
362 * This is only for site survey.
364 /* 1. Read operation need not insert data. bit 0-11 */
365 /* 2. Write RF register address. bit 12-19 */
366 data |= ((offset&0xFF)<<12);
367 /* 3. Write RF path. bit 20-21 */
368 data |= ((e_rfpath&0x3)<<20);
369 /* 4. Set RF read indicator. bit 22=0 */
370 /* 5. Trigger Fw to operate the command. bit 31 */
372 /* 6. We can not execute read operation if bit 31 is 1. */
373 read_nic_dword(dev, QPNR, &tmp);
374 while (tmp & 0x80000000) {
375 /* If FW can not finish RF-R/W for more than ?? times.
380 read_nic_dword(dev, QPNR, &tmp);
385 /* 7. Execute read operation. */
386 write_nic_dword(dev, QPNR, data);
387 /* 8. Check if firmware send back RF content. */
388 read_nic_dword(dev, QPNR, &tmp);
389 while (tmp & 0x80000000) {
390 /* If FW can not finish RF-R/W for more than ?? times.
395 read_nic_dword(dev, QPNR, &tmp);
400 read_nic_dword(dev, RF_DATA, ®);
405 /******************************************************************************
406 * function: We support firmware to execute RF-R/W.
407 * input: net_device *dev
408 * rf90_radio_path_e e_rfpath
414 ****************************************************************************/
415 static void phy_FwRFSerialWrite(struct net_device *dev,
416 enum rf90_radio_path_e e_rfpath,
417 u32 offset, u32 data)
422 /* Firmware RF Write control.
423 * We can not execute the scheme in the initial step.
424 * Otherwise, RF-R/W will waste much time.
425 * This is only for site survey.
428 /* 1. Set driver write bit and 12 bit data. bit 0-11 */
429 /* 2. Write RF register address. bit 12-19 */
430 data |= ((offset&0xFF)<<12);
431 /* 3. Write RF path. bit 20-21 */
432 data |= ((e_rfpath&0x3)<<20);
433 /* 4. Set RF write indicator. bit 22=1 */
435 /* 5. Trigger Fw to operate the command. bit 31=1 */
438 /* 6. Write operation. We can not write if bit 31 is 1. */
439 read_nic_dword(dev, QPNR, &tmp);
440 while (tmp & 0x80000000) {
441 /* If FW can not finish RF-R/W for more than ?? times.
446 read_nic_dword(dev, QPNR, &tmp);
451 /* 7. No matter check bit. We always force the write.
452 * Because FW will not accept the command.
454 write_nic_dword(dev, QPNR, data);
455 /* According to test, we must delay 20us to wait firmware
456 * to finish RF write operation.
458 /* We support delay in firmware side now. */
461 /******************************************************************************
462 * function: This function reads BB parameters from header file we generate,
463 * and do register read/write
464 * input: net_device *dev
467 * notice: BB parameters may change all the time, so please make
468 * sure it has been synced with the newest.
469 *****************************************************************************/
470 void rtl8192_phy_configmac(struct net_device *dev)
472 u32 dwArrayLen = 0, i;
473 u32 *pdwArray = NULL;
474 struct r8192_priv *priv = ieee80211_priv(dev);
476 if (priv->btxpowerdata_readfromEEPORM) {
477 RT_TRACE(COMP_PHY, "Rtl819XMACPHY_Array_PG\n");
478 dwArrayLen = MACPHY_Array_PGLength;
479 pdwArray = Rtl8192UsbMACPHY_Array_PG;
482 RT_TRACE(COMP_PHY, "Rtl819XMACPHY_Array\n");
483 dwArrayLen = MACPHY_ArrayLength;
484 pdwArray = rtl819XMACPHY_Array;
486 for (i = 0; i < dwArrayLen; i = i+3) {
487 if (pdwArray[i] == 0x318)
488 pdwArray[i+2] = 0x00000800;
491 "Rtl8190MACPHY_Array[0]=%x Rtl8190MACPHY_Array[1]=%x Rtl8190MACPHY_Array[2]=%x\n",
492 pdwArray[i], pdwArray[i+1], pdwArray[i+2]);
493 rtl8192_setBBreg(dev, pdwArray[i], pdwArray[i+1],
498 /******************************************************************************
499 * function: This function does dirty work
500 * input: net_device *dev
504 * notice: BB parameters may change all the time, so please make
505 * sure it has been synced with the newest.
506 *****************************************************************************/
507 static void rtl8192_phyConfigBB(struct net_device *dev,
508 enum baseband_config_type ConfigType)
512 if (ConfigType == BASEBAND_CONFIG_PHY_REG) {
513 for (i = 0; i < PHY_REG_1T2RArrayLength; i += 2) {
514 rtl8192_setBBreg(dev, Rtl8192UsbPHY_REG_1T2RArray[i],
516 Rtl8192UsbPHY_REG_1T2RArray[i+1]);
518 "i: %x, Rtl819xUsbPHY_REGArray[0]=%x Rtl819xUsbPHY_REGArray[1]=%x\n",
519 i, Rtl8192UsbPHY_REG_1T2RArray[i],
520 Rtl8192UsbPHY_REG_1T2RArray[i+1]);
522 } else if (ConfigType == BASEBAND_CONFIG_AGC_TAB) {
523 for (i = 0; i < AGCTAB_ArrayLength; i += 2) {
524 rtl8192_setBBreg(dev, Rtl8192UsbAGCTAB_Array[i],
525 bMaskDWord, Rtl8192UsbAGCTAB_Array[i+1]);
527 "i: %x, Rtl8192UsbAGCTAB_Array[0]=%x Rtl8192UsbAGCTAB_Array[1]=%x\n",
528 i, Rtl8192UsbAGCTAB_Array[i],
529 Rtl8192UsbAGCTAB_Array[i+1]);
534 /******************************************************************************
535 * function: This function initializes Register definition offset for
537 * input: net_device *dev
540 * notice: Initialization value here is constant and it should never
542 *****************************************************************************/
543 static void rtl8192_InitBBRFRegDef(struct net_device *dev)
545 struct r8192_priv *priv = ieee80211_priv(dev);
547 /* RF Interface Software Control */
548 /* 16 LSBs if read 32-bit from 0x870 */
549 priv->PHYRegDef[RF90_PATH_A].rfintfs = rFPGA0_XAB_RFInterfaceSW;
550 /* 16 MSBs if read 32-bit from 0x870 (16-bit for 0x872) */
551 priv->PHYRegDef[RF90_PATH_B].rfintfs = rFPGA0_XAB_RFInterfaceSW;
552 /* 16 LSBs if read 32-bit from 0x874 */
553 priv->PHYRegDef[RF90_PATH_C].rfintfs = rFPGA0_XCD_RFInterfaceSW;
554 /* 16 MSBs if read 32-bit from 0x874 (16-bit for 0x876) */
555 priv->PHYRegDef[RF90_PATH_D].rfintfs = rFPGA0_XCD_RFInterfaceSW;
557 /* RF Interface Readback Value */
558 /* 16 LSBs if read 32-bit from 0x8E0 */
559 priv->PHYRegDef[RF90_PATH_A].rfintfi = rFPGA0_XAB_RFInterfaceRB;
560 /* 16 MSBs if read 32-bit from 0x8E0 (16-bit for 0x8E2) */
561 priv->PHYRegDef[RF90_PATH_B].rfintfi = rFPGA0_XAB_RFInterfaceRB;
562 /* 16 LSBs if read 32-bit from 0x8E4 */
563 priv->PHYRegDef[RF90_PATH_C].rfintfi = rFPGA0_XCD_RFInterfaceRB;
564 /* 16 MSBs if read 32-bit from 0x8E4 (16-bit for 0x8E6) */
565 priv->PHYRegDef[RF90_PATH_D].rfintfi = rFPGA0_XCD_RFInterfaceRB;
567 /* RF Interface Output (and Enable) */
568 /* 16 LSBs if read 32-bit from 0x860 */
569 priv->PHYRegDef[RF90_PATH_A].rfintfo = rFPGA0_XA_RFInterfaceOE;
570 /* 16 LSBs if read 32-bit from 0x864 */
571 priv->PHYRegDef[RF90_PATH_B].rfintfo = rFPGA0_XB_RFInterfaceOE;
572 /* 16 LSBs if read 32-bit from 0x868 */
573 priv->PHYRegDef[RF90_PATH_C].rfintfo = rFPGA0_XC_RFInterfaceOE;
574 /* 16 LSBs if read 32-bit from 0x86C */
575 priv->PHYRegDef[RF90_PATH_D].rfintfo = rFPGA0_XD_RFInterfaceOE;
577 /* RF Interface (Output and) Enable */
578 /* 16 MSBs if read 32-bit from 0x860 (16-bit for 0x862) */
579 priv->PHYRegDef[RF90_PATH_A].rfintfe = rFPGA0_XA_RFInterfaceOE;
580 /* 16 MSBs if read 32-bit from 0x864 (16-bit for 0x866) */
581 priv->PHYRegDef[RF90_PATH_B].rfintfe = rFPGA0_XB_RFInterfaceOE;
582 /* 16 MSBs if read 32-bit from 0x86A (16-bit for 0x86A) */
583 priv->PHYRegDef[RF90_PATH_C].rfintfe = rFPGA0_XC_RFInterfaceOE;
584 /* 16 MSBs if read 32-bit from 0x86C (16-bit for 0x86E) */
585 priv->PHYRegDef[RF90_PATH_D].rfintfe = rFPGA0_XD_RFInterfaceOE;
587 /* Addr of LSSI. Write RF register by driver */
588 priv->PHYRegDef[RF90_PATH_A].rf3wireOffset = rFPGA0_XA_LSSIParameter;
589 priv->PHYRegDef[RF90_PATH_B].rf3wireOffset = rFPGA0_XB_LSSIParameter;
590 priv->PHYRegDef[RF90_PATH_C].rf3wireOffset = rFPGA0_XC_LSSIParameter;
591 priv->PHYRegDef[RF90_PATH_D].rf3wireOffset = rFPGA0_XD_LSSIParameter;
595 priv->PHYRegDef[RF90_PATH_A].rfLSSI_Select = rFPGA0_XAB_RFParameter;
596 priv->PHYRegDef[RF90_PATH_B].rfLSSI_Select = rFPGA0_XAB_RFParameter;
597 priv->PHYRegDef[RF90_PATH_C].rfLSSI_Select = rFPGA0_XCD_RFParameter;
598 priv->PHYRegDef[RF90_PATH_D].rfLSSI_Select = rFPGA0_XCD_RFParameter;
600 /* Tx AGC Gain Stage (same for all path. Should we remove this?) */
601 priv->PHYRegDef[RF90_PATH_A].rfTxGainStage = rFPGA0_TxGainStage;
602 priv->PHYRegDef[RF90_PATH_B].rfTxGainStage = rFPGA0_TxGainStage;
603 priv->PHYRegDef[RF90_PATH_C].rfTxGainStage = rFPGA0_TxGainStage;
604 priv->PHYRegDef[RF90_PATH_D].rfTxGainStage = rFPGA0_TxGainStage;
606 /* Tranceiver A~D HSSI Parameter-1 */
607 /* wire control parameter1 */
608 priv->PHYRegDef[RF90_PATH_A].rfHSSIPara1 = rFPGA0_XA_HSSIParameter1;
609 priv->PHYRegDef[RF90_PATH_B].rfHSSIPara1 = rFPGA0_XB_HSSIParameter1;
610 priv->PHYRegDef[RF90_PATH_C].rfHSSIPara1 = rFPGA0_XC_HSSIParameter1;
611 priv->PHYRegDef[RF90_PATH_D].rfHSSIPara1 = rFPGA0_XD_HSSIParameter1;
613 /* Tranceiver A~D HSSI Parameter-2 */
614 /* wire control parameter2 */
615 priv->PHYRegDef[RF90_PATH_A].rfHSSIPara2 = rFPGA0_XA_HSSIParameter2;
616 priv->PHYRegDef[RF90_PATH_B].rfHSSIPara2 = rFPGA0_XB_HSSIParameter2;
617 priv->PHYRegDef[RF90_PATH_C].rfHSSIPara2 = rFPGA0_XC_HSSIParameter2;
618 priv->PHYRegDef[RF90_PATH_D].rfHSSIPara2 = rFPGA0_XD_HSSIParameter2;
620 /* RF Switch Control */
621 /* TR/Ant switch control */
622 priv->PHYRegDef[RF90_PATH_A].rfSwitchControl = rFPGA0_XAB_SwitchControl;
623 priv->PHYRegDef[RF90_PATH_B].rfSwitchControl = rFPGA0_XAB_SwitchControl;
624 priv->PHYRegDef[RF90_PATH_C].rfSwitchControl = rFPGA0_XCD_SwitchControl;
625 priv->PHYRegDef[RF90_PATH_D].rfSwitchControl = rFPGA0_XCD_SwitchControl;
628 priv->PHYRegDef[RF90_PATH_A].rfAGCControl1 = rOFDM0_XAAGCCore1;
629 priv->PHYRegDef[RF90_PATH_B].rfAGCControl1 = rOFDM0_XBAGCCore1;
630 priv->PHYRegDef[RF90_PATH_C].rfAGCControl1 = rOFDM0_XCAGCCore1;
631 priv->PHYRegDef[RF90_PATH_D].rfAGCControl1 = rOFDM0_XDAGCCore1;
634 priv->PHYRegDef[RF90_PATH_A].rfAGCControl2 = rOFDM0_XAAGCCore2;
635 priv->PHYRegDef[RF90_PATH_B].rfAGCControl2 = rOFDM0_XBAGCCore2;
636 priv->PHYRegDef[RF90_PATH_C].rfAGCControl2 = rOFDM0_XCAGCCore2;
637 priv->PHYRegDef[RF90_PATH_D].rfAGCControl2 = rOFDM0_XDAGCCore2;
639 /* RX AFE control 1 */
640 priv->PHYRegDef[RF90_PATH_A].rfRxIQImbalance = rOFDM0_XARxIQImbalance;
641 priv->PHYRegDef[RF90_PATH_B].rfRxIQImbalance = rOFDM0_XBRxIQImbalance;
642 priv->PHYRegDef[RF90_PATH_C].rfRxIQImbalance = rOFDM0_XCRxIQImbalance;
643 priv->PHYRegDef[RF90_PATH_D].rfRxIQImbalance = rOFDM0_XDRxIQImbalance;
645 /* RX AFE control 1 */
646 priv->PHYRegDef[RF90_PATH_A].rfRxAFE = rOFDM0_XARxAFE;
647 priv->PHYRegDef[RF90_PATH_B].rfRxAFE = rOFDM0_XBRxAFE;
648 priv->PHYRegDef[RF90_PATH_C].rfRxAFE = rOFDM0_XCRxAFE;
649 priv->PHYRegDef[RF90_PATH_D].rfRxAFE = rOFDM0_XDRxAFE;
651 /* Tx AFE control 1 */
652 priv->PHYRegDef[RF90_PATH_A].rfTxIQImbalance = rOFDM0_XATxIQImbalance;
653 priv->PHYRegDef[RF90_PATH_B].rfTxIQImbalance = rOFDM0_XBTxIQImbalance;
654 priv->PHYRegDef[RF90_PATH_C].rfTxIQImbalance = rOFDM0_XCTxIQImbalance;
655 priv->PHYRegDef[RF90_PATH_D].rfTxIQImbalance = rOFDM0_XDTxIQImbalance;
657 /* Tx AFE control 2 */
658 priv->PHYRegDef[RF90_PATH_A].rfTxAFE = rOFDM0_XATxAFE;
659 priv->PHYRegDef[RF90_PATH_B].rfTxAFE = rOFDM0_XBTxAFE;
660 priv->PHYRegDef[RF90_PATH_C].rfTxAFE = rOFDM0_XCTxAFE;
661 priv->PHYRegDef[RF90_PATH_D].rfTxAFE = rOFDM0_XDTxAFE;
663 /* Tranceiver LSSI Readback */
664 priv->PHYRegDef[RF90_PATH_A].rfLSSIReadBack = rFPGA0_XA_LSSIReadBack;
665 priv->PHYRegDef[RF90_PATH_B].rfLSSIReadBack = rFPGA0_XB_LSSIReadBack;
666 priv->PHYRegDef[RF90_PATH_C].rfLSSIReadBack = rFPGA0_XC_LSSIReadBack;
667 priv->PHYRegDef[RF90_PATH_D].rfLSSIReadBack = rFPGA0_XD_LSSIReadBack;
670 /******************************************************************************
671 * function: This function is to write register and then readback to make
672 * sure whether BB and RF is OK
673 * input: net_device *dev
674 * hw90_block_e CheckBlock
675 * rf90_radio_path_e e_rfpath //only used when checkblock is
678 * return: return whether BB and RF is ok (0:OK, 1:Fail)
679 * notice: This function may be removed in the ASIC
680 ******************************************************************************/
681 u8 rtl8192_phy_checkBBAndRF(struct net_device *dev, enum hw90_block_e CheckBlock,
682 enum rf90_radio_path_e e_rfpath)
685 u32 i, CheckTimes = 4, reg = 0;
687 u32 WriteData[] = {0xfffff027, 0xaa55a02f, 0x00000027, 0x55aa502f};
689 /* Initialize register address offset to be checked */
690 WriteAddr[HW90_BLOCK_MAC] = 0x100;
691 WriteAddr[HW90_BLOCK_PHY0] = 0x900;
692 WriteAddr[HW90_BLOCK_PHY1] = 0x800;
693 WriteAddr[HW90_BLOCK_RF] = 0x3;
694 RT_TRACE(COMP_PHY, "%s(), CheckBlock: %d\n", __func__, CheckBlock);
695 for (i = 0; i < CheckTimes; i++) {
696 /* Write data to register and readback */
697 switch (CheckBlock) {
700 "PHY_CheckBBRFOK(): Never Write 0x100 here!\n");
703 case HW90_BLOCK_PHY0:
704 case HW90_BLOCK_PHY1:
705 write_nic_dword(dev, WriteAddr[CheckBlock],
707 read_nic_dword(dev, WriteAddr[CheckBlock], ®);
711 WriteData[i] &= 0xfff;
712 rtl8192_phy_SetRFReg(dev, e_rfpath,
713 WriteAddr[HW90_BLOCK_RF],
714 bMask12Bits, WriteData[i]);
715 /* TODO: we should not delay for such a long time.
718 usleep_range(1000, 1000);
719 reg = rtl8192_phy_QueryRFReg(dev, e_rfpath,
720 WriteAddr[HW90_BLOCK_RF],
722 usleep_range(1000, 1000);
730 /* Check whether readback data is correct */
731 if (reg != WriteData[i]) {
732 RT_TRACE((COMP_PHY|COMP_ERR),
733 "error reg: %x, WriteData: %x\n",
743 /******************************************************************************
744 * function: This function initializes BB&RF
745 * input: net_device *dev
748 * notice: Initialization value may change all the time, so please make
749 * sure it has been synced with the newest.
750 ******************************************************************************/
751 static void rtl8192_BB_Config_ParaFile(struct net_device *dev)
753 struct r8192_priv *priv = ieee80211_priv(dev);
754 u8 reg_u8 = 0, eCheckItem = 0, status = 0;
757 /**************************************
758 * <1> Initialize BaseBand
759 *************************************/
761 /* --set BB Global Reset-- */
762 read_nic_byte(dev, BB_GLOBAL_RESET, ®_u8);
763 write_nic_byte(dev, BB_GLOBAL_RESET, (reg_u8|BB_GLOBAL_RESET_BIT));
765 /* ---set BB reset Active--- */
766 read_nic_dword(dev, CPU_GEN, ®_u32);
767 write_nic_dword(dev, CPU_GEN, (reg_u32&(~CPU_GEN_BB_RST)));
769 /* ----Ckeck FPGAPHY0 and PHY1 board is OK---- */
770 /* TODO: this function should be removed on ASIC */
771 for (eCheckItem = (enum hw90_block_e)HW90_BLOCK_PHY0;
772 eCheckItem <= HW90_BLOCK_PHY1; eCheckItem++) {
773 /* don't care RF path */
774 status = rtl8192_phy_checkBBAndRF(dev, (enum hw90_block_e)eCheckItem,
775 (enum rf90_radio_path_e)0);
777 RT_TRACE((COMP_ERR | COMP_PHY),
778 "phy_rf8256_config(): Check PHY%d Fail!!\n",
783 /* ---- Set CCK and OFDM Block "OFF"---- */
784 rtl8192_setBBreg(dev, rFPGA0_RFMOD, bCCKEn|bOFDMEn, 0x0);
785 /* ----BB Register Initilazation---- */
786 /* ==m==>Set PHY REG From Header<==m== */
787 rtl8192_phyConfigBB(dev, BASEBAND_CONFIG_PHY_REG);
789 /* ----Set BB reset de-Active---- */
790 read_nic_dword(dev, CPU_GEN, ®_u32);
791 write_nic_dword(dev, CPU_GEN, (reg_u32|CPU_GEN_BB_RST));
793 /* ----BB AGC table Initialization---- */
794 /* ==m==>Set PHY REG From Header<==m== */
795 rtl8192_phyConfigBB(dev, BASEBAND_CONFIG_AGC_TAB);
797 /* ----Enable XSTAL ---- */
798 write_nic_byte_E(dev, 0x5e, 0x00);
799 if (priv->card_8192_version == VERSION_819XU_A) {
800 /* Antenna gain offset from B/C/D to A */
801 reg_u32 = priv->AntennaTxPwDiff[1]<<4 |
802 priv->AntennaTxPwDiff[0];
803 rtl8192_setBBreg(dev, rFPGA0_TxGainStage, (bXBTxAGC|bXCTxAGC),
807 reg_u32 = priv->CrystalCap & 0xf;
808 rtl8192_setBBreg(dev, rFPGA0_AnalogParameter1, bXtalCap,
812 /* Check if the CCK HighPower is turned ON.
813 * This is used to calculate PWDB.
815 priv->bCckHighPower = (u8)rtl8192_QueryBBReg(dev,
816 rFPGA0_XA_HSSIParameter2,
820 /******************************************************************************
821 * function: This function initializes BB&RF
822 * input: net_device *dev
825 * notice: Initialization value may change all the time, so please make
826 * sure it has been synced with the newest.
827 *****************************************************************************/
828 void rtl8192_BBConfig(struct net_device *dev)
830 rtl8192_InitBBRFRegDef(dev);
831 /* config BB&RF. As hardCode based initialization has not been well
832 * implemented, so use file first.
833 * FIXME: should implement it for hardcode?
835 rtl8192_BB_Config_ParaFile(dev);
838 /******************************************************************************
839 * function: This function obtains the initialization value of Tx power Level
841 * input: net_device *dev
844 *****************************************************************************/
845 void rtl8192_phy_getTxPower(struct net_device *dev)
847 struct r8192_priv *priv = ieee80211_priv(dev);
850 read_nic_dword(dev, rTxAGC_Rate18_06,
851 &priv->MCSTxPowerLevelOriginalOffset[0]);
852 read_nic_dword(dev, rTxAGC_Rate54_24,
853 &priv->MCSTxPowerLevelOriginalOffset[1]);
854 read_nic_dword(dev, rTxAGC_Mcs03_Mcs00,
855 &priv->MCSTxPowerLevelOriginalOffset[2]);
856 read_nic_dword(dev, rTxAGC_Mcs07_Mcs04,
857 &priv->MCSTxPowerLevelOriginalOffset[3]);
858 read_nic_dword(dev, rTxAGC_Mcs11_Mcs08,
859 &priv->MCSTxPowerLevelOriginalOffset[4]);
860 read_nic_dword(dev, rTxAGC_Mcs15_Mcs12,
861 &priv->MCSTxPowerLevelOriginalOffset[5]);
863 /* Read rx initial gain */
864 read_nic_byte(dev, rOFDM0_XAAGCCore1, &priv->DefaultInitialGain[0]);
865 read_nic_byte(dev, rOFDM0_XBAGCCore1, &priv->DefaultInitialGain[1]);
866 read_nic_byte(dev, rOFDM0_XCAGCCore1, &priv->DefaultInitialGain[2]);
867 read_nic_byte(dev, rOFDM0_XDAGCCore1, &priv->DefaultInitialGain[3]);
869 "Default initial gain (c50=0x%x, c58=0x%x, c60=0x%x, c68=0x%x)\n",
870 priv->DefaultInitialGain[0], priv->DefaultInitialGain[1],
871 priv->DefaultInitialGain[2], priv->DefaultInitialGain[3]);
874 read_nic_byte(dev, rOFDM0_RxDetector3, &priv->framesync);
875 read_nic_byte(dev, rOFDM0_RxDetector2, &tmp);
876 priv->framesyncC34 = tmp;
877 RT_TRACE(COMP_INIT, "Default framesync (0x%x) = 0x%x\n",
878 rOFDM0_RxDetector3, priv->framesync);
880 /* Read SIFS (save the value read fome MACPHY_REG.txt) */
881 read_nic_word(dev, SIFS, &priv->SifsTime);
884 /******************************************************************************
885 * function: This function sets the initialization value of Tx power Level
887 * input: net_device *dev
891 ******************************************************************************/
892 void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel)
894 struct r8192_priv *priv = ieee80211_priv(dev);
895 u8 powerlevel = priv->TxPowerLevelCCK[channel-1];
896 u8 powerlevelOFDM24G = priv->TxPowerLevelOFDM24G[channel-1];
898 switch (priv->rf_chip) {
900 /* need further implement */
901 phy_set_rf8256_cck_tx_power(dev, powerlevel);
902 phy_set_rf8256_ofdm_tx_power(dev, powerlevelOFDM24G);
905 RT_TRACE((COMP_PHY|COMP_ERR),
906 "error RF chipID(8225 or 8258) in function %s()\n",
912 /******************************************************************************
913 * function: This function checks Rf chip to do RF config
914 * input: net_device *dev
916 * return: only 8256 is supported
917 ******************************************************************************/
918 void rtl8192_phy_RFConfig(struct net_device *dev)
920 struct r8192_priv *priv = ieee80211_priv(dev);
922 switch (priv->rf_chip) {
924 phy_rf8256_config(dev);
927 RT_TRACE(COMP_ERR, "error chip id\n");
932 /******************************************************************************
933 * function: This function updates Initial gain
934 * input: net_device *dev
936 * return: As Windows has not implemented this, wait for complement
937 ******************************************************************************/
938 void rtl8192_phy_updateInitGain(struct net_device *dev)
942 /******************************************************************************
943 * function: This function read RF parameters from general head file,
945 * input: net_device *dev
946 * rf90_radio_path_e e_rfpath
948 * return: return code show if RF configuration is successful(0:pass, 1:fail)
949 * notice: Delay may be required for RF configuration
950 *****************************************************************************/
951 u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
952 enum rf90_radio_path_e e_rfpath)
958 for (i = 0; i < RadioA_ArrayLength; i = i+2) {
959 if (Rtl8192UsbRadioA_Array[i] == 0xfe) {
963 rtl8192_phy_SetRFReg(dev, e_rfpath,
964 Rtl8192UsbRadioA_Array[i],
966 Rtl8192UsbRadioA_Array[i+1]);
971 for (i = 0; i < RadioB_ArrayLength; i = i+2) {
972 if (Rtl8192UsbRadioB_Array[i] == 0xfe) {
976 rtl8192_phy_SetRFReg(dev, e_rfpath,
977 Rtl8192UsbRadioB_Array[i],
979 Rtl8192UsbRadioB_Array[i+1]);
984 for (i = 0; i < RadioC_ArrayLength; i = i+2) {
985 if (Rtl8192UsbRadioC_Array[i] == 0xfe) {
989 rtl8192_phy_SetRFReg(dev, e_rfpath,
990 Rtl8192UsbRadioC_Array[i],
992 Rtl8192UsbRadioC_Array[i+1]);
997 for (i = 0; i < RadioD_ArrayLength; i = i+2) {
998 if (Rtl8192UsbRadioD_Array[i] == 0xfe) {
1002 rtl8192_phy_SetRFReg(dev, e_rfpath,
1003 Rtl8192UsbRadioD_Array[i],
1005 Rtl8192UsbRadioD_Array[i+1]);
1016 /******************************************************************************
1017 * function: This function sets Tx Power of the channel
1018 * input: net_device *dev
1023 ******************************************************************************/
1024 static void rtl8192_SetTxPowerLevel(struct net_device *dev, u8 channel)
1026 struct r8192_priv *priv = ieee80211_priv(dev);
1027 u8 powerlevel = priv->TxPowerLevelCCK[channel-1];
1028 u8 powerlevelOFDM24G = priv->TxPowerLevelOFDM24G[channel-1];
1030 switch (priv->rf_chip) {
1035 phy_set_rf8256_cck_tx_power(dev, powerlevel);
1036 phy_set_rf8256_ofdm_tx_power(dev, powerlevelOFDM24G);
1042 RT_TRACE(COMP_ERR, "unknown rf chip ID in %s()\n", __func__);
1047 /******************************************************************************
1048 * function: This function sets command table variable (struct sw_chnl_cmd).
1049 * input: sw_chnl_cmd *CmdTable //table to be set
1050 * u32 CmdTableIdx //variable index in table to be set
1051 * u32 CmdTableSz //table size
1052 * switch_chan_cmd_id CmdID //command ID to set
1057 * return: true if finished, false otherwise
1059 ******************************************************************************/
1060 static u8 rtl8192_phy_SetSwChnlCmdArray(struct sw_chnl_cmd *CmdTable, u32 CmdTableIdx,
1061 u32 CmdTableSz, enum switch_chan_cmd_id CmdID,
1062 u32 Para1, u32 Para2, u32 msDelay)
1064 struct sw_chnl_cmd *pCmd;
1067 RT_TRACE(COMP_ERR, "%s(): CmdTable cannot be NULL\n", __func__);
1070 if (CmdTableIdx >= CmdTableSz) {
1071 RT_TRACE(COMP_ERR, "%s(): Access invalid index, please check size of the table, CmdTableIdx:%d, CmdTableSz:%d\n",
1072 __func__, CmdTableIdx, CmdTableSz);
1076 pCmd = CmdTable + CmdTableIdx;
1077 pCmd->cmd_id = CmdID;
1078 pCmd->para_1 = Para1;
1079 pCmd->para_2 = Para2;
1080 pCmd->ms_delay = msDelay;
1085 /******************************************************************************
1086 * function: This function sets channel step by step
1087 * input: net_device *dev
1089 * u8 *stage //3 stages
1091 * u32 *delay //whether need to delay
1092 * output: store new stage, step and delay for next step
1093 * (combine with function above)
1094 * return: true if finished, false otherwise
1095 * notice: Wait for simpler function to replace it
1096 *****************************************************************************/
1097 static u8 rtl8192_phy_SwChnlStepByStep(struct net_device *dev, u8 channel,
1098 u8 *stage, u8 *step, u32 *delay)
1100 struct r8192_priv *priv = ieee80211_priv(dev);
1101 struct sw_chnl_cmd *pre_cmd;
1102 u32 pre_cmd_cnt = 0;
1103 struct sw_chnl_cmd *post_cmd;
1104 u32 post_cmd_cnt = 0;
1105 struct sw_chnl_cmd *rf_cmd;
1107 struct sw_chnl_cmd *current_cmd = NULL;
1111 pre_cmd = kcalloc(MAX_PRECMD_CNT, sizeof(*pre_cmd), GFP_KERNEL);
1115 post_cmd = kcalloc(MAX_POSTCMD_CNT, sizeof(*post_cmd), GFP_KERNEL);
1121 rf_cmd = kcalloc(MAX_RFDEPENDCMD_CNT, sizeof(*rf_cmd), GFP_KERNEL);
1128 RT_TRACE(COMP_CH, "%s() stage: %d, step: %d, channel: %d\n",
1129 __func__, *stage, *step, channel);
1130 if (!is_legal_channel(priv->ieee80211, channel)) {
1131 RT_TRACE(COMP_ERR, "set to illegal channel: %d\n", channel);
1132 /* return true to tell upper caller function this channel
1133 * setting is finished! Or it will in while loop.
1138 /* FIXME: need to check whether channel is legal or not here */
1140 /* <1> Fill up pre common command. */
1141 rtl8192_phy_SetSwChnlCmdArray(pre_cmd, pre_cmd_cnt++,
1142 MAX_PRECMD_CNT, CMD_ID_SET_TX_PWR_LEVEL,
1144 rtl8192_phy_SetSwChnlCmdArray(pre_cmd, pre_cmd_cnt++,
1145 MAX_PRECMD_CNT, CMD_ID_END, 0, 0, 0);
1147 /* <2> Fill up post common command. */
1148 rtl8192_phy_SetSwChnlCmdArray(post_cmd, post_cmd_cnt++,
1149 MAX_POSTCMD_CNT, CMD_ID_END, 0, 0, 0);
1151 /* <3> Fill up RF dependent command. */
1152 switch (priv->rf_chip) {
1154 if (!(channel >= 1 && channel <= 14)) {
1156 "illegal channel for Zebra 8225: %d\n",
1161 rtl8192_phy_SetSwChnlCmdArray(rf_cmd, rf_cmd_cnt++,
1162 MAX_RFDEPENDCMD_CNT,
1163 CMD_ID_RF_WRITE_REG,
1165 RF_CHANNEL_TABLE_ZEBRA[channel],
1167 rtl8192_phy_SetSwChnlCmdArray(rf_cmd, rf_cmd_cnt++,
1168 MAX_RFDEPENDCMD_CNT,
1169 CMD_ID_END, 0, 0, 0);
1173 /* TEST!! This is not the table for 8256!! */
1174 if (!(channel >= 1 && channel <= 14)) {
1176 "illegal channel for Zebra 8256: %d\n",
1181 rtl8192_phy_SetSwChnlCmdArray(rf_cmd, rf_cmd_cnt++,
1182 MAX_RFDEPENDCMD_CNT,
1183 CMD_ID_RF_WRITE_REG,
1184 rZebra1_Channel, channel, 10);
1185 rtl8192_phy_SetSwChnlCmdArray(rf_cmd, rf_cmd_cnt++,
1186 MAX_RFDEPENDCMD_CNT,
1187 CMD_ID_END, 0, 0, 0);
1194 RT_TRACE(COMP_ERR, "Unknown RFChipID: %d\n", priv->rf_chip);
1202 current_cmd = &pre_cmd[*step];
1205 current_cmd = &rf_cmd[*step];
1208 current_cmd = &post_cmd[*step];
1212 if (current_cmd->cmd_id == CMD_ID_END) {
1213 if ((*stage) == 2) {
1214 *delay = current_cmd->ms_delay;
1223 switch (current_cmd->cmd_id) {
1224 case CMD_ID_SET_TX_PWR_LEVEL:
1225 if (priv->card_8192_version == VERSION_819XU_A)
1226 /* consider it later! */
1227 rtl8192_SetTxPowerLevel(dev, channel);
1229 case CMD_ID_WRITE_PORT_ULONG:
1230 write_nic_dword(dev, current_cmd->para_1,
1231 current_cmd->para_2);
1233 case CMD_ID_WRITE_PORT_USHORT:
1234 write_nic_word(dev, current_cmd->para_1,
1235 (u16)current_cmd->para_2);
1237 case CMD_ID_WRITE_PORT_UCHAR:
1238 write_nic_byte(dev, current_cmd->para_1,
1239 (u8)current_cmd->para_2);
1241 case CMD_ID_RF_WRITE_REG:
1242 for (e_rfpath = 0; e_rfpath < RF90_PATH_MAX; e_rfpath++) {
1243 rtl8192_phy_SetRFReg(dev,
1244 (enum rf90_radio_path_e)e_rfpath,
1245 current_cmd->para_1,
1247 current_cmd->para_2);
1257 *delay = current_cmd->ms_delay;
1269 /******************************************************************************
1270 * function: This function does actually set channel work
1271 * input: net_device *dev
1275 * notice: We should not call this function directly
1276 *****************************************************************************/
1277 static void rtl8192_phy_FinishSwChnlNow(struct net_device *dev, u8 channel)
1279 struct r8192_priv *priv = ieee80211_priv(dev);
1282 while (!rtl8192_phy_SwChnlStepByStep(dev, channel, &priv->SwChnlStage,
1283 &priv->SwChnlStep, &delay)) {
1289 /******************************************************************************
1290 * function: Callback routine of the work item for switch channel.
1291 * input: net_device *dev
1295 *****************************************************************************/
1296 void rtl8192_SwChnl_WorkItem(struct net_device *dev)
1298 struct r8192_priv *priv = ieee80211_priv(dev);
1300 RT_TRACE(COMP_CH, "==> SwChnlCallback819xUsbWorkItem(), chan:%d\n",
1303 rtl8192_phy_FinishSwChnlNow(dev, priv->chan);
1305 RT_TRACE(COMP_CH, "<== SwChnlCallback819xUsbWorkItem()\n");
1308 /******************************************************************************
1309 * function: This function scheduled actual work item to set channel
1310 * input: net_device *dev
1311 * u8 channel //channel to set
1313 * return: return code show if workitem is scheduled (1:pass, 0:fail)
1314 * notice: Delay may be required for RF configuration
1315 ******************************************************************************/
1316 u8 rtl8192_phy_SwChnl(struct net_device *dev, u8 channel)
1318 struct r8192_priv *priv = ieee80211_priv(dev);
1320 RT_TRACE(COMP_CH, "%s(), SwChnlInProgress: %d\n", __func__,
1321 priv->SwChnlInProgress);
1324 if (priv->SwChnlInProgress)
1327 /* -------------------------------------------- */
1328 switch (priv->ieee80211->mode) {
1329 case WIRELESS_MODE_A:
1330 case WIRELESS_MODE_N_5G:
1331 if (channel <= 14) {
1332 RT_TRACE(COMP_ERR, "WIRELESS_MODE_A but channel<=14\n");
1336 case WIRELESS_MODE_B:
1338 RT_TRACE(COMP_ERR, "WIRELESS_MODE_B but channel>14\n");
1342 case WIRELESS_MODE_G:
1343 case WIRELESS_MODE_N_24G:
1345 RT_TRACE(COMP_ERR, "WIRELESS_MODE_G but channel>14\n");
1350 /* -------------------------------------------- */
1352 priv->SwChnlInProgress = true;
1356 priv->chan = channel;
1358 priv->SwChnlStage = 0;
1359 priv->SwChnlStep = 0;
1361 rtl8192_SwChnl_WorkItem(dev);
1363 priv->SwChnlInProgress = false;
1367 /******************************************************************************
1368 * function: Callback routine of the work item for set bandwidth mode.
1369 * input: net_device *dev
1372 * notice: I doubt whether SetBWModeInProgress flag is necessary as we can
1373 * test whether current work in the queue or not.//do I?
1374 *****************************************************************************/
1375 void rtl8192_SetBWModeWorkItem(struct net_device *dev)
1377 struct r8192_priv *priv = ieee80211_priv(dev);
1380 RT_TRACE(COMP_SWBW, "%s() Switch to %s bandwidth\n", __func__,
1381 priv->CurrentChannelBW == HT_CHANNEL_WIDTH_20?"20MHz":"40MHz");
1383 if (priv->rf_chip == RF_PSEUDO_11N) {
1384 priv->SetBWModeInProgress = false;
1388 /* <1> Set MAC register */
1389 read_nic_byte(dev, BW_OPMODE, ®BwOpMode);
1391 switch (priv->CurrentChannelBW) {
1392 case HT_CHANNEL_WIDTH_20:
1393 regBwOpMode |= BW_OPMODE_20MHZ;
1394 /* We have not verify whether this register works */
1395 write_nic_byte(dev, BW_OPMODE, regBwOpMode);
1398 case HT_CHANNEL_WIDTH_20_40:
1399 regBwOpMode &= ~BW_OPMODE_20MHZ;
1400 /* We have not verify whether this register works */
1401 write_nic_byte(dev, BW_OPMODE, regBwOpMode);
1406 "SetChannelBandwidth819xUsb(): unknown Bandwidth: %#X\n",
1407 priv->CurrentChannelBW);
1411 /* <2> Set PHY related register */
1412 switch (priv->CurrentChannelBW) {
1413 case HT_CHANNEL_WIDTH_20:
1414 rtl8192_setBBreg(dev, rFPGA0_RFMOD, bRFMOD, 0x0);
1415 rtl8192_setBBreg(dev, rFPGA1_RFMOD, bRFMOD, 0x0);
1416 rtl8192_setBBreg(dev, rFPGA0_AnalogParameter1,
1419 /* Correct the tx power for CCK rate in 20M. */
1420 priv->cck_present_attenuation =
1421 priv->cck_present_attenuation_20Mdefault +
1422 priv->cck_present_attenuation_difference;
1424 if (priv->cck_present_attenuation > 22)
1425 priv->cck_present_attenuation = 22;
1426 if (priv->cck_present_attenuation < 0)
1427 priv->cck_present_attenuation = 0;
1429 "20M, pHalData->CCKPresentAttentuation = %d\n",
1430 priv->cck_present_attenuation);
1432 if (priv->chan == 14 && !priv->bcck_in_ch14) {
1433 priv->bcck_in_ch14 = true;
1434 dm_cck_txpower_adjust(dev, priv->bcck_in_ch14);
1435 } else if (priv->chan != 14 && priv->bcck_in_ch14) {
1436 priv->bcck_in_ch14 = false;
1437 dm_cck_txpower_adjust(dev, priv->bcck_in_ch14);
1439 dm_cck_txpower_adjust(dev, priv->bcck_in_ch14);
1443 case HT_CHANNEL_WIDTH_20_40:
1444 rtl8192_setBBreg(dev, rFPGA0_RFMOD, bRFMOD, 0x1);
1445 rtl8192_setBBreg(dev, rFPGA1_RFMOD, bRFMOD, 0x1);
1446 rtl8192_setBBreg(dev, rCCK0_System, bCCKSideBand,
1447 priv->nCur40MhzPrimeSC >> 1);
1448 rtl8192_setBBreg(dev, rFPGA0_AnalogParameter1, 0x00100000, 0);
1449 rtl8192_setBBreg(dev, rOFDM1_LSTF, 0xC00,
1450 priv->nCur40MhzPrimeSC);
1451 priv->cck_present_attenuation =
1452 priv->cck_present_attenuation_40Mdefault +
1453 priv->cck_present_attenuation_difference;
1455 if (priv->cck_present_attenuation > 22)
1456 priv->cck_present_attenuation = 22;
1457 if (priv->cck_present_attenuation < 0)
1458 priv->cck_present_attenuation = 0;
1461 "40M, pHalData->CCKPresentAttentuation = %d\n",
1462 priv->cck_present_attenuation);
1463 if (priv->chan == 14 && !priv->bcck_in_ch14) {
1464 priv->bcck_in_ch14 = true;
1465 dm_cck_txpower_adjust(dev, priv->bcck_in_ch14);
1466 } else if (priv->chan != 14 && priv->bcck_in_ch14) {
1467 priv->bcck_in_ch14 = false;
1468 dm_cck_txpower_adjust(dev, priv->bcck_in_ch14);
1470 dm_cck_txpower_adjust(dev, priv->bcck_in_ch14);
1476 "SetChannelBandwidth819xUsb(): unknown Bandwidth: %#X\n",
1477 priv->CurrentChannelBW);
1480 /* Skip over setting of J-mode in BB register here.
1481 * Default value is "None J mode".
1484 /* <3> Set RF related register */
1485 switch (priv->rf_chip) {
1490 phy_set_rf8256_bandwidth(dev, priv->CurrentChannelBW);
1500 RT_TRACE(COMP_ERR, "Unknown RFChipID: %d\n", priv->rf_chip);
1503 priv->SetBWModeInProgress = false;
1505 RT_TRACE(COMP_SWBW, "<==SetBWMode819xUsb(), %d\n",
1506 atomic_read(&priv->ieee80211->atm_swbw));
1509 /******************************************************************************
1510 * function: This function schedules bandwidth switch work.
1511 * input: struct net_deviceq *dev
1512 * HT_CHANNEL_WIDTH bandwidth //20M or 40M
1513 * HT_EXTCHNL_OFFSET offset //Upper, Lower, or Don't care
1516 * notice: I doubt whether SetBWModeInProgress flag is necessary as we can
1517 * test whether current work in the queue or not.//do I?
1518 *****************************************************************************/
1519 void rtl8192_SetBWMode(struct net_device *dev,
1520 enum ht_channel_width bandwidth,
1521 enum ht_extension_chan_offset offset)
1523 struct r8192_priv *priv = ieee80211_priv(dev);
1525 if (priv->SetBWModeInProgress)
1527 priv->SetBWModeInProgress = true;
1529 priv->CurrentChannelBW = bandwidth;
1531 if (offset == HT_EXTCHNL_OFFSET_LOWER)
1532 priv->nCur40MhzPrimeSC = HAL_PRIME_CHNL_OFFSET_UPPER;
1533 else if (offset == HT_EXTCHNL_OFFSET_UPPER)
1534 priv->nCur40MhzPrimeSC = HAL_PRIME_CHNL_OFFSET_LOWER;
1536 priv->nCur40MhzPrimeSC = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
1538 rtl8192_SetBWModeWorkItem(dev);
1541 void InitialGain819xUsb(struct net_device *dev, u8 Operation)
1543 struct r8192_priv *priv = ieee80211_priv(dev);
1545 priv->InitialGainOperateType = Operation;
1548 queue_delayed_work(priv->priv_wq, &priv->initialgain_operate_wq, 0);
1551 void InitialGainOperateWorkItemCallBack(struct work_struct *work)
1553 struct delayed_work *dwork = to_delayed_work(work);
1554 struct r8192_priv *priv = container_of(dwork, struct r8192_priv,
1555 initialgain_operate_wq);
1556 struct net_device *dev = priv->ieee80211->dev;
1557 #define SCAN_RX_INITIAL_GAIN 0x17
1558 #define POWER_DETECTION_TH 0x08
1563 Operation = priv->InitialGainOperateType;
1565 switch (Operation) {
1567 RT_TRACE(COMP_SCAN, "IG_Backup, backup the initial gain.\n");
1568 initial_gain = SCAN_RX_INITIAL_GAIN;
1569 bitmask = bMaskByte0;
1570 if (dm_digtable.dig_algorithm == DIG_ALGO_BY_FALSE_ALARM)
1572 rtl8192_setBBreg(dev, UFWP, bMaskByte1, 0x8);
1573 priv->initgain_backup.xaagccore1 =
1574 (u8)rtl8192_QueryBBReg(dev, rOFDM0_XAAGCCore1, bitmask);
1575 priv->initgain_backup.xbagccore1 =
1576 (u8)rtl8192_QueryBBReg(dev, rOFDM0_XBAGCCore1, bitmask);
1577 priv->initgain_backup.xcagccore1 =
1578 (u8)rtl8192_QueryBBReg(dev, rOFDM0_XCAGCCore1, bitmask);
1579 priv->initgain_backup.xdagccore1 =
1580 (u8)rtl8192_QueryBBReg(dev, rOFDM0_XDAGCCore1, bitmask);
1581 bitmask = bMaskByte2;
1582 priv->initgain_backup.cca =
1583 (u8)rtl8192_QueryBBReg(dev, rCCK0_CCA, bitmask);
1585 RT_TRACE(COMP_SCAN, "Scan InitialGainBackup 0xc50 is %x\n",
1586 priv->initgain_backup.xaagccore1);
1587 RT_TRACE(COMP_SCAN, "Scan InitialGainBackup 0xc58 is %x\n",
1588 priv->initgain_backup.xbagccore1);
1589 RT_TRACE(COMP_SCAN, "Scan InitialGainBackup 0xc60 is %x\n",
1590 priv->initgain_backup.xcagccore1);
1591 RT_TRACE(COMP_SCAN, "Scan InitialGainBackup 0xc68 is %x\n",
1592 priv->initgain_backup.xdagccore1);
1593 RT_TRACE(COMP_SCAN, "Scan InitialGainBackup 0xa0a is %x\n",
1594 priv->initgain_backup.cca);
1596 RT_TRACE(COMP_SCAN, "Write scan initial gain = 0x%x\n",
1598 write_nic_byte(dev, rOFDM0_XAAGCCore1, initial_gain);
1599 write_nic_byte(dev, rOFDM0_XBAGCCore1, initial_gain);
1600 write_nic_byte(dev, rOFDM0_XCAGCCore1, initial_gain);
1601 write_nic_byte(dev, rOFDM0_XDAGCCore1, initial_gain);
1602 RT_TRACE(COMP_SCAN, "Write scan 0xa0a = 0x%x\n",
1603 POWER_DETECTION_TH);
1604 write_nic_byte(dev, 0xa0a, POWER_DETECTION_TH);
1607 RT_TRACE(COMP_SCAN, "IG_Restore, restore the initial gain.\n");
1608 bitmask = 0x7f; /* Bit0 ~ Bit6 */
1609 if (dm_digtable.dig_algorithm == DIG_ALGO_BY_FALSE_ALARM)
1611 rtl8192_setBBreg(dev, UFWP, bMaskByte1, 0x8);
1613 rtl8192_setBBreg(dev, rOFDM0_XAAGCCore1, bitmask,
1614 (u32)priv->initgain_backup.xaagccore1);
1615 rtl8192_setBBreg(dev, rOFDM0_XBAGCCore1, bitmask,
1616 (u32)priv->initgain_backup.xbagccore1);
1617 rtl8192_setBBreg(dev, rOFDM0_XCAGCCore1, bitmask,
1618 (u32)priv->initgain_backup.xcagccore1);
1619 rtl8192_setBBreg(dev, rOFDM0_XDAGCCore1, bitmask,
1620 (u32)priv->initgain_backup.xdagccore1);
1621 bitmask = bMaskByte2;
1622 rtl8192_setBBreg(dev, rCCK0_CCA, bitmask,
1623 (u32)priv->initgain_backup.cca);
1625 RT_TRACE(COMP_SCAN, "Scan BBInitialGainRestore 0xc50 is %x\n",
1626 priv->initgain_backup.xaagccore1);
1627 RT_TRACE(COMP_SCAN, "Scan BBInitialGainRestore 0xc58 is %x\n",
1628 priv->initgain_backup.xbagccore1);
1629 RT_TRACE(COMP_SCAN, "Scan BBInitialGainRestore 0xc60 is %x\n",
1630 priv->initgain_backup.xcagccore1);
1631 RT_TRACE(COMP_SCAN, "Scan BBInitialGainRestore 0xc68 is %x\n",
1632 priv->initgain_backup.xdagccore1);
1633 RT_TRACE(COMP_SCAN, "Scan BBInitialGainRestore 0xa0a is %x\n",
1634 priv->initgain_backup.cca);
1636 rtl8192_phy_setTxPower(dev, priv->ieee80211->current_network.channel);
1638 if (dm_digtable.dig_algorithm == DIG_ALGO_BY_FALSE_ALARM)
1640 rtl8192_setBBreg(dev, UFWP, bMaskByte1, 0x1);
1643 RT_TRACE(COMP_SCAN, "Unknown IG Operation.\n");