mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
wifi: iwlwifi: move iwl_fw_rate_idx_to_plcp() to mvm
It's only needed by mvm, so there's no need to have it in iwlwifi and export it, just move it to mvm itself. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Link: https://patch.msgid.link/20260527230313.87769f13c7d7.I3875d768694b9484317a3253f479a2a2100244f4@changeid Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
This commit is contained in:
parent
18928cd2b0
commit
3ea44b983a
|
|
@ -1,6 +1,6 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
||||
/*
|
||||
* Copyright (C) 2012-2014, 2018-2022, 2024-2025 Intel Corporation
|
||||
* Copyright (C) 2012-2014, 2018-2022, 2024-2026 Intel Corporation
|
||||
* Copyright (C) 2017 Intel Deutschland GmbH
|
||||
*/
|
||||
#ifndef __iwl_fw_api_rs_h__
|
||||
|
|
@ -889,7 +889,6 @@ struct iwl_lq_cmd {
|
|||
__le32 ss_params;
|
||||
}; /* LINK_QUALITY_CMD_API_S_VER_1 */
|
||||
|
||||
u8 iwl_fw_rate_idx_to_plcp(int idx);
|
||||
const struct iwl_rate_mcs_info *iwl_rate_mcs(int idx);
|
||||
const char *iwl_rs_pretty_ant(u8 ant);
|
||||
const char *iwl_rs_pretty_bw(int bw);
|
||||
|
|
|
|||
|
|
@ -8,27 +8,6 @@
|
|||
#include "iwl-drv.h"
|
||||
#include "iwl-config.h"
|
||||
|
||||
#define IWL_DECLARE_RATE_INFO(r) \
|
||||
[IWL_RATE_##r##M_INDEX] = IWL_RATE_##r##M_PLCP
|
||||
|
||||
/*
|
||||
* Translate from fw_rate_index (IWL_RATE_XXM_INDEX) to PLCP
|
||||
* */
|
||||
static const u8 fw_rate_idx_to_plcp[IWL_RATE_COUNT] = {
|
||||
IWL_DECLARE_RATE_INFO(1),
|
||||
IWL_DECLARE_RATE_INFO(2),
|
||||
IWL_DECLARE_RATE_INFO(5),
|
||||
IWL_DECLARE_RATE_INFO(11),
|
||||
IWL_DECLARE_RATE_INFO(6),
|
||||
IWL_DECLARE_RATE_INFO(9),
|
||||
IWL_DECLARE_RATE_INFO(12),
|
||||
IWL_DECLARE_RATE_INFO(18),
|
||||
IWL_DECLARE_RATE_INFO(24),
|
||||
IWL_DECLARE_RATE_INFO(36),
|
||||
IWL_DECLARE_RATE_INFO(48),
|
||||
IWL_DECLARE_RATE_INFO(54),
|
||||
};
|
||||
|
||||
/* mbps, mcs */
|
||||
static const struct iwl_rate_mcs_info rate_mcs[IWL_RATE_COUNT] = {
|
||||
{ "1", "BPSK DSSS"},
|
||||
|
|
@ -61,12 +40,6 @@ static const char * const pretty_bw[] = {
|
|||
"320Mhz",
|
||||
};
|
||||
|
||||
u8 iwl_fw_rate_idx_to_plcp(int idx)
|
||||
{
|
||||
return fw_rate_idx_to_plcp[idx];
|
||||
}
|
||||
IWL_EXPORT_SYMBOL(iwl_fw_rate_idx_to_plcp);
|
||||
|
||||
const struct iwl_rate_mcs_info *iwl_rate_mcs(int idx)
|
||||
{
|
||||
return &rate_mcs[idx];
|
||||
|
|
|
|||
|
|
@ -937,7 +937,7 @@ u16 iwl_mvm_mac_ctxt_get_beacon_flags(const struct iwl_fw *fw, u8 rate_idx)
|
|||
if (iwl_fw_lookup_cmd_ver(fw, TX_CMD, 0) > 8)
|
||||
flags |= iwl_mvm_rate_idx_to_fw_idx(fw, rate_idx);
|
||||
else
|
||||
flags |= iwl_fw_rate_idx_to_plcp(rate_idx);
|
||||
flags |= iwl_mvm_rate_idx_to_plcp(rate_idx);
|
||||
|
||||
return flags;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1646,6 +1646,7 @@ int __iwl_mvm_mac_start(struct iwl_mvm *mvm);
|
|||
int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm);
|
||||
|
||||
/* Utils */
|
||||
u8 iwl_mvm_rate_idx_to_plcp(int idx);
|
||||
int iwl_mvm_legacy_hw_idx_to_mac80211_idx(u32 rate_n_flags,
|
||||
enum nl80211_band band);
|
||||
int iwl_mvm_legacy_rate_to_mac80211_idx(u32 rate_n_flags,
|
||||
|
|
|
|||
|
|
@ -14,6 +14,30 @@
|
|||
#include "fw/api/rs.h"
|
||||
#include "fw/img.h"
|
||||
|
||||
#define IWL_DECLARE_RATE_INFO(r) \
|
||||
[IWL_RATE_##r##M_INDEX] = IWL_RATE_##r##M_PLCP
|
||||
|
||||
/* Translate from fw_rate_index (IWL_RATE_XXM_INDEX) to PLCP */
|
||||
static const u8 fw_rate_idx_to_plcp[IWL_RATE_COUNT] = {
|
||||
IWL_DECLARE_RATE_INFO(1),
|
||||
IWL_DECLARE_RATE_INFO(2),
|
||||
IWL_DECLARE_RATE_INFO(5),
|
||||
IWL_DECLARE_RATE_INFO(11),
|
||||
IWL_DECLARE_RATE_INFO(6),
|
||||
IWL_DECLARE_RATE_INFO(9),
|
||||
IWL_DECLARE_RATE_INFO(12),
|
||||
IWL_DECLARE_RATE_INFO(18),
|
||||
IWL_DECLARE_RATE_INFO(24),
|
||||
IWL_DECLARE_RATE_INFO(36),
|
||||
IWL_DECLARE_RATE_INFO(48),
|
||||
IWL_DECLARE_RATE_INFO(54),
|
||||
};
|
||||
|
||||
u8 iwl_mvm_rate_idx_to_plcp(int idx)
|
||||
{
|
||||
return fw_rate_idx_to_plcp[idx];
|
||||
}
|
||||
|
||||
/*
|
||||
* Will return 0 even if the cmd failed when RFKILL is asserted unless
|
||||
* CMD_WANT_SKB is set in cmd->flags.
|
||||
|
|
@ -151,7 +175,7 @@ int iwl_mvm_legacy_rate_to_mac80211_idx(u32 rate_n_flags,
|
|||
if (band != NL80211_BAND_2GHZ)
|
||||
band_offset = IWL_FIRST_OFDM_RATE;
|
||||
for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++)
|
||||
if (iwl_fw_rate_idx_to_plcp(idx) == rate)
|
||||
if (iwl_mvm_rate_idx_to_plcp(idx) == rate)
|
||||
return idx - band_offset;
|
||||
|
||||
return -1;
|
||||
|
|
@ -1243,7 +1267,7 @@ static u32 iwl_legacy_rate_to_fw_idx(u32 rate_n_flags)
|
|||
int last = ofdm ? IWL_RATE_COUNT_LEGACY : IWL_FIRST_OFDM_RATE;
|
||||
|
||||
for (idx = offset; idx < last; idx++)
|
||||
if (iwl_fw_rate_idx_to_plcp(idx) == rate)
|
||||
if (iwl_mvm_rate_idx_to_plcp(idx) == rate)
|
||||
return idx - offset;
|
||||
return IWL_RATE_INVALID;
|
||||
}
|
||||
|
|
@ -1353,7 +1377,7 @@ __le32 iwl_mvm_v3_rate_to_fw(u32 rate, u8 rate_ver)
|
|||
rate_idx = u32_get_bits(rate, RATE_LEGACY_RATE_MSK);
|
||||
if (!(result & RATE_MCS_CCK_MSK_V1))
|
||||
rate_idx += IWL_FIRST_OFDM_RATE;
|
||||
result |= u32_encode_bits(iwl_fw_rate_idx_to_plcp(rate_idx),
|
||||
result |= u32_encode_bits(iwl_mvm_rate_idx_to_plcp(rate_idx),
|
||||
RATE_LEGACY_RATE_MSK_V1);
|
||||
break;
|
||||
case RATE_MCS_MOD_TYPE_HT:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user