blob: 1df84b44a714d063895d0ed9f7d1a7bff8340778 [file] [log] [blame]
developerd243af02023-12-21 14:49:33 +08001From ad7d61fd7de176ea7bec5b675ddfc355070833f7 Mon Sep 17 00:00:00 2001
developerdfb50982023-09-11 13:34:36 +08002From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Tue, 29 Aug 2023 09:22:18 +0800
developerd243af02023-12-21 14:49:33 +08004Subject: [PATCH 50/76] wifi: mt76: update debugfs knob to dump token pending
5 time
developerdfb50982023-09-11 13:34:36 +08006
7Signed-off-by: Peter Chiu <chui-hao.chiu@mediatek.com>
8---
9 mt76.h | 2 ++
10 mt7915/mac.c | 6 ++++++
11 mt7915/mtk_debugfs.c | 6 ++----
12 3 files changed, 10 insertions(+), 4 deletions(-)
13
14diff --git a/mt76.h b/mt76.h
developerd243af02023-12-21 14:49:33 +080015index c322135..4704c50 100644
developerdfb50982023-09-11 13:34:36 +080016--- a/mt76.h
17+++ b/mt76.h
developerd243af02023-12-21 14:49:33 +080018@@ -401,6 +401,8 @@ struct mt76_txwi_cache {
developerdfb50982023-09-11 13:34:36 +080019 struct list_head list;
20 dma_addr_t dma_addr;
21
22+ unsigned long jiffies;
23+
24 union {
25 struct sk_buff *skb;
26 void *ptr;
27diff --git a/mt7915/mac.c b/mt7915/mac.c
developerd243af02023-12-21 14:49:33 +080028index 07f0e30..170a51b 100644
developerdfb50982023-09-11 13:34:36 +080029--- a/mt7915/mac.c
30+++ b/mt7915/mac.c
developerd243af02023-12-21 14:49:33 +080031@@ -803,6 +803,8 @@ int mt7915_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
developerdfb50982023-09-11 13:34:36 +080032 if (id < 0)
33 return id;
34
35+ t->jiffies = jiffies;
36+
37 pid = mt76_tx_status_skb_add(mdev, wcid, tx_info->skb);
38 mt7915_mac_write_txwi(mdev, txwi_ptr, tx_info->skb, wcid, pid, key,
39 qid, 0);
developerd243af02023-12-21 14:49:33 +080040@@ -1001,6 +1003,8 @@ mt7915_mac_tx_free(struct mt7915_dev *dev, void *data, int len)
developerdfb50982023-09-11 13:34:36 +080041 if (!txwi)
42 continue;
43
44+ txwi->jiffies = 0;
45+
46 mt76_connac2_txwi_free(mdev, txwi, sta, &free_list);
47 }
48 }
developerd243af02023-12-21 14:49:33 +080049@@ -1033,6 +1037,8 @@ mt7915_mac_tx_free_v0(struct mt7915_dev *dev, void *data, int len)
developerdfb50982023-09-11 13:34:36 +080050 if (!txwi)
51 continue;
52
53+ txwi->jiffies = 0;
54+
55 mt76_connac2_txwi_free(mdev, txwi, NULL, &free_list);
56 }
57
58diff --git a/mt7915/mtk_debugfs.c b/mt7915/mtk_debugfs.c
developerd243af02023-12-21 14:49:33 +080059index 671791e..f4bc89c 100644
developerdfb50982023-09-11 13:34:36 +080060--- a/mt7915/mtk_debugfs.c
61+++ b/mt7915/mtk_debugfs.c
62@@ -2211,10 +2211,8 @@ static int mt7915_token_read(struct seq_file *s, void *data)
63 seq_printf(s, "Cut through token:\n");
64 spin_lock_bh(&dev->mt76.token_lock);
65 idr_for_each_entry(&dev->mt76.token, txwi, id) {
66- seq_printf(s, "%4d ", id);
67- count++;
68- if (count % 8 == 0)
69- seq_printf(s, "\n");
70+ seq_printf(s, "%4d (token pending %u ms)\n", id,
71+ jiffies_to_msecs(jiffies - txwi->jiffies));
72 }
73 spin_unlock_bh(&dev->mt76.token_lock);
74 seq_printf(s, "\n");
75--
762.18.0
77