1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
3 * Copyright (C) 2005-2014, 2018-2019, 2021-2024 Intel Corporation
4 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH
5 * Copyright (C) 2015-2017 Intel Deutschland GmbH
7 #ifndef __iwl_fw_dbg_h__
8 #define __iwl_fw_dbg_h__
9 #include <linux/workqueue.h>
10 #include <net/cfg80211.h>
15 #include "error-dump.h"
16 #include "api/commands.h"
17 #include "api/dbg-tlv.h"
18 #include "api/alive.h"
21 * struct iwl_fw_dump_desc - describes the dump
22 * @len: length of trig_desc->data
23 * @trig_desc: the description of the dump
25 struct iwl_fw_dump_desc
{
28 struct iwl_fw_error_dump_trigger_desc trig_desc
;
32 * struct iwl_fw_dbg_params - register values to restore
33 * @in_sample: DBGC_IN_SAMPLE value
34 * @out_ctrl: DBGC_OUT_CTRL value
36 struct iwl_fw_dbg_params
{
41 extern const struct iwl_fw_dump_desc iwl_dump_desc_assert
;
43 int iwl_fw_dbg_collect_desc(struct iwl_fw_runtime
*fwrt
,
44 const struct iwl_fw_dump_desc
*desc
,
45 bool monitor_only
, unsigned int delay
);
46 int iwl_fw_dbg_error_collect(struct iwl_fw_runtime
*fwrt
,
47 enum iwl_fw_dbg_trigger trig_type
);
48 int iwl_fw_dbg_ini_collect(struct iwl_fw_runtime
*fwrt
,
49 struct iwl_fwrt_dump_data
*dump_data
,
51 int iwl_fw_dbg_collect(struct iwl_fw_runtime
*fwrt
,
52 enum iwl_fw_dbg_trigger trig
, const char *str
,
53 size_t len
, struct iwl_fw_dbg_trigger_tlv
*trigger
);
54 int iwl_fw_dbg_collect_trig(struct iwl_fw_runtime
*fwrt
,
55 struct iwl_fw_dbg_trigger_tlv
*trigger
,
56 const char *fmt
, ...) __printf(3, 4);
57 int iwl_fw_start_dbg_conf(struct iwl_fw_runtime
*fwrt
, u8 id
);
59 #define iwl_fw_dbg_trigger_enabled(fw, id) ({ \
60 void *__dbg_trigger = (fw)->dbg.trigger_tlv[(id)]; \
61 unlikely(__dbg_trigger); \
64 static inline struct iwl_fw_dbg_trigger_tlv
*
65 _iwl_fw_dbg_get_trigger(const struct iwl_fw
*fw
, enum iwl_fw_dbg_trigger id
)
67 return fw
->dbg
.trigger_tlv
[id
];
70 #define iwl_fw_dbg_get_trigger(fw, id) ({ \
71 BUILD_BUG_ON(!__builtin_constant_p(id)); \
72 BUILD_BUG_ON((id) >= FW_DBG_TRIGGER_MAX); \
73 _iwl_fw_dbg_get_trigger((fw), (id)); \
77 iwl_fw_dbg_trigger_vif_match(struct iwl_fw_dbg_trigger_tlv
*trig
,
78 struct wireless_dev
*wdev
)
80 u32 trig_vif
= le32_to_cpu(trig
->vif_type
);
82 return trig_vif
== IWL_FW_DBG_CONF_VIF_ANY
||
83 wdev
->iftype
== trig_vif
;
87 iwl_fw_dbg_trigger_stop_conf_match(struct iwl_fw_runtime
*fwrt
,
88 struct iwl_fw_dbg_trigger_tlv
*trig
)
90 return ((trig
->mode
& IWL_FW_DBG_TRIGGER_STOP
) &&
91 (fwrt
->dump
.conf
== FW_DBG_INVALID
||
92 (BIT(fwrt
->dump
.conf
) & le32_to_cpu(trig
->stop_conf_ids
))));
96 iwl_fw_dbg_no_trig_window(struct iwl_fw_runtime
*fwrt
, u32 id
, u32 dis_usec
)
98 unsigned long wind_jiff
= usecs_to_jiffies(dis_usec
);
100 /* If this is the first event checked, jump to update start ts */
101 if (fwrt
->dump
.non_collect_ts_start
[id
] &&
102 (time_after(fwrt
->dump
.non_collect_ts_start
[id
] + wind_jiff
,
106 fwrt
->dump
.non_collect_ts_start
[id
] = jiffies
;
111 iwl_fw_dbg_trigger_check_stop(struct iwl_fw_runtime
*fwrt
,
112 struct wireless_dev
*wdev
,
113 struct iwl_fw_dbg_trigger_tlv
*trig
)
115 u32 usec
= le16_to_cpu(trig
->trig_dis_ms
) * USEC_PER_MSEC
;
117 if (wdev
&& !iwl_fw_dbg_trigger_vif_match(trig
, wdev
))
120 if (iwl_fw_dbg_no_trig_window(fwrt
, le32_to_cpu(trig
->id
), usec
)) {
121 IWL_WARN(fwrt
, "Trigger %d occurred while no-collect window.\n",
126 return iwl_fw_dbg_trigger_stop_conf_match(fwrt
, trig
);
129 static inline struct iwl_fw_dbg_trigger_tlv
*
130 _iwl_fw_dbg_trigger_on(struct iwl_fw_runtime
*fwrt
,
131 struct wireless_dev
*wdev
,
132 const enum iwl_fw_dbg_trigger id
)
134 struct iwl_fw_dbg_trigger_tlv
*trig
;
136 if (iwl_trans_dbg_ini_valid(fwrt
->trans
))
139 if (!iwl_fw_dbg_trigger_enabled(fwrt
->fw
, id
))
142 trig
= _iwl_fw_dbg_get_trigger(fwrt
->fw
, id
);
144 if (!iwl_fw_dbg_trigger_check_stop(fwrt
, wdev
, trig
))
150 #define iwl_fw_dbg_trigger_on(fwrt, wdev, id) ({ \
151 BUILD_BUG_ON(!__builtin_constant_p(id)); \
152 BUILD_BUG_ON((id) >= FW_DBG_TRIGGER_MAX); \
153 _iwl_fw_dbg_trigger_on((fwrt), (wdev), (id)); \
157 _iwl_fw_dbg_trigger_simple_stop(struct iwl_fw_runtime
*fwrt
,
158 struct wireless_dev
*wdev
,
159 struct iwl_fw_dbg_trigger_tlv
*trigger
)
164 if (!iwl_fw_dbg_trigger_check_stop(fwrt
, wdev
, trigger
))
167 iwl_fw_dbg_collect_trig(fwrt
, trigger
, NULL
);
170 #define iwl_fw_dbg_trigger_simple_stop(fwrt, wdev, trig) \
171 _iwl_fw_dbg_trigger_simple_stop((fwrt), (wdev), \
172 iwl_fw_dbg_get_trigger((fwrt)->fw,\
174 void iwl_fw_dbg_stop_restart_recording(struct iwl_fw_runtime
*fwrt
,
175 struct iwl_fw_dbg_params
*params
,
178 #ifdef CONFIG_IWLWIFI_DEBUGFS
179 static inline void iwl_fw_set_dbg_rec_on(struct iwl_fw_runtime
*fwrt
)
181 if (fwrt
->cur_fw_img
== IWL_UCODE_REGULAR
&&
182 (fwrt
->fw
->dbg
.dest_tlv
||
183 fwrt
->trans
->dbg
.ini_dest
!= IWL_FW_INI_LOCATION_INVALID
))
184 fwrt
->trans
->dbg
.rec_on
= true;
188 static inline void iwl_fw_dump_conf_clear(struct iwl_fw_runtime
*fwrt
)
190 fwrt
->dump
.conf
= FW_DBG_INVALID
;
193 void iwl_fw_error_dump_wk(struct work_struct
*work
);
195 static inline bool iwl_fw_dbg_type_on(struct iwl_fw_runtime
*fwrt
, u32 type
)
197 return (fwrt
->fw
->dbg
.dump_mask
& BIT(type
));
200 static inline bool iwl_fw_dbg_is_d3_debug_enabled(struct iwl_fw_runtime
*fwrt
)
202 return fw_has_capa(&fwrt
->fw
->ucode_capa
,
203 IWL_UCODE_TLV_CAPA_D3_DEBUG
) &&
204 fwrt
->trans
->cfg
->d3_debug_data_length
&& fwrt
->ops
&&
205 fwrt
->ops
->d3_debug_enable
&&
206 fwrt
->ops
->d3_debug_enable(fwrt
->ops_ctx
) &&
207 iwl_fw_dbg_type_on(fwrt
, IWL_FW_ERROR_DUMP_D3_DEBUG_DATA
);
210 static inline bool iwl_fw_dbg_is_paging_enabled(struct iwl_fw_runtime
*fwrt
)
212 return iwl_fw_dbg_type_on(fwrt
, IWL_FW_ERROR_DUMP_PAGING
) &&
213 !fwrt
->trans
->trans_cfg
->gen2
&&
214 fwrt
->cur_fw_img
< IWL_UCODE_TYPE_MAX
&&
215 fwrt
->fw
->img
[fwrt
->cur_fw_img
].paging_mem_size
&&
216 fwrt
->fw_paging_db
[0].fw_paging_block
;
219 void iwl_fw_dbg_read_d3_debug_data(struct iwl_fw_runtime
*fwrt
);
221 static inline void iwl_fw_flush_dumps(struct iwl_fw_runtime
*fwrt
)
225 iwl_dbg_tlv_del_timers(fwrt
->trans
);
226 for (i
= 0; i
< IWL_FW_RUNTIME_DUMP_WK_NUM
; i
++)
227 flush_delayed_work(&fwrt
->dump
.wks
[i
].wk
);
230 int iwl_fw_send_timestamp_marker_cmd(struct iwl_fw_runtime
*fwrt
);
232 #ifdef CONFIG_IWLWIFI_DEBUGFS
233 static inline void iwl_fw_cancel_timestamp(struct iwl_fw_runtime
*fwrt
)
235 fwrt
->timestamp
.delay
= 0;
236 cancel_delayed_work_sync(&fwrt
->timestamp
.wk
);
239 void iwl_fw_trigger_timestamp(struct iwl_fw_runtime
*fwrt
, u32 delay
);
241 static inline void iwl_fw_suspend_timestamp(struct iwl_fw_runtime
*fwrt
)
243 cancel_delayed_work_sync(&fwrt
->timestamp
.wk
);
246 static inline void iwl_fw_resume_timestamp(struct iwl_fw_runtime
*fwrt
)
248 if (!fwrt
->timestamp
.delay
)
251 schedule_delayed_work(&fwrt
->timestamp
.wk
,
252 round_jiffies_relative(fwrt
->timestamp
.delay
));
257 static inline void iwl_fw_cancel_timestamp(struct iwl_fw_runtime
*fwrt
) {}
259 static inline void iwl_fw_trigger_timestamp(struct iwl_fw_runtime
*fwrt
,
262 static inline void iwl_fw_suspend_timestamp(struct iwl_fw_runtime
*fwrt
) {}
264 static inline void iwl_fw_resume_timestamp(struct iwl_fw_runtime
*fwrt
) {}
266 #endif /* CONFIG_IWLWIFI_DEBUGFS */
268 void iwl_fw_dbg_stop_sync(struct iwl_fw_runtime
*fwrt
);
270 static inline void iwl_fw_lmac1_set_alive_err_table(struct iwl_trans
*trans
,
271 u32 lmac_error_event_table
)
273 if (!(trans
->dbg
.error_event_table_tlv_status
&
274 IWL_ERROR_EVENT_TABLE_LMAC1
) ||
275 WARN_ON(trans
->dbg
.lmac_error_event_table
[0] !=
276 lmac_error_event_table
))
277 trans
->dbg
.lmac_error_event_table
[0] = lmac_error_event_table
;
280 static inline void iwl_fw_umac_set_alive_err_table(struct iwl_trans
*trans
,
281 u32 umac_error_event_table
)
283 if (!(trans
->dbg
.error_event_table_tlv_status
&
284 IWL_ERROR_EVENT_TABLE_UMAC
) ||
285 WARN_ON(trans
->dbg
.umac_error_event_table
!=
286 umac_error_event_table
))
287 trans
->dbg
.umac_error_event_table
= umac_error_event_table
;
290 static inline void iwl_fw_error_collect(struct iwl_fw_runtime
*fwrt
, bool sync
)
292 enum iwl_fw_ini_time_point tp_id
;
294 if (!iwl_trans_dbg_ini_valid(fwrt
->trans
)) {
295 iwl_fw_dbg_collect_desc(fwrt
, &iwl_dump_desc_assert
, false, 0);
299 if (fwrt
->trans
->dbg
.hw_error
) {
300 tp_id
= IWL_FW_INI_TIME_POINT_FW_HW_ERROR
;
301 fwrt
->trans
->dbg
.hw_error
= false;
303 tp_id
= IWL_FW_INI_TIME_POINT_FW_ASSERT
;
306 _iwl_dbg_tlv_time_point(fwrt
, tp_id
, NULL
, sync
);
309 static inline void iwl_fwrt_update_fw_versions(struct iwl_fw_runtime
*fwrt
,
310 struct iwl_lmac_alive
*lmac
,
311 struct iwl_umac_alive
*umac
)
314 fwrt
->dump
.fw_ver
.type
= lmac
->ver_type
;
315 fwrt
->dump
.fw_ver
.subtype
= lmac
->ver_subtype
;
316 fwrt
->dump
.fw_ver
.lmac_major
= le32_to_cpu(lmac
->ucode_major
);
317 fwrt
->dump
.fw_ver
.lmac_minor
= le32_to_cpu(lmac
->ucode_minor
);
321 fwrt
->dump
.fw_ver
.umac_major
= le32_to_cpu(umac
->umac_major
);
322 fwrt
->dump
.fw_ver
.umac_minor
= le32_to_cpu(umac
->umac_minor
);
326 void iwl_fwrt_dump_error_logs(struct iwl_fw_runtime
*fwrt
);
327 void iwl_send_dbg_dump_complete_cmd(struct iwl_fw_runtime
*fwrt
,
330 bool iwl_fwrt_read_err_table(struct iwl_trans
*trans
, u32 base
, u32
*err_id
);
331 void iwl_fw_disable_dbg_asserts(struct iwl_fw_runtime
*fwrt
);
332 void iwl_fw_dbg_clear_monitor_buf(struct iwl_fw_runtime
*fwrt
);
334 #define IWL_FW_CHECK_FAILED(_obj, ...) \
335 IWL_ERR_LIMIT(_obj, __VA_ARGS__)
337 #define IWL_FW_CHECK(_obj, _cond, _fmt, ...) \
339 bool __cond = (_cond); \
341 if (unlikely(__cond)) \
342 IWL_FW_CHECK_FAILED(_obj, _fmt, ##__VA_ARGS__); \
347 #endif /* __iwl_fw_dbg_h__ */