2 * phy_302_calibration.c
4 * Copyright (C) 2002, 2005 Winbond Electronics Corp.
7 * ---------------------------------------------------------------------------
8 * 0.01.001, 2003-04-16, Kevin created
12 /****************** INCLUDE FILES SECTION ***********************************/
13 #include "phy_calibration.h"
15 #include "wb35reg_f.h"
19 /****************** DEBUG CONSTANT AND MACRO SECTION ************************/
21 /****************** LOCAL CONSTANT AND MACRO SECTION ************************/
23 #define US 1000/* MICROSECOND*/
25 #define AG_CONST 0.6072529350
26 #define FIXED(X) ((s32)((X) * 32768.0))
27 #define DEG2RAD(X) 0.017453 * (X)
29 static const s32 Angles
[] = {
30 FIXED(DEG2RAD(45.0)), FIXED(DEG2RAD(26.565)), FIXED(DEG2RAD(14.0362)),
31 FIXED(DEG2RAD(7.12502)), FIXED(DEG2RAD(3.57633)), FIXED(DEG2RAD(1.78991)),
32 FIXED(DEG2RAD(0.895174)), FIXED(DEG2RAD(0.447614)), FIXED(DEG2RAD(0.223811)),
33 FIXED(DEG2RAD(0.111906)), FIXED(DEG2RAD(0.055953)), FIXED(DEG2RAD(0.027977))
36 /****************** LOCAL FUNCTION DECLARATION SECTION **********************/
39 * void _phy_rf_write_delay(struct hw_data *phw_data);
40 * void phy_init_rf(struct hw_data *phw_data);
43 /****************** FUNCTION DEFINITION SECTION *****************************/
45 s32
_s13_to_s32(u32 data
)
49 val
= (data
& 0x0FFF);
51 if ((data
& BIT(12)) != 0)
57 u32
_s32_to_s13(s32 data
)
63 else if (data
< -4096)
71 /****************************************************************************/
72 s32
_s4_to_s32(u32 data
)
76 val
= (data
& 0x0007);
78 if ((data
& BIT(3)) != 0)
84 u32
_s32_to_s4(s32 data
)
98 /****************************************************************************/
99 s32
_s5_to_s32(u32 data
)
103 val
= (data
& 0x000F);
105 if ((data
& BIT(4)) != 0)
111 u32
_s32_to_s5(s32 data
)
125 /****************************************************************************/
126 s32
_s6_to_s32(u32 data
)
130 val
= (data
& 0x001F);
132 if ((data
& BIT(5)) != 0)
138 u32
_s32_to_s6(s32 data
)
152 /****************************************************************************/
153 s32
_s9_to_s32(u32 data
)
159 if ((data
& BIT(8)) != 0)
165 u32
_s32_to_s9(s32 data
)
171 else if (data
< -256)
179 /****************************************************************************/
190 /****************************************************************************/
192 * The following code is sqare-root function.
193 * sqsum is the input and the output is sq_rt;
194 * The maximum of sqsum = 2^27 -1;
200 int g0
, g1
, g2
, g3
, g4
;
205 g4
= sqsum
/ 100000000;
206 g3
= (sqsum
- g4
*100000000) / 1000000;
207 g2
= (sqsum
- g4
*100000000 - g3
*1000000) / 10000;
208 g1
= (sqsum
- g4
*100000000 - g3
*1000000 - g2
*10000) / 100;
209 g0
= (sqsum
- g4
*100000000 - g3
*1000000 - g2
*10000 - g1
*100);
214 while (((seed
+1)*(step
+1)) <= next
) {
219 sq_rt
= seed
* 10000;
220 next
= (next
-(seed
*step
))*100 + g3
;
223 seed
= 2 * seed
* 10;
224 while (((seed
+1)*(step
+1)) <= next
) {
229 sq_rt
= sq_rt
+ step
* 1000;
230 next
= (next
- seed
* step
) * 100 + g2
;
231 seed
= (seed
+ step
) * 10;
233 while (((seed
+1)*(step
+1)) <= next
) {
238 sq_rt
= sq_rt
+ step
* 100;
239 next
= (next
- seed
* step
) * 100 + g1
;
240 seed
= (seed
+ step
) * 10;
243 while (((seed
+1)*(step
+1)) <= next
) {
248 sq_rt
= sq_rt
+ step
* 10;
249 next
= (next
- seed
* step
) * 100 + g0
;
250 seed
= (seed
+ step
) * 10;
253 while (((seed
+1)*(step
+1)) <= next
) {
258 sq_rt
= sq_rt
+ step
;
263 /****************************************************************************/
264 void _sin_cos(s32 angle
, s32
*sin
, s32
*cos
)
266 s32 X
, Y
, TargetAngle
, CurrAngle
;
269 X
= FIXED(AG_CONST
); /* AG_CONST * cos(0) */
270 Y
= 0; /* AG_CONST * sin(0) */
271 TargetAngle
= abs(angle
);
274 for (Step
= 0; Step
< 12; Step
++) {
277 if (TargetAngle
> CurrAngle
) {
278 NewX
= X
- (Y
>> Step
);
281 CurrAngle
+= Angles
[Step
];
283 NewX
= X
+ (Y
>> Step
);
284 Y
= -(X
>> Step
) + Y
;
286 CurrAngle
-= Angles
[Step
];
299 static unsigned char hal_get_dxx_reg(struct hw_data
*pHwData
, u16 number
, u32
* pValue
)
303 return Wb35Reg_ReadSync(pHwData
, number
, pValue
);
305 #define hw_get_dxx_reg(_A, _B, _C) hal_get_dxx_reg(_A, _B, (u32 *)_C)
307 static unsigned char hal_set_dxx_reg(struct hw_data
*pHwData
, u16 number
, u32 value
)
313 ret
= Wb35Reg_WriteSync(pHwData
, number
, value
);
316 #define hw_set_dxx_reg(_A, _B, _C) hal_set_dxx_reg(_A, _B, (u32)_C)
319 void _reset_rx_cal(struct hw_data
*phw_data
)
323 hw_get_dxx_reg(phw_data
, 0x54, &val
);
325 if (phw_data
->revision
== 0x2002) /* 1st-cut */
330 hw_set_dxx_reg(phw_data
, 0x54, val
);
334 /**************for winbond calibration*********/
338 /**********************************************/
339 void _rxadc_dc_offset_cancellation_winbond(struct hw_data
*phw_data
, u32 frequency
)
346 PHY_DEBUG(("[CAL] -> [1]_rxadc_dc_offset_cancellation()\n"));
347 phy_init_rf(phw_data
);
349 /* set calibration channel */
350 if ((RF_WB_242
== phw_data
->phy_type
) ||
351 (RF_WB_242_1
== phw_data
->phy_type
)) /* 20060619.5 Add */{
352 if ((frequency
>= 2412) && (frequency
<= 2484)) {
353 /* w89rf242 change frequency to 2390Mhz */
354 PHY_DEBUG(("[CAL] W89RF242/11G/Channel=2390Mhz\n"));
355 phy_set_rf_data(phw_data
, 3, (3<<24)|0x025586);
362 /* reset cancel_dc_i[9:5] and cancel_dc_q[4:0] in register DC_Cancel */
363 hw_get_dxx_reg(phw_data
, 0x5C, &val
);
365 hw_set_dxx_reg(phw_data
, 0x5C, val
);
367 /* reset the TX and RX IQ calibration data */
368 hw_set_dxx_reg(phw_data
, 0x3C, 0);
369 hw_set_dxx_reg(phw_data
, 0x54, 0);
371 hw_set_dxx_reg(phw_data
, 0x58, 0x30303030); /* IQ_Alpha Changed */
374 hw_get_dxx_reg(phw_data
, REG_AGC_CTRL3
, ®_agc_ctrl3
);
375 reg_agc_ctrl3
&= ~BIT(2);
376 reg_agc_ctrl3
|= (MASK_LNA_FIX_GAIN
|MASK_AGC_FIX
);
377 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL3
, reg_agc_ctrl3
);
379 hw_get_dxx_reg(phw_data
, REG_AGC_CTRL5
, &val
);
380 val
|= MASK_AGC_FIX_GAIN
;
381 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL5
, val
);
383 /* b. Turn off BB RX */
384 hw_get_dxx_reg(phw_data
, REG_A_ACQ_CTRL
, ®_a_acq_ctrl
);
385 reg_a_acq_ctrl
|= MASK_AMER_OFF_REG
;
386 hw_set_dxx_reg(phw_data
, REG_A_ACQ_CTRL
, reg_a_acq_ctrl
);
388 hw_get_dxx_reg(phw_data
, REG_B_ACQ_CTRL
, ®_b_acq_ctrl
);
389 reg_b_acq_ctrl
|= MASK_BMER_OFF_REG
;
390 hw_set_dxx_reg(phw_data
, REG_B_ACQ_CTRL
, reg_b_acq_ctrl
);
392 /* c. Make sure MAC is in receiving mode
393 * d. Turn ON ADC calibration
394 * - ADC calibrator is triggered by this signal rising from 0 to 1 */
395 hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, &val
);
396 val
&= ~MASK_ADC_DC_CAL_STR
;
397 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, val
);
399 val
|= MASK_ADC_DC_CAL_STR
;
400 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, val
);
402 /* e. The result are shown in "adc_dc_cal_i[8:0] and adc_dc_cal_q[8:0]" */
404 hw_get_dxx_reg(phw_data
, REG_OFFSET_READ
, &val
);
405 PHY_DEBUG(("[CAL] REG_OFFSET_READ = 0x%08X\n", val
));
407 PHY_DEBUG(("[CAL] ** adc_dc_cal_i = %d (0x%04X)\n",
408 _s9_to_s32(val
&0x000001FF), val
&0x000001FF));
409 PHY_DEBUG(("[CAL] ** adc_dc_cal_q = %d (0x%04X)\n",
410 _s9_to_s32((val
&0x0003FE00)>>9), (val
&0x0003FE00)>>9));
413 hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, &val
);
414 val
&= ~MASK_ADC_DC_CAL_STR
;
415 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, val
);
417 /* f. Turn on BB RX */
418 /* hw_get_dxx_reg(phw_data, REG_A_ACQ_CTRL, ®_a_acq_ctrl); */
419 reg_a_acq_ctrl
&= ~MASK_AMER_OFF_REG
;
420 hw_set_dxx_reg(phw_data
, REG_A_ACQ_CTRL
, reg_a_acq_ctrl
);
422 /* hw_get_dxx_reg(phw_data, REG_B_ACQ_CTRL, ®_b_acq_ctrl); */
423 reg_b_acq_ctrl
&= ~MASK_BMER_OFF_REG
;
424 hw_set_dxx_reg(phw_data
, REG_B_ACQ_CTRL
, reg_b_acq_ctrl
);
427 /* hw_get_dxx_reg(phw_data, REG_AGC_CTRL3, &val); */
428 reg_agc_ctrl3
|= BIT(2);
429 reg_agc_ctrl3
&= ~(MASK_LNA_FIX_GAIN
|MASK_AGC_FIX
);
430 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL3
, reg_agc_ctrl3
);
433 /****************************************************************/
434 void _txidac_dc_offset_cancellation_winbond(struct hw_data
*phw_data
)
444 s32 fix_cancel_dc_i
= 0;
448 PHY_DEBUG(("[CAL] -> [2]_txidac_dc_offset_cancellation()\n"));
450 /* a. Set to "TX calibration mode" */
452 /* 0x01 0xEE3FC2 ; 3B8FF ; Calibration (6a). enable TX IQ calibration loop circuits */
453 phy_set_rf_data(phw_data
, 1, (1<<24)|0xEE3FC2);
454 /* 0x0B 0x1905D6 ; 06417 ; Calibration (6b). enable TX I/Q cal loop squaring circuit */
455 phy_set_rf_data(phw_data
, 11, (11<<24)|0x1901D6);
456 /* 0x05 0x24C60A ; 09318 ; Calibration (6c). setting TX-VGA gain: TXGCH=2 & GPK=110 --> to be optimized */
457 phy_set_rf_data(phw_data
, 5, (5<<24)|0x24C48A);
458 /* 0x06 0x06880C ; 01A20 ; Calibration (6d). RXGCH=00; RXGCL=100 000 (RXVGA=32) --> to be optimized */
459 phy_set_rf_data(phw_data
, 6, (6<<24)|0x06890C);
460 /* 0x00 0xFDF1C0 ; 3F7C7 ; Calibration (6e). turn on IQ imbalance/Test mode */
461 phy_set_rf_data(phw_data
, 0, (0<<24)|0xFDF1C0);
463 hw_set_dxx_reg(phw_data
, 0x58, 0x30303030); /* IQ_Alpha Changed */
466 hw_get_dxx_reg(phw_data
, REG_AGC_CTRL3
, ®_agc_ctrl3
);
467 reg_agc_ctrl3
&= ~BIT(2);
468 reg_agc_ctrl3
|= (MASK_LNA_FIX_GAIN
|MASK_AGC_FIX
);
469 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL3
, reg_agc_ctrl3
);
471 hw_get_dxx_reg(phw_data
, REG_AGC_CTRL5
, &val
);
472 val
|= MASK_AGC_FIX_GAIN
;
473 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL5
, val
);
475 /* b. set iqcal_mode[1:0] to 0x2 and set iqcal_tone[3:2] to 0 */
476 hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, ®_mode_ctrl
);
478 PHY_DEBUG(("[CAL] MODE_CTRL (read) = 0x%08X\n", reg_mode_ctrl
));
479 reg_mode_ctrl
&= ~(MASK_IQCAL_TONE_SEL
|MASK_IQCAL_MODE
);
482 /* reg_mode_ctrl |= (MASK_CALIB_START|2); */
485 /* reg_mode_ctrl |= (MASK_CALIB_START|2|(1<<2)); */
488 reg_mode_ctrl
|= (MASK_CALIB_START
|2|(2<<2));
489 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
490 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
492 hw_get_dxx_reg(phw_data
, 0x5C, ®_dc_cancel
);
493 PHY_DEBUG(("[CAL] DC_CANCEL (read) = 0x%08X\n", reg_dc_cancel
));
495 for (loop
= 0; loop
< LOOP_TIMES
; loop
++) {
496 PHY_DEBUG(("[CAL] [%d.] ==================================\n", loop
));
498 /* c. reset cancel_dc_i[9:5] and cancel_dc_q[4:0] in register DC_Cancel */
499 reg_dc_cancel
&= ~(0x03FF);
500 PHY_DEBUG(("[CAL] DC_CANCEL (write) = 0x%08X\n", reg_dc_cancel
));
501 hw_set_dxx_reg(phw_data
, 0x5C, reg_dc_cancel
);
503 hw_get_dxx_reg(phw_data
, REG_CALIB_READ2
, &val
);
504 PHY_DEBUG(("[CAL] CALIB_READ2 = 0x%08X\n", val
));
506 iqcal_image_i
= _s13_to_s32(val
& 0x00001FFF);
507 iqcal_image_q
= _s13_to_s32((val
& 0x03FFE000) >> 13);
508 sqsum
= iqcal_image_i
*iqcal_image_i
+ iqcal_image_q
*iqcal_image_q
;
509 mag_0
= (s32
) _sqrt(sqsum
);
510 PHY_DEBUG(("[CAL] mag_0=%d (iqcal_image_i=%d, iqcal_image_q=%d)\n",
511 mag_0
, iqcal_image_i
, iqcal_image_q
));
514 reg_dc_cancel
|= (1 << CANCEL_DC_I_SHIFT
);
515 PHY_DEBUG(("[CAL] DC_CANCEL (write) = 0x%08X\n", reg_dc_cancel
));
516 hw_set_dxx_reg(phw_data
, 0x5C, reg_dc_cancel
);
518 hw_get_dxx_reg(phw_data
, REG_CALIB_READ2
, &val
);
519 PHY_DEBUG(("[CAL] CALIB_READ2 = 0x%08X\n", val
));
521 iqcal_image_i
= _s13_to_s32(val
& 0x00001FFF);
522 iqcal_image_q
= _s13_to_s32((val
& 0x03FFE000) >> 13);
523 sqsum
= iqcal_image_i
*iqcal_image_i
+ iqcal_image_q
*iqcal_image_q
;
524 mag_1
= (s32
) _sqrt(sqsum
);
525 PHY_DEBUG(("[CAL] mag_1=%d (iqcal_image_i=%d, iqcal_image_q=%d)\n",
526 mag_1
, iqcal_image_i
, iqcal_image_q
));
528 /* e. Calculate the correct DC offset cancellation value for I */
530 fix_cancel_dc_i
= (mag_0
*10000) / (mag_0
*10000 - mag_1
*10000);
533 PHY_DEBUG(("[CAL] ***** mag_0 = mag_1 !!\n"));
537 PHY_DEBUG(("[CAL] ** fix_cancel_dc_i = %d (0x%04X)\n",
538 fix_cancel_dc_i
, _s32_to_s5(fix_cancel_dc_i
)));
540 if ((abs(mag_1
-mag_0
)*6) > mag_0
)
547 reg_dc_cancel
&= ~(0x03FF);
548 reg_dc_cancel
|= (_s32_to_s5(fix_cancel_dc_i
) << CANCEL_DC_I_SHIFT
);
549 hw_set_dxx_reg(phw_data
, 0x5C, reg_dc_cancel
);
550 PHY_DEBUG(("[CAL] DC_CANCEL (write) = 0x%08X\n", reg_dc_cancel
));
553 reg_mode_ctrl
&= ~MASK_CALIB_START
;
554 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
555 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
558 /*****************************************************/
559 void _txqdac_dc_offset_cacellation_winbond(struct hw_data
*phw_data
)
569 s32 fix_cancel_dc_q
= 0;
573 PHY_DEBUG(("[CAL] -> [3]_txqdac_dc_offset_cacellation()\n"));
574 /*0x01 0xEE3FC2 ; 3B8FF ; Calibration (6a). enable TX IQ calibration loop circuits */
575 phy_set_rf_data(phw_data
, 1, (1<<24)|0xEE3FC2);
576 /* 0x0B 0x1905D6 ; 06417 ; Calibration (6b). enable TX I/Q cal loop squaring circuit */
577 phy_set_rf_data(phw_data
, 11, (11<<24)|0x1901D6);
578 /* 0x05 0x24C60A ; 09318 ; Calibration (6c). setting TX-VGA gain: TXGCH=2 & GPK=110 --> to be optimized */
579 phy_set_rf_data(phw_data
, 5, (5<<24)|0x24C48A);
580 /* 0x06 0x06880C ; 01A20 ; Calibration (6d). RXGCH=00; RXGCL=100 000 (RXVGA=32) --> to be optimized */
581 phy_set_rf_data(phw_data
, 6, (6<<24)|0x06890C);
582 /* 0x00 0xFDF1C0 ; 3F7C7 ; Calibration (6e). turn on IQ imbalance/Test mode */
583 phy_set_rf_data(phw_data
, 0, (0<<24)|0xFDF1C0);
585 hw_set_dxx_reg(phw_data
, 0x58, 0x30303030); /* IQ_Alpha Changed */
588 hw_get_dxx_reg(phw_data
, REG_AGC_CTRL3
, ®_agc_ctrl3
);
589 reg_agc_ctrl3
&= ~BIT(2);
590 reg_agc_ctrl3
|= (MASK_LNA_FIX_GAIN
|MASK_AGC_FIX
);
591 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL3
, reg_agc_ctrl3
);
593 hw_get_dxx_reg(phw_data
, REG_AGC_CTRL5
, &val
);
594 val
|= MASK_AGC_FIX_GAIN
;
595 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL5
, val
);
597 /* a. set iqcal_mode[1:0] to 0x3 and set iqcal_tone[3:2] to 0 */
598 hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, ®_mode_ctrl
);
599 PHY_DEBUG(("[CAL] MODE_CTRL (read) = 0x%08X\n", reg_mode_ctrl
));
601 /* reg_mode_ctrl &= ~(MASK_IQCAL_TONE_SEL|MASK_IQCAL_MODE); */
602 reg_mode_ctrl
&= ~(MASK_IQCAL_MODE
);
603 reg_mode_ctrl
|= (MASK_CALIB_START
|3);
604 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
605 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
607 hw_get_dxx_reg(phw_data
, 0x5C, ®_dc_cancel
);
608 PHY_DEBUG(("[CAL] DC_CANCEL (read) = 0x%08X\n", reg_dc_cancel
));
610 for (loop
= 0; loop
< LOOP_TIMES
; loop
++) {
611 PHY_DEBUG(("[CAL] [%d.] ==================================\n", loop
));
613 /* b. reset cancel_dc_q[4:0] in register DC_Cancel */
614 reg_dc_cancel
&= ~(0x001F);
615 PHY_DEBUG(("[CAL] DC_CANCEL (write) = 0x%08X\n", reg_dc_cancel
));
616 hw_set_dxx_reg(phw_data
, 0x5C, reg_dc_cancel
);
618 hw_get_dxx_reg(phw_data
, REG_CALIB_READ2
, &val
);
619 PHY_DEBUG(("[CAL] CALIB_READ2 = 0x%08X\n", val
));
621 iqcal_image_i
= _s13_to_s32(val
& 0x00001FFF);
622 iqcal_image_q
= _s13_to_s32((val
& 0x03FFE000) >> 13);
623 sqsum
= iqcal_image_i
*iqcal_image_i
+ iqcal_image_q
*iqcal_image_q
;
624 mag_0
= _sqrt(sqsum
);
625 PHY_DEBUG(("[CAL] mag_0=%d (iqcal_image_i=%d, iqcal_image_q=%d)\n",
626 mag_0
, iqcal_image_i
, iqcal_image_q
));
629 reg_dc_cancel
|= (1 << CANCEL_DC_Q_SHIFT
);
630 PHY_DEBUG(("[CAL] DC_CANCEL (write) = 0x%08X\n", reg_dc_cancel
));
631 hw_set_dxx_reg(phw_data
, 0x5C, reg_dc_cancel
);
633 hw_get_dxx_reg(phw_data
, REG_CALIB_READ2
, &val
);
634 PHY_DEBUG(("[CAL] CALIB_READ2 = 0x%08X\n", val
));
636 iqcal_image_i
= _s13_to_s32(val
& 0x00001FFF);
637 iqcal_image_q
= _s13_to_s32((val
& 0x03FFE000) >> 13);
638 sqsum
= iqcal_image_i
*iqcal_image_i
+ iqcal_image_q
*iqcal_image_q
;
639 mag_1
= _sqrt(sqsum
);
640 PHY_DEBUG(("[CAL] mag_1=%d (iqcal_image_i=%d, iqcal_image_q=%d)\n",
641 mag_1
, iqcal_image_i
, iqcal_image_q
));
643 /* d. Calculate the correct DC offset cancellation value for I */
645 fix_cancel_dc_q
= (mag_0
*10000) / (mag_0
*10000 - mag_1
*10000);
648 PHY_DEBUG(("[CAL] ***** mag_0 = mag_1 !!\n"));
652 PHY_DEBUG(("[CAL] ** fix_cancel_dc_q = %d (0x%04X)\n",
653 fix_cancel_dc_q
, _s32_to_s5(fix_cancel_dc_q
)));
655 if ((abs(mag_1
-mag_0
)*6) > mag_0
)
662 reg_dc_cancel
&= ~(0x001F);
663 reg_dc_cancel
|= (_s32_to_s5(fix_cancel_dc_q
) << CANCEL_DC_Q_SHIFT
);
664 hw_set_dxx_reg(phw_data
, 0x5C, reg_dc_cancel
);
665 PHY_DEBUG(("[CAL] DC_CANCEL (write) = 0x%08X\n", reg_dc_cancel
));
669 reg_mode_ctrl
&= ~MASK_CALIB_START
;
670 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
671 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
674 /* 20060612.1.a 20060718.1 Modify */
675 u8
_tx_iq_calibration_loop_winbond(struct hw_data
*phw_data
,
698 s32 iqcal_tone_i_avg
, iqcal_tone_q_avg
;
702 PHY_DEBUG(("[CAL] -> _tx_iq_calibration_loop()\n"));
703 PHY_DEBUG(("[CAL] ** a_2_threshold = %d\n", a_2_threshold
));
704 PHY_DEBUG(("[CAL] ** b_2_threshold = %d\n", b_2_threshold
));
708 hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, ®_mode_ctrl
);
709 PHY_DEBUG(("[CAL] MODE_CTRL (read) = 0x%08X\n", reg_mode_ctrl
));
714 PHY_DEBUG(("[CAL] [%d.] <_tx_iq_calibration_loop>\n", (LOOP_TIMES
-loop
+1)));
716 iqcal_tone_i_avg
= 0;
717 iqcal_tone_q_avg
= 0;
718 if (!hw_set_dxx_reg(phw_data
, 0x3C, 0x00)) /* 20060718.1 modify */
720 for (capture_time
= 0; capture_time
< 10; capture_time
++) {
722 * a. Set iqcal_mode[1:0] to 0x2 and set "calib_start" to 0x1 to
723 * enable "IQ alibration Mode II"
725 reg_mode_ctrl
&= ~(MASK_IQCAL_TONE_SEL
|MASK_IQCAL_MODE
);
726 reg_mode_ctrl
&= ~MASK_IQCAL_MODE
;
727 reg_mode_ctrl
|= (MASK_CALIB_START
|0x02);
728 reg_mode_ctrl
|= (MASK_CALIB_START
|0x02|2<<2);
729 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
730 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
733 hw_get_dxx_reg(phw_data
, REG_CALIB_READ1
, &val
);
734 PHY_DEBUG(("[CAL] CALIB_READ1 = 0x%08X\n", val
));
736 iqcal_tone_i0
= _s13_to_s32(val
& 0x00001FFF);
737 iqcal_tone_q0
= _s13_to_s32((val
& 0x03FFE000) >> 13);
738 PHY_DEBUG(("[CAL] ** iqcal_tone_i0=%d, iqcal_tone_q0=%d\n",
739 iqcal_tone_i0
, iqcal_tone_q0
));
741 sqsum
= iqcal_tone_i0
*iqcal_tone_i0
+
742 iqcal_tone_q0
*iqcal_tone_q0
;
743 iq_mag_0_tx
= (s32
) _sqrt(sqsum
);
744 PHY_DEBUG(("[CAL] ** iq_mag_0_tx=%d\n", iq_mag_0_tx
));
746 /* c. Set "calib_start" to 0x0 */
747 reg_mode_ctrl
&= ~MASK_CALIB_START
;
748 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
749 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
752 * d. Set iqcal_mode[1:0] to 0x3 and set "calib_start" to 0x1 to
753 * enable "IQ alibration Mode II"
755 /* hw_get_dxx_reg(phw_data, REG_MODE_CTRL, &val); */
756 hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, ®_mode_ctrl
);
757 reg_mode_ctrl
&= ~MASK_IQCAL_MODE
;
758 reg_mode_ctrl
|= (MASK_CALIB_START
|0x03);
759 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
760 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
763 hw_get_dxx_reg(phw_data
, REG_CALIB_READ1
, &val
);
764 PHY_DEBUG(("[CAL] CALIB_READ1 = 0x%08X\n", val
));
766 iqcal_tone_i
= _s13_to_s32(val
& 0x00001FFF);
767 iqcal_tone_q
= _s13_to_s32((val
& 0x03FFE000) >> 13);
768 PHY_DEBUG(("[CAL] ** iqcal_tone_i = %d, iqcal_tone_q = %d\n",
769 iqcal_tone_i
, iqcal_tone_q
));
770 if (capture_time
== 0)
773 iqcal_tone_i_avg
= (iqcal_tone_i_avg
*(capture_time
-1) + iqcal_tone_i
)/capture_time
;
774 iqcal_tone_q_avg
= (iqcal_tone_q_avg
*(capture_time
-1) + iqcal_tone_q
)/capture_time
;
778 iqcal_tone_i
= iqcal_tone_i_avg
;
779 iqcal_tone_q
= iqcal_tone_q_avg
;
782 rot_i_b
= (iqcal_tone_i
* iqcal_tone_i0
+
783 iqcal_tone_q
* iqcal_tone_q0
) / 1024;
784 rot_q_b
= (iqcal_tone_i
* iqcal_tone_q0
* (-1) +
785 iqcal_tone_q
* iqcal_tone_i0
) / 1024;
786 PHY_DEBUG(("[CAL] ** rot_i_b = %d, rot_q_b = %d\n",
790 divisor
= ((iq_mag_0_tx
* iq_mag_0_tx
* 2)/1024 - rot_i_b
) * 2;
793 PHY_DEBUG(("[CAL] ** <_tx_iq_calibration_loop> ERROR *******\n"));
794 PHY_DEBUG(("[CAL] ** divisor=0 to calculate EPS and THETA !!\n"));
795 PHY_DEBUG(("[CAL] ******************************************\n"));
799 a_2
= (rot_i_b
* 32768) / divisor
;
800 b_2
= (rot_q_b
* (-32768)) / divisor
;
801 PHY_DEBUG(("[CAL] ***** EPSILON/2 = %d\n", a_2
));
802 PHY_DEBUG(("[CAL] ***** THETA/2 = %d\n", b_2
));
804 phw_data
->iq_rsdl_gain_tx_d2
= a_2
;
805 phw_data
->iq_rsdl_phase_tx_d2
= b_2
;
807 /* if ((abs(a_2) < 150) && (abs(b_2) < 100)) */
808 /* if ((abs(a_2) < 200) && (abs(b_2) < 200)) */
809 if ((abs(a_2
) < a_2_threshold
) && (abs(b_2
) < b_2_threshold
)) {
812 PHY_DEBUG(("[CAL] ** <_tx_iq_calibration_loop> *************\n"));
813 PHY_DEBUG(("[CAL] ** VERIFY OK # %d !!\n", verify_count
));
814 PHY_DEBUG(("[CAL] ******************************************\n"));
816 if (verify_count
> 2) {
817 PHY_DEBUG(("[CAL] ** <_tx_iq_calibration_loop> *********\n"));
818 PHY_DEBUG(("[CAL] ** TX_IQ_CALIBRATION (EPS,THETA) OK !!\n"));
819 PHY_DEBUG(("[CAL] **************************************\n"));
827 _sin_cos(b_2
, &sin_b
, &cos_b
);
828 _sin_cos(b_2
*2, &sin_2b
, &cos_2b
);
829 PHY_DEBUG(("[CAL] ** sin(b/2)=%d, cos(b/2)=%d\n", sin_b
, cos_b
));
830 PHY_DEBUG(("[CAL] ** sin(b)=%d, cos(b)=%d\n", sin_2b
, cos_2b
));
833 PHY_DEBUG(("[CAL] ** <_tx_iq_calibration_loop> ERROR *******\n"));
834 PHY_DEBUG(("[CAL] ** cos(b)=0 !!\n"));
835 PHY_DEBUG(("[CAL] ******************************************\n"));
839 /* 1280 * 32768 = 41943040 */
840 temp1
= (41943040/cos_2b
)*cos_b
;
842 /* temp2 = (41943040/cos_2b)*sin_b*(-1); */
843 if (phw_data
->revision
== 0x2002) /* 1st-cut */
844 temp2
= (41943040/cos_2b
)*sin_b
*(-1);
846 temp2
= (41943040*4/cos_2b
)*sin_b
*(-1);
848 tx_cal_flt_b
[0] = _floor(temp1
/(32768+a_2
));
849 tx_cal_flt_b
[1] = _floor(temp2
/(32768+a_2
));
850 tx_cal_flt_b
[2] = _floor(temp2
/(32768-a_2
));
851 tx_cal_flt_b
[3] = _floor(temp1
/(32768-a_2
));
852 PHY_DEBUG(("[CAL] ** tx_cal_flt_b[0] = %d\n", tx_cal_flt_b
[0]));
853 PHY_DEBUG(("[CAL] tx_cal_flt_b[1] = %d\n", tx_cal_flt_b
[1]));
854 PHY_DEBUG(("[CAL] tx_cal_flt_b[2] = %d\n", tx_cal_flt_b
[2]));
855 PHY_DEBUG(("[CAL] tx_cal_flt_b[3] = %d\n", tx_cal_flt_b
[3]));
857 tx_cal
[2] = tx_cal_flt_b
[2];
858 tx_cal
[2] = tx_cal
[2] + 3;
859 tx_cal
[1] = tx_cal
[2];
860 tx_cal
[3] = tx_cal_flt_b
[3] - 128;
861 tx_cal
[0] = -tx_cal
[3] + 1;
863 PHY_DEBUG(("[CAL] tx_cal[0] = %d\n", tx_cal
[0]));
864 PHY_DEBUG(("[CAL] tx_cal[1] = %d\n", tx_cal
[1]));
865 PHY_DEBUG(("[CAL] tx_cal[2] = %d\n", tx_cal
[2]));
866 PHY_DEBUG(("[CAL] tx_cal[3] = %d\n", tx_cal
[3]));
868 /* if ((tx_cal[0] == 0) && (tx_cal[1] == 0) &&
869 (tx_cal[2] == 0) && (tx_cal[3] == 0))
871 /* PHY_DEBUG(("[CAL] ** <_tx_iq_calibration_loop> *************\n"));
872 * PHY_DEBUG(("[CAL] ** TX_IQ_CALIBRATION COMPLETE !!\n"));
873 * PHY_DEBUG(("[CAL] ******************************************\n"));
878 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
879 hw_get_dxx_reg(phw_data
, 0x54, &val
);
880 PHY_DEBUG(("[CAL] ** 0x54 = 0x%08X\n", val
));
881 tx_cal_reg
[0] = _s4_to_s32((val
& 0xF0000000) >> 28);
882 tx_cal_reg
[1] = _s4_to_s32((val
& 0x0F000000) >> 24);
883 tx_cal_reg
[2] = _s4_to_s32((val
& 0x00F00000) >> 20);
884 tx_cal_reg
[3] = _s4_to_s32((val
& 0x000F0000) >> 16);
885 } else /* 2nd-cut */{
886 hw_get_dxx_reg(phw_data
, 0x3C, &val
);
887 PHY_DEBUG(("[CAL] ** 0x3C = 0x%08X\n", val
));
888 tx_cal_reg
[0] = _s5_to_s32((val
& 0xF8000000) >> 27);
889 tx_cal_reg
[1] = _s6_to_s32((val
& 0x07E00000) >> 21);
890 tx_cal_reg
[2] = _s6_to_s32((val
& 0x001F8000) >> 15);
891 tx_cal_reg
[3] = _s5_to_s32((val
& 0x00007C00) >> 10);
895 PHY_DEBUG(("[CAL] ** tx_cal_reg[0] = %d\n", tx_cal_reg
[0]));
896 PHY_DEBUG(("[CAL] tx_cal_reg[1] = %d\n", tx_cal_reg
[1]));
897 PHY_DEBUG(("[CAL] tx_cal_reg[2] = %d\n", tx_cal_reg
[2]));
898 PHY_DEBUG(("[CAL] tx_cal_reg[3] = %d\n", tx_cal_reg
[3]));
900 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
901 if (((tx_cal_reg
[0] == 7) || (tx_cal_reg
[0] == (-8))) &&
902 ((tx_cal_reg
[3] == 7) || (tx_cal_reg
[3] == (-8)))) {
903 PHY_DEBUG(("[CAL] ** <_tx_iq_calibration_loop> *********\n"));
904 PHY_DEBUG(("[CAL] ** TX_IQ_CALIBRATION SATUATION !!\n"));
905 PHY_DEBUG(("[CAL] **************************************\n"));
908 } else /* 2nd-cut */{
909 if (((tx_cal_reg
[0] == 31) || (tx_cal_reg
[0] == (-32))) &&
910 ((tx_cal_reg
[3] == 31) || (tx_cal_reg
[3] == (-32)))) {
911 PHY_DEBUG(("[CAL] ** <_tx_iq_calibration_loop> *********\n"));
912 PHY_DEBUG(("[CAL] ** TX_IQ_CALIBRATION SATUATION !!\n"));
913 PHY_DEBUG(("[CAL] **************************************\n"));
918 tx_cal
[0] = tx_cal
[0] + tx_cal_reg
[0];
919 tx_cal
[1] = tx_cal
[1] + tx_cal_reg
[1];
920 tx_cal
[2] = tx_cal
[2] + tx_cal_reg
[2];
921 tx_cal
[3] = tx_cal
[3] + tx_cal_reg
[3];
922 PHY_DEBUG(("[CAL] ** apply tx_cal[0] = %d\n", tx_cal
[0]));
923 PHY_DEBUG(("[CAL] apply tx_cal[1] = %d\n", tx_cal
[1]));
924 PHY_DEBUG(("[CAL] apply tx_cal[2] = %d\n", tx_cal
[2]));
925 PHY_DEBUG(("[CAL] apply tx_cal[3] = %d\n", tx_cal
[3]));
927 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
929 val
|= ((_s32_to_s4(tx_cal
[0]) << 28)|
930 (_s32_to_s4(tx_cal
[1]) << 24)|
931 (_s32_to_s4(tx_cal
[2]) << 20)|
932 (_s32_to_s4(tx_cal
[3]) << 16));
933 hw_set_dxx_reg(phw_data
, 0x54, val
);
934 PHY_DEBUG(("[CAL] ** CALIB_DATA = 0x%08X\n", val
));
936 } else /* 2nd-cut */{
938 val
|= ((_s32_to_s5(tx_cal
[0]) << 27)|
939 (_s32_to_s6(tx_cal
[1]) << 21)|
940 (_s32_to_s6(tx_cal
[2]) << 15)|
941 (_s32_to_s5(tx_cal
[3]) << 10));
942 hw_set_dxx_reg(phw_data
, 0x3C, val
);
943 PHY_DEBUG(("[CAL] ** TX_IQ_CALIBRATION = 0x%08X\n", val
));
947 /* i. Set "calib_start" to 0x0 */
948 reg_mode_ctrl
&= ~MASK_CALIB_START
;
949 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
950 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
958 void _tx_iq_calibration_winbond(struct hw_data
*phw_data
)
969 PHY_DEBUG(("[CAL] -> [4]_tx_iq_calibration()\n"));
971 /* 0x01 0xEE3FC2 ; 3B8FF ; Calibration (6a). enable TX IQ calibration loop circuits */
972 phy_set_rf_data(phw_data
, 1, (1<<24)|0xEE3FC2);
973 /* 0x0B 0x1905D6 ; 06417 ; Calibration (6b). enable TX I/Q cal loop squaring circuit */
974 phy_set_rf_data(phw_data
, 11, (11<<24)|0x19BDD6); /* 20060612.1.a 0x1905D6); */
975 /* 0x05 0x24C60A ; 09318 ; Calibration (6c). setting TX-VGA gain: TXGCH=2 & GPK=110 --> to be optimized */
976 phy_set_rf_data(phw_data
, 5, (5<<24)|0x24C60A); /* 0x24C60A (high temperature) */
977 /* 0x06 0x06880C ; 01A20 ; Calibration (6d). RXGCH=00; RXGCL=100 000 (RXVGA=32) --> to be optimized */
978 phy_set_rf_data(phw_data
, 6, (6<<24)|0x34880C); /* 20060612.1.a 0x06890C); */
979 /* 0x00 0xFDF1C0 ; 3F7C7 ; Calibration (6e). turn on IQ imbalance/Test mode */
980 phy_set_rf_data(phw_data
, 0, (0<<24)|0xFDF1C0);
981 /* ; [BB-chip]: Calibration (6f).Send test pattern */
982 /* ; [BB-chip]: Calibration (6g). Search RXGCL optimal value */
983 /* ; [BB-chip]: Calibration (6h). Caculate TX-path IQ imbalance and setting TX path IQ compensation table */
984 /* phy_set_rf_data(phw_data, 3, (3<<24)|0x025586); */
986 msleep(30); /* 20060612.1.a 30ms delay. Add the follow 2 lines */
987 /* To adjust TXVGA to fit iq_mag_0 range from 1250 ~ 1750 */
988 adjust_TXVGA_for_iq_mag(phw_data
);
991 hw_get_dxx_reg(phw_data
, REG_AGC_CTRL3
, ®_agc_ctrl3
);
992 reg_agc_ctrl3
&= ~BIT(2);
993 reg_agc_ctrl3
|= (MASK_LNA_FIX_GAIN
|MASK_AGC_FIX
);
994 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL3
, reg_agc_ctrl3
);
996 hw_get_dxx_reg(phw_data
, REG_AGC_CTRL5
, &val
);
997 val
|= MASK_AGC_FIX_GAIN
;
998 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL5
, val
);
1000 result
= _tx_iq_calibration_loop_winbond(phw_data
, 150, 100);
1003 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
1004 hw_get_dxx_reg(phw_data
, 0x54, &val
);
1006 hw_set_dxx_reg(phw_data
, 0x54, val
);
1007 } else /* 2nd-cut*/{
1008 hw_get_dxx_reg(phw_data
, 0x3C, &val
);
1010 hw_set_dxx_reg(phw_data
, 0x3C, val
);
1013 result
= _tx_iq_calibration_loop_winbond(phw_data
, 300, 200);
1016 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
1017 hw_get_dxx_reg(phw_data
, 0x54, &val
);
1019 hw_set_dxx_reg(phw_data
, 0x54, val
);
1020 } else /* 2nd-cut*/{
1021 hw_get_dxx_reg(phw_data
, 0x3C, &val
);
1023 hw_set_dxx_reg(phw_data
, 0x3C, val
);
1026 result
= _tx_iq_calibration_loop_winbond(phw_data
, 500, 400);
1028 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
1029 hw_get_dxx_reg(phw_data
, 0x54, &val
);
1031 hw_set_dxx_reg(phw_data
, 0x54, val
);
1032 } else /* 2nd-cut */{
1033 hw_get_dxx_reg(phw_data
, 0x3C, &val
);
1035 hw_set_dxx_reg(phw_data
, 0x3C, val
);
1039 result
= _tx_iq_calibration_loop_winbond(phw_data
, 700, 500);
1042 PHY_DEBUG(("[CAL] ** <_tx_iq_calibration> **************\n"));
1043 PHY_DEBUG(("[CAL] ** TX_IQ_CALIBRATION FAILURE !!\n"));
1044 PHY_DEBUG(("[CAL] **************************************\n"));
1046 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
1047 hw_get_dxx_reg(phw_data
, 0x54, &val
);
1049 hw_set_dxx_reg(phw_data
, 0x54, val
);
1050 } else /* 2nd-cut */{
1051 hw_get_dxx_reg(phw_data
, 0x3C, &val
);
1053 hw_set_dxx_reg(phw_data
, 0x3C, val
);
1060 /* i. Set "calib_start" to 0x0 */
1061 hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, ®_mode_ctrl
);
1062 reg_mode_ctrl
&= ~MASK_CALIB_START
;
1063 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
1064 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
1067 /* hw_get_dxx_reg(phw_data, REG_AGC_CTRL3, &val); */
1068 reg_agc_ctrl3
|= BIT(2);
1069 reg_agc_ctrl3
&= ~(MASK_LNA_FIX_GAIN
|MASK_AGC_FIX
);
1070 hw_set_dxx_reg(phw_data
, REG_AGC_CTRL3
, reg_agc_ctrl3
);
1073 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
1074 hw_get_dxx_reg(phw_data
, 0x54, &val
);
1075 PHY_DEBUG(("[CAL] ** 0x54 = 0x%08X\n", val
));
1076 tx_cal_reg
[0] = _s4_to_s32((val
& 0xF0000000) >> 28);
1077 tx_cal_reg
[1] = _s4_to_s32((val
& 0x0F000000) >> 24);
1078 tx_cal_reg
[2] = _s4_to_s32((val
& 0x00F00000) >> 20);
1079 tx_cal_reg
[3] = _s4_to_s32((val
& 0x000F0000) >> 16);
1080 } else /* 2nd-cut */ {
1081 hw_get_dxx_reg(phw_data
, 0x3C, &val
);
1082 PHY_DEBUG(("[CAL] ** 0x3C = 0x%08X\n", val
));
1083 tx_cal_reg
[0] = _s5_to_s32((val
& 0xF8000000) >> 27);
1084 tx_cal_reg
[1] = _s6_to_s32((val
& 0x07E00000) >> 21);
1085 tx_cal_reg
[2] = _s6_to_s32((val
& 0x001F8000) >> 15);
1086 tx_cal_reg
[3] = _s5_to_s32((val
& 0x00007C00) >> 10);
1090 PHY_DEBUG(("[CAL] ** tx_cal_reg[0] = %d\n", tx_cal_reg
[0]));
1091 PHY_DEBUG(("[CAL] tx_cal_reg[1] = %d\n", tx_cal_reg
[1]));
1092 PHY_DEBUG(("[CAL] tx_cal_reg[2] = %d\n", tx_cal_reg
[2]));
1093 PHY_DEBUG(("[CAL] tx_cal_reg[3] = %d\n", tx_cal_reg
[3]));
1099 * RF Control Override
1103 /*****************************************************/
1104 u8
_rx_iq_calibration_loop_winbond(struct hw_data
*phw_data
, u16 factor
, u32 frequency
)
1115 s32 rx_cal_flt_b
[4];
1129 s32 iqcal_tone_i_avg
, iqcal_tone_q_avg
;
1130 s32 iqcal_image_i_avg
, iqcal_image_q_avg
;
1133 PHY_DEBUG(("[CAL] -> [5]_rx_iq_calibration_loop()\n"));
1134 PHY_DEBUG(("[CAL] ** factor = %d\n", factor
));
1136 hw_set_dxx_reg(phw_data
, 0x58, 0x44444444); /* IQ_Alpha */
1140 hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, ®_mode_ctrl
);
1141 PHY_DEBUG(("[CAL] MODE_CTRL (read) = 0x%08X\n", reg_mode_ctrl
));
1145 /* for (loop = 0; loop < 1; loop++) */
1146 /* for (loop = 0; loop < LOOP_TIMES; loop++) */
1149 PHY_DEBUG(("[CAL] [%d.] <_rx_iq_calibration_loop>\n", (LOOP_TIMES
-loop
+1)));
1150 iqcal_tone_i_avg
= 0;
1151 iqcal_tone_q_avg
= 0;
1152 iqcal_image_i_avg
= 0;
1153 iqcal_image_q_avg
= 0;
1156 for (capture_time
= 0; capture_time
< 10; capture_time
++) {
1157 /* i. Set "calib_start" to 0x0 */
1158 reg_mode_ctrl
&= ~MASK_CALIB_START
;
1159 if (!hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
))/*20060718.1 modify */
1161 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
1163 reg_mode_ctrl
&= ~MASK_IQCAL_MODE
;
1164 reg_mode_ctrl
|= (MASK_CALIB_START
|0x1);
1165 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
1166 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
1169 hw_get_dxx_reg(phw_data
, REG_CALIB_READ1
, &val
);
1170 PHY_DEBUG(("[CAL] CALIB_READ1 = 0x%08X\n", val
));
1172 iqcal_tone_i
= _s13_to_s32(val
& 0x00001FFF);
1173 iqcal_tone_q
= _s13_to_s32((val
& 0x03FFE000) >> 13);
1174 PHY_DEBUG(("[CAL] ** iqcal_tone_i = %d, iqcal_tone_q = %d\n",
1175 iqcal_tone_i
, iqcal_tone_q
));
1177 hw_get_dxx_reg(phw_data
, REG_CALIB_READ2
, &val
);
1178 PHY_DEBUG(("[CAL] CALIB_READ2 = 0x%08X\n", val
));
1180 iqcal_image_i
= _s13_to_s32(val
& 0x00001FFF);
1181 iqcal_image_q
= _s13_to_s32((val
& 0x03FFE000) >> 13);
1182 PHY_DEBUG(("[CAL] ** iqcal_image_i = %d, iqcal_image_q = %d\n",
1183 iqcal_image_i
, iqcal_image_q
));
1184 if (capture_time
== 0)
1187 iqcal_image_i_avg
= (iqcal_image_i_avg
*(capture_time
-1) + iqcal_image_i
)/capture_time
;
1188 iqcal_image_q_avg
= (iqcal_image_q_avg
*(capture_time
-1) + iqcal_image_q
)/capture_time
;
1189 iqcal_tone_i_avg
= (iqcal_tone_i_avg
*(capture_time
-1) + iqcal_tone_i
)/capture_time
;
1190 iqcal_tone_q_avg
= (iqcal_tone_q_avg
*(capture_time
-1) + iqcal_tone_q
)/capture_time
;
1195 iqcal_image_i
= iqcal_image_i_avg
;
1196 iqcal_image_q
= iqcal_image_q_avg
;
1197 iqcal_tone_i
= iqcal_tone_i_avg
;
1198 iqcal_tone_q
= iqcal_tone_q_avg
;
1201 rot_tone_i_b
= (iqcal_tone_i
* iqcal_tone_i
+
1202 iqcal_tone_q
* iqcal_tone_q
) / 1024;
1203 rot_tone_q_b
= (iqcal_tone_i
* iqcal_tone_q
* (-1) +
1204 iqcal_tone_q
* iqcal_tone_i
) / 1024;
1205 rot_image_i_b
= (iqcal_image_i
* iqcal_tone_i
-
1206 iqcal_image_q
* iqcal_tone_q
) / 1024;
1207 rot_image_q_b
= (iqcal_image_i
* iqcal_tone_q
+
1208 iqcal_image_q
* iqcal_tone_i
) / 1024;
1210 PHY_DEBUG(("[CAL] ** rot_tone_i_b = %d\n", rot_tone_i_b
));
1211 PHY_DEBUG(("[CAL] ** rot_tone_q_b = %d\n", rot_tone_q_b
));
1212 PHY_DEBUG(("[CAL] ** rot_image_i_b = %d\n", rot_image_i_b
));
1213 PHY_DEBUG(("[CAL] ** rot_image_q_b = %d\n", rot_image_q_b
));
1216 if (rot_tone_i_b
== 0) {
1217 PHY_DEBUG(("[CAL] ** <_rx_iq_calibration_loop> ERROR *******\n"));
1218 PHY_DEBUG(("[CAL] ** rot_tone_i_b=0 to calculate EPS and THETA !!\n"));
1219 PHY_DEBUG(("[CAL] ******************************************\n"));
1223 a_2
= (rot_image_i_b
* 32768) / rot_tone_i_b
-
1224 phw_data
->iq_rsdl_gain_tx_d2
;
1225 b_2
= (rot_image_q_b
* 32768) / rot_tone_i_b
-
1226 phw_data
->iq_rsdl_phase_tx_d2
;
1228 PHY_DEBUG(("[CAL] ** iq_rsdl_gain_tx_d2 = %d\n", phw_data
->iq_rsdl_gain_tx_d2
));
1229 PHY_DEBUG(("[CAL] ** iq_rsdl_phase_tx_d2= %d\n", phw_data
->iq_rsdl_phase_tx_d2
));
1230 PHY_DEBUG(("[CAL] ***** EPSILON/2 = %d\n", a_2
));
1231 PHY_DEBUG(("[CAL] ***** THETA/2 = %d\n", b_2
));
1233 _sin_cos(b_2
, &sin_b
, &cos_b
);
1234 _sin_cos(b_2
*2, &sin_2b
, &cos_2b
);
1235 PHY_DEBUG(("[CAL] ** sin(b/2)=%d, cos(b/2)=%d\n", sin_b
, cos_b
));
1236 PHY_DEBUG(("[CAL] ** sin(b)=%d, cos(b)=%d\n", sin_2b
, cos_2b
));
1239 PHY_DEBUG(("[CAL] ** <_rx_iq_calibration_loop> ERROR *******\n"));
1240 PHY_DEBUG(("[CAL] ** cos(b)=0 !!\n"));
1241 PHY_DEBUG(("[CAL] ******************************************\n"));
1245 /* 1280 * 32768 = 41943040 */
1246 temp1
= (41943040/cos_2b
)*cos_b
;
1248 /* temp2 = (41943040/cos_2b)*sin_b*(-1); */
1249 if (phw_data
->revision
== 0x2002)/* 1st-cut */
1250 temp2
= (41943040/cos_2b
)*sin_b
*(-1);
1252 temp2
= (41943040*4/cos_2b
)*sin_b
*(-1);
1254 rx_cal_flt_b
[0] = _floor(temp1
/(32768+a_2
));
1255 rx_cal_flt_b
[1] = _floor(temp2
/(32768-a_2
));
1256 rx_cal_flt_b
[2] = _floor(temp2
/(32768+a_2
));
1257 rx_cal_flt_b
[3] = _floor(temp1
/(32768-a_2
));
1259 PHY_DEBUG(("[CAL] ** rx_cal_flt_b[0] = %d\n", rx_cal_flt_b
[0]));
1260 PHY_DEBUG(("[CAL] rx_cal_flt_b[1] = %d\n", rx_cal_flt_b
[1]));
1261 PHY_DEBUG(("[CAL] rx_cal_flt_b[2] = %d\n", rx_cal_flt_b
[2]));
1262 PHY_DEBUG(("[CAL] rx_cal_flt_b[3] = %d\n", rx_cal_flt_b
[3]));
1264 rx_cal
[0] = rx_cal_flt_b
[0] - 128;
1265 rx_cal
[1] = rx_cal_flt_b
[1];
1266 rx_cal
[2] = rx_cal_flt_b
[2];
1267 rx_cal
[3] = rx_cal_flt_b
[3] - 128;
1268 PHY_DEBUG(("[CAL] ** rx_cal[0] = %d\n", rx_cal
[0]));
1269 PHY_DEBUG(("[CAL] rx_cal[1] = %d\n", rx_cal
[1]));
1270 PHY_DEBUG(("[CAL] rx_cal[2] = %d\n", rx_cal
[2]));
1271 PHY_DEBUG(("[CAL] rx_cal[3] = %d\n", rx_cal
[3]));
1274 pwr_tone
= (iqcal_tone_i
*iqcal_tone_i
+ iqcal_tone_q
*iqcal_tone_q
);
1275 pwr_image
= (iqcal_image_i
*iqcal_image_i
+ iqcal_image_q
*iqcal_image_q
)*factor
;
1277 PHY_DEBUG(("[CAL] ** pwr_tone = %d\n", pwr_tone
));
1278 PHY_DEBUG(("[CAL] ** pwr_image = %d\n", pwr_image
));
1280 if (pwr_tone
> pwr_image
) {
1283 PHY_DEBUG(("[CAL] ** <_rx_iq_calibration_loop> *************\n"));
1284 PHY_DEBUG(("[CAL] ** VERIFY OK # %d !!\n", verify_count
));
1285 PHY_DEBUG(("[CAL] ******************************************\n"));
1287 if (verify_count
> 2) {
1288 PHY_DEBUG(("[CAL] ** <_rx_iq_calibration_loop> *********\n"));
1289 PHY_DEBUG(("[CAL] ** RX_IQ_CALIBRATION OK !!\n"));
1290 PHY_DEBUG(("[CAL] **************************************\n"));
1297 hw_get_dxx_reg(phw_data
, 0x54, &val
);
1298 PHY_DEBUG(("[CAL] ** 0x54 = 0x%08X\n", val
));
1300 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
1301 rx_cal_reg
[0] = _s4_to_s32((val
& 0x0000F000) >> 12);
1302 rx_cal_reg
[1] = _s4_to_s32((val
& 0x00000F00) >> 8);
1303 rx_cal_reg
[2] = _s4_to_s32((val
& 0x000000F0) >> 4);
1304 rx_cal_reg
[3] = _s4_to_s32((val
& 0x0000000F));
1305 } else /* 2nd-cut */{
1306 rx_cal_reg
[0] = _s5_to_s32((val
& 0xF8000000) >> 27);
1307 rx_cal_reg
[1] = _s6_to_s32((val
& 0x07E00000) >> 21);
1308 rx_cal_reg
[2] = _s6_to_s32((val
& 0x001F8000) >> 15);
1309 rx_cal_reg
[3] = _s5_to_s32((val
& 0x00007C00) >> 10);
1312 PHY_DEBUG(("[CAL] ** rx_cal_reg[0] = %d\n", rx_cal_reg
[0]));
1313 PHY_DEBUG(("[CAL] rx_cal_reg[1] = %d\n", rx_cal_reg
[1]));
1314 PHY_DEBUG(("[CAL] rx_cal_reg[2] = %d\n", rx_cal_reg
[2]));
1315 PHY_DEBUG(("[CAL] rx_cal_reg[3] = %d\n", rx_cal_reg
[3]));
1317 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
1318 if (((rx_cal_reg
[0] == 7) || (rx_cal_reg
[0] == (-8))) &&
1319 ((rx_cal_reg
[3] == 7) || (rx_cal_reg
[3] == (-8)))) {
1320 PHY_DEBUG(("[CAL] ** <_rx_iq_calibration_loop> *********\n"));
1321 PHY_DEBUG(("[CAL] ** RX_IQ_CALIBRATION SATUATION !!\n"));
1322 PHY_DEBUG(("[CAL] **************************************\n"));
1325 } else /* 2nd-cut */{
1326 if (((rx_cal_reg
[0] == 31) || (rx_cal_reg
[0] == (-32))) &&
1327 ((rx_cal_reg
[3] == 31) || (rx_cal_reg
[3] == (-32)))) {
1328 PHY_DEBUG(("[CAL] ** <_rx_iq_calibration_loop> *********\n"));
1329 PHY_DEBUG(("[CAL] ** RX_IQ_CALIBRATION SATUATION !!\n"));
1330 PHY_DEBUG(("[CAL] **************************************\n"));
1335 rx_cal
[0] = rx_cal
[0] + rx_cal_reg
[0];
1336 rx_cal
[1] = rx_cal
[1] + rx_cal_reg
[1];
1337 rx_cal
[2] = rx_cal
[2] + rx_cal_reg
[2];
1338 rx_cal
[3] = rx_cal
[3] + rx_cal_reg
[3];
1339 PHY_DEBUG(("[CAL] ** apply rx_cal[0] = %d\n", rx_cal
[0]));
1340 PHY_DEBUG(("[CAL] apply rx_cal[1] = %d\n", rx_cal
[1]));
1341 PHY_DEBUG(("[CAL] apply rx_cal[2] = %d\n", rx_cal
[2]));
1342 PHY_DEBUG(("[CAL] apply rx_cal[3] = %d\n", rx_cal
[3]));
1344 hw_get_dxx_reg(phw_data
, 0x54, &val
);
1345 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
1347 val
|= ((_s32_to_s4(rx_cal
[0]) << 12)|
1348 (_s32_to_s4(rx_cal
[1]) << 8)|
1349 (_s32_to_s4(rx_cal
[2]) << 4)|
1350 (_s32_to_s4(rx_cal
[3])));
1351 hw_set_dxx_reg(phw_data
, 0x54, val
);
1352 } else /* 2nd-cut */{
1354 val
|= ((_s32_to_s5(rx_cal
[0]) << 27)|
1355 (_s32_to_s6(rx_cal
[1]) << 21)|
1356 (_s32_to_s6(rx_cal
[2]) << 15)|
1357 (_s32_to_s5(rx_cal
[3]) << 10));
1358 hw_set_dxx_reg(phw_data
, 0x54, val
);
1363 PHY_DEBUG(("[CAL] ** CALIB_DATA = 0x%08X\n", val
));
1371 /*************************************************/
1373 /***************************************************************/
1374 void _rx_iq_calibration_winbond(struct hw_data
*phw_data
, u32 frequency
)
1376 /* figo 20050523 marked this flag for can't compile for relesase */
1384 PHY_DEBUG(("[CAL] -> [5]_rx_iq_calibration()\n"));
1385 /* a. Set RFIC to "RX calibration mode" */
1386 /* ; ----- Calibration (7). RX path IQ imbalance calibration loop */
1387 /* 0x01 0xFFBFC2 ; 3FEFF ; Calibration (7a). enable RX IQ calibration loop circuits */
1388 phy_set_rf_data(phw_data
, 1, (1<<24)|0xEFBFC2);
1389 /* 0x0B 0x1A01D6 ; 06817 ; Calibration (7b). enable RX I/Q cal loop SW1 circuits */
1390 phy_set_rf_data(phw_data
, 11, (11<<24)|0x1A05D6);
1391 /* 0x05 0x24848A ; 09212 ; Calibration (7c). setting TX-VGA gain (TXGCH) to 2 --> to be optimized */
1392 phy_set_rf_data(phw_data
, 5, (5<<24) | phw_data
->txvga_setting_for_cal
);
1393 /* 0x06 0x06840C ; 01A10 ; Calibration (7d). RXGCH=00; RXGCL=010 000 (RXVGA) --> to be optimized */
1394 phy_set_rf_data(phw_data
, 6, (6<<24)|0x06834C);
1395 /* 0x00 0xFFF1C0 ; 3F7C7 ; Calibration (7e). turn on IQ imbalance/Test mode */
1396 phy_set_rf_data(phw_data
, 0, (0<<24)|0xFFF1C0);
1398 /* ; [BB-chip]: Calibration (7f). Send test pattern */
1399 /* ; [BB-chip]: Calibration (7g). Search RXGCL optimal value */
1400 /* ; [BB-chip]: Calibration (7h). Caculate RX-path IQ imbalance and setting RX path IQ compensation table */
1402 result
= _rx_iq_calibration_loop_winbond(phw_data
, 12589, frequency
);
1405 _reset_rx_cal(phw_data
);
1406 result
= _rx_iq_calibration_loop_winbond(phw_data
, 7943, frequency
);
1409 _reset_rx_cal(phw_data
);
1410 result
= _rx_iq_calibration_loop_winbond(phw_data
, 5011, frequency
);
1413 PHY_DEBUG(("[CAL] ** <_rx_iq_calibration> **************\n"));
1414 PHY_DEBUG(("[CAL] ** RX_IQ_CALIBRATION FAILURE !!\n"));
1415 PHY_DEBUG(("[CAL] **************************************\n"));
1416 _reset_rx_cal(phw_data
);
1422 hw_get_dxx_reg(phw_data
, 0x54, &val
);
1423 PHY_DEBUG(("[CAL] ** 0x54 = 0x%08X\n", val
));
1425 if (phw_data
->revision
== 0x2002) /* 1st-cut */{
1426 rx_cal_reg
[0] = _s4_to_s32((val
& 0x0000F000) >> 12);
1427 rx_cal_reg
[1] = _s4_to_s32((val
& 0x00000F00) >> 8);
1428 rx_cal_reg
[2] = _s4_to_s32((val
& 0x000000F0) >> 4);
1429 rx_cal_reg
[3] = _s4_to_s32((val
& 0x0000000F));
1430 } else /* 2nd-cut */{
1431 rx_cal_reg
[0] = _s5_to_s32((val
& 0xF8000000) >> 27);
1432 rx_cal_reg
[1] = _s6_to_s32((val
& 0x07E00000) >> 21);
1433 rx_cal_reg
[2] = _s6_to_s32((val
& 0x001F8000) >> 15);
1434 rx_cal_reg
[3] = _s5_to_s32((val
& 0x00007C00) >> 10);
1437 PHY_DEBUG(("[CAL] ** rx_cal_reg[0] = %d\n", rx_cal_reg
[0]));
1438 PHY_DEBUG(("[CAL] rx_cal_reg[1] = %d\n", rx_cal_reg
[1]));
1439 PHY_DEBUG(("[CAL] rx_cal_reg[2] = %d\n", rx_cal_reg
[2]));
1440 PHY_DEBUG(("[CAL] rx_cal_reg[3] = %d\n", rx_cal_reg
[3]));
1445 /*******************************************************/
1446 void phy_calibration_winbond(struct hw_data
*phw_data
, u32 frequency
)
1451 PHY_DEBUG(("[CAL] -> phy_calibration_winbond()\n"));
1453 hw_get_dxx_reg(phw_data
, 0x58, &iq_alpha
);
1455 _rxadc_dc_offset_cancellation_winbond(phw_data
, frequency
);
1456 /* _txidac_dc_offset_cancellation_winbond(phw_data); */
1457 /* _txqdac_dc_offset_cacellation_winbond(phw_data); */
1459 _tx_iq_calibration_winbond(phw_data
);
1460 _rx_iq_calibration_winbond(phw_data
, frequency
);
1462 /*********************************************************************/
1463 hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, ®_mode_ctrl
);
1464 reg_mode_ctrl
&= ~(MASK_IQCAL_TONE_SEL
|MASK_IQCAL_MODE
|MASK_CALIB_START
); /* set when finish */
1465 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
1466 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
1468 /* i. Set RFIC to "Normal mode" */
1469 hw_set_dxx_reg(phw_data
, 0x58, iq_alpha
);
1471 /*********************************************************************/
1472 phy_init_rf(phw_data
);
1476 /******************/
1477 void phy_set_rf_data(struct hw_data
*pHwData
, u32 index
, u32 value
)
1481 switch (pHwData
->phy_type
) {
1483 case RF_MAXIM_V1
: /* 11g Winbond 2nd BB(with Phy board (v1) + Maxim 331) */
1484 ltmp
= (1 << 31) | (0 << 30) | (18 << 24) | BitReverse(value
, 18);
1488 ltmp
= (1 << 31) | (0 << 30) | (18 << 24) | BitReverse(value
, 18);
1492 ltmp
= (1 << 31) | (0 << 30) | (18 << 24) | BitReverse(value
, 18);
1496 ltmp
= (1 << 31) | (0 << 30) | (18 << 24) | BitReverse(value
, 18);
1499 case RF_AIROHA_2230
:
1500 case RF_AIROHA_2230S
: /* 20060420 Add this */
1501 ltmp
= (1 << 31) | (0 << 30) | (20 << 24) | BitReverse(value
, 20);
1504 case RF_AIROHA_7230
:
1505 ltmp
= (1 << 31) | (0 << 30) | (24 << 24) | (value
&0xffffff);
1509 case RF_WB_242_1
:/* 20060619.5 Add */
1510 ltmp
= (1 << 31) | (0 << 30) | (24 << 24) | BitReverse(value
, 24);
1514 Wb35Reg_WriteSync(pHwData
, 0x0864, ltmp
);
1517 /* 20060717 modify as Bruce's mail */
1518 unsigned char adjust_TXVGA_for_iq_mag(struct hw_data
*phw_data
)
1532 for (init_txvga
= 0; init_txvga
< 10; init_txvga
++) {
1533 current_txvga
= (0x24C40A|(init_txvga
<<6));
1534 phy_set_rf_data(phw_data
, 5, ((5<<24)|current_txvga
));
1535 phw_data
->txvga_setting_for_cal
= current_txvga
;
1537 msleep(30);/* 20060612.1.a */
1539 if (!hw_get_dxx_reg(phw_data
, REG_MODE_CTRL
, ®_mode_ctrl
))/* 20060718.1 modify */
1542 PHY_DEBUG(("[CAL] MODE_CTRL (read) = 0x%08X\n", reg_mode_ctrl
));
1545 * a. Set iqcal_mode[1:0] to 0x2 and set "calib_start" to 0x1 to
1546 * enable "IQ alibration Mode II"
1548 reg_mode_ctrl
&= ~(MASK_IQCAL_TONE_SEL
|MASK_IQCAL_MODE
);
1549 reg_mode_ctrl
&= ~MASK_IQCAL_MODE
;
1550 reg_mode_ctrl
|= (MASK_CALIB_START
|0x02);
1551 reg_mode_ctrl
|= (MASK_CALIB_START
|0x02|2<<2);
1552 hw_set_dxx_reg(phw_data
, REG_MODE_CTRL
, reg_mode_ctrl
);
1553 PHY_DEBUG(("[CAL] MODE_CTRL (write) = 0x%08X\n", reg_mode_ctrl
));
1555 udelay(1);/* 20060612.1.a */
1557 udelay(300);/* 20060612.1.a */
1560 hw_get_dxx_reg(phw_data
, REG_CALIB_READ1
, &val
);
1562 PHY_DEBUG(("[CAL] CALIB_READ1 = 0x%08X\n", val
));
1563 udelay(300);/* 20060612.1.a */
1565 iqcal_tone_i0
= _s13_to_s32(val
& 0x00001FFF);
1566 iqcal_tone_q0
= _s13_to_s32((val
& 0x03FFE000) >> 13);
1567 PHY_DEBUG(("[CAL] ** iqcal_tone_i0=%d, iqcal_tone_q0=%d\n",
1568 iqcal_tone_i0
, iqcal_tone_q0
));
1570 sqsum
= iqcal_tone_i0
*iqcal_tone_i0
+ iqcal_tone_q0
*iqcal_tone_q0
;
1571 iq_mag_0_tx
= (s32
) _sqrt(sqsum
);
1572 PHY_DEBUG(("[CAL] ** auto_adjust_txvga_for_iq_mag_0_tx=%d\n", iq_mag_0_tx
));
1574 if (iq_mag_0_tx
>= 700 && iq_mag_0_tx
<= 1750)
1576 else if (iq_mag_0_tx
> 1750) {
1584 if (iq_mag_0_tx
>= 700 && iq_mag_0_tx
<= 1750)