developer | b85e875 | 2023-09-25 14:16:05 +0800 | [diff] [blame^] | 1 | From 8b5f1f9d44e11290d97dbae675457d1cf5030374 Mon Sep 17 00:00:00 2001 |
| 2 | From: Peter Chiu <chui-hao.chiu@mediatek.com> |
| 3 | Date: Fri, 8 Sep 2023 18:26:21 +0800 |
| 4 | Subject: [PATCH 2009/2011] wifi: mt76: mt7915: enable wa log to uart |
| 5 | |
| 6 | Signed-off-by: Peter Chiu <chui-hao.chiu@mediatek.com> |
| 7 | --- |
| 8 | mt7915/debugfs.c | 6 +++++- |
| 9 | 1 file changed, 5 insertions(+), 1 deletion(-) |
| 10 | |
| 11 | diff --git a/mt7915/debugfs.c b/mt7915/debugfs.c |
| 12 | index ca42b69..fd35b57 100644 |
| 13 | --- a/mt7915/debugfs.c |
| 14 | +++ b/mt7915/debugfs.c |
| 15 | @@ -988,7 +988,11 @@ mt7915_fw_debug_wa_set(void *data, u64 val) |
| 16 | struct mt7915_dev *dev = data; |
| 17 | int ret; |
| 18 | |
| 19 | - dev->fw.debug_wa = val ? MCU_FW_LOG_TO_HOST : 0; |
| 20 | + /* bit 0: log to uart, bit 1: log to Host */ |
| 21 | + if (val > 3) |
| 22 | + return -EINVAL; |
| 23 | + |
| 24 | + dev->fw.debug_wa = val; |
| 25 | |
| 26 | ret = mt7915_mcu_fw_log_2_host(dev, MCU_FW_LOG_WA, dev->fw.debug_wa); |
| 27 | if (ret) |
| 28 | -- |
| 29 | 2.18.0 |
| 30 | |