ath9k_hw: Initialize tx/rx gain table from initvals.h for AR9485
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
c88457eb83
commit
ff48ba464e
@@ -175,23 +175,53 @@ static void ar9003_tx_gain_table_apply(struct ath_hw *ah)
|
|||||||
switch (ar9003_hw_get_tx_gain_idx(ah)) {
|
switch (ar9003_hw_get_tx_gain_idx(ah)) {
|
||||||
case 0:
|
case 0:
|
||||||
default:
|
default:
|
||||||
|
if (AR_SREV_9485(ah))
|
||||||
|
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
||||||
|
ar9485Modes_lowest_ob_db_tx_gain_1_0,
|
||||||
|
ARRAY_SIZE(ar9485Modes_lowest_ob_db_tx_gain_1_0),
|
||||||
|
5);
|
||||||
|
else
|
||||||
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
||||||
ar9300Modes_lowest_ob_db_tx_gain_table_2p2,
|
ar9300Modes_lowest_ob_db_tx_gain_table_2p2,
|
||||||
ARRAY_SIZE(ar9300Modes_lowest_ob_db_tx_gain_table_2p2),
|
ARRAY_SIZE(ar9300Modes_lowest_ob_db_tx_gain_table_2p2),
|
||||||
5);
|
5);
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
|
if (AR_SREV_9485(ah))
|
||||||
|
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
||||||
|
ar9485Modes_high_ob_db_tx_gain_1_0,
|
||||||
|
ARRAY_SIZE(ar9485Modes_lowest_ob_db_tx_gain_1_0),
|
||||||
|
5);
|
||||||
|
else
|
||||||
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
||||||
ar9300Modes_high_ob_db_tx_gain_table_2p2,
|
ar9300Modes_high_ob_db_tx_gain_table_2p2,
|
||||||
ARRAY_SIZE(ar9300Modes_high_ob_db_tx_gain_table_2p2),
|
ARRAY_SIZE(ar9300Modes_high_ob_db_tx_gain_table_2p2),
|
||||||
5);
|
5);
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
|
if (AR_SREV_9485(ah))
|
||||||
|
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
||||||
|
ar9485Modes_low_ob_db_tx_gain_1_0,
|
||||||
|
ARRAY_SIZE(ar9485Modes_lowest_ob_db_tx_gain_1_0),
|
||||||
|
5);
|
||||||
|
else
|
||||||
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
||||||
ar9300Modes_low_ob_db_tx_gain_table_2p2,
|
ar9300Modes_low_ob_db_tx_gain_table_2p2,
|
||||||
ARRAY_SIZE(ar9300Modes_low_ob_db_tx_gain_table_2p2),
|
ARRAY_SIZE(ar9300Modes_low_ob_db_tx_gain_table_2p2),
|
||||||
5);
|
5);
|
||||||
break;
|
break;
|
||||||
|
case 3:
|
||||||
|
if (AR_SREV_9485(ah))
|
||||||
|
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
||||||
|
ar9485Modes_high_power_tx_gain_1_0,
|
||||||
|
ARRAY_SIZE(ar9485Modes_high_power_tx_gain_1_0),
|
||||||
|
5);
|
||||||
|
else
|
||||||
|
INIT_INI_ARRAY(&ah->iniModesTxGain,
|
||||||
|
ar9300Modes_high_power_tx_gain_table_2p2,
|
||||||
|
ARRAY_SIZE(ar9300Modes_high_power_tx_gain_table_2p2),
|
||||||
|
5);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -200,12 +230,24 @@ static void ar9003_rx_gain_table_apply(struct ath_hw *ah)
|
|||||||
switch (ar9003_hw_get_rx_gain_idx(ah)) {
|
switch (ar9003_hw_get_rx_gain_idx(ah)) {
|
||||||
case 0:
|
case 0:
|
||||||
default:
|
default:
|
||||||
|
if (AR_SREV_9485(ah))
|
||||||
|
INIT_INI_ARRAY(&ah->iniModesRxGain,
|
||||||
|
ar9485Common_rx_gain_1_0,
|
||||||
|
ARRAY_SIZE(ar9485Common_rx_gain_1_0),
|
||||||
|
2);
|
||||||
|
else
|
||||||
INIT_INI_ARRAY(&ah->iniModesRxGain,
|
INIT_INI_ARRAY(&ah->iniModesRxGain,
|
||||||
ar9300Common_rx_gain_table_2p2,
|
ar9300Common_rx_gain_table_2p2,
|
||||||
ARRAY_SIZE(ar9300Common_rx_gain_table_2p2),
|
ARRAY_SIZE(ar9300Common_rx_gain_table_2p2),
|
||||||
2);
|
2);
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
|
if (AR_SREV_9485(ah))
|
||||||
|
INIT_INI_ARRAY(&ah->iniModesRxGain,
|
||||||
|
ar9485Common_wo_xlna_rx_gain_1_0,
|
||||||
|
ARRAY_SIZE(ar9485Common_wo_xlna_rx_gain_1_0),
|
||||||
|
2);
|
||||||
|
else
|
||||||
INIT_INI_ARRAY(&ah->iniModesRxGain,
|
INIT_INI_ARRAY(&ah->iniModesRxGain,
|
||||||
ar9300Common_wo_xlna_rx_gain_table_2p2,
|
ar9300Common_wo_xlna_rx_gain_table_2p2,
|
||||||
ARRAY_SIZE(ar9300Common_wo_xlna_rx_gain_table_2p2),
|
ARRAY_SIZE(ar9300Common_wo_xlna_rx_gain_table_2p2),
|
||||||
|
Reference in New Issue
Block a user