blob: 730a4937de9b64ae72c2b9a220621c301958b33b [file] [log] [blame]
developer05f3b2b2024-08-19 19:17:34 +08001From 3be6f92d47cdfd1ab676c9728cc84560fd2cee91 Mon Sep 17 00:00:00 2001
developerbd9fa1e2023-10-16 11:04:00 +08002From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Fri, 8 Sep 2023 18:26:21 +0800
developera20cdc22024-05-31 18:57:31 +08004Subject: [PATCH 2009/2015] wifi: mt76: mt7915: enable wa log to uart
developerbd9fa1e2023-10-16 11:04:00 +08005
6Signed-off-by: Peter Chiu <chui-hao.chiu@mediatek.com>
7---
8 mt7915/debugfs.c | 6 +++++-
9 1 file changed, 5 insertions(+), 1 deletion(-)
10
11diff --git a/mt7915/debugfs.c b/mt7915/debugfs.c
developer05f3b2b2024-08-19 19:17:34 +080012index 576ec1a5..03ccb51b 100644
developerbd9fa1e2023-10-16 11:04:00 +080013--- a/mt7915/debugfs.c
14+++ b/mt7915/debugfs.c
developerdc9eeae2024-04-08 14:36:46 +080015@@ -951,7 +951,11 @@ mt7915_fw_debug_wa_set(void *data, u64 val)
developerbd9fa1e2023-10-16 11:04:00 +080016 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--
292.18.0
30