developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame^] | 1 | From bd575b80c7fb5acfb16c3180f0f7cea4a07eff42 Mon Sep 17 00:00:00 2001 |
developer | 66e89bc | 2024-04-23 14:50:01 +0800 | [diff] [blame] | 2 | From: Shayne Chen <shayne.chen@mediatek.com> |
| 3 | Date: Thu, 21 Sep 2023 00:52:46 +0800 |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame^] | 4 | Subject: [PATCH 043/199] mtk: mt76: mt7996: support dup wtbl |
developer | 66e89bc | 2024-04-23 14:50:01 +0800 | [diff] [blame] | 5 | |
| 6 | Signed-off-by: Shayne Chen <shayne.chen@mediatek.com> |
developer | 66e89bc | 2024-04-23 14:50:01 +0800 | [diff] [blame] | 7 | --- |
| 8 | mt7996/init.c | 1 + |
| 9 | mt7996/mt7996.h | 1 + |
| 10 | mt7996/mtk_mcu.c | 23 +++++++++++++++++++++++ |
| 11 | 3 files changed, 25 insertions(+) |
| 12 | |
| 13 | diff --git a/mt7996/init.c b/mt7996/init.c |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame^] | 14 | index 0cf054df..0201d9fc 100644 |
developer | 66e89bc | 2024-04-23 14:50:01 +0800 | [diff] [blame] | 15 | --- a/mt7996/init.c |
| 16 | +++ b/mt7996/init.c |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame^] | 17 | @@ -688,6 +688,7 @@ static void mt7996_init_work(struct work_struct *work) |
developer | 66e89bc | 2024-04-23 14:50:01 +0800 | [diff] [blame] | 18 | mt7996_mcu_set_eeprom(dev); |
| 19 | mt7996_mac_init(dev); |
| 20 | mt7996_txbf_init(dev); |
| 21 | + mt7996_mcu_set_dup_wtbl(dev); |
| 22 | } |
| 23 | |
| 24 | void mt7996_wfsys_reset(struct mt7996_dev *dev) |
| 25 | diff --git a/mt7996/mt7996.h b/mt7996/mt7996.h |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame^] | 26 | index 20fa4221..9ec2090b 100644 |
developer | 66e89bc | 2024-04-23 14:50:01 +0800 | [diff] [blame] | 27 | --- a/mt7996/mt7996.h |
| 28 | +++ b/mt7996/mt7996.h |
| 29 | @@ -813,6 +813,7 @@ int mt7996_mtk_init_debugfs(struct mt7996_phy *phy, struct dentry *dir); |
| 30 | int mt7996_mcu_muru_dbg_info(struct mt7996_dev *dev, u16 item, u8 val); |
| 31 | int mt7996_mcu_set_sr_enable(struct mt7996_phy *phy, u8 action, u64 val, bool set); |
| 32 | void mt7996_mcu_rx_sr_event(struct mt7996_dev *dev, struct sk_buff *skb); |
| 33 | +int mt7996_mcu_set_dup_wtbl(struct mt7996_dev *dev); |
| 34 | #endif |
| 35 | |
| 36 | #ifdef CONFIG_NET_MEDIATEK_SOC_WED |
| 37 | diff --git a/mt7996/mtk_mcu.c b/mt7996/mtk_mcu.c |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame^] | 38 | index dbdf8d80..ea4e5bf2 100644 |
developer | 66e89bc | 2024-04-23 14:50:01 +0800 | [diff] [blame] | 39 | --- a/mt7996/mtk_mcu.c |
| 40 | +++ b/mt7996/mtk_mcu.c |
| 41 | @@ -257,4 +257,27 @@ void mt7996_mcu_rx_sr_event(struct mt7996_dev *dev, struct sk_buff *skb) |
| 42 | le16_to_cpu(event->basic.tag)); |
| 43 | } |
| 44 | } |
| 45 | + |
| 46 | +int mt7996_mcu_set_dup_wtbl(struct mt7996_dev *dev) |
| 47 | +{ |
| 48 | +#define CHIP_CONFIG_DUP_WTBL 4 |
| 49 | +#define DUP_WTBL_NUM 80 |
| 50 | + struct { |
| 51 | + u8 _rsv[4]; |
| 52 | + |
| 53 | + __le16 tag; |
| 54 | + __le16 len; |
| 55 | + __le16 base; |
| 56 | + __le16 num; |
| 57 | + u8 _rsv2[4]; |
| 58 | + } __packed req = { |
| 59 | + .tag = cpu_to_le16(CHIP_CONFIG_DUP_WTBL), |
| 60 | + .len = cpu_to_le16(sizeof(req) - 4), |
| 61 | + .base = cpu_to_le16(MT7996_WTBL_STA - DUP_WTBL_NUM + 1), |
| 62 | + .num = cpu_to_le16(DUP_WTBL_NUM), |
| 63 | + }; |
| 64 | + |
| 65 | + return mt76_mcu_send_msg(&dev->mt76, MCU_WM_UNI_CMD(CHIP_CONFIG), &req, |
| 66 | + sizeof(req), true); |
| 67 | +} |
| 68 | #endif |
| 69 | -- |
developer | 9237f44 | 2024-06-14 17:13:04 +0800 | [diff] [blame] | 70 | 2.18.0 |
developer | 66e89bc | 2024-04-23 14:50:01 +0800 | [diff] [blame] | 71 | |