提交 995cdd0e 编写于 作者: V Vladimir Kondratiev 提交者: Kalle Valo

wil6210: improve debugfs for VRING

When printing VRING on debugfs (file "vrings"),
software head & tail indexes were printed in decimal format
while hardware tail in hexadecimal only.

It is not comfortable to compare indexes in different formats;
on the other hand, hexadecimal output useful to see hardware
glitches.

To serve all purposes, print hardware tail in both decimal and
hexadecimal formats.
Signed-off-by: NVladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
上级 100106d7
...@@ -50,6 +50,7 @@ static void wil_print_vring(struct seq_file *s, struct wil6210_priv *wil, ...@@ -50,6 +50,7 @@ static void wil_print_vring(struct seq_file *s, struct wil6210_priv *wil,
char _s, char _h) char _s, char _h)
{ {
void __iomem *x = wmi_addr(wil, vring->hwtail); void __iomem *x = wmi_addr(wil, vring->hwtail);
u32 v;
seq_printf(s, "VRING %s = {\n", name); seq_printf(s, "VRING %s = {\n", name);
seq_printf(s, " pa = %pad\n", &vring->pa); seq_printf(s, " pa = %pad\n", &vring->pa);
...@@ -58,10 +59,12 @@ static void wil_print_vring(struct seq_file *s, struct wil6210_priv *wil, ...@@ -58,10 +59,12 @@ static void wil_print_vring(struct seq_file *s, struct wil6210_priv *wil,
seq_printf(s, " swtail = %d\n", vring->swtail); seq_printf(s, " swtail = %d\n", vring->swtail);
seq_printf(s, " swhead = %d\n", vring->swhead); seq_printf(s, " swhead = %d\n", vring->swhead);
seq_printf(s, " hwtail = [0x%08x] -> ", vring->hwtail); seq_printf(s, " hwtail = [0x%08x] -> ", vring->hwtail);
if (x) if (x) {
seq_printf(s, "0x%08x\n", ioread32(x)); v = ioread32(x);
else seq_printf(s, "0x%08x = %d\n", v, v);
} else {
seq_puts(s, "???\n"); seq_puts(s, "???\n");
}
if (vring->va && (vring->size < 1025)) { if (vring->va && (vring->size < 1025)) {
uint i; uint i;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册