Commit 1826dcc0 authored by Tomas Winkler's avatar Tomas Winkler Committed by John W. Linville

iwlwifi: remove 4965 from iwl4965_rate_info

This patch removes 4965 from iwl4965_rate_info structure and
associated variables.
Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent fcab423d
...@@ -481,7 +481,7 @@ static u32 rate_n_flags_from_tbl(struct iwl4965_scale_tbl_info *tbl, ...@@ -481,7 +481,7 @@ static u32 rate_n_flags_from_tbl(struct iwl4965_scale_tbl_info *tbl,
u32 rate_n_flags = 0; u32 rate_n_flags = 0;
if (is_legacy(tbl->lq_type)) { if (is_legacy(tbl->lq_type)) {
rate_n_flags = iwl4965_rates[index].plcp; rate_n_flags = iwl_rates[index].plcp;
if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE) if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
rate_n_flags |= RATE_MCS_CCK_MSK; rate_n_flags |= RATE_MCS_CCK_MSK;
...@@ -493,11 +493,11 @@ static u32 rate_n_flags_from_tbl(struct iwl4965_scale_tbl_info *tbl, ...@@ -493,11 +493,11 @@ static u32 rate_n_flags_from_tbl(struct iwl4965_scale_tbl_info *tbl,
rate_n_flags = RATE_MCS_HT_MSK; rate_n_flags = RATE_MCS_HT_MSK;
if (is_siso(tbl->lq_type)) if (is_siso(tbl->lq_type))
rate_n_flags |= iwl4965_rates[index].plcp_siso; rate_n_flags |= iwl_rates[index].plcp_siso;
else if (is_mimo2(tbl->lq_type)) else if (is_mimo2(tbl->lq_type))
rate_n_flags |= iwl4965_rates[index].plcp_mimo2; rate_n_flags |= iwl_rates[index].plcp_mimo2;
else else
rate_n_flags |= iwl4965_rates[index].plcp_mimo3; rate_n_flags |= iwl_rates[index].plcp_mimo3;
} else { } else {
IWL_ERROR("Invalid tbl->lq_type %d\n", tbl->lq_type); IWL_ERROR("Invalid tbl->lq_type %d\n", tbl->lq_type);
} }
...@@ -697,7 +697,7 @@ static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask, ...@@ -697,7 +697,7 @@ static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
low = index; low = index;
while (low != IWL_RATE_INVALID) { while (low != IWL_RATE_INVALID) {
low = iwl4965_rates[low].prev_rs; low = iwl_rates[low].prev_rs;
if (low == IWL_RATE_INVALID) if (low == IWL_RATE_INVALID)
break; break;
if (rate_mask & (1 << low)) if (rate_mask & (1 << low))
...@@ -707,7 +707,7 @@ static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask, ...@@ -707,7 +707,7 @@ static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
high = index; high = index;
while (high != IWL_RATE_INVALID) { while (high != IWL_RATE_INVALID) {
high = iwl4965_rates[high].next_rs; high = iwl_rates[high].next_rs;
if (high == IWL_RATE_INVALID) if (high == IWL_RATE_INVALID)
break; break;
if (rate_mask & (1 << high)) if (rate_mask & (1 << high))
...@@ -2088,7 +2088,7 @@ static void rs_initialize_lq(struct iwl_priv *priv, ...@@ -2088,7 +2088,7 @@ static void rs_initialize_lq(struct iwl_priv *priv,
i = 0; i = 0;
/* FIXME:RS: This is also wrong in 4965 */ /* FIXME:RS: This is also wrong in 4965 */
rate = iwl4965_rates[i].plcp; rate = iwl_rates[i].plcp;
rate |= RATE_MCS_ANT_B_MSK; rate |= RATE_MCS_ANT_B_MSK;
rate &= ~RATE_MCS_ANT_A_MSK; rate &= ~RATE_MCS_ANT_A_MSK;
...@@ -2691,7 +2691,7 @@ int iwl4965_fill_rs_info(struct ieee80211_hw *hw, char *buf, u8 sta_id) ...@@ -2691,7 +2691,7 @@ int iwl4965_fill_rs_info(struct ieee80211_hw *hw, char *buf, u8 sta_id)
int active = lq_sta->active_tbl; int active = lq_sta->active_tbl;
cnt += cnt +=
sprintf(&buf[cnt], " %2dMbs: ", iwl4965_rates[i].ieee / 2); sprintf(&buf[cnt], " %2dMbs: ", iwl_rates[i].ieee / 2);
mask = (1ULL << (IWL_RATE_MAX_WINDOW - 1)); mask = (1ULL << (IWL_RATE_MAX_WINDOW - 1));
for (j = 0; j < IWL_RATE_MAX_WINDOW; j++, mask >>= 1) for (j = 0; j < IWL_RATE_MAX_WINDOW; j++, mask >>= 1)
...@@ -2702,7 +2702,7 @@ int iwl4965_fill_rs_info(struct ieee80211_hw *hw, char *buf, u8 sta_id) ...@@ -2702,7 +2702,7 @@ int iwl4965_fill_rs_info(struct ieee80211_hw *hw, char *buf, u8 sta_id)
samples += lq_sta->lq_info[active].win[i].counter; samples += lq_sta->lq_info[active].win[i].counter;
good += lq_sta->lq_info[active].win[i].success_counter; good += lq_sta->lq_info[active].win[i].success_counter;
success += lq_sta->lq_info[active].win[i].success_counter * success += lq_sta->lq_info[active].win[i].success_counter *
iwl4965_rates[i].ieee; iwl_rates[i].ieee;
if (lq_sta->lq_info[active].win[i].stamp) { if (lq_sta->lq_info[active].win[i].stamp) {
int delta = int delta =
...@@ -2722,10 +2722,11 @@ int iwl4965_fill_rs_info(struct ieee80211_hw *hw, char *buf, u8 sta_id) ...@@ -2722,10 +2722,11 @@ int iwl4965_fill_rs_info(struct ieee80211_hw *hw, char *buf, u8 sta_id)
i = j; i = j;
} }
/* Display the average rate of all samples taken. /*
* * Display the average rate of all samples taken.
* NOTE: We multiply # of samples by 2 since the IEEE measurement * NOTE: We multiply # of samples by 2 since the IEEE measurement
* added from iwl4965_rates is actually 2X the rate */ * added from iwl_rates is actually 2X the rate.
*/
if (samples) if (samples)
cnt += sprintf(&buf[cnt], cnt += sprintf(&buf[cnt],
"\nAverage rate is %3d.%02dMbs over last %4dms\n" "\nAverage rate is %3d.%02dMbs over last %4dms\n"
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include "iwl-dev.h" #include "iwl-dev.h"
struct iwl4965_rate_info { struct iwl_rate_info {
u8 plcp; /* uCode API: IWL_RATE_6M_PLCP, etc. */ u8 plcp; /* uCode API: IWL_RATE_6M_PLCP, etc. */
u8 plcp_siso; /* uCode API: IWL_RATE_SISO_6M_PLCP, etc. */ u8 plcp_siso; /* uCode API: IWL_RATE_SISO_6M_PLCP, etc. */
u8 plcp_mimo2; /* uCode API: IWL_RATE_MIMO2_6M_PLCP, etc. */ u8 plcp_mimo2; /* uCode API: IWL_RATE_MIMO2_6M_PLCP, etc. */
...@@ -45,7 +45,7 @@ struct iwl4965_rate_info { ...@@ -45,7 +45,7 @@ struct iwl4965_rate_info {
/* /*
* These serve as indexes into * These serve as indexes into
* struct iwl4965_rate_info iwl4965_rates[IWL_RATE_COUNT]; * struct iwl_rate_info iwl_rates[IWL_RATE_COUNT];
*/ */
enum { enum {
IWL_RATE_1M_INDEX = 0, IWL_RATE_1M_INDEX = 0,
...@@ -240,7 +240,7 @@ enum { ...@@ -240,7 +240,7 @@ enum {
#define TID_MAX_TIME_DIFF ((TID_QUEUE_MAX_SIZE - 1) * TID_QUEUE_CELL_SPACING) #define TID_MAX_TIME_DIFF ((TID_QUEUE_MAX_SIZE - 1) * TID_QUEUE_CELL_SPACING)
#define TIME_WRAP_AROUND(x, y) (((y) > (x)) ? (y) - (x) : (0-(x)) + (y)) #define TIME_WRAP_AROUND(x, y) (((y) > (x)) ? (y) - (x) : (0-(x)) + (y))
extern const struct iwl4965_rate_info iwl4965_rates[IWL_RATE_COUNT]; extern const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT];
enum iwl_table_type { enum iwl_table_type {
LQ_NONE, LQ_NONE,
...@@ -279,7 +279,7 @@ static inline u8 num_of_ant(u8 mask) ...@@ -279,7 +279,7 @@ static inline u8 num_of_ant(u8 mask)
static inline u8 iwl4965_get_prev_ieee_rate(u8 rate_index) static inline u8 iwl4965_get_prev_ieee_rate(u8 rate_index)
{ {
u8 rate = iwl4965_rates[rate_index].prev_ieee; u8 rate = iwl_rates[rate_index].prev_ieee;
if (rate == IWL_RATE_INVALID) if (rate == IWL_RATE_INVALID)
rate = rate_index; rate = rate_index;
......
...@@ -345,8 +345,8 @@ int iwl4965_hwrate_to_plcp_idx(u32 rate_n_flags) ...@@ -345,8 +345,8 @@ int iwl4965_hwrate_to_plcp_idx(u32 rate_n_flags)
/* 4965 legacy rate format, search for match in table */ /* 4965 legacy rate format, search for match in table */
} else { } else {
for (idx = 0; idx < ARRAY_SIZE(iwl4965_rates); idx++) for (idx = 0; idx < ARRAY_SIZE(iwl_rates); idx++)
if (iwl4965_rates[idx].plcp == (rate_n_flags & 0xFF)) if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
return idx; return idx;
} }
...@@ -1951,7 +1951,7 @@ void iwl4965_hw_build_tx_cmd_rate(struct iwl_priv *priv, ...@@ -1951,7 +1951,7 @@ void iwl4965_hw_build_tx_cmd_rate(struct iwl_priv *priv,
u16 rate_flags = 0; u16 rate_flags = 0;
int rate_idx = min(ctrl->tx_rate->hw_value & 0xffff, IWL_RATE_COUNT - 1); int rate_idx = min(ctrl->tx_rate->hw_value & 0xffff, IWL_RATE_COUNT - 1);
rate_plcp = iwl4965_rates[rate_idx].plcp; rate_plcp = iwl_rates[rate_idx].plcp;
rts_retry_limit = (is_hcca) ? rts_retry_limit = (is_hcca) ?
RTS_HCCA_RETRY_LIMIT : RTS_DFAULT_RETRY_LIMIT; RTS_HCCA_RETRY_LIMIT : RTS_DFAULT_RETRY_LIMIT;
...@@ -2436,7 +2436,7 @@ static void iwl4965_add_radiotap(struct iwl_priv *priv, ...@@ -2436,7 +2436,7 @@ static void iwl4965_add_radiotap(struct iwl_priv *priv,
if (rate == -1) if (rate == -1)
iwl4965_rt->rt_rate = 0; iwl4965_rt->rt_rate = 0;
else else
iwl4965_rt->rt_rate = iwl4965_rates[rate].ieee; iwl4965_rt->rt_rate = iwl_rates[rate].ieee;
/* /*
* "antenna number" * "antenna number"
...@@ -2848,7 +2848,7 @@ static void iwl4965_dbg_report_frame(struct iwl_priv *priv, ...@@ -2848,7 +2848,7 @@ static void iwl4965_dbg_report_frame(struct iwl_priv *priv,
if (unlikely(rate_idx == -1)) if (unlikely(rate_idx == -1))
bitrate = 0; bitrate = 0;
else else
bitrate = iwl4965_rates[rate_idx].ieee / 2; bitrate = iwl_rates[rate_idx].ieee / 2;
/* print frame summary. /* print frame summary.
* MAC addresses show just the last byte (for brevity), * MAC addresses show just the last byte (for brevity),
...@@ -3473,7 +3473,7 @@ void iwl4965_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap) ...@@ -3473,7 +3473,7 @@ void iwl4965_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
rate_flags |= RATE_MCS_ANT_B_MSK; /*FIXME:RS*/ rate_flags |= RATE_MCS_ANT_B_MSK; /*FIXME:RS*/
link_cmd.rs_table[i].rate_n_flags = link_cmd.rs_table[i].rate_n_flags =
iwl4965_hw_set_rate_n_flags(iwl4965_rates[r].plcp, rate_flags); iwl4965_hw_set_rate_n_flags(iwl_rates[r].plcp, rate_flags);
r = iwl4965_get_prev_ieee_rate(r); r = iwl4965_get_prev_ieee_rate(r);
} }
......
...@@ -67,7 +67,7 @@ MODULE_LICENSE("GPL"); ...@@ -67,7 +67,7 @@ MODULE_LICENSE("GPL");
* maps to IWL_RATE_INVALID * maps to IWL_RATE_INVALID
* *
*/ */
const struct iwl4965_rate_info iwl4965_rates[IWL_RATE_COUNT] = { const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT] = {
IWL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2), /* 1mbps */ IWL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2), /* 1mbps */
IWL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5), /* 2mbps */ IWL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5), /* 2mbps */
IWL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11), /*5.5mbps */ IWL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11), /*5.5mbps */
...@@ -83,7 +83,7 @@ const struct iwl4965_rate_info iwl4965_rates[IWL_RATE_COUNT] = { ...@@ -83,7 +83,7 @@ const struct iwl4965_rate_info iwl4965_rates[IWL_RATE_COUNT] = {
IWL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),/* 60mbps */ IWL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),/* 60mbps */
/* FIXME:RS: ^^ should be INV (legacy) */ /* FIXME:RS: ^^ should be INV (legacy) */
}; };
EXPORT_SYMBOL(iwl4965_rates); EXPORT_SYMBOL(iwl_rates);
/* This function both allocates and initializes hw and priv. */ /* This function both allocates and initializes hw and priv. */
struct ieee80211_hw *iwl_alloc_all(struct iwl_cfg *cfg, struct ieee80211_hw *iwl_alloc_all(struct iwl_cfg *cfg,
...@@ -383,7 +383,7 @@ static void iwlcore_init_hw_rates(struct iwl_priv *priv, ...@@ -383,7 +383,7 @@ static void iwlcore_init_hw_rates(struct iwl_priv *priv,
int i; int i;
for (i = 0; i < IWL_RATE_COUNT; i++) { for (i = 0; i < IWL_RATE_COUNT; i++) {
rates[i].bitrate = iwl4965_rates[i].ieee * 5; rates[i].bitrate = iwl_rates[i].ieee * 5;
rates[i].hw_value = i; /* Rate scaling will work on indexes */ rates[i].hw_value = i; /* Rate scaling will work on indexes */
rates[i].hw_value_short = i; rates[i].hw_value_short = i;
rates[i].flags = 0; rates[i].flags = 0;
...@@ -392,7 +392,7 @@ static void iwlcore_init_hw_rates(struct iwl_priv *priv, ...@@ -392,7 +392,7 @@ static void iwlcore_init_hw_rates(struct iwl_priv *priv,
* If CCK != 1M then set short preamble rate flag. * If CCK != 1M then set short preamble rate flag.
*/ */
rates[i].flags |= rates[i].flags |=
(iwl4965_rates[i].plcp == IWL_RATE_1M_PLCP) ? (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
0 : IEEE80211_RATE_SHORT_PREAMBLE; 0 : IEEE80211_RATE_SHORT_PREAMBLE;
} }
} }
......
...@@ -878,9 +878,9 @@ static u8 iwl4965_rate_get_lowest_plcp(struct iwl_priv *priv) ...@@ -878,9 +878,9 @@ static u8 iwl4965_rate_get_lowest_plcp(struct iwl_priv *priv)
/* Find lowest valid rate */ /* Find lowest valid rate */
for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID; for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
i = iwl4965_rates[i].next_ieee) { i = iwl_rates[i].next_ieee) {
if (rate_mask & (1 << i)) if (rate_mask & (1 << i))
return iwl4965_rates[i].plcp; return iwl_rates[i].plcp;
} }
/* No valid rate was found. Assign the lowest one */ /* No valid rate was found. Assign the lowest one */
...@@ -939,7 +939,7 @@ static u16 iwl4965_supported_rate_to_ie(u8 *ie, u16 supported_rate, ...@@ -939,7 +939,7 @@ static u16 iwl4965_supported_rate_to_ie(u8 *ie, u16 supported_rate,
for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) { for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
if (bit & supported_rate) { if (bit & supported_rate) {
ret_rates |= bit; ret_rates |= bit;
rates[*cnt] = iwl4965_rates[i].ieee | rates[*cnt] = iwl_rates[i].ieee |
((bit & basic_rate) ? 0x80 : 0x00); ((bit & basic_rate) ? 0x80 : 0x00);
(*cnt)++; (*cnt)++;
(*left)--; (*left)--;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment