aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Randolf <br1@einfach.org>2010-05-18 21:31:00 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-06-02 16:13:22 -0400
commit9e04a7eb1fdf37bc8bc0d0f59e5fb737926f0152 (patch)
tree82b20fba6b69b57a848fd83e9d5c3761f9ca679e
parentac55952633c11761187d233619f0d1048154a8a5 (diff)
ath5k: move noise floor calibration into tasklet
Seperate noise floor calibration from other PHY calibration and move it to the tasklet. This is the first step to more separation of different calibrations. Also move out ath5k_hw_request_rfgain_probe(ah) so we have one clean function for I/Q calibration on 5111x parts. Signed-off-by: Bruno Randolf <br1@einfach.org> Acked-by: Nick Kossifidis <mickflemm@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/ath/ath5k/ath5k.h1
-rw-r--r--drivers/net/wireless/ath/ath5k/base.c1
-rw-r--r--drivers/net/wireless/ath/ath5k/phy.c33
3 files changed, 12 insertions, 23 deletions
diff --git a/drivers/net/wireless/ath/ath5k/ath5k.h b/drivers/net/wireless/ath/ath5k/ath5k.h
index 2785946f659a..131e8b36feaf 100644
--- a/drivers/net/wireless/ath/ath5k/ath5k.h
+++ b/drivers/net/wireless/ath/ath5k/ath5k.h
@@ -1270,6 +1270,7 @@ int ath5k_hw_channel(struct ath5k_hw *ah, struct ieee80211_channel *channel);
1270void ath5k_hw_init_nfcal_hist(struct ath5k_hw *ah); 1270void ath5k_hw_init_nfcal_hist(struct ath5k_hw *ah);
1271int ath5k_hw_phy_calibrate(struct ath5k_hw *ah, 1271int ath5k_hw_phy_calibrate(struct ath5k_hw *ah,
1272 struct ieee80211_channel *channel); 1272 struct ieee80211_channel *channel);
1273void ath5k_hw_update_noise_floor(struct ath5k_hw *ah);
1273/* Spur mitigation */ 1274/* Spur mitigation */
1274bool ath5k_hw_chan_has_spur_noise(struct ath5k_hw *ah, 1275bool ath5k_hw_chan_has_spur_noise(struct ath5k_hw *ah,
1275 struct ieee80211_channel *channel); 1276 struct ieee80211_channel *channel);
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c
index 59268d18305a..3d854f0853ac 100644
--- a/drivers/net/wireless/ath/ath5k/base.c
+++ b/drivers/net/wireless/ath/ath5k/base.c
@@ -2807,6 +2807,7 @@ ath5k_tasklet_calibrate(unsigned long data)
2807 ieee80211_frequency_to_channel( 2807 ieee80211_frequency_to_channel(
2808 sc->curchan->center_freq)); 2808 sc->curchan->center_freq));
2809 2809
2810 ath5k_hw_update_noise_floor(ah);
2810 /* Wake queues */ 2811 /* Wake queues */
2811 ieee80211_wake_queues(sc->hw); 2812 ieee80211_wake_queues(sc->hw);
2812 2813
diff --git a/drivers/net/wireless/ath/ath5k/phy.c b/drivers/net/wireless/ath/ath5k/phy.c
index 1b81c4778800..2b298ea869d6 100644
--- a/drivers/net/wireless/ath/ath5k/phy.c
+++ b/drivers/net/wireless/ath/ath5k/phy.c
@@ -1167,7 +1167,7 @@ static s16 ath5k_hw_get_median_noise_floor(struct ath5k_hw *ah)
1167 * The median of the values in the history is then loaded into the 1167 * The median of the values in the history is then loaded into the
1168 * hardware for its own use for RSSI and CCA measurements. 1168 * hardware for its own use for RSSI and CCA measurements.
1169 */ 1169 */
1170static void ath5k_hw_update_noise_floor(struct ath5k_hw *ah) 1170void ath5k_hw_update_noise_floor(struct ath5k_hw *ah)
1171{ 1171{
1172 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; 1172 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
1173 u32 val; 1173 u32 val;
@@ -1248,7 +1248,6 @@ static void ath5k_hw_update_noise_floor(struct ath5k_hw *ah)
1248/* 1248/*
1249 * Perform a PHY calibration on RF5110 1249 * Perform a PHY calibration on RF5110
1250 * -Fix BPSK/QAM Constellation (I/Q correction) 1250 * -Fix BPSK/QAM Constellation (I/Q correction)
1251 * -Calculate Noise Floor
1252 */ 1251 */
1253static int ath5k_hw_rf5110_calibrate(struct ath5k_hw *ah, 1252static int ath5k_hw_rf5110_calibrate(struct ath5k_hw *ah,
1254 struct ieee80211_channel *channel) 1253 struct ieee80211_channel *channel)
@@ -1335,8 +1334,6 @@ static int ath5k_hw_rf5110_calibrate(struct ath5k_hw *ah,
1335 return ret; 1334 return ret;
1336 } 1335 }
1337 1336
1338 ath5k_hw_update_noise_floor(ah);
1339
1340 /* 1337 /*
1341 * Re-enable RX/TX and beacons 1338 * Re-enable RX/TX and beacons
1342 */ 1339 */
@@ -1348,10 +1345,10 @@ static int ath5k_hw_rf5110_calibrate(struct ath5k_hw *ah,
1348} 1345}
1349 1346
1350/* 1347/*
1351 * Perform a PHY calibration on RF5111/5112 and newer chips 1348 * Perform I/Q calibration on RF5111/5112 and newer chips
1352 */ 1349 */
1353static int ath5k_hw_rf511x_calibrate(struct ath5k_hw *ah, 1350static int
1354 struct ieee80211_channel *channel) 1351ath5k_hw_rf511x_iq_calibrate(struct ath5k_hw *ah)
1355{ 1352{
1356 u32 i_pwr, q_pwr; 1353 u32 i_pwr, q_pwr;
1357 s32 iq_corr, i_coff, i_coffd, q_coff, q_coffd; 1354 s32 iq_corr, i_coff, i_coffd, q_coff, q_coffd;
@@ -1360,10 +1357,9 @@ static int ath5k_hw_rf511x_calibrate(struct ath5k_hw *ah,
1360 1357
1361 if (!ah->ah_calibration || 1358 if (!ah->ah_calibration ||
1362 ath5k_hw_reg_read(ah, AR5K_PHY_IQ) & AR5K_PHY_IQ_RUN) 1359 ath5k_hw_reg_read(ah, AR5K_PHY_IQ) & AR5K_PHY_IQ_RUN)
1363 goto done; 1360 return 0;
1364 1361
1365 /* Calibration has finished, get the results and re-run */ 1362 /* Calibration has finished, get the results and re-run */
1366
1367 /* work around empty results which can apparently happen on 5212 */ 1363 /* work around empty results which can apparently happen on 5212 */
1368 for (i = 0; i <= 10; i++) { 1364 for (i = 0; i <= 10; i++) {
1369 iq_corr = ath5k_hw_reg_read(ah, AR5K_PHY_IQRES_CAL_CORR); 1365 iq_corr = ath5k_hw_reg_read(ah, AR5K_PHY_IQRES_CAL_CORR);
@@ -1384,7 +1380,7 @@ static int ath5k_hw_rf511x_calibrate(struct ath5k_hw *ah,
1384 1380
1385 /* protect against divide by 0 and loss of sign bits */ 1381 /* protect against divide by 0 and loss of sign bits */
1386 if (i_coffd == 0 || q_coffd < 2) 1382 if (i_coffd == 0 || q_coffd < 2)
1387 goto done; 1383 return -1;
1388 1384
1389 i_coff = (-iq_corr) / i_coffd; 1385 i_coff = (-iq_corr) / i_coffd;
1390 i_coff = clamp(i_coff, -32, 31); /* signed 6 bit */ 1386 i_coff = clamp(i_coff, -32, 31); /* signed 6 bit */
@@ -1410,17 +1406,6 @@ static int ath5k_hw_rf511x_calibrate(struct ath5k_hw *ah,
1410 AR5K_PHY_IQ_CAL_NUM_LOG_MAX, 15); 1406 AR5K_PHY_IQ_CAL_NUM_LOG_MAX, 15);
1411 AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_RUN); 1407 AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_RUN);
1412 1408
1413done:
1414
1415 /* TODO: Separate noise floor calibration from I/Q calibration
1416 * since noise floor calibration interrupts rx path while I/Q
1417 * calibration doesn't. We don't need to run noise floor calibration
1418 * as often as I/Q calibration.*/
1419 ath5k_hw_update_noise_floor(ah);
1420
1421 /* Initiate a gain_F calibration */
1422 ath5k_hw_request_rfgain_probe(ah);
1423
1424 return 0; 1409 return 0;
1425} 1410}
1426 1411
@@ -1434,8 +1419,10 @@ int ath5k_hw_phy_calibrate(struct ath5k_hw *ah,
1434 1419
1435 if (ah->ah_radio == AR5K_RF5110) 1420 if (ah->ah_radio == AR5K_RF5110)
1436 ret = ath5k_hw_rf5110_calibrate(ah, channel); 1421 ret = ath5k_hw_rf5110_calibrate(ah, channel);
1437 else 1422 else {
1438 ret = ath5k_hw_rf511x_calibrate(ah, channel); 1423 ret = ath5k_hw_rf511x_iq_calibrate(ah);
1424 ath5k_hw_request_rfgain_probe(ah);
1425 }
1439 1426
1440 return ret; 1427 return ret;
1441} 1428}