blob: c779eb7a9f017af1d2856705a754dc7a854678b3 [file] [log] [blame]
developer8eb72a32023-03-30 08:32:07 +08001From c559ca2ba572ba59906c8c194330c3ae6dc99b48 Mon Sep 17 00:00:00 2001
developer1bc2ce22023-03-25 00:47:41 +08002From: StanleyYP Wang <StanleyYP.Wang@mediatek.com>
3Date: Wed, 28 Dec 2022 22:24:25 +0800
developer8eb72a32023-03-30 08:32:07 +08004Subject: [PATCH 26/29] wifi: mt76: testmode: add atenl support in mt7996
developer1bc2ce22023-03-25 00:47:41 +08005
6Signed-off-by: StanleyYP Wang <StanleyYP.Wang@mediatek.com>
7---
8 testmode.c | 3 ++-
9 testmode.h | 2 ++
10 2 files changed, 4 insertions(+), 1 deletion(-)
11
12diff --git a/testmode.c b/testmode.c
developer8eb72a32023-03-30 08:32:07 +080013index 0accc71..0d2bae9 100644
developer1bc2ce22023-03-25 00:47:41 +080014--- a/testmode.c
15+++ b/testmode.c
16@@ -612,7 +612,8 @@ int mt76_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *msg,
17
18 if (dev->test_mtd.name &&
19 (nla_put_string(msg, MT76_TM_ATTR_MTD_PART, dev->test_mtd.name) ||
20- nla_put_u32(msg, MT76_TM_ATTR_MTD_OFFSET, dev->test_mtd.offset)))
21+ nla_put_u32(msg, MT76_TM_ATTR_MTD_OFFSET, dev->test_mtd.offset) ||
22+ nla_put_u8(msg, MT76_TM_ATTR_BAND_IDX, phy->band_idx)))
23 goto out;
24
25 if (nla_put_u32(msg, MT76_TM_ATTR_TX_COUNT, td->tx_count) ||
26diff --git a/testmode.h b/testmode.h
developer8eb72a32023-03-30 08:32:07 +080027index 5e2792d..a40cd74 100644
developer1bc2ce22023-03-25 00:47:41 +080028--- a/testmode.h
29+++ b/testmode.h
30@@ -17,6 +17,7 @@
31 *
32 * @MT76_TM_ATTR_MTD_PART: mtd partition used for eeprom data (string)
33 * @MT76_TM_ATTR_MTD_OFFSET: offset of eeprom data within the partition (u32)
34+ * @MT76_TM_ATTR_BAND_IDX: band idx of the chip (u8)
35 *
36 * @MT76_TM_ATTR_TX_COUNT: configured number of frames to send when setting
37 * state to MT76_TM_STATE_TX_FRAMES (u32)
38@@ -56,6 +57,7 @@ enum mt76_testmode_attr {
39
40 MT76_TM_ATTR_MTD_PART,
41 MT76_TM_ATTR_MTD_OFFSET,
42+ MT76_TM_ATTR_BAND_IDX,
43
44 MT76_TM_ATTR_TX_COUNT,
45 MT76_TM_ATTR_TX_LENGTH,
46--
developer8eb72a32023-03-30 08:32:07 +0800472.18.0
developer1bc2ce22023-03-25 00:47:41 +080048