Commit 8fc49625 authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau

mt76: mt7615: fix lmac queue debugsfs entry

acs and wmm index are swapped in mt7615_queues_acq respect to the hw
design
Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 2cb002e3
...@@ -234,10 +234,11 @@ mt7615_queues_acq(struct seq_file *s, void *data) ...@@ -234,10 +234,11 @@ mt7615_queues_acq(struct seq_file *s, void *data)
int i; int i;
for (i = 0; i < 16; i++) { for (i = 0; i < 16; i++) {
int j, acs = i / 4, index = i % 4; int j, wmm_idx = i % MT7615_MAX_WMM_SETS;
int acs = i / MT7615_MAX_WMM_SETS;
u32 ctrl, val, qlen = 0; u32 ctrl, val, qlen = 0;
val = mt76_rr(dev, MT_PLE_AC_QEMPTY(acs, index)); val = mt76_rr(dev, MT_PLE_AC_QEMPTY(acs, wmm_idx));
ctrl = BIT(31) | BIT(15) | (acs << 8); ctrl = BIT(31) | BIT(15) | (acs << 8);
for (j = 0; j < 32; j++) { for (j = 0; j < 32; j++) {
...@@ -245,11 +246,11 @@ mt7615_queues_acq(struct seq_file *s, void *data) ...@@ -245,11 +246,11 @@ mt7615_queues_acq(struct seq_file *s, void *data)
continue; continue;
mt76_wr(dev, MT_PLE_FL_Q0_CTRL, mt76_wr(dev, MT_PLE_FL_Q0_CTRL,
ctrl | (j + (index << 5))); ctrl | (j + (wmm_idx << 5)));
qlen += mt76_get_field(dev, MT_PLE_FL_Q3_CTRL, qlen += mt76_get_field(dev, MT_PLE_FL_Q3_CTRL,
GENMASK(11, 0)); GENMASK(11, 0));
} }
seq_printf(s, "AC%d%d: queued=%d\n", acs, index, qlen); seq_printf(s, "AC%d%d: queued=%d\n", wmm_idx, acs, qlen);
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment