| From 28aa63ac8f3468494eb58e6dfb424dc3507a3396 Mon Sep 17 00:00:00 2001 |
| From: "Allen.Ye" <allen.ye@mediatek.com> |
| Date: Mon, 10 Jul 2023 19:56:16 +0800 |
| Subject: [PATCH 1008/1044] mtk: wifi: mt76: mt7996: add single sku |
| |
| Add single sku and default enable sku. |
| |
| Signed-off-by: Allen.Ye <allen.ye@mediatek.com> |
| --- |
| eeprom.c | 50 ++++++++++++++++++++++++++++++++++++++++++----- |
| mt76.h | 9 +++++++++ |
| mt76_connac_mcu.c | 2 +- |
| mt7996/init.c | 2 ++ |
| mt7996/main.c | 9 +++++++++ |
| mt7996/mcu.c | 41 ++++++++++++++++++++++++++++++++++---- |
| mt7996/mt7996.h | 1 + |
| 7 files changed, 104 insertions(+), 10 deletions(-) |
| |
| diff --git a/eeprom.c b/eeprom.c |
| index 85bd2a29..c5be2843 100644 |
| --- a/eeprom.c |
| +++ b/eeprom.c |
| @@ -341,6 +341,7 @@ mt76_apply_multi_array_limit(s8 *pwr, size_t pwr_len, s8 pwr_num, |
| s8 mt76_get_rate_power_limits(struct mt76_phy *phy, |
| struct ieee80211_channel *chan, |
| struct mt76_power_limits *dest, |
| + struct mt76_power_path_limits *dest_path, |
| s8 target_power) |
| { |
| struct mt76_dev *dev = phy->dev; |
| @@ -348,16 +349,20 @@ s8 mt76_get_rate_power_limits(struct mt76_phy *phy, |
| const __be32 *val; |
| char name[16]; |
| u32 mcs_rates = dev->drv->mcs_rates; |
| - u32 ru_rates = ARRAY_SIZE(dest->ru[0]); |
| char band; |
| size_t len; |
| - s8 max_power = 0; |
| + s8 max_power = -127; |
| + s8 max_power_backoff = -127; |
| s8 txs_delta; |
| + int n_chains = hweight16(phy->chainmask); |
| + s8 target_power_combine = target_power + mt76_tx_power_nss_delta(n_chains); |
| |
| if (!mcs_rates) |
| - mcs_rates = 10; |
| + mcs_rates = 12; |
| |
| memset(dest, target_power, sizeof(*dest)); |
| + if (dest_path != NULL) |
| + memset(dest_path, 0, sizeof(*dest_path)); |
| |
| if (!IS_ENABLED(CONFIG_OF)) |
| return target_power; |
| @@ -405,12 +410,47 @@ s8 mt76_get_rate_power_limits(struct mt76_phy *phy, |
| ARRAY_SIZE(dest->mcs), val, len, |
| target_power, txs_delta, &max_power); |
| |
| - val = mt76_get_of_array(np, "rates-ru", &len, ru_rates + 1); |
| + val = mt76_get_of_array(np, "rates-ru", &len, ARRAY_SIZE(dest->ru[0]) + 1); |
| mt76_apply_multi_array_limit(dest->ru[0], ARRAY_SIZE(dest->ru[0]), |
| ARRAY_SIZE(dest->ru), val, len, |
| target_power, txs_delta, &max_power); |
| |
| - return max_power; |
| + val = mt76_get_of_array(np, "rates-eht", &len, ARRAY_SIZE(dest->eht[0]) + 1); |
| + mt76_apply_multi_array_limit(dest->eht[0], ARRAY_SIZE(dest->eht[0]), |
| + ARRAY_SIZE(dest->eht), val, len, |
| + target_power, txs_delta, &max_power); |
| + |
| + if (dest_path == NULL) |
| + return max_power; |
| + |
| + max_power_backoff = max_power; |
| + |
| + val = mt76_get_of_array(np, "paths-cck", &len, ARRAY_SIZE(dest_path->cck)); |
| + mt76_apply_array_limit(dest_path->cck, ARRAY_SIZE(dest_path->cck), val, |
| + target_power_combine, txs_delta, &max_power_backoff); |
| + |
| + val = mt76_get_of_array(np, "paths-ofdm", &len, ARRAY_SIZE(dest_path->ofdm)); |
| + mt76_apply_array_limit(dest_path->ofdm, ARRAY_SIZE(dest_path->ofdm), val, |
| + target_power_combine, txs_delta, &max_power_backoff); |
| + |
| + val = mt76_get_of_array(np, "paths-ofdm-bf", &len, ARRAY_SIZE(dest_path->ofdm_bf)); |
| + mt76_apply_array_limit(dest_path->ofdm_bf, ARRAY_SIZE(dest_path->ofdm_bf), val, |
| + target_power_combine, txs_delta, &max_power_backoff); |
| + |
| + val = mt76_get_of_array(np, "paths-ru", &len, ARRAY_SIZE(dest_path->ru[0]) + 1); |
| + mt76_apply_multi_array_limit(dest_path->ru[0], ARRAY_SIZE(dest_path->ru[0]), |
| + ARRAY_SIZE(dest_path->ru), val, len, |
| + target_power_combine, txs_delta, &max_power_backoff); |
| + |
| + val = mt76_get_of_array(np, "paths-ru-bf", &len, ARRAY_SIZE(dest_path->ru_bf[0]) + 1); |
| + mt76_apply_multi_array_limit(dest_path->ru_bf[0], ARRAY_SIZE(dest_path->ru_bf[0]), |
| + ARRAY_SIZE(dest_path->ru_bf), val, len, |
| + target_power_combine, txs_delta, &max_power_backoff); |
| + |
| + if (max_power_backoff == target_power_combine) |
| + return max_power; |
| + |
| + return max_power_backoff; |
| } |
| EXPORT_SYMBOL_GPL(mt76_get_rate_power_limits); |
| |
| diff --git a/mt76.h b/mt76.h |
| index 14c5fcb1..630b3903 100644 |
| --- a/mt76.h |
| +++ b/mt76.h |
| @@ -1054,6 +1054,14 @@ struct mt76_power_limits { |
| s8 eht[16][16]; |
| }; |
| |
| +struct mt76_power_path_limits { |
| + s8 cck[5]; |
| + s8 ofdm[5]; |
| + s8 ofdm_bf[4]; |
| + s8 ru[16][15]; |
| + s8 ru_bf[16][15]; |
| +}; |
| + |
| struct mt76_ethtool_worker_info { |
| u64 *data; |
| int idx; |
| @@ -1664,6 +1672,7 @@ mt76_find_channel_node(struct device_node *np, struct ieee80211_channel *chan); |
| s8 mt76_get_rate_power_limits(struct mt76_phy *phy, |
| struct ieee80211_channel *chan, |
| struct mt76_power_limits *dest, |
| + struct mt76_power_path_limits *dest_path, |
| s8 target_power); |
| |
| static inline bool mt76_queue_is_wed_tx_free(struct mt76_queue *q) |
| diff --git a/mt76_connac_mcu.c b/mt76_connac_mcu.c |
| index 42f12672..75bbb7cc 100644 |
| --- a/mt76_connac_mcu.c |
| +++ b/mt76_connac_mcu.c |
| @@ -2150,7 +2150,7 @@ mt76_connac_mcu_rate_txpower_band(struct mt76_phy *phy, |
| sar_power = mt76_get_sar_power(phy, &chan, reg_power); |
| |
| mt76_get_rate_power_limits(phy, &chan, limits, |
| - sar_power); |
| + NULL, sar_power); |
| |
| tx_power_tlv.last_msg = ch_list[idx] == last_ch; |
| sku_tlbv.channel = ch_list[idx]; |
| diff --git a/mt7996/init.c b/mt7996/init.c |
| index 23a9b88b..5f937b26 100644 |
| --- a/mt7996/init.c |
| +++ b/mt7996/init.c |
| @@ -295,6 +295,7 @@ static void __mt7996_init_txpower(struct mt7996_phy *phy, |
| int nss_delta = mt76_tx_power_nss_delta(nss); |
| int pwr_delta = mt7996_eeprom_get_power_delta(dev, sband->band); |
| struct mt76_power_limits limits; |
| + struct mt76_power_path_limits limits_path; |
| |
| for (i = 0; i < sband->n_channels; i++) { |
| struct ieee80211_channel *chan = &sband->channels[i]; |
| @@ -303,6 +304,7 @@ static void __mt7996_init_txpower(struct mt7996_phy *phy, |
| target_power += pwr_delta; |
| target_power = mt76_get_rate_power_limits(phy->mt76, chan, |
| &limits, |
| + &limits_path, |
| target_power); |
| target_power += nss_delta; |
| target_power = DIV_ROUND_UP(target_power, 2); |
| diff --git a/mt7996/main.c b/mt7996/main.c |
| index ffb1f81b..ecfc3dcf 100644 |
| --- a/mt7996/main.c |
| +++ b/mt7996/main.c |
| @@ -77,6 +77,15 @@ int mt7996_run(struct ieee80211_hw *hw) |
| if (ret) |
| goto out; |
| |
| +#ifdef CONFIG_MTK_DEBUG |
| + ret = mt7996_mcu_set_tx_power_ctrl(phy, UNI_TXPOWER_SKU_POWER_LIMIT_CTRL, |
| + !dev->dbg.sku_disable); |
| +#else |
| + ret = mt7996_mcu_set_tx_power_ctrl(phy, UNI_TXPOWER_SKU_POWER_LIMIT_CTRL, true); |
| +#endif |
| + if (ret) |
| + goto out; |
| + |
| set_bit(MT76_STATE_RUNNING, &phy->mt76->state); |
| |
| ieee80211_queue_delayed_work(hw, &phy->mt76->mac_work, |
| diff --git a/mt7996/mcu.c b/mt7996/mcu.c |
| index 62452d6e..e103601f 100644 |
| --- a/mt7996/mcu.c |
| +++ b/mt7996/mcu.c |
| @@ -4496,6 +4496,7 @@ int mt7996_mcu_wed_rro_reset_sessions(struct mt7996_dev *dev, u16 id) |
| int mt7996_mcu_set_txpower_sku(struct mt7996_phy *phy) |
| { |
| #define TX_POWER_LIMIT_TABLE_RATE 0 |
| +#define TX_POWER_LIMIT_TABLE_PATH 1 |
| struct mt7996_dev *dev = phy->dev; |
| struct mt76_phy *mphy = phy->mt76; |
| struct ieee80211_hw *hw = mphy->hw; |
| @@ -4509,22 +4510,23 @@ int mt7996_mcu_set_txpower_sku(struct mt7996_phy *phy) |
| u8 band_idx; |
| } __packed req = { |
| .tag = cpu_to_le16(UNI_TXPOWER_POWER_LIMIT_TABLE_CTRL), |
| - .len = cpu_to_le16(sizeof(req) + MT7996_SKU_RATE_NUM - 4), |
| + .len = cpu_to_le16(sizeof(req) + MT7996_SKU_PATH_NUM - 4), |
| .power_ctrl_id = UNI_TXPOWER_POWER_LIMIT_TABLE_CTRL, |
| .power_limit_type = TX_POWER_LIMIT_TABLE_RATE, |
| .band_idx = phy->mt76->band_idx, |
| }; |
| struct mt76_power_limits la = {}; |
| + struct mt76_power_path_limits la_path = {}; |
| struct sk_buff *skb; |
| - int i, tx_power; |
| + int i, ret, tx_power; |
| |
| tx_power = mt7996_get_power_bound(phy, hw->conf.power_level); |
| tx_power = mt76_get_rate_power_limits(mphy, mphy->chandef.chan, |
| - &la, tx_power); |
| + &la, &la_path, tx_power); |
| mphy->txpower_cur = tx_power; |
| |
| skb = mt76_mcu_msg_alloc(&dev->mt76, NULL, |
| - sizeof(req) + MT7996_SKU_RATE_NUM); |
| + sizeof(req) + MT7996_SKU_PATH_NUM); |
| if (!skb) |
| return -ENOMEM; |
| |
| @@ -4548,6 +4550,37 @@ int mt7996_mcu_set_txpower_sku(struct mt7996_phy *phy) |
| /* eht */ |
| skb_put_data(skb, &la.eht[0], sizeof(la.eht)); |
| |
| + /* padding */ |
| + skb_put_zero(skb, MT7996_SKU_PATH_NUM - MT7996_SKU_RATE_NUM); |
| + |
| + ret = mt76_mcu_skb_send_msg(&dev->mt76, skb, |
| + MCU_WM_UNI_CMD(TXPOWER), true); |
| + if (ret) |
| + return ret; |
| + |
| + /* only set per-path power table when it's configured */ |
| + if (!la_path.ofdm[0]) |
| + return 0; |
| + |
| + skb = mt76_mcu_msg_alloc(&dev->mt76, NULL, |
| + sizeof(req) + MT7996_SKU_PATH_NUM); |
| + if (!skb) |
| + return -ENOMEM; |
| + req.power_limit_type = TX_POWER_LIMIT_TABLE_PATH; |
| + |
| + skb_put_data(skb, &req, sizeof(req)); |
| + skb_put_data(skb, &la_path.cck, sizeof(la_path.cck)); |
| + skb_put_data(skb, &la_path.ofdm, sizeof(la_path.ofdm)); |
| + skb_put_data(skb, &la_path.ofdm_bf, sizeof(la_path.ofdm_bf)); |
| + |
| + for (i = 0; i < 32; i++) { |
| + bool bf = i % 2; |
| + u8 idx = i / 2; |
| + s8 *buf = bf ? la_path.ru_bf[idx] : la_path.ru[idx]; |
| + |
| + skb_put_data(skb, buf, sizeof(la_path.ru[0])); |
| + } |
| + |
| return mt76_mcu_skb_send_msg(&dev->mt76, skb, |
| MCU_WM_UNI_CMD(TXPOWER), true); |
| } |
| diff --git a/mt7996/mt7996.h b/mt7996/mt7996.h |
| index 18a6a46d..7e3d381e 100644 |
| --- a/mt7996/mt7996.h |
| +++ b/mt7996/mt7996.h |
| @@ -71,6 +71,7 @@ |
| #define MT7996_CFEND_RATE_11B 0x03 /* 11B LP, 11M */ |
| |
| #define MT7996_SKU_RATE_NUM 417 |
| +#define MT7996_SKU_PATH_NUM 494 |
| |
| #define MT7996_MAX_TWT_AGRT 16 |
| #define MT7996_MAX_STA_TWT_AGRT 8 |
| -- |
| 2.18.0 |
| |